517f05b3f42144bd528a76d0d8904e143dad29be
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992-2013 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Known bugs or deficiencies include:
23
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "intl.h"
33 #include "pointer-set.h"
34 #include "flags.h"
35 #include "cp-tree.h"
36 #include "c-family/c-common.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "tree-inline.h"
40 #include "decl.h"
41 #include "toplev.h"
42 #include "timevar.h"
43 #include "tree-iterator.h"
44
45 /* The type of functions taking a tree, and some additional data, and
46 returning an int. */
47 typedef int (*tree_fn_t) (tree, void*);
48
49 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
50 instantiations have been deferred, either because their definitions
51 were not yet available, or because we were putting off doing the work. */
52 struct GTY ((chain_next ("%h.next"))) pending_template {
53 struct pending_template *next;
54 struct tinst_level *tinst;
55 };
56
57 static GTY(()) struct pending_template *pending_templates;
58 static GTY(()) struct pending_template *last_pending_template;
59
60 int processing_template_parmlist;
61 static int template_header_count;
62
63 static GTY(()) tree saved_trees;
64 static vec<int> inline_parm_levels;
65
66 static GTY(()) struct tinst_level *current_tinst_level;
67
68 static GTY(()) tree saved_access_scope;
69
70 /* Live only within one (recursive) call to tsubst_expr. We use
71 this to pass the statement expression node from the STMT_EXPR
72 to the EXPR_STMT that is its result. */
73 static tree cur_stmt_expr;
74
75 /* A map from local variable declarations in the body of the template
76 presently being instantiated to the corresponding instantiated
77 local variables. */
78 static struct pointer_map_t *local_specializations;
79
80 /* True if we've recursed into fn_type_unification too many times. */
81 static bool excessive_deduction_depth;
82
83 typedef struct GTY(()) spec_entry
84 {
85 tree tmpl;
86 tree args;
87 tree spec;
88 } spec_entry;
89
90 static GTY ((param_is (spec_entry)))
91 htab_t decl_specializations;
92
93 static GTY ((param_is (spec_entry)))
94 htab_t type_specializations;
95
96 /* Contains canonical template parameter types. The vector is indexed by
97 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
98 TREE_LIST, whose TREE_VALUEs contain the canonical template
99 parameters of various types and levels. */
100 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
101
102 #define UNIFY_ALLOW_NONE 0
103 #define UNIFY_ALLOW_MORE_CV_QUAL 1
104 #define UNIFY_ALLOW_LESS_CV_QUAL 2
105 #define UNIFY_ALLOW_DERIVED 4
106 #define UNIFY_ALLOW_INTEGER 8
107 #define UNIFY_ALLOW_OUTER_LEVEL 16
108 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
109 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
110
111 enum template_base_result {
112 tbr_incomplete_type,
113 tbr_ambiguous_baseclass,
114 tbr_success
115 };
116
117 static void push_access_scope (tree);
118 static void pop_access_scope (tree);
119 static bool resolve_overloaded_unification (tree, tree, tree, tree,
120 unification_kind_t, int,
121 bool);
122 static int try_one_overload (tree, tree, tree, tree, tree,
123 unification_kind_t, int, bool, bool);
124 static int unify (tree, tree, tree, tree, int, bool);
125 static void add_pending_template (tree);
126 static tree reopen_tinst_level (struct tinst_level *);
127 static tree tsubst_initializer_list (tree, tree);
128 static tree get_class_bindings (tree, tree, tree, tree);
129 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
130 bool, bool);
131 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
132 bool, bool);
133 static void tsubst_enum (tree, tree, tree);
134 static tree add_to_template_args (tree, tree);
135 static tree add_outermost_template_args (tree, tree);
136 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
137 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
138 tree);
139 static int type_unification_real (tree, tree, tree, const tree *,
140 unsigned int, int, unification_kind_t, int,
141 bool);
142 static void note_template_header (int);
143 static tree convert_nontype_argument_function (tree, tree);
144 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
145 static tree convert_template_argument (tree, tree, tree,
146 tsubst_flags_t, int, tree);
147 static int for_each_template_parm (tree, tree_fn_t, void*,
148 struct pointer_set_t*, bool);
149 static tree expand_template_argument_pack (tree);
150 static tree build_template_parm_index (int, int, int, tree, tree);
151 static bool inline_needs_template_parms (tree);
152 static void push_inline_template_parms_recursive (tree, int);
153 static tree retrieve_local_specialization (tree);
154 static void register_local_specialization (tree, tree);
155 static hashval_t hash_specialization (const void *p);
156 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
157 static int mark_template_parm (tree, void *);
158 static int template_parm_this_level_p (tree, void *);
159 static tree tsubst_friend_function (tree, tree);
160 static tree tsubst_friend_class (tree, tree);
161 static int can_complete_type_without_circularity (tree);
162 static tree get_bindings (tree, tree, tree, bool);
163 static int template_decl_level (tree);
164 static int check_cv_quals_for_unify (int, tree, tree);
165 static void template_parm_level_and_index (tree, int*, int*);
166 static int unify_pack_expansion (tree, tree, tree,
167 tree, unification_kind_t, bool, bool);
168 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
169 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
170 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
171 static void regenerate_decl_from_template (tree, tree);
172 static tree most_specialized_class (tree, tree, tsubst_flags_t);
173 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
174 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
175 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
176 static bool check_specialization_scope (void);
177 static tree process_partial_specialization (tree);
178 static void set_current_access_from_decl (tree);
179 static enum template_base_result get_template_base (tree, tree, tree, tree,
180 bool , tree *);
181 static tree try_class_unification (tree, tree, tree, tree, bool);
182 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
183 tree, tree);
184 static bool template_template_parm_bindings_ok_p (tree, tree);
185 static int template_args_equal (tree, tree);
186 static void tsubst_default_arguments (tree);
187 static tree for_each_template_parm_r (tree *, int *, void *);
188 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
189 static void copy_default_args_to_explicit_spec (tree);
190 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
191 static bool dependent_template_arg_p (tree);
192 static bool any_template_arguments_need_structural_equality_p (tree);
193 static bool dependent_type_p_r (tree);
194 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
195 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
196 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
197 static tree tsubst_decl (tree, tree, tsubst_flags_t);
198 static void perform_typedefs_access_check (tree tmpl, tree targs);
199 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
200 location_t);
201 static tree listify (tree);
202 static tree listify_autos (tree, tree);
203 static tree template_parm_to_arg (tree t);
204 static tree current_template_args (void);
205 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
206 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
207
208 /* Make the current scope suitable for access checking when we are
209 processing T. T can be FUNCTION_DECL for instantiated function
210 template, VAR_DECL for static member variable, or TYPE_DECL for
211 alias template (needed by instantiate_decl). */
212
213 static void
214 push_access_scope (tree t)
215 {
216 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
217 || TREE_CODE (t) == TYPE_DECL);
218
219 if (DECL_FRIEND_CONTEXT (t))
220 push_nested_class (DECL_FRIEND_CONTEXT (t));
221 else if (DECL_CLASS_SCOPE_P (t))
222 push_nested_class (DECL_CONTEXT (t));
223 else
224 push_to_top_level ();
225
226 if (TREE_CODE (t) == FUNCTION_DECL)
227 {
228 saved_access_scope = tree_cons
229 (NULL_TREE, current_function_decl, saved_access_scope);
230 current_function_decl = t;
231 }
232 }
233
234 /* Restore the scope set up by push_access_scope. T is the node we
235 are processing. */
236
237 static void
238 pop_access_scope (tree t)
239 {
240 if (TREE_CODE (t) == FUNCTION_DECL)
241 {
242 current_function_decl = TREE_VALUE (saved_access_scope);
243 saved_access_scope = TREE_CHAIN (saved_access_scope);
244 }
245
246 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
247 pop_nested_class ();
248 else
249 pop_from_top_level ();
250 }
251
252 /* Do any processing required when DECL (a member template
253 declaration) is finished. Returns the TEMPLATE_DECL corresponding
254 to DECL, unless it is a specialization, in which case the DECL
255 itself is returned. */
256
257 tree
258 finish_member_template_decl (tree decl)
259 {
260 if (decl == error_mark_node)
261 return error_mark_node;
262
263 gcc_assert (DECL_P (decl));
264
265 if (TREE_CODE (decl) == TYPE_DECL)
266 {
267 tree type;
268
269 type = TREE_TYPE (decl);
270 if (type == error_mark_node)
271 return error_mark_node;
272 if (MAYBE_CLASS_TYPE_P (type)
273 && CLASSTYPE_TEMPLATE_INFO (type)
274 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
275 {
276 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
277 check_member_template (tmpl);
278 return tmpl;
279 }
280 return NULL_TREE;
281 }
282 else if (TREE_CODE (decl) == FIELD_DECL)
283 error ("data member %qD cannot be a member template", decl);
284 else if (DECL_TEMPLATE_INFO (decl))
285 {
286 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
287 {
288 check_member_template (DECL_TI_TEMPLATE (decl));
289 return DECL_TI_TEMPLATE (decl);
290 }
291 else
292 return decl;
293 }
294 else
295 error ("invalid member template declaration %qD", decl);
296
297 return error_mark_node;
298 }
299
300 /* Create a template info node. */
301
302 tree
303 build_template_info (tree template_decl, tree template_args)
304 {
305 tree result = make_node (TEMPLATE_INFO);
306 TI_TEMPLATE (result) = template_decl;
307 TI_ARGS (result) = template_args;
308 return result;
309 }
310
311 /* Return the template info node corresponding to T, whatever T is. */
312
313 tree
314 get_template_info (const_tree t)
315 {
316 tree tinfo = NULL_TREE;
317
318 if (!t || t == error_mark_node)
319 return NULL;
320
321 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
322 tinfo = DECL_TEMPLATE_INFO (t);
323
324 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
325 t = TREE_TYPE (t);
326
327 if (OVERLOAD_TYPE_P (t))
328 tinfo = TYPE_TEMPLATE_INFO (t);
329 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
330 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
331
332 return tinfo;
333 }
334
335 /* Returns the template nesting level of the indicated class TYPE.
336
337 For example, in:
338 template <class T>
339 struct A
340 {
341 template <class U>
342 struct B {};
343 };
344
345 A<T>::B<U> has depth two, while A<T> has depth one.
346 Both A<T>::B<int> and A<int>::B<U> have depth one, if
347 they are instantiations, not specializations.
348
349 This function is guaranteed to return 0 if passed NULL_TREE so
350 that, for example, `template_class_depth (current_class_type)' is
351 always safe. */
352
353 int
354 template_class_depth (tree type)
355 {
356 int depth;
357
358 for (depth = 0;
359 type && TREE_CODE (type) != NAMESPACE_DECL;
360 type = (TREE_CODE (type) == FUNCTION_DECL)
361 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
362 {
363 tree tinfo = get_template_info (type);
364
365 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
366 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
367 ++depth;
368 }
369
370 return depth;
371 }
372
373 /* Subroutine of maybe_begin_member_template_processing.
374 Returns true if processing DECL needs us to push template parms. */
375
376 static bool
377 inline_needs_template_parms (tree decl)
378 {
379 if (! DECL_TEMPLATE_INFO (decl))
380 return false;
381
382 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
383 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
384 }
385
386 /* Subroutine of maybe_begin_member_template_processing.
387 Push the template parms in PARMS, starting from LEVELS steps into the
388 chain, and ending at the beginning, since template parms are listed
389 innermost first. */
390
391 static void
392 push_inline_template_parms_recursive (tree parmlist, int levels)
393 {
394 tree parms = TREE_VALUE (parmlist);
395 int i;
396
397 if (levels > 1)
398 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
399
400 ++processing_template_decl;
401 current_template_parms
402 = tree_cons (size_int (processing_template_decl),
403 parms, current_template_parms);
404 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
405
406 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
407 NULL);
408 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
409 {
410 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
411
412 if (parm == error_mark_node)
413 continue;
414
415 gcc_assert (DECL_P (parm));
416
417 switch (TREE_CODE (parm))
418 {
419 case TYPE_DECL:
420 case TEMPLATE_DECL:
421 pushdecl (parm);
422 break;
423
424 case PARM_DECL:
425 {
426 /* Make a CONST_DECL as is done in process_template_parm.
427 It is ugly that we recreate this here; the original
428 version built in process_template_parm is no longer
429 available. */
430 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
431 CONST_DECL, DECL_NAME (parm),
432 TREE_TYPE (parm));
433 DECL_ARTIFICIAL (decl) = 1;
434 TREE_CONSTANT (decl) = 1;
435 TREE_READONLY (decl) = 1;
436 DECL_INITIAL (decl) = DECL_INITIAL (parm);
437 SET_DECL_TEMPLATE_PARM_P (decl);
438 pushdecl (decl);
439 }
440 break;
441
442 default:
443 gcc_unreachable ();
444 }
445 }
446 }
447
448 /* Restore the template parameter context for a member template or
449 a friend template defined in a class definition. */
450
451 void
452 maybe_begin_member_template_processing (tree decl)
453 {
454 tree parms;
455 int levels = 0;
456
457 if (inline_needs_template_parms (decl))
458 {
459 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
460 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
461
462 if (DECL_TEMPLATE_SPECIALIZATION (decl))
463 {
464 --levels;
465 parms = TREE_CHAIN (parms);
466 }
467
468 push_inline_template_parms_recursive (parms, levels);
469 }
470
471 /* Remember how many levels of template parameters we pushed so that
472 we can pop them later. */
473 inline_parm_levels.safe_push (levels);
474 }
475
476 /* Undo the effects of maybe_begin_member_template_processing. */
477
478 void
479 maybe_end_member_template_processing (void)
480 {
481 int i;
482 int last;
483
484 if (inline_parm_levels.length () == 0)
485 return;
486
487 last = inline_parm_levels.pop ();
488 for (i = 0; i < last; ++i)
489 {
490 --processing_template_decl;
491 current_template_parms = TREE_CHAIN (current_template_parms);
492 poplevel (0, 0, 0);
493 }
494 }
495
496 /* Return a new template argument vector which contains all of ARGS,
497 but has as its innermost set of arguments the EXTRA_ARGS. */
498
499 static tree
500 add_to_template_args (tree args, tree extra_args)
501 {
502 tree new_args;
503 int extra_depth;
504 int i;
505 int j;
506
507 if (args == NULL_TREE || extra_args == error_mark_node)
508 return extra_args;
509
510 extra_depth = TMPL_ARGS_DEPTH (extra_args);
511 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
512
513 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
514 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
515
516 for (j = 1; j <= extra_depth; ++j, ++i)
517 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
518
519 return new_args;
520 }
521
522 /* Like add_to_template_args, but only the outermost ARGS are added to
523 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
524 (EXTRA_ARGS) levels are added. This function is used to combine
525 the template arguments from a partial instantiation with the
526 template arguments used to attain the full instantiation from the
527 partial instantiation. */
528
529 static tree
530 add_outermost_template_args (tree args, tree extra_args)
531 {
532 tree new_args;
533
534 /* If there are more levels of EXTRA_ARGS than there are ARGS,
535 something very fishy is going on. */
536 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
537
538 /* If *all* the new arguments will be the EXTRA_ARGS, just return
539 them. */
540 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
541 return extra_args;
542
543 /* For the moment, we make ARGS look like it contains fewer levels. */
544 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
545
546 new_args = add_to_template_args (args, extra_args);
547
548 /* Now, we restore ARGS to its full dimensions. */
549 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
550
551 return new_args;
552 }
553
554 /* Return the N levels of innermost template arguments from the ARGS. */
555
556 tree
557 get_innermost_template_args (tree args, int n)
558 {
559 tree new_args;
560 int extra_levels;
561 int i;
562
563 gcc_assert (n >= 0);
564
565 /* If N is 1, just return the innermost set of template arguments. */
566 if (n == 1)
567 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
568
569 /* If we're not removing anything, just return the arguments we were
570 given. */
571 extra_levels = TMPL_ARGS_DEPTH (args) - n;
572 gcc_assert (extra_levels >= 0);
573 if (extra_levels == 0)
574 return args;
575
576 /* Make a new set of arguments, not containing the outer arguments. */
577 new_args = make_tree_vec (n);
578 for (i = 1; i <= n; ++i)
579 SET_TMPL_ARGS_LEVEL (new_args, i,
580 TMPL_ARGS_LEVEL (args, i + extra_levels));
581
582 return new_args;
583 }
584
585 /* The inverse of get_innermost_template_args: Return all but the innermost
586 EXTRA_LEVELS levels of template arguments from the ARGS. */
587
588 static tree
589 strip_innermost_template_args (tree args, int extra_levels)
590 {
591 tree new_args;
592 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
593 int i;
594
595 gcc_assert (n >= 0);
596
597 /* If N is 1, just return the outermost set of template arguments. */
598 if (n == 1)
599 return TMPL_ARGS_LEVEL (args, 1);
600
601 /* If we're not removing anything, just return the arguments we were
602 given. */
603 gcc_assert (extra_levels >= 0);
604 if (extra_levels == 0)
605 return args;
606
607 /* Make a new set of arguments, not containing the inner arguments. */
608 new_args = make_tree_vec (n);
609 for (i = 1; i <= n; ++i)
610 SET_TMPL_ARGS_LEVEL (new_args, i,
611 TMPL_ARGS_LEVEL (args, i));
612
613 return new_args;
614 }
615
616 /* We've got a template header coming up; push to a new level for storing
617 the parms. */
618
619 void
620 begin_template_parm_list (void)
621 {
622 /* We use a non-tag-transparent scope here, which causes pushtag to
623 put tags in this scope, rather than in the enclosing class or
624 namespace scope. This is the right thing, since we want
625 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
626 global template class, push_template_decl handles putting the
627 TEMPLATE_DECL into top-level scope. For a nested template class,
628 e.g.:
629
630 template <class T> struct S1 {
631 template <class T> struct S2 {};
632 };
633
634 pushtag contains special code to call pushdecl_with_scope on the
635 TEMPLATE_DECL for S2. */
636 begin_scope (sk_template_parms, NULL);
637 ++processing_template_decl;
638 ++processing_template_parmlist;
639 note_template_header (0);
640 }
641
642 /* This routine is called when a specialization is declared. If it is
643 invalid to declare a specialization here, an error is reported and
644 false is returned, otherwise this routine will return true. */
645
646 static bool
647 check_specialization_scope (void)
648 {
649 tree scope = current_scope ();
650
651 /* [temp.expl.spec]
652
653 An explicit specialization shall be declared in the namespace of
654 which the template is a member, or, for member templates, in the
655 namespace of which the enclosing class or enclosing class
656 template is a member. An explicit specialization of a member
657 function, member class or static data member of a class template
658 shall be declared in the namespace of which the class template
659 is a member. */
660 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
661 {
662 error ("explicit specialization in non-namespace scope %qD", scope);
663 return false;
664 }
665
666 /* [temp.expl.spec]
667
668 In an explicit specialization declaration for a member of a class
669 template or a member template that appears in namespace scope,
670 the member template and some of its enclosing class templates may
671 remain unspecialized, except that the declaration shall not
672 explicitly specialize a class member template if its enclosing
673 class templates are not explicitly specialized as well. */
674 if (current_template_parms)
675 {
676 error ("enclosing class templates are not explicitly specialized");
677 return false;
678 }
679
680 return true;
681 }
682
683 /* We've just seen template <>. */
684
685 bool
686 begin_specialization (void)
687 {
688 begin_scope (sk_template_spec, NULL);
689 note_template_header (1);
690 return check_specialization_scope ();
691 }
692
693 /* Called at then end of processing a declaration preceded by
694 template<>. */
695
696 void
697 end_specialization (void)
698 {
699 finish_scope ();
700 reset_specialization ();
701 }
702
703 /* Any template <>'s that we have seen thus far are not referring to a
704 function specialization. */
705
706 void
707 reset_specialization (void)
708 {
709 processing_specialization = 0;
710 template_header_count = 0;
711 }
712
713 /* We've just seen a template header. If SPECIALIZATION is nonzero,
714 it was of the form template <>. */
715
716 static void
717 note_template_header (int specialization)
718 {
719 processing_specialization = specialization;
720 template_header_count++;
721 }
722
723 /* We're beginning an explicit instantiation. */
724
725 void
726 begin_explicit_instantiation (void)
727 {
728 gcc_assert (!processing_explicit_instantiation);
729 processing_explicit_instantiation = true;
730 }
731
732
733 void
734 end_explicit_instantiation (void)
735 {
736 gcc_assert (processing_explicit_instantiation);
737 processing_explicit_instantiation = false;
738 }
739
740 /* An explicit specialization or partial specialization of TMPL is being
741 declared. Check that the namespace in which the specialization is
742 occurring is permissible. Returns false iff it is invalid to
743 specialize TMPL in the current namespace. */
744
745 static bool
746 check_specialization_namespace (tree tmpl)
747 {
748 tree tpl_ns = decl_namespace_context (tmpl);
749
750 /* [tmpl.expl.spec]
751
752 An explicit specialization shall be declared in the namespace of
753 which the template is a member, or, for member templates, in the
754 namespace of which the enclosing class or enclosing class
755 template is a member. An explicit specialization of a member
756 function, member class or static data member of a class template
757 shall be declared in the namespace of which the class template is
758 a member. */
759 if (current_scope() != DECL_CONTEXT (tmpl)
760 && !at_namespace_scope_p ())
761 {
762 error ("specialization of %qD must appear at namespace scope", tmpl);
763 return false;
764 }
765 if (is_associated_namespace (current_namespace, tpl_ns))
766 /* Same or super-using namespace. */
767 return true;
768 else
769 {
770 permerror (input_location, "specialization of %qD in different namespace", tmpl);
771 permerror (input_location, " from definition of %q+#D", tmpl);
772 return false;
773 }
774 }
775
776 /* SPEC is an explicit instantiation. Check that it is valid to
777 perform this explicit instantiation in the current namespace. */
778
779 static void
780 check_explicit_instantiation_namespace (tree spec)
781 {
782 tree ns;
783
784 /* DR 275: An explicit instantiation shall appear in an enclosing
785 namespace of its template. */
786 ns = decl_namespace_context (spec);
787 if (!is_ancestor (current_namespace, ns))
788 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
789 "(which does not enclose namespace %qD)",
790 spec, current_namespace, ns);
791 }
792
793 /* The TYPE is being declared. If it is a template type, that means it
794 is a partial specialization. Do appropriate error-checking. */
795
796 tree
797 maybe_process_partial_specialization (tree type)
798 {
799 tree context;
800
801 if (type == error_mark_node)
802 return error_mark_node;
803
804 /* A lambda that appears in specialization context is not itself a
805 specialization. */
806 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
807 return type;
808
809 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
810 {
811 error ("name of class shadows template template parameter %qD",
812 TYPE_NAME (type));
813 return error_mark_node;
814 }
815
816 context = TYPE_CONTEXT (type);
817
818 if (TYPE_ALIAS_P (type))
819 {
820 if (TYPE_TEMPLATE_INFO (type)
821 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
822 error ("specialization of alias template %qD",
823 TYPE_TI_TEMPLATE (type));
824 else
825 error ("explicit specialization of non-template %qT", type);
826 return error_mark_node;
827 }
828 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
829 {
830 /* This is for ordinary explicit specialization and partial
831 specialization of a template class such as:
832
833 template <> class C<int>;
834
835 or:
836
837 template <class T> class C<T*>;
838
839 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
840
841 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
842 && !COMPLETE_TYPE_P (type))
843 {
844 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
845 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
846 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
847 if (processing_template_decl)
848 {
849 if (push_template_decl (TYPE_MAIN_DECL (type))
850 == error_mark_node)
851 return error_mark_node;
852 }
853 }
854 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
855 error ("specialization of %qT after instantiation", type);
856 else if (errorcount && !processing_specialization
857 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
858 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
859 /* Trying to define a specialization either without a template<> header
860 or in an inappropriate place. We've already given an error, so just
861 bail now so we don't actually define the specialization. */
862 return error_mark_node;
863 }
864 else if (CLASS_TYPE_P (type)
865 && !CLASSTYPE_USE_TEMPLATE (type)
866 && CLASSTYPE_TEMPLATE_INFO (type)
867 && context && CLASS_TYPE_P (context)
868 && CLASSTYPE_TEMPLATE_INFO (context))
869 {
870 /* This is for an explicit specialization of member class
871 template according to [temp.expl.spec/18]:
872
873 template <> template <class U> class C<int>::D;
874
875 The context `C<int>' must be an implicit instantiation.
876 Otherwise this is just a member class template declared
877 earlier like:
878
879 template <> class C<int> { template <class U> class D; };
880 template <> template <class U> class C<int>::D;
881
882 In the first case, `C<int>::D' is a specialization of `C<T>::D'
883 while in the second case, `C<int>::D' is a primary template
884 and `C<T>::D' may not exist. */
885
886 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
887 && !COMPLETE_TYPE_P (type))
888 {
889 tree t;
890 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
891
892 if (current_namespace
893 != decl_namespace_context (tmpl))
894 {
895 permerror (input_location, "specializing %q#T in different namespace", type);
896 permerror (input_location, " from definition of %q+#D", tmpl);
897 }
898
899 /* Check for invalid specialization after instantiation:
900
901 template <> template <> class C<int>::D<int>;
902 template <> template <class U> class C<int>::D; */
903
904 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
905 t; t = TREE_CHAIN (t))
906 {
907 tree inst = TREE_VALUE (t);
908 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst))
909 {
910 /* We already have a full specialization of this partial
911 instantiation. Reassign it to the new member
912 specialization template. */
913 spec_entry elt;
914 spec_entry *entry;
915 void **slot;
916
917 elt.tmpl = most_general_template (tmpl);
918 elt.args = CLASSTYPE_TI_ARGS (inst);
919 elt.spec = inst;
920
921 htab_remove_elt (type_specializations, &elt);
922
923 elt.tmpl = tmpl;
924 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
925
926 slot = htab_find_slot (type_specializations, &elt, INSERT);
927 entry = ggc_alloc_spec_entry ();
928 *entry = elt;
929 *slot = entry;
930 }
931 else if (COMPLETE_OR_OPEN_TYPE_P (inst))
932 /* But if we've had an implicit instantiation, that's a
933 problem ([temp.expl.spec]/6). */
934 error ("specialization %qT after instantiation %qT",
935 type, inst);
936 }
937
938 /* Mark TYPE as a specialization. And as a result, we only
939 have one level of template argument for the innermost
940 class template. */
941 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
942 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
943 CLASSTYPE_TI_ARGS (type)
944 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
945 }
946 }
947 else if (processing_specialization)
948 {
949 /* Someday C++0x may allow for enum template specialization. */
950 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
951 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
952 pedwarn (input_location, OPT_Wpedantic, "template specialization "
953 "of %qD not allowed by ISO C++", type);
954 else
955 {
956 error ("explicit specialization of non-template %qT", type);
957 return error_mark_node;
958 }
959 }
960
961 return type;
962 }
963
964 /* Returns nonzero if we can optimize the retrieval of specializations
965 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
966 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
967
968 static inline bool
969 optimize_specialization_lookup_p (tree tmpl)
970 {
971 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
972 && DECL_CLASS_SCOPE_P (tmpl)
973 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
974 parameter. */
975 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
976 /* The optimized lookup depends on the fact that the
977 template arguments for the member function template apply
978 purely to the containing class, which is not true if the
979 containing class is an explicit or partial
980 specialization. */
981 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
982 && !DECL_MEMBER_TEMPLATE_P (tmpl)
983 && !DECL_CONV_FN_P (tmpl)
984 /* It is possible to have a template that is not a member
985 template and is not a member of a template class:
986
987 template <typename T>
988 struct S { friend A::f(); };
989
990 Here, the friend function is a template, but the context does
991 not have template information. The optimized lookup relies
992 on having ARGS be the template arguments for both the class
993 and the function template. */
994 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
995 }
996
997 /* Retrieve the specialization (in the sense of [temp.spec] - a
998 specialization is either an instantiation or an explicit
999 specialization) of TMPL for the given template ARGS. If there is
1000 no such specialization, return NULL_TREE. The ARGS are a vector of
1001 arguments, or a vector of vectors of arguments, in the case of
1002 templates with more than one level of parameters.
1003
1004 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1005 then we search for a partial specialization matching ARGS. This
1006 parameter is ignored if TMPL is not a class template. */
1007
1008 static tree
1009 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1010 {
1011 if (tmpl == NULL_TREE)
1012 return NULL_TREE;
1013
1014 if (args == error_mark_node)
1015 return NULL_TREE;
1016
1017 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1018
1019 /* There should be as many levels of arguments as there are
1020 levels of parameters. */
1021 gcc_assert (TMPL_ARGS_DEPTH (args)
1022 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1023
1024 if (optimize_specialization_lookup_p (tmpl))
1025 {
1026 tree class_template;
1027 tree class_specialization;
1028 vec<tree, va_gc> *methods;
1029 tree fns;
1030 int idx;
1031
1032 /* The template arguments actually apply to the containing
1033 class. Find the class specialization with those
1034 arguments. */
1035 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1036 class_specialization
1037 = retrieve_specialization (class_template, args, 0);
1038 if (!class_specialization)
1039 return NULL_TREE;
1040 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1041 for the specialization. */
1042 idx = class_method_index_for_fn (class_specialization, tmpl);
1043 if (idx == -1)
1044 return NULL_TREE;
1045 /* Iterate through the methods with the indicated name, looking
1046 for the one that has an instance of TMPL. */
1047 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1048 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1049 {
1050 tree fn = OVL_CURRENT (fns);
1051 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1052 /* using-declarations can add base methods to the method vec,
1053 and we don't want those here. */
1054 && DECL_CONTEXT (fn) == class_specialization)
1055 return fn;
1056 }
1057 return NULL_TREE;
1058 }
1059 else
1060 {
1061 spec_entry *found;
1062 spec_entry elt;
1063 htab_t specializations;
1064
1065 elt.tmpl = tmpl;
1066 elt.args = args;
1067 elt.spec = NULL_TREE;
1068
1069 if (DECL_CLASS_TEMPLATE_P (tmpl))
1070 specializations = type_specializations;
1071 else
1072 specializations = decl_specializations;
1073
1074 if (hash == 0)
1075 hash = hash_specialization (&elt);
1076 found = (spec_entry *) htab_find_with_hash (specializations, &elt, hash);
1077 if (found)
1078 return found->spec;
1079 }
1080
1081 return NULL_TREE;
1082 }
1083
1084 /* Like retrieve_specialization, but for local declarations. */
1085
1086 static tree
1087 retrieve_local_specialization (tree tmpl)
1088 {
1089 void **slot;
1090
1091 if (local_specializations == NULL)
1092 return NULL_TREE;
1093
1094 slot = pointer_map_contains (local_specializations, tmpl);
1095 return slot ? (tree) *slot : NULL_TREE;
1096 }
1097
1098 /* Returns nonzero iff DECL is a specialization of TMPL. */
1099
1100 int
1101 is_specialization_of (tree decl, tree tmpl)
1102 {
1103 tree t;
1104
1105 if (TREE_CODE (decl) == FUNCTION_DECL)
1106 {
1107 for (t = decl;
1108 t != NULL_TREE;
1109 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1110 if (t == tmpl)
1111 return 1;
1112 }
1113 else
1114 {
1115 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1116
1117 for (t = TREE_TYPE (decl);
1118 t != NULL_TREE;
1119 t = CLASSTYPE_USE_TEMPLATE (t)
1120 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1121 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1122 return 1;
1123 }
1124
1125 return 0;
1126 }
1127
1128 /* Returns nonzero iff DECL is a specialization of friend declaration
1129 FRIEND_DECL according to [temp.friend]. */
1130
1131 bool
1132 is_specialization_of_friend (tree decl, tree friend_decl)
1133 {
1134 bool need_template = true;
1135 int template_depth;
1136
1137 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1138 || TREE_CODE (decl) == TYPE_DECL);
1139
1140 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1141 of a template class, we want to check if DECL is a specialization
1142 if this. */
1143 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1144 && DECL_TEMPLATE_INFO (friend_decl)
1145 && !DECL_USE_TEMPLATE (friend_decl))
1146 {
1147 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1148 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1149 need_template = false;
1150 }
1151 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1152 && !PRIMARY_TEMPLATE_P (friend_decl))
1153 need_template = false;
1154
1155 /* There is nothing to do if this is not a template friend. */
1156 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1157 return false;
1158
1159 if (is_specialization_of (decl, friend_decl))
1160 return true;
1161
1162 /* [temp.friend/6]
1163 A member of a class template may be declared to be a friend of a
1164 non-template class. In this case, the corresponding member of
1165 every specialization of the class template is a friend of the
1166 class granting friendship.
1167
1168 For example, given a template friend declaration
1169
1170 template <class T> friend void A<T>::f();
1171
1172 the member function below is considered a friend
1173
1174 template <> struct A<int> {
1175 void f();
1176 };
1177
1178 For this type of template friend, TEMPLATE_DEPTH below will be
1179 nonzero. To determine if DECL is a friend of FRIEND, we first
1180 check if the enclosing class is a specialization of another. */
1181
1182 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1183 if (template_depth
1184 && DECL_CLASS_SCOPE_P (decl)
1185 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1186 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1187 {
1188 /* Next, we check the members themselves. In order to handle
1189 a few tricky cases, such as when FRIEND_DECL's are
1190
1191 template <class T> friend void A<T>::g(T t);
1192 template <class T> template <T t> friend void A<T>::h();
1193
1194 and DECL's are
1195
1196 void A<int>::g(int);
1197 template <int> void A<int>::h();
1198
1199 we need to figure out ARGS, the template arguments from
1200 the context of DECL. This is required for template substitution
1201 of `T' in the function parameter of `g' and template parameter
1202 of `h' in the above examples. Here ARGS corresponds to `int'. */
1203
1204 tree context = DECL_CONTEXT (decl);
1205 tree args = NULL_TREE;
1206 int current_depth = 0;
1207
1208 while (current_depth < template_depth)
1209 {
1210 if (CLASSTYPE_TEMPLATE_INFO (context))
1211 {
1212 if (current_depth == 0)
1213 args = TYPE_TI_ARGS (context);
1214 else
1215 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1216 current_depth++;
1217 }
1218 context = TYPE_CONTEXT (context);
1219 }
1220
1221 if (TREE_CODE (decl) == FUNCTION_DECL)
1222 {
1223 bool is_template;
1224 tree friend_type;
1225 tree decl_type;
1226 tree friend_args_type;
1227 tree decl_args_type;
1228
1229 /* Make sure that both DECL and FRIEND_DECL are templates or
1230 non-templates. */
1231 is_template = DECL_TEMPLATE_INFO (decl)
1232 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1233 if (need_template ^ is_template)
1234 return false;
1235 else if (is_template)
1236 {
1237 /* If both are templates, check template parameter list. */
1238 tree friend_parms
1239 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1240 args, tf_none);
1241 if (!comp_template_parms
1242 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1243 friend_parms))
1244 return false;
1245
1246 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1247 }
1248 else
1249 decl_type = TREE_TYPE (decl);
1250
1251 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1252 tf_none, NULL_TREE);
1253 if (friend_type == error_mark_node)
1254 return false;
1255
1256 /* Check if return types match. */
1257 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1258 return false;
1259
1260 /* Check if function parameter types match, ignoring the
1261 `this' parameter. */
1262 friend_args_type = TYPE_ARG_TYPES (friend_type);
1263 decl_args_type = TYPE_ARG_TYPES (decl_type);
1264 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1265 friend_args_type = TREE_CHAIN (friend_args_type);
1266 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1267 decl_args_type = TREE_CHAIN (decl_args_type);
1268
1269 return compparms (decl_args_type, friend_args_type);
1270 }
1271 else
1272 {
1273 /* DECL is a TYPE_DECL */
1274 bool is_template;
1275 tree decl_type = TREE_TYPE (decl);
1276
1277 /* Make sure that both DECL and FRIEND_DECL are templates or
1278 non-templates. */
1279 is_template
1280 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1281 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1282
1283 if (need_template ^ is_template)
1284 return false;
1285 else if (is_template)
1286 {
1287 tree friend_parms;
1288 /* If both are templates, check the name of the two
1289 TEMPLATE_DECL's first because is_friend didn't. */
1290 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1291 != DECL_NAME (friend_decl))
1292 return false;
1293
1294 /* Now check template parameter list. */
1295 friend_parms
1296 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1297 args, tf_none);
1298 return comp_template_parms
1299 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1300 friend_parms);
1301 }
1302 else
1303 return (DECL_NAME (decl)
1304 == DECL_NAME (friend_decl));
1305 }
1306 }
1307 return false;
1308 }
1309
1310 /* Register the specialization SPEC as a specialization of TMPL with
1311 the indicated ARGS. IS_FRIEND indicates whether the specialization
1312 is actually just a friend declaration. Returns SPEC, or an
1313 equivalent prior declaration, if available. */
1314
1315 static tree
1316 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1317 hashval_t hash)
1318 {
1319 tree fn;
1320 void **slot = NULL;
1321 spec_entry elt;
1322
1323 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec));
1324
1325 if (TREE_CODE (spec) == FUNCTION_DECL
1326 && uses_template_parms (DECL_TI_ARGS (spec)))
1327 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1328 register it; we want the corresponding TEMPLATE_DECL instead.
1329 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1330 the more obvious `uses_template_parms (spec)' to avoid problems
1331 with default function arguments. In particular, given
1332 something like this:
1333
1334 template <class T> void f(T t1, T t = T())
1335
1336 the default argument expression is not substituted for in an
1337 instantiation unless and until it is actually needed. */
1338 return spec;
1339
1340 if (optimize_specialization_lookup_p (tmpl))
1341 /* We don't put these specializations in the hash table, but we might
1342 want to give an error about a mismatch. */
1343 fn = retrieve_specialization (tmpl, args, 0);
1344 else
1345 {
1346 elt.tmpl = tmpl;
1347 elt.args = args;
1348 elt.spec = spec;
1349
1350 if (hash == 0)
1351 hash = hash_specialization (&elt);
1352
1353 slot =
1354 htab_find_slot_with_hash (decl_specializations, &elt, hash, INSERT);
1355 if (*slot)
1356 fn = ((spec_entry *) *slot)->spec;
1357 else
1358 fn = NULL_TREE;
1359 }
1360
1361 /* We can sometimes try to re-register a specialization that we've
1362 already got. In particular, regenerate_decl_from_template calls
1363 duplicate_decls which will update the specialization list. But,
1364 we'll still get called again here anyhow. It's more convenient
1365 to simply allow this than to try to prevent it. */
1366 if (fn == spec)
1367 return spec;
1368 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1369 {
1370 if (DECL_TEMPLATE_INSTANTIATION (fn))
1371 {
1372 if (DECL_ODR_USED (fn)
1373 || DECL_EXPLICIT_INSTANTIATION (fn))
1374 {
1375 error ("specialization of %qD after instantiation",
1376 fn);
1377 return error_mark_node;
1378 }
1379 else
1380 {
1381 tree clone;
1382 /* This situation should occur only if the first
1383 specialization is an implicit instantiation, the
1384 second is an explicit specialization, and the
1385 implicit instantiation has not yet been used. That
1386 situation can occur if we have implicitly
1387 instantiated a member function and then specialized
1388 it later.
1389
1390 We can also wind up here if a friend declaration that
1391 looked like an instantiation turns out to be a
1392 specialization:
1393
1394 template <class T> void foo(T);
1395 class S { friend void foo<>(int) };
1396 template <> void foo(int);
1397
1398 We transform the existing DECL in place so that any
1399 pointers to it become pointers to the updated
1400 declaration.
1401
1402 If there was a definition for the template, but not
1403 for the specialization, we want this to look as if
1404 there were no definition, and vice versa. */
1405 DECL_INITIAL (fn) = NULL_TREE;
1406 duplicate_decls (spec, fn, is_friend);
1407 /* The call to duplicate_decls will have applied
1408 [temp.expl.spec]:
1409
1410 An explicit specialization of a function template
1411 is inline only if it is explicitly declared to be,
1412 and independently of whether its function template
1413 is.
1414
1415 to the primary function; now copy the inline bits to
1416 the various clones. */
1417 FOR_EACH_CLONE (clone, fn)
1418 {
1419 DECL_DECLARED_INLINE_P (clone)
1420 = DECL_DECLARED_INLINE_P (fn);
1421 DECL_SOURCE_LOCATION (clone)
1422 = DECL_SOURCE_LOCATION (fn);
1423 }
1424 check_specialization_namespace (tmpl);
1425
1426 return fn;
1427 }
1428 }
1429 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1430 {
1431 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1432 /* Dup decl failed, but this is a new definition. Set the
1433 line number so any errors match this new
1434 definition. */
1435 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1436
1437 return fn;
1438 }
1439 }
1440 else if (fn)
1441 return duplicate_decls (spec, fn, is_friend);
1442
1443 /* A specialization must be declared in the same namespace as the
1444 template it is specializing. */
1445 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1446 && !check_specialization_namespace (tmpl))
1447 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1448
1449 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1450 {
1451 spec_entry *entry = ggc_alloc_spec_entry ();
1452 gcc_assert (tmpl && args && spec);
1453 *entry = elt;
1454 *slot = entry;
1455 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1456 && PRIMARY_TEMPLATE_P (tmpl)
1457 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1458 /* TMPL is a forward declaration of a template function; keep a list
1459 of all specializations in case we need to reassign them to a friend
1460 template later in tsubst_friend_function. */
1461 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1462 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1463 }
1464
1465 return spec;
1466 }
1467
1468 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1469 TMPL and ARGS members, ignores SPEC. */
1470
1471 int comparing_specializations;
1472
1473 static int
1474 eq_specializations (const void *p1, const void *p2)
1475 {
1476 const spec_entry *e1 = (const spec_entry *)p1;
1477 const spec_entry *e2 = (const spec_entry *)p2;
1478 int equal;
1479
1480 ++comparing_specializations;
1481 equal = (e1->tmpl == e2->tmpl
1482 && comp_template_args (e1->args, e2->args));
1483 --comparing_specializations;
1484
1485 return equal;
1486 }
1487
1488 /* Returns a hash for a template TMPL and template arguments ARGS. */
1489
1490 static hashval_t
1491 hash_tmpl_and_args (tree tmpl, tree args)
1492 {
1493 hashval_t val = DECL_UID (tmpl);
1494 return iterative_hash_template_arg (args, val);
1495 }
1496
1497 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1498 ignoring SPEC. */
1499
1500 static hashval_t
1501 hash_specialization (const void *p)
1502 {
1503 const spec_entry *e = (const spec_entry *)p;
1504 return hash_tmpl_and_args (e->tmpl, e->args);
1505 }
1506
1507 /* Recursively calculate a hash value for a template argument ARG, for use
1508 in the hash tables of template specializations. */
1509
1510 hashval_t
1511 iterative_hash_template_arg (tree arg, hashval_t val)
1512 {
1513 unsigned HOST_WIDE_INT i;
1514 enum tree_code code;
1515 char tclass;
1516
1517 if (arg == NULL_TREE)
1518 return iterative_hash_object (arg, val);
1519
1520 if (!TYPE_P (arg))
1521 STRIP_NOPS (arg);
1522
1523 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1524 /* We can get one of these when re-hashing a previous entry in the middle
1525 of substituting into a pack expansion. Just look through it. */
1526 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1527
1528 code = TREE_CODE (arg);
1529 tclass = TREE_CODE_CLASS (code);
1530
1531 val = iterative_hash_object (code, val);
1532
1533 switch (code)
1534 {
1535 case ERROR_MARK:
1536 return val;
1537
1538 case IDENTIFIER_NODE:
1539 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1540
1541 case TREE_VEC:
1542 {
1543 int i, len = TREE_VEC_LENGTH (arg);
1544 for (i = 0; i < len; ++i)
1545 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1546 return val;
1547 }
1548
1549 case TYPE_PACK_EXPANSION:
1550 case EXPR_PACK_EXPANSION:
1551 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1552 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1553
1554 case TYPE_ARGUMENT_PACK:
1555 case NONTYPE_ARGUMENT_PACK:
1556 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1557
1558 case TREE_LIST:
1559 for (; arg; arg = TREE_CHAIN (arg))
1560 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1561 return val;
1562
1563 case OVERLOAD:
1564 for (; arg; arg = OVL_NEXT (arg))
1565 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1566 return val;
1567
1568 case CONSTRUCTOR:
1569 {
1570 tree field, value;
1571 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1572 {
1573 val = iterative_hash_template_arg (field, val);
1574 val = iterative_hash_template_arg (value, val);
1575 }
1576 return val;
1577 }
1578
1579 case PARM_DECL:
1580 if (!DECL_ARTIFICIAL (arg))
1581 {
1582 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1583 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1584 }
1585 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1586
1587 case TARGET_EXPR:
1588 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1589
1590 case PTRMEM_CST:
1591 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1592 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1593
1594 case TEMPLATE_PARM_INDEX:
1595 val = iterative_hash_template_arg
1596 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1597 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1598 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1599
1600 case TRAIT_EXPR:
1601 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1602 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1603 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1604
1605 case BASELINK:
1606 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1607 val);
1608 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1609 val);
1610
1611 case MODOP_EXPR:
1612 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1613 code = TREE_CODE (TREE_OPERAND (arg, 1));
1614 val = iterative_hash_object (code, val);
1615 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1616
1617 case LAMBDA_EXPR:
1618 /* A lambda can't appear in a template arg, but don't crash on
1619 erroneous input. */
1620 gcc_assert (seen_error ());
1621 return val;
1622
1623 case CAST_EXPR:
1624 case IMPLICIT_CONV_EXPR:
1625 case STATIC_CAST_EXPR:
1626 case REINTERPRET_CAST_EXPR:
1627 case CONST_CAST_EXPR:
1628 case DYNAMIC_CAST_EXPR:
1629 case NEW_EXPR:
1630 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1631 /* Now hash operands as usual. */
1632 break;
1633
1634 default:
1635 break;
1636 }
1637
1638 switch (tclass)
1639 {
1640 case tcc_type:
1641 if (TYPE_CANONICAL (arg))
1642 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1643 val);
1644 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1645 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1646 /* Otherwise just compare the types during lookup. */
1647 return val;
1648
1649 case tcc_declaration:
1650 case tcc_constant:
1651 return iterative_hash_expr (arg, val);
1652
1653 default:
1654 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1655 {
1656 unsigned n = cp_tree_operand_length (arg);
1657 for (i = 0; i < n; ++i)
1658 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1659 return val;
1660 }
1661 }
1662 gcc_unreachable ();
1663 return 0;
1664 }
1665
1666 /* Unregister the specialization SPEC as a specialization of TMPL.
1667 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1668 if the SPEC was listed as a specialization of TMPL.
1669
1670 Note that SPEC has been ggc_freed, so we can't look inside it. */
1671
1672 bool
1673 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1674 {
1675 spec_entry *entry;
1676 spec_entry elt;
1677
1678 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1679 elt.args = TI_ARGS (tinfo);
1680 elt.spec = NULL_TREE;
1681
1682 entry = (spec_entry *) htab_find (decl_specializations, &elt);
1683 if (entry != NULL)
1684 {
1685 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1686 gcc_assert (new_spec != NULL_TREE);
1687 entry->spec = new_spec;
1688 return 1;
1689 }
1690
1691 return 0;
1692 }
1693
1694 /* Like register_specialization, but for local declarations. We are
1695 registering SPEC, an instantiation of TMPL. */
1696
1697 static void
1698 register_local_specialization (tree spec, tree tmpl)
1699 {
1700 void **slot;
1701
1702 slot = pointer_map_insert (local_specializations, tmpl);
1703 *slot = spec;
1704 }
1705
1706 /* TYPE is a class type. Returns true if TYPE is an explicitly
1707 specialized class. */
1708
1709 bool
1710 explicit_class_specialization_p (tree type)
1711 {
1712 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1713 return false;
1714 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1715 }
1716
1717 /* Print the list of functions at FNS, going through all the overloads
1718 for each element of the list. Alternatively, FNS can not be a
1719 TREE_LIST, in which case it will be printed together with all the
1720 overloads.
1721
1722 MORE and *STR should respectively be FALSE and NULL when the function
1723 is called from the outside. They are used internally on recursive
1724 calls. print_candidates manages the two parameters and leaves NULL
1725 in *STR when it ends. */
1726
1727 static void
1728 print_candidates_1 (tree fns, bool more, const char **str)
1729 {
1730 tree fn, fn2;
1731 char *spaces = NULL;
1732
1733 for (fn = fns; fn; fn = OVL_NEXT (fn))
1734 if (TREE_CODE (fn) == TREE_LIST)
1735 {
1736 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1737 print_candidates_1 (TREE_VALUE (fn2),
1738 TREE_CHAIN (fn2) || more, str);
1739 }
1740 else
1741 {
1742 tree cand = OVL_CURRENT (fn);
1743 if (!*str)
1744 {
1745 /* Pick the prefix string. */
1746 if (!more && !OVL_NEXT (fns))
1747 {
1748 inform (DECL_SOURCE_LOCATION (cand),
1749 "candidate is: %#D", cand);
1750 continue;
1751 }
1752
1753 *str = _("candidates are:");
1754 spaces = get_spaces (*str);
1755 }
1756 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1757 *str = spaces ? spaces : *str;
1758 }
1759
1760 if (!more)
1761 {
1762 free (spaces);
1763 *str = NULL;
1764 }
1765 }
1766
1767 /* Print the list of candidate FNS in an error message. FNS can also
1768 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1769
1770 void
1771 print_candidates (tree fns)
1772 {
1773 const char *str = NULL;
1774 print_candidates_1 (fns, false, &str);
1775 gcc_assert (str == NULL);
1776 }
1777
1778 /* Returns the template (one of the functions given by TEMPLATE_ID)
1779 which can be specialized to match the indicated DECL with the
1780 explicit template args given in TEMPLATE_ID. The DECL may be
1781 NULL_TREE if none is available. In that case, the functions in
1782 TEMPLATE_ID are non-members.
1783
1784 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1785 specialization of a member template.
1786
1787 The TEMPLATE_COUNT is the number of references to qualifying
1788 template classes that appeared in the name of the function. See
1789 check_explicit_specialization for a more accurate description.
1790
1791 TSK indicates what kind of template declaration (if any) is being
1792 declared. TSK_TEMPLATE indicates that the declaration given by
1793 DECL, though a FUNCTION_DECL, has template parameters, and is
1794 therefore a template function.
1795
1796 The template args (those explicitly specified and those deduced)
1797 are output in a newly created vector *TARGS_OUT.
1798
1799 If it is impossible to determine the result, an error message is
1800 issued. The error_mark_node is returned to indicate failure. */
1801
1802 static tree
1803 determine_specialization (tree template_id,
1804 tree decl,
1805 tree* targs_out,
1806 int need_member_template,
1807 int template_count,
1808 tmpl_spec_kind tsk)
1809 {
1810 tree fns;
1811 tree targs;
1812 tree explicit_targs;
1813 tree candidates = NULL_TREE;
1814 /* A TREE_LIST of templates of which DECL may be a specialization.
1815 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1816 corresponding TREE_PURPOSE is the set of template arguments that,
1817 when used to instantiate the template, would produce a function
1818 with the signature of DECL. */
1819 tree templates = NULL_TREE;
1820 int header_count;
1821 cp_binding_level *b;
1822
1823 *targs_out = NULL_TREE;
1824
1825 if (template_id == error_mark_node || decl == error_mark_node)
1826 return error_mark_node;
1827
1828 /* We shouldn't be specializing a member template of an
1829 unspecialized class template; we already gave an error in
1830 check_specialization_scope, now avoid crashing. */
1831 if (template_count && DECL_CLASS_SCOPE_P (decl)
1832 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1833 {
1834 gcc_assert (errorcount);
1835 return error_mark_node;
1836 }
1837
1838 fns = TREE_OPERAND (template_id, 0);
1839 explicit_targs = TREE_OPERAND (template_id, 1);
1840
1841 if (fns == error_mark_node)
1842 return error_mark_node;
1843
1844 /* Check for baselinks. */
1845 if (BASELINK_P (fns))
1846 fns = BASELINK_FUNCTIONS (fns);
1847
1848 if (!is_overloaded_fn (fns))
1849 {
1850 error ("%qD is not a function template", fns);
1851 return error_mark_node;
1852 }
1853
1854 /* Count the number of template headers specified for this
1855 specialization. */
1856 header_count = 0;
1857 for (b = current_binding_level;
1858 b->kind == sk_template_parms;
1859 b = b->level_chain)
1860 ++header_count;
1861
1862 for (; fns; fns = OVL_NEXT (fns))
1863 {
1864 tree fn = OVL_CURRENT (fns);
1865
1866 if (TREE_CODE (fn) == TEMPLATE_DECL)
1867 {
1868 tree decl_arg_types;
1869 tree fn_arg_types;
1870 tree insttype;
1871
1872 /* In case of explicit specialization, we need to check if
1873 the number of template headers appearing in the specialization
1874 is correct. This is usually done in check_explicit_specialization,
1875 but the check done there cannot be exhaustive when specializing
1876 member functions. Consider the following code:
1877
1878 template <> void A<int>::f(int);
1879 template <> template <> void A<int>::f(int);
1880
1881 Assuming that A<int> is not itself an explicit specialization
1882 already, the first line specializes "f" which is a non-template
1883 member function, whilst the second line specializes "f" which
1884 is a template member function. So both lines are syntactically
1885 correct, and check_explicit_specialization does not reject
1886 them.
1887
1888 Here, we can do better, as we are matching the specialization
1889 against the declarations. We count the number of template
1890 headers, and we check if they match TEMPLATE_COUNT + 1
1891 (TEMPLATE_COUNT is the number of qualifying template classes,
1892 plus there must be another header for the member template
1893 itself).
1894
1895 Notice that if header_count is zero, this is not a
1896 specialization but rather a template instantiation, so there
1897 is no check we can perform here. */
1898 if (header_count && header_count != template_count + 1)
1899 continue;
1900
1901 /* Check that the number of template arguments at the
1902 innermost level for DECL is the same as for FN. */
1903 if (current_binding_level->kind == sk_template_parms
1904 && !current_binding_level->explicit_spec_p
1905 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1906 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1907 (current_template_parms))))
1908 continue;
1909
1910 /* DECL might be a specialization of FN. */
1911 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1912 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1913
1914 /* For a non-static member function, we need to make sure
1915 that the const qualification is the same. Since
1916 get_bindings does not try to merge the "this" parameter,
1917 we must do the comparison explicitly. */
1918 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1919 && !same_type_p (TREE_VALUE (fn_arg_types),
1920 TREE_VALUE (decl_arg_types)))
1921 continue;
1922
1923 /* Skip the "this" parameter and, for constructors of
1924 classes with virtual bases, the VTT parameter. A
1925 full specialization of a constructor will have a VTT
1926 parameter, but a template never will. */
1927 decl_arg_types
1928 = skip_artificial_parms_for (decl, decl_arg_types);
1929 fn_arg_types
1930 = skip_artificial_parms_for (fn, fn_arg_types);
1931
1932 /* Function templates cannot be specializations; there are
1933 no partial specializations of functions. Therefore, if
1934 the type of DECL does not match FN, there is no
1935 match. */
1936 if (tsk == tsk_template)
1937 {
1938 if (compparms (fn_arg_types, decl_arg_types))
1939 candidates = tree_cons (NULL_TREE, fn, candidates);
1940 continue;
1941 }
1942
1943 /* See whether this function might be a specialization of this
1944 template. Suppress access control because we might be trying
1945 to make this specialization a friend, and we have already done
1946 access control for the declaration of the specialization. */
1947 push_deferring_access_checks (dk_no_check);
1948 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1949 pop_deferring_access_checks ();
1950
1951 if (!targs)
1952 /* We cannot deduce template arguments that when used to
1953 specialize TMPL will produce DECL. */
1954 continue;
1955
1956 /* Make sure that the deduced arguments actually work. */
1957 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1958 if (insttype == error_mark_node)
1959 continue;
1960 fn_arg_types
1961 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
1962 if (!compparms (fn_arg_types, decl_arg_types))
1963 continue;
1964
1965 /* Save this template, and the arguments deduced. */
1966 templates = tree_cons (targs, fn, templates);
1967 }
1968 else if (need_member_template)
1969 /* FN is an ordinary member function, and we need a
1970 specialization of a member template. */
1971 ;
1972 else if (TREE_CODE (fn) != FUNCTION_DECL)
1973 /* We can get IDENTIFIER_NODEs here in certain erroneous
1974 cases. */
1975 ;
1976 else if (!DECL_FUNCTION_MEMBER_P (fn))
1977 /* This is just an ordinary non-member function. Nothing can
1978 be a specialization of that. */
1979 ;
1980 else if (DECL_ARTIFICIAL (fn))
1981 /* Cannot specialize functions that are created implicitly. */
1982 ;
1983 else
1984 {
1985 tree decl_arg_types;
1986
1987 /* This is an ordinary member function. However, since
1988 we're here, we can assume it's enclosing class is a
1989 template class. For example,
1990
1991 template <typename T> struct S { void f(); };
1992 template <> void S<int>::f() {}
1993
1994 Here, S<int>::f is a non-template, but S<int> is a
1995 template class. If FN has the same type as DECL, we
1996 might be in business. */
1997
1998 if (!DECL_TEMPLATE_INFO (fn))
1999 /* Its enclosing class is an explicit specialization
2000 of a template class. This is not a candidate. */
2001 continue;
2002
2003 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2004 TREE_TYPE (TREE_TYPE (fn))))
2005 /* The return types differ. */
2006 continue;
2007
2008 /* Adjust the type of DECL in case FN is a static member. */
2009 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2010 if (DECL_STATIC_FUNCTION_P (fn)
2011 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2012 decl_arg_types = TREE_CHAIN (decl_arg_types);
2013
2014 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2015 decl_arg_types))
2016 /* They match! */
2017 candidates = tree_cons (NULL_TREE, fn, candidates);
2018 }
2019 }
2020
2021 if (templates && TREE_CHAIN (templates))
2022 {
2023 /* We have:
2024
2025 [temp.expl.spec]
2026
2027 It is possible for a specialization with a given function
2028 signature to be instantiated from more than one function
2029 template. In such cases, explicit specification of the
2030 template arguments must be used to uniquely identify the
2031 function template specialization being specialized.
2032
2033 Note that here, there's no suggestion that we're supposed to
2034 determine which of the candidate templates is most
2035 specialized. However, we, also have:
2036
2037 [temp.func.order]
2038
2039 Partial ordering of overloaded function template
2040 declarations is used in the following contexts to select
2041 the function template to which a function template
2042 specialization refers:
2043
2044 -- when an explicit specialization refers to a function
2045 template.
2046
2047 So, we do use the partial ordering rules, at least for now.
2048 This extension can only serve to make invalid programs valid,
2049 so it's safe. And, there is strong anecdotal evidence that
2050 the committee intended the partial ordering rules to apply;
2051 the EDG front end has that behavior, and John Spicer claims
2052 that the committee simply forgot to delete the wording in
2053 [temp.expl.spec]. */
2054 tree tmpl = most_specialized_instantiation (templates);
2055 if (tmpl != error_mark_node)
2056 {
2057 templates = tmpl;
2058 TREE_CHAIN (templates) = NULL_TREE;
2059 }
2060 }
2061
2062 if (templates == NULL_TREE && candidates == NULL_TREE)
2063 {
2064 error ("template-id %qD for %q+D does not match any template "
2065 "declaration", template_id, decl);
2066 if (header_count && header_count != template_count + 1)
2067 inform (input_location, "saw %d %<template<>%>, need %d for "
2068 "specializing a member function template",
2069 header_count, template_count + 1);
2070 return error_mark_node;
2071 }
2072 else if ((templates && TREE_CHAIN (templates))
2073 || (candidates && TREE_CHAIN (candidates))
2074 || (templates && candidates))
2075 {
2076 error ("ambiguous template specialization %qD for %q+D",
2077 template_id, decl);
2078 candidates = chainon (candidates, templates);
2079 print_candidates (candidates);
2080 return error_mark_node;
2081 }
2082
2083 /* We have one, and exactly one, match. */
2084 if (candidates)
2085 {
2086 tree fn = TREE_VALUE (candidates);
2087 *targs_out = copy_node (DECL_TI_ARGS (fn));
2088 /* DECL is a re-declaration or partial instantiation of a template
2089 function. */
2090 if (TREE_CODE (fn) == TEMPLATE_DECL)
2091 return fn;
2092 /* It was a specialization of an ordinary member function in a
2093 template class. */
2094 return DECL_TI_TEMPLATE (fn);
2095 }
2096
2097 /* It was a specialization of a template. */
2098 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2099 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2100 {
2101 *targs_out = copy_node (targs);
2102 SET_TMPL_ARGS_LEVEL (*targs_out,
2103 TMPL_ARGS_DEPTH (*targs_out),
2104 TREE_PURPOSE (templates));
2105 }
2106 else
2107 *targs_out = TREE_PURPOSE (templates);
2108 return TREE_VALUE (templates);
2109 }
2110
2111 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2112 but with the default argument values filled in from those in the
2113 TMPL_TYPES. */
2114
2115 static tree
2116 copy_default_args_to_explicit_spec_1 (tree spec_types,
2117 tree tmpl_types)
2118 {
2119 tree new_spec_types;
2120
2121 if (!spec_types)
2122 return NULL_TREE;
2123
2124 if (spec_types == void_list_node)
2125 return void_list_node;
2126
2127 /* Substitute into the rest of the list. */
2128 new_spec_types =
2129 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2130 TREE_CHAIN (tmpl_types));
2131
2132 /* Add the default argument for this parameter. */
2133 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2134 TREE_VALUE (spec_types),
2135 new_spec_types);
2136 }
2137
2138 /* DECL is an explicit specialization. Replicate default arguments
2139 from the template it specializes. (That way, code like:
2140
2141 template <class T> void f(T = 3);
2142 template <> void f(double);
2143 void g () { f (); }
2144
2145 works, as required.) An alternative approach would be to look up
2146 the correct default arguments at the call-site, but this approach
2147 is consistent with how implicit instantiations are handled. */
2148
2149 static void
2150 copy_default_args_to_explicit_spec (tree decl)
2151 {
2152 tree tmpl;
2153 tree spec_types;
2154 tree tmpl_types;
2155 tree new_spec_types;
2156 tree old_type;
2157 tree new_type;
2158 tree t;
2159 tree object_type = NULL_TREE;
2160 tree in_charge = NULL_TREE;
2161 tree vtt = NULL_TREE;
2162
2163 /* See if there's anything we need to do. */
2164 tmpl = DECL_TI_TEMPLATE (decl);
2165 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2166 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2167 if (TREE_PURPOSE (t))
2168 break;
2169 if (!t)
2170 return;
2171
2172 old_type = TREE_TYPE (decl);
2173 spec_types = TYPE_ARG_TYPES (old_type);
2174
2175 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2176 {
2177 /* Remove the this pointer, but remember the object's type for
2178 CV quals. */
2179 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2180 spec_types = TREE_CHAIN (spec_types);
2181 tmpl_types = TREE_CHAIN (tmpl_types);
2182
2183 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2184 {
2185 /* DECL may contain more parameters than TMPL due to the extra
2186 in-charge parameter in constructors and destructors. */
2187 in_charge = spec_types;
2188 spec_types = TREE_CHAIN (spec_types);
2189 }
2190 if (DECL_HAS_VTT_PARM_P (decl))
2191 {
2192 vtt = spec_types;
2193 spec_types = TREE_CHAIN (spec_types);
2194 }
2195 }
2196
2197 /* Compute the merged default arguments. */
2198 new_spec_types =
2199 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2200
2201 /* Compute the new FUNCTION_TYPE. */
2202 if (object_type)
2203 {
2204 if (vtt)
2205 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2206 TREE_VALUE (vtt),
2207 new_spec_types);
2208
2209 if (in_charge)
2210 /* Put the in-charge parameter back. */
2211 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2212 TREE_VALUE (in_charge),
2213 new_spec_types);
2214
2215 new_type = build_method_type_directly (object_type,
2216 TREE_TYPE (old_type),
2217 new_spec_types);
2218 }
2219 else
2220 new_type = build_function_type (TREE_TYPE (old_type),
2221 new_spec_types);
2222 new_type = cp_build_type_attribute_variant (new_type,
2223 TYPE_ATTRIBUTES (old_type));
2224 new_type = build_exception_variant (new_type,
2225 TYPE_RAISES_EXCEPTIONS (old_type));
2226 TREE_TYPE (decl) = new_type;
2227 }
2228
2229 /* Return the number of template headers we expect to see for a definition
2230 or specialization of CTYPE or one of its non-template members. */
2231
2232 int
2233 num_template_headers_for_class (tree ctype)
2234 {
2235 int num_templates = 0;
2236
2237 while (ctype && CLASS_TYPE_P (ctype))
2238 {
2239 /* You're supposed to have one `template <...>' for every
2240 template class, but you don't need one for a full
2241 specialization. For example:
2242
2243 template <class T> struct S{};
2244 template <> struct S<int> { void f(); };
2245 void S<int>::f () {}
2246
2247 is correct; there shouldn't be a `template <>' for the
2248 definition of `S<int>::f'. */
2249 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2250 /* If CTYPE does not have template information of any
2251 kind, then it is not a template, nor is it nested
2252 within a template. */
2253 break;
2254 if (explicit_class_specialization_p (ctype))
2255 break;
2256 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2257 ++num_templates;
2258
2259 ctype = TYPE_CONTEXT (ctype);
2260 }
2261
2262 return num_templates;
2263 }
2264
2265 /* Do a simple sanity check on the template headers that precede the
2266 variable declaration DECL. */
2267
2268 void
2269 check_template_variable (tree decl)
2270 {
2271 tree ctx = CP_DECL_CONTEXT (decl);
2272 int wanted = num_template_headers_for_class (ctx);
2273 if (!TYPE_P (ctx) || !CLASSTYPE_TEMPLATE_INFO (ctx))
2274 permerror (DECL_SOURCE_LOCATION (decl),
2275 "%qD is not a static data member of a class template", decl);
2276 else if (template_header_count > wanted)
2277 {
2278 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2279 "too many template headers for %D (should be %d)",
2280 decl, wanted);
2281 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2282 inform (DECL_SOURCE_LOCATION (decl),
2283 "members of an explicitly specialized class are defined "
2284 "without a template header");
2285 }
2286 }
2287
2288 /* Check to see if the function just declared, as indicated in
2289 DECLARATOR, and in DECL, is a specialization of a function
2290 template. We may also discover that the declaration is an explicit
2291 instantiation at this point.
2292
2293 Returns DECL, or an equivalent declaration that should be used
2294 instead if all goes well. Issues an error message if something is
2295 amiss. Returns error_mark_node if the error is not easily
2296 recoverable.
2297
2298 FLAGS is a bitmask consisting of the following flags:
2299
2300 2: The function has a definition.
2301 4: The function is a friend.
2302
2303 The TEMPLATE_COUNT is the number of references to qualifying
2304 template classes that appeared in the name of the function. For
2305 example, in
2306
2307 template <class T> struct S { void f(); };
2308 void S<int>::f();
2309
2310 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2311 classes are not counted in the TEMPLATE_COUNT, so that in
2312
2313 template <class T> struct S {};
2314 template <> struct S<int> { void f(); }
2315 template <> void S<int>::f();
2316
2317 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2318 invalid; there should be no template <>.)
2319
2320 If the function is a specialization, it is marked as such via
2321 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2322 is set up correctly, and it is added to the list of specializations
2323 for that template. */
2324
2325 tree
2326 check_explicit_specialization (tree declarator,
2327 tree decl,
2328 int template_count,
2329 int flags)
2330 {
2331 int have_def = flags & 2;
2332 int is_friend = flags & 4;
2333 int specialization = 0;
2334 int explicit_instantiation = 0;
2335 int member_specialization = 0;
2336 tree ctype = DECL_CLASS_CONTEXT (decl);
2337 tree dname = DECL_NAME (decl);
2338 tmpl_spec_kind tsk;
2339
2340 if (is_friend)
2341 {
2342 if (!processing_specialization)
2343 tsk = tsk_none;
2344 else
2345 tsk = tsk_excessive_parms;
2346 }
2347 else
2348 tsk = current_tmpl_spec_kind (template_count);
2349
2350 switch (tsk)
2351 {
2352 case tsk_none:
2353 if (processing_specialization)
2354 {
2355 specialization = 1;
2356 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2357 }
2358 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2359 {
2360 if (is_friend)
2361 /* This could be something like:
2362
2363 template <class T> void f(T);
2364 class S { friend void f<>(int); } */
2365 specialization = 1;
2366 else
2367 {
2368 /* This case handles bogus declarations like template <>
2369 template <class T> void f<int>(); */
2370
2371 error ("template-id %qD in declaration of primary template",
2372 declarator);
2373 return decl;
2374 }
2375 }
2376 break;
2377
2378 case tsk_invalid_member_spec:
2379 /* The error has already been reported in
2380 check_specialization_scope. */
2381 return error_mark_node;
2382
2383 case tsk_invalid_expl_inst:
2384 error ("template parameter list used in explicit instantiation");
2385
2386 /* Fall through. */
2387
2388 case tsk_expl_inst:
2389 if (have_def)
2390 error ("definition provided for explicit instantiation");
2391
2392 explicit_instantiation = 1;
2393 break;
2394
2395 case tsk_excessive_parms:
2396 case tsk_insufficient_parms:
2397 if (tsk == tsk_excessive_parms)
2398 error ("too many template parameter lists in declaration of %qD",
2399 decl);
2400 else if (template_header_count)
2401 error("too few template parameter lists in declaration of %qD", decl);
2402 else
2403 error("explicit specialization of %qD must be introduced by "
2404 "%<template <>%>", decl);
2405
2406 /* Fall through. */
2407 case tsk_expl_spec:
2408 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2409 if (ctype)
2410 member_specialization = 1;
2411 else
2412 specialization = 1;
2413 break;
2414
2415 case tsk_template:
2416 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2417 {
2418 /* This case handles bogus declarations like template <>
2419 template <class T> void f<int>(); */
2420
2421 if (uses_template_parms (declarator))
2422 error ("function template partial specialization %qD "
2423 "is not allowed", declarator);
2424 else
2425 error ("template-id %qD in declaration of primary template",
2426 declarator);
2427 return decl;
2428 }
2429
2430 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2431 /* This is a specialization of a member template, without
2432 specialization the containing class. Something like:
2433
2434 template <class T> struct S {
2435 template <class U> void f (U);
2436 };
2437 template <> template <class U> void S<int>::f(U) {}
2438
2439 That's a specialization -- but of the entire template. */
2440 specialization = 1;
2441 break;
2442
2443 default:
2444 gcc_unreachable ();
2445 }
2446
2447 if (specialization || member_specialization)
2448 {
2449 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2450 for (; t; t = TREE_CHAIN (t))
2451 if (TREE_PURPOSE (t))
2452 {
2453 permerror (input_location,
2454 "default argument specified in explicit specialization");
2455 break;
2456 }
2457 }
2458
2459 if (specialization || member_specialization || explicit_instantiation)
2460 {
2461 tree tmpl = NULL_TREE;
2462 tree targs = NULL_TREE;
2463
2464 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2465 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2466 {
2467 tree fns;
2468
2469 gcc_assert (identifier_p (declarator));
2470 if (ctype)
2471 fns = dname;
2472 else
2473 {
2474 /* If there is no class context, the explicit instantiation
2475 must be at namespace scope. */
2476 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2477
2478 /* Find the namespace binding, using the declaration
2479 context. */
2480 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2481 false, true);
2482 if (fns == error_mark_node || !is_overloaded_fn (fns))
2483 {
2484 error ("%qD is not a template function", dname);
2485 fns = error_mark_node;
2486 }
2487 else
2488 {
2489 tree fn = OVL_CURRENT (fns);
2490 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2491 CP_DECL_CONTEXT (fn)))
2492 error ("%qD is not declared in %qD",
2493 decl, current_namespace);
2494 }
2495 }
2496
2497 declarator = lookup_template_function (fns, NULL_TREE);
2498 }
2499
2500 if (declarator == error_mark_node)
2501 return error_mark_node;
2502
2503 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2504 {
2505 if (!explicit_instantiation)
2506 /* A specialization in class scope. This is invalid,
2507 but the error will already have been flagged by
2508 check_specialization_scope. */
2509 return error_mark_node;
2510 else
2511 {
2512 /* It's not valid to write an explicit instantiation in
2513 class scope, e.g.:
2514
2515 class C { template void f(); }
2516
2517 This case is caught by the parser. However, on
2518 something like:
2519
2520 template class C { void f(); };
2521
2522 (which is invalid) we can get here. The error will be
2523 issued later. */
2524 ;
2525 }
2526
2527 return decl;
2528 }
2529 else if (ctype != NULL_TREE
2530 && (identifier_p (TREE_OPERAND (declarator, 0))))
2531 {
2532 /* Find the list of functions in ctype that have the same
2533 name as the declared function. */
2534 tree name = TREE_OPERAND (declarator, 0);
2535 tree fns = NULL_TREE;
2536 int idx;
2537
2538 if (constructor_name_p (name, ctype))
2539 {
2540 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2541
2542 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2543 : !CLASSTYPE_DESTRUCTORS (ctype))
2544 {
2545 /* From [temp.expl.spec]:
2546
2547 If such an explicit specialization for the member
2548 of a class template names an implicitly-declared
2549 special member function (clause _special_), the
2550 program is ill-formed.
2551
2552 Similar language is found in [temp.explicit]. */
2553 error ("specialization of implicitly-declared special member function");
2554 return error_mark_node;
2555 }
2556
2557 name = is_constructor ? ctor_identifier : dtor_identifier;
2558 }
2559
2560 if (!DECL_CONV_FN_P (decl))
2561 {
2562 idx = lookup_fnfields_1 (ctype, name);
2563 if (idx >= 0)
2564 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2565 }
2566 else
2567 {
2568 vec<tree, va_gc> *methods;
2569 tree ovl;
2570
2571 /* For a type-conversion operator, we cannot do a
2572 name-based lookup. We might be looking for `operator
2573 int' which will be a specialization of `operator T'.
2574 So, we find *all* the conversion operators, and then
2575 select from them. */
2576 fns = NULL_TREE;
2577
2578 methods = CLASSTYPE_METHOD_VEC (ctype);
2579 if (methods)
2580 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2581 methods->iterate (idx, &ovl);
2582 ++idx)
2583 {
2584 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2585 /* There are no more conversion functions. */
2586 break;
2587
2588 /* Glue all these conversion functions together
2589 with those we already have. */
2590 for (; ovl; ovl = OVL_NEXT (ovl))
2591 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2592 }
2593 }
2594
2595 if (fns == NULL_TREE)
2596 {
2597 error ("no member function %qD declared in %qT", name, ctype);
2598 return error_mark_node;
2599 }
2600 else
2601 TREE_OPERAND (declarator, 0) = fns;
2602 }
2603
2604 /* Figure out what exactly is being specialized at this point.
2605 Note that for an explicit instantiation, even one for a
2606 member function, we cannot tell apriori whether the
2607 instantiation is for a member template, or just a member
2608 function of a template class. Even if a member template is
2609 being instantiated, the member template arguments may be
2610 elided if they can be deduced from the rest of the
2611 declaration. */
2612 tmpl = determine_specialization (declarator, decl,
2613 &targs,
2614 member_specialization,
2615 template_count,
2616 tsk);
2617
2618 if (!tmpl || tmpl == error_mark_node)
2619 /* We couldn't figure out what this declaration was
2620 specializing. */
2621 return error_mark_node;
2622 else
2623 {
2624 tree gen_tmpl = most_general_template (tmpl);
2625
2626 if (explicit_instantiation)
2627 {
2628 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2629 is done by do_decl_instantiation later. */
2630
2631 int arg_depth = TMPL_ARGS_DEPTH (targs);
2632 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2633
2634 if (arg_depth > parm_depth)
2635 {
2636 /* If TMPL is not the most general template (for
2637 example, if TMPL is a friend template that is
2638 injected into namespace scope), then there will
2639 be too many levels of TARGS. Remove some of them
2640 here. */
2641 int i;
2642 tree new_targs;
2643
2644 new_targs = make_tree_vec (parm_depth);
2645 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2646 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2647 = TREE_VEC_ELT (targs, i);
2648 targs = new_targs;
2649 }
2650
2651 return instantiate_template (tmpl, targs, tf_error);
2652 }
2653
2654 /* If we thought that the DECL was a member function, but it
2655 turns out to be specializing a static member function,
2656 make DECL a static member function as well. */
2657 if (DECL_STATIC_FUNCTION_P (tmpl)
2658 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2659 revert_static_member_fn (decl);
2660
2661 /* If this is a specialization of a member template of a
2662 template class, we want to return the TEMPLATE_DECL, not
2663 the specialization of it. */
2664 if (tsk == tsk_template)
2665 {
2666 tree result = DECL_TEMPLATE_RESULT (tmpl);
2667 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2668 DECL_INITIAL (result) = NULL_TREE;
2669 if (have_def)
2670 {
2671 tree parm;
2672 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2673 DECL_SOURCE_LOCATION (result)
2674 = DECL_SOURCE_LOCATION (decl);
2675 /* We want to use the argument list specified in the
2676 definition, not in the original declaration. */
2677 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2678 for (parm = DECL_ARGUMENTS (result); parm;
2679 parm = DECL_CHAIN (parm))
2680 DECL_CONTEXT (parm) = result;
2681 }
2682 return register_specialization (tmpl, gen_tmpl, targs,
2683 is_friend, 0);
2684 }
2685
2686 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2687 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2688
2689 /* Inherit default function arguments from the template
2690 DECL is specializing. */
2691 copy_default_args_to_explicit_spec (decl);
2692
2693 /* This specialization has the same protection as the
2694 template it specializes. */
2695 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2696 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2697
2698 /* 7.1.1-1 [dcl.stc]
2699
2700 A storage-class-specifier shall not be specified in an
2701 explicit specialization...
2702
2703 The parser rejects these, so unless action is taken here,
2704 explicit function specializations will always appear with
2705 global linkage.
2706
2707 The action recommended by the C++ CWG in response to C++
2708 defect report 605 is to make the storage class and linkage
2709 of the explicit specialization match the templated function:
2710
2711 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2712 */
2713 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2714 {
2715 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2716 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2717
2718 /* This specialization has the same linkage and visibility as
2719 the function template it specializes. */
2720 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2721 if (! TREE_PUBLIC (decl))
2722 {
2723 DECL_INTERFACE_KNOWN (decl) = 1;
2724 DECL_NOT_REALLY_EXTERN (decl) = 1;
2725 }
2726 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2727 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2728 {
2729 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2730 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2731 }
2732 }
2733
2734 /* If DECL is a friend declaration, declared using an
2735 unqualified name, the namespace associated with DECL may
2736 have been set incorrectly. For example, in:
2737
2738 template <typename T> void f(T);
2739 namespace N {
2740 struct S { friend void f<int>(int); }
2741 }
2742
2743 we will have set the DECL_CONTEXT for the friend
2744 declaration to N, rather than to the global namespace. */
2745 if (DECL_NAMESPACE_SCOPE_P (decl))
2746 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2747
2748 if (is_friend && !have_def)
2749 /* This is not really a declaration of a specialization.
2750 It's just the name of an instantiation. But, it's not
2751 a request for an instantiation, either. */
2752 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2753 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2754 /* This is indeed a specialization. In case of constructors
2755 and destructors, we need in-charge and not-in-charge
2756 versions in V3 ABI. */
2757 clone_function_decl (decl, /*update_method_vec_p=*/0);
2758
2759 /* Register this specialization so that we can find it
2760 again. */
2761 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2762 }
2763 }
2764
2765 return decl;
2766 }
2767
2768 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2769 parameters. These are represented in the same format used for
2770 DECL_TEMPLATE_PARMS. */
2771
2772 int
2773 comp_template_parms (const_tree parms1, const_tree parms2)
2774 {
2775 const_tree p1;
2776 const_tree p2;
2777
2778 if (parms1 == parms2)
2779 return 1;
2780
2781 for (p1 = parms1, p2 = parms2;
2782 p1 != NULL_TREE && p2 != NULL_TREE;
2783 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2784 {
2785 tree t1 = TREE_VALUE (p1);
2786 tree t2 = TREE_VALUE (p2);
2787 int i;
2788
2789 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2790 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2791
2792 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2793 return 0;
2794
2795 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2796 {
2797 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2798 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2799
2800 /* If either of the template parameters are invalid, assume
2801 they match for the sake of error recovery. */
2802 if (parm1 == error_mark_node || parm2 == error_mark_node)
2803 return 1;
2804
2805 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2806 return 0;
2807
2808 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2809 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2810 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2811 continue;
2812 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2813 return 0;
2814 }
2815 }
2816
2817 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2818 /* One set of parameters has more parameters lists than the
2819 other. */
2820 return 0;
2821
2822 return 1;
2823 }
2824
2825 /* Determine whether PARM is a parameter pack. */
2826
2827 bool
2828 template_parameter_pack_p (const_tree parm)
2829 {
2830 /* Determine if we have a non-type template parameter pack. */
2831 if (TREE_CODE (parm) == PARM_DECL)
2832 return (DECL_TEMPLATE_PARM_P (parm)
2833 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2834 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2835 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2836
2837 /* If this is a list of template parameters, we could get a
2838 TYPE_DECL or a TEMPLATE_DECL. */
2839 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2840 parm = TREE_TYPE (parm);
2841
2842 /* Otherwise it must be a type template parameter. */
2843 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2844 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2845 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2846 }
2847
2848 /* Determine if T is a function parameter pack. */
2849
2850 bool
2851 function_parameter_pack_p (const_tree t)
2852 {
2853 if (t && TREE_CODE (t) == PARM_DECL)
2854 return FUNCTION_PARAMETER_PACK_P (t);
2855 return false;
2856 }
2857
2858 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2859 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2860
2861 tree
2862 get_function_template_decl (const_tree primary_func_tmpl_inst)
2863 {
2864 if (! primary_func_tmpl_inst
2865 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2866 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2867 return NULL;
2868
2869 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2870 }
2871
2872 /* Return true iff the function parameter PARAM_DECL was expanded
2873 from the function parameter pack PACK. */
2874
2875 bool
2876 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2877 {
2878 if (DECL_ARTIFICIAL (param_decl)
2879 || !function_parameter_pack_p (pack))
2880 return false;
2881
2882 /* The parameter pack and its pack arguments have the same
2883 DECL_PARM_INDEX. */
2884 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2885 }
2886
2887 /* Determine whether ARGS describes a variadic template args list,
2888 i.e., one that is terminated by a template argument pack. */
2889
2890 static bool
2891 template_args_variadic_p (tree args)
2892 {
2893 int nargs;
2894 tree last_parm;
2895
2896 if (args == NULL_TREE)
2897 return false;
2898
2899 args = INNERMOST_TEMPLATE_ARGS (args);
2900 nargs = TREE_VEC_LENGTH (args);
2901
2902 if (nargs == 0)
2903 return false;
2904
2905 last_parm = TREE_VEC_ELT (args, nargs - 1);
2906
2907 return ARGUMENT_PACK_P (last_parm);
2908 }
2909
2910 /* Generate a new name for the parameter pack name NAME (an
2911 IDENTIFIER_NODE) that incorporates its */
2912
2913 static tree
2914 make_ith_pack_parameter_name (tree name, int i)
2915 {
2916 /* Munge the name to include the parameter index. */
2917 #define NUMBUF_LEN 128
2918 char numbuf[NUMBUF_LEN];
2919 char* newname;
2920 int newname_len;
2921
2922 if (name == NULL_TREE)
2923 return name;
2924 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2925 newname_len = IDENTIFIER_LENGTH (name)
2926 + strlen (numbuf) + 2;
2927 newname = (char*)alloca (newname_len);
2928 snprintf (newname, newname_len,
2929 "%s#%i", IDENTIFIER_POINTER (name), i);
2930 return get_identifier (newname);
2931 }
2932
2933 /* Return true if T is a primary function, class or alias template
2934 instantiation. */
2935
2936 bool
2937 primary_template_instantiation_p (const_tree t)
2938 {
2939 if (!t)
2940 return false;
2941
2942 if (TREE_CODE (t) == FUNCTION_DECL)
2943 return DECL_LANG_SPECIFIC (t)
2944 && DECL_TEMPLATE_INSTANTIATION (t)
2945 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
2946 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
2947 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
2948 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
2949 else if (alias_template_specialization_p (t))
2950 return true;
2951 return false;
2952 }
2953
2954 /* Return true if PARM is a template template parameter. */
2955
2956 bool
2957 template_template_parameter_p (const_tree parm)
2958 {
2959 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
2960 }
2961
2962 /* Return true iff PARM is a DECL representing a type template
2963 parameter. */
2964
2965 bool
2966 template_type_parameter_p (const_tree parm)
2967 {
2968 return (parm
2969 && (TREE_CODE (parm) == TYPE_DECL
2970 || TREE_CODE (parm) == TEMPLATE_DECL)
2971 && DECL_TEMPLATE_PARM_P (parm));
2972 }
2973
2974 /* Return the template parameters of T if T is a
2975 primary template instantiation, NULL otherwise. */
2976
2977 tree
2978 get_primary_template_innermost_parameters (const_tree t)
2979 {
2980 tree parms = NULL, template_info = NULL;
2981
2982 if ((template_info = get_template_info (t))
2983 && primary_template_instantiation_p (t))
2984 parms = INNERMOST_TEMPLATE_PARMS
2985 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
2986
2987 return parms;
2988 }
2989
2990 /* Return the template parameters of the LEVELth level from the full list
2991 of template parameters PARMS. */
2992
2993 tree
2994 get_template_parms_at_level (tree parms, int level)
2995 {
2996 tree p;
2997 if (!parms
2998 || TREE_CODE (parms) != TREE_LIST
2999 || level > TMPL_PARMS_DEPTH (parms))
3000 return NULL_TREE;
3001
3002 for (p = parms; p; p = TREE_CHAIN (p))
3003 if (TMPL_PARMS_DEPTH (p) == level)
3004 return p;
3005
3006 return NULL_TREE;
3007 }
3008
3009 /* Returns the template arguments of T if T is a template instantiation,
3010 NULL otherwise. */
3011
3012 tree
3013 get_template_innermost_arguments (const_tree t)
3014 {
3015 tree args = NULL, template_info = NULL;
3016
3017 if ((template_info = get_template_info (t))
3018 && TI_ARGS (template_info))
3019 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3020
3021 return args;
3022 }
3023
3024 /* Return the argument pack elements of T if T is a template argument pack,
3025 NULL otherwise. */
3026
3027 tree
3028 get_template_argument_pack_elems (const_tree t)
3029 {
3030 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3031 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3032 return NULL;
3033
3034 return ARGUMENT_PACK_ARGS (t);
3035 }
3036
3037 /* Structure used to track the progress of find_parameter_packs_r. */
3038 struct find_parameter_pack_data
3039 {
3040 /* TREE_LIST that will contain all of the parameter packs found by
3041 the traversal. */
3042 tree* parameter_packs;
3043
3044 /* Set of AST nodes that have been visited by the traversal. */
3045 struct pointer_set_t *visited;
3046 };
3047
3048 /* Identifies all of the argument packs that occur in a template
3049 argument and appends them to the TREE_LIST inside DATA, which is a
3050 find_parameter_pack_data structure. This is a subroutine of
3051 make_pack_expansion and uses_parameter_packs. */
3052 static tree
3053 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3054 {
3055 tree t = *tp;
3056 struct find_parameter_pack_data* ppd =
3057 (struct find_parameter_pack_data*)data;
3058 bool parameter_pack_p = false;
3059
3060 /* Handle type aliases/typedefs. */
3061 if (TYPE_ALIAS_P (t))
3062 {
3063 if (TYPE_TEMPLATE_INFO (t))
3064 cp_walk_tree (&TYPE_TI_ARGS (t),
3065 &find_parameter_packs_r,
3066 ppd, ppd->visited);
3067 *walk_subtrees = 0;
3068 return NULL_TREE;
3069 }
3070
3071 /* Identify whether this is a parameter pack or not. */
3072 switch (TREE_CODE (t))
3073 {
3074 case TEMPLATE_PARM_INDEX:
3075 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3076 parameter_pack_p = true;
3077 break;
3078
3079 case TEMPLATE_TYPE_PARM:
3080 t = TYPE_MAIN_VARIANT (t);
3081 case TEMPLATE_TEMPLATE_PARM:
3082 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3083 parameter_pack_p = true;
3084 break;
3085
3086 case PARM_DECL:
3087 if (FUNCTION_PARAMETER_PACK_P (t))
3088 {
3089 /* We don't want to walk into the type of a PARM_DECL,
3090 because we don't want to see the type parameter pack. */
3091 *walk_subtrees = 0;
3092 parameter_pack_p = true;
3093 }
3094 break;
3095
3096 case BASES:
3097 parameter_pack_p = true;
3098 break;
3099 default:
3100 /* Not a parameter pack. */
3101 break;
3102 }
3103
3104 if (parameter_pack_p)
3105 {
3106 /* Add this parameter pack to the list. */
3107 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3108 }
3109
3110 if (TYPE_P (t))
3111 cp_walk_tree (&TYPE_CONTEXT (t),
3112 &find_parameter_packs_r, ppd, ppd->visited);
3113
3114 /* This switch statement will return immediately if we don't find a
3115 parameter pack. */
3116 switch (TREE_CODE (t))
3117 {
3118 case TEMPLATE_PARM_INDEX:
3119 return NULL_TREE;
3120
3121 case BOUND_TEMPLATE_TEMPLATE_PARM:
3122 /* Check the template itself. */
3123 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3124 &find_parameter_packs_r, ppd, ppd->visited);
3125 /* Check the template arguments. */
3126 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3127 ppd->visited);
3128 *walk_subtrees = 0;
3129 return NULL_TREE;
3130
3131 case TEMPLATE_TYPE_PARM:
3132 case TEMPLATE_TEMPLATE_PARM:
3133 return NULL_TREE;
3134
3135 case PARM_DECL:
3136 return NULL_TREE;
3137
3138 case RECORD_TYPE:
3139 if (TYPE_PTRMEMFUNC_P (t))
3140 return NULL_TREE;
3141 /* Fall through. */
3142
3143 case UNION_TYPE:
3144 case ENUMERAL_TYPE:
3145 if (TYPE_TEMPLATE_INFO (t))
3146 cp_walk_tree (&TYPE_TI_ARGS (t),
3147 &find_parameter_packs_r, ppd, ppd->visited);
3148
3149 *walk_subtrees = 0;
3150 return NULL_TREE;
3151
3152 case CONSTRUCTOR:
3153 case TEMPLATE_DECL:
3154 cp_walk_tree (&TREE_TYPE (t),
3155 &find_parameter_packs_r, ppd, ppd->visited);
3156 return NULL_TREE;
3157
3158 case TYPENAME_TYPE:
3159 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3160 ppd, ppd->visited);
3161 *walk_subtrees = 0;
3162 return NULL_TREE;
3163
3164 case TYPE_PACK_EXPANSION:
3165 case EXPR_PACK_EXPANSION:
3166 *walk_subtrees = 0;
3167 return NULL_TREE;
3168
3169 case INTEGER_TYPE:
3170 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3171 ppd, ppd->visited);
3172 *walk_subtrees = 0;
3173 return NULL_TREE;
3174
3175 case IDENTIFIER_NODE:
3176 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3177 ppd->visited);
3178 *walk_subtrees = 0;
3179 return NULL_TREE;
3180
3181 default:
3182 return NULL_TREE;
3183 }
3184
3185 return NULL_TREE;
3186 }
3187
3188 /* Determines if the expression or type T uses any parameter packs. */
3189 bool
3190 uses_parameter_packs (tree t)
3191 {
3192 tree parameter_packs = NULL_TREE;
3193 struct find_parameter_pack_data ppd;
3194 ppd.parameter_packs = &parameter_packs;
3195 ppd.visited = pointer_set_create ();
3196 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3197 pointer_set_destroy (ppd.visited);
3198 return parameter_packs != NULL_TREE;
3199 }
3200
3201 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3202 representation a base-class initializer into a parameter pack
3203 expansion. If all goes well, the resulting node will be an
3204 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3205 respectively. */
3206 tree
3207 make_pack_expansion (tree arg)
3208 {
3209 tree result;
3210 tree parameter_packs = NULL_TREE;
3211 bool for_types = false;
3212 struct find_parameter_pack_data ppd;
3213
3214 if (!arg || arg == error_mark_node)
3215 return arg;
3216
3217 if (TREE_CODE (arg) == TREE_LIST)
3218 {
3219 /* The only time we will see a TREE_LIST here is for a base
3220 class initializer. In this case, the TREE_PURPOSE will be a
3221 _TYPE node (representing the base class expansion we're
3222 initializing) and the TREE_VALUE will be a TREE_LIST
3223 containing the initialization arguments.
3224
3225 The resulting expansion looks somewhat different from most
3226 expansions. Rather than returning just one _EXPANSION, we
3227 return a TREE_LIST whose TREE_PURPOSE is a
3228 TYPE_PACK_EXPANSION containing the bases that will be
3229 initialized. The TREE_VALUE will be identical to the
3230 original TREE_VALUE, which is a list of arguments that will
3231 be passed to each base. We do not introduce any new pack
3232 expansion nodes into the TREE_VALUE (although it is possible
3233 that some already exist), because the TREE_PURPOSE and
3234 TREE_VALUE all need to be expanded together with the same
3235 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3236 resulting TREE_PURPOSE will mention the parameter packs in
3237 both the bases and the arguments to the bases. */
3238 tree purpose;
3239 tree value;
3240 tree parameter_packs = NULL_TREE;
3241
3242 /* Determine which parameter packs will be used by the base
3243 class expansion. */
3244 ppd.visited = pointer_set_create ();
3245 ppd.parameter_packs = &parameter_packs;
3246 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3247 &ppd, ppd.visited);
3248
3249 if (parameter_packs == NULL_TREE)
3250 {
3251 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3252 pointer_set_destroy (ppd.visited);
3253 return error_mark_node;
3254 }
3255
3256 if (TREE_VALUE (arg) != void_type_node)
3257 {
3258 /* Collect the sets of parameter packs used in each of the
3259 initialization arguments. */
3260 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3261 {
3262 /* Determine which parameter packs will be expanded in this
3263 argument. */
3264 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3265 &ppd, ppd.visited);
3266 }
3267 }
3268
3269 pointer_set_destroy (ppd.visited);
3270
3271 /* Create the pack expansion type for the base type. */
3272 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3273 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3274 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3275
3276 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3277 they will rarely be compared to anything. */
3278 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3279
3280 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3281 }
3282
3283 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3284 for_types = true;
3285
3286 /* Build the PACK_EXPANSION_* node. */
3287 result = for_types
3288 ? cxx_make_type (TYPE_PACK_EXPANSION)
3289 : make_node (EXPR_PACK_EXPANSION);
3290 SET_PACK_EXPANSION_PATTERN (result, arg);
3291 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3292 {
3293 /* Propagate type and const-expression information. */
3294 TREE_TYPE (result) = TREE_TYPE (arg);
3295 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3296 }
3297 else
3298 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3299 they will rarely be compared to anything. */
3300 SET_TYPE_STRUCTURAL_EQUALITY (result);
3301
3302 /* Determine which parameter packs will be expanded. */
3303 ppd.parameter_packs = &parameter_packs;
3304 ppd.visited = pointer_set_create ();
3305 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3306 pointer_set_destroy (ppd.visited);
3307
3308 /* Make sure we found some parameter packs. */
3309 if (parameter_packs == NULL_TREE)
3310 {
3311 if (TYPE_P (arg))
3312 error ("expansion pattern %<%T%> contains no argument packs", arg);
3313 else
3314 error ("expansion pattern %<%E%> contains no argument packs", arg);
3315 return error_mark_node;
3316 }
3317 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3318
3319 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3320
3321 return result;
3322 }
3323
3324 /* Checks T for any "bare" parameter packs, which have not yet been
3325 expanded, and issues an error if any are found. This operation can
3326 only be done on full expressions or types (e.g., an expression
3327 statement, "if" condition, etc.), because we could have expressions like:
3328
3329 foo(f(g(h(args)))...)
3330
3331 where "args" is a parameter pack. check_for_bare_parameter_packs
3332 should not be called for the subexpressions args, h(args),
3333 g(h(args)), or f(g(h(args))), because we would produce erroneous
3334 error messages.
3335
3336 Returns TRUE and emits an error if there were bare parameter packs,
3337 returns FALSE otherwise. */
3338 bool
3339 check_for_bare_parameter_packs (tree t)
3340 {
3341 tree parameter_packs = NULL_TREE;
3342 struct find_parameter_pack_data ppd;
3343
3344 if (!processing_template_decl || !t || t == error_mark_node)
3345 return false;
3346
3347 if (TREE_CODE (t) == TYPE_DECL)
3348 t = TREE_TYPE (t);
3349
3350 ppd.parameter_packs = &parameter_packs;
3351 ppd.visited = pointer_set_create ();
3352 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3353 pointer_set_destroy (ppd.visited);
3354
3355 if (parameter_packs)
3356 {
3357 error ("parameter packs not expanded with %<...%>:");
3358 while (parameter_packs)
3359 {
3360 tree pack = TREE_VALUE (parameter_packs);
3361 tree name = NULL_TREE;
3362
3363 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3364 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3365 name = TYPE_NAME (pack);
3366 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3367 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3368 else
3369 name = DECL_NAME (pack);
3370
3371 if (name)
3372 inform (input_location, " %qD", name);
3373 else
3374 inform (input_location, " <anonymous>");
3375
3376 parameter_packs = TREE_CHAIN (parameter_packs);
3377 }
3378
3379 return true;
3380 }
3381
3382 return false;
3383 }
3384
3385 /* Expand any parameter packs that occur in the template arguments in
3386 ARGS. */
3387 tree
3388 expand_template_argument_pack (tree args)
3389 {
3390 tree result_args = NULL_TREE;
3391 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3392 int num_result_args = -1;
3393 int non_default_args_count = -1;
3394
3395 /* First, determine if we need to expand anything, and the number of
3396 slots we'll need. */
3397 for (in_arg = 0; in_arg < nargs; ++in_arg)
3398 {
3399 tree arg = TREE_VEC_ELT (args, in_arg);
3400 if (arg == NULL_TREE)
3401 return args;
3402 if (ARGUMENT_PACK_P (arg))
3403 {
3404 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3405 if (num_result_args < 0)
3406 num_result_args = in_arg + num_packed;
3407 else
3408 num_result_args += num_packed;
3409 }
3410 else
3411 {
3412 if (num_result_args >= 0)
3413 num_result_args++;
3414 }
3415 }
3416
3417 /* If no expansion is necessary, we're done. */
3418 if (num_result_args < 0)
3419 return args;
3420
3421 /* Expand arguments. */
3422 result_args = make_tree_vec (num_result_args);
3423 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3424 non_default_args_count =
3425 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3426 for (in_arg = 0; in_arg < nargs; ++in_arg)
3427 {
3428 tree arg = TREE_VEC_ELT (args, in_arg);
3429 if (ARGUMENT_PACK_P (arg))
3430 {
3431 tree packed = ARGUMENT_PACK_ARGS (arg);
3432 int i, num_packed = TREE_VEC_LENGTH (packed);
3433 for (i = 0; i < num_packed; ++i, ++out_arg)
3434 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3435 if (non_default_args_count > 0)
3436 non_default_args_count += num_packed;
3437 }
3438 else
3439 {
3440 TREE_VEC_ELT (result_args, out_arg) = arg;
3441 ++out_arg;
3442 }
3443 }
3444 if (non_default_args_count >= 0)
3445 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3446 return result_args;
3447 }
3448
3449 /* Checks if DECL shadows a template parameter.
3450
3451 [temp.local]: A template-parameter shall not be redeclared within its
3452 scope (including nested scopes).
3453
3454 Emits an error and returns TRUE if the DECL shadows a parameter,
3455 returns FALSE otherwise. */
3456
3457 bool
3458 check_template_shadow (tree decl)
3459 {
3460 tree olddecl;
3461
3462 /* If we're not in a template, we can't possibly shadow a template
3463 parameter. */
3464 if (!current_template_parms)
3465 return true;
3466
3467 /* Figure out what we're shadowing. */
3468 if (TREE_CODE (decl) == OVERLOAD)
3469 decl = OVL_CURRENT (decl);
3470 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3471
3472 /* If there's no previous binding for this name, we're not shadowing
3473 anything, let alone a template parameter. */
3474 if (!olddecl)
3475 return true;
3476
3477 /* If we're not shadowing a template parameter, we're done. Note
3478 that OLDDECL might be an OVERLOAD (or perhaps even an
3479 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3480 node. */
3481 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3482 return true;
3483
3484 /* We check for decl != olddecl to avoid bogus errors for using a
3485 name inside a class. We check TPFI to avoid duplicate errors for
3486 inline member templates. */
3487 if (decl == olddecl
3488 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
3489 return true;
3490
3491 error ("declaration of %q+#D", decl);
3492 error (" shadows template parm %q+#D", olddecl);
3493 return false;
3494 }
3495
3496 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3497 ORIG_LEVEL, DECL, and TYPE. */
3498
3499 static tree
3500 build_template_parm_index (int index,
3501 int level,
3502 int orig_level,
3503 tree decl,
3504 tree type)
3505 {
3506 tree t = make_node (TEMPLATE_PARM_INDEX);
3507 TEMPLATE_PARM_IDX (t) = index;
3508 TEMPLATE_PARM_LEVEL (t) = level;
3509 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3510 TEMPLATE_PARM_DECL (t) = decl;
3511 TREE_TYPE (t) = type;
3512 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3513 TREE_READONLY (t) = TREE_READONLY (decl);
3514
3515 return t;
3516 }
3517
3518 /* Find the canonical type parameter for the given template type
3519 parameter. Returns the canonical type parameter, which may be TYPE
3520 if no such parameter existed. */
3521
3522 static tree
3523 canonical_type_parameter (tree type)
3524 {
3525 tree list;
3526 int idx = TEMPLATE_TYPE_IDX (type);
3527 if (!canonical_template_parms)
3528 vec_alloc (canonical_template_parms, idx+1);
3529
3530 while (canonical_template_parms->length () <= (unsigned)idx)
3531 vec_safe_push (canonical_template_parms, NULL_TREE);
3532
3533 list = (*canonical_template_parms)[idx];
3534 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3535 list = TREE_CHAIN (list);
3536
3537 if (list)
3538 return TREE_VALUE (list);
3539 else
3540 {
3541 (*canonical_template_parms)[idx]
3542 = tree_cons (NULL_TREE, type,
3543 (*canonical_template_parms)[idx]);
3544 return type;
3545 }
3546 }
3547
3548 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3549 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3550 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3551 new one is created. */
3552
3553 static tree
3554 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3555 tsubst_flags_t complain)
3556 {
3557 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3558 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3559 != TEMPLATE_PARM_LEVEL (index) - levels)
3560 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3561 {
3562 tree orig_decl = TEMPLATE_PARM_DECL (index);
3563 tree decl, t;
3564
3565 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3566 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3567 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3568 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3569 DECL_ARTIFICIAL (decl) = 1;
3570 SET_DECL_TEMPLATE_PARM_P (decl);
3571
3572 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3573 TEMPLATE_PARM_LEVEL (index) - levels,
3574 TEMPLATE_PARM_ORIG_LEVEL (index),
3575 decl, type);
3576 TEMPLATE_PARM_DESCENDANTS (index) = t;
3577 TEMPLATE_PARM_PARAMETER_PACK (t)
3578 = TEMPLATE_PARM_PARAMETER_PACK (index);
3579
3580 /* Template template parameters need this. */
3581 if (TREE_CODE (decl) == TEMPLATE_DECL)
3582 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3583 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3584 args, complain);
3585 }
3586
3587 return TEMPLATE_PARM_DESCENDANTS (index);
3588 }
3589
3590 /* Process information from new template parameter PARM and append it
3591 to the LIST being built. This new parameter is a non-type
3592 parameter iff IS_NON_TYPE is true. This new parameter is a
3593 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3594 is in PARM_LOC. NUM_TEMPLATE_PARMS is the size of the template
3595 parameter list PARM belongs to. This is used used to create a
3596 proper canonical type for the type of PARM that is to be created,
3597 iff PARM is a type. If the size is not known, this parameter shall
3598 be set to 0. */
3599
3600 tree
3601 process_template_parm (tree list, location_t parm_loc, tree parm,
3602 bool is_non_type, bool is_parameter_pack)
3603 {
3604 tree decl = 0;
3605 tree defval;
3606 tree err_parm_list;
3607 int idx = 0;
3608
3609 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3610 defval = TREE_PURPOSE (parm);
3611
3612 if (list)
3613 {
3614 tree p = tree_last (list);
3615
3616 if (p && TREE_VALUE (p) != error_mark_node)
3617 {
3618 p = TREE_VALUE (p);
3619 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3620 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3621 else
3622 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3623 }
3624
3625 ++idx;
3626 }
3627 else
3628 idx = 0;
3629
3630 if (is_non_type)
3631 {
3632 parm = TREE_VALUE (parm);
3633
3634 SET_DECL_TEMPLATE_PARM_P (parm);
3635
3636 if (TREE_TYPE (parm) == error_mark_node)
3637 {
3638 err_parm_list = build_tree_list (defval, parm);
3639 TREE_VALUE (err_parm_list) = error_mark_node;
3640 return chainon (list, err_parm_list);
3641 }
3642 else
3643 {
3644 /* [temp.param]
3645
3646 The top-level cv-qualifiers on the template-parameter are
3647 ignored when determining its type. */
3648 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3649 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3650 {
3651 err_parm_list = build_tree_list (defval, parm);
3652 TREE_VALUE (err_parm_list) = error_mark_node;
3653 return chainon (list, err_parm_list);
3654 }
3655
3656 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
3657 {
3658 /* This template parameter is not a parameter pack, but it
3659 should be. Complain about "bare" parameter packs. */
3660 check_for_bare_parameter_packs (TREE_TYPE (parm));
3661
3662 /* Recover by calling this a parameter pack. */
3663 is_parameter_pack = true;
3664 }
3665 }
3666
3667 /* A template parameter is not modifiable. */
3668 TREE_CONSTANT (parm) = 1;
3669 TREE_READONLY (parm) = 1;
3670 decl = build_decl (parm_loc,
3671 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3672 TREE_CONSTANT (decl) = 1;
3673 TREE_READONLY (decl) = 1;
3674 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3675 = build_template_parm_index (idx, processing_template_decl,
3676 processing_template_decl,
3677 decl, TREE_TYPE (parm));
3678
3679 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3680 = is_parameter_pack;
3681 }
3682 else
3683 {
3684 tree t;
3685 parm = TREE_VALUE (TREE_VALUE (parm));
3686
3687 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3688 {
3689 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3690 /* This is for distinguishing between real templates and template
3691 template parameters */
3692 TREE_TYPE (parm) = t;
3693 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3694 decl = parm;
3695 }
3696 else
3697 {
3698 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3699 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3700 decl = build_decl (parm_loc,
3701 TYPE_DECL, parm, t);
3702 }
3703
3704 TYPE_NAME (t) = decl;
3705 TYPE_STUB_DECL (t) = decl;
3706 parm = decl;
3707 TEMPLATE_TYPE_PARM_INDEX (t)
3708 = build_template_parm_index (idx, processing_template_decl,
3709 processing_template_decl,
3710 decl, TREE_TYPE (parm));
3711 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3712 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3713 }
3714 DECL_ARTIFICIAL (decl) = 1;
3715 SET_DECL_TEMPLATE_PARM_P (decl);
3716 pushdecl (decl);
3717 parm = build_tree_list (defval, parm);
3718 return chainon (list, parm);
3719 }
3720
3721 /* The end of a template parameter list has been reached. Process the
3722 tree list into a parameter vector, converting each parameter into a more
3723 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3724 as PARM_DECLs. */
3725
3726 tree
3727 end_template_parm_list (tree parms)
3728 {
3729 int nparms;
3730 tree parm, next;
3731 tree saved_parmlist = make_tree_vec (list_length (parms));
3732
3733 current_template_parms
3734 = tree_cons (size_int (processing_template_decl),
3735 saved_parmlist, current_template_parms);
3736
3737 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3738 {
3739 next = TREE_CHAIN (parm);
3740 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3741 TREE_CHAIN (parm) = NULL_TREE;
3742 }
3743
3744 --processing_template_parmlist;
3745
3746 return saved_parmlist;
3747 }
3748
3749 /* end_template_decl is called after a template declaration is seen. */
3750
3751 void
3752 end_template_decl (void)
3753 {
3754 reset_specialization ();
3755
3756 if (! processing_template_decl)
3757 return;
3758
3759 /* This matches the pushlevel in begin_template_parm_list. */
3760 finish_scope ();
3761
3762 --processing_template_decl;
3763 current_template_parms = TREE_CHAIN (current_template_parms);
3764 }
3765
3766 /* Takes a TREE_LIST representing a template parameter and convert it
3767 into an argument suitable to be passed to the type substitution
3768 functions. Note that If the TREE_LIST contains an error_mark
3769 node, the returned argument is error_mark_node. */
3770
3771 static tree
3772 template_parm_to_arg (tree t)
3773 {
3774
3775 if (t == NULL_TREE
3776 || TREE_CODE (t) != TREE_LIST)
3777 return t;
3778
3779 if (error_operand_p (TREE_VALUE (t)))
3780 return error_mark_node;
3781
3782 t = TREE_VALUE (t);
3783
3784 if (TREE_CODE (t) == TYPE_DECL
3785 || TREE_CODE (t) == TEMPLATE_DECL)
3786 {
3787 t = TREE_TYPE (t);
3788
3789 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3790 {
3791 /* Turn this argument into a TYPE_ARGUMENT_PACK
3792 with a single element, which expands T. */
3793 tree vec = make_tree_vec (1);
3794 #ifdef ENABLE_CHECKING
3795 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3796 (vec, TREE_VEC_LENGTH (vec));
3797 #endif
3798 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3799
3800 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3801 SET_ARGUMENT_PACK_ARGS (t, vec);
3802 }
3803 }
3804 else
3805 {
3806 t = DECL_INITIAL (t);
3807
3808 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3809 {
3810 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3811 with a single element, which expands T. */
3812 tree vec = make_tree_vec (1);
3813 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3814 #ifdef ENABLE_CHECKING
3815 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3816 (vec, TREE_VEC_LENGTH (vec));
3817 #endif
3818 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3819
3820 t = make_node (NONTYPE_ARGUMENT_PACK);
3821 SET_ARGUMENT_PACK_ARGS (t, vec);
3822 TREE_TYPE (t) = type;
3823 }
3824 }
3825 return t;
3826 }
3827
3828 /* Given a set of template parameters, return them as a set of template
3829 arguments. The template parameters are represented as a TREE_VEC, in
3830 the form documented in cp-tree.h for template arguments. */
3831
3832 static tree
3833 template_parms_to_args (tree parms)
3834 {
3835 tree header;
3836 tree args = NULL_TREE;
3837 int length = TMPL_PARMS_DEPTH (parms);
3838 int l = length;
3839
3840 /* If there is only one level of template parameters, we do not
3841 create a TREE_VEC of TREE_VECs. Instead, we return a single
3842 TREE_VEC containing the arguments. */
3843 if (length > 1)
3844 args = make_tree_vec (length);
3845
3846 for (header = parms; header; header = TREE_CHAIN (header))
3847 {
3848 tree a = copy_node (TREE_VALUE (header));
3849 int i;
3850
3851 TREE_TYPE (a) = NULL_TREE;
3852 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3853 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3854
3855 #ifdef ENABLE_CHECKING
3856 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3857 #endif
3858
3859 if (length > 1)
3860 TREE_VEC_ELT (args, --l) = a;
3861 else
3862 args = a;
3863 }
3864
3865 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3866 /* This can happen for template parms of a template template
3867 parameter, e.g:
3868
3869 template<template<class T, class U> class TT> struct S;
3870
3871 Consider the level of the parms of TT; T and U both have
3872 level 2; TT has no template parm of level 1. So in this case
3873 the first element of full_template_args is NULL_TREE. If we
3874 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
3875 of 2. This will make tsubst wrongly consider that T and U
3876 have level 1. Instead, let's create a dummy vector as the
3877 first element of full_template_args so that TMPL_ARGS_DEPTH
3878 returns the correct depth for args. */
3879 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3880 return args;
3881 }
3882
3883 /* Within the declaration of a template, return the currently active
3884 template parameters as an argument TREE_VEC. */
3885
3886 static tree
3887 current_template_args (void)
3888 {
3889 return template_parms_to_args (current_template_parms);
3890 }
3891
3892 /* Update the declared TYPE by doing any lookups which were thought to be
3893 dependent, but are not now that we know the SCOPE of the declarator. */
3894
3895 tree
3896 maybe_update_decl_type (tree orig_type, tree scope)
3897 {
3898 tree type = orig_type;
3899
3900 if (type == NULL_TREE)
3901 return type;
3902
3903 if (TREE_CODE (orig_type) == TYPE_DECL)
3904 type = TREE_TYPE (type);
3905
3906 if (scope && TYPE_P (scope) && dependent_type_p (scope)
3907 && dependent_type_p (type)
3908 /* Don't bother building up the args in this case. */
3909 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
3910 {
3911 /* tsubst in the args corresponding to the template parameters,
3912 including auto if present. Most things will be unchanged, but
3913 make_typename_type and tsubst_qualified_id will resolve
3914 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
3915 tree args = current_template_args ();
3916 tree auto_node = type_uses_auto (type);
3917 tree pushed;
3918 if (auto_node)
3919 {
3920 tree auto_vec = make_tree_vec (1);
3921 TREE_VEC_ELT (auto_vec, 0) = auto_node;
3922 args = add_to_template_args (args, auto_vec);
3923 }
3924 pushed = push_scope (scope);
3925 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
3926 if (pushed)
3927 pop_scope (scope);
3928 }
3929
3930 if (type == error_mark_node)
3931 return orig_type;
3932
3933 if (TREE_CODE (orig_type) == TYPE_DECL)
3934 {
3935 if (same_type_p (type, TREE_TYPE (orig_type)))
3936 type = orig_type;
3937 else
3938 type = TYPE_NAME (type);
3939 }
3940 return type;
3941 }
3942
3943 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
3944 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
3945 a member template. Used by push_template_decl below. */
3946
3947 static tree
3948 build_template_decl (tree decl, tree parms, bool member_template_p)
3949 {
3950 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3951 DECL_TEMPLATE_PARMS (tmpl) = parms;
3952 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
3953 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3954 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
3955
3956 return tmpl;
3957 }
3958
3959 struct template_parm_data
3960 {
3961 /* The level of the template parameters we are currently
3962 processing. */
3963 int level;
3964
3965 /* The index of the specialization argument we are currently
3966 processing. */
3967 int current_arg;
3968
3969 /* An array whose size is the number of template parameters. The
3970 elements are nonzero if the parameter has been used in any one
3971 of the arguments processed so far. */
3972 int* parms;
3973
3974 /* An array whose size is the number of template arguments. The
3975 elements are nonzero if the argument makes use of template
3976 parameters of this level. */
3977 int* arg_uses_template_parms;
3978 };
3979
3980 /* Subroutine of push_template_decl used to see if each template
3981 parameter in a partial specialization is used in the explicit
3982 argument list. If T is of the LEVEL given in DATA (which is
3983 treated as a template_parm_data*), then DATA->PARMS is marked
3984 appropriately. */
3985
3986 static int
3987 mark_template_parm (tree t, void* data)
3988 {
3989 int level;
3990 int idx;
3991 struct template_parm_data* tpd = (struct template_parm_data*) data;
3992
3993 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
3994 {
3995 level = TEMPLATE_PARM_LEVEL (t);
3996 idx = TEMPLATE_PARM_IDX (t);
3997 }
3998 else
3999 {
4000 level = TEMPLATE_TYPE_LEVEL (t);
4001 idx = TEMPLATE_TYPE_IDX (t);
4002 }
4003
4004 if (level == tpd->level)
4005 {
4006 tpd->parms[idx] = 1;
4007 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4008 }
4009
4010 /* Return zero so that for_each_template_parm will continue the
4011 traversal of the tree; we want to mark *every* template parm. */
4012 return 0;
4013 }
4014
4015 /* Process the partial specialization DECL. */
4016
4017 static tree
4018 process_partial_specialization (tree decl)
4019 {
4020 tree type = TREE_TYPE (decl);
4021 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4022 tree specargs = CLASSTYPE_TI_ARGS (type);
4023 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4024 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4025 tree inner_parms;
4026 tree inst;
4027 int nargs = TREE_VEC_LENGTH (inner_args);
4028 int ntparms;
4029 int i;
4030 bool did_error_intro = false;
4031 struct template_parm_data tpd;
4032 struct template_parm_data tpd2;
4033
4034 gcc_assert (current_template_parms);
4035
4036 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4037 ntparms = TREE_VEC_LENGTH (inner_parms);
4038
4039 /* We check that each of the template parameters given in the
4040 partial specialization is used in the argument list to the
4041 specialization. For example:
4042
4043 template <class T> struct S;
4044 template <class T> struct S<T*>;
4045
4046 The second declaration is OK because `T*' uses the template
4047 parameter T, whereas
4048
4049 template <class T> struct S<int>;
4050
4051 is no good. Even trickier is:
4052
4053 template <class T>
4054 struct S1
4055 {
4056 template <class U>
4057 struct S2;
4058 template <class U>
4059 struct S2<T>;
4060 };
4061
4062 The S2<T> declaration is actually invalid; it is a
4063 full-specialization. Of course,
4064
4065 template <class U>
4066 struct S2<T (*)(U)>;
4067
4068 or some such would have been OK. */
4069 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4070 tpd.parms = XALLOCAVEC (int, ntparms);
4071 memset (tpd.parms, 0, sizeof (int) * ntparms);
4072
4073 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4074 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4075 for (i = 0; i < nargs; ++i)
4076 {
4077 tpd.current_arg = i;
4078 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4079 &mark_template_parm,
4080 &tpd,
4081 NULL,
4082 /*include_nondeduced_p=*/false);
4083 }
4084 for (i = 0; i < ntparms; ++i)
4085 if (tpd.parms[i] == 0)
4086 {
4087 /* One of the template parms was not used in the
4088 specialization. */
4089 if (!did_error_intro)
4090 {
4091 error ("template parameters not used in partial specialization:");
4092 did_error_intro = true;
4093 }
4094
4095 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4096 }
4097
4098 if (did_error_intro)
4099 return error_mark_node;
4100
4101 /* [temp.class.spec]
4102
4103 The argument list of the specialization shall not be identical to
4104 the implicit argument list of the primary template. */
4105 if (comp_template_args
4106 (inner_args,
4107 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4108 (maintmpl)))))
4109 error ("partial specialization %qT does not specialize any template arguments", type);
4110
4111 /* A partial specialization that replaces multiple parameters of the
4112 primary template with a pack expansion is less specialized for those
4113 parameters. */
4114 if (nargs < DECL_NTPARMS (maintmpl))
4115 {
4116 error ("partial specialization is not more specialized than the "
4117 "primary template because it replaces multiple parameters "
4118 "with a pack expansion");
4119 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4120 return decl;
4121 }
4122
4123 /* [temp.class.spec]
4124
4125 A partially specialized non-type argument expression shall not
4126 involve template parameters of the partial specialization except
4127 when the argument expression is a simple identifier.
4128
4129 The type of a template parameter corresponding to a specialized
4130 non-type argument shall not be dependent on a parameter of the
4131 specialization.
4132
4133 Also, we verify that pack expansions only occur at the
4134 end of the argument list. */
4135 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4136 tpd2.parms = 0;
4137 for (i = 0; i < nargs; ++i)
4138 {
4139 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4140 tree arg = TREE_VEC_ELT (inner_args, i);
4141 tree packed_args = NULL_TREE;
4142 int j, len = 1;
4143
4144 if (ARGUMENT_PACK_P (arg))
4145 {
4146 /* Extract the arguments from the argument pack. We'll be
4147 iterating over these in the following loop. */
4148 packed_args = ARGUMENT_PACK_ARGS (arg);
4149 len = TREE_VEC_LENGTH (packed_args);
4150 }
4151
4152 for (j = 0; j < len; j++)
4153 {
4154 if (packed_args)
4155 /* Get the Jth argument in the parameter pack. */
4156 arg = TREE_VEC_ELT (packed_args, j);
4157
4158 if (PACK_EXPANSION_P (arg))
4159 {
4160 /* Pack expansions must come at the end of the
4161 argument list. */
4162 if ((packed_args && j < len - 1)
4163 || (!packed_args && i < nargs - 1))
4164 {
4165 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4166 error ("parameter pack argument %qE must be at the "
4167 "end of the template argument list", arg);
4168 else
4169 error ("parameter pack argument %qT must be at the "
4170 "end of the template argument list", arg);
4171 }
4172 }
4173
4174 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4175 /* We only care about the pattern. */
4176 arg = PACK_EXPANSION_PATTERN (arg);
4177
4178 if (/* These first two lines are the `non-type' bit. */
4179 !TYPE_P (arg)
4180 && TREE_CODE (arg) != TEMPLATE_DECL
4181 /* This next line is the `argument expression is not just a
4182 simple identifier' condition and also the `specialized
4183 non-type argument' bit. */
4184 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
4185 {
4186 if ((!packed_args && tpd.arg_uses_template_parms[i])
4187 || (packed_args && uses_template_parms (arg)))
4188 error ("template argument %qE involves template parameter(s)",
4189 arg);
4190 else
4191 {
4192 /* Look at the corresponding template parameter,
4193 marking which template parameters its type depends
4194 upon. */
4195 tree type = TREE_TYPE (parm);
4196
4197 if (!tpd2.parms)
4198 {
4199 /* We haven't yet initialized TPD2. Do so now. */
4200 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4201 /* The number of parameters here is the number in the
4202 main template, which, as checked in the assertion
4203 above, is NARGS. */
4204 tpd2.parms = XALLOCAVEC (int, nargs);
4205 tpd2.level =
4206 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4207 }
4208
4209 /* Mark the template parameters. But this time, we're
4210 looking for the template parameters of the main
4211 template, not in the specialization. */
4212 tpd2.current_arg = i;
4213 tpd2.arg_uses_template_parms[i] = 0;
4214 memset (tpd2.parms, 0, sizeof (int) * nargs);
4215 for_each_template_parm (type,
4216 &mark_template_parm,
4217 &tpd2,
4218 NULL,
4219 /*include_nondeduced_p=*/false);
4220
4221 if (tpd2.arg_uses_template_parms [i])
4222 {
4223 /* The type depended on some template parameters.
4224 If they are fully specialized in the
4225 specialization, that's OK. */
4226 int j;
4227 int count = 0;
4228 for (j = 0; j < nargs; ++j)
4229 if (tpd2.parms[j] != 0
4230 && tpd.arg_uses_template_parms [j])
4231 ++count;
4232 if (count != 0)
4233 error_n (input_location, count,
4234 "type %qT of template argument %qE depends "
4235 "on a template parameter",
4236 "type %qT of template argument %qE depends "
4237 "on template parameters",
4238 type,
4239 arg);
4240 }
4241 }
4242 }
4243 }
4244 }
4245
4246 /* We should only get here once. */
4247 gcc_assert (!COMPLETE_TYPE_P (type));
4248
4249 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4250 = tree_cons (specargs, inner_parms,
4251 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4252 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4253
4254 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4255 inst = TREE_CHAIN (inst))
4256 {
4257 tree inst_type = TREE_VALUE (inst);
4258 if (COMPLETE_TYPE_P (inst_type)
4259 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4260 {
4261 tree spec = most_specialized_class (inst_type, maintmpl, tf_none);
4262 if (spec && TREE_TYPE (spec) == type)
4263 permerror (input_location,
4264 "partial specialization of %qT after instantiation "
4265 "of %qT", type, inst_type);
4266 }
4267 }
4268
4269 return decl;
4270 }
4271
4272 /* Check that a template declaration's use of default arguments and
4273 parameter packs is not invalid. Here, PARMS are the template
4274 parameters. IS_PRIMARY is true if DECL is the thing declared by
4275 a primary template. IS_PARTIAL is true if DECL is a partial
4276 specialization.
4277
4278 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4279 declaration (but not a definition); 1 indicates a declaration, 2
4280 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4281 emitted for extraneous default arguments.
4282
4283 Returns TRUE if there were no errors found, FALSE otherwise. */
4284
4285 bool
4286 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4287 bool is_partial, int is_friend_decl)
4288 {
4289 const char *msg;
4290 int last_level_to_check;
4291 tree parm_level;
4292 bool no_errors = true;
4293
4294 /* [temp.param]
4295
4296 A default template-argument shall not be specified in a
4297 function template declaration or a function template definition, nor
4298 in the template-parameter-list of the definition of a member of a
4299 class template. */
4300
4301 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
4302 /* You can't have a function template declaration in a local
4303 scope, nor you can you define a member of a class template in a
4304 local scope. */
4305 return true;
4306
4307 if (TREE_CODE (decl) == TYPE_DECL
4308 && TREE_TYPE (decl)
4309 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4310 /* A lambda doesn't have an explicit declaration; don't complain
4311 about the parms of the enclosing class. */
4312 return true;
4313
4314 if (current_class_type
4315 && !TYPE_BEING_DEFINED (current_class_type)
4316 && DECL_LANG_SPECIFIC (decl)
4317 && DECL_DECLARES_FUNCTION_P (decl)
4318 /* If this is either a friend defined in the scope of the class
4319 or a member function. */
4320 && (DECL_FUNCTION_MEMBER_P (decl)
4321 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4322 : DECL_FRIEND_CONTEXT (decl)
4323 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4324 : false)
4325 /* And, if it was a member function, it really was defined in
4326 the scope of the class. */
4327 && (!DECL_FUNCTION_MEMBER_P (decl)
4328 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4329 /* We already checked these parameters when the template was
4330 declared, so there's no need to do it again now. This function
4331 was defined in class scope, but we're processing it's body now
4332 that the class is complete. */
4333 return true;
4334
4335 /* Core issue 226 (C++0x only): the following only applies to class
4336 templates. */
4337 if (is_primary
4338 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4339 {
4340 /* [temp.param]
4341
4342 If a template-parameter has a default template-argument, all
4343 subsequent template-parameters shall have a default
4344 template-argument supplied. */
4345 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4346 {
4347 tree inner_parms = TREE_VALUE (parm_level);
4348 int ntparms = TREE_VEC_LENGTH (inner_parms);
4349 int seen_def_arg_p = 0;
4350 int i;
4351
4352 for (i = 0; i < ntparms; ++i)
4353 {
4354 tree parm = TREE_VEC_ELT (inner_parms, i);
4355
4356 if (parm == error_mark_node)
4357 continue;
4358
4359 if (TREE_PURPOSE (parm))
4360 seen_def_arg_p = 1;
4361 else if (seen_def_arg_p
4362 && !template_parameter_pack_p (TREE_VALUE (parm)))
4363 {
4364 error ("no default argument for %qD", TREE_VALUE (parm));
4365 /* For better subsequent error-recovery, we indicate that
4366 there should have been a default argument. */
4367 TREE_PURPOSE (parm) = error_mark_node;
4368 no_errors = false;
4369 }
4370 else if (!is_partial
4371 && !is_friend_decl
4372 /* Don't complain about an enclosing partial
4373 specialization. */
4374 && parm_level == parms
4375 && TREE_CODE (decl) == TYPE_DECL
4376 && i < ntparms - 1
4377 && template_parameter_pack_p (TREE_VALUE (parm)))
4378 {
4379 /* A primary class template can only have one
4380 parameter pack, at the end of the template
4381 parameter list. */
4382
4383 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4384 error ("parameter pack %qE must be at the end of the"
4385 " template parameter list", TREE_VALUE (parm));
4386 else
4387 error ("parameter pack %qT must be at the end of the"
4388 " template parameter list",
4389 TREE_TYPE (TREE_VALUE (parm)));
4390
4391 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4392 = error_mark_node;
4393 no_errors = false;
4394 }
4395 }
4396 }
4397 }
4398
4399 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4400 || is_partial
4401 || !is_primary
4402 || is_friend_decl)
4403 /* For an ordinary class template, default template arguments are
4404 allowed at the innermost level, e.g.:
4405 template <class T = int>
4406 struct S {};
4407 but, in a partial specialization, they're not allowed even
4408 there, as we have in [temp.class.spec]:
4409
4410 The template parameter list of a specialization shall not
4411 contain default template argument values.
4412
4413 So, for a partial specialization, or for a function template
4414 (in C++98/C++03), we look at all of them. */
4415 ;
4416 else
4417 /* But, for a primary class template that is not a partial
4418 specialization we look at all template parameters except the
4419 innermost ones. */
4420 parms = TREE_CHAIN (parms);
4421
4422 /* Figure out what error message to issue. */
4423 if (is_friend_decl == 2)
4424 msg = G_("default template arguments may not be used in function template "
4425 "friend re-declaration");
4426 else if (is_friend_decl)
4427 msg = G_("default template arguments may not be used in function template "
4428 "friend declarations");
4429 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4430 msg = G_("default template arguments may not be used in function templates "
4431 "without -std=c++11 or -std=gnu++11");
4432 else if (is_partial)
4433 msg = G_("default template arguments may not be used in "
4434 "partial specializations");
4435 else
4436 msg = G_("default argument for template parameter for class enclosing %qD");
4437
4438 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4439 /* If we're inside a class definition, there's no need to
4440 examine the parameters to the class itself. On the one
4441 hand, they will be checked when the class is defined, and,
4442 on the other, default arguments are valid in things like:
4443 template <class T = double>
4444 struct S { template <class U> void f(U); };
4445 Here the default argument for `S' has no bearing on the
4446 declaration of `f'. */
4447 last_level_to_check = template_class_depth (current_class_type) + 1;
4448 else
4449 /* Check everything. */
4450 last_level_to_check = 0;
4451
4452 for (parm_level = parms;
4453 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4454 parm_level = TREE_CHAIN (parm_level))
4455 {
4456 tree inner_parms = TREE_VALUE (parm_level);
4457 int i;
4458 int ntparms;
4459
4460 ntparms = TREE_VEC_LENGTH (inner_parms);
4461 for (i = 0; i < ntparms; ++i)
4462 {
4463 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4464 continue;
4465
4466 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4467 {
4468 if (msg)
4469 {
4470 no_errors = false;
4471 if (is_friend_decl == 2)
4472 return no_errors;
4473
4474 error (msg, decl);
4475 msg = 0;
4476 }
4477
4478 /* Clear out the default argument so that we are not
4479 confused later. */
4480 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4481 }
4482 }
4483
4484 /* At this point, if we're still interested in issuing messages,
4485 they must apply to classes surrounding the object declared. */
4486 if (msg)
4487 msg = G_("default argument for template parameter for class "
4488 "enclosing %qD");
4489 }
4490
4491 return no_errors;
4492 }
4493
4494 /* Worker for push_template_decl_real, called via
4495 for_each_template_parm. DATA is really an int, indicating the
4496 level of the parameters we are interested in. If T is a template
4497 parameter of that level, return nonzero. */
4498
4499 static int
4500 template_parm_this_level_p (tree t, void* data)
4501 {
4502 int this_level = *(int *)data;
4503 int level;
4504
4505 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4506 level = TEMPLATE_PARM_LEVEL (t);
4507 else
4508 level = TEMPLATE_TYPE_LEVEL (t);
4509 return level == this_level;
4510 }
4511
4512 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4513 parameters given by current_template_args, or reuses a
4514 previously existing one, if appropriate. Returns the DECL, or an
4515 equivalent one, if it is replaced via a call to duplicate_decls.
4516
4517 If IS_FRIEND is true, DECL is a friend declaration. */
4518
4519 tree
4520 push_template_decl_real (tree decl, bool is_friend)
4521 {
4522 tree tmpl;
4523 tree args;
4524 tree info;
4525 tree ctx;
4526 bool is_primary;
4527 bool is_partial;
4528 int new_template_p = 0;
4529 /* True if the template is a member template, in the sense of
4530 [temp.mem]. */
4531 bool member_template_p = false;
4532
4533 if (decl == error_mark_node || !current_template_parms)
4534 return error_mark_node;
4535
4536 /* See if this is a partial specialization. */
4537 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4538 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4539 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4540
4541 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4542 is_friend = true;
4543
4544 if (is_friend)
4545 /* For a friend, we want the context of the friend function, not
4546 the type of which it is a friend. */
4547 ctx = CP_DECL_CONTEXT (decl);
4548 else if (CP_DECL_CONTEXT (decl)
4549 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4550 /* In the case of a virtual function, we want the class in which
4551 it is defined. */
4552 ctx = CP_DECL_CONTEXT (decl);
4553 else
4554 /* Otherwise, if we're currently defining some class, the DECL
4555 is assumed to be a member of the class. */
4556 ctx = current_scope ();
4557
4558 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4559 ctx = NULL_TREE;
4560
4561 if (!DECL_CONTEXT (decl))
4562 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4563
4564 /* See if this is a primary template. */
4565 if (is_friend && ctx)
4566 /* A friend template that specifies a class context, i.e.
4567 template <typename T> friend void A<T>::f();
4568 is not primary. */
4569 is_primary = false;
4570 else
4571 is_primary = template_parm_scope_p ();
4572
4573 if (is_primary)
4574 {
4575 if (DECL_CLASS_SCOPE_P (decl))
4576 member_template_p = true;
4577 if (TREE_CODE (decl) == TYPE_DECL
4578 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4579 {
4580 error ("template class without a name");
4581 return error_mark_node;
4582 }
4583 else if (TREE_CODE (decl) == FUNCTION_DECL)
4584 {
4585 if (DECL_DESTRUCTOR_P (decl))
4586 {
4587 /* [temp.mem]
4588
4589 A destructor shall not be a member template. */
4590 error ("destructor %qD declared as member template", decl);
4591 return error_mark_node;
4592 }
4593 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4594 && (!prototype_p (TREE_TYPE (decl))
4595 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4596 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4597 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4598 == void_list_node)))
4599 {
4600 /* [basic.stc.dynamic.allocation]
4601
4602 An allocation function can be a function
4603 template. ... Template allocation functions shall
4604 have two or more parameters. */
4605 error ("invalid template declaration of %qD", decl);
4606 return error_mark_node;
4607 }
4608 }
4609 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4610 && CLASS_TYPE_P (TREE_TYPE (decl)))
4611 /* OK */;
4612 else if (TREE_CODE (decl) == TYPE_DECL
4613 && TYPE_DECL_ALIAS_P (decl))
4614 /* alias-declaration */
4615 gcc_assert (!DECL_ARTIFICIAL (decl));
4616 else
4617 {
4618 error ("template declaration of %q#D", decl);
4619 return error_mark_node;
4620 }
4621 }
4622
4623 /* Check to see that the rules regarding the use of default
4624 arguments are not being violated. */
4625 check_default_tmpl_args (decl, current_template_parms,
4626 is_primary, is_partial, /*is_friend_decl=*/0);
4627
4628 /* Ensure that there are no parameter packs in the type of this
4629 declaration that have not been expanded. */
4630 if (TREE_CODE (decl) == FUNCTION_DECL)
4631 {
4632 /* Check each of the arguments individually to see if there are
4633 any bare parameter packs. */
4634 tree type = TREE_TYPE (decl);
4635 tree arg = DECL_ARGUMENTS (decl);
4636 tree argtype = TYPE_ARG_TYPES (type);
4637
4638 while (arg && argtype)
4639 {
4640 if (!FUNCTION_PARAMETER_PACK_P (arg)
4641 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4642 {
4643 /* This is a PARM_DECL that contains unexpanded parameter
4644 packs. We have already complained about this in the
4645 check_for_bare_parameter_packs call, so just replace
4646 these types with ERROR_MARK_NODE. */
4647 TREE_TYPE (arg) = error_mark_node;
4648 TREE_VALUE (argtype) = error_mark_node;
4649 }
4650
4651 arg = DECL_CHAIN (arg);
4652 argtype = TREE_CHAIN (argtype);
4653 }
4654
4655 /* Check for bare parameter packs in the return type and the
4656 exception specifiers. */
4657 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4658 /* Errors were already issued, set return type to int
4659 as the frontend doesn't expect error_mark_node as
4660 the return type. */
4661 TREE_TYPE (type) = integer_type_node;
4662 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4663 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4664 }
4665 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4666 && TYPE_DECL_ALIAS_P (decl))
4667 ? DECL_ORIGINAL_TYPE (decl)
4668 : TREE_TYPE (decl)))
4669 {
4670 TREE_TYPE (decl) = error_mark_node;
4671 return error_mark_node;
4672 }
4673
4674 if (is_partial)
4675 return process_partial_specialization (decl);
4676
4677 args = current_template_args ();
4678
4679 if (!ctx
4680 || TREE_CODE (ctx) == FUNCTION_DECL
4681 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4682 || (TREE_CODE (decl) == TYPE_DECL
4683 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4684 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4685 {
4686 if (DECL_LANG_SPECIFIC (decl)
4687 && DECL_TEMPLATE_INFO (decl)
4688 && DECL_TI_TEMPLATE (decl))
4689 tmpl = DECL_TI_TEMPLATE (decl);
4690 /* If DECL is a TYPE_DECL for a class-template, then there won't
4691 be DECL_LANG_SPECIFIC. The information equivalent to
4692 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4693 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4694 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4695 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4696 {
4697 /* Since a template declaration already existed for this
4698 class-type, we must be redeclaring it here. Make sure
4699 that the redeclaration is valid. */
4700 redeclare_class_template (TREE_TYPE (decl),
4701 current_template_parms);
4702 /* We don't need to create a new TEMPLATE_DECL; just use the
4703 one we already had. */
4704 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4705 }
4706 else
4707 {
4708 tmpl = build_template_decl (decl, current_template_parms,
4709 member_template_p);
4710 new_template_p = 1;
4711
4712 if (DECL_LANG_SPECIFIC (decl)
4713 && DECL_TEMPLATE_SPECIALIZATION (decl))
4714 {
4715 /* A specialization of a member template of a template
4716 class. */
4717 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4718 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4719 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4720 }
4721 }
4722 }
4723 else
4724 {
4725 tree a, t, current, parms;
4726 int i;
4727 tree tinfo = get_template_info (decl);
4728
4729 if (!tinfo)
4730 {
4731 error ("template definition of non-template %q#D", decl);
4732 return error_mark_node;
4733 }
4734
4735 tmpl = TI_TEMPLATE (tinfo);
4736
4737 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4738 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4739 && DECL_TEMPLATE_SPECIALIZATION (decl)
4740 && DECL_MEMBER_TEMPLATE_P (tmpl))
4741 {
4742 tree new_tmpl;
4743
4744 /* The declaration is a specialization of a member
4745 template, declared outside the class. Therefore, the
4746 innermost template arguments will be NULL, so we
4747 replace them with the arguments determined by the
4748 earlier call to check_explicit_specialization. */
4749 args = DECL_TI_ARGS (decl);
4750
4751 new_tmpl
4752 = build_template_decl (decl, current_template_parms,
4753 member_template_p);
4754 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4755 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4756 DECL_TI_TEMPLATE (decl) = new_tmpl;
4757 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4758 DECL_TEMPLATE_INFO (new_tmpl)
4759 = build_template_info (tmpl, args);
4760
4761 register_specialization (new_tmpl,
4762 most_general_template (tmpl),
4763 args,
4764 is_friend, 0);
4765 return decl;
4766 }
4767
4768 /* Make sure the template headers we got make sense. */
4769
4770 parms = DECL_TEMPLATE_PARMS (tmpl);
4771 i = TMPL_PARMS_DEPTH (parms);
4772 if (TMPL_ARGS_DEPTH (args) != i)
4773 {
4774 error ("expected %d levels of template parms for %q#D, got %d",
4775 i, decl, TMPL_ARGS_DEPTH (args));
4776 }
4777 else
4778 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4779 {
4780 a = TMPL_ARGS_LEVEL (args, i);
4781 t = INNERMOST_TEMPLATE_PARMS (parms);
4782
4783 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4784 {
4785 if (current == decl)
4786 error ("got %d template parameters for %q#D",
4787 TREE_VEC_LENGTH (a), decl);
4788 else
4789 error ("got %d template parameters for %q#T",
4790 TREE_VEC_LENGTH (a), current);
4791 error (" but %d required", TREE_VEC_LENGTH (t));
4792 /* Avoid crash in import_export_decl. */
4793 DECL_INTERFACE_KNOWN (decl) = 1;
4794 return error_mark_node;
4795 }
4796
4797 if (current == decl)
4798 current = ctx;
4799 else if (current == NULL_TREE)
4800 /* Can happen in erroneous input. */
4801 break;
4802 else
4803 current = get_containing_scope (current);
4804 }
4805
4806 /* Check that the parms are used in the appropriate qualifying scopes
4807 in the declarator. */
4808 if (!comp_template_args
4809 (TI_ARGS (tinfo),
4810 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4811 {
4812 error ("\
4813 template arguments to %qD do not match original template %qD",
4814 decl, DECL_TEMPLATE_RESULT (tmpl));
4815 if (!uses_template_parms (TI_ARGS (tinfo)))
4816 inform (input_location, "use template<> for an explicit specialization");
4817 /* Avoid crash in import_export_decl. */
4818 DECL_INTERFACE_KNOWN (decl) = 1;
4819 return error_mark_node;
4820 }
4821 }
4822
4823 DECL_TEMPLATE_RESULT (tmpl) = decl;
4824 TREE_TYPE (tmpl) = TREE_TYPE (decl);
4825
4826 /* Push template declarations for global functions and types. Note
4827 that we do not try to push a global template friend declared in a
4828 template class; such a thing may well depend on the template
4829 parameters of the class. */
4830 if (new_template_p && !ctx
4831 && !(is_friend && template_class_depth (current_class_type) > 0))
4832 {
4833 tmpl = pushdecl_namespace_level (tmpl, is_friend);
4834 if (tmpl == error_mark_node)
4835 return error_mark_node;
4836
4837 /* Hide template friend classes that haven't been declared yet. */
4838 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
4839 {
4840 DECL_ANTICIPATED (tmpl) = 1;
4841 DECL_FRIEND_P (tmpl) = 1;
4842 }
4843 }
4844
4845 if (is_primary)
4846 {
4847 tree parms = DECL_TEMPLATE_PARMS (tmpl);
4848 int i;
4849
4850 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4851 if (DECL_CONV_FN_P (tmpl))
4852 {
4853 int depth = TMPL_PARMS_DEPTH (parms);
4854
4855 /* It is a conversion operator. See if the type converted to
4856 depends on innermost template operands. */
4857
4858 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
4859 depth))
4860 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
4861 }
4862
4863 /* Give template template parms a DECL_CONTEXT of the template
4864 for which they are a parameter. */
4865 parms = INNERMOST_TEMPLATE_PARMS (parms);
4866 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
4867 {
4868 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4869 if (TREE_CODE (parm) == TEMPLATE_DECL)
4870 DECL_CONTEXT (parm) = tmpl;
4871 }
4872 }
4873
4874 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
4875 back to its most general template. If TMPL is a specialization,
4876 ARGS may only have the innermost set of arguments. Add the missing
4877 argument levels if necessary. */
4878 if (DECL_TEMPLATE_INFO (tmpl))
4879 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
4880
4881 info = build_template_info (tmpl, args);
4882
4883 if (DECL_IMPLICIT_TYPEDEF_P (decl))
4884 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
4885 else
4886 {
4887 if (is_primary && !DECL_LANG_SPECIFIC (decl))
4888 retrofit_lang_decl (decl);
4889 if (DECL_LANG_SPECIFIC (decl))
4890 DECL_TEMPLATE_INFO (decl) = info;
4891 }
4892
4893 return DECL_TEMPLATE_RESULT (tmpl);
4894 }
4895
4896 tree
4897 push_template_decl (tree decl)
4898 {
4899 return push_template_decl_real (decl, false);
4900 }
4901
4902 /* FN is an inheriting constructor that inherits from the constructor
4903 template INHERITED; turn FN into a constructor template with a matching
4904 template header. */
4905
4906 tree
4907 add_inherited_template_parms (tree fn, tree inherited)
4908 {
4909 tree inner_parms
4910 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
4911 inner_parms = copy_node (inner_parms);
4912 tree parms
4913 = tree_cons (size_int (processing_template_decl + 1),
4914 inner_parms, current_template_parms);
4915 tree tmpl = build_template_decl (fn, parms, /*member*/true);
4916 tree args = template_parms_to_args (parms);
4917 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
4918 TREE_TYPE (tmpl) = TREE_TYPE (fn);
4919 DECL_TEMPLATE_RESULT (tmpl) = fn;
4920 DECL_ARTIFICIAL (tmpl) = true;
4921 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4922 return tmpl;
4923 }
4924
4925 /* Called when a class template TYPE is redeclared with the indicated
4926 template PARMS, e.g.:
4927
4928 template <class T> struct S;
4929 template <class T> struct S {}; */
4930
4931 bool
4932 redeclare_class_template (tree type, tree parms)
4933 {
4934 tree tmpl;
4935 tree tmpl_parms;
4936 int i;
4937
4938 if (!TYPE_TEMPLATE_INFO (type))
4939 {
4940 error ("%qT is not a template type", type);
4941 return false;
4942 }
4943
4944 tmpl = TYPE_TI_TEMPLATE (type);
4945 if (!PRIMARY_TEMPLATE_P (tmpl))
4946 /* The type is nested in some template class. Nothing to worry
4947 about here; there are no new template parameters for the nested
4948 type. */
4949 return true;
4950
4951 if (!parms)
4952 {
4953 error ("template specifiers not specified in declaration of %qD",
4954 tmpl);
4955 return false;
4956 }
4957
4958 parms = INNERMOST_TEMPLATE_PARMS (parms);
4959 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
4960
4961 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
4962 {
4963 error_n (input_location, TREE_VEC_LENGTH (parms),
4964 "redeclared with %d template parameter",
4965 "redeclared with %d template parameters",
4966 TREE_VEC_LENGTH (parms));
4967 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
4968 "previous declaration %q+D used %d template parameter",
4969 "previous declaration %q+D used %d template parameters",
4970 tmpl, TREE_VEC_LENGTH (tmpl_parms));
4971 return false;
4972 }
4973
4974 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
4975 {
4976 tree tmpl_parm;
4977 tree parm;
4978 tree tmpl_default;
4979 tree parm_default;
4980
4981 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
4982 || TREE_VEC_ELT (parms, i) == error_mark_node)
4983 continue;
4984
4985 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
4986 if (tmpl_parm == error_mark_node)
4987 return false;
4988
4989 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4990 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
4991 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
4992
4993 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
4994 TEMPLATE_DECL. */
4995 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
4996 || (TREE_CODE (tmpl_parm) != TYPE_DECL
4997 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
4998 || (TREE_CODE (tmpl_parm) != PARM_DECL
4999 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5000 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5001 || (TREE_CODE (tmpl_parm) == PARM_DECL
5002 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5003 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5004 {
5005 error ("template parameter %q+#D", tmpl_parm);
5006 error ("redeclared here as %q#D", parm);
5007 return false;
5008 }
5009
5010 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5011 {
5012 /* We have in [temp.param]:
5013
5014 A template-parameter may not be given default arguments
5015 by two different declarations in the same scope. */
5016 error_at (input_location, "redefinition of default argument for %q#D", parm);
5017 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5018 "original definition appeared here");
5019 return false;
5020 }
5021
5022 if (parm_default != NULL_TREE)
5023 /* Update the previous template parameters (which are the ones
5024 that will really count) with the new default value. */
5025 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5026 else if (tmpl_default != NULL_TREE)
5027 /* Update the new parameters, too; they'll be used as the
5028 parameters for any members. */
5029 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5030 }
5031
5032 return true;
5033 }
5034
5035 /* Simplify EXPR if it is a non-dependent expression. Returns the
5036 (possibly simplified) expression. */
5037
5038 tree
5039 fold_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5040 {
5041 if (expr == NULL_TREE)
5042 return NULL_TREE;
5043
5044 /* If we're in a template, but EXPR isn't value dependent, simplify
5045 it. We're supposed to treat:
5046
5047 template <typename T> void f(T[1 + 1]);
5048 template <typename T> void f(T[2]);
5049
5050 as two declarations of the same function, for example. */
5051 if (processing_template_decl
5052 && !instantiation_dependent_expression_p (expr)
5053 && potential_constant_expression (expr))
5054 {
5055 HOST_WIDE_INT saved_processing_template_decl;
5056
5057 saved_processing_template_decl = processing_template_decl;
5058 processing_template_decl = 0;
5059 expr = tsubst_copy_and_build (expr,
5060 /*args=*/NULL_TREE,
5061 complain,
5062 /*in_decl=*/NULL_TREE,
5063 /*function_p=*/false,
5064 /*integral_constant_expression_p=*/true);
5065 processing_template_decl = saved_processing_template_decl;
5066 }
5067 return expr;
5068 }
5069
5070 tree
5071 fold_non_dependent_expr (tree expr)
5072 {
5073 return fold_non_dependent_expr_sfinae (expr, tf_error);
5074 }
5075
5076 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5077 template declaration, or a TYPE_DECL for an alias declaration. */
5078
5079 bool
5080 alias_type_or_template_p (tree t)
5081 {
5082 if (t == NULL_TREE)
5083 return false;
5084 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5085 || (TYPE_P (t)
5086 && TYPE_NAME (t)
5087 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5088 || DECL_ALIAS_TEMPLATE_P (t));
5089 }
5090
5091 /* Return TRUE iff is a specialization of an alias template. */
5092
5093 bool
5094 alias_template_specialization_p (const_tree t)
5095 {
5096 if (t == NULL_TREE)
5097 return false;
5098
5099 return (TYPE_P (t)
5100 && TYPE_TEMPLATE_INFO (t)
5101 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5102 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5103 }
5104
5105 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5106 must be a function or a pointer-to-function type, as specified
5107 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5108 and check that the resulting function has external linkage. */
5109
5110 static tree
5111 convert_nontype_argument_function (tree type, tree expr)
5112 {
5113 tree fns = expr;
5114 tree fn, fn_no_ptr;
5115 linkage_kind linkage;
5116
5117 fn = instantiate_type (type, fns, tf_none);
5118 if (fn == error_mark_node)
5119 return error_mark_node;
5120
5121 fn_no_ptr = fn;
5122 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5123 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5124 if (BASELINK_P (fn_no_ptr))
5125 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5126
5127 /* [temp.arg.nontype]/1
5128
5129 A template-argument for a non-type, non-template template-parameter
5130 shall be one of:
5131 [...]
5132 -- the address of an object or function with external [C++11: or
5133 internal] linkage. */
5134
5135 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5136 {
5137 error ("%qE is not a valid template argument for type %qT", expr, type);
5138 if (TYPE_PTR_P (type))
5139 error ("it must be the address of a function with external linkage");
5140 else
5141 error ("it must be the name of a function with external linkage");
5142 return NULL_TREE;
5143 }
5144
5145 linkage = decl_linkage (fn_no_ptr);
5146 if (cxx_dialect >= cxx0x ? linkage == lk_none : linkage != lk_external)
5147 {
5148 if (cxx_dialect >= cxx0x)
5149 error ("%qE is not a valid template argument for type %qT "
5150 "because %qD has no linkage",
5151 expr, type, fn_no_ptr);
5152 else
5153 error ("%qE is not a valid template argument for type %qT "
5154 "because %qD does not have external linkage",
5155 expr, type, fn_no_ptr);
5156 return NULL_TREE;
5157 }
5158
5159 return fn;
5160 }
5161
5162 /* Subroutine of convert_nontype_argument.
5163 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5164 Emit an error otherwise. */
5165
5166 static bool
5167 check_valid_ptrmem_cst_expr (tree type, tree expr,
5168 tsubst_flags_t complain)
5169 {
5170 STRIP_NOPS (expr);
5171 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5172 return true;
5173 if (cxx_dialect >= cxx0x && null_member_pointer_value_p (expr))
5174 return true;
5175 if (complain & tf_error)
5176 {
5177 error ("%qE is not a valid template argument for type %qT",
5178 expr, type);
5179 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5180 }
5181 return false;
5182 }
5183
5184 /* Returns TRUE iff the address of OP is value-dependent.
5185
5186 14.6.2.4 [temp.dep.temp]:
5187 A non-integral non-type template-argument is dependent if its type is
5188 dependent or it has either of the following forms
5189 qualified-id
5190 & qualified-id
5191 and contains a nested-name-specifier which specifies a class-name that
5192 names a dependent type.
5193
5194 We generalize this to just say that the address of a member of a
5195 dependent class is value-dependent; the above doesn't cover the
5196 address of a static data member named with an unqualified-id. */
5197
5198 static bool
5199 has_value_dependent_address (tree op)
5200 {
5201 /* We could use get_inner_reference here, but there's no need;
5202 this is only relevant for template non-type arguments, which
5203 can only be expressed as &id-expression. */
5204 if (DECL_P (op))
5205 {
5206 tree ctx = CP_DECL_CONTEXT (op);
5207 if (TYPE_P (ctx) && dependent_type_p (ctx))
5208 return true;
5209 }
5210
5211 return false;
5212 }
5213
5214 /* The next set of functions are used for providing helpful explanatory
5215 diagnostics for failed overload resolution. Their messages should be
5216 indented by two spaces for consistency with the messages in
5217 call.c */
5218
5219 static int
5220 unify_success (bool /*explain_p*/)
5221 {
5222 return 0;
5223 }
5224
5225 static int
5226 unify_parameter_deduction_failure (bool explain_p, tree parm)
5227 {
5228 if (explain_p)
5229 inform (input_location,
5230 " couldn't deduce template parameter %qD", parm);
5231 return 1;
5232 }
5233
5234 static int
5235 unify_invalid (bool /*explain_p*/)
5236 {
5237 return 1;
5238 }
5239
5240 static int
5241 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5242 {
5243 if (explain_p)
5244 inform (input_location,
5245 " types %qT and %qT have incompatible cv-qualifiers",
5246 parm, arg);
5247 return 1;
5248 }
5249
5250 static int
5251 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5252 {
5253 if (explain_p)
5254 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5255 return 1;
5256 }
5257
5258 static int
5259 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5260 {
5261 if (explain_p)
5262 inform (input_location,
5263 " template parameter %qD is not a parameter pack, but "
5264 "argument %qD is",
5265 parm, arg);
5266 return 1;
5267 }
5268
5269 static int
5270 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5271 {
5272 if (explain_p)
5273 inform (input_location,
5274 " template argument %qE does not match "
5275 "pointer-to-member constant %qE",
5276 arg, parm);
5277 return 1;
5278 }
5279
5280 static int
5281 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5282 {
5283 if (explain_p)
5284 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5285 return 1;
5286 }
5287
5288 static int
5289 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5290 {
5291 if (explain_p)
5292 inform (input_location,
5293 " inconsistent parameter pack deduction with %qT and %qT",
5294 old_arg, new_arg);
5295 return 1;
5296 }
5297
5298 static int
5299 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5300 {
5301 if (explain_p)
5302 {
5303 if (TYPE_P (parm))
5304 inform (input_location,
5305 " deduced conflicting types for parameter %qT (%qT and %qT)",
5306 parm, first, second);
5307 else
5308 inform (input_location,
5309 " deduced conflicting values for non-type parameter "
5310 "%qE (%qE and %qE)", parm, first, second);
5311 }
5312 return 1;
5313 }
5314
5315 static int
5316 unify_vla_arg (bool explain_p, tree arg)
5317 {
5318 if (explain_p)
5319 inform (input_location,
5320 " variable-sized array type %qT is not "
5321 "a valid template argument",
5322 arg);
5323 return 1;
5324 }
5325
5326 static int
5327 unify_method_type_error (bool explain_p, tree arg)
5328 {
5329 if (explain_p)
5330 inform (input_location,
5331 " member function type %qT is not a valid template argument",
5332 arg);
5333 return 1;
5334 }
5335
5336 static int
5337 unify_arity (bool explain_p, int have, int wanted)
5338 {
5339 if (explain_p)
5340 inform_n (input_location, wanted,
5341 " candidate expects %d argument, %d provided",
5342 " candidate expects %d arguments, %d provided",
5343 wanted, have);
5344 return 1;
5345 }
5346
5347 static int
5348 unify_too_many_arguments (bool explain_p, int have, int wanted)
5349 {
5350 return unify_arity (explain_p, have, wanted);
5351 }
5352
5353 static int
5354 unify_too_few_arguments (bool explain_p, int have, int wanted)
5355 {
5356 return unify_arity (explain_p, have, wanted);
5357 }
5358
5359 static int
5360 unify_arg_conversion (bool explain_p, tree to_type,
5361 tree from_type, tree arg)
5362 {
5363 if (explain_p)
5364 inform (input_location, " cannot convert %qE (type %qT) to type %qT",
5365 arg, from_type, to_type);
5366 return 1;
5367 }
5368
5369 static int
5370 unify_no_common_base (bool explain_p, enum template_base_result r,
5371 tree parm, tree arg)
5372 {
5373 if (explain_p)
5374 switch (r)
5375 {
5376 case tbr_ambiguous_baseclass:
5377 inform (input_location, " %qT is an ambiguous base class of %qT",
5378 parm, arg);
5379 break;
5380 default:
5381 inform (input_location, " %qT is not derived from %qT", arg, parm);
5382 break;
5383 }
5384 return 1;
5385 }
5386
5387 static int
5388 unify_inconsistent_template_template_parameters (bool explain_p)
5389 {
5390 if (explain_p)
5391 inform (input_location,
5392 " template parameters of a template template argument are "
5393 "inconsistent with other deduced template arguments");
5394 return 1;
5395 }
5396
5397 static int
5398 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5399 {
5400 if (explain_p)
5401 inform (input_location,
5402 " can't deduce a template for %qT from non-template type %qT",
5403 parm, arg);
5404 return 1;
5405 }
5406
5407 static int
5408 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5409 {
5410 if (explain_p)
5411 inform (input_location,
5412 " template argument %qE does not match %qD", arg, parm);
5413 return 1;
5414 }
5415
5416 static int
5417 unify_overload_resolution_failure (bool explain_p, tree arg)
5418 {
5419 if (explain_p)
5420 inform (input_location,
5421 " could not resolve address from overloaded function %qE",
5422 arg);
5423 return 1;
5424 }
5425
5426 /* Attempt to convert the non-type template parameter EXPR to the
5427 indicated TYPE. If the conversion is successful, return the
5428 converted value. If the conversion is unsuccessful, return
5429 NULL_TREE if we issued an error message, or error_mark_node if we
5430 did not. We issue error messages for out-and-out bad template
5431 parameters, but not simply because the conversion failed, since we
5432 might be just trying to do argument deduction. Both TYPE and EXPR
5433 must be non-dependent.
5434
5435 The conversion follows the special rules described in
5436 [temp.arg.nontype], and it is much more strict than an implicit
5437 conversion.
5438
5439 This function is called twice for each template argument (see
5440 lookup_template_class for a more accurate description of this
5441 problem). This means that we need to handle expressions which
5442 are not valid in a C++ source, but can be created from the
5443 first call (for instance, casts to perform conversions). These
5444 hacks can go away after we fix the double coercion problem. */
5445
5446 static tree
5447 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5448 {
5449 tree expr_type;
5450
5451 /* Detect immediately string literals as invalid non-type argument.
5452 This special-case is not needed for correctness (we would easily
5453 catch this later), but only to provide better diagnostic for this
5454 common user mistake. As suggested by DR 100, we do not mention
5455 linkage issues in the diagnostic as this is not the point. */
5456 /* FIXME we're making this OK. */
5457 if (TREE_CODE (expr) == STRING_CST)
5458 {
5459 if (complain & tf_error)
5460 error ("%qE is not a valid template argument for type %qT "
5461 "because string literals can never be used in this context",
5462 expr, type);
5463 return NULL_TREE;
5464 }
5465
5466 /* Add the ADDR_EXPR now for the benefit of
5467 value_dependent_expression_p. */
5468 if (TYPE_PTROBV_P (type)
5469 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5470 {
5471 expr = decay_conversion (expr, complain);
5472 if (expr == error_mark_node)
5473 return error_mark_node;
5474 }
5475
5476 /* If we are in a template, EXPR may be non-dependent, but still
5477 have a syntactic, rather than semantic, form. For example, EXPR
5478 might be a SCOPE_REF, rather than the VAR_DECL to which the
5479 SCOPE_REF refers. Preserving the qualifying scope is necessary
5480 so that access checking can be performed when the template is
5481 instantiated -- but here we need the resolved form so that we can
5482 convert the argument. */
5483 if (TYPE_REF_OBJ_P (type)
5484 && has_value_dependent_address (expr))
5485 /* If we want the address and it's value-dependent, don't fold. */;
5486 else if (!type_unknown_p (expr))
5487 expr = fold_non_dependent_expr_sfinae (expr, complain);
5488 if (error_operand_p (expr))
5489 return error_mark_node;
5490 expr_type = TREE_TYPE (expr);
5491 if (TREE_CODE (type) == REFERENCE_TYPE)
5492 expr = mark_lvalue_use (expr);
5493 else
5494 expr = mark_rvalue_use (expr);
5495
5496 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5497 to a non-type argument of "nullptr". */
5498 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5499 expr = convert (type, expr);
5500
5501 /* In C++11, integral or enumeration non-type template arguments can be
5502 arbitrary constant expressions. Pointer and pointer to
5503 member arguments can be general constant expressions that evaluate
5504 to a null value, but otherwise still need to be of a specific form. */
5505 if (cxx_dialect >= cxx0x)
5506 {
5507 if (TREE_CODE (expr) == PTRMEM_CST)
5508 /* A PTRMEM_CST is already constant, and a valid template
5509 argument for a parameter of pointer to member type, we just want
5510 to leave it in that form rather than lower it to a
5511 CONSTRUCTOR. */;
5512 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5513 expr = maybe_constant_value (expr);
5514 else if (TYPE_PTR_OR_PTRMEM_P (type))
5515 {
5516 tree folded = maybe_constant_value (expr);
5517 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5518 : null_member_pointer_value_p (folded))
5519 expr = folded;
5520 }
5521 }
5522
5523 /* HACK: Due to double coercion, we can get a
5524 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5525 which is the tree that we built on the first call (see
5526 below when coercing to reference to object or to reference to
5527 function). We just strip everything and get to the arg.
5528 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5529 for examples. */
5530 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5531 {
5532 tree probe_type, probe = expr;
5533 if (REFERENCE_REF_P (probe))
5534 probe = TREE_OPERAND (probe, 0);
5535 probe_type = TREE_TYPE (probe);
5536 if (TREE_CODE (probe) == NOP_EXPR)
5537 {
5538 /* ??? Maybe we could use convert_from_reference here, but we
5539 would need to relax its constraints because the NOP_EXPR
5540 could actually change the type to something more cv-qualified,
5541 and this is not folded by convert_from_reference. */
5542 tree addr = TREE_OPERAND (probe, 0);
5543 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5544 && TREE_CODE (addr) == ADDR_EXPR
5545 && TYPE_PTR_P (TREE_TYPE (addr))
5546 && (same_type_ignoring_top_level_qualifiers_p
5547 (TREE_TYPE (probe_type),
5548 TREE_TYPE (TREE_TYPE (addr)))))
5549 {
5550 expr = TREE_OPERAND (addr, 0);
5551 expr_type = TREE_TYPE (expr);
5552 }
5553 }
5554 }
5555
5556 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5557 parameter is a pointer to object, through decay and
5558 qualification conversion. Let's strip everything. */
5559 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5560 {
5561 tree probe = expr;
5562 STRIP_NOPS (probe);
5563 if (TREE_CODE (probe) == ADDR_EXPR
5564 && TYPE_PTR_P (TREE_TYPE (probe)))
5565 {
5566 /* Skip the ADDR_EXPR only if it is part of the decay for
5567 an array. Otherwise, it is part of the original argument
5568 in the source code. */
5569 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5570 probe = TREE_OPERAND (probe, 0);
5571 expr = probe;
5572 expr_type = TREE_TYPE (expr);
5573 }
5574 }
5575
5576 /* [temp.arg.nontype]/5, bullet 1
5577
5578 For a non-type template-parameter of integral or enumeration type,
5579 integral promotions (_conv.prom_) and integral conversions
5580 (_conv.integral_) are applied. */
5581 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5582 {
5583 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5584 t = maybe_constant_value (t);
5585 if (t != error_mark_node)
5586 expr = t;
5587
5588 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5589 return error_mark_node;
5590
5591 /* Notice that there are constant expressions like '4 % 0' which
5592 do not fold into integer constants. */
5593 if (TREE_CODE (expr) != INTEGER_CST)
5594 {
5595 if (complain & tf_error)
5596 {
5597 int errs = errorcount, warns = warningcount + werrorcount;
5598 if (processing_template_decl
5599 && !require_potential_constant_expression (expr))
5600 return NULL_TREE;
5601 expr = cxx_constant_value (expr);
5602 if (errorcount > errs || warningcount + werrorcount > warns)
5603 inform (EXPR_LOC_OR_HERE (expr),
5604 "in template argument for type %qT ", type);
5605 if (expr == error_mark_node)
5606 return NULL_TREE;
5607 /* else cxx_constant_value complained but gave us
5608 a real constant, so go ahead. */
5609 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5610 }
5611 else
5612 return NULL_TREE;
5613 }
5614 }
5615 /* [temp.arg.nontype]/5, bullet 2
5616
5617 For a non-type template-parameter of type pointer to object,
5618 qualification conversions (_conv.qual_) and the array-to-pointer
5619 conversion (_conv.array_) are applied. */
5620 else if (TYPE_PTROBV_P (type))
5621 {
5622 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5623
5624 A template-argument for a non-type, non-template template-parameter
5625 shall be one of: [...]
5626
5627 -- the name of a non-type template-parameter;
5628 -- the address of an object or function with external linkage, [...]
5629 expressed as "& id-expression" where the & is optional if the name
5630 refers to a function or array, or if the corresponding
5631 template-parameter is a reference.
5632
5633 Here, we do not care about functions, as they are invalid anyway
5634 for a parameter of type pointer-to-object. */
5635
5636 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5637 /* Non-type template parameters are OK. */
5638 ;
5639 else if (cxx_dialect >= cxx0x && integer_zerop (expr))
5640 /* Null pointer values are OK in C++11. */;
5641 else if (TREE_CODE (expr) != ADDR_EXPR
5642 && TREE_CODE (expr_type) != ARRAY_TYPE)
5643 {
5644 if (VAR_P (expr))
5645 {
5646 error ("%qD is not a valid template argument "
5647 "because %qD is a variable, not the address of "
5648 "a variable",
5649 expr, expr);
5650 return NULL_TREE;
5651 }
5652 if (POINTER_TYPE_P (expr_type))
5653 {
5654 error ("%qE is not a valid template argument for %qT "
5655 "because it is not the address of a variable",
5656 expr, type);
5657 return NULL_TREE;
5658 }
5659 /* Other values, like integer constants, might be valid
5660 non-type arguments of some other type. */
5661 return error_mark_node;
5662 }
5663 else
5664 {
5665 tree decl;
5666
5667 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5668 ? TREE_OPERAND (expr, 0) : expr);
5669 if (!VAR_P (decl))
5670 {
5671 error ("%qE is not a valid template argument of type %qT "
5672 "because %qE is not a variable",
5673 expr, type, decl);
5674 return NULL_TREE;
5675 }
5676 else if (cxx_dialect < cxx0x && !DECL_EXTERNAL_LINKAGE_P (decl))
5677 {
5678 error ("%qE is not a valid template argument of type %qT "
5679 "because %qD does not have external linkage",
5680 expr, type, decl);
5681 return NULL_TREE;
5682 }
5683 else if (cxx_dialect >= cxx0x && decl_linkage (decl) == lk_none)
5684 {
5685 error ("%qE is not a valid template argument of type %qT "
5686 "because %qD has no linkage",
5687 expr, type, decl);
5688 return NULL_TREE;
5689 }
5690 }
5691
5692 expr = decay_conversion (expr, complain);
5693 if (expr == error_mark_node)
5694 return error_mark_node;
5695
5696 expr = perform_qualification_conversions (type, expr);
5697 if (expr == error_mark_node)
5698 return error_mark_node;
5699 }
5700 /* [temp.arg.nontype]/5, bullet 3
5701
5702 For a non-type template-parameter of type reference to object, no
5703 conversions apply. The type referred to by the reference may be more
5704 cv-qualified than the (otherwise identical) type of the
5705 template-argument. The template-parameter is bound directly to the
5706 template-argument, which must be an lvalue. */
5707 else if (TYPE_REF_OBJ_P (type))
5708 {
5709 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5710 expr_type))
5711 return error_mark_node;
5712
5713 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5714 {
5715 error ("%qE is not a valid template argument for type %qT "
5716 "because of conflicts in cv-qualification", expr, type);
5717 return NULL_TREE;
5718 }
5719
5720 if (!real_lvalue_p (expr))
5721 {
5722 error ("%qE is not a valid template argument for type %qT "
5723 "because it is not an lvalue", expr, type);
5724 return NULL_TREE;
5725 }
5726
5727 /* [temp.arg.nontype]/1
5728
5729 A template-argument for a non-type, non-template template-parameter
5730 shall be one of: [...]
5731
5732 -- the address of an object or function with external linkage. */
5733 if (INDIRECT_REF_P (expr)
5734 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
5735 {
5736 expr = TREE_OPERAND (expr, 0);
5737 if (DECL_P (expr))
5738 {
5739 error ("%q#D is not a valid template argument for type %qT "
5740 "because a reference variable does not have a constant "
5741 "address", expr, type);
5742 return NULL_TREE;
5743 }
5744 }
5745
5746 if (!DECL_P (expr))
5747 {
5748 error ("%qE is not a valid template argument for type %qT "
5749 "because it is not an object with external linkage",
5750 expr, type);
5751 return NULL_TREE;
5752 }
5753
5754 if (!DECL_EXTERNAL_LINKAGE_P (expr))
5755 {
5756 error ("%qE is not a valid template argument for type %qT "
5757 "because object %qD has not external linkage",
5758 expr, type, expr);
5759 return NULL_TREE;
5760 }
5761
5762 expr = build_nop (type, build_address (expr));
5763 }
5764 /* [temp.arg.nontype]/5, bullet 4
5765
5766 For a non-type template-parameter of type pointer to function, only
5767 the function-to-pointer conversion (_conv.func_) is applied. If the
5768 template-argument represents a set of overloaded functions (or a
5769 pointer to such), the matching function is selected from the set
5770 (_over.over_). */
5771 else if (TYPE_PTRFN_P (type))
5772 {
5773 /* If the argument is a template-id, we might not have enough
5774 context information to decay the pointer. */
5775 if (!type_unknown_p (expr_type))
5776 {
5777 expr = decay_conversion (expr, complain);
5778 if (expr == error_mark_node)
5779 return error_mark_node;
5780 }
5781
5782 if (cxx_dialect >= cxx0x && integer_zerop (expr))
5783 /* Null pointer values are OK in C++11. */
5784 return perform_qualification_conversions (type, expr);
5785
5786 expr = convert_nontype_argument_function (type, expr);
5787 if (!expr || expr == error_mark_node)
5788 return expr;
5789 }
5790 /* [temp.arg.nontype]/5, bullet 5
5791
5792 For a non-type template-parameter of type reference to function, no
5793 conversions apply. If the template-argument represents a set of
5794 overloaded functions, the matching function is selected from the set
5795 (_over.over_). */
5796 else if (TYPE_REFFN_P (type))
5797 {
5798 if (TREE_CODE (expr) == ADDR_EXPR)
5799 {
5800 error ("%qE is not a valid template argument for type %qT "
5801 "because it is a pointer", expr, type);
5802 inform (input_location, "try using %qE instead", TREE_OPERAND (expr, 0));
5803 return NULL_TREE;
5804 }
5805
5806 expr = convert_nontype_argument_function (type, expr);
5807 if (!expr || expr == error_mark_node)
5808 return expr;
5809
5810 expr = build_nop (type, build_address (expr));
5811 }
5812 /* [temp.arg.nontype]/5, bullet 6
5813
5814 For a non-type template-parameter of type pointer to member function,
5815 no conversions apply. If the template-argument represents a set of
5816 overloaded member functions, the matching member function is selected
5817 from the set (_over.over_). */
5818 else if (TYPE_PTRMEMFUNC_P (type))
5819 {
5820 expr = instantiate_type (type, expr, tf_none);
5821 if (expr == error_mark_node)
5822 return error_mark_node;
5823
5824 /* [temp.arg.nontype] bullet 1 says the pointer to member
5825 expression must be a pointer-to-member constant. */
5826 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5827 return error_mark_node;
5828
5829 /* There is no way to disable standard conversions in
5830 resolve_address_of_overloaded_function (called by
5831 instantiate_type). It is possible that the call succeeded by
5832 converting &B::I to &D::I (where B is a base of D), so we need
5833 to reject this conversion here.
5834
5835 Actually, even if there was a way to disable standard conversions,
5836 it would still be better to reject them here so that we can
5837 provide a superior diagnostic. */
5838 if (!same_type_p (TREE_TYPE (expr), type))
5839 {
5840 error ("%qE is not a valid template argument for type %qT "
5841 "because it is of type %qT", expr, type,
5842 TREE_TYPE (expr));
5843 /* If we are just one standard conversion off, explain. */
5844 if (can_convert (type, TREE_TYPE (expr), complain))
5845 inform (input_location,
5846 "standard conversions are not allowed in this context");
5847 return NULL_TREE;
5848 }
5849 }
5850 /* [temp.arg.nontype]/5, bullet 7
5851
5852 For a non-type template-parameter of type pointer to data member,
5853 qualification conversions (_conv.qual_) are applied. */
5854 else if (TYPE_PTRDATAMEM_P (type))
5855 {
5856 /* [temp.arg.nontype] bullet 1 says the pointer to member
5857 expression must be a pointer-to-member constant. */
5858 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5859 return error_mark_node;
5860
5861 expr = perform_qualification_conversions (type, expr);
5862 if (expr == error_mark_node)
5863 return expr;
5864 }
5865 else if (NULLPTR_TYPE_P (type))
5866 {
5867 if (expr != nullptr_node)
5868 {
5869 error ("%qE is not a valid template argument for type %qT "
5870 "because it is of type %qT", expr, type, TREE_TYPE (expr));
5871 return NULL_TREE;
5872 }
5873 return expr;
5874 }
5875 /* A template non-type parameter must be one of the above. */
5876 else
5877 gcc_unreachable ();
5878
5879 /* Sanity check: did we actually convert the argument to the
5880 right type? */
5881 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5882 (type, TREE_TYPE (expr)));
5883 return expr;
5884 }
5885
5886 /* Subroutine of coerce_template_template_parms, which returns 1 if
5887 PARM_PARM and ARG_PARM match using the rule for the template
5888 parameters of template template parameters. Both PARM and ARG are
5889 template parameters; the rest of the arguments are the same as for
5890 coerce_template_template_parms.
5891 */
5892 static int
5893 coerce_template_template_parm (tree parm,
5894 tree arg,
5895 tsubst_flags_t complain,
5896 tree in_decl,
5897 tree outer_args)
5898 {
5899 if (arg == NULL_TREE || arg == error_mark_node
5900 || parm == NULL_TREE || parm == error_mark_node)
5901 return 0;
5902
5903 if (TREE_CODE (arg) != TREE_CODE (parm))
5904 return 0;
5905
5906 switch (TREE_CODE (parm))
5907 {
5908 case TEMPLATE_DECL:
5909 /* We encounter instantiations of templates like
5910 template <template <template <class> class> class TT>
5911 class C; */
5912 {
5913 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
5914 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
5915
5916 if (!coerce_template_template_parms
5917 (parmparm, argparm, complain, in_decl, outer_args))
5918 return 0;
5919 }
5920 /* Fall through. */
5921
5922 case TYPE_DECL:
5923 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
5924 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
5925 /* Argument is a parameter pack but parameter is not. */
5926 return 0;
5927 break;
5928
5929 case PARM_DECL:
5930 /* The tsubst call is used to handle cases such as
5931
5932 template <int> class C {};
5933 template <class T, template <T> class TT> class D {};
5934 D<int, C> d;
5935
5936 i.e. the parameter list of TT depends on earlier parameters. */
5937 if (!uses_template_parms (TREE_TYPE (arg))
5938 && !same_type_p
5939 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
5940 TREE_TYPE (arg)))
5941 return 0;
5942
5943 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
5944 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
5945 /* Argument is a parameter pack but parameter is not. */
5946 return 0;
5947
5948 break;
5949
5950 default:
5951 gcc_unreachable ();
5952 }
5953
5954 return 1;
5955 }
5956
5957
5958 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
5959 template template parameters. Both PARM_PARMS and ARG_PARMS are
5960 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
5961 or PARM_DECL.
5962
5963 Consider the example:
5964 template <class T> class A;
5965 template<template <class U> class TT> class B;
5966
5967 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
5968 the parameters to A, and OUTER_ARGS contains A. */
5969
5970 static int
5971 coerce_template_template_parms (tree parm_parms,
5972 tree arg_parms,
5973 tsubst_flags_t complain,
5974 tree in_decl,
5975 tree outer_args)
5976 {
5977 int nparms, nargs, i;
5978 tree parm, arg;
5979 int variadic_p = 0;
5980
5981 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
5982 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
5983
5984 nparms = TREE_VEC_LENGTH (parm_parms);
5985 nargs = TREE_VEC_LENGTH (arg_parms);
5986
5987 /* Determine whether we have a parameter pack at the end of the
5988 template template parameter's template parameter list. */
5989 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
5990 {
5991 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
5992
5993 if (parm == error_mark_node)
5994 return 0;
5995
5996 switch (TREE_CODE (parm))
5997 {
5998 case TEMPLATE_DECL:
5999 case TYPE_DECL:
6000 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6001 variadic_p = 1;
6002 break;
6003
6004 case PARM_DECL:
6005 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6006 variadic_p = 1;
6007 break;
6008
6009 default:
6010 gcc_unreachable ();
6011 }
6012 }
6013
6014 if (nargs != nparms
6015 && !(variadic_p && nargs >= nparms - 1))
6016 return 0;
6017
6018 /* Check all of the template parameters except the parameter pack at
6019 the end (if any). */
6020 for (i = 0; i < nparms - variadic_p; ++i)
6021 {
6022 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6023 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6024 continue;
6025
6026 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6027 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6028
6029 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6030 outer_args))
6031 return 0;
6032
6033 }
6034
6035 if (variadic_p)
6036 {
6037 /* Check each of the template parameters in the template
6038 argument against the template parameter pack at the end of
6039 the template template parameter. */
6040 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6041 return 0;
6042
6043 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6044
6045 for (; i < nargs; ++i)
6046 {
6047 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6048 continue;
6049
6050 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6051
6052 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6053 outer_args))
6054 return 0;
6055 }
6056 }
6057
6058 return 1;
6059 }
6060
6061 /* Verifies that the deduced template arguments (in TARGS) for the
6062 template template parameters (in TPARMS) represent valid bindings,
6063 by comparing the template parameter list of each template argument
6064 to the template parameter list of its corresponding template
6065 template parameter, in accordance with DR150. This
6066 routine can only be called after all template arguments have been
6067 deduced. It will return TRUE if all of the template template
6068 parameter bindings are okay, FALSE otherwise. */
6069 bool
6070 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6071 {
6072 int i, ntparms = TREE_VEC_LENGTH (tparms);
6073 bool ret = true;
6074
6075 /* We're dealing with template parms in this process. */
6076 ++processing_template_decl;
6077
6078 targs = INNERMOST_TEMPLATE_ARGS (targs);
6079
6080 for (i = 0; i < ntparms; ++i)
6081 {
6082 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6083 tree targ = TREE_VEC_ELT (targs, i);
6084
6085 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6086 {
6087 tree packed_args = NULL_TREE;
6088 int idx, len = 1;
6089
6090 if (ARGUMENT_PACK_P (targ))
6091 {
6092 /* Look inside the argument pack. */
6093 packed_args = ARGUMENT_PACK_ARGS (targ);
6094 len = TREE_VEC_LENGTH (packed_args);
6095 }
6096
6097 for (idx = 0; idx < len; ++idx)
6098 {
6099 tree targ_parms = NULL_TREE;
6100
6101 if (packed_args)
6102 /* Extract the next argument from the argument
6103 pack. */
6104 targ = TREE_VEC_ELT (packed_args, idx);
6105
6106 if (PACK_EXPANSION_P (targ))
6107 /* Look at the pattern of the pack expansion. */
6108 targ = PACK_EXPANSION_PATTERN (targ);
6109
6110 /* Extract the template parameters from the template
6111 argument. */
6112 if (TREE_CODE (targ) == TEMPLATE_DECL)
6113 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6114 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6115 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6116
6117 /* Verify that we can coerce the template template
6118 parameters from the template argument to the template
6119 parameter. This requires an exact match. */
6120 if (targ_parms
6121 && !coerce_template_template_parms
6122 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6123 targ_parms,
6124 tf_none,
6125 tparm,
6126 targs))
6127 {
6128 ret = false;
6129 goto out;
6130 }
6131 }
6132 }
6133 }
6134
6135 out:
6136
6137 --processing_template_decl;
6138 return ret;
6139 }
6140
6141 /* Since type attributes aren't mangled, we need to strip them from
6142 template type arguments. */
6143
6144 static tree
6145 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6146 {
6147 tree mv;
6148 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6149 return arg;
6150 mv = TYPE_MAIN_VARIANT (arg);
6151 arg = strip_typedefs (arg);
6152 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6153 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6154 {
6155 if (complain & tf_warning)
6156 warning (0, "ignoring attributes on template argument %qT", arg);
6157 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6158 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6159 }
6160 return arg;
6161 }
6162
6163 /* Convert the indicated template ARG as necessary to match the
6164 indicated template PARM. Returns the converted ARG, or
6165 error_mark_node if the conversion was unsuccessful. Error and
6166 warning messages are issued under control of COMPLAIN. This
6167 conversion is for the Ith parameter in the parameter list. ARGS is
6168 the full set of template arguments deduced so far. */
6169
6170 static tree
6171 convert_template_argument (tree parm,
6172 tree arg,
6173 tree args,
6174 tsubst_flags_t complain,
6175 int i,
6176 tree in_decl)
6177 {
6178 tree orig_arg;
6179 tree val;
6180 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6181
6182 if (TREE_CODE (arg) == TREE_LIST
6183 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6184 {
6185 /* The template argument was the name of some
6186 member function. That's usually
6187 invalid, but static members are OK. In any
6188 case, grab the underlying fields/functions
6189 and issue an error later if required. */
6190 orig_arg = TREE_VALUE (arg);
6191 TREE_TYPE (arg) = unknown_type_node;
6192 }
6193
6194 orig_arg = arg;
6195
6196 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6197 requires_type = (TREE_CODE (parm) == TYPE_DECL
6198 || requires_tmpl_type);
6199
6200 /* When determining whether an argument pack expansion is a template,
6201 look at the pattern. */
6202 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6203 arg = PACK_EXPANSION_PATTERN (arg);
6204
6205 /* Deal with an injected-class-name used as a template template arg. */
6206 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6207 {
6208 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6209 if (TREE_CODE (t) == TEMPLATE_DECL)
6210 {
6211 if (cxx_dialect >= cxx0x)
6212 /* OK under DR 1004. */;
6213 else if (complain & tf_warning_or_error)
6214 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6215 " used as template template argument", TYPE_NAME (arg));
6216 else if (flag_pedantic_errors)
6217 t = arg;
6218
6219 arg = t;
6220 }
6221 }
6222
6223 is_tmpl_type =
6224 ((TREE_CODE (arg) == TEMPLATE_DECL
6225 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6226 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6227 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6228 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6229
6230 if (is_tmpl_type
6231 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6232 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6233 arg = TYPE_STUB_DECL (arg);
6234
6235 is_type = TYPE_P (arg) || is_tmpl_type;
6236
6237 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6238 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6239 {
6240 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6241 {
6242 if (complain & tf_error)
6243 error ("invalid use of destructor %qE as a type", orig_arg);
6244 return error_mark_node;
6245 }
6246
6247 permerror (input_location,
6248 "to refer to a type member of a template parameter, "
6249 "use %<typename %E%>", orig_arg);
6250
6251 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6252 TREE_OPERAND (arg, 1),
6253 typename_type,
6254 complain);
6255 arg = orig_arg;
6256 is_type = 1;
6257 }
6258 if (is_type != requires_type)
6259 {
6260 if (in_decl)
6261 {
6262 if (complain & tf_error)
6263 {
6264 error ("type/value mismatch at argument %d in template "
6265 "parameter list for %qD",
6266 i + 1, in_decl);
6267 if (is_type)
6268 error (" expected a constant of type %qT, got %qT",
6269 TREE_TYPE (parm),
6270 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6271 else if (requires_tmpl_type)
6272 error (" expected a class template, got %qE", orig_arg);
6273 else
6274 error (" expected a type, got %qE", orig_arg);
6275 }
6276 }
6277 return error_mark_node;
6278 }
6279 if (is_tmpl_type ^ requires_tmpl_type)
6280 {
6281 if (in_decl && (complain & tf_error))
6282 {
6283 error ("type/value mismatch at argument %d in template "
6284 "parameter list for %qD",
6285 i + 1, in_decl);
6286 if (is_tmpl_type)
6287 error (" expected a type, got %qT", DECL_NAME (arg));
6288 else
6289 error (" expected a class template, got %qT", orig_arg);
6290 }
6291 return error_mark_node;
6292 }
6293
6294 if (is_type)
6295 {
6296 if (requires_tmpl_type)
6297 {
6298 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6299 val = orig_arg;
6300 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6301 /* The number of argument required is not known yet.
6302 Just accept it for now. */
6303 val = TREE_TYPE (arg);
6304 else
6305 {
6306 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6307 tree argparm;
6308
6309 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6310
6311 if (coerce_template_template_parms (parmparm, argparm,
6312 complain, in_decl,
6313 args))
6314 {
6315 val = arg;
6316
6317 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6318 TEMPLATE_DECL. */
6319 if (val != error_mark_node)
6320 {
6321 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6322 val = TREE_TYPE (val);
6323 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6324 val = make_pack_expansion (val);
6325 }
6326 }
6327 else
6328 {
6329 if (in_decl && (complain & tf_error))
6330 {
6331 error ("type/value mismatch at argument %d in "
6332 "template parameter list for %qD",
6333 i + 1, in_decl);
6334 error (" expected a template of type %qD, got %qT",
6335 parm, orig_arg);
6336 }
6337
6338 val = error_mark_node;
6339 }
6340 }
6341 }
6342 else
6343 val = orig_arg;
6344 /* We only form one instance of each template specialization.
6345 Therefore, if we use a non-canonical variant (i.e., a
6346 typedef), any future messages referring to the type will use
6347 the typedef, which is confusing if those future uses do not
6348 themselves also use the typedef. */
6349 if (TYPE_P (val))
6350 val = canonicalize_type_argument (val, complain);
6351 }
6352 else
6353 {
6354 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6355
6356 if (invalid_nontype_parm_type_p (t, complain))
6357 return error_mark_node;
6358
6359 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6360 {
6361 if (same_type_p (t, TREE_TYPE (orig_arg)))
6362 val = orig_arg;
6363 else
6364 {
6365 /* Not sure if this is reachable, but it doesn't hurt
6366 to be robust. */
6367 error ("type mismatch in nontype parameter pack");
6368 val = error_mark_node;
6369 }
6370 }
6371 else if (!dependent_template_arg_p (orig_arg)
6372 && !uses_template_parms (t))
6373 /* We used to call digest_init here. However, digest_init
6374 will report errors, which we don't want when complain
6375 is zero. More importantly, digest_init will try too
6376 hard to convert things: for example, `0' should not be
6377 converted to pointer type at this point according to
6378 the standard. Accepting this is not merely an
6379 extension, since deciding whether or not these
6380 conversions can occur is part of determining which
6381 function template to call, or whether a given explicit
6382 argument specification is valid. */
6383 val = convert_nontype_argument (t, orig_arg, complain);
6384 else
6385 val = strip_typedefs_expr (orig_arg);
6386
6387 if (val == NULL_TREE)
6388 val = error_mark_node;
6389 else if (val == error_mark_node && (complain & tf_error))
6390 error ("could not convert template argument %qE to %qT", orig_arg, t);
6391
6392 if (TREE_CODE (val) == SCOPE_REF)
6393 {
6394 /* Strip typedefs from the SCOPE_REF. */
6395 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6396 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6397 complain);
6398 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6399 QUALIFIED_NAME_IS_TEMPLATE (val));
6400 }
6401 }
6402
6403 return val;
6404 }
6405
6406 /* Coerces the remaining template arguments in INNER_ARGS (from
6407 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6408 Returns the coerced argument pack. PARM_IDX is the position of this
6409 parameter in the template parameter list. ARGS is the original
6410 template argument list. */
6411 static tree
6412 coerce_template_parameter_pack (tree parms,
6413 int parm_idx,
6414 tree args,
6415 tree inner_args,
6416 int arg_idx,
6417 tree new_args,
6418 int* lost,
6419 tree in_decl,
6420 tsubst_flags_t complain)
6421 {
6422 tree parm = TREE_VEC_ELT (parms, parm_idx);
6423 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6424 tree packed_args;
6425 tree argument_pack;
6426 tree packed_types = NULL_TREE;
6427
6428 if (arg_idx > nargs)
6429 arg_idx = nargs;
6430
6431 packed_args = make_tree_vec (nargs - arg_idx);
6432
6433 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
6434 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
6435 {
6436 /* When the template parameter is a non-type template
6437 parameter pack whose type uses parameter packs, we need
6438 to look at each of the template arguments
6439 separately. Build a vector of the types for these
6440 non-type template parameters in PACKED_TYPES. */
6441 tree expansion
6442 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
6443 packed_types = tsubst_pack_expansion (expansion, args,
6444 complain, in_decl);
6445
6446 if (packed_types == error_mark_node)
6447 return error_mark_node;
6448
6449 /* Check that we have the right number of arguments. */
6450 if (arg_idx < nargs
6451 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
6452 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
6453 {
6454 int needed_parms
6455 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
6456 error ("wrong number of template arguments (%d, should be %d)",
6457 nargs, needed_parms);
6458 return error_mark_node;
6459 }
6460
6461 /* If we aren't able to check the actual arguments now
6462 (because they haven't been expanded yet), we can at least
6463 verify that all of the types used for the non-type
6464 template parameter pack are, in fact, valid for non-type
6465 template parameters. */
6466 if (arg_idx < nargs
6467 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6468 {
6469 int j, len = TREE_VEC_LENGTH (packed_types);
6470 for (j = 0; j < len; ++j)
6471 {
6472 tree t = TREE_VEC_ELT (packed_types, j);
6473 if (invalid_nontype_parm_type_p (t, complain))
6474 return error_mark_node;
6475 }
6476 }
6477 }
6478
6479 /* Convert the remaining arguments, which will be a part of the
6480 parameter pack "parm". */
6481 for (; arg_idx < nargs; ++arg_idx)
6482 {
6483 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6484 tree actual_parm = TREE_VALUE (parm);
6485
6486 if (packed_types && !PACK_EXPANSION_P (arg))
6487 {
6488 /* When we have a vector of types (corresponding to the
6489 non-type template parameter pack that uses parameter
6490 packs in its type, as mention above), and the
6491 argument is not an expansion (which expands to a
6492 currently unknown number of arguments), clone the
6493 parm and give it the next type in PACKED_TYPES. */
6494 actual_parm = copy_node (actual_parm);
6495 TREE_TYPE (actual_parm) =
6496 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
6497 }
6498
6499 if (arg == error_mark_node)
6500 {
6501 if (complain & tf_error)
6502 error ("template argument %d is invalid", arg_idx + 1);
6503 }
6504 else
6505 arg = convert_template_argument (actual_parm,
6506 arg, new_args, complain, parm_idx,
6507 in_decl);
6508 if (arg == error_mark_node)
6509 (*lost)++;
6510 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
6511 }
6512
6513 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6514 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6515 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6516 else
6517 {
6518 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6519 TREE_TYPE (argument_pack)
6520 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6521 TREE_CONSTANT (argument_pack) = 1;
6522 }
6523
6524 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6525 #ifdef ENABLE_CHECKING
6526 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6527 TREE_VEC_LENGTH (packed_args));
6528 #endif
6529 return argument_pack;
6530 }
6531
6532 /* Returns true if the template argument vector ARGS contains
6533 any pack expansions, false otherwise. */
6534
6535 static bool
6536 any_pack_expanson_args_p (tree args)
6537 {
6538 int i;
6539 if (args)
6540 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6541 if (PACK_EXPANSION_P (TREE_VEC_ELT (args, i)))
6542 return true;
6543 return false;
6544 }
6545
6546 /* Convert all template arguments to their appropriate types, and
6547 return a vector containing the innermost resulting template
6548 arguments. If any error occurs, return error_mark_node. Error and
6549 warning messages are issued under control of COMPLAIN.
6550
6551 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6552 for arguments not specified in ARGS. Otherwise, if
6553 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6554 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6555 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6556 ARGS. */
6557
6558 static tree
6559 coerce_template_parms (tree parms,
6560 tree args,
6561 tree in_decl,
6562 tsubst_flags_t complain,
6563 bool require_all_args,
6564 bool use_default_args)
6565 {
6566 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6567 tree inner_args;
6568 tree new_args;
6569 tree new_inner_args;
6570 int saved_unevaluated_operand;
6571 int saved_inhibit_evaluation_warnings;
6572
6573 /* When used as a boolean value, indicates whether this is a
6574 variadic template parameter list. Since it's an int, we can also
6575 subtract it from nparms to get the number of non-variadic
6576 parameters. */
6577 int variadic_p = 0;
6578 int post_variadic_parms = 0;
6579
6580 if (args == error_mark_node)
6581 return error_mark_node;
6582
6583 nparms = TREE_VEC_LENGTH (parms);
6584
6585 /* Determine if there are any parameter packs. */
6586 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6587 {
6588 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
6589 if (variadic_p)
6590 ++post_variadic_parms;
6591 if (template_parameter_pack_p (tparm))
6592 ++variadic_p;
6593 }
6594
6595 inner_args = INNERMOST_TEMPLATE_ARGS (args);
6596 /* If there are no parameters that follow a parameter pack, we need to
6597 expand any argument packs so that we can deduce a parameter pack from
6598 some non-packed args followed by an argument pack, as in variadic85.C.
6599 If there are such parameters, we need to leave argument packs intact
6600 so the arguments are assigned properly. This can happen when dealing
6601 with a nested class inside a partial specialization of a class
6602 template, as in variadic92.C, or when deducing a template parameter pack
6603 from a sub-declarator, as in variadic114.C. */
6604 if (!post_variadic_parms)
6605 inner_args = expand_template_argument_pack (inner_args);
6606
6607 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6608 if ((nargs > nparms && !variadic_p)
6609 || (nargs < nparms - variadic_p
6610 && require_all_args
6611 && !any_pack_expanson_args_p (inner_args)
6612 && (!use_default_args
6613 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6614 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6615 {
6616 if (complain & tf_error)
6617 {
6618 if (variadic_p)
6619 {
6620 nparms -= variadic_p;
6621 error ("wrong number of template arguments "
6622 "(%d, should be %d or more)", nargs, nparms);
6623 }
6624 else
6625 error ("wrong number of template arguments "
6626 "(%d, should be %d)", nargs, nparms);
6627
6628 if (in_decl)
6629 error ("provided for %q+D", in_decl);
6630 }
6631
6632 return error_mark_node;
6633 }
6634
6635 /* We need to evaluate the template arguments, even though this
6636 template-id may be nested within a "sizeof". */
6637 saved_unevaluated_operand = cp_unevaluated_operand;
6638 cp_unevaluated_operand = 0;
6639 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6640 c_inhibit_evaluation_warnings = 0;
6641 new_inner_args = make_tree_vec (nparms);
6642 new_args = add_outermost_template_args (args, new_inner_args);
6643 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6644 {
6645 tree arg;
6646 tree parm;
6647
6648 /* Get the Ith template parameter. */
6649 parm = TREE_VEC_ELT (parms, parm_idx);
6650
6651 if (parm == error_mark_node)
6652 {
6653 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
6654 continue;
6655 }
6656
6657 /* Calculate the next argument. */
6658 if (arg_idx < nargs)
6659 arg = TREE_VEC_ELT (inner_args, arg_idx);
6660 else
6661 arg = NULL_TREE;
6662
6663 if (template_parameter_pack_p (TREE_VALUE (parm))
6664 && !(arg && ARGUMENT_PACK_P (arg)))
6665 {
6666 /* All remaining arguments will be placed in the
6667 template parameter pack PARM. */
6668 arg = coerce_template_parameter_pack (parms, parm_idx, args,
6669 inner_args, arg_idx,
6670 new_args, &lost,
6671 in_decl, complain);
6672
6673 /* Store this argument. */
6674 if (arg == error_mark_node)
6675 lost++;
6676 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
6677
6678 /* We are done with all of the arguments. */
6679 arg_idx = nargs;
6680
6681 continue;
6682 }
6683 else if (arg)
6684 {
6685 if (PACK_EXPANSION_P (arg))
6686 {
6687 /* We don't know how many args we have yet, just
6688 use the unconverted ones for now. */
6689 new_inner_args = inner_args;
6690 break;
6691 }
6692 }
6693 else if (require_all_args)
6694 {
6695 /* There must be a default arg in this case. */
6696 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
6697 complain, in_decl);
6698 /* The position of the first default template argument,
6699 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
6700 Record that. */
6701 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6702 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args, arg_idx);
6703 }
6704 else
6705 break;
6706
6707 if (arg == error_mark_node)
6708 {
6709 if (complain & tf_error)
6710 error ("template argument %d is invalid", arg_idx + 1);
6711 }
6712 else if (!arg)
6713 /* This only occurs if there was an error in the template
6714 parameter list itself (which we would already have
6715 reported) that we are trying to recover from, e.g., a class
6716 template with a parameter list such as
6717 template<typename..., typename>. */
6718 ++lost;
6719 else
6720 arg = convert_template_argument (TREE_VALUE (parm),
6721 arg, new_args, complain,
6722 parm_idx, in_decl);
6723
6724 if (arg == error_mark_node)
6725 lost++;
6726 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
6727 }
6728 cp_unevaluated_operand = saved_unevaluated_operand;
6729 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
6730
6731 if (lost)
6732 return error_mark_node;
6733
6734 #ifdef ENABLE_CHECKING
6735 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6736 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
6737 TREE_VEC_LENGTH (new_inner_args));
6738 #endif
6739
6740 return new_inner_args;
6741 }
6742
6743 /* Like coerce_template_parms. If PARMS represents all template
6744 parameters levels, this function returns a vector of vectors
6745 representing all the resulting argument levels. Note that in this
6746 case, only the innermost arguments are coerced because the
6747 outermost ones are supposed to have been coerced already.
6748
6749 Otherwise, if PARMS represents only (the innermost) vector of
6750 parameters, this function returns a vector containing just the
6751 innermost resulting arguments. */
6752
6753 static tree
6754 coerce_innermost_template_parms (tree parms,
6755 tree args,
6756 tree in_decl,
6757 tsubst_flags_t complain,
6758 bool require_all_args,
6759 bool use_default_args)
6760 {
6761 int parms_depth = TMPL_PARMS_DEPTH (parms);
6762 int args_depth = TMPL_ARGS_DEPTH (args);
6763 tree coerced_args;
6764
6765 if (parms_depth > 1)
6766 {
6767 coerced_args = make_tree_vec (parms_depth);
6768 tree level;
6769 int cur_depth;
6770
6771 for (level = parms, cur_depth = parms_depth;
6772 parms_depth > 0 && level != NULL_TREE;
6773 level = TREE_CHAIN (level), --cur_depth)
6774 {
6775 tree l;
6776 if (cur_depth == args_depth)
6777 l = coerce_template_parms (TREE_VALUE (level),
6778 args, in_decl, complain,
6779 require_all_args,
6780 use_default_args);
6781 else
6782 l = TMPL_ARGS_LEVEL (args, cur_depth);
6783
6784 if (l == error_mark_node)
6785 return error_mark_node;
6786
6787 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
6788 }
6789 }
6790 else
6791 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
6792 args, in_decl, complain,
6793 require_all_args,
6794 use_default_args);
6795 return coerced_args;
6796 }
6797
6798 /* Returns 1 if template args OT and NT are equivalent. */
6799
6800 static int
6801 template_args_equal (tree ot, tree nt)
6802 {
6803 if (nt == ot)
6804 return 1;
6805 if (nt == NULL_TREE || ot == NULL_TREE)
6806 return false;
6807
6808 if (TREE_CODE (nt) == TREE_VEC)
6809 /* For member templates */
6810 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
6811 else if (PACK_EXPANSION_P (ot))
6812 return (PACK_EXPANSION_P (nt)
6813 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
6814 PACK_EXPANSION_PATTERN (nt))
6815 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
6816 PACK_EXPANSION_EXTRA_ARGS (nt)));
6817 else if (ARGUMENT_PACK_P (ot))
6818 {
6819 int i, len;
6820 tree opack, npack;
6821
6822 if (!ARGUMENT_PACK_P (nt))
6823 return 0;
6824
6825 opack = ARGUMENT_PACK_ARGS (ot);
6826 npack = ARGUMENT_PACK_ARGS (nt);
6827 len = TREE_VEC_LENGTH (opack);
6828 if (TREE_VEC_LENGTH (npack) != len)
6829 return 0;
6830 for (i = 0; i < len; ++i)
6831 if (!template_args_equal (TREE_VEC_ELT (opack, i),
6832 TREE_VEC_ELT (npack, i)))
6833 return 0;
6834 return 1;
6835 }
6836 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
6837 {
6838 /* We get here probably because we are in the middle of substituting
6839 into the pattern of a pack expansion. In that case the
6840 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
6841 interested in. So we want to use the initial pack argument for
6842 the comparison. */
6843 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
6844 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
6845 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
6846 return template_args_equal (ot, nt);
6847 }
6848 else if (TYPE_P (nt))
6849 return TYPE_P (ot) && same_type_p (ot, nt);
6850 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
6851 return 0;
6852 else
6853 return cp_tree_equal (ot, nt);
6854 }
6855
6856 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
6857 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
6858 NEWARG_PTR with the offending arguments if they are non-NULL. */
6859
6860 static int
6861 comp_template_args_with_info (tree oldargs, tree newargs,
6862 tree *oldarg_ptr, tree *newarg_ptr)
6863 {
6864 int i;
6865
6866 if (oldargs == newargs)
6867 return 1;
6868
6869 if (!oldargs || !newargs)
6870 return 0;
6871
6872 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
6873 return 0;
6874
6875 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
6876 {
6877 tree nt = TREE_VEC_ELT (newargs, i);
6878 tree ot = TREE_VEC_ELT (oldargs, i);
6879
6880 if (! template_args_equal (ot, nt))
6881 {
6882 if (oldarg_ptr != NULL)
6883 *oldarg_ptr = ot;
6884 if (newarg_ptr != NULL)
6885 *newarg_ptr = nt;
6886 return 0;
6887 }
6888 }
6889 return 1;
6890 }
6891
6892 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
6893 of template arguments. Returns 0 otherwise. */
6894
6895 int
6896 comp_template_args (tree oldargs, tree newargs)
6897 {
6898 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
6899 }
6900
6901 static void
6902 add_pending_template (tree d)
6903 {
6904 tree ti = (TYPE_P (d)
6905 ? CLASSTYPE_TEMPLATE_INFO (d)
6906 : DECL_TEMPLATE_INFO (d));
6907 struct pending_template *pt;
6908 int level;
6909
6910 if (TI_PENDING_TEMPLATE_FLAG (ti))
6911 return;
6912
6913 /* We are called both from instantiate_decl, where we've already had a
6914 tinst_level pushed, and instantiate_template, where we haven't.
6915 Compensate. */
6916 level = !current_tinst_level || current_tinst_level->decl != d;
6917
6918 if (level)
6919 push_tinst_level (d);
6920
6921 pt = ggc_alloc_pending_template ();
6922 pt->next = NULL;
6923 pt->tinst = current_tinst_level;
6924 if (last_pending_template)
6925 last_pending_template->next = pt;
6926 else
6927 pending_templates = pt;
6928
6929 last_pending_template = pt;
6930
6931 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
6932
6933 if (level)
6934 pop_tinst_level ();
6935 }
6936
6937
6938 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
6939 ARGLIST. Valid choices for FNS are given in the cp-tree.def
6940 documentation for TEMPLATE_ID_EXPR. */
6941
6942 tree
6943 lookup_template_function (tree fns, tree arglist)
6944 {
6945 tree type;
6946
6947 if (fns == error_mark_node || arglist == error_mark_node)
6948 return error_mark_node;
6949
6950 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
6951
6952 if (!is_overloaded_fn (fns) && !identifier_p (fns))
6953 {
6954 error ("%q#D is not a function template", fns);
6955 return error_mark_node;
6956 }
6957
6958 if (BASELINK_P (fns))
6959 {
6960 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
6961 unknown_type_node,
6962 BASELINK_FUNCTIONS (fns),
6963 arglist);
6964 return fns;
6965 }
6966
6967 type = TREE_TYPE (fns);
6968 if (TREE_CODE (fns) == OVERLOAD || !type)
6969 type = unknown_type_node;
6970
6971 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
6972 }
6973
6974 /* Within the scope of a template class S<T>, the name S gets bound
6975 (in build_self_reference) to a TYPE_DECL for the class, not a
6976 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
6977 or one of its enclosing classes, and that type is a template,
6978 return the associated TEMPLATE_DECL. Otherwise, the original
6979 DECL is returned.
6980
6981 Also handle the case when DECL is a TREE_LIST of ambiguous
6982 injected-class-names from different bases. */
6983
6984 tree
6985 maybe_get_template_decl_from_type_decl (tree decl)
6986 {
6987 if (decl == NULL_TREE)
6988 return decl;
6989
6990 /* DR 176: A lookup that finds an injected-class-name (10.2
6991 [class.member.lookup]) can result in an ambiguity in certain cases
6992 (for example, if it is found in more than one base class). If all of
6993 the injected-class-names that are found refer to specializations of
6994 the same class template, and if the name is followed by a
6995 template-argument-list, the reference refers to the class template
6996 itself and not a specialization thereof, and is not ambiguous. */
6997 if (TREE_CODE (decl) == TREE_LIST)
6998 {
6999 tree t, tmpl = NULL_TREE;
7000 for (t = decl; t; t = TREE_CHAIN (t))
7001 {
7002 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7003 if (!tmpl)
7004 tmpl = elt;
7005 else if (tmpl != elt)
7006 break;
7007 }
7008 if (tmpl && t == NULL_TREE)
7009 return tmpl;
7010 else
7011 return decl;
7012 }
7013
7014 return (decl != NULL_TREE
7015 && DECL_SELF_REFERENCE_P (decl)
7016 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7017 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7018 }
7019
7020 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
7021 parameters, find the desired type.
7022
7023 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7024
7025 IN_DECL, if non-NULL, is the template declaration we are trying to
7026 instantiate.
7027
7028 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7029 the class we are looking up.
7030
7031 Issue error and warning messages under control of COMPLAIN.
7032
7033 If the template class is really a local class in a template
7034 function, then the FUNCTION_CONTEXT is the function in which it is
7035 being instantiated.
7036
7037 ??? Note that this function is currently called *twice* for each
7038 template-id: the first time from the parser, while creating the
7039 incomplete type (finish_template_type), and the second type during the
7040 real instantiation (instantiate_template_class). This is surely something
7041 that we want to avoid. It also causes some problems with argument
7042 coercion (see convert_nontype_argument for more information on this). */
7043
7044 static tree
7045 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7046 int entering_scope, tsubst_flags_t complain)
7047 {
7048 tree templ = NULL_TREE, parmlist;
7049 tree t;
7050 void **slot;
7051 spec_entry *entry;
7052 spec_entry elt;
7053 hashval_t hash;
7054
7055 if (identifier_p (d1))
7056 {
7057 tree value = innermost_non_namespace_value (d1);
7058 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7059 templ = value;
7060 else
7061 {
7062 if (context)
7063 push_decl_namespace (context);
7064 templ = lookup_name (d1);
7065 templ = maybe_get_template_decl_from_type_decl (templ);
7066 if (context)
7067 pop_decl_namespace ();
7068 }
7069 if (templ)
7070 context = DECL_CONTEXT (templ);
7071 }
7072 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7073 {
7074 tree type = TREE_TYPE (d1);
7075
7076 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7077 an implicit typename for the second A. Deal with it. */
7078 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7079 type = TREE_TYPE (type);
7080
7081 if (CLASSTYPE_TEMPLATE_INFO (type))
7082 {
7083 templ = CLASSTYPE_TI_TEMPLATE (type);
7084 d1 = DECL_NAME (templ);
7085 }
7086 }
7087 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7088 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7089 {
7090 templ = TYPE_TI_TEMPLATE (d1);
7091 d1 = DECL_NAME (templ);
7092 }
7093 else if (TREE_CODE (d1) == TEMPLATE_DECL
7094 && DECL_TEMPLATE_RESULT (d1)
7095 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
7096 {
7097 templ = d1;
7098 d1 = DECL_NAME (templ);
7099 context = DECL_CONTEXT (templ);
7100 }
7101 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
7102 {
7103 templ = d1;
7104 d1 = DECL_NAME (templ);
7105 }
7106
7107 /* Issue an error message if we didn't find a template. */
7108 if (! templ)
7109 {
7110 if (complain & tf_error)
7111 error ("%qT is not a template", d1);
7112 return error_mark_node;
7113 }
7114
7115 if (TREE_CODE (templ) != TEMPLATE_DECL
7116 /* Make sure it's a user visible template, if it was named by
7117 the user. */
7118 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7119 && !PRIMARY_TEMPLATE_P (templ)))
7120 {
7121 if (complain & tf_error)
7122 {
7123 error ("non-template type %qT used as a template", d1);
7124 if (in_decl)
7125 error ("for template declaration %q+D", in_decl);
7126 }
7127 return error_mark_node;
7128 }
7129
7130 complain &= ~tf_user;
7131
7132 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7133 {
7134 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7135 template arguments */
7136
7137 tree parm;
7138 tree arglist2;
7139 tree outer;
7140
7141 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7142
7143 /* Consider an example where a template template parameter declared as
7144
7145 template <class T, class U = std::allocator<T> > class TT
7146
7147 The template parameter level of T and U are one level larger than
7148 of TT. To proper process the default argument of U, say when an
7149 instantiation `TT<int>' is seen, we need to build the full
7150 arguments containing {int} as the innermost level. Outer levels,
7151 available when not appearing as default template argument, can be
7152 obtained from the arguments of the enclosing template.
7153
7154 Suppose that TT is later substituted with std::vector. The above
7155 instantiation is `TT<int, std::allocator<T> >' with TT at
7156 level 1, and T at level 2, while the template arguments at level 1
7157 becomes {std::vector} and the inner level 2 is {int}. */
7158
7159 outer = DECL_CONTEXT (templ);
7160 if (outer)
7161 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7162 else if (current_template_parms)
7163 /* This is an argument of the current template, so we haven't set
7164 DECL_CONTEXT yet. */
7165 outer = current_template_args ();
7166
7167 if (outer)
7168 arglist = add_to_template_args (outer, arglist);
7169
7170 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7171 complain,
7172 /*require_all_args=*/true,
7173 /*use_default_args=*/true);
7174 if (arglist2 == error_mark_node
7175 || (!uses_template_parms (arglist2)
7176 && check_instantiated_args (templ, arglist2, complain)))
7177 return error_mark_node;
7178
7179 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7180 return parm;
7181 }
7182 else
7183 {
7184 tree template_type = TREE_TYPE (templ);
7185 tree gen_tmpl;
7186 tree type_decl;
7187 tree found = NULL_TREE;
7188 int arg_depth;
7189 int parm_depth;
7190 int is_dependent_type;
7191 int use_partial_inst_tmpl = false;
7192
7193 if (template_type == error_mark_node)
7194 /* An error occured while building the template TEMPL, and a
7195 diagnostic has most certainly been emitted for that
7196 already. Let's propagate that error. */
7197 return error_mark_node;
7198
7199 gen_tmpl = most_general_template (templ);
7200 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7201 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7202 arg_depth = TMPL_ARGS_DEPTH (arglist);
7203
7204 if (arg_depth == 1 && parm_depth > 1)
7205 {
7206 /* We've been given an incomplete set of template arguments.
7207 For example, given:
7208
7209 template <class T> struct S1 {
7210 template <class U> struct S2 {};
7211 template <class U> struct S2<U*> {};
7212 };
7213
7214 we will be called with an ARGLIST of `U*', but the
7215 TEMPLATE will be `template <class T> template
7216 <class U> struct S1<T>::S2'. We must fill in the missing
7217 arguments. */
7218 arglist
7219 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7220 arglist);
7221 arg_depth = TMPL_ARGS_DEPTH (arglist);
7222 }
7223
7224 /* Now we should have enough arguments. */
7225 gcc_assert (parm_depth == arg_depth);
7226
7227 /* From here on, we're only interested in the most general
7228 template. */
7229
7230 /* Calculate the BOUND_ARGS. These will be the args that are
7231 actually tsubst'd into the definition to create the
7232 instantiation. */
7233 if (parm_depth > 1)
7234 {
7235 /* We have multiple levels of arguments to coerce, at once. */
7236 int i;
7237 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7238
7239 tree bound_args = make_tree_vec (parm_depth);
7240
7241 for (i = saved_depth,
7242 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7243 i > 0 && t != NULL_TREE;
7244 --i, t = TREE_CHAIN (t))
7245 {
7246 tree a;
7247 if (i == saved_depth)
7248 a = coerce_template_parms (TREE_VALUE (t),
7249 arglist, gen_tmpl,
7250 complain,
7251 /*require_all_args=*/true,
7252 /*use_default_args=*/true);
7253 else
7254 /* Outer levels should have already been coerced. */
7255 a = TMPL_ARGS_LEVEL (arglist, i);
7256
7257 /* Don't process further if one of the levels fails. */
7258 if (a == error_mark_node)
7259 {
7260 /* Restore the ARGLIST to its full size. */
7261 TREE_VEC_LENGTH (arglist) = saved_depth;
7262 return error_mark_node;
7263 }
7264
7265 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7266
7267 /* We temporarily reduce the length of the ARGLIST so
7268 that coerce_template_parms will see only the arguments
7269 corresponding to the template parameters it is
7270 examining. */
7271 TREE_VEC_LENGTH (arglist)--;
7272 }
7273
7274 /* Restore the ARGLIST to its full size. */
7275 TREE_VEC_LENGTH (arglist) = saved_depth;
7276
7277 arglist = bound_args;
7278 }
7279 else
7280 arglist
7281 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7282 INNERMOST_TEMPLATE_ARGS (arglist),
7283 gen_tmpl,
7284 complain,
7285 /*require_all_args=*/true,
7286 /*use_default_args=*/true);
7287
7288 if (arglist == error_mark_node)
7289 /* We were unable to bind the arguments. */
7290 return error_mark_node;
7291
7292 /* In the scope of a template class, explicit references to the
7293 template class refer to the type of the template, not any
7294 instantiation of it. For example, in:
7295
7296 template <class T> class C { void f(C<T>); }
7297
7298 the `C<T>' is just the same as `C'. Outside of the
7299 class, however, such a reference is an instantiation. */
7300 if ((entering_scope
7301 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7302 || currently_open_class (template_type))
7303 /* comp_template_args is expensive, check it last. */
7304 && comp_template_args (TYPE_TI_ARGS (template_type),
7305 arglist))
7306 return template_type;
7307
7308 /* If we already have this specialization, return it. */
7309 elt.tmpl = gen_tmpl;
7310 elt.args = arglist;
7311 hash = hash_specialization (&elt);
7312 entry = (spec_entry *) htab_find_with_hash (type_specializations,
7313 &elt, hash);
7314
7315 if (entry)
7316 return entry->spec;
7317
7318 is_dependent_type = uses_template_parms (arglist);
7319
7320 /* If the deduced arguments are invalid, then the binding
7321 failed. */
7322 if (!is_dependent_type
7323 && check_instantiated_args (gen_tmpl,
7324 INNERMOST_TEMPLATE_ARGS (arglist),
7325 complain))
7326 return error_mark_node;
7327
7328 if (!is_dependent_type
7329 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7330 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7331 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7332 {
7333 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7334 DECL_NAME (gen_tmpl),
7335 /*tag_scope=*/ts_global);
7336 return found;
7337 }
7338
7339 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7340 complain, in_decl);
7341 if (context == error_mark_node)
7342 return error_mark_node;
7343
7344 if (!context)
7345 context = global_namespace;
7346
7347 /* Create the type. */
7348 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7349 {
7350 if (!is_dependent_type)
7351 {
7352 set_current_access_from_decl (TYPE_NAME (template_type));
7353 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7354 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7355 arglist, complain, in_decl),
7356 SCOPED_ENUM_P (template_type), NULL);
7357 }
7358 else
7359 {
7360 /* We don't want to call start_enum for this type, since
7361 the values for the enumeration constants may involve
7362 template parameters. And, no one should be interested
7363 in the enumeration constants for such a type. */
7364 t = cxx_make_type (ENUMERAL_TYPE);
7365 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7366 }
7367 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7368 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7369 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7370 }
7371 else if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7372 {
7373 /* The user referred to a specialization of an alias
7374 template represented by GEN_TMPL.
7375
7376 [temp.alias]/2 says:
7377
7378 When a template-id refers to the specialization of an
7379 alias template, it is equivalent to the associated
7380 type obtained by substitution of its
7381 template-arguments for the template-parameters in the
7382 type-id of the alias template. */
7383
7384 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7385 /* Note that the call above (by indirectly calling
7386 register_specialization in tsubst_decl) registers the
7387 TYPE_DECL representing the specialization of the alias
7388 template. So next time someone substitutes ARGLIST for
7389 the template parms into the alias template (GEN_TMPL),
7390 she'll get that TYPE_DECL back. */
7391
7392 if (t == error_mark_node)
7393 return t;
7394 }
7395 else if (CLASS_TYPE_P (template_type))
7396 {
7397 t = make_class_type (TREE_CODE (template_type));
7398 CLASSTYPE_DECLARED_CLASS (t)
7399 = CLASSTYPE_DECLARED_CLASS (template_type);
7400 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7401 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7402
7403 /* A local class. Make sure the decl gets registered properly. */
7404 if (context == current_function_decl)
7405 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7406
7407 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7408 /* This instantiation is another name for the primary
7409 template type. Set the TYPE_CANONICAL field
7410 appropriately. */
7411 TYPE_CANONICAL (t) = template_type;
7412 else if (any_template_arguments_need_structural_equality_p (arglist))
7413 /* Some of the template arguments require structural
7414 equality testing, so this template class requires
7415 structural equality testing. */
7416 SET_TYPE_STRUCTURAL_EQUALITY (t);
7417 }
7418 else
7419 gcc_unreachable ();
7420
7421 /* If we called start_enum or pushtag above, this information
7422 will already be set up. */
7423 if (!TYPE_NAME (t))
7424 {
7425 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7426
7427 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7428 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7429 DECL_SOURCE_LOCATION (type_decl)
7430 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7431 }
7432 else
7433 type_decl = TYPE_NAME (t);
7434
7435 if (CLASS_TYPE_P (template_type))
7436 {
7437 TREE_PRIVATE (type_decl)
7438 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7439 TREE_PROTECTED (type_decl)
7440 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7441 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7442 {
7443 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7444 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7445 }
7446 }
7447
7448 /* Let's consider the explicit specialization of a member
7449 of a class template specialization that is implicitely instantiated,
7450 e.g.:
7451 template<class T>
7452 struct S
7453 {
7454 template<class U> struct M {}; //#0
7455 };
7456
7457 template<>
7458 template<>
7459 struct S<int>::M<char> //#1
7460 {
7461 int i;
7462 };
7463 [temp.expl.spec]/4 says this is valid.
7464
7465 In this case, when we write:
7466 S<int>::M<char> m;
7467
7468 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7469 the one of #0.
7470
7471 When we encounter #1, we want to store the partial instantiation
7472 of M (template<class T> S<int>::M<T>) in it's CLASSTYPE_TI_TEMPLATE.
7473
7474 For all cases other than this "explicit specialization of member of a
7475 class template", we just want to store the most general template into
7476 the CLASSTYPE_TI_TEMPLATE of M.
7477
7478 This case of "explicit specialization of member of a class template"
7479 only happens when:
7480 1/ the enclosing class is an instantiation of, and therefore not
7481 the same as, the context of the most general template, and
7482 2/ we aren't looking at the partial instantiation itself, i.e.
7483 the innermost arguments are not the same as the innermost parms of
7484 the most general template.
7485
7486 So it's only when 1/ and 2/ happens that we want to use the partial
7487 instantiation of the member template in lieu of its most general
7488 template. */
7489
7490 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7491 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7492 /* the enclosing class must be an instantiation... */
7493 && CLASS_TYPE_P (context)
7494 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7495 {
7496 tree partial_inst_args;
7497 TREE_VEC_LENGTH (arglist)--;
7498 ++processing_template_decl;
7499 partial_inst_args =
7500 tsubst (INNERMOST_TEMPLATE_ARGS
7501 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7502 arglist, complain, NULL_TREE);
7503 --processing_template_decl;
7504 TREE_VEC_LENGTH (arglist)++;
7505 use_partial_inst_tmpl =
7506 /*...and we must not be looking at the partial instantiation
7507 itself. */
7508 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7509 partial_inst_args);
7510 }
7511
7512 if (!use_partial_inst_tmpl)
7513 /* This case is easy; there are no member templates involved. */
7514 found = gen_tmpl;
7515 else
7516 {
7517 /* This is a full instantiation of a member template. Find
7518 the partial instantiation of which this is an instance. */
7519
7520 /* Temporarily reduce by one the number of levels in the ARGLIST
7521 so as to avoid comparing the last set of arguments. */
7522 TREE_VEC_LENGTH (arglist)--;
7523 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7524 TREE_VEC_LENGTH (arglist)++;
7525 /* FOUND is either a proper class type, or an alias
7526 template specialization. In the later case, it's a
7527 TYPE_DECL, resulting from the substituting of arguments
7528 for parameters in the TYPE_DECL of the alias template
7529 done earlier. So be careful while getting the template
7530 of FOUND. */
7531 found = TREE_CODE (found) == TYPE_DECL
7532 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7533 : CLASSTYPE_TI_TEMPLATE (found);
7534 }
7535
7536 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7537
7538 elt.spec = t;
7539 slot = htab_find_slot_with_hash (type_specializations,
7540 &elt, hash, INSERT);
7541 entry = ggc_alloc_spec_entry ();
7542 *entry = elt;
7543 *slot = entry;
7544
7545 /* Note this use of the partial instantiation so we can check it
7546 later in maybe_process_partial_specialization. */
7547 DECL_TEMPLATE_INSTANTIATIONS (templ)
7548 = tree_cons (arglist, t,
7549 DECL_TEMPLATE_INSTANTIATIONS (templ));
7550
7551 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type)
7552 /* Now that the type has been registered on the instantiations
7553 list, we set up the enumerators. Because the enumeration
7554 constants may involve the enumeration type itself, we make
7555 sure to register the type first, and then create the
7556 constants. That way, doing tsubst_expr for the enumeration
7557 constants won't result in recursive calls here; we'll find
7558 the instantiation and exit above. */
7559 tsubst_enum (template_type, t, arglist);
7560
7561 if (CLASS_TYPE_P (template_type) && is_dependent_type)
7562 /* If the type makes use of template parameters, the
7563 code that generates debugging information will crash. */
7564 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
7565
7566 /* Possibly limit visibility based on template args. */
7567 TREE_PUBLIC (type_decl) = 1;
7568 determine_visibility (type_decl);
7569
7570 return t;
7571 }
7572 }
7573
7574 /* Wrapper for lookup_template_class_1. */
7575
7576 tree
7577 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
7578 int entering_scope, tsubst_flags_t complain)
7579 {
7580 tree ret;
7581 timevar_push (TV_TEMPLATE_INST);
7582 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
7583 entering_scope, complain);
7584 timevar_pop (TV_TEMPLATE_INST);
7585 return ret;
7586 }
7587 \f
7588 struct pair_fn_data
7589 {
7590 tree_fn_t fn;
7591 void *data;
7592 /* True when we should also visit template parameters that occur in
7593 non-deduced contexts. */
7594 bool include_nondeduced_p;
7595 struct pointer_set_t *visited;
7596 };
7597
7598 /* Called from for_each_template_parm via walk_tree. */
7599
7600 static tree
7601 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
7602 {
7603 tree t = *tp;
7604 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
7605 tree_fn_t fn = pfd->fn;
7606 void *data = pfd->data;
7607
7608 if (TYPE_P (t)
7609 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
7610 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
7611 pfd->include_nondeduced_p))
7612 return error_mark_node;
7613
7614 switch (TREE_CODE (t))
7615 {
7616 case RECORD_TYPE:
7617 if (TYPE_PTRMEMFUNC_P (t))
7618 break;
7619 /* Fall through. */
7620
7621 case UNION_TYPE:
7622 case ENUMERAL_TYPE:
7623 if (!TYPE_TEMPLATE_INFO (t))
7624 *walk_subtrees = 0;
7625 else if (for_each_template_parm (TYPE_TI_ARGS (t),
7626 fn, data, pfd->visited,
7627 pfd->include_nondeduced_p))
7628 return error_mark_node;
7629 break;
7630
7631 case INTEGER_TYPE:
7632 if (for_each_template_parm (TYPE_MIN_VALUE (t),
7633 fn, data, pfd->visited,
7634 pfd->include_nondeduced_p)
7635 || for_each_template_parm (TYPE_MAX_VALUE (t),
7636 fn, data, pfd->visited,
7637 pfd->include_nondeduced_p))
7638 return error_mark_node;
7639 break;
7640
7641 case METHOD_TYPE:
7642 /* Since we're not going to walk subtrees, we have to do this
7643 explicitly here. */
7644 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
7645 pfd->visited, pfd->include_nondeduced_p))
7646 return error_mark_node;
7647 /* Fall through. */
7648
7649 case FUNCTION_TYPE:
7650 /* Check the return type. */
7651 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7652 pfd->include_nondeduced_p))
7653 return error_mark_node;
7654
7655 /* Check the parameter types. Since default arguments are not
7656 instantiated until they are needed, the TYPE_ARG_TYPES may
7657 contain expressions that involve template parameters. But,
7658 no-one should be looking at them yet. And, once they're
7659 instantiated, they don't contain template parameters, so
7660 there's no point in looking at them then, either. */
7661 {
7662 tree parm;
7663
7664 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
7665 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
7666 pfd->visited, pfd->include_nondeduced_p))
7667 return error_mark_node;
7668
7669 /* Since we've already handled the TYPE_ARG_TYPES, we don't
7670 want walk_tree walking into them itself. */
7671 *walk_subtrees = 0;
7672 }
7673 break;
7674
7675 case TYPEOF_TYPE:
7676 case UNDERLYING_TYPE:
7677 if (pfd->include_nondeduced_p
7678 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
7679 pfd->visited,
7680 pfd->include_nondeduced_p))
7681 return error_mark_node;
7682 break;
7683
7684 case FUNCTION_DECL:
7685 case VAR_DECL:
7686 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
7687 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
7688 pfd->visited, pfd->include_nondeduced_p))
7689 return error_mark_node;
7690 /* Fall through. */
7691
7692 case PARM_DECL:
7693 case CONST_DECL:
7694 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
7695 && for_each_template_parm (DECL_INITIAL (t), fn, data,
7696 pfd->visited, pfd->include_nondeduced_p))
7697 return error_mark_node;
7698 if (DECL_CONTEXT (t)
7699 && pfd->include_nondeduced_p
7700 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
7701 pfd->visited, pfd->include_nondeduced_p))
7702 return error_mark_node;
7703 break;
7704
7705 case BOUND_TEMPLATE_TEMPLATE_PARM:
7706 /* Record template parameters such as `T' inside `TT<T>'. */
7707 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
7708 pfd->include_nondeduced_p))
7709 return error_mark_node;
7710 /* Fall through. */
7711
7712 case TEMPLATE_TEMPLATE_PARM:
7713 case TEMPLATE_TYPE_PARM:
7714 case TEMPLATE_PARM_INDEX:
7715 if (fn && (*fn)(t, data))
7716 return error_mark_node;
7717 else if (!fn)
7718 return error_mark_node;
7719 break;
7720
7721 case TEMPLATE_DECL:
7722 /* A template template parameter is encountered. */
7723 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
7724 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7725 pfd->include_nondeduced_p))
7726 return error_mark_node;
7727
7728 /* Already substituted template template parameter */
7729 *walk_subtrees = 0;
7730 break;
7731
7732 case TYPENAME_TYPE:
7733 if (!fn
7734 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
7735 data, pfd->visited,
7736 pfd->include_nondeduced_p))
7737 return error_mark_node;
7738 break;
7739
7740 case CONSTRUCTOR:
7741 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
7742 && pfd->include_nondeduced_p
7743 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
7744 (TREE_TYPE (t)), fn, data,
7745 pfd->visited, pfd->include_nondeduced_p))
7746 return error_mark_node;
7747 break;
7748
7749 case INDIRECT_REF:
7750 case COMPONENT_REF:
7751 /* If there's no type, then this thing must be some expression
7752 involving template parameters. */
7753 if (!fn && !TREE_TYPE (t))
7754 return error_mark_node;
7755 break;
7756
7757 case MODOP_EXPR:
7758 case CAST_EXPR:
7759 case IMPLICIT_CONV_EXPR:
7760 case REINTERPRET_CAST_EXPR:
7761 case CONST_CAST_EXPR:
7762 case STATIC_CAST_EXPR:
7763 case DYNAMIC_CAST_EXPR:
7764 case ARROW_EXPR:
7765 case DOTSTAR_EXPR:
7766 case TYPEID_EXPR:
7767 case PSEUDO_DTOR_EXPR:
7768 if (!fn)
7769 return error_mark_node;
7770 break;
7771
7772 default:
7773 break;
7774 }
7775
7776 /* We didn't find any template parameters we liked. */
7777 return NULL_TREE;
7778 }
7779
7780 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
7781 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
7782 call FN with the parameter and the DATA.
7783 If FN returns nonzero, the iteration is terminated, and
7784 for_each_template_parm returns 1. Otherwise, the iteration
7785 continues. If FN never returns a nonzero value, the value
7786 returned by for_each_template_parm is 0. If FN is NULL, it is
7787 considered to be the function which always returns 1.
7788
7789 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
7790 parameters that occur in non-deduced contexts. When false, only
7791 visits those template parameters that can be deduced. */
7792
7793 static int
7794 for_each_template_parm (tree t, tree_fn_t fn, void* data,
7795 struct pointer_set_t *visited,
7796 bool include_nondeduced_p)
7797 {
7798 struct pair_fn_data pfd;
7799 int result;
7800
7801 /* Set up. */
7802 pfd.fn = fn;
7803 pfd.data = data;
7804 pfd.include_nondeduced_p = include_nondeduced_p;
7805
7806 /* Walk the tree. (Conceptually, we would like to walk without
7807 duplicates, but for_each_template_parm_r recursively calls
7808 for_each_template_parm, so we would need to reorganize a fair
7809 bit to use walk_tree_without_duplicates, so we keep our own
7810 visited list.) */
7811 if (visited)
7812 pfd.visited = visited;
7813 else
7814 pfd.visited = pointer_set_create ();
7815 result = cp_walk_tree (&t,
7816 for_each_template_parm_r,
7817 &pfd,
7818 pfd.visited) != NULL_TREE;
7819
7820 /* Clean up. */
7821 if (!visited)
7822 {
7823 pointer_set_destroy (pfd.visited);
7824 pfd.visited = 0;
7825 }
7826
7827 return result;
7828 }
7829
7830 /* Returns true if T depends on any template parameter. */
7831
7832 int
7833 uses_template_parms (tree t)
7834 {
7835 bool dependent_p;
7836 int saved_processing_template_decl;
7837
7838 saved_processing_template_decl = processing_template_decl;
7839 if (!saved_processing_template_decl)
7840 processing_template_decl = 1;
7841 if (TYPE_P (t))
7842 dependent_p = dependent_type_p (t);
7843 else if (TREE_CODE (t) == TREE_VEC)
7844 dependent_p = any_dependent_template_arguments_p (t);
7845 else if (TREE_CODE (t) == TREE_LIST)
7846 dependent_p = (uses_template_parms (TREE_VALUE (t))
7847 || uses_template_parms (TREE_CHAIN (t)));
7848 else if (TREE_CODE (t) == TYPE_DECL)
7849 dependent_p = dependent_type_p (TREE_TYPE (t));
7850 else if (DECL_P (t)
7851 || EXPR_P (t)
7852 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
7853 || TREE_CODE (t) == OVERLOAD
7854 || BASELINK_P (t)
7855 || identifier_p (t)
7856 || TREE_CODE (t) == TRAIT_EXPR
7857 || TREE_CODE (t) == CONSTRUCTOR
7858 || CONSTANT_CLASS_P (t))
7859 dependent_p = (type_dependent_expression_p (t)
7860 || value_dependent_expression_p (t));
7861 else
7862 {
7863 gcc_assert (t == error_mark_node);
7864 dependent_p = false;
7865 }
7866
7867 processing_template_decl = saved_processing_template_decl;
7868
7869 return dependent_p;
7870 }
7871
7872 /* Returns true iff current_function_decl is an incompletely instantiated
7873 template. Useful instead of processing_template_decl because the latter
7874 is set to 0 during fold_non_dependent_expr. */
7875
7876 bool
7877 in_template_function (void)
7878 {
7879 tree fn = current_function_decl;
7880 bool ret;
7881 ++processing_template_decl;
7882 ret = (fn && DECL_LANG_SPECIFIC (fn)
7883 && DECL_TEMPLATE_INFO (fn)
7884 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
7885 --processing_template_decl;
7886 return ret;
7887 }
7888
7889 /* Returns true if T depends on any template parameter with level LEVEL. */
7890
7891 int
7892 uses_template_parms_level (tree t, int level)
7893 {
7894 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
7895 /*include_nondeduced_p=*/true);
7896 }
7897
7898 /* Returns TRUE iff INST is an instantiation we don't need to do in an
7899 ill-formed translation unit, i.e. a variable or function that isn't
7900 usable in a constant expression. */
7901
7902 static inline bool
7903 neglectable_inst_p (tree d)
7904 {
7905 return (DECL_P (d)
7906 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
7907 : decl_maybe_constant_var_p (d)));
7908 }
7909
7910 /* Returns TRUE iff we should refuse to instantiate DECL because it's
7911 neglectable and instantiated from within an erroneous instantiation. */
7912
7913 static bool
7914 limit_bad_template_recursion (tree decl)
7915 {
7916 struct tinst_level *lev = current_tinst_level;
7917 int errs = errorcount + sorrycount;
7918 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
7919 return false;
7920
7921 for (; lev; lev = lev->next)
7922 if (neglectable_inst_p (lev->decl))
7923 break;
7924
7925 return (lev && errs > lev->errors);
7926 }
7927
7928 static int tinst_depth;
7929 extern int max_tinst_depth;
7930 int depth_reached;
7931
7932 static GTY(()) struct tinst_level *last_error_tinst_level;
7933
7934 /* We're starting to instantiate D; record the template instantiation context
7935 for diagnostics and to restore it later. */
7936
7937 int
7938 push_tinst_level (tree d)
7939 {
7940 struct tinst_level *new_level;
7941
7942 if (tinst_depth >= max_tinst_depth)
7943 {
7944 last_error_tinst_level = current_tinst_level;
7945 if (TREE_CODE (d) == TREE_LIST)
7946 error ("template instantiation depth exceeds maximum of %d (use "
7947 "-ftemplate-depth= to increase the maximum) substituting %qS",
7948 max_tinst_depth, d);
7949 else
7950 error ("template instantiation depth exceeds maximum of %d (use "
7951 "-ftemplate-depth= to increase the maximum) instantiating %qD",
7952 max_tinst_depth, d);
7953
7954 print_instantiation_context ();
7955
7956 return 0;
7957 }
7958
7959 /* If the current instantiation caused problems, don't let it instantiate
7960 anything else. Do allow deduction substitution and decls usable in
7961 constant expressions. */
7962 if (limit_bad_template_recursion (d))
7963 return 0;
7964
7965 new_level = ggc_alloc_tinst_level ();
7966 new_level->decl = d;
7967 new_level->locus = input_location;
7968 new_level->errors = errorcount+sorrycount;
7969 new_level->in_system_header_p = in_system_header;
7970 new_level->next = current_tinst_level;
7971 current_tinst_level = new_level;
7972
7973 ++tinst_depth;
7974 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
7975 depth_reached = tinst_depth;
7976
7977 return 1;
7978 }
7979
7980 /* We're done instantiating this template; return to the instantiation
7981 context. */
7982
7983 void
7984 pop_tinst_level (void)
7985 {
7986 /* Restore the filename and line number stashed away when we started
7987 this instantiation. */
7988 input_location = current_tinst_level->locus;
7989 current_tinst_level = current_tinst_level->next;
7990 --tinst_depth;
7991 }
7992
7993 /* We're instantiating a deferred template; restore the template
7994 instantiation context in which the instantiation was requested, which
7995 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
7996
7997 static tree
7998 reopen_tinst_level (struct tinst_level *level)
7999 {
8000 struct tinst_level *t;
8001
8002 tinst_depth = 0;
8003 for (t = level; t; t = t->next)
8004 ++tinst_depth;
8005
8006 current_tinst_level = level;
8007 pop_tinst_level ();
8008 if (current_tinst_level)
8009 current_tinst_level->errors = errorcount+sorrycount;
8010 return level->decl;
8011 }
8012
8013 /* Returns the TINST_LEVEL which gives the original instantiation
8014 context. */
8015
8016 struct tinst_level *
8017 outermost_tinst_level (void)
8018 {
8019 struct tinst_level *level = current_tinst_level;
8020 if (level)
8021 while (level->next)
8022 level = level->next;
8023 return level;
8024 }
8025
8026 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8027 vector of template arguments, as for tsubst.
8028
8029 Returns an appropriate tsubst'd friend declaration. */
8030
8031 static tree
8032 tsubst_friend_function (tree decl, tree args)
8033 {
8034 tree new_friend;
8035
8036 if (TREE_CODE (decl) == FUNCTION_DECL
8037 && DECL_TEMPLATE_INSTANTIATION (decl)
8038 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8039 /* This was a friend declared with an explicit template
8040 argument list, e.g.:
8041
8042 friend void f<>(T);
8043
8044 to indicate that f was a template instantiation, not a new
8045 function declaration. Now, we have to figure out what
8046 instantiation of what template. */
8047 {
8048 tree template_id, arglist, fns;
8049 tree new_args;
8050 tree tmpl;
8051 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8052
8053 /* Friend functions are looked up in the containing namespace scope.
8054 We must enter that scope, to avoid finding member functions of the
8055 current class with same name. */
8056 push_nested_namespace (ns);
8057 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8058 tf_warning_or_error, NULL_TREE,
8059 /*integral_constant_expression_p=*/false);
8060 pop_nested_namespace (ns);
8061 arglist = tsubst (DECL_TI_ARGS (decl), args,
8062 tf_warning_or_error, NULL_TREE);
8063 template_id = lookup_template_function (fns, arglist);
8064
8065 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8066 tmpl = determine_specialization (template_id, new_friend,
8067 &new_args,
8068 /*need_member_template=*/0,
8069 TREE_VEC_LENGTH (args),
8070 tsk_none);
8071 return instantiate_template (tmpl, new_args, tf_error);
8072 }
8073
8074 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8075
8076 /* The NEW_FRIEND will look like an instantiation, to the
8077 compiler, but is not an instantiation from the point of view of
8078 the language. For example, we might have had:
8079
8080 template <class T> struct S {
8081 template <class U> friend void f(T, U);
8082 };
8083
8084 Then, in S<int>, template <class U> void f(int, U) is not an
8085 instantiation of anything. */
8086 if (new_friend == error_mark_node)
8087 return error_mark_node;
8088
8089 DECL_USE_TEMPLATE (new_friend) = 0;
8090 if (TREE_CODE (decl) == TEMPLATE_DECL)
8091 {
8092 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8093 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8094 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8095 }
8096
8097 /* The mangled name for the NEW_FRIEND is incorrect. The function
8098 is not a template instantiation and should not be mangled like
8099 one. Therefore, we forget the mangling here; we'll recompute it
8100 later if we need it. */
8101 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8102 {
8103 SET_DECL_RTL (new_friend, NULL);
8104 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8105 }
8106
8107 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8108 {
8109 tree old_decl;
8110 tree new_friend_template_info;
8111 tree new_friend_result_template_info;
8112 tree ns;
8113 int new_friend_is_defn;
8114
8115 /* We must save some information from NEW_FRIEND before calling
8116 duplicate decls since that function will free NEW_FRIEND if
8117 possible. */
8118 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8119 new_friend_is_defn =
8120 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8121 (template_for_substitution (new_friend)))
8122 != NULL_TREE);
8123 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8124 {
8125 /* This declaration is a `primary' template. */
8126 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8127
8128 new_friend_result_template_info
8129 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8130 }
8131 else
8132 new_friend_result_template_info = NULL_TREE;
8133
8134 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8135 if (new_friend_is_defn)
8136 DECL_INITIAL (new_friend) = error_mark_node;
8137
8138 /* Inside pushdecl_namespace_level, we will push into the
8139 current namespace. However, the friend function should go
8140 into the namespace of the template. */
8141 ns = decl_namespace_context (new_friend);
8142 push_nested_namespace (ns);
8143 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8144 pop_nested_namespace (ns);
8145
8146 if (old_decl == error_mark_node)
8147 return error_mark_node;
8148
8149 if (old_decl != new_friend)
8150 {
8151 /* This new friend declaration matched an existing
8152 declaration. For example, given:
8153
8154 template <class T> void f(T);
8155 template <class U> class C {
8156 template <class T> friend void f(T) {}
8157 };
8158
8159 the friend declaration actually provides the definition
8160 of `f', once C has been instantiated for some type. So,
8161 old_decl will be the out-of-class template declaration,
8162 while new_friend is the in-class definition.
8163
8164 But, if `f' was called before this point, the
8165 instantiation of `f' will have DECL_TI_ARGS corresponding
8166 to `T' but not to `U', references to which might appear
8167 in the definition of `f'. Previously, the most general
8168 template for an instantiation of `f' was the out-of-class
8169 version; now it is the in-class version. Therefore, we
8170 run through all specialization of `f', adding to their
8171 DECL_TI_ARGS appropriately. In particular, they need a
8172 new set of outer arguments, corresponding to the
8173 arguments for this class instantiation.
8174
8175 The same situation can arise with something like this:
8176
8177 friend void f(int);
8178 template <class T> class C {
8179 friend void f(T) {}
8180 };
8181
8182 when `C<int>' is instantiated. Now, `f(int)' is defined
8183 in the class. */
8184
8185 if (!new_friend_is_defn)
8186 /* On the other hand, if the in-class declaration does
8187 *not* provide a definition, then we don't want to alter
8188 existing definitions. We can just leave everything
8189 alone. */
8190 ;
8191 else
8192 {
8193 tree new_template = TI_TEMPLATE (new_friend_template_info);
8194 tree new_args = TI_ARGS (new_friend_template_info);
8195
8196 /* Overwrite whatever template info was there before, if
8197 any, with the new template information pertaining to
8198 the declaration. */
8199 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8200
8201 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8202 {
8203 /* We should have called reregister_specialization in
8204 duplicate_decls. */
8205 gcc_assert (retrieve_specialization (new_template,
8206 new_args, 0)
8207 == old_decl);
8208
8209 /* Instantiate it if the global has already been used. */
8210 if (DECL_ODR_USED (old_decl))
8211 instantiate_decl (old_decl, /*defer_ok=*/true,
8212 /*expl_inst_class_mem_p=*/false);
8213 }
8214 else
8215 {
8216 tree t;
8217
8218 /* Indicate that the old function template is a partial
8219 instantiation. */
8220 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8221 = new_friend_result_template_info;
8222
8223 gcc_assert (new_template
8224 == most_general_template (new_template));
8225 gcc_assert (new_template != old_decl);
8226
8227 /* Reassign any specializations already in the hash table
8228 to the new more general template, and add the
8229 additional template args. */
8230 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8231 t != NULL_TREE;
8232 t = TREE_CHAIN (t))
8233 {
8234 tree spec = TREE_VALUE (t);
8235 spec_entry elt;
8236
8237 elt.tmpl = old_decl;
8238 elt.args = DECL_TI_ARGS (spec);
8239 elt.spec = NULL_TREE;
8240
8241 htab_remove_elt (decl_specializations, &elt);
8242
8243 DECL_TI_ARGS (spec)
8244 = add_outermost_template_args (new_args,
8245 DECL_TI_ARGS (spec));
8246
8247 register_specialization
8248 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8249
8250 }
8251 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8252 }
8253 }
8254
8255 /* The information from NEW_FRIEND has been merged into OLD_DECL
8256 by duplicate_decls. */
8257 new_friend = old_decl;
8258 }
8259 }
8260 else
8261 {
8262 tree context = DECL_CONTEXT (new_friend);
8263 bool dependent_p;
8264
8265 /* In the code
8266 template <class T> class C {
8267 template <class U> friend void C1<U>::f (); // case 1
8268 friend void C2<T>::f (); // case 2
8269 };
8270 we only need to make sure CONTEXT is a complete type for
8271 case 2. To distinguish between the two cases, we note that
8272 CONTEXT of case 1 remains dependent type after tsubst while
8273 this isn't true for case 2. */
8274 ++processing_template_decl;
8275 dependent_p = dependent_type_p (context);
8276 --processing_template_decl;
8277
8278 if (!dependent_p
8279 && !complete_type_or_else (context, NULL_TREE))
8280 return error_mark_node;
8281
8282 if (COMPLETE_TYPE_P (context))
8283 {
8284 /* Check to see that the declaration is really present, and,
8285 possibly obtain an improved declaration. */
8286 tree fn = check_classfn (context,
8287 new_friend, NULL_TREE);
8288
8289 if (fn)
8290 new_friend = fn;
8291 }
8292 }
8293
8294 return new_friend;
8295 }
8296
8297 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8298 template arguments, as for tsubst.
8299
8300 Returns an appropriate tsubst'd friend type or error_mark_node on
8301 failure. */
8302
8303 static tree
8304 tsubst_friend_class (tree friend_tmpl, tree args)
8305 {
8306 tree friend_type;
8307 tree tmpl;
8308 tree context;
8309
8310 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8311 {
8312 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8313 return TREE_TYPE (t);
8314 }
8315
8316 context = CP_DECL_CONTEXT (friend_tmpl);
8317
8318 if (context != global_namespace)
8319 {
8320 if (TREE_CODE (context) == NAMESPACE_DECL)
8321 push_nested_namespace (context);
8322 else
8323 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8324 }
8325
8326 /* Look for a class template declaration. We look for hidden names
8327 because two friend declarations of the same template are the
8328 same. For example, in:
8329
8330 struct A {
8331 template <typename> friend class F;
8332 };
8333 template <typename> struct B {
8334 template <typename> friend class F;
8335 };
8336
8337 both F templates are the same. */
8338 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8339 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8340
8341 /* But, if we don't find one, it might be because we're in a
8342 situation like this:
8343
8344 template <class T>
8345 struct S {
8346 template <class U>
8347 friend struct S;
8348 };
8349
8350 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8351 for `S<int>', not the TEMPLATE_DECL. */
8352 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8353 {
8354 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8355 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8356 }
8357
8358 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8359 {
8360 /* The friend template has already been declared. Just
8361 check to see that the declarations match, and install any new
8362 default parameters. We must tsubst the default parameters,
8363 of course. We only need the innermost template parameters
8364 because that is all that redeclare_class_template will look
8365 at. */
8366 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8367 > TMPL_ARGS_DEPTH (args))
8368 {
8369 tree parms;
8370 location_t saved_input_location;
8371 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8372 args, tf_warning_or_error);
8373
8374 saved_input_location = input_location;
8375 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8376 redeclare_class_template (TREE_TYPE (tmpl), parms);
8377 input_location = saved_input_location;
8378
8379 }
8380
8381 friend_type = TREE_TYPE (tmpl);
8382 }
8383 else
8384 {
8385 /* The friend template has not already been declared. In this
8386 case, the instantiation of the template class will cause the
8387 injection of this template into the global scope. */
8388 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8389 if (tmpl == error_mark_node)
8390 return error_mark_node;
8391
8392 /* The new TMPL is not an instantiation of anything, so we
8393 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8394 the new type because that is supposed to be the corresponding
8395 template decl, i.e., TMPL. */
8396 DECL_USE_TEMPLATE (tmpl) = 0;
8397 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8398 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8399 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8400 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8401
8402 /* Inject this template into the global scope. */
8403 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8404 }
8405
8406 if (context != global_namespace)
8407 {
8408 if (TREE_CODE (context) == NAMESPACE_DECL)
8409 pop_nested_namespace (context);
8410 else
8411 pop_nested_class ();
8412 }
8413
8414 return friend_type;
8415 }
8416
8417 /* Returns zero if TYPE cannot be completed later due to circularity.
8418 Otherwise returns one. */
8419
8420 static int
8421 can_complete_type_without_circularity (tree type)
8422 {
8423 if (type == NULL_TREE || type == error_mark_node)
8424 return 0;
8425 else if (COMPLETE_TYPE_P (type))
8426 return 1;
8427 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8428 return can_complete_type_without_circularity (TREE_TYPE (type));
8429 else if (CLASS_TYPE_P (type)
8430 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8431 return 0;
8432 else
8433 return 1;
8434 }
8435
8436 /* Apply any attributes which had to be deferred until instantiation
8437 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8438 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8439
8440 static void
8441 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8442 tree args, tsubst_flags_t complain, tree in_decl)
8443 {
8444 tree last_dep = NULL_TREE;
8445 tree t;
8446 tree *p;
8447
8448 for (t = attributes; t; t = TREE_CHAIN (t))
8449 if (ATTR_IS_DEPENDENT (t))
8450 {
8451 last_dep = t;
8452 attributes = copy_list (attributes);
8453 break;
8454 }
8455
8456 if (DECL_P (*decl_p))
8457 {
8458 if (TREE_TYPE (*decl_p) == error_mark_node)
8459 return;
8460 p = &DECL_ATTRIBUTES (*decl_p);
8461 }
8462 else
8463 p = &TYPE_ATTRIBUTES (*decl_p);
8464
8465 if (last_dep)
8466 {
8467 tree late_attrs = NULL_TREE;
8468 tree *q = &late_attrs;
8469
8470 for (*p = attributes; *p; )
8471 {
8472 t = *p;
8473 if (ATTR_IS_DEPENDENT (t))
8474 {
8475 *p = TREE_CHAIN (t);
8476 TREE_CHAIN (t) = NULL_TREE;
8477 /* If the first attribute argument is an identifier, don't
8478 pass it through tsubst. Attributes like mode, format,
8479 cleanup and several target specific attributes expect it
8480 unmodified. */
8481 if (TREE_VALUE (t)
8482 && TREE_CODE (TREE_VALUE (t)) == TREE_LIST
8483 && TREE_VALUE (TREE_VALUE (t))
8484 && (identifier_p (TREE_VALUE (TREE_VALUE (t)))))
8485 {
8486 tree chain
8487 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8488 in_decl,
8489 /*integral_constant_expression_p=*/false);
8490 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8491 TREE_VALUE (t)
8492 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8493 chain);
8494 }
8495 else
8496 TREE_VALUE (t)
8497 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8498 /*integral_constant_expression_p=*/false);
8499 *q = t;
8500 q = &TREE_CHAIN (t);
8501 }
8502 else
8503 p = &TREE_CHAIN (t);
8504 }
8505
8506 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8507 }
8508 }
8509
8510 /* Perform (or defer) access check for typedefs that were referenced
8511 from within the template TMPL code.
8512 This is a subroutine of instantiate_decl and instantiate_class_template.
8513 TMPL is the template to consider and TARGS is the list of arguments of
8514 that template. */
8515
8516 static void
8517 perform_typedefs_access_check (tree tmpl, tree targs)
8518 {
8519 location_t saved_location;
8520 unsigned i;
8521 qualified_typedef_usage_t *iter;
8522
8523 if (!tmpl
8524 || (!CLASS_TYPE_P (tmpl)
8525 && TREE_CODE (tmpl) != FUNCTION_DECL))
8526 return;
8527
8528 saved_location = input_location;
8529 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
8530 {
8531 tree type_decl = iter->typedef_decl;
8532 tree type_scope = iter->context;
8533
8534 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
8535 continue;
8536
8537 if (uses_template_parms (type_decl))
8538 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
8539 if (uses_template_parms (type_scope))
8540 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
8541
8542 /* Make access check error messages point to the location
8543 of the use of the typedef. */
8544 input_location = iter->locus;
8545 perform_or_defer_access_check (TYPE_BINFO (type_scope),
8546 type_decl, type_decl,
8547 tf_warning_or_error);
8548 }
8549 input_location = saved_location;
8550 }
8551
8552 static tree
8553 instantiate_class_template_1 (tree type)
8554 {
8555 tree templ, args, pattern, t, member;
8556 tree typedecl;
8557 tree pbinfo;
8558 tree base_list;
8559 unsigned int saved_maximum_field_alignment;
8560 tree fn_context;
8561
8562 if (type == error_mark_node)
8563 return error_mark_node;
8564
8565 if (COMPLETE_OR_OPEN_TYPE_P (type)
8566 || uses_template_parms (type))
8567 return type;
8568
8569 /* Figure out which template is being instantiated. */
8570 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
8571 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8572
8573 /* Determine what specialization of the original template to
8574 instantiate. */
8575 t = most_specialized_class (type, templ, tf_warning_or_error);
8576 if (t == error_mark_node)
8577 {
8578 TYPE_BEING_DEFINED (type) = 1;
8579 return error_mark_node;
8580 }
8581 else if (t)
8582 {
8583 /* This TYPE is actually an instantiation of a partial
8584 specialization. We replace the innermost set of ARGS with
8585 the arguments appropriate for substitution. For example,
8586 given:
8587
8588 template <class T> struct S {};
8589 template <class T> struct S<T*> {};
8590
8591 and supposing that we are instantiating S<int*>, ARGS will
8592 presently be {int*} -- but we need {int}. */
8593 pattern = TREE_TYPE (t);
8594 args = TREE_PURPOSE (t);
8595 }
8596 else
8597 {
8598 pattern = TREE_TYPE (templ);
8599 args = CLASSTYPE_TI_ARGS (type);
8600 }
8601
8602 /* If the template we're instantiating is incomplete, then clearly
8603 there's nothing we can do. */
8604 if (!COMPLETE_TYPE_P (pattern))
8605 return type;
8606
8607 /* If we've recursively instantiated too many templates, stop. */
8608 if (! push_tinst_level (type))
8609 return type;
8610
8611 /* Now we're really doing the instantiation. Mark the type as in
8612 the process of being defined. */
8613 TYPE_BEING_DEFINED (type) = 1;
8614
8615 /* We may be in the middle of deferred access check. Disable
8616 it now. */
8617 push_deferring_access_checks (dk_no_deferred);
8618
8619 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
8620 if (!fn_context)
8621 push_to_top_level ();
8622 /* Use #pragma pack from the template context. */
8623 saved_maximum_field_alignment = maximum_field_alignment;
8624 maximum_field_alignment = TYPE_PRECISION (pattern);
8625
8626 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8627
8628 /* Set the input location to the most specialized template definition.
8629 This is needed if tsubsting causes an error. */
8630 typedecl = TYPE_MAIN_DECL (pattern);
8631 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
8632 DECL_SOURCE_LOCATION (typedecl);
8633
8634 TYPE_PACKED (type) = TYPE_PACKED (pattern);
8635 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
8636 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
8637 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
8638 if (ANON_AGGR_TYPE_P (pattern))
8639 SET_ANON_AGGR_TYPE_P (type);
8640 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
8641 {
8642 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
8643 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
8644 /* Adjust visibility for template arguments. */
8645 determine_visibility (TYPE_MAIN_DECL (type));
8646 }
8647 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
8648
8649 pbinfo = TYPE_BINFO (pattern);
8650
8651 /* We should never instantiate a nested class before its enclosing
8652 class; we need to look up the nested class by name before we can
8653 instantiate it, and that lookup should instantiate the enclosing
8654 class. */
8655 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
8656 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
8657
8658 base_list = NULL_TREE;
8659 if (BINFO_N_BASE_BINFOS (pbinfo))
8660 {
8661 tree pbase_binfo;
8662 tree pushed_scope;
8663 int i;
8664
8665 /* We must enter the scope containing the type, as that is where
8666 the accessibility of types named in dependent bases are
8667 looked up from. */
8668 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
8669
8670 /* Substitute into each of the bases to determine the actual
8671 basetypes. */
8672 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
8673 {
8674 tree base;
8675 tree access = BINFO_BASE_ACCESS (pbinfo, i);
8676 tree expanded_bases = NULL_TREE;
8677 int idx, len = 1;
8678
8679 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
8680 {
8681 expanded_bases =
8682 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
8683 args, tf_error, NULL_TREE);
8684 if (expanded_bases == error_mark_node)
8685 continue;
8686
8687 len = TREE_VEC_LENGTH (expanded_bases);
8688 }
8689
8690 for (idx = 0; idx < len; idx++)
8691 {
8692 if (expanded_bases)
8693 /* Extract the already-expanded base class. */
8694 base = TREE_VEC_ELT (expanded_bases, idx);
8695 else
8696 /* Substitute to figure out the base class. */
8697 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
8698 NULL_TREE);
8699
8700 if (base == error_mark_node)
8701 continue;
8702
8703 base_list = tree_cons (access, base, base_list);
8704 if (BINFO_VIRTUAL_P (pbase_binfo))
8705 TREE_TYPE (base_list) = integer_type_node;
8706 }
8707 }
8708
8709 /* The list is now in reverse order; correct that. */
8710 base_list = nreverse (base_list);
8711
8712 if (pushed_scope)
8713 pop_scope (pushed_scope);
8714 }
8715 /* Now call xref_basetypes to set up all the base-class
8716 information. */
8717 xref_basetypes (type, base_list);
8718
8719 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
8720 (int) ATTR_FLAG_TYPE_IN_PLACE,
8721 args, tf_error, NULL_TREE);
8722 fixup_attribute_variants (type);
8723
8724 /* Now that our base classes are set up, enter the scope of the
8725 class, so that name lookups into base classes, etc. will work
8726 correctly. This is precisely analogous to what we do in
8727 begin_class_definition when defining an ordinary non-template
8728 class, except we also need to push the enclosing classes. */
8729 push_nested_class (type);
8730
8731 /* Now members are processed in the order of declaration. */
8732 for (member = CLASSTYPE_DECL_LIST (pattern);
8733 member; member = TREE_CHAIN (member))
8734 {
8735 tree t = TREE_VALUE (member);
8736
8737 if (TREE_PURPOSE (member))
8738 {
8739 if (TYPE_P (t))
8740 {
8741 /* Build new CLASSTYPE_NESTED_UTDS. */
8742
8743 tree newtag;
8744 bool class_template_p;
8745
8746 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
8747 && TYPE_LANG_SPECIFIC (t)
8748 && CLASSTYPE_IS_TEMPLATE (t));
8749 /* If the member is a class template, then -- even after
8750 substitution -- there may be dependent types in the
8751 template argument list for the class. We increment
8752 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
8753 that function will assume that no types are dependent
8754 when outside of a template. */
8755 if (class_template_p)
8756 ++processing_template_decl;
8757 newtag = tsubst (t, args, tf_error, NULL_TREE);
8758 if (class_template_p)
8759 --processing_template_decl;
8760 if (newtag == error_mark_node)
8761 continue;
8762
8763 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
8764 {
8765 tree name = TYPE_IDENTIFIER (t);
8766
8767 if (class_template_p)
8768 /* Unfortunately, lookup_template_class sets
8769 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
8770 instantiation (i.e., for the type of a member
8771 template class nested within a template class.)
8772 This behavior is required for
8773 maybe_process_partial_specialization to work
8774 correctly, but is not accurate in this case;
8775 the TAG is not an instantiation of anything.
8776 (The corresponding TEMPLATE_DECL is an
8777 instantiation, but the TYPE is not.) */
8778 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
8779
8780 /* Now, we call pushtag to put this NEWTAG into the scope of
8781 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
8782 pushtag calling push_template_decl. We don't have to do
8783 this for enums because it will already have been done in
8784 tsubst_enum. */
8785 if (name)
8786 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
8787 pushtag (name, newtag, /*tag_scope=*/ts_current);
8788 }
8789 }
8790 else if (DECL_DECLARES_FUNCTION_P (t))
8791 {
8792 /* Build new TYPE_METHODS. */
8793 tree r;
8794
8795 if (TREE_CODE (t) == TEMPLATE_DECL)
8796 ++processing_template_decl;
8797 r = tsubst (t, args, tf_error, NULL_TREE);
8798 if (TREE_CODE (t) == TEMPLATE_DECL)
8799 --processing_template_decl;
8800 set_current_access_from_decl (r);
8801 finish_member_declaration (r);
8802 /* Instantiate members marked with attribute used. */
8803 if (r != error_mark_node && DECL_PRESERVE_P (r))
8804 mark_used (r);
8805 }
8806 else
8807 {
8808 /* Build new TYPE_FIELDS. */
8809 if (TREE_CODE (t) == STATIC_ASSERT)
8810 {
8811 tree condition;
8812
8813 ++c_inhibit_evaluation_warnings;
8814 condition =
8815 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
8816 tf_warning_or_error, NULL_TREE,
8817 /*integral_constant_expression_p=*/true);
8818 --c_inhibit_evaluation_warnings;
8819
8820 finish_static_assert (condition,
8821 STATIC_ASSERT_MESSAGE (t),
8822 STATIC_ASSERT_SOURCE_LOCATION (t),
8823 /*member_p=*/true);
8824 }
8825 else if (TREE_CODE (t) != CONST_DECL)
8826 {
8827 tree r;
8828
8829 /* The file and line for this declaration, to
8830 assist in error message reporting. Since we
8831 called push_tinst_level above, we don't need to
8832 restore these. */
8833 input_location = DECL_SOURCE_LOCATION (t);
8834
8835 if (TREE_CODE (t) == TEMPLATE_DECL)
8836 ++processing_template_decl;
8837 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
8838 if (TREE_CODE (t) == TEMPLATE_DECL)
8839 --processing_template_decl;
8840 if (VAR_P (r))
8841 {
8842 /* In [temp.inst]:
8843
8844 [t]he initialization (and any associated
8845 side-effects) of a static data member does
8846 not occur unless the static data member is
8847 itself used in a way that requires the
8848 definition of the static data member to
8849 exist.
8850
8851 Therefore, we do not substitute into the
8852 initialized for the static data member here. */
8853 finish_static_data_member_decl
8854 (r,
8855 /*init=*/NULL_TREE,
8856 /*init_const_expr_p=*/false,
8857 /*asmspec_tree=*/NULL_TREE,
8858 /*flags=*/0);
8859 /* Instantiate members marked with attribute used. */
8860 if (r != error_mark_node && DECL_PRESERVE_P (r))
8861 mark_used (r);
8862 }
8863 else if (TREE_CODE (r) == FIELD_DECL)
8864 {
8865 /* Determine whether R has a valid type and can be
8866 completed later. If R is invalid, then its type is
8867 replaced by error_mark_node. */
8868 tree rtype = TREE_TYPE (r);
8869 if (can_complete_type_without_circularity (rtype))
8870 complete_type (rtype);
8871
8872 if (!COMPLETE_TYPE_P (rtype))
8873 {
8874 cxx_incomplete_type_error (r, rtype);
8875 TREE_TYPE (r) = error_mark_node;
8876 }
8877 }
8878
8879 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
8880 such a thing will already have been added to the field
8881 list by tsubst_enum in finish_member_declaration in the
8882 CLASSTYPE_NESTED_UTDS case above. */
8883 if (!(TREE_CODE (r) == TYPE_DECL
8884 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
8885 && DECL_ARTIFICIAL (r)))
8886 {
8887 set_current_access_from_decl (r);
8888 finish_member_declaration (r);
8889 }
8890 }
8891 }
8892 }
8893 else
8894 {
8895 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
8896 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8897 {
8898 /* Build new CLASSTYPE_FRIEND_CLASSES. */
8899
8900 tree friend_type = t;
8901 bool adjust_processing_template_decl = false;
8902
8903 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8904 {
8905 /* template <class T> friend class C; */
8906 friend_type = tsubst_friend_class (friend_type, args);
8907 adjust_processing_template_decl = true;
8908 }
8909 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
8910 {
8911 /* template <class T> friend class C::D; */
8912 friend_type = tsubst (friend_type, args,
8913 tf_warning_or_error, NULL_TREE);
8914 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8915 friend_type = TREE_TYPE (friend_type);
8916 adjust_processing_template_decl = true;
8917 }
8918 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
8919 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
8920 {
8921 /* This could be either
8922
8923 friend class T::C;
8924
8925 when dependent_type_p is false or
8926
8927 template <class U> friend class T::C;
8928
8929 otherwise. */
8930 friend_type = tsubst (friend_type, args,
8931 tf_warning_or_error, NULL_TREE);
8932 /* Bump processing_template_decl for correct
8933 dependent_type_p calculation. */
8934 ++processing_template_decl;
8935 if (dependent_type_p (friend_type))
8936 adjust_processing_template_decl = true;
8937 --processing_template_decl;
8938 }
8939 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
8940 && hidden_name_p (TYPE_NAME (friend_type)))
8941 {
8942 /* friend class C;
8943
8944 where C hasn't been declared yet. Let's lookup name
8945 from namespace scope directly, bypassing any name that
8946 come from dependent base class. */
8947 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
8948
8949 /* The call to xref_tag_from_type does injection for friend
8950 classes. */
8951 push_nested_namespace (ns);
8952 friend_type =
8953 xref_tag_from_type (friend_type, NULL_TREE,
8954 /*tag_scope=*/ts_current);
8955 pop_nested_namespace (ns);
8956 }
8957 else if (uses_template_parms (friend_type))
8958 /* friend class C<T>; */
8959 friend_type = tsubst (friend_type, args,
8960 tf_warning_or_error, NULL_TREE);
8961 /* Otherwise it's
8962
8963 friend class C;
8964
8965 where C is already declared or
8966
8967 friend class C<int>;
8968
8969 We don't have to do anything in these cases. */
8970
8971 if (adjust_processing_template_decl)
8972 /* Trick make_friend_class into realizing that the friend
8973 we're adding is a template, not an ordinary class. It's
8974 important that we use make_friend_class since it will
8975 perform some error-checking and output cross-reference
8976 information. */
8977 ++processing_template_decl;
8978
8979 if (friend_type != error_mark_node)
8980 make_friend_class (type, friend_type, /*complain=*/false);
8981
8982 if (adjust_processing_template_decl)
8983 --processing_template_decl;
8984 }
8985 else
8986 {
8987 /* Build new DECL_FRIENDLIST. */
8988 tree r;
8989
8990 /* The file and line for this declaration, to
8991 assist in error message reporting. Since we
8992 called push_tinst_level above, we don't need to
8993 restore these. */
8994 input_location = DECL_SOURCE_LOCATION (t);
8995
8996 if (TREE_CODE (t) == TEMPLATE_DECL)
8997 {
8998 ++processing_template_decl;
8999 push_deferring_access_checks (dk_no_check);
9000 }
9001
9002 r = tsubst_friend_function (t, args);
9003 add_friend (type, r, /*complain=*/false);
9004 if (TREE_CODE (t) == TEMPLATE_DECL)
9005 {
9006 pop_deferring_access_checks ();
9007 --processing_template_decl;
9008 }
9009 }
9010 }
9011 }
9012
9013 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9014 {
9015 tree decl = lambda_function (type);
9016 if (decl)
9017 {
9018 instantiate_decl (decl, false, false);
9019
9020 /* We need to instantiate the capture list from the template
9021 after we've instantiated the closure members, but before we
9022 consider adding the conversion op. Also keep any captures
9023 that may have been added during instantiation of the op(). */
9024 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9025 tree tmpl_cap
9026 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9027 args, tf_warning_or_error, NULL_TREE,
9028 false, false);
9029
9030 LAMBDA_EXPR_CAPTURE_LIST (expr)
9031 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9032
9033 maybe_add_lambda_conv_op (type);
9034 }
9035 else
9036 gcc_assert (errorcount);
9037 }
9038
9039 /* Set the file and line number information to whatever is given for
9040 the class itself. This puts error messages involving generated
9041 implicit functions at a predictable point, and the same point
9042 that would be used for non-template classes. */
9043 input_location = DECL_SOURCE_LOCATION (typedecl);
9044
9045 unreverse_member_declarations (type);
9046 finish_struct_1 (type);
9047 TYPE_BEING_DEFINED (type) = 0;
9048
9049 /* We don't instantiate default arguments for member functions. 14.7.1:
9050
9051 The implicit instantiation of a class template specialization causes
9052 the implicit instantiation of the declarations, but not of the
9053 definitions or default arguments, of the class member functions,
9054 member classes, static data members and member templates.... */
9055
9056 /* Some typedefs referenced from within the template code need to be access
9057 checked at template instantiation time, i.e now. These types were
9058 added to the template at parsing time. Let's get those and perform
9059 the access checks then. */
9060 perform_typedefs_access_check (pattern, args);
9061 perform_deferred_access_checks (tf_warning_or_error);
9062 pop_nested_class ();
9063 maximum_field_alignment = saved_maximum_field_alignment;
9064 if (!fn_context)
9065 pop_from_top_level ();
9066 pop_deferring_access_checks ();
9067 pop_tinst_level ();
9068
9069 /* The vtable for a template class can be emitted in any translation
9070 unit in which the class is instantiated. When there is no key
9071 method, however, finish_struct_1 will already have added TYPE to
9072 the keyed_classes list. */
9073 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9074 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9075
9076 return type;
9077 }
9078
9079 /* Wrapper for instantiate_class_template_1. */
9080
9081 tree
9082 instantiate_class_template (tree type)
9083 {
9084 tree ret;
9085 timevar_push (TV_TEMPLATE_INST);
9086 ret = instantiate_class_template_1 (type);
9087 timevar_pop (TV_TEMPLATE_INST);
9088 return ret;
9089 }
9090
9091 static tree
9092 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9093 {
9094 tree r;
9095
9096 if (!t)
9097 r = t;
9098 else if (TYPE_P (t))
9099 r = tsubst (t, args, complain, in_decl);
9100 else
9101 {
9102 if (!(complain & tf_warning))
9103 ++c_inhibit_evaluation_warnings;
9104 r = tsubst_expr (t, args, complain, in_decl,
9105 /*integral_constant_expression_p=*/true);
9106 if (!(complain & tf_warning))
9107 --c_inhibit_evaluation_warnings;
9108 /* Preserve the raw-reference nature of T. */
9109 if (TREE_TYPE (t) && TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
9110 && REFERENCE_REF_P (r))
9111 r = TREE_OPERAND (r, 0);
9112 }
9113 return r;
9114 }
9115
9116 /* Given a function parameter pack TMPL_PARM and some function parameters
9117 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9118 and set *SPEC_P to point at the next point in the list. */
9119
9120 static tree
9121 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9122 {
9123 /* Collect all of the extra "packed" parameters into an
9124 argument pack. */
9125 tree parmvec;
9126 tree parmtypevec;
9127 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9128 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9129 tree spec_parm = *spec_p;
9130 int i, len;
9131
9132 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9133 if (tmpl_parm
9134 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9135 break;
9136
9137 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9138 parmvec = make_tree_vec (len);
9139 parmtypevec = make_tree_vec (len);
9140 spec_parm = *spec_p;
9141 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9142 {
9143 TREE_VEC_ELT (parmvec, i) = spec_parm;
9144 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9145 }
9146
9147 /* Build the argument packs. */
9148 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9149 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9150 TREE_TYPE (argpack) = argtypepack;
9151 *spec_p = spec_parm;
9152
9153 return argpack;
9154 }
9155
9156 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9157 NONTYPE_ARGUMENT_PACK. */
9158
9159 static tree
9160 make_fnparm_pack (tree spec_parm)
9161 {
9162 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9163 }
9164
9165 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9166 pack expansion. */
9167
9168 static bool
9169 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9170 {
9171 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9172 if (i >= TREE_VEC_LENGTH (vec))
9173 return false;
9174 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9175 }
9176
9177
9178 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9179
9180 static tree
9181 make_argument_pack_select (tree arg_pack, unsigned index)
9182 {
9183 tree aps = make_node (ARGUMENT_PACK_SELECT);
9184
9185 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9186 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9187
9188 return aps;
9189 }
9190
9191 /* This is a subroutine of tsubst_pack_expansion.
9192
9193 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9194 mechanism to store the (non complete list of) arguments of the
9195 substitution and return a non substituted pack expansion, in order
9196 to wait for when we have enough arguments to really perform the
9197 substitution. */
9198
9199 static bool
9200 use_pack_expansion_extra_args_p (tree parm_packs,
9201 int arg_pack_len,
9202 bool has_empty_arg)
9203 {
9204 /* If one pack has an expansion and another pack has a normal
9205 argument or if one pack has an empty argument and an another
9206 one hasn't then tsubst_pack_expansion cannot perform the
9207 substitution and need to fall back on the
9208 PACK_EXPANSION_EXTRA mechanism. */
9209 if (parm_packs == NULL_TREE)
9210 return false;
9211 else if (has_empty_arg)
9212 return true;
9213
9214 bool has_expansion_arg = false;
9215 for (int i = 0 ; i < arg_pack_len; ++i)
9216 {
9217 bool has_non_expansion_arg = false;
9218 for (tree parm_pack = parm_packs;
9219 parm_pack;
9220 parm_pack = TREE_CHAIN (parm_pack))
9221 {
9222 tree arg = TREE_VALUE (parm_pack);
9223
9224 if (argument_pack_element_is_expansion_p (arg, i))
9225 has_expansion_arg = true;
9226 else
9227 has_non_expansion_arg = true;
9228 }
9229
9230 if (has_expansion_arg && has_non_expansion_arg)
9231 return true;
9232 }
9233 return false;
9234 }
9235
9236 /* [temp.variadic]/6 says that:
9237
9238 The instantiation of a pack expansion [...]
9239 produces a list E1,E2, ..., En, where N is the number of elements
9240 in the pack expansion parameters.
9241
9242 This subroutine of tsubst_pack_expansion produces one of these Ei.
9243
9244 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9245 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9246 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9247 INDEX is the index 'i' of the element Ei to produce. ARGS,
9248 COMPLAIN, and IN_DECL are the same parameters as for the
9249 tsubst_pack_expansion function.
9250
9251 The function returns the resulting Ei upon successful completion,
9252 or error_mark_node.
9253
9254 Note that this function possibly modifies the ARGS parameter, so
9255 it's the responsibility of the caller to restore it. */
9256
9257 static tree
9258 gen_elem_of_pack_expansion_instantiation (tree pattern,
9259 tree parm_packs,
9260 unsigned index,
9261 tree args /* This parm gets
9262 modified. */,
9263 tsubst_flags_t complain,
9264 tree in_decl)
9265 {
9266 tree t;
9267 bool ith_elem_is_expansion = false;
9268
9269 /* For each parameter pack, change the substitution of the parameter
9270 pack to the ith argument in its argument pack, then expand the
9271 pattern. */
9272 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9273 {
9274 tree parm = TREE_PURPOSE (pack);
9275 tree arg_pack = TREE_VALUE (pack);
9276 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9277
9278 ith_elem_is_expansion |=
9279 argument_pack_element_is_expansion_p (arg_pack, index);
9280
9281 /* Select the Ith argument from the pack. */
9282 if (TREE_CODE (parm) == PARM_DECL)
9283 {
9284 if (index == 0)
9285 {
9286 aps = make_argument_pack_select (arg_pack, index);
9287 mark_used (parm);
9288 register_local_specialization (aps, parm);
9289 }
9290 else
9291 aps = retrieve_local_specialization (parm);
9292 }
9293 else
9294 {
9295 int idx, level;
9296 template_parm_level_and_index (parm, &level, &idx);
9297
9298 if (index == 0)
9299 {
9300 aps = make_argument_pack_select (arg_pack, index);
9301 /* Update the corresponding argument. */
9302 TMPL_ARG (args, level, idx) = aps;
9303 }
9304 else
9305 /* Re-use the ARGUMENT_PACK_SELECT. */
9306 aps = TMPL_ARG (args, level, idx);
9307 }
9308 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9309 }
9310
9311 /* Substitute into the PATTERN with the (possibly altered)
9312 arguments. */
9313 if (!TYPE_P (pattern))
9314 t = tsubst_expr (pattern, args, complain, in_decl,
9315 /*integral_constant_expression_p=*/false);
9316 else
9317 t = tsubst (pattern, args, complain, in_decl);
9318
9319 /* If the Ith argument pack element is a pack expansion, then
9320 the Ith element resulting from the substituting is going to
9321 be a pack expansion as well. */
9322 if (ith_elem_is_expansion)
9323 t = make_pack_expansion (t);
9324
9325 return t;
9326 }
9327
9328 /* Substitute ARGS into T, which is an pack expansion
9329 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9330 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9331 (if only a partial substitution could be performed) or
9332 ERROR_MARK_NODE if there was an error. */
9333 tree
9334 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9335 tree in_decl)
9336 {
9337 tree pattern;
9338 tree pack, packs = NULL_TREE;
9339 bool unsubstituted_packs = false;
9340 int i, len = -1;
9341 tree result;
9342 struct pointer_map_t *saved_local_specializations = NULL;
9343 bool need_local_specializations = false;
9344 int levels;
9345
9346 gcc_assert (PACK_EXPANSION_P (t));
9347 pattern = PACK_EXPANSION_PATTERN (t);
9348
9349 /* Add in any args remembered from an earlier partial instantiation. */
9350 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9351
9352 levels = TMPL_ARGS_DEPTH (args);
9353
9354 /* Determine the argument packs that will instantiate the parameter
9355 packs used in the expansion expression. While we're at it,
9356 compute the number of arguments to be expanded and make sure it
9357 is consistent. */
9358 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9359 pack = TREE_CHAIN (pack))
9360 {
9361 tree parm_pack = TREE_VALUE (pack);
9362 tree arg_pack = NULL_TREE;
9363 tree orig_arg = NULL_TREE;
9364 int level = 0;
9365
9366 if (TREE_CODE (parm_pack) == BASES)
9367 {
9368 if (BASES_DIRECT (parm_pack))
9369 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9370 args, complain, in_decl, false));
9371 else
9372 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9373 args, complain, in_decl, false));
9374 }
9375 if (TREE_CODE (parm_pack) == PARM_DECL)
9376 {
9377 if (PACK_EXPANSION_LOCAL_P (t))
9378 arg_pack = retrieve_local_specialization (parm_pack);
9379 else
9380 {
9381 /* We can't rely on local_specializations for a parameter
9382 name used later in a function declaration (such as in a
9383 late-specified return type). Even if it exists, it might
9384 have the wrong value for a recursive call. Just make a
9385 dummy decl, since it's only used for its type. */
9386 arg_pack = tsubst_decl (parm_pack, args, complain);
9387 if (arg_pack && FUNCTION_PARAMETER_PACK_P (arg_pack))
9388 /* Partial instantiation of the parm_pack, we can't build
9389 up an argument pack yet. */
9390 arg_pack = NULL_TREE;
9391 else
9392 arg_pack = make_fnparm_pack (arg_pack);
9393 need_local_specializations = true;
9394 }
9395 }
9396 else
9397 {
9398 int idx;
9399 template_parm_level_and_index (parm_pack, &level, &idx);
9400
9401 if (level <= levels)
9402 arg_pack = TMPL_ARG (args, level, idx);
9403 }
9404
9405 orig_arg = arg_pack;
9406 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9407 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9408
9409 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9410 /* This can only happen if we forget to expand an argument
9411 pack somewhere else. Just return an error, silently. */
9412 {
9413 result = make_tree_vec (1);
9414 TREE_VEC_ELT (result, 0) = error_mark_node;
9415 return result;
9416 }
9417
9418 if (arg_pack)
9419 {
9420 int my_len =
9421 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9422
9423 /* Don't bother trying to do a partial substitution with
9424 incomplete packs; we'll try again after deduction. */
9425 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9426 return t;
9427
9428 if (len < 0)
9429 len = my_len;
9430 else if (len != my_len)
9431 {
9432 if (!(complain & tf_error))
9433 /* Fail quietly. */;
9434 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9435 error ("mismatched argument pack lengths while expanding "
9436 "%<%T%>",
9437 pattern);
9438 else
9439 error ("mismatched argument pack lengths while expanding "
9440 "%<%E%>",
9441 pattern);
9442 return error_mark_node;
9443 }
9444
9445 /* Keep track of the parameter packs and their corresponding
9446 argument packs. */
9447 packs = tree_cons (parm_pack, arg_pack, packs);
9448 TREE_TYPE (packs) = orig_arg;
9449 }
9450 else
9451 {
9452 /* We can't substitute for this parameter pack. We use a flag as
9453 well as the missing_level counter because function parameter
9454 packs don't have a level. */
9455 unsubstituted_packs = true;
9456 }
9457 }
9458
9459 /* We cannot expand this expansion expression, because we don't have
9460 all of the argument packs we need. */
9461 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
9462 {
9463 /* We got some full packs, but we can't substitute them in until we
9464 have values for all the packs. So remember these until then. */
9465
9466 t = make_pack_expansion (pattern);
9467 PACK_EXPANSION_EXTRA_ARGS (t) = args;
9468 return t;
9469 }
9470 else if (unsubstituted_packs)
9471 {
9472 /* There were no real arguments, we're just replacing a parameter
9473 pack with another version of itself. Substitute into the
9474 pattern and return a PACK_EXPANSION_*. The caller will need to
9475 deal with that. */
9476 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9477 t = tsubst_expr (pattern, args, complain, in_decl,
9478 /*integral_constant_expression_p=*/false);
9479 else
9480 t = tsubst (pattern, args, complain, in_decl);
9481 t = make_pack_expansion (t);
9482 return t;
9483 }
9484
9485 gcc_assert (len >= 0);
9486
9487 if (need_local_specializations)
9488 {
9489 /* We're in a late-specified return type, so create our own local
9490 specializations map; the current map is either NULL or (in the
9491 case of recursive unification) might have bindings that we don't
9492 want to use or alter. */
9493 saved_local_specializations = local_specializations;
9494 local_specializations = pointer_map_create ();
9495 }
9496
9497 /* For each argument in each argument pack, substitute into the
9498 pattern. */
9499 result = make_tree_vec (len);
9500 for (i = 0; i < len; ++i)
9501 {
9502 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
9503 i,
9504 args, complain,
9505 in_decl);
9506 TREE_VEC_ELT (result, i) = t;
9507 if (t == error_mark_node)
9508 {
9509 result = error_mark_node;
9510 break;
9511 }
9512 }
9513
9514 /* Update ARGS to restore the substitution from parameter packs to
9515 their argument packs. */
9516 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9517 {
9518 tree parm = TREE_PURPOSE (pack);
9519
9520 if (TREE_CODE (parm) == PARM_DECL)
9521 register_local_specialization (TREE_TYPE (pack), parm);
9522 else
9523 {
9524 int idx, level;
9525
9526 if (TREE_VALUE (pack) == NULL_TREE)
9527 continue;
9528
9529 template_parm_level_and_index (parm, &level, &idx);
9530
9531 /* Update the corresponding argument. */
9532 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
9533 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
9534 TREE_TYPE (pack);
9535 else
9536 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
9537 }
9538 }
9539
9540 if (need_local_specializations)
9541 {
9542 pointer_map_destroy (local_specializations);
9543 local_specializations = saved_local_specializations;
9544 }
9545
9546 return result;
9547 }
9548
9549 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
9550 TMPL. We do this using DECL_PARM_INDEX, which should work even with
9551 parameter packs; all parms generated from a function parameter pack will
9552 have the same DECL_PARM_INDEX. */
9553
9554 tree
9555 get_pattern_parm (tree parm, tree tmpl)
9556 {
9557 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
9558 tree patparm;
9559
9560 if (DECL_ARTIFICIAL (parm))
9561 {
9562 for (patparm = DECL_ARGUMENTS (pattern);
9563 patparm; patparm = DECL_CHAIN (patparm))
9564 if (DECL_ARTIFICIAL (patparm)
9565 && DECL_NAME (parm) == DECL_NAME (patparm))
9566 break;
9567 }
9568 else
9569 {
9570 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
9571 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
9572 gcc_assert (DECL_PARM_INDEX (patparm)
9573 == DECL_PARM_INDEX (parm));
9574 }
9575
9576 return patparm;
9577 }
9578
9579 /* Substitute ARGS into the vector or list of template arguments T. */
9580
9581 static tree
9582 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9583 {
9584 tree orig_t = t;
9585 int len, need_new = 0, i, expanded_len_adjust = 0, out;
9586 tree *elts;
9587
9588 if (t == error_mark_node)
9589 return error_mark_node;
9590
9591 len = TREE_VEC_LENGTH (t);
9592 elts = XALLOCAVEC (tree, len);
9593
9594 for (i = 0; i < len; i++)
9595 {
9596 tree orig_arg = TREE_VEC_ELT (t, i);
9597 tree new_arg;
9598
9599 if (TREE_CODE (orig_arg) == TREE_VEC)
9600 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
9601 else if (PACK_EXPANSION_P (orig_arg))
9602 {
9603 /* Substitute into an expansion expression. */
9604 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
9605
9606 if (TREE_CODE (new_arg) == TREE_VEC)
9607 /* Add to the expanded length adjustment the number of
9608 expanded arguments. We subtract one from this
9609 measurement, because the argument pack expression
9610 itself is already counted as 1 in
9611 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
9612 the argument pack is empty. */
9613 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
9614 }
9615 else if (ARGUMENT_PACK_P (orig_arg))
9616 {
9617 /* Substitute into each of the arguments. */
9618 new_arg = TYPE_P (orig_arg)
9619 ? cxx_make_type (TREE_CODE (orig_arg))
9620 : make_node (TREE_CODE (orig_arg));
9621
9622 SET_ARGUMENT_PACK_ARGS (
9623 new_arg,
9624 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
9625 args, complain, in_decl));
9626
9627 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
9628 new_arg = error_mark_node;
9629
9630 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
9631 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
9632 complain, in_decl);
9633 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
9634
9635 if (TREE_TYPE (new_arg) == error_mark_node)
9636 new_arg = error_mark_node;
9637 }
9638 }
9639 else
9640 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
9641
9642 if (new_arg == error_mark_node)
9643 return error_mark_node;
9644
9645 elts[i] = new_arg;
9646 if (new_arg != orig_arg)
9647 need_new = 1;
9648 }
9649
9650 if (!need_new)
9651 return t;
9652
9653 /* Make space for the expanded arguments coming from template
9654 argument packs. */
9655 t = make_tree_vec (len + expanded_len_adjust);
9656 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
9657 arguments for a member template.
9658 In that case each TREE_VEC in ORIG_T represents a level of template
9659 arguments, and ORIG_T won't carry any non defaulted argument count.
9660 It will rather be the nested TREE_VECs that will carry one.
9661 In other words, ORIG_T carries a non defaulted argument count only
9662 if it doesn't contain any nested TREE_VEC. */
9663 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
9664 {
9665 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
9666 count += expanded_len_adjust;
9667 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
9668 }
9669 for (i = 0, out = 0; i < len; i++)
9670 {
9671 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
9672 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
9673 && TREE_CODE (elts[i]) == TREE_VEC)
9674 {
9675 int idx;
9676
9677 /* Now expand the template argument pack "in place". */
9678 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
9679 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
9680 }
9681 else
9682 {
9683 TREE_VEC_ELT (t, out) = elts[i];
9684 out++;
9685 }
9686 }
9687
9688 return t;
9689 }
9690
9691 /* Return the result of substituting ARGS into the template parameters
9692 given by PARMS. If there are m levels of ARGS and m + n levels of
9693 PARMS, then the result will contain n levels of PARMS. For
9694 example, if PARMS is `template <class T> template <class U>
9695 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
9696 result will be `template <int*, double, class V>'. */
9697
9698 static tree
9699 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
9700 {
9701 tree r = NULL_TREE;
9702 tree* new_parms;
9703
9704 /* When substituting into a template, we must set
9705 PROCESSING_TEMPLATE_DECL as the template parameters may be
9706 dependent if they are based on one-another, and the dependency
9707 predicates are short-circuit outside of templates. */
9708 ++processing_template_decl;
9709
9710 for (new_parms = &r;
9711 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
9712 new_parms = &(TREE_CHAIN (*new_parms)),
9713 parms = TREE_CHAIN (parms))
9714 {
9715 tree new_vec =
9716 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
9717 int i;
9718
9719 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
9720 {
9721 tree tuple;
9722
9723 if (parms == error_mark_node)
9724 continue;
9725
9726 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
9727
9728 if (tuple == error_mark_node)
9729 continue;
9730
9731 TREE_VEC_ELT (new_vec, i) =
9732 tsubst_template_parm (tuple, args, complain);
9733 }
9734
9735 *new_parms =
9736 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
9737 - TMPL_ARGS_DEPTH (args)),
9738 new_vec, NULL_TREE);
9739 }
9740
9741 --processing_template_decl;
9742
9743 return r;
9744 }
9745
9746 /* Return the result of substituting ARGS into one template parameter
9747 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
9748 parameter and which TREE_PURPOSE is the default argument of the
9749 template parameter. */
9750
9751 static tree
9752 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
9753 {
9754 tree default_value, parm_decl;
9755
9756 if (args == NULL_TREE
9757 || t == NULL_TREE
9758 || t == error_mark_node)
9759 return t;
9760
9761 gcc_assert (TREE_CODE (t) == TREE_LIST);
9762
9763 default_value = TREE_PURPOSE (t);
9764 parm_decl = TREE_VALUE (t);
9765
9766 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
9767 if (TREE_CODE (parm_decl) == PARM_DECL
9768 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
9769 parm_decl = error_mark_node;
9770 default_value = tsubst_template_arg (default_value, args,
9771 complain, NULL_TREE);
9772
9773 return build_tree_list (default_value, parm_decl);
9774 }
9775
9776 /* Substitute the ARGS into the indicated aggregate (or enumeration)
9777 type T. If T is not an aggregate or enumeration type, it is
9778 handled as if by tsubst. IN_DECL is as for tsubst. If
9779 ENTERING_SCOPE is nonzero, T is the context for a template which
9780 we are presently tsubst'ing. Return the substituted value. */
9781
9782 static tree
9783 tsubst_aggr_type (tree t,
9784 tree args,
9785 tsubst_flags_t complain,
9786 tree in_decl,
9787 int entering_scope)
9788 {
9789 if (t == NULL_TREE)
9790 return NULL_TREE;
9791
9792 switch (TREE_CODE (t))
9793 {
9794 case RECORD_TYPE:
9795 if (TYPE_PTRMEMFUNC_P (t))
9796 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
9797
9798 /* Else fall through. */
9799 case ENUMERAL_TYPE:
9800 case UNION_TYPE:
9801 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
9802 {
9803 tree argvec;
9804 tree context;
9805 tree r;
9806 int saved_unevaluated_operand;
9807 int saved_inhibit_evaluation_warnings;
9808
9809 /* In "sizeof(X<I>)" we need to evaluate "I". */
9810 saved_unevaluated_operand = cp_unevaluated_operand;
9811 cp_unevaluated_operand = 0;
9812 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9813 c_inhibit_evaluation_warnings = 0;
9814
9815 /* First, determine the context for the type we are looking
9816 up. */
9817 context = TYPE_CONTEXT (t);
9818 if (context && TYPE_P (context))
9819 {
9820 context = tsubst_aggr_type (context, args, complain,
9821 in_decl, /*entering_scope=*/1);
9822 /* If context is a nested class inside a class template,
9823 it may still need to be instantiated (c++/33959). */
9824 context = complete_type (context);
9825 }
9826
9827 /* Then, figure out what arguments are appropriate for the
9828 type we are trying to find. For example, given:
9829
9830 template <class T> struct S;
9831 template <class T, class U> void f(T, U) { S<U> su; }
9832
9833 and supposing that we are instantiating f<int, double>,
9834 then our ARGS will be {int, double}, but, when looking up
9835 S we only want {double}. */
9836 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
9837 complain, in_decl);
9838 if (argvec == error_mark_node)
9839 r = error_mark_node;
9840 else
9841 {
9842 r = lookup_template_class (t, argvec, in_decl, context,
9843 entering_scope, complain);
9844 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
9845 }
9846
9847 cp_unevaluated_operand = saved_unevaluated_operand;
9848 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
9849
9850 return r;
9851 }
9852 else
9853 /* This is not a template type, so there's nothing to do. */
9854 return t;
9855
9856 default:
9857 return tsubst (t, args, complain, in_decl);
9858 }
9859 }
9860
9861 /* Substitute into the default argument ARG (a default argument for
9862 FN), which has the indicated TYPE. */
9863
9864 tree
9865 tsubst_default_argument (tree fn, tree type, tree arg)
9866 {
9867 tree saved_class_ptr = NULL_TREE;
9868 tree saved_class_ref = NULL_TREE;
9869 int errs = errorcount + sorrycount;
9870
9871 /* This can happen in invalid code. */
9872 if (TREE_CODE (arg) == DEFAULT_ARG)
9873 return arg;
9874
9875 /* This default argument came from a template. Instantiate the
9876 default argument here, not in tsubst. In the case of
9877 something like:
9878
9879 template <class T>
9880 struct S {
9881 static T t();
9882 void f(T = t());
9883 };
9884
9885 we must be careful to do name lookup in the scope of S<T>,
9886 rather than in the current class. */
9887 push_access_scope (fn);
9888 /* The "this" pointer is not valid in a default argument. */
9889 if (cfun)
9890 {
9891 saved_class_ptr = current_class_ptr;
9892 cp_function_chain->x_current_class_ptr = NULL_TREE;
9893 saved_class_ref = current_class_ref;
9894 cp_function_chain->x_current_class_ref = NULL_TREE;
9895 }
9896
9897 push_deferring_access_checks(dk_no_deferred);
9898 /* The default argument expression may cause implicitly defined
9899 member functions to be synthesized, which will result in garbage
9900 collection. We must treat this situation as if we were within
9901 the body of function so as to avoid collecting live data on the
9902 stack. */
9903 ++function_depth;
9904 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
9905 tf_warning_or_error, NULL_TREE,
9906 /*integral_constant_expression_p=*/false);
9907 --function_depth;
9908 pop_deferring_access_checks();
9909
9910 /* Restore the "this" pointer. */
9911 if (cfun)
9912 {
9913 cp_function_chain->x_current_class_ptr = saved_class_ptr;
9914 cp_function_chain->x_current_class_ref = saved_class_ref;
9915 }
9916
9917 if (errorcount+sorrycount > errs)
9918 inform (input_location,
9919 " when instantiating default argument for call to %D", fn);
9920
9921 /* Make sure the default argument is reasonable. */
9922 arg = check_default_argument (type, arg);
9923
9924 pop_access_scope (fn);
9925
9926 return arg;
9927 }
9928
9929 /* Substitute into all the default arguments for FN. */
9930
9931 static void
9932 tsubst_default_arguments (tree fn)
9933 {
9934 tree arg;
9935 tree tmpl_args;
9936
9937 tmpl_args = DECL_TI_ARGS (fn);
9938
9939 /* If this function is not yet instantiated, we certainly don't need
9940 its default arguments. */
9941 if (uses_template_parms (tmpl_args))
9942 return;
9943 /* Don't do this again for clones. */
9944 if (DECL_CLONED_FUNCTION_P (fn))
9945 return;
9946
9947 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
9948 arg;
9949 arg = TREE_CHAIN (arg))
9950 if (TREE_PURPOSE (arg))
9951 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
9952 TREE_VALUE (arg),
9953 TREE_PURPOSE (arg));
9954 }
9955
9956 /* Substitute the ARGS into the T, which is a _DECL. Return the
9957 result of the substitution. Issue error and warning messages under
9958 control of COMPLAIN. */
9959
9960 static tree
9961 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
9962 {
9963 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
9964 location_t saved_loc;
9965 tree r = NULL_TREE;
9966 tree in_decl = t;
9967 hashval_t hash = 0;
9968
9969 /* Set the filename and linenumber to improve error-reporting. */
9970 saved_loc = input_location;
9971 input_location = DECL_SOURCE_LOCATION (t);
9972
9973 switch (TREE_CODE (t))
9974 {
9975 case TEMPLATE_DECL:
9976 {
9977 /* We can get here when processing a member function template,
9978 member class template, or template template parameter. */
9979 tree decl = DECL_TEMPLATE_RESULT (t);
9980 tree spec;
9981 tree tmpl_args;
9982 tree full_args;
9983
9984 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9985 {
9986 /* Template template parameter is treated here. */
9987 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9988 if (new_type == error_mark_node)
9989 RETURN (error_mark_node);
9990 /* If we get a real template back, return it. This can happen in
9991 the context of most_specialized_class. */
9992 if (TREE_CODE (new_type) == TEMPLATE_DECL)
9993 return new_type;
9994
9995 r = copy_decl (t);
9996 DECL_CHAIN (r) = NULL_TREE;
9997 TREE_TYPE (r) = new_type;
9998 DECL_TEMPLATE_RESULT (r)
9999 = build_decl (DECL_SOURCE_LOCATION (decl),
10000 TYPE_DECL, DECL_NAME (decl), new_type);
10001 DECL_TEMPLATE_PARMS (r)
10002 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10003 complain);
10004 TYPE_NAME (new_type) = r;
10005 break;
10006 }
10007
10008 /* We might already have an instance of this template.
10009 The ARGS are for the surrounding class type, so the
10010 full args contain the tsubst'd args for the context,
10011 plus the innermost args from the template decl. */
10012 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10013 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10014 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10015 /* Because this is a template, the arguments will still be
10016 dependent, even after substitution. If
10017 PROCESSING_TEMPLATE_DECL is not set, the dependency
10018 predicates will short-circuit. */
10019 ++processing_template_decl;
10020 full_args = tsubst_template_args (tmpl_args, args,
10021 complain, in_decl);
10022 --processing_template_decl;
10023 if (full_args == error_mark_node)
10024 RETURN (error_mark_node);
10025
10026 /* If this is a default template template argument,
10027 tsubst might not have changed anything. */
10028 if (full_args == tmpl_args)
10029 RETURN (t);
10030
10031 hash = hash_tmpl_and_args (t, full_args);
10032 spec = retrieve_specialization (t, full_args, hash);
10033 if (spec != NULL_TREE)
10034 {
10035 r = spec;
10036 break;
10037 }
10038
10039 /* Make a new template decl. It will be similar to the
10040 original, but will record the current template arguments.
10041 We also create a new function declaration, which is just
10042 like the old one, but points to this new template, rather
10043 than the old one. */
10044 r = copy_decl (t);
10045 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10046 DECL_CHAIN (r) = NULL_TREE;
10047
10048 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10049
10050 if (TREE_CODE (decl) == TYPE_DECL
10051 && !TYPE_DECL_ALIAS_P (decl))
10052 {
10053 tree new_type;
10054 ++processing_template_decl;
10055 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10056 --processing_template_decl;
10057 if (new_type == error_mark_node)
10058 RETURN (error_mark_node);
10059
10060 TREE_TYPE (r) = new_type;
10061 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10062 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10063 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10064 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10065 }
10066 else
10067 {
10068 tree new_decl;
10069 ++processing_template_decl;
10070 new_decl = tsubst (decl, args, complain, in_decl);
10071 --processing_template_decl;
10072 if (new_decl == error_mark_node)
10073 RETURN (error_mark_node);
10074
10075 DECL_TEMPLATE_RESULT (r) = new_decl;
10076 DECL_TI_TEMPLATE (new_decl) = r;
10077 TREE_TYPE (r) = TREE_TYPE (new_decl);
10078 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10079 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10080 }
10081
10082 SET_DECL_IMPLICIT_INSTANTIATION (r);
10083 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10084 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10085
10086 /* The template parameters for this new template are all the
10087 template parameters for the old template, except the
10088 outermost level of parameters. */
10089 DECL_TEMPLATE_PARMS (r)
10090 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10091 complain);
10092
10093 if (PRIMARY_TEMPLATE_P (t))
10094 DECL_PRIMARY_TEMPLATE (r) = r;
10095
10096 if (TREE_CODE (decl) != TYPE_DECL)
10097 /* Record this non-type partial instantiation. */
10098 register_specialization (r, t,
10099 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10100 false, hash);
10101 }
10102 break;
10103
10104 case FUNCTION_DECL:
10105 {
10106 tree ctx;
10107 tree argvec = NULL_TREE;
10108 tree *friends;
10109 tree gen_tmpl;
10110 tree type;
10111 int member;
10112 int args_depth;
10113 int parms_depth;
10114
10115 /* Nobody should be tsubst'ing into non-template functions. */
10116 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10117
10118 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10119 {
10120 tree spec;
10121 bool dependent_p;
10122
10123 /* If T is not dependent, just return it. We have to
10124 increment PROCESSING_TEMPLATE_DECL because
10125 value_dependent_expression_p assumes that nothing is
10126 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10127 ++processing_template_decl;
10128 dependent_p = value_dependent_expression_p (t);
10129 --processing_template_decl;
10130 if (!dependent_p)
10131 RETURN (t);
10132
10133 /* Calculate the most general template of which R is a
10134 specialization, and the complete set of arguments used to
10135 specialize R. */
10136 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10137 argvec = tsubst_template_args (DECL_TI_ARGS
10138 (DECL_TEMPLATE_RESULT
10139 (DECL_TI_TEMPLATE (t))),
10140 args, complain, in_decl);
10141 if (argvec == error_mark_node)
10142 RETURN (error_mark_node);
10143
10144 /* Check to see if we already have this specialization. */
10145 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10146 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10147
10148 if (spec)
10149 {
10150 r = spec;
10151 break;
10152 }
10153
10154 /* We can see more levels of arguments than parameters if
10155 there was a specialization of a member template, like
10156 this:
10157
10158 template <class T> struct S { template <class U> void f(); }
10159 template <> template <class U> void S<int>::f(U);
10160
10161 Here, we'll be substituting into the specialization,
10162 because that's where we can find the code we actually
10163 want to generate, but we'll have enough arguments for
10164 the most general template.
10165
10166 We also deal with the peculiar case:
10167
10168 template <class T> struct S {
10169 template <class U> friend void f();
10170 };
10171 template <class U> void f() {}
10172 template S<int>;
10173 template void f<double>();
10174
10175 Here, the ARGS for the instantiation of will be {int,
10176 double}. But, we only need as many ARGS as there are
10177 levels of template parameters in CODE_PATTERN. We are
10178 careful not to get fooled into reducing the ARGS in
10179 situations like:
10180
10181 template <class T> struct S { template <class U> void f(U); }
10182 template <class T> template <> void S<T>::f(int) {}
10183
10184 which we can spot because the pattern will be a
10185 specialization in this case. */
10186 args_depth = TMPL_ARGS_DEPTH (args);
10187 parms_depth =
10188 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10189 if (args_depth > parms_depth
10190 && !DECL_TEMPLATE_SPECIALIZATION (t))
10191 args = get_innermost_template_args (args, parms_depth);
10192 }
10193 else
10194 {
10195 /* This special case arises when we have something like this:
10196
10197 template <class T> struct S {
10198 friend void f<int>(int, double);
10199 };
10200
10201 Here, the DECL_TI_TEMPLATE for the friend declaration
10202 will be an IDENTIFIER_NODE. We are being called from
10203 tsubst_friend_function, and we want only to create a
10204 new decl (R) with appropriate types so that we can call
10205 determine_specialization. */
10206 gen_tmpl = NULL_TREE;
10207 }
10208
10209 if (DECL_CLASS_SCOPE_P (t))
10210 {
10211 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10212 member = 2;
10213 else
10214 member = 1;
10215 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10216 complain, t, /*entering_scope=*/1);
10217 }
10218 else
10219 {
10220 member = 0;
10221 ctx = DECL_CONTEXT (t);
10222 }
10223 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10224 if (type == error_mark_node)
10225 RETURN (error_mark_node);
10226
10227 /* If we hit excessive deduction depth, the type is bogus even if
10228 it isn't error_mark_node, so don't build a decl. */
10229 if (excessive_deduction_depth)
10230 RETURN (error_mark_node);
10231
10232 /* We do NOT check for matching decls pushed separately at this
10233 point, as they may not represent instantiations of this
10234 template, and in any case are considered separate under the
10235 discrete model. */
10236 r = copy_decl (t);
10237 DECL_USE_TEMPLATE (r) = 0;
10238 TREE_TYPE (r) = type;
10239 /* Clear out the mangled name and RTL for the instantiation. */
10240 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10241 SET_DECL_RTL (r, NULL);
10242 /* Leave DECL_INITIAL set on deleted instantiations. */
10243 if (!DECL_DELETED_FN (r))
10244 DECL_INITIAL (r) = NULL_TREE;
10245 DECL_CONTEXT (r) = ctx;
10246
10247 if (member && DECL_CONV_FN_P (r))
10248 /* Type-conversion operator. Reconstruct the name, in
10249 case it's the name of one of the template's parameters. */
10250 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10251
10252 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10253 complain, t);
10254 DECL_RESULT (r) = NULL_TREE;
10255
10256 TREE_STATIC (r) = 0;
10257 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10258 DECL_EXTERNAL (r) = 1;
10259 /* If this is an instantiation of a function with internal
10260 linkage, we already know what object file linkage will be
10261 assigned to the instantiation. */
10262 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10263 DECL_DEFER_OUTPUT (r) = 0;
10264 DECL_CHAIN (r) = NULL_TREE;
10265 DECL_PENDING_INLINE_INFO (r) = 0;
10266 DECL_PENDING_INLINE_P (r) = 0;
10267 DECL_SAVED_TREE (r) = NULL_TREE;
10268 DECL_STRUCT_FUNCTION (r) = NULL;
10269 TREE_USED (r) = 0;
10270 /* We'll re-clone as appropriate in instantiate_template. */
10271 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10272
10273 /* If we aren't complaining now, return on error before we register
10274 the specialization so that we'll complain eventually. */
10275 if ((complain & tf_error) == 0
10276 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10277 && !grok_op_properties (r, /*complain=*/false))
10278 RETURN (error_mark_node);
10279
10280 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10281 this in the special friend case mentioned above where
10282 GEN_TMPL is NULL. */
10283 if (gen_tmpl)
10284 {
10285 DECL_TEMPLATE_INFO (r)
10286 = build_template_info (gen_tmpl, argvec);
10287 SET_DECL_IMPLICIT_INSTANTIATION (r);
10288
10289 tree new_r
10290 = register_specialization (r, gen_tmpl, argvec, false, hash);
10291 if (new_r != r)
10292 /* We instantiated this while substituting into
10293 the type earlier (template/friend54.C). */
10294 RETURN (new_r);
10295
10296 /* We're not supposed to instantiate default arguments
10297 until they are called, for a template. But, for a
10298 declaration like:
10299
10300 template <class T> void f ()
10301 { extern void g(int i = T()); }
10302
10303 we should do the substitution when the template is
10304 instantiated. We handle the member function case in
10305 instantiate_class_template since the default arguments
10306 might refer to other members of the class. */
10307 if (!member
10308 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10309 && !uses_template_parms (argvec))
10310 tsubst_default_arguments (r);
10311 }
10312 else
10313 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10314
10315 /* Copy the list of befriending classes. */
10316 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10317 *friends;
10318 friends = &TREE_CHAIN (*friends))
10319 {
10320 *friends = copy_node (*friends);
10321 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10322 args, complain,
10323 in_decl);
10324 }
10325
10326 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10327 {
10328 maybe_retrofit_in_chrg (r);
10329 if (DECL_CONSTRUCTOR_P (r))
10330 grok_ctor_properties (ctx, r);
10331 if (DECL_INHERITED_CTOR_BASE (r))
10332 deduce_inheriting_ctor (r);
10333 /* If this is an instantiation of a member template, clone it.
10334 If it isn't, that'll be handled by
10335 clone_constructors_and_destructors. */
10336 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10337 clone_function_decl (r, /*update_method_vec_p=*/0);
10338 }
10339 else if ((complain & tf_error) != 0
10340 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10341 && !grok_op_properties (r, /*complain=*/true))
10342 RETURN (error_mark_node);
10343
10344 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10345 SET_DECL_FRIEND_CONTEXT (r,
10346 tsubst (DECL_FRIEND_CONTEXT (t),
10347 args, complain, in_decl));
10348
10349 /* Possibly limit visibility based on template args. */
10350 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10351 if (DECL_VISIBILITY_SPECIFIED (t))
10352 {
10353 DECL_VISIBILITY_SPECIFIED (r) = 0;
10354 DECL_ATTRIBUTES (r)
10355 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10356 }
10357 determine_visibility (r);
10358 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10359 && !processing_template_decl)
10360 defaulted_late_check (r);
10361
10362 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10363 args, complain, in_decl);
10364 }
10365 break;
10366
10367 case PARM_DECL:
10368 {
10369 tree type = NULL_TREE;
10370 int i, len = 1;
10371 tree expanded_types = NULL_TREE;
10372 tree prev_r = NULL_TREE;
10373 tree first_r = NULL_TREE;
10374
10375 if (FUNCTION_PARAMETER_PACK_P (t))
10376 {
10377 /* If there is a local specialization that isn't a
10378 parameter pack, it means that we're doing a "simple"
10379 substitution from inside tsubst_pack_expansion. Just
10380 return the local specialization (which will be a single
10381 parm). */
10382 tree spec = retrieve_local_specialization (t);
10383 if (spec
10384 && TREE_CODE (spec) == PARM_DECL
10385 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10386 RETURN (spec);
10387
10388 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10389 the parameters in this function parameter pack. */
10390 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10391 complain, in_decl);
10392 if (TREE_CODE (expanded_types) == TREE_VEC)
10393 {
10394 len = TREE_VEC_LENGTH (expanded_types);
10395
10396 /* Zero-length parameter packs are boring. Just substitute
10397 into the chain. */
10398 if (len == 0)
10399 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10400 TREE_CHAIN (t)));
10401 }
10402 else
10403 {
10404 /* All we did was update the type. Make a note of that. */
10405 type = expanded_types;
10406 expanded_types = NULL_TREE;
10407 }
10408 }
10409
10410 /* Loop through all of the parameter's we'll build. When T is
10411 a function parameter pack, LEN is the number of expanded
10412 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10413 r = NULL_TREE;
10414 for (i = 0; i < len; ++i)
10415 {
10416 prev_r = r;
10417 r = copy_node (t);
10418 if (DECL_TEMPLATE_PARM_P (t))
10419 SET_DECL_TEMPLATE_PARM_P (r);
10420
10421 if (expanded_types)
10422 /* We're on the Ith parameter of the function parameter
10423 pack. */
10424 {
10425 /* An argument of a function parameter pack is not a parameter
10426 pack. */
10427 FUNCTION_PARAMETER_PACK_P (r) = false;
10428
10429 /* Get the Ith type. */
10430 type = TREE_VEC_ELT (expanded_types, i);
10431
10432 /* Rename the parameter to include the index. */
10433 DECL_NAME (r)
10434 = make_ith_pack_parameter_name (DECL_NAME (r), i);
10435 }
10436 else if (!type)
10437 /* We're dealing with a normal parameter. */
10438 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10439
10440 type = type_decays_to (type);
10441 TREE_TYPE (r) = type;
10442 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10443
10444 if (DECL_INITIAL (r))
10445 {
10446 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10447 DECL_INITIAL (r) = TREE_TYPE (r);
10448 else
10449 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10450 complain, in_decl);
10451 }
10452
10453 DECL_CONTEXT (r) = NULL_TREE;
10454
10455 if (!DECL_TEMPLATE_PARM_P (r))
10456 DECL_ARG_TYPE (r) = type_passed_as (type);
10457
10458 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10459 args, complain, in_decl);
10460
10461 /* Keep track of the first new parameter we
10462 generate. That's what will be returned to the
10463 caller. */
10464 if (!first_r)
10465 first_r = r;
10466
10467 /* Build a proper chain of parameters when substituting
10468 into a function parameter pack. */
10469 if (prev_r)
10470 DECL_CHAIN (prev_r) = r;
10471 }
10472
10473 /* If cp_unevaluated_operand is set, we're just looking for a
10474 single dummy parameter, so don't keep going. */
10475 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
10476 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
10477 complain, DECL_CHAIN (t));
10478
10479 /* FIRST_R contains the start of the chain we've built. */
10480 r = first_r;
10481 }
10482 break;
10483
10484 case FIELD_DECL:
10485 {
10486 tree type;
10487
10488 r = copy_decl (t);
10489 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10490 if (type == error_mark_node)
10491 RETURN (error_mark_node);
10492 TREE_TYPE (r) = type;
10493 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10494
10495 if (DECL_C_BIT_FIELD (r))
10496 /* For bit-fields, DECL_INITIAL gives the number of bits. For
10497 non-bit-fields DECL_INITIAL is a non-static data member
10498 initializer, which gets deferred instantiation. */
10499 DECL_INITIAL (r)
10500 = tsubst_expr (DECL_INITIAL (t), args,
10501 complain, in_decl,
10502 /*integral_constant_expression_p=*/true);
10503 else if (DECL_INITIAL (t))
10504 {
10505 /* Set up DECL_TEMPLATE_INFO so that we can get at the
10506 NSDMI in perform_member_init. Still set DECL_INITIAL
10507 so that we know there is one. */
10508 DECL_INITIAL (r) = void_zero_node;
10509 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
10510 retrofit_lang_decl (r);
10511 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10512 }
10513 /* We don't have to set DECL_CONTEXT here; it is set by
10514 finish_member_declaration. */
10515 DECL_CHAIN (r) = NULL_TREE;
10516
10517 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10518 args, complain, in_decl);
10519 }
10520 break;
10521
10522 case USING_DECL:
10523 /* We reach here only for member using decls. We also need to check
10524 uses_template_parms because DECL_DEPENDENT_P is not set for a
10525 using-declaration that designates a member of the current
10526 instantiation (c++/53549). */
10527 if (DECL_DEPENDENT_P (t)
10528 || uses_template_parms (USING_DECL_SCOPE (t)))
10529 {
10530 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
10531 complain, in_decl);
10532 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
10533 r = do_class_using_decl (inst_scope, name);
10534 if (!r)
10535 r = error_mark_node;
10536 else
10537 {
10538 TREE_PROTECTED (r) = TREE_PROTECTED (t);
10539 TREE_PRIVATE (r) = TREE_PRIVATE (t);
10540 }
10541 }
10542 else
10543 {
10544 r = copy_node (t);
10545 DECL_CHAIN (r) = NULL_TREE;
10546 }
10547 break;
10548
10549 case TYPE_DECL:
10550 case VAR_DECL:
10551 {
10552 tree argvec = NULL_TREE;
10553 tree gen_tmpl = NULL_TREE;
10554 tree spec;
10555 tree tmpl = NULL_TREE;
10556 tree ctx;
10557 tree type = NULL_TREE;
10558 bool local_p;
10559
10560 if (TREE_CODE (t) == TYPE_DECL
10561 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
10562 {
10563 /* If this is the canonical decl, we don't have to
10564 mess with instantiations, and often we can't (for
10565 typename, template type parms and such). Note that
10566 TYPE_NAME is not correct for the above test if
10567 we've copied the type for a typedef. */
10568 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10569 if (type == error_mark_node)
10570 RETURN (error_mark_node);
10571 r = TYPE_NAME (type);
10572 break;
10573 }
10574
10575 /* Check to see if we already have the specialization we
10576 need. */
10577 spec = NULL_TREE;
10578 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
10579 {
10580 /* T is a static data member or namespace-scope entity.
10581 We have to substitute into namespace-scope variables
10582 (even though such entities are never templates) because
10583 of cases like:
10584
10585 template <class T> void f() { extern T t; }
10586
10587 where the entity referenced is not known until
10588 instantiation time. */
10589 local_p = false;
10590 ctx = DECL_CONTEXT (t);
10591 if (DECL_CLASS_SCOPE_P (t))
10592 {
10593 ctx = tsubst_aggr_type (ctx, args,
10594 complain,
10595 in_decl, /*entering_scope=*/1);
10596 /* If CTX is unchanged, then T is in fact the
10597 specialization we want. That situation occurs when
10598 referencing a static data member within in its own
10599 class. We can use pointer equality, rather than
10600 same_type_p, because DECL_CONTEXT is always
10601 canonical... */
10602 if (ctx == DECL_CONTEXT (t)
10603 && (TREE_CODE (t) != TYPE_DECL
10604 /* ... unless T is a member template; in which
10605 case our caller can be willing to create a
10606 specialization of that template represented
10607 by T. */
10608 || !(DECL_TI_TEMPLATE (t)
10609 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t)))))
10610 spec = t;
10611 }
10612
10613 if (!spec)
10614 {
10615 tmpl = DECL_TI_TEMPLATE (t);
10616 gen_tmpl = most_general_template (tmpl);
10617 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
10618 if (argvec == error_mark_node)
10619 RETURN (error_mark_node);
10620 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10621 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10622 }
10623 }
10624 else
10625 {
10626 /* A local variable. */
10627 local_p = true;
10628 /* Subsequent calls to pushdecl will fill this in. */
10629 ctx = NULL_TREE;
10630 spec = retrieve_local_specialization (t);
10631 }
10632 /* If we already have the specialization we need, there is
10633 nothing more to do. */
10634 if (spec)
10635 {
10636 r = spec;
10637 break;
10638 }
10639
10640 /* Create a new node for the specialization we need. */
10641 r = copy_decl (t);
10642 if (type == NULL_TREE)
10643 {
10644 if (is_typedef_decl (t))
10645 type = DECL_ORIGINAL_TYPE (t);
10646 else
10647 type = TREE_TYPE (t);
10648 if (VAR_P (t)
10649 && VAR_HAD_UNKNOWN_BOUND (t)
10650 && type != error_mark_node)
10651 type = strip_array_domain (type);
10652 type = tsubst (type, args, complain, in_decl);
10653 }
10654 if (VAR_P (r))
10655 {
10656 /* Even if the original location is out of scope, the
10657 newly substituted one is not. */
10658 DECL_DEAD_FOR_LOCAL (r) = 0;
10659 DECL_INITIALIZED_P (r) = 0;
10660 DECL_TEMPLATE_INSTANTIATED (r) = 0;
10661 if (type == error_mark_node)
10662 RETURN (error_mark_node);
10663 if (TREE_CODE (type) == FUNCTION_TYPE)
10664 {
10665 /* It may seem that this case cannot occur, since:
10666
10667 typedef void f();
10668 void g() { f x; }
10669
10670 declares a function, not a variable. However:
10671
10672 typedef void f();
10673 template <typename T> void g() { T t; }
10674 template void g<f>();
10675
10676 is an attempt to declare a variable with function
10677 type. */
10678 error ("variable %qD has function type",
10679 /* R is not yet sufficiently initialized, so we
10680 just use its name. */
10681 DECL_NAME (r));
10682 RETURN (error_mark_node);
10683 }
10684 type = complete_type (type);
10685 /* Wait until cp_finish_decl to set this again, to handle
10686 circular dependency (template/instantiate6.C). */
10687 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
10688 type = check_var_type (DECL_NAME (r), type);
10689
10690 if (DECL_HAS_VALUE_EXPR_P (t))
10691 {
10692 tree ve = DECL_VALUE_EXPR (t);
10693 ve = tsubst_expr (ve, args, complain, in_decl,
10694 /*constant_expression_p=*/false);
10695 if (REFERENCE_REF_P (ve))
10696 {
10697 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
10698 ve = TREE_OPERAND (ve, 0);
10699 }
10700 SET_DECL_VALUE_EXPR (r, ve);
10701 }
10702 }
10703 else if (DECL_SELF_REFERENCE_P (t))
10704 SET_DECL_SELF_REFERENCE_P (r);
10705 TREE_TYPE (r) = type;
10706 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10707 DECL_CONTEXT (r) = ctx;
10708 /* Clear out the mangled name and RTL for the instantiation. */
10709 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10710 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10711 SET_DECL_RTL (r, NULL);
10712 /* The initializer must not be expanded until it is required;
10713 see [temp.inst]. */
10714 DECL_INITIAL (r) = NULL_TREE;
10715 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10716 SET_DECL_RTL (r, NULL);
10717 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
10718 if (VAR_P (r))
10719 {
10720 /* Possibly limit visibility based on template args. */
10721 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10722 if (DECL_VISIBILITY_SPECIFIED (t))
10723 {
10724 DECL_VISIBILITY_SPECIFIED (r) = 0;
10725 DECL_ATTRIBUTES (r)
10726 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10727 }
10728 determine_visibility (r);
10729 }
10730
10731 if (!local_p)
10732 {
10733 /* A static data member declaration is always marked
10734 external when it is declared in-class, even if an
10735 initializer is present. We mimic the non-template
10736 processing here. */
10737 DECL_EXTERNAL (r) = 1;
10738
10739 register_specialization (r, gen_tmpl, argvec, false, hash);
10740 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
10741 SET_DECL_IMPLICIT_INSTANTIATION (r);
10742 }
10743 else if (cp_unevaluated_operand)
10744 gcc_unreachable ();
10745 else
10746 register_local_specialization (r, t);
10747
10748 DECL_CHAIN (r) = NULL_TREE;
10749
10750 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
10751 /*flags=*/0,
10752 args, complain, in_decl);
10753
10754 /* Preserve a typedef that names a type. */
10755 if (is_typedef_decl (r))
10756 {
10757 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
10758 set_underlying_type (r);
10759 }
10760
10761 layout_decl (r, 0);
10762 }
10763 break;
10764
10765 default:
10766 gcc_unreachable ();
10767 }
10768 #undef RETURN
10769
10770 out:
10771 /* Restore the file and line information. */
10772 input_location = saved_loc;
10773
10774 return r;
10775 }
10776
10777 /* Substitute into the ARG_TYPES of a function type.
10778 If END is a TREE_CHAIN, leave it and any following types
10779 un-substituted. */
10780
10781 static tree
10782 tsubst_arg_types (tree arg_types,
10783 tree args,
10784 tree end,
10785 tsubst_flags_t complain,
10786 tree in_decl)
10787 {
10788 tree remaining_arg_types;
10789 tree type = NULL_TREE;
10790 int i = 1;
10791 tree expanded_args = NULL_TREE;
10792 tree default_arg;
10793
10794 if (!arg_types || arg_types == void_list_node || arg_types == end)
10795 return arg_types;
10796
10797 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
10798 args, end, complain, in_decl);
10799 if (remaining_arg_types == error_mark_node)
10800 return error_mark_node;
10801
10802 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
10803 {
10804 /* For a pack expansion, perform substitution on the
10805 entire expression. Later on, we'll handle the arguments
10806 one-by-one. */
10807 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
10808 args, complain, in_decl);
10809
10810 if (TREE_CODE (expanded_args) == TREE_VEC)
10811 /* So that we'll spin through the parameters, one by one. */
10812 i = TREE_VEC_LENGTH (expanded_args);
10813 else
10814 {
10815 /* We only partially substituted into the parameter
10816 pack. Our type is TYPE_PACK_EXPANSION. */
10817 type = expanded_args;
10818 expanded_args = NULL_TREE;
10819 }
10820 }
10821
10822 while (i > 0) {
10823 --i;
10824
10825 if (expanded_args)
10826 type = TREE_VEC_ELT (expanded_args, i);
10827 else if (!type)
10828 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
10829
10830 if (type == error_mark_node)
10831 return error_mark_node;
10832 if (VOID_TYPE_P (type))
10833 {
10834 if (complain & tf_error)
10835 {
10836 error ("invalid parameter type %qT", type);
10837 if (in_decl)
10838 error ("in declaration %q+D", in_decl);
10839 }
10840 return error_mark_node;
10841 }
10842 /* DR 657. */
10843 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
10844 return error_mark_node;
10845
10846 /* Do array-to-pointer, function-to-pointer conversion, and ignore
10847 top-level qualifiers as required. */
10848 type = cv_unqualified (type_decays_to (type));
10849
10850 /* We do not substitute into default arguments here. The standard
10851 mandates that they be instantiated only when needed, which is
10852 done in build_over_call. */
10853 default_arg = TREE_PURPOSE (arg_types);
10854
10855 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
10856 {
10857 /* We've instantiated a template before its default arguments
10858 have been parsed. This can happen for a nested template
10859 class, and is not an error unless we require the default
10860 argument in a call of this function. */
10861 remaining_arg_types =
10862 tree_cons (default_arg, type, remaining_arg_types);
10863 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
10864 }
10865 else
10866 remaining_arg_types =
10867 hash_tree_cons (default_arg, type, remaining_arg_types);
10868 }
10869
10870 return remaining_arg_types;
10871 }
10872
10873 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
10874 *not* handle the exception-specification for FNTYPE, because the
10875 initial substitution of explicitly provided template parameters
10876 during argument deduction forbids substitution into the
10877 exception-specification:
10878
10879 [temp.deduct]
10880
10881 All references in the function type of the function template to the
10882 corresponding template parameters are replaced by the specified tem-
10883 plate argument values. If a substitution in a template parameter or
10884 in the function type of the function template results in an invalid
10885 type, type deduction fails. [Note: The equivalent substitution in
10886 exception specifications is done only when the function is instanti-
10887 ated, at which point a program is ill-formed if the substitution
10888 results in an invalid type.] */
10889
10890 static tree
10891 tsubst_function_type (tree t,
10892 tree args,
10893 tsubst_flags_t complain,
10894 tree in_decl)
10895 {
10896 tree return_type;
10897 tree arg_types;
10898 tree fntype;
10899
10900 /* The TYPE_CONTEXT is not used for function/method types. */
10901 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
10902
10903 /* Substitute the return type. */
10904 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10905 if (return_type == error_mark_node)
10906 return error_mark_node;
10907 /* DR 486 clarifies that creation of a function type with an
10908 invalid return type is a deduction failure. */
10909 if (TREE_CODE (return_type) == ARRAY_TYPE
10910 || TREE_CODE (return_type) == FUNCTION_TYPE)
10911 {
10912 if (complain & tf_error)
10913 {
10914 if (TREE_CODE (return_type) == ARRAY_TYPE)
10915 error ("function returning an array");
10916 else
10917 error ("function returning a function");
10918 }
10919 return error_mark_node;
10920 }
10921 /* And DR 657. */
10922 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
10923 return error_mark_node;
10924
10925 /* Substitute the argument types. */
10926 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
10927 complain, in_decl);
10928 if (arg_types == error_mark_node)
10929 return error_mark_node;
10930
10931 /* Construct a new type node and return it. */
10932 if (TREE_CODE (t) == FUNCTION_TYPE)
10933 {
10934 fntype = build_function_type (return_type, arg_types);
10935 fntype = apply_memfn_quals (fntype,
10936 type_memfn_quals (t),
10937 type_memfn_rqual (t));
10938 }
10939 else
10940 {
10941 tree r = TREE_TYPE (TREE_VALUE (arg_types));
10942 if (! MAYBE_CLASS_TYPE_P (r))
10943 {
10944 /* [temp.deduct]
10945
10946 Type deduction may fail for any of the following
10947 reasons:
10948
10949 -- Attempting to create "pointer to member of T" when T
10950 is not a class type. */
10951 if (complain & tf_error)
10952 error ("creating pointer to member function of non-class type %qT",
10953 r);
10954 return error_mark_node;
10955 }
10956
10957 fntype = build_method_type_directly (r, return_type,
10958 TREE_CHAIN (arg_types));
10959 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
10960 }
10961 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
10962
10963 return fntype;
10964 }
10965
10966 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
10967 ARGS into that specification, and return the substituted
10968 specification. If there is no specification, return NULL_TREE. */
10969
10970 static tree
10971 tsubst_exception_specification (tree fntype,
10972 tree args,
10973 tsubst_flags_t complain,
10974 tree in_decl,
10975 bool defer_ok)
10976 {
10977 tree specs;
10978 tree new_specs;
10979
10980 specs = TYPE_RAISES_EXCEPTIONS (fntype);
10981 new_specs = NULL_TREE;
10982 if (specs && TREE_PURPOSE (specs))
10983 {
10984 /* A noexcept-specifier. */
10985 tree expr = TREE_PURPOSE (specs);
10986 if (TREE_CODE (expr) == INTEGER_CST)
10987 new_specs = expr;
10988 else if (defer_ok)
10989 {
10990 /* Defer instantiation of noexcept-specifiers to avoid
10991 excessive instantiations (c++/49107). */
10992 new_specs = make_node (DEFERRED_NOEXCEPT);
10993 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
10994 {
10995 /* We already partially instantiated this member template,
10996 so combine the new args with the old. */
10997 DEFERRED_NOEXCEPT_PATTERN (new_specs)
10998 = DEFERRED_NOEXCEPT_PATTERN (expr);
10999 DEFERRED_NOEXCEPT_ARGS (new_specs)
11000 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11001 }
11002 else
11003 {
11004 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11005 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11006 }
11007 }
11008 else
11009 new_specs = tsubst_copy_and_build
11010 (expr, args, complain, in_decl, /*function_p=*/false,
11011 /*integral_constant_expression_p=*/true);
11012 new_specs = build_noexcept_spec (new_specs, complain);
11013 }
11014 else if (specs)
11015 {
11016 if (! TREE_VALUE (specs))
11017 new_specs = specs;
11018 else
11019 while (specs)
11020 {
11021 tree spec;
11022 int i, len = 1;
11023 tree expanded_specs = NULL_TREE;
11024
11025 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11026 {
11027 /* Expand the pack expansion type. */
11028 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11029 args, complain,
11030 in_decl);
11031
11032 if (expanded_specs == error_mark_node)
11033 return error_mark_node;
11034 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11035 len = TREE_VEC_LENGTH (expanded_specs);
11036 else
11037 {
11038 /* We're substituting into a member template, so
11039 we got a TYPE_PACK_EXPANSION back. Add that
11040 expansion and move on. */
11041 gcc_assert (TREE_CODE (expanded_specs)
11042 == TYPE_PACK_EXPANSION);
11043 new_specs = add_exception_specifier (new_specs,
11044 expanded_specs,
11045 complain);
11046 specs = TREE_CHAIN (specs);
11047 continue;
11048 }
11049 }
11050
11051 for (i = 0; i < len; ++i)
11052 {
11053 if (expanded_specs)
11054 spec = TREE_VEC_ELT (expanded_specs, i);
11055 else
11056 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11057 if (spec == error_mark_node)
11058 return spec;
11059 new_specs = add_exception_specifier (new_specs, spec,
11060 complain);
11061 }
11062
11063 specs = TREE_CHAIN (specs);
11064 }
11065 }
11066 return new_specs;
11067 }
11068
11069 /* Take the tree structure T and replace template parameters used
11070 therein with the argument vector ARGS. IN_DECL is an associated
11071 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11072 Issue error and warning messages under control of COMPLAIN. Note
11073 that we must be relatively non-tolerant of extensions here, in
11074 order to preserve conformance; if we allow substitutions that
11075 should not be allowed, we may allow argument deductions that should
11076 not succeed, and therefore report ambiguous overload situations
11077 where there are none. In theory, we could allow the substitution,
11078 but indicate that it should have failed, and allow our caller to
11079 make sure that the right thing happens, but we don't try to do this
11080 yet.
11081
11082 This function is used for dealing with types, decls and the like;
11083 for expressions, use tsubst_expr or tsubst_copy. */
11084
11085 tree
11086 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11087 {
11088 enum tree_code code;
11089 tree type, r = NULL_TREE;
11090
11091 if (t == NULL_TREE || t == error_mark_node
11092 || t == integer_type_node
11093 || t == void_type_node
11094 || t == char_type_node
11095 || t == unknown_type_node
11096 || TREE_CODE (t) == NAMESPACE_DECL
11097 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11098 return t;
11099
11100 if (DECL_P (t))
11101 return tsubst_decl (t, args, complain);
11102
11103 if (args == NULL_TREE)
11104 return t;
11105
11106 code = TREE_CODE (t);
11107
11108 if (code == IDENTIFIER_NODE)
11109 type = IDENTIFIER_TYPE_VALUE (t);
11110 else
11111 type = TREE_TYPE (t);
11112
11113 gcc_assert (type != unknown_type_node);
11114
11115 /* Reuse typedefs. We need to do this to handle dependent attributes,
11116 such as attribute aligned. */
11117 if (TYPE_P (t)
11118 && typedef_variant_p (t))
11119 {
11120 tree decl = TYPE_NAME (t);
11121
11122 if (alias_template_specialization_p (t))
11123 {
11124 /* DECL represents an alias template and we want to
11125 instantiate it. */
11126 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11127 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11128 r = instantiate_alias_template (tmpl, gen_args, complain);
11129 }
11130 else if (DECL_CLASS_SCOPE_P (decl)
11131 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11132 && uses_template_parms (DECL_CONTEXT (decl)))
11133 {
11134 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11135 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11136 r = retrieve_specialization (tmpl, gen_args, 0);
11137 }
11138 else if (DECL_FUNCTION_SCOPE_P (decl)
11139 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11140 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11141 r = retrieve_local_specialization (decl);
11142 else
11143 /* The typedef is from a non-template context. */
11144 return t;
11145
11146 if (r)
11147 {
11148 r = TREE_TYPE (r);
11149 r = cp_build_qualified_type_real
11150 (r, cp_type_quals (t) | cp_type_quals (r),
11151 complain | tf_ignore_bad_quals);
11152 return r;
11153 }
11154 else
11155 {
11156 /* We don't have an instantiation yet, so drop the typedef. */
11157 int quals = cp_type_quals (t);
11158 t = DECL_ORIGINAL_TYPE (decl);
11159 t = cp_build_qualified_type_real (t, quals,
11160 complain | tf_ignore_bad_quals);
11161 }
11162 }
11163
11164 if (type
11165 && code != TYPENAME_TYPE
11166 && code != TEMPLATE_TYPE_PARM
11167 && code != IDENTIFIER_NODE
11168 && code != FUNCTION_TYPE
11169 && code != METHOD_TYPE)
11170 type = tsubst (type, args, complain, in_decl);
11171 if (type == error_mark_node)
11172 return error_mark_node;
11173
11174 switch (code)
11175 {
11176 case RECORD_TYPE:
11177 case UNION_TYPE:
11178 case ENUMERAL_TYPE:
11179 return tsubst_aggr_type (t, args, complain, in_decl,
11180 /*entering_scope=*/0);
11181
11182 case ERROR_MARK:
11183 case IDENTIFIER_NODE:
11184 case VOID_TYPE:
11185 case REAL_TYPE:
11186 case COMPLEX_TYPE:
11187 case VECTOR_TYPE:
11188 case BOOLEAN_TYPE:
11189 case NULLPTR_TYPE:
11190 case LANG_TYPE:
11191 return t;
11192
11193 case INTEGER_TYPE:
11194 if (t == integer_type_node)
11195 return t;
11196
11197 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11198 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11199 return t;
11200
11201 {
11202 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11203
11204 max = tsubst_expr (omax, args, complain, in_decl,
11205 /*integral_constant_expression_p=*/false);
11206
11207 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11208 needed. */
11209 if (TREE_CODE (max) == NOP_EXPR
11210 && TREE_SIDE_EFFECTS (omax)
11211 && !TREE_TYPE (max))
11212 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11213
11214 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11215 with TREE_SIDE_EFFECTS that indicates this is not an integral
11216 constant expression. */
11217 if (processing_template_decl
11218 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11219 {
11220 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11221 TREE_SIDE_EFFECTS (max) = 1;
11222 }
11223
11224 return compute_array_index_type (NULL_TREE, max, complain);
11225 }
11226
11227 case TEMPLATE_TYPE_PARM:
11228 case TEMPLATE_TEMPLATE_PARM:
11229 case BOUND_TEMPLATE_TEMPLATE_PARM:
11230 case TEMPLATE_PARM_INDEX:
11231 {
11232 int idx;
11233 int level;
11234 int levels;
11235 tree arg = NULL_TREE;
11236
11237 r = NULL_TREE;
11238
11239 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11240 template_parm_level_and_index (t, &level, &idx);
11241
11242 levels = TMPL_ARGS_DEPTH (args);
11243 if (level <= levels)
11244 {
11245 arg = TMPL_ARG (args, level, idx);
11246
11247 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11248 {
11249 /* See through ARGUMENT_PACK_SELECT arguments. */
11250 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11251 /* If the selected argument is an expansion E, that most
11252 likely means we were called from
11253 gen_elem_of_pack_expansion_instantiation during the
11254 substituting of pack an argument pack (which Ith
11255 element is a pack expansion, where I is
11256 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11257 In this case, the Ith element resulting from this
11258 substituting is going to be a pack expansion, which
11259 pattern is the pattern of E. Let's return the
11260 pattern of E, and
11261 gen_elem_of_pack_expansion_instantiation will
11262 build the resulting pack expansion from it. */
11263 if (PACK_EXPANSION_P (arg))
11264 arg = PACK_EXPANSION_PATTERN (arg);
11265 }
11266 }
11267
11268 if (arg == error_mark_node)
11269 return error_mark_node;
11270 else if (arg != NULL_TREE)
11271 {
11272 if (ARGUMENT_PACK_P (arg))
11273 /* If ARG is an argument pack, we don't actually want to
11274 perform a substitution here, because substitutions
11275 for argument packs are only done
11276 element-by-element. We can get to this point when
11277 substituting the type of a non-type template
11278 parameter pack, when that type actually contains
11279 template parameter packs from an outer template, e.g.,
11280
11281 template<typename... Types> struct A {
11282 template<Types... Values> struct B { };
11283 }; */
11284 return t;
11285
11286 if (code == TEMPLATE_TYPE_PARM)
11287 {
11288 int quals;
11289 gcc_assert (TYPE_P (arg));
11290
11291 quals = cp_type_quals (arg) | cp_type_quals (t);
11292
11293 return cp_build_qualified_type_real
11294 (arg, quals, complain | tf_ignore_bad_quals);
11295 }
11296 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11297 {
11298 /* We are processing a type constructed from a
11299 template template parameter. */
11300 tree argvec = tsubst (TYPE_TI_ARGS (t),
11301 args, complain, in_decl);
11302 if (argvec == error_mark_node)
11303 return error_mark_node;
11304
11305 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11306 || TREE_CODE (arg) == TEMPLATE_DECL
11307 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11308
11309 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11310 /* Consider this code:
11311
11312 template <template <class> class Template>
11313 struct Internal {
11314 template <class Arg> using Bind = Template<Arg>;
11315 };
11316
11317 template <template <class> class Template, class Arg>
11318 using Instantiate = Template<Arg>; //#0
11319
11320 template <template <class> class Template,
11321 class Argument>
11322 using Bind =
11323 Instantiate<Internal<Template>::template Bind,
11324 Argument>; //#1
11325
11326 When #1 is parsed, the
11327 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11328 parameter `Template' in #0 matches the
11329 UNBOUND_CLASS_TEMPLATE representing the argument
11330 `Internal<Template>::template Bind'; We then want
11331 to assemble the type `Bind<Argument>' that can't
11332 be fully created right now, because
11333 `Internal<Template>' not being complete, the Bind
11334 template cannot be looked up in that context. So
11335 we need to "store" `Bind<Argument>' for later
11336 when the context of Bind becomes complete. Let's
11337 store that in a TYPENAME_TYPE. */
11338 return make_typename_type (TYPE_CONTEXT (arg),
11339 build_nt (TEMPLATE_ID_EXPR,
11340 TYPE_IDENTIFIER (arg),
11341 argvec),
11342 typename_type,
11343 complain);
11344
11345 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11346 are resolving nested-types in the signature of a
11347 member function templates. Otherwise ARG is a
11348 TEMPLATE_DECL and is the real template to be
11349 instantiated. */
11350 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11351 arg = TYPE_NAME (arg);
11352
11353 r = lookup_template_class (arg,
11354 argvec, in_decl,
11355 DECL_CONTEXT (arg),
11356 /*entering_scope=*/0,
11357 complain);
11358 return cp_build_qualified_type_real
11359 (r, cp_type_quals (t), complain);
11360 }
11361 else
11362 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
11363 return convert_from_reference (unshare_expr (arg));
11364 }
11365
11366 if (level == 1)
11367 /* This can happen during the attempted tsubst'ing in
11368 unify. This means that we don't yet have any information
11369 about the template parameter in question. */
11370 return t;
11371
11372 /* Early in template argument deduction substitution, we don't
11373 want to reduce the level of 'auto', or it will be confused
11374 with a normal template parm in subsequent deduction. */
11375 if (is_auto (t) && (complain & tf_partial))
11376 return t;
11377
11378 /* If we get here, we must have been looking at a parm for a
11379 more deeply nested template. Make a new version of this
11380 template parameter, but with a lower level. */
11381 switch (code)
11382 {
11383 case TEMPLATE_TYPE_PARM:
11384 case TEMPLATE_TEMPLATE_PARM:
11385 case BOUND_TEMPLATE_TEMPLATE_PARM:
11386 if (cp_type_quals (t))
11387 {
11388 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
11389 r = cp_build_qualified_type_real
11390 (r, cp_type_quals (t),
11391 complain | (code == TEMPLATE_TYPE_PARM
11392 ? tf_ignore_bad_quals : 0));
11393 }
11394 else
11395 {
11396 r = copy_type (t);
11397 TEMPLATE_TYPE_PARM_INDEX (r)
11398 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
11399 r, levels, args, complain);
11400 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
11401 TYPE_MAIN_VARIANT (r) = r;
11402 TYPE_POINTER_TO (r) = NULL_TREE;
11403 TYPE_REFERENCE_TO (r) = NULL_TREE;
11404
11405 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
11406 /* We have reduced the level of the template
11407 template parameter, but not the levels of its
11408 template parameters, so canonical_type_parameter
11409 will not be able to find the canonical template
11410 template parameter for this level. Thus, we
11411 require structural equality checking to compare
11412 TEMPLATE_TEMPLATE_PARMs. */
11413 SET_TYPE_STRUCTURAL_EQUALITY (r);
11414 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
11415 SET_TYPE_STRUCTURAL_EQUALITY (r);
11416 else
11417 TYPE_CANONICAL (r) = canonical_type_parameter (r);
11418
11419 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11420 {
11421 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
11422 complain, in_decl);
11423 if (argvec == error_mark_node)
11424 return error_mark_node;
11425
11426 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
11427 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
11428 }
11429 }
11430 break;
11431
11432 case TEMPLATE_PARM_INDEX:
11433 r = reduce_template_parm_level (t, type, levels, args, complain);
11434 break;
11435
11436 default:
11437 gcc_unreachable ();
11438 }
11439
11440 return r;
11441 }
11442
11443 case TREE_LIST:
11444 {
11445 tree purpose, value, chain;
11446
11447 if (t == void_list_node)
11448 return t;
11449
11450 purpose = TREE_PURPOSE (t);
11451 if (purpose)
11452 {
11453 purpose = tsubst (purpose, args, complain, in_decl);
11454 if (purpose == error_mark_node)
11455 return error_mark_node;
11456 }
11457 value = TREE_VALUE (t);
11458 if (value)
11459 {
11460 value = tsubst (value, args, complain, in_decl);
11461 if (value == error_mark_node)
11462 return error_mark_node;
11463 }
11464 chain = TREE_CHAIN (t);
11465 if (chain && chain != void_type_node)
11466 {
11467 chain = tsubst (chain, args, complain, in_decl);
11468 if (chain == error_mark_node)
11469 return error_mark_node;
11470 }
11471 if (purpose == TREE_PURPOSE (t)
11472 && value == TREE_VALUE (t)
11473 && chain == TREE_CHAIN (t))
11474 return t;
11475 return hash_tree_cons (purpose, value, chain);
11476 }
11477
11478 case TREE_BINFO:
11479 /* We should never be tsubsting a binfo. */
11480 gcc_unreachable ();
11481
11482 case TREE_VEC:
11483 /* A vector of template arguments. */
11484 gcc_assert (!type);
11485 return tsubst_template_args (t, args, complain, in_decl);
11486
11487 case POINTER_TYPE:
11488 case REFERENCE_TYPE:
11489 {
11490 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
11491 return t;
11492
11493 /* [temp.deduct]
11494
11495 Type deduction may fail for any of the following
11496 reasons:
11497
11498 -- Attempting to create a pointer to reference type.
11499 -- Attempting to create a reference to a reference type or
11500 a reference to void.
11501
11502 Core issue 106 says that creating a reference to a reference
11503 during instantiation is no longer a cause for failure. We
11504 only enforce this check in strict C++98 mode. */
11505 if ((TREE_CODE (type) == REFERENCE_TYPE
11506 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
11507 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
11508 {
11509 static location_t last_loc;
11510
11511 /* We keep track of the last time we issued this error
11512 message to avoid spewing a ton of messages during a
11513 single bad template instantiation. */
11514 if (complain & tf_error
11515 && last_loc != input_location)
11516 {
11517 if (VOID_TYPE_P (type))
11518 error ("forming reference to void");
11519 else if (code == POINTER_TYPE)
11520 error ("forming pointer to reference type %qT", type);
11521 else
11522 error ("forming reference to reference type %qT", type);
11523 last_loc = input_location;
11524 }
11525
11526 return error_mark_node;
11527 }
11528 else if (TREE_CODE (type) == FUNCTION_TYPE
11529 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11530 || type_memfn_rqual (type) != REF_QUAL_NONE))
11531 {
11532 if (complain & tf_error)
11533 {
11534 if (code == POINTER_TYPE)
11535 error ("forming pointer to qualified function type %qT",
11536 type);
11537 else
11538 error ("forming reference to qualified function type %qT",
11539 type);
11540 }
11541 return error_mark_node;
11542 }
11543 else if (code == POINTER_TYPE)
11544 {
11545 r = build_pointer_type (type);
11546 if (TREE_CODE (type) == METHOD_TYPE)
11547 r = build_ptrmemfunc_type (r);
11548 }
11549 else if (TREE_CODE (type) == REFERENCE_TYPE)
11550 /* In C++0x, during template argument substitution, when there is an
11551 attempt to create a reference to a reference type, reference
11552 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
11553
11554 "If a template-argument for a template-parameter T names a type
11555 that is a reference to a type A, an attempt to create the type
11556 'lvalue reference to cv T' creates the type 'lvalue reference to
11557 A,' while an attempt to create the type type rvalue reference to
11558 cv T' creates the type T"
11559 */
11560 r = cp_build_reference_type
11561 (TREE_TYPE (type),
11562 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
11563 else
11564 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
11565 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11566
11567 if (cxx_dialect >= cxx1y && array_of_runtime_bound_p (type))
11568 {
11569 if (complain & tf_warning_or_error)
11570 pedwarn
11571 (input_location, OPT_Wvla,
11572 code == REFERENCE_TYPE
11573 ? G_("cannot declare reference to array of runtime bound")
11574 : G_("cannot declare pointer to array of runtime bound"));
11575 else
11576 r = error_mark_node;
11577 }
11578
11579 if (r != error_mark_node)
11580 /* Will this ever be needed for TYPE_..._TO values? */
11581 layout_type (r);
11582
11583 return r;
11584 }
11585 case OFFSET_TYPE:
11586 {
11587 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
11588 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
11589 {
11590 /* [temp.deduct]
11591
11592 Type deduction may fail for any of the following
11593 reasons:
11594
11595 -- Attempting to create "pointer to member of T" when T
11596 is not a class type. */
11597 if (complain & tf_error)
11598 error ("creating pointer to member of non-class type %qT", r);
11599 return error_mark_node;
11600 }
11601 if (TREE_CODE (type) == REFERENCE_TYPE)
11602 {
11603 if (complain & tf_error)
11604 error ("creating pointer to member reference type %qT", type);
11605 return error_mark_node;
11606 }
11607 if (VOID_TYPE_P (type))
11608 {
11609 if (complain & tf_error)
11610 error ("creating pointer to member of type void");
11611 return error_mark_node;
11612 }
11613 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11614 if (TREE_CODE (type) == FUNCTION_TYPE)
11615 {
11616 /* The type of the implicit object parameter gets its
11617 cv-qualifiers from the FUNCTION_TYPE. */
11618 tree memptr;
11619 tree method_type
11620 = build_memfn_type (type, r, type_memfn_quals (type),
11621 type_memfn_rqual (type));
11622 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
11623 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
11624 complain);
11625 }
11626 else
11627 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
11628 cp_type_quals (t),
11629 complain);
11630 }
11631 case FUNCTION_TYPE:
11632 case METHOD_TYPE:
11633 {
11634 tree fntype;
11635 tree specs;
11636 fntype = tsubst_function_type (t, args, complain, in_decl);
11637 if (fntype == error_mark_node)
11638 return error_mark_node;
11639
11640 /* Substitute the exception specification. */
11641 specs = tsubst_exception_specification (t, args, complain,
11642 in_decl, /*defer_ok*/true);
11643 if (specs == error_mark_node)
11644 return error_mark_node;
11645 if (specs)
11646 fntype = build_exception_variant (fntype, specs);
11647 return fntype;
11648 }
11649 case ARRAY_TYPE:
11650 {
11651 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
11652 if (domain == error_mark_node)
11653 return error_mark_node;
11654
11655 /* As an optimization, we avoid regenerating the array type if
11656 it will obviously be the same as T. */
11657 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
11658 return t;
11659
11660 /* These checks should match the ones in grokdeclarator.
11661
11662 [temp.deduct]
11663
11664 The deduction may fail for any of the following reasons:
11665
11666 -- Attempting to create an array with an element type that
11667 is void, a function type, or a reference type, or [DR337]
11668 an abstract class type. */
11669 if (VOID_TYPE_P (type)
11670 || TREE_CODE (type) == FUNCTION_TYPE
11671 || TREE_CODE (type) == REFERENCE_TYPE)
11672 {
11673 if (complain & tf_error)
11674 error ("creating array of %qT", type);
11675 return error_mark_node;
11676 }
11677
11678 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
11679 return error_mark_node;
11680
11681 r = build_cplus_array_type (type, domain);
11682
11683 if (TYPE_USER_ALIGN (t))
11684 {
11685 TYPE_ALIGN (r) = TYPE_ALIGN (t);
11686 TYPE_USER_ALIGN (r) = 1;
11687 }
11688
11689 return r;
11690 }
11691
11692 case TYPENAME_TYPE:
11693 {
11694 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11695 in_decl, /*entering_scope=*/1);
11696 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
11697 complain, in_decl);
11698
11699 if (ctx == error_mark_node || f == error_mark_node)
11700 return error_mark_node;
11701
11702 if (!MAYBE_CLASS_TYPE_P (ctx))
11703 {
11704 if (complain & tf_error)
11705 error ("%qT is not a class, struct, or union type", ctx);
11706 return error_mark_node;
11707 }
11708 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
11709 {
11710 /* Normally, make_typename_type does not require that the CTX
11711 have complete type in order to allow things like:
11712
11713 template <class T> struct S { typename S<T>::X Y; };
11714
11715 But, such constructs have already been resolved by this
11716 point, so here CTX really should have complete type, unless
11717 it's a partial instantiation. */
11718 ctx = complete_type (ctx);
11719 if (!COMPLETE_TYPE_P (ctx))
11720 {
11721 if (complain & tf_error)
11722 cxx_incomplete_type_error (NULL_TREE, ctx);
11723 return error_mark_node;
11724 }
11725 }
11726
11727 f = make_typename_type (ctx, f, typename_type,
11728 complain | tf_keep_type_decl);
11729 if (f == error_mark_node)
11730 return f;
11731 if (TREE_CODE (f) == TYPE_DECL)
11732 {
11733 complain |= tf_ignore_bad_quals;
11734 f = TREE_TYPE (f);
11735 }
11736
11737 if (TREE_CODE (f) != TYPENAME_TYPE)
11738 {
11739 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
11740 {
11741 if (complain & tf_error)
11742 error ("%qT resolves to %qT, which is not an enumeration type",
11743 t, f);
11744 else
11745 return error_mark_node;
11746 }
11747 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
11748 {
11749 if (complain & tf_error)
11750 error ("%qT resolves to %qT, which is is not a class type",
11751 t, f);
11752 else
11753 return error_mark_node;
11754 }
11755 }
11756
11757 return cp_build_qualified_type_real
11758 (f, cp_type_quals (f) | cp_type_quals (t), complain);
11759 }
11760
11761 case UNBOUND_CLASS_TEMPLATE:
11762 {
11763 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11764 in_decl, /*entering_scope=*/1);
11765 tree name = TYPE_IDENTIFIER (t);
11766 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
11767
11768 if (ctx == error_mark_node || name == error_mark_node)
11769 return error_mark_node;
11770
11771 if (parm_list)
11772 parm_list = tsubst_template_parms (parm_list, args, complain);
11773 return make_unbound_class_template (ctx, name, parm_list, complain);
11774 }
11775
11776 case TYPEOF_TYPE:
11777 {
11778 tree type;
11779
11780 ++cp_unevaluated_operand;
11781 ++c_inhibit_evaluation_warnings;
11782
11783 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
11784 complain, in_decl,
11785 /*integral_constant_expression_p=*/false);
11786
11787 --cp_unevaluated_operand;
11788 --c_inhibit_evaluation_warnings;
11789
11790 type = finish_typeof (type);
11791 return cp_build_qualified_type_real (type,
11792 cp_type_quals (t)
11793 | cp_type_quals (type),
11794 complain);
11795 }
11796
11797 case DECLTYPE_TYPE:
11798 {
11799 tree type;
11800
11801 ++cp_unevaluated_operand;
11802 ++c_inhibit_evaluation_warnings;
11803
11804 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
11805 complain|tf_decltype, in_decl,
11806 /*function_p*/false,
11807 /*integral_constant_expression*/false);
11808
11809 --cp_unevaluated_operand;
11810 --c_inhibit_evaluation_warnings;
11811
11812 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
11813 type = lambda_capture_field_type (type,
11814 DECLTYPE_FOR_INIT_CAPTURE (t));
11815 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
11816 type = lambda_proxy_type (type);
11817 else
11818 {
11819 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
11820 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
11821 && EXPR_P (type))
11822 /* In a template ~id could be either a complement expression
11823 or an unqualified-id naming a destructor; if instantiating
11824 it produces an expression, it's not an id-expression or
11825 member access. */
11826 id = false;
11827 type = finish_decltype_type (type, id, complain);
11828 }
11829 return cp_build_qualified_type_real (type,
11830 cp_type_quals (t)
11831 | cp_type_quals (type),
11832 complain);
11833 }
11834
11835 case UNDERLYING_TYPE:
11836 {
11837 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
11838 complain, in_decl);
11839 return finish_underlying_type (type);
11840 }
11841
11842 case TYPE_ARGUMENT_PACK:
11843 case NONTYPE_ARGUMENT_PACK:
11844 {
11845 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
11846 tree packed_out =
11847 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
11848 args,
11849 complain,
11850 in_decl);
11851 SET_ARGUMENT_PACK_ARGS (r, packed_out);
11852
11853 /* For template nontype argument packs, also substitute into
11854 the type. */
11855 if (code == NONTYPE_ARGUMENT_PACK)
11856 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
11857
11858 return r;
11859 }
11860 break;
11861
11862 case INTEGER_CST:
11863 case REAL_CST:
11864 case STRING_CST:
11865 case PLUS_EXPR:
11866 case MINUS_EXPR:
11867 case NEGATE_EXPR:
11868 case NOP_EXPR:
11869 case INDIRECT_REF:
11870 case ADDR_EXPR:
11871 case CALL_EXPR:
11872 case ARRAY_REF:
11873 case SCOPE_REF:
11874 /* We should use one of the expression tsubsts for these codes. */
11875 gcc_unreachable ();
11876
11877 default:
11878 sorry ("use of %qs in template", tree_code_name [(int) code]);
11879 return error_mark_node;
11880 }
11881 }
11882
11883 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
11884 type of the expression on the left-hand side of the "." or "->"
11885 operator. */
11886
11887 static tree
11888 tsubst_baselink (tree baselink, tree object_type,
11889 tree args, tsubst_flags_t complain, tree in_decl)
11890 {
11891 tree name;
11892 tree qualifying_scope;
11893 tree fns;
11894 tree optype;
11895 tree template_args = 0;
11896 bool template_id_p = false;
11897 bool qualified = BASELINK_QUALIFIED_P (baselink);
11898
11899 /* A baselink indicates a function from a base class. Both the
11900 BASELINK_ACCESS_BINFO and the base class referenced may
11901 indicate bases of the template class, rather than the
11902 instantiated class. In addition, lookups that were not
11903 ambiguous before may be ambiguous now. Therefore, we perform
11904 the lookup again. */
11905 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
11906 qualifying_scope = tsubst (qualifying_scope, args,
11907 complain, in_decl);
11908 fns = BASELINK_FUNCTIONS (baselink);
11909 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
11910 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
11911 {
11912 template_id_p = true;
11913 template_args = TREE_OPERAND (fns, 1);
11914 fns = TREE_OPERAND (fns, 0);
11915 if (template_args)
11916 template_args = tsubst_template_args (template_args, args,
11917 complain, in_decl);
11918 }
11919 name = DECL_NAME (get_first_fn (fns));
11920 if (IDENTIFIER_TYPENAME_P (name))
11921 name = mangle_conv_op_name_for_type (optype);
11922 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
11923 if (!baselink)
11924 return error_mark_node;
11925
11926 /* If lookup found a single function, mark it as used at this
11927 point. (If it lookup found multiple functions the one selected
11928 later by overload resolution will be marked as used at that
11929 point.) */
11930 if (BASELINK_P (baselink))
11931 fns = BASELINK_FUNCTIONS (baselink);
11932 if (!template_id_p && !really_overloaded_fn (fns))
11933 mark_used (OVL_CURRENT (fns));
11934
11935 /* Add back the template arguments, if present. */
11936 if (BASELINK_P (baselink) && template_id_p)
11937 BASELINK_FUNCTIONS (baselink)
11938 = build_nt (TEMPLATE_ID_EXPR,
11939 BASELINK_FUNCTIONS (baselink),
11940 template_args);
11941 /* Update the conversion operator type. */
11942 BASELINK_OPTYPE (baselink) = optype;
11943
11944 if (!object_type)
11945 object_type = current_class_type;
11946
11947 if (qualified)
11948 baselink = adjust_result_of_qualified_name_lookup (baselink,
11949 qualifying_scope,
11950 object_type);
11951 return baselink;
11952 }
11953
11954 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
11955 true if the qualified-id will be a postfix-expression in-and-of
11956 itself; false if more of the postfix-expression follows the
11957 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
11958 of "&". */
11959
11960 static tree
11961 tsubst_qualified_id (tree qualified_id, tree args,
11962 tsubst_flags_t complain, tree in_decl,
11963 bool done, bool address_p)
11964 {
11965 tree expr;
11966 tree scope;
11967 tree name;
11968 bool is_template;
11969 tree template_args;
11970 location_t loc = UNKNOWN_LOCATION;
11971
11972 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
11973
11974 /* Figure out what name to look up. */
11975 name = TREE_OPERAND (qualified_id, 1);
11976 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
11977 {
11978 is_template = true;
11979 loc = EXPR_LOCATION (name);
11980 template_args = TREE_OPERAND (name, 1);
11981 if (template_args)
11982 template_args = tsubst_template_args (template_args, args,
11983 complain, in_decl);
11984 name = TREE_OPERAND (name, 0);
11985 }
11986 else
11987 {
11988 is_template = false;
11989 template_args = NULL_TREE;
11990 }
11991
11992 /* Substitute into the qualifying scope. When there are no ARGS, we
11993 are just trying to simplify a non-dependent expression. In that
11994 case the qualifying scope may be dependent, and, in any case,
11995 substituting will not help. */
11996 scope = TREE_OPERAND (qualified_id, 0);
11997 if (args)
11998 {
11999 scope = tsubst (scope, args, complain, in_decl);
12000 expr = tsubst_copy (name, args, complain, in_decl);
12001 }
12002 else
12003 expr = name;
12004
12005 if (dependent_scope_p (scope))
12006 {
12007 if (is_template)
12008 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12009 return build_qualified_name (NULL_TREE, scope, expr,
12010 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12011 }
12012
12013 if (!BASELINK_P (name) && !DECL_P (expr))
12014 {
12015 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12016 {
12017 /* A BIT_NOT_EXPR is used to represent a destructor. */
12018 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12019 {
12020 error ("qualifying type %qT does not match destructor name ~%qT",
12021 scope, TREE_OPERAND (expr, 0));
12022 expr = error_mark_node;
12023 }
12024 else
12025 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12026 /*is_type_p=*/0, false);
12027 }
12028 else
12029 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12030 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12031 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12032 {
12033 if (complain & tf_error)
12034 {
12035 error ("dependent-name %qE is parsed as a non-type, but "
12036 "instantiation yields a type", qualified_id);
12037 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12038 }
12039 return error_mark_node;
12040 }
12041 }
12042
12043 if (DECL_P (expr))
12044 {
12045 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12046 scope);
12047 /* Remember that there was a reference to this entity. */
12048 mark_used (expr);
12049 }
12050
12051 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12052 {
12053 if (complain & tf_error)
12054 qualified_name_lookup_error (scope,
12055 TREE_OPERAND (qualified_id, 1),
12056 expr, input_location);
12057 return error_mark_node;
12058 }
12059
12060 if (is_template)
12061 expr = lookup_template_function (expr, template_args);
12062
12063 if (expr == error_mark_node && complain & tf_error)
12064 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12065 expr, input_location);
12066 else if (TYPE_P (scope))
12067 {
12068 expr = (adjust_result_of_qualified_name_lookup
12069 (expr, scope, current_nonlambda_class_type ()));
12070 expr = (finish_qualified_id_expr
12071 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12072 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12073 /*template_arg_p=*/false, complain));
12074 }
12075
12076 /* Expressions do not generally have reference type. */
12077 if (TREE_CODE (expr) != SCOPE_REF
12078 /* However, if we're about to form a pointer-to-member, we just
12079 want the referenced member referenced. */
12080 && TREE_CODE (expr) != OFFSET_REF)
12081 expr = convert_from_reference (expr);
12082
12083 return expr;
12084 }
12085
12086 /* Like tsubst, but deals with expressions. This function just replaces
12087 template parms; to finish processing the resultant expression, use
12088 tsubst_copy_and_build or tsubst_expr. */
12089
12090 static tree
12091 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12092 {
12093 enum tree_code code;
12094 tree r;
12095
12096 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12097 return t;
12098
12099 code = TREE_CODE (t);
12100
12101 switch (code)
12102 {
12103 case PARM_DECL:
12104 r = retrieve_local_specialization (t);
12105
12106 if (r == NULL_TREE)
12107 {
12108 /* We get here for a use of 'this' in an NSDMI. */
12109 if (DECL_NAME (t) == this_identifier
12110 && at_function_scope_p ()
12111 && DECL_CONSTRUCTOR_P (current_function_decl))
12112 return current_class_ptr;
12113
12114 /* This can happen for a parameter name used later in a function
12115 declaration (such as in a late-specified return type). Just
12116 make a dummy decl, since it's only used for its type. */
12117 gcc_assert (cp_unevaluated_operand != 0);
12118 r = tsubst_decl (t, args, complain);
12119 /* Give it the template pattern as its context; its true context
12120 hasn't been instantiated yet and this is good enough for
12121 mangling. */
12122 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12123 }
12124
12125 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12126 r = ARGUMENT_PACK_SELECT_ARG (r);
12127 mark_used (r);
12128 return r;
12129
12130 case CONST_DECL:
12131 {
12132 tree enum_type;
12133 tree v;
12134
12135 if (DECL_TEMPLATE_PARM_P (t))
12136 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12137 /* There is no need to substitute into namespace-scope
12138 enumerators. */
12139 if (DECL_NAMESPACE_SCOPE_P (t))
12140 return t;
12141 /* If ARGS is NULL, then T is known to be non-dependent. */
12142 if (args == NULL_TREE)
12143 return integral_constant_value (t);
12144
12145 /* Unfortunately, we cannot just call lookup_name here.
12146 Consider:
12147
12148 template <int I> int f() {
12149 enum E { a = I };
12150 struct S { void g() { E e = a; } };
12151 };
12152
12153 When we instantiate f<7>::S::g(), say, lookup_name is not
12154 clever enough to find f<7>::a. */
12155 enum_type
12156 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12157 /*entering_scope=*/0);
12158
12159 for (v = TYPE_VALUES (enum_type);
12160 v != NULL_TREE;
12161 v = TREE_CHAIN (v))
12162 if (TREE_PURPOSE (v) == DECL_NAME (t))
12163 return TREE_VALUE (v);
12164
12165 /* We didn't find the name. That should never happen; if
12166 name-lookup found it during preliminary parsing, we
12167 should find it again here during instantiation. */
12168 gcc_unreachable ();
12169 }
12170 return t;
12171
12172 case FIELD_DECL:
12173 if (DECL_CONTEXT (t))
12174 {
12175 tree ctx;
12176
12177 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12178 /*entering_scope=*/1);
12179 if (ctx != DECL_CONTEXT (t))
12180 {
12181 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12182 if (!r)
12183 {
12184 if (complain & tf_error)
12185 error ("using invalid field %qD", t);
12186 return error_mark_node;
12187 }
12188 return r;
12189 }
12190 }
12191
12192 return t;
12193
12194 case VAR_DECL:
12195 case FUNCTION_DECL:
12196 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12197 r = tsubst (t, args, complain, in_decl);
12198 else if (local_variable_p (t))
12199 {
12200 r = retrieve_local_specialization (t);
12201 if (r == NULL_TREE)
12202 {
12203 if (DECL_ANON_UNION_VAR_P (t))
12204 {
12205 /* Just use name lookup to find a member alias for an
12206 anonymous union, but then add it to the hash table. */
12207 r = lookup_name (DECL_NAME (t));
12208 gcc_assert (DECL_ANON_UNION_VAR_P (r));
12209 register_local_specialization (r, t);
12210 }
12211 else
12212 {
12213 gcc_assert (errorcount || sorrycount);
12214 return error_mark_node;
12215 }
12216 }
12217 }
12218 else
12219 r = t;
12220 mark_used (r);
12221 return r;
12222
12223 case NAMESPACE_DECL:
12224 return t;
12225
12226 case OVERLOAD:
12227 /* An OVERLOAD will always be a non-dependent overload set; an
12228 overload set from function scope will just be represented with an
12229 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12230 gcc_assert (!uses_template_parms (t));
12231 return t;
12232
12233 case BASELINK:
12234 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
12235
12236 case TEMPLATE_DECL:
12237 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12238 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12239 args, complain, in_decl);
12240 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12241 return tsubst (t, args, complain, in_decl);
12242 else if (DECL_CLASS_SCOPE_P (t)
12243 && uses_template_parms (DECL_CONTEXT (t)))
12244 {
12245 /* Template template argument like the following example need
12246 special treatment:
12247
12248 template <template <class> class TT> struct C {};
12249 template <class T> struct D {
12250 template <class U> struct E {};
12251 C<E> c; // #1
12252 };
12253 D<int> d; // #2
12254
12255 We are processing the template argument `E' in #1 for
12256 the template instantiation #2. Originally, `E' is a
12257 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
12258 have to substitute this with one having context `D<int>'. */
12259
12260 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12261 return lookup_field (context, DECL_NAME(t), 0, false);
12262 }
12263 else
12264 /* Ordinary template template argument. */
12265 return t;
12266
12267 case CAST_EXPR:
12268 case REINTERPRET_CAST_EXPR:
12269 case CONST_CAST_EXPR:
12270 case STATIC_CAST_EXPR:
12271 case DYNAMIC_CAST_EXPR:
12272 case IMPLICIT_CONV_EXPR:
12273 case CONVERT_EXPR:
12274 case NOP_EXPR:
12275 return build1
12276 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12277 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12278
12279 case SIZEOF_EXPR:
12280 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
12281 {
12282
12283 tree expanded, op = TREE_OPERAND (t, 0);
12284 int len = 0;
12285
12286 if (SIZEOF_EXPR_TYPE_P (t))
12287 op = TREE_TYPE (op);
12288
12289 ++cp_unevaluated_operand;
12290 ++c_inhibit_evaluation_warnings;
12291 /* We only want to compute the number of arguments. */
12292 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
12293 --cp_unevaluated_operand;
12294 --c_inhibit_evaluation_warnings;
12295
12296 if (TREE_CODE (expanded) == TREE_VEC)
12297 len = TREE_VEC_LENGTH (expanded);
12298
12299 if (expanded == error_mark_node)
12300 return error_mark_node;
12301 else if (PACK_EXPANSION_P (expanded)
12302 || (TREE_CODE (expanded) == TREE_VEC
12303 && len > 0
12304 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
12305 {
12306 if (TREE_CODE (expanded) == TREE_VEC)
12307 expanded = TREE_VEC_ELT (expanded, len - 1);
12308
12309 if (TYPE_P (expanded))
12310 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
12311 complain & tf_error);
12312 else
12313 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
12314 complain & tf_error);
12315 }
12316 else
12317 return build_int_cst (size_type_node, len);
12318 }
12319 if (SIZEOF_EXPR_TYPE_P (t))
12320 {
12321 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
12322 args, complain, in_decl);
12323 r = build1 (NOP_EXPR, r, error_mark_node);
12324 r = build1 (SIZEOF_EXPR,
12325 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
12326 SIZEOF_EXPR_TYPE_P (r) = 1;
12327 return r;
12328 }
12329 /* Fall through */
12330
12331 case INDIRECT_REF:
12332 case NEGATE_EXPR:
12333 case TRUTH_NOT_EXPR:
12334 case BIT_NOT_EXPR:
12335 case ADDR_EXPR:
12336 case UNARY_PLUS_EXPR: /* Unary + */
12337 case ALIGNOF_EXPR:
12338 case AT_ENCODE_EXPR:
12339 case ARROW_EXPR:
12340 case THROW_EXPR:
12341 case TYPEID_EXPR:
12342 case REALPART_EXPR:
12343 case IMAGPART_EXPR:
12344 case PAREN_EXPR:
12345 return build1
12346 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12347 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12348
12349 case COMPONENT_REF:
12350 {
12351 tree object;
12352 tree name;
12353
12354 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
12355 name = TREE_OPERAND (t, 1);
12356 if (TREE_CODE (name) == BIT_NOT_EXPR)
12357 {
12358 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12359 complain, in_decl);
12360 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12361 }
12362 else if (TREE_CODE (name) == SCOPE_REF
12363 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
12364 {
12365 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
12366 complain, in_decl);
12367 name = TREE_OPERAND (name, 1);
12368 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12369 complain, in_decl);
12370 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12371 name = build_qualified_name (/*type=*/NULL_TREE,
12372 base, name,
12373 /*template_p=*/false);
12374 }
12375 else if (BASELINK_P (name))
12376 name = tsubst_baselink (name,
12377 non_reference (TREE_TYPE (object)),
12378 args, complain,
12379 in_decl);
12380 else
12381 name = tsubst_copy (name, args, complain, in_decl);
12382 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
12383 }
12384
12385 case PLUS_EXPR:
12386 case MINUS_EXPR:
12387 case MULT_EXPR:
12388 case TRUNC_DIV_EXPR:
12389 case CEIL_DIV_EXPR:
12390 case FLOOR_DIV_EXPR:
12391 case ROUND_DIV_EXPR:
12392 case EXACT_DIV_EXPR:
12393 case BIT_AND_EXPR:
12394 case BIT_IOR_EXPR:
12395 case BIT_XOR_EXPR:
12396 case TRUNC_MOD_EXPR:
12397 case FLOOR_MOD_EXPR:
12398 case TRUTH_ANDIF_EXPR:
12399 case TRUTH_ORIF_EXPR:
12400 case TRUTH_AND_EXPR:
12401 case TRUTH_OR_EXPR:
12402 case RSHIFT_EXPR:
12403 case LSHIFT_EXPR:
12404 case RROTATE_EXPR:
12405 case LROTATE_EXPR:
12406 case EQ_EXPR:
12407 case NE_EXPR:
12408 case MAX_EXPR:
12409 case MIN_EXPR:
12410 case LE_EXPR:
12411 case GE_EXPR:
12412 case LT_EXPR:
12413 case GT_EXPR:
12414 case COMPOUND_EXPR:
12415 case DOTSTAR_EXPR:
12416 case MEMBER_REF:
12417 case PREDECREMENT_EXPR:
12418 case PREINCREMENT_EXPR:
12419 case POSTDECREMENT_EXPR:
12420 case POSTINCREMENT_EXPR:
12421 return build_nt
12422 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12423 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12424
12425 case SCOPE_REF:
12426 return build_qualified_name (/*type=*/NULL_TREE,
12427 tsubst_copy (TREE_OPERAND (t, 0),
12428 args, complain, in_decl),
12429 tsubst_copy (TREE_OPERAND (t, 1),
12430 args, complain, in_decl),
12431 QUALIFIED_NAME_IS_TEMPLATE (t));
12432
12433 case ARRAY_REF:
12434 return build_nt
12435 (ARRAY_REF,
12436 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12437 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12438 NULL_TREE, NULL_TREE);
12439
12440 case CALL_EXPR:
12441 {
12442 int n = VL_EXP_OPERAND_LENGTH (t);
12443 tree result = build_vl_exp (CALL_EXPR, n);
12444 int i;
12445 for (i = 0; i < n; i++)
12446 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
12447 complain, in_decl);
12448 return result;
12449 }
12450
12451 case COND_EXPR:
12452 case MODOP_EXPR:
12453 case PSEUDO_DTOR_EXPR:
12454 {
12455 r = build_nt
12456 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12457 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12458 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12459 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
12460 return r;
12461 }
12462
12463 case NEW_EXPR:
12464 {
12465 r = build_nt
12466 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12467 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12468 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12469 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
12470 return r;
12471 }
12472
12473 case DELETE_EXPR:
12474 {
12475 r = build_nt
12476 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12477 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12478 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
12479 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
12480 return r;
12481 }
12482
12483 case TEMPLATE_ID_EXPR:
12484 {
12485 /* Substituted template arguments */
12486 tree fn = TREE_OPERAND (t, 0);
12487 tree targs = TREE_OPERAND (t, 1);
12488
12489 fn = tsubst_copy (fn, args, complain, in_decl);
12490 if (targs)
12491 targs = tsubst_template_args (targs, args, complain, in_decl);
12492
12493 return lookup_template_function (fn, targs);
12494 }
12495
12496 case TREE_LIST:
12497 {
12498 tree purpose, value, chain;
12499
12500 if (t == void_list_node)
12501 return t;
12502
12503 purpose = TREE_PURPOSE (t);
12504 if (purpose)
12505 purpose = tsubst_copy (purpose, args, complain, in_decl);
12506 value = TREE_VALUE (t);
12507 if (value)
12508 value = tsubst_copy (value, args, complain, in_decl);
12509 chain = TREE_CHAIN (t);
12510 if (chain && chain != void_type_node)
12511 chain = tsubst_copy (chain, args, complain, in_decl);
12512 if (purpose == TREE_PURPOSE (t)
12513 && value == TREE_VALUE (t)
12514 && chain == TREE_CHAIN (t))
12515 return t;
12516 return tree_cons (purpose, value, chain);
12517 }
12518
12519 case RECORD_TYPE:
12520 case UNION_TYPE:
12521 case ENUMERAL_TYPE:
12522 case INTEGER_TYPE:
12523 case TEMPLATE_TYPE_PARM:
12524 case TEMPLATE_TEMPLATE_PARM:
12525 case BOUND_TEMPLATE_TEMPLATE_PARM:
12526 case TEMPLATE_PARM_INDEX:
12527 case POINTER_TYPE:
12528 case REFERENCE_TYPE:
12529 case OFFSET_TYPE:
12530 case FUNCTION_TYPE:
12531 case METHOD_TYPE:
12532 case ARRAY_TYPE:
12533 case TYPENAME_TYPE:
12534 case UNBOUND_CLASS_TEMPLATE:
12535 case TYPEOF_TYPE:
12536 case DECLTYPE_TYPE:
12537 case TYPE_DECL:
12538 return tsubst (t, args, complain, in_decl);
12539
12540 case IDENTIFIER_NODE:
12541 if (IDENTIFIER_TYPENAME_P (t))
12542 {
12543 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12544 return mangle_conv_op_name_for_type (new_type);
12545 }
12546 else
12547 return t;
12548
12549 case CONSTRUCTOR:
12550 /* This is handled by tsubst_copy_and_build. */
12551 gcc_unreachable ();
12552
12553 case VA_ARG_EXPR:
12554 return build_x_va_arg (EXPR_LOCATION (t),
12555 tsubst_copy (TREE_OPERAND (t, 0), args, complain,
12556 in_decl),
12557 tsubst (TREE_TYPE (t), args, complain, in_decl));
12558
12559 case CLEANUP_POINT_EXPR:
12560 /* We shouldn't have built any of these during initial template
12561 generation. Instead, they should be built during instantiation
12562 in response to the saved STMT_IS_FULL_EXPR_P setting. */
12563 gcc_unreachable ();
12564
12565 case OFFSET_REF:
12566 r = build2
12567 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12568 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12569 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12570 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
12571 mark_used (TREE_OPERAND (r, 1));
12572 return r;
12573
12574 case EXPR_PACK_EXPANSION:
12575 error ("invalid use of pack expansion expression");
12576 return error_mark_node;
12577
12578 case NONTYPE_ARGUMENT_PACK:
12579 error ("use %<...%> to expand argument pack");
12580 return error_mark_node;
12581
12582 case INTEGER_CST:
12583 case REAL_CST:
12584 case STRING_CST:
12585 case COMPLEX_CST:
12586 {
12587 /* Instantiate any typedefs in the type. */
12588 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12589 r = fold_convert (type, t);
12590 gcc_assert (TREE_CODE (r) == code);
12591 return r;
12592 }
12593
12594 case PTRMEM_CST:
12595 /* These can sometimes show up in a partial instantiation, but never
12596 involve template parms. */
12597 gcc_assert (!uses_template_parms (t));
12598 return t;
12599
12600 default:
12601 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
12602 gcc_checking_assert (false);
12603 return t;
12604 }
12605 }
12606
12607 /* Like tsubst_copy, but specifically for OpenMP clauses. */
12608
12609 static tree
12610 tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
12611 tree in_decl)
12612 {
12613 tree new_clauses = NULL, nc, oc;
12614
12615 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
12616 {
12617 nc = copy_node (oc);
12618 OMP_CLAUSE_CHAIN (nc) = new_clauses;
12619 new_clauses = nc;
12620
12621 switch (OMP_CLAUSE_CODE (nc))
12622 {
12623 case OMP_CLAUSE_LASTPRIVATE:
12624 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
12625 {
12626 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
12627 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
12628 in_decl, /*integral_constant_expression_p=*/false);
12629 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
12630 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
12631 }
12632 /* FALLTHRU */
12633 case OMP_CLAUSE_PRIVATE:
12634 case OMP_CLAUSE_SHARED:
12635 case OMP_CLAUSE_FIRSTPRIVATE:
12636 case OMP_CLAUSE_REDUCTION:
12637 case OMP_CLAUSE_COPYIN:
12638 case OMP_CLAUSE_COPYPRIVATE:
12639 case OMP_CLAUSE_IF:
12640 case OMP_CLAUSE_NUM_THREADS:
12641 case OMP_CLAUSE_SCHEDULE:
12642 case OMP_CLAUSE_COLLAPSE:
12643 case OMP_CLAUSE_FINAL:
12644 OMP_CLAUSE_OPERAND (nc, 0)
12645 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
12646 in_decl, /*integral_constant_expression_p=*/false);
12647 break;
12648 case OMP_CLAUSE_NOWAIT:
12649 case OMP_CLAUSE_ORDERED:
12650 case OMP_CLAUSE_DEFAULT:
12651 case OMP_CLAUSE_UNTIED:
12652 case OMP_CLAUSE_MERGEABLE:
12653 break;
12654 default:
12655 gcc_unreachable ();
12656 }
12657 }
12658
12659 return finish_omp_clauses (nreverse (new_clauses));
12660 }
12661
12662 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
12663
12664 static tree
12665 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
12666 tree in_decl)
12667 {
12668 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
12669
12670 tree purpose, value, chain;
12671
12672 if (t == NULL)
12673 return t;
12674
12675 if (TREE_CODE (t) != TREE_LIST)
12676 return tsubst_copy_and_build (t, args, complain, in_decl,
12677 /*function_p=*/false,
12678 /*integral_constant_expression_p=*/false);
12679
12680 if (t == void_list_node)
12681 return t;
12682
12683 purpose = TREE_PURPOSE (t);
12684 if (purpose)
12685 purpose = RECUR (purpose);
12686 value = TREE_VALUE (t);
12687 if (value)
12688 {
12689 if (TREE_CODE (value) != LABEL_DECL)
12690 value = RECUR (value);
12691 else
12692 {
12693 value = lookup_label (DECL_NAME (value));
12694 gcc_assert (TREE_CODE (value) == LABEL_DECL);
12695 TREE_USED (value) = 1;
12696 }
12697 }
12698 chain = TREE_CHAIN (t);
12699 if (chain && chain != void_type_node)
12700 chain = RECUR (chain);
12701 return tree_cons (purpose, value, chain);
12702 #undef RECUR
12703 }
12704
12705 /* Substitute one OMP_FOR iterator. */
12706
12707 static void
12708 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
12709 tree condv, tree incrv, tree *clauses,
12710 tree args, tsubst_flags_t complain, tree in_decl,
12711 bool integral_constant_expression_p)
12712 {
12713 #define RECUR(NODE) \
12714 tsubst_expr ((NODE), args, complain, in_decl, \
12715 integral_constant_expression_p)
12716 tree decl, init, cond, incr;
12717 bool init_decl;
12718
12719 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
12720 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
12721 decl = TREE_OPERAND (init, 0);
12722 init = TREE_OPERAND (init, 1);
12723 /* Do this before substituting into decl to handle 'auto'. */
12724 init_decl = (init && TREE_CODE (init) == DECL_EXPR);
12725 init = RECUR (init);
12726 decl = RECUR (decl);
12727 if (init_decl)
12728 {
12729 gcc_assert (!processing_template_decl);
12730 init = DECL_INITIAL (decl);
12731 DECL_INITIAL (decl) = NULL_TREE;
12732 }
12733
12734 gcc_assert (!type_dependent_expression_p (decl));
12735
12736 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
12737 {
12738 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
12739 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12740 if (TREE_CODE (incr) == MODIFY_EXPR)
12741 incr = build_x_modify_expr (EXPR_LOCATION (incr),
12742 RECUR (TREE_OPERAND (incr, 0)), NOP_EXPR,
12743 RECUR (TREE_OPERAND (incr, 1)),
12744 complain);
12745 else
12746 incr = RECUR (incr);
12747 TREE_VEC_ELT (declv, i) = decl;
12748 TREE_VEC_ELT (initv, i) = init;
12749 TREE_VEC_ELT (condv, i) = cond;
12750 TREE_VEC_ELT (incrv, i) = incr;
12751 return;
12752 }
12753
12754 if (init && !init_decl)
12755 {
12756 tree c;
12757 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
12758 {
12759 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
12760 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
12761 && OMP_CLAUSE_DECL (c) == decl)
12762 break;
12763 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
12764 && OMP_CLAUSE_DECL (c) == decl)
12765 error ("iteration variable %qD should not be firstprivate", decl);
12766 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
12767 && OMP_CLAUSE_DECL (c) == decl)
12768 error ("iteration variable %qD should not be reduction", decl);
12769 }
12770 if (c == NULL)
12771 {
12772 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
12773 OMP_CLAUSE_DECL (c) = decl;
12774 c = finish_omp_clauses (c);
12775 if (c)
12776 {
12777 OMP_CLAUSE_CHAIN (c) = *clauses;
12778 *clauses = c;
12779 }
12780 }
12781 }
12782 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
12783 if (COMPARISON_CLASS_P (cond))
12784 cond = build2 (TREE_CODE (cond), boolean_type_node,
12785 RECUR (TREE_OPERAND (cond, 0)),
12786 RECUR (TREE_OPERAND (cond, 1)));
12787 else
12788 cond = RECUR (cond);
12789 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12790 switch (TREE_CODE (incr))
12791 {
12792 case PREINCREMENT_EXPR:
12793 case PREDECREMENT_EXPR:
12794 case POSTINCREMENT_EXPR:
12795 case POSTDECREMENT_EXPR:
12796 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
12797 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
12798 break;
12799 case MODIFY_EXPR:
12800 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12801 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12802 {
12803 tree rhs = TREE_OPERAND (incr, 1);
12804 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12805 RECUR (TREE_OPERAND (incr, 0)),
12806 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12807 RECUR (TREE_OPERAND (rhs, 0)),
12808 RECUR (TREE_OPERAND (rhs, 1))));
12809 }
12810 else
12811 incr = RECUR (incr);
12812 break;
12813 case MODOP_EXPR:
12814 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12815 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12816 {
12817 tree lhs = RECUR (TREE_OPERAND (incr, 0));
12818 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
12819 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
12820 TREE_TYPE (decl), lhs,
12821 RECUR (TREE_OPERAND (incr, 2))));
12822 }
12823 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
12824 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
12825 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
12826 {
12827 tree rhs = TREE_OPERAND (incr, 2);
12828 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12829 RECUR (TREE_OPERAND (incr, 0)),
12830 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12831 RECUR (TREE_OPERAND (rhs, 0)),
12832 RECUR (TREE_OPERAND (rhs, 1))));
12833 }
12834 else
12835 incr = RECUR (incr);
12836 break;
12837 default:
12838 incr = RECUR (incr);
12839 break;
12840 }
12841
12842 TREE_VEC_ELT (declv, i) = decl;
12843 TREE_VEC_ELT (initv, i) = init;
12844 TREE_VEC_ELT (condv, i) = cond;
12845 TREE_VEC_ELT (incrv, i) = incr;
12846 #undef RECUR
12847 }
12848
12849 /* Like tsubst_copy for expressions, etc. but also does semantic
12850 processing. */
12851
12852 static tree
12853 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
12854 bool integral_constant_expression_p)
12855 {
12856 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
12857 #define RECUR(NODE) \
12858 tsubst_expr ((NODE), args, complain, in_decl, \
12859 integral_constant_expression_p)
12860
12861 tree stmt, tmp;
12862 tree r;
12863 location_t loc;
12864
12865 if (t == NULL_TREE || t == error_mark_node)
12866 return t;
12867
12868 loc = input_location;
12869 if (EXPR_HAS_LOCATION (t))
12870 input_location = EXPR_LOCATION (t);
12871 if (STATEMENT_CODE_P (TREE_CODE (t)))
12872 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
12873
12874 switch (TREE_CODE (t))
12875 {
12876 case STATEMENT_LIST:
12877 {
12878 tree_stmt_iterator i;
12879 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
12880 RECUR (tsi_stmt (i));
12881 break;
12882 }
12883
12884 case CTOR_INITIALIZER:
12885 finish_mem_initializers (tsubst_initializer_list
12886 (TREE_OPERAND (t, 0), args));
12887 break;
12888
12889 case RETURN_EXPR:
12890 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
12891 break;
12892
12893 case EXPR_STMT:
12894 tmp = RECUR (EXPR_STMT_EXPR (t));
12895 if (EXPR_STMT_STMT_EXPR_RESULT (t))
12896 finish_stmt_expr_expr (tmp, cur_stmt_expr);
12897 else
12898 finish_expr_stmt (tmp);
12899 break;
12900
12901 case USING_STMT:
12902 do_using_directive (USING_STMT_NAMESPACE (t));
12903 break;
12904
12905 case DECL_EXPR:
12906 {
12907 tree decl, pattern_decl;
12908 tree init;
12909
12910 pattern_decl = decl = DECL_EXPR_DECL (t);
12911 if (TREE_CODE (decl) == LABEL_DECL)
12912 finish_label_decl (DECL_NAME (decl));
12913 else if (TREE_CODE (decl) == USING_DECL)
12914 {
12915 tree scope = USING_DECL_SCOPE (decl);
12916 tree name = DECL_NAME (decl);
12917 tree decl;
12918
12919 scope = tsubst (scope, args, complain, in_decl);
12920 decl = lookup_qualified_name (scope, name,
12921 /*is_type_p=*/false,
12922 /*complain=*/false);
12923 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
12924 qualified_name_lookup_error (scope, name, decl, input_location);
12925 else
12926 do_local_using_decl (decl, scope, name);
12927 }
12928 else
12929 {
12930 init = DECL_INITIAL (decl);
12931 decl = tsubst (decl, args, complain, in_decl);
12932 if (decl != error_mark_node)
12933 {
12934 /* By marking the declaration as instantiated, we avoid
12935 trying to instantiate it. Since instantiate_decl can't
12936 handle local variables, and since we've already done
12937 all that needs to be done, that's the right thing to
12938 do. */
12939 if (VAR_P (decl))
12940 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12941 if (VAR_P (decl)
12942 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
12943 /* Anonymous aggregates are a special case. */
12944 finish_anon_union (decl);
12945 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
12946 {
12947 DECL_CONTEXT (decl) = current_function_decl;
12948 if (DECL_NAME (decl) == this_identifier)
12949 {
12950 tree lam = DECL_CONTEXT (current_function_decl);
12951 lam = CLASSTYPE_LAMBDA_EXPR (lam);
12952 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
12953 }
12954 insert_capture_proxy (decl);
12955 }
12956 else if (DECL_IMPLICIT_TYPEDEF_P (t))
12957 /* We already did a pushtag. */;
12958 else
12959 {
12960 int const_init = false;
12961 maybe_push_decl (decl);
12962 if (VAR_P (decl)
12963 && DECL_PRETTY_FUNCTION_P (decl))
12964 {
12965 /* For __PRETTY_FUNCTION__ we have to adjust the
12966 initializer. */
12967 const char *const name
12968 = cxx_printable_name (current_function_decl, 2);
12969 init = cp_fname_init (name, &TREE_TYPE (decl));
12970 }
12971 else
12972 {
12973 tree t = RECUR (init);
12974
12975 if (init && !t)
12976 {
12977 /* If we had an initializer but it
12978 instantiated to nothing,
12979 value-initialize the object. This will
12980 only occur when the initializer was a
12981 pack expansion where the parameter packs
12982 used in that expansion were of length
12983 zero. */
12984 init = build_value_init (TREE_TYPE (decl),
12985 complain);
12986 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12987 init = get_target_expr_sfinae (init, complain);
12988 }
12989 else
12990 init = t;
12991 }
12992
12993 if (VAR_P (decl))
12994 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
12995 (pattern_decl));
12996 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
12997 }
12998 }
12999 }
13000
13001 break;
13002 }
13003
13004 case FOR_STMT:
13005 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13006 RECUR (FOR_INIT_STMT (t));
13007 finish_for_init_stmt (stmt);
13008 tmp = RECUR (FOR_COND (t));
13009 finish_for_cond (tmp, stmt);
13010 tmp = RECUR (FOR_EXPR (t));
13011 finish_for_expr (tmp, stmt);
13012 RECUR (FOR_BODY (t));
13013 finish_for_stmt (stmt);
13014 break;
13015
13016 case RANGE_FOR_STMT:
13017 {
13018 tree decl, expr;
13019 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13020 decl = RANGE_FOR_DECL (t);
13021 decl = tsubst (decl, args, complain, in_decl);
13022 maybe_push_decl (decl);
13023 expr = RECUR (RANGE_FOR_EXPR (t));
13024 stmt = cp_convert_range_for (stmt, decl, expr);
13025 RECUR (RANGE_FOR_BODY (t));
13026 finish_for_stmt (stmt);
13027 }
13028 break;
13029
13030 case WHILE_STMT:
13031 stmt = begin_while_stmt ();
13032 tmp = RECUR (WHILE_COND (t));
13033 finish_while_stmt_cond (tmp, stmt);
13034 RECUR (WHILE_BODY (t));
13035 finish_while_stmt (stmt);
13036 break;
13037
13038 case DO_STMT:
13039 stmt = begin_do_stmt ();
13040 RECUR (DO_BODY (t));
13041 finish_do_body (stmt);
13042 tmp = RECUR (DO_COND (t));
13043 finish_do_stmt (tmp, stmt);
13044 break;
13045
13046 case IF_STMT:
13047 stmt = begin_if_stmt ();
13048 tmp = RECUR (IF_COND (t));
13049 finish_if_stmt_cond (tmp, stmt);
13050 RECUR (THEN_CLAUSE (t));
13051 finish_then_clause (stmt);
13052
13053 if (ELSE_CLAUSE (t))
13054 {
13055 begin_else_clause (stmt);
13056 RECUR (ELSE_CLAUSE (t));
13057 finish_else_clause (stmt);
13058 }
13059
13060 finish_if_stmt (stmt);
13061 break;
13062
13063 case BIND_EXPR:
13064 if (BIND_EXPR_BODY_BLOCK (t))
13065 stmt = begin_function_body ();
13066 else
13067 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13068 ? BCS_TRY_BLOCK : 0);
13069
13070 RECUR (BIND_EXPR_BODY (t));
13071
13072 if (BIND_EXPR_BODY_BLOCK (t))
13073 finish_function_body (stmt);
13074 else
13075 finish_compound_stmt (stmt);
13076 break;
13077
13078 case BREAK_STMT:
13079 finish_break_stmt ();
13080 break;
13081
13082 case CONTINUE_STMT:
13083 finish_continue_stmt ();
13084 break;
13085
13086 case SWITCH_STMT:
13087 stmt = begin_switch_stmt ();
13088 tmp = RECUR (SWITCH_STMT_COND (t));
13089 finish_switch_cond (tmp, stmt);
13090 RECUR (SWITCH_STMT_BODY (t));
13091 finish_switch_stmt (stmt);
13092 break;
13093
13094 case CASE_LABEL_EXPR:
13095 finish_case_label (EXPR_LOCATION (t),
13096 RECUR (CASE_LOW (t)),
13097 RECUR (CASE_HIGH (t)));
13098 break;
13099
13100 case LABEL_EXPR:
13101 {
13102 tree decl = LABEL_EXPR_LABEL (t);
13103 tree label;
13104
13105 label = finish_label_stmt (DECL_NAME (decl));
13106 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13107 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13108 }
13109 break;
13110
13111 case GOTO_EXPR:
13112 tmp = GOTO_DESTINATION (t);
13113 if (TREE_CODE (tmp) != LABEL_DECL)
13114 /* Computed goto's must be tsubst'd into. On the other hand,
13115 non-computed gotos must not be; the identifier in question
13116 will have no binding. */
13117 tmp = RECUR (tmp);
13118 else
13119 tmp = DECL_NAME (tmp);
13120 finish_goto_stmt (tmp);
13121 break;
13122
13123 case ASM_EXPR:
13124 tmp = finish_asm_stmt
13125 (ASM_VOLATILE_P (t),
13126 RECUR (ASM_STRING (t)),
13127 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
13128 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
13129 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl),
13130 tsubst_copy_asm_operands (ASM_LABELS (t), args, complain, in_decl));
13131 {
13132 tree asm_expr = tmp;
13133 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
13134 asm_expr = TREE_OPERAND (asm_expr, 0);
13135 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
13136 }
13137 break;
13138
13139 case TRY_BLOCK:
13140 if (CLEANUP_P (t))
13141 {
13142 stmt = begin_try_block ();
13143 RECUR (TRY_STMTS (t));
13144 finish_cleanup_try_block (stmt);
13145 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
13146 }
13147 else
13148 {
13149 tree compound_stmt = NULL_TREE;
13150
13151 if (FN_TRY_BLOCK_P (t))
13152 stmt = begin_function_try_block (&compound_stmt);
13153 else
13154 stmt = begin_try_block ();
13155
13156 RECUR (TRY_STMTS (t));
13157
13158 if (FN_TRY_BLOCK_P (t))
13159 finish_function_try_block (stmt);
13160 else
13161 finish_try_block (stmt);
13162
13163 RECUR (TRY_HANDLERS (t));
13164 if (FN_TRY_BLOCK_P (t))
13165 finish_function_handler_sequence (stmt, compound_stmt);
13166 else
13167 finish_handler_sequence (stmt);
13168 }
13169 break;
13170
13171 case HANDLER:
13172 {
13173 tree decl = HANDLER_PARMS (t);
13174
13175 if (decl)
13176 {
13177 decl = tsubst (decl, args, complain, in_decl);
13178 /* Prevent instantiate_decl from trying to instantiate
13179 this variable. We've already done all that needs to be
13180 done. */
13181 if (decl != error_mark_node)
13182 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13183 }
13184 stmt = begin_handler ();
13185 finish_handler_parms (decl, stmt);
13186 RECUR (HANDLER_BODY (t));
13187 finish_handler (stmt);
13188 }
13189 break;
13190
13191 case TAG_DEFN:
13192 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
13193 if (CLASS_TYPE_P (tmp))
13194 {
13195 /* Local classes are not independent templates; they are
13196 instantiated along with their containing function. And this
13197 way we don't have to deal with pushing out of one local class
13198 to instantiate a member of another local class. */
13199 tree fn;
13200 /* Closures are handled by the LAMBDA_EXPR. */
13201 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
13202 complete_type (tmp);
13203 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
13204 if (!DECL_ARTIFICIAL (fn))
13205 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
13206 }
13207 break;
13208
13209 case STATIC_ASSERT:
13210 {
13211 tree condition;
13212
13213 ++c_inhibit_evaluation_warnings;
13214 condition =
13215 tsubst_expr (STATIC_ASSERT_CONDITION (t),
13216 args,
13217 complain, in_decl,
13218 /*integral_constant_expression_p=*/true);
13219 --c_inhibit_evaluation_warnings;
13220
13221 finish_static_assert (condition,
13222 STATIC_ASSERT_MESSAGE (t),
13223 STATIC_ASSERT_SOURCE_LOCATION (t),
13224 /*member_p=*/false);
13225 }
13226 break;
13227
13228 case OMP_PARALLEL:
13229 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
13230 args, complain, in_decl);
13231 stmt = begin_omp_parallel ();
13232 RECUR (OMP_PARALLEL_BODY (t));
13233 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
13234 = OMP_PARALLEL_COMBINED (t);
13235 break;
13236
13237 case OMP_TASK:
13238 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t),
13239 args, complain, in_decl);
13240 stmt = begin_omp_task ();
13241 RECUR (OMP_TASK_BODY (t));
13242 finish_omp_task (tmp, stmt);
13243 break;
13244
13245 case OMP_FOR:
13246 {
13247 tree clauses, body, pre_body;
13248 tree declv, initv, condv, incrv;
13249 int i;
13250
13251 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
13252 args, complain, in_decl);
13253 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13254 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13255 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13256 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13257
13258 stmt = begin_omp_structured_block ();
13259
13260 pre_body = push_stmt_list ();
13261 RECUR (OMP_FOR_PRE_BODY (t));
13262 pre_body = pop_stmt_list (pre_body);
13263
13264 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
13265 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
13266 &clauses, args, complain, in_decl,
13267 integral_constant_expression_p);
13268
13269 body = push_stmt_list ();
13270 RECUR (OMP_FOR_BODY (t));
13271 body = pop_stmt_list (body);
13272
13273 t = finish_omp_for (EXPR_LOCATION (t), declv, initv, condv, incrv,
13274 body, pre_body, clauses);
13275
13276 add_stmt (finish_omp_structured_block (stmt));
13277 }
13278 break;
13279
13280 case OMP_SECTIONS:
13281 case OMP_SINGLE:
13282 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
13283 stmt = push_stmt_list ();
13284 RECUR (OMP_BODY (t));
13285 stmt = pop_stmt_list (stmt);
13286
13287 t = copy_node (t);
13288 OMP_BODY (t) = stmt;
13289 OMP_CLAUSES (t) = tmp;
13290 add_stmt (t);
13291 break;
13292
13293 case OMP_SECTION:
13294 case OMP_CRITICAL:
13295 case OMP_MASTER:
13296 case OMP_ORDERED:
13297 stmt = push_stmt_list ();
13298 RECUR (OMP_BODY (t));
13299 stmt = pop_stmt_list (stmt);
13300
13301 t = copy_node (t);
13302 OMP_BODY (t) = stmt;
13303 add_stmt (t);
13304 break;
13305
13306 case OMP_ATOMIC:
13307 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
13308 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
13309 {
13310 tree op1 = TREE_OPERAND (t, 1);
13311 tree rhs1 = NULL_TREE;
13312 tree lhs, rhs;
13313 if (TREE_CODE (op1) == COMPOUND_EXPR)
13314 {
13315 rhs1 = RECUR (TREE_OPERAND (op1, 0));
13316 op1 = TREE_OPERAND (op1, 1);
13317 }
13318 lhs = RECUR (TREE_OPERAND (op1, 0));
13319 rhs = RECUR (TREE_OPERAND (op1, 1));
13320 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
13321 NULL_TREE, NULL_TREE, rhs1);
13322 }
13323 else
13324 {
13325 tree op1 = TREE_OPERAND (t, 1);
13326 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
13327 tree rhs1 = NULL_TREE;
13328 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
13329 enum tree_code opcode = NOP_EXPR;
13330 if (code == OMP_ATOMIC_READ)
13331 {
13332 v = RECUR (TREE_OPERAND (op1, 0));
13333 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13334 }
13335 else if (code == OMP_ATOMIC_CAPTURE_OLD
13336 || code == OMP_ATOMIC_CAPTURE_NEW)
13337 {
13338 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
13339 v = RECUR (TREE_OPERAND (op1, 0));
13340 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13341 if (TREE_CODE (op11) == COMPOUND_EXPR)
13342 {
13343 rhs1 = RECUR (TREE_OPERAND (op11, 0));
13344 op11 = TREE_OPERAND (op11, 1);
13345 }
13346 lhs = RECUR (TREE_OPERAND (op11, 0));
13347 rhs = RECUR (TREE_OPERAND (op11, 1));
13348 opcode = TREE_CODE (op11);
13349 }
13350 else
13351 {
13352 code = OMP_ATOMIC;
13353 lhs = RECUR (TREE_OPERAND (op1, 0));
13354 rhs = RECUR (TREE_OPERAND (op1, 1));
13355 }
13356 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1);
13357 }
13358 break;
13359
13360 case TRANSACTION_EXPR:
13361 {
13362 int flags = 0;
13363 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
13364 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
13365
13366 if (TRANSACTION_EXPR_IS_STMT (t))
13367 {
13368 tree body = TRANSACTION_EXPR_BODY (t);
13369 tree noex = NULL_TREE;
13370 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
13371 {
13372 noex = MUST_NOT_THROW_COND (body);
13373 if (noex == NULL_TREE)
13374 noex = boolean_true_node;
13375 body = TREE_OPERAND (body, 0);
13376 }
13377 stmt = begin_transaction_stmt (input_location, NULL, flags);
13378 RECUR (body);
13379 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
13380 }
13381 else
13382 {
13383 stmt = build_transaction_expr (EXPR_LOCATION (t),
13384 RECUR (TRANSACTION_EXPR_BODY (t)),
13385 flags, NULL_TREE);
13386 RETURN (stmt);
13387 }
13388 }
13389 break;
13390
13391 case MUST_NOT_THROW_EXPR:
13392 RETURN (build_must_not_throw_expr (RECUR (TREE_OPERAND (t, 0)),
13393 RECUR (MUST_NOT_THROW_COND (t))));
13394
13395 case EXPR_PACK_EXPANSION:
13396 error ("invalid use of pack expansion expression");
13397 RETURN (error_mark_node);
13398
13399 case NONTYPE_ARGUMENT_PACK:
13400 error ("use %<...%> to expand argument pack");
13401 RETURN (error_mark_node);
13402
13403 case COMPOUND_EXPR:
13404 tmp = RECUR (TREE_OPERAND (t, 0));
13405 if (tmp == NULL_TREE)
13406 /* If the first operand was a statement, we're done with it. */
13407 RETURN (RECUR (TREE_OPERAND (t, 1)));
13408 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
13409 RECUR (TREE_OPERAND (t, 1)),
13410 complain));
13411
13412 default:
13413 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
13414
13415 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
13416 /*function_p=*/false,
13417 integral_constant_expression_p));
13418 }
13419
13420 RETURN (NULL_TREE);
13421 out:
13422 input_location = loc;
13423 return r;
13424 #undef RECUR
13425 #undef RETURN
13426 }
13427
13428 /* T is a postfix-expression that is not being used in a function
13429 call. Return the substituted version of T. */
13430
13431 static tree
13432 tsubst_non_call_postfix_expression (tree t, tree args,
13433 tsubst_flags_t complain,
13434 tree in_decl)
13435 {
13436 if (TREE_CODE (t) == SCOPE_REF)
13437 t = tsubst_qualified_id (t, args, complain, in_decl,
13438 /*done=*/false, /*address_p=*/false);
13439 else
13440 t = tsubst_copy_and_build (t, args, complain, in_decl,
13441 /*function_p=*/false,
13442 /*integral_constant_expression_p=*/false);
13443
13444 return t;
13445 }
13446
13447 /* Like tsubst but deals with expressions and performs semantic
13448 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
13449
13450 tree
13451 tsubst_copy_and_build (tree t,
13452 tree args,
13453 tsubst_flags_t complain,
13454 tree in_decl,
13455 bool function_p,
13456 bool integral_constant_expression_p)
13457 {
13458 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
13459 #define RECUR(NODE) \
13460 tsubst_copy_and_build (NODE, args, complain, in_decl, \
13461 /*function_p=*/false, \
13462 integral_constant_expression_p)
13463
13464 tree retval, op1;
13465 location_t loc;
13466
13467 if (t == NULL_TREE || t == error_mark_node)
13468 return t;
13469
13470 loc = input_location;
13471 if (EXPR_HAS_LOCATION (t))
13472 input_location = EXPR_LOCATION (t);
13473
13474 /* N3276 decltype magic only applies to calls at the top level or on the
13475 right side of a comma. */
13476 tsubst_flags_t decltype_flag = (complain & tf_decltype);
13477 complain &= ~tf_decltype;
13478
13479 switch (TREE_CODE (t))
13480 {
13481 case USING_DECL:
13482 t = DECL_NAME (t);
13483 /* Fall through. */
13484 case IDENTIFIER_NODE:
13485 {
13486 tree decl;
13487 cp_id_kind idk;
13488 bool non_integral_constant_expression_p;
13489 const char *error_msg;
13490
13491 if (IDENTIFIER_TYPENAME_P (t))
13492 {
13493 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13494 t = mangle_conv_op_name_for_type (new_type);
13495 }
13496
13497 /* Look up the name. */
13498 decl = lookup_name (t);
13499
13500 /* By convention, expressions use ERROR_MARK_NODE to indicate
13501 failure, not NULL_TREE. */
13502 if (decl == NULL_TREE)
13503 decl = error_mark_node;
13504
13505 decl = finish_id_expression (t, decl, NULL_TREE,
13506 &idk,
13507 integral_constant_expression_p,
13508 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx0x),
13509 &non_integral_constant_expression_p,
13510 /*template_p=*/false,
13511 /*done=*/true,
13512 /*address_p=*/false,
13513 /*template_arg_p=*/false,
13514 &error_msg,
13515 input_location);
13516 if (error_msg)
13517 error (error_msg);
13518 if (!function_p && identifier_p (decl))
13519 {
13520 if (complain & tf_error)
13521 unqualified_name_lookup_error (decl);
13522 decl = error_mark_node;
13523 }
13524 RETURN (decl);
13525 }
13526
13527 case TEMPLATE_ID_EXPR:
13528 {
13529 tree object;
13530 tree templ = RECUR (TREE_OPERAND (t, 0));
13531 tree targs = TREE_OPERAND (t, 1);
13532
13533 if (targs)
13534 targs = tsubst_template_args (targs, args, complain, in_decl);
13535
13536 if (TREE_CODE (templ) == COMPONENT_REF)
13537 {
13538 object = TREE_OPERAND (templ, 0);
13539 templ = TREE_OPERAND (templ, 1);
13540 }
13541 else
13542 object = NULL_TREE;
13543 templ = lookup_template_function (templ, targs);
13544
13545 if (object)
13546 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
13547 object, templ, NULL_TREE));
13548 else
13549 RETURN (baselink_for_fns (templ));
13550 }
13551
13552 case INDIRECT_REF:
13553 {
13554 tree r = RECUR (TREE_OPERAND (t, 0));
13555
13556 if (REFERENCE_REF_P (t))
13557 {
13558 /* A type conversion to reference type will be enclosed in
13559 such an indirect ref, but the substitution of the cast
13560 will have also added such an indirect ref. */
13561 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
13562 r = convert_from_reference (r);
13563 }
13564 else
13565 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
13566 complain|decltype_flag);
13567 RETURN (r);
13568 }
13569
13570 case NOP_EXPR:
13571 RETURN (build_nop
13572 (tsubst (TREE_TYPE (t), args, complain, in_decl),
13573 RECUR (TREE_OPERAND (t, 0))));
13574
13575 case IMPLICIT_CONV_EXPR:
13576 {
13577 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13578 tree expr = RECUR (TREE_OPERAND (t, 0));
13579 int flags = LOOKUP_IMPLICIT;
13580 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
13581 flags = LOOKUP_NORMAL;
13582 RETURN (perform_implicit_conversion_flags (type, expr, complain,
13583 flags));
13584 }
13585
13586 case CONVERT_EXPR:
13587 RETURN (build1
13588 (CONVERT_EXPR,
13589 tsubst (TREE_TYPE (t), args, complain, in_decl),
13590 RECUR (TREE_OPERAND (t, 0))));
13591
13592 case CAST_EXPR:
13593 case REINTERPRET_CAST_EXPR:
13594 case CONST_CAST_EXPR:
13595 case DYNAMIC_CAST_EXPR:
13596 case STATIC_CAST_EXPR:
13597 {
13598 tree type;
13599 tree op, r = NULL_TREE;
13600
13601 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13602 if (integral_constant_expression_p
13603 && !cast_valid_in_integral_constant_expression_p (type))
13604 {
13605 if (complain & tf_error)
13606 error ("a cast to a type other than an integral or "
13607 "enumeration type cannot appear in a constant-expression");
13608 RETURN (error_mark_node);
13609 }
13610
13611 op = RECUR (TREE_OPERAND (t, 0));
13612
13613 ++c_inhibit_evaluation_warnings;
13614 switch (TREE_CODE (t))
13615 {
13616 case CAST_EXPR:
13617 r = build_functional_cast (type, op, complain);
13618 break;
13619 case REINTERPRET_CAST_EXPR:
13620 r = build_reinterpret_cast (type, op, complain);
13621 break;
13622 case CONST_CAST_EXPR:
13623 r = build_const_cast (type, op, complain);
13624 break;
13625 case DYNAMIC_CAST_EXPR:
13626 r = build_dynamic_cast (type, op, complain);
13627 break;
13628 case STATIC_CAST_EXPR:
13629 r = build_static_cast (type, op, complain);
13630 break;
13631 default:
13632 gcc_unreachable ();
13633 }
13634 --c_inhibit_evaluation_warnings;
13635
13636 RETURN (r);
13637 }
13638
13639 case POSTDECREMENT_EXPR:
13640 case POSTINCREMENT_EXPR:
13641 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13642 args, complain, in_decl);
13643 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
13644 complain|decltype_flag));
13645
13646 case PREDECREMENT_EXPR:
13647 case PREINCREMENT_EXPR:
13648 case NEGATE_EXPR:
13649 case BIT_NOT_EXPR:
13650 case ABS_EXPR:
13651 case TRUTH_NOT_EXPR:
13652 case UNARY_PLUS_EXPR: /* Unary + */
13653 case REALPART_EXPR:
13654 case IMAGPART_EXPR:
13655 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
13656 RECUR (TREE_OPERAND (t, 0)),
13657 complain|decltype_flag));
13658
13659 case FIX_TRUNC_EXPR:
13660 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
13661 0, complain));
13662
13663 case ADDR_EXPR:
13664 op1 = TREE_OPERAND (t, 0);
13665 if (TREE_CODE (op1) == LABEL_DECL)
13666 RETURN (finish_label_address_expr (DECL_NAME (op1),
13667 EXPR_LOCATION (op1)));
13668 if (TREE_CODE (op1) == SCOPE_REF)
13669 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
13670 /*done=*/true, /*address_p=*/true);
13671 else
13672 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
13673 in_decl);
13674 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
13675 complain|decltype_flag));
13676
13677 case PLUS_EXPR:
13678 case MINUS_EXPR:
13679 case MULT_EXPR:
13680 case TRUNC_DIV_EXPR:
13681 case CEIL_DIV_EXPR:
13682 case FLOOR_DIV_EXPR:
13683 case ROUND_DIV_EXPR:
13684 case EXACT_DIV_EXPR:
13685 case BIT_AND_EXPR:
13686 case BIT_IOR_EXPR:
13687 case BIT_XOR_EXPR:
13688 case TRUNC_MOD_EXPR:
13689 case FLOOR_MOD_EXPR:
13690 case TRUTH_ANDIF_EXPR:
13691 case TRUTH_ORIF_EXPR:
13692 case TRUTH_AND_EXPR:
13693 case TRUTH_OR_EXPR:
13694 case RSHIFT_EXPR:
13695 case LSHIFT_EXPR:
13696 case RROTATE_EXPR:
13697 case LROTATE_EXPR:
13698 case EQ_EXPR:
13699 case NE_EXPR:
13700 case MAX_EXPR:
13701 case MIN_EXPR:
13702 case LE_EXPR:
13703 case GE_EXPR:
13704 case LT_EXPR:
13705 case GT_EXPR:
13706 case MEMBER_REF:
13707 case DOTSTAR_EXPR:
13708 {
13709 tree r;
13710
13711 ++c_inhibit_evaluation_warnings;
13712
13713 r = build_x_binary_op
13714 (input_location, TREE_CODE (t),
13715 RECUR (TREE_OPERAND (t, 0)),
13716 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
13717 ? ERROR_MARK
13718 : TREE_CODE (TREE_OPERAND (t, 0))),
13719 RECUR (TREE_OPERAND (t, 1)),
13720 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
13721 ? ERROR_MARK
13722 : TREE_CODE (TREE_OPERAND (t, 1))),
13723 /*overload=*/NULL,
13724 complain|decltype_flag);
13725 if (EXPR_P (r) && TREE_NO_WARNING (t))
13726 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13727
13728 --c_inhibit_evaluation_warnings;
13729
13730 RETURN (r);
13731 }
13732
13733 case SCOPE_REF:
13734 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
13735 /*address_p=*/false));
13736 case ARRAY_REF:
13737 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13738 args, complain, in_decl);
13739 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
13740 RECUR (TREE_OPERAND (t, 1)),
13741 complain|decltype_flag));
13742
13743 case SIZEOF_EXPR:
13744 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13745 RETURN (tsubst_copy (t, args, complain, in_decl));
13746 /* Fall through */
13747
13748 case ALIGNOF_EXPR:
13749 {
13750 tree r;
13751
13752 op1 = TREE_OPERAND (t, 0);
13753 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
13754 op1 = TREE_TYPE (op1);
13755 if (!args)
13756 {
13757 /* When there are no ARGS, we are trying to evaluate a
13758 non-dependent expression from the parser. Trying to do
13759 the substitutions may not work. */
13760 if (!TYPE_P (op1))
13761 op1 = TREE_TYPE (op1);
13762 }
13763 else
13764 {
13765 ++cp_unevaluated_operand;
13766 ++c_inhibit_evaluation_warnings;
13767 if (TYPE_P (op1))
13768 op1 = tsubst (op1, args, complain, in_decl);
13769 else
13770 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13771 /*function_p=*/false,
13772 /*integral_constant_expression_p=*/
13773 false);
13774 --cp_unevaluated_operand;
13775 --c_inhibit_evaluation_warnings;
13776 }
13777 if (TYPE_P (op1))
13778 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
13779 complain & tf_error);
13780 else
13781 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
13782 complain & tf_error);
13783 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
13784 {
13785 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
13786 {
13787 if (!processing_template_decl && TYPE_P (op1))
13788 {
13789 r = build_min (SIZEOF_EXPR, size_type_node,
13790 build1 (NOP_EXPR, op1, error_mark_node));
13791 SIZEOF_EXPR_TYPE_P (r) = 1;
13792 }
13793 else
13794 r = build_min (SIZEOF_EXPR, size_type_node, op1);
13795 TREE_SIDE_EFFECTS (r) = 0;
13796 TREE_READONLY (r) = 1;
13797 }
13798 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
13799 }
13800 RETURN (r);
13801 }
13802
13803 case AT_ENCODE_EXPR:
13804 {
13805 op1 = TREE_OPERAND (t, 0);
13806 ++cp_unevaluated_operand;
13807 ++c_inhibit_evaluation_warnings;
13808 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13809 /*function_p=*/false,
13810 /*integral_constant_expression_p=*/false);
13811 --cp_unevaluated_operand;
13812 --c_inhibit_evaluation_warnings;
13813 RETURN (objc_build_encode_expr (op1));
13814 }
13815
13816 case NOEXCEPT_EXPR:
13817 op1 = TREE_OPERAND (t, 0);
13818 ++cp_unevaluated_operand;
13819 ++c_inhibit_evaluation_warnings;
13820 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13821 /*function_p=*/false,
13822 /*integral_constant_expression_p=*/false);
13823 --cp_unevaluated_operand;
13824 --c_inhibit_evaluation_warnings;
13825 RETURN (finish_noexcept_expr (op1, complain));
13826
13827 case MODOP_EXPR:
13828 {
13829 tree r;
13830
13831 ++c_inhibit_evaluation_warnings;
13832
13833 r = build_x_modify_expr
13834 (EXPR_LOCATION (t),
13835 RECUR (TREE_OPERAND (t, 0)),
13836 TREE_CODE (TREE_OPERAND (t, 1)),
13837 RECUR (TREE_OPERAND (t, 2)),
13838 complain|decltype_flag);
13839 /* TREE_NO_WARNING must be set if either the expression was
13840 parenthesized or it uses an operator such as >>= rather
13841 than plain assignment. In the former case, it was already
13842 set and must be copied. In the latter case,
13843 build_x_modify_expr sets it and it must not be reset
13844 here. */
13845 if (TREE_NO_WARNING (t))
13846 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13847
13848 --c_inhibit_evaluation_warnings;
13849
13850 RETURN (r);
13851 }
13852
13853 case ARROW_EXPR:
13854 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13855 args, complain, in_decl);
13856 /* Remember that there was a reference to this entity. */
13857 if (DECL_P (op1))
13858 mark_used (op1);
13859 RETURN (build_x_arrow (input_location, op1, complain));
13860
13861 case NEW_EXPR:
13862 {
13863 tree placement = RECUR (TREE_OPERAND (t, 0));
13864 tree init = RECUR (TREE_OPERAND (t, 3));
13865 vec<tree, va_gc> *placement_vec;
13866 vec<tree, va_gc> *init_vec;
13867 tree ret;
13868
13869 if (placement == NULL_TREE)
13870 placement_vec = NULL;
13871 else
13872 {
13873 placement_vec = make_tree_vector ();
13874 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
13875 vec_safe_push (placement_vec, TREE_VALUE (placement));
13876 }
13877
13878 /* If there was an initializer in the original tree, but it
13879 instantiated to an empty list, then we should pass a
13880 non-NULL empty vector to tell build_new that it was an
13881 empty initializer() rather than no initializer. This can
13882 only happen when the initializer is a pack expansion whose
13883 parameter packs are of length zero. */
13884 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
13885 init_vec = NULL;
13886 else
13887 {
13888 init_vec = make_tree_vector ();
13889 if (init == void_zero_node)
13890 gcc_assert (init_vec != NULL);
13891 else
13892 {
13893 for (; init != NULL_TREE; init = TREE_CHAIN (init))
13894 vec_safe_push (init_vec, TREE_VALUE (init));
13895 }
13896 }
13897
13898 ret = build_new (&placement_vec,
13899 tsubst (TREE_OPERAND (t, 1), args, complain, in_decl),
13900 RECUR (TREE_OPERAND (t, 2)),
13901 &init_vec,
13902 NEW_EXPR_USE_GLOBAL (t),
13903 complain);
13904
13905 if (placement_vec != NULL)
13906 release_tree_vector (placement_vec);
13907 if (init_vec != NULL)
13908 release_tree_vector (init_vec);
13909
13910 RETURN (ret);
13911 }
13912
13913 case DELETE_EXPR:
13914 RETURN (delete_sanity
13915 (RECUR (TREE_OPERAND (t, 0)),
13916 RECUR (TREE_OPERAND (t, 1)),
13917 DELETE_EXPR_USE_VEC (t),
13918 DELETE_EXPR_USE_GLOBAL (t),
13919 complain));
13920
13921 case COMPOUND_EXPR:
13922 {
13923 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
13924 complain & ~tf_decltype, in_decl,
13925 /*function_p=*/false,
13926 integral_constant_expression_p);
13927 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
13928 op0,
13929 RECUR (TREE_OPERAND (t, 1)),
13930 complain|decltype_flag));
13931 }
13932
13933 case CALL_EXPR:
13934 {
13935 tree function;
13936 vec<tree, va_gc> *call_args;
13937 unsigned int nargs, i;
13938 bool qualified_p;
13939 bool koenig_p;
13940 tree ret;
13941
13942 function = CALL_EXPR_FN (t);
13943 /* When we parsed the expression, we determined whether or
13944 not Koenig lookup should be performed. */
13945 koenig_p = KOENIG_LOOKUP_P (t);
13946 if (TREE_CODE (function) == SCOPE_REF)
13947 {
13948 qualified_p = true;
13949 function = tsubst_qualified_id (function, args, complain, in_decl,
13950 /*done=*/false,
13951 /*address_p=*/false);
13952 }
13953 else if (koenig_p && identifier_p (function))
13954 {
13955 /* Do nothing; calling tsubst_copy_and_build on an identifier
13956 would incorrectly perform unqualified lookup again.
13957
13958 Note that we can also have an IDENTIFIER_NODE if the earlier
13959 unqualified lookup found a member function; in that case
13960 koenig_p will be false and we do want to do the lookup
13961 again to find the instantiated member function.
13962
13963 FIXME but doing that causes c++/15272, so we need to stop
13964 using IDENTIFIER_NODE in that situation. */
13965 qualified_p = false;
13966 }
13967 else
13968 {
13969 if (TREE_CODE (function) == COMPONENT_REF)
13970 {
13971 tree op = TREE_OPERAND (function, 1);
13972
13973 qualified_p = (TREE_CODE (op) == SCOPE_REF
13974 || (BASELINK_P (op)
13975 && BASELINK_QUALIFIED_P (op)));
13976 }
13977 else
13978 qualified_p = false;
13979
13980 if (TREE_CODE (function) == ADDR_EXPR
13981 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
13982 /* Avoid error about taking the address of a constructor. */
13983 function = TREE_OPERAND (function, 0);
13984
13985 function = tsubst_copy_and_build (function, args, complain,
13986 in_decl,
13987 !qualified_p,
13988 integral_constant_expression_p);
13989
13990 if (BASELINK_P (function))
13991 qualified_p = true;
13992 }
13993
13994 nargs = call_expr_nargs (t);
13995 call_args = make_tree_vector ();
13996 for (i = 0; i < nargs; ++i)
13997 {
13998 tree arg = CALL_EXPR_ARG (t, i);
13999
14000 if (!PACK_EXPANSION_P (arg))
14001 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
14002 else
14003 {
14004 /* Expand the pack expansion and push each entry onto
14005 CALL_ARGS. */
14006 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
14007 if (TREE_CODE (arg) == TREE_VEC)
14008 {
14009 unsigned int len, j;
14010
14011 len = TREE_VEC_LENGTH (arg);
14012 for (j = 0; j < len; ++j)
14013 {
14014 tree value = TREE_VEC_ELT (arg, j);
14015 if (value != NULL_TREE)
14016 value = convert_from_reference (value);
14017 vec_safe_push (call_args, value);
14018 }
14019 }
14020 else
14021 {
14022 /* A partial substitution. Add one entry. */
14023 vec_safe_push (call_args, arg);
14024 }
14025 }
14026 }
14027
14028 /* We do not perform argument-dependent lookup if normal
14029 lookup finds a non-function, in accordance with the
14030 expected resolution of DR 218. */
14031 if (koenig_p
14032 && ((is_overloaded_fn (function)
14033 /* If lookup found a member function, the Koenig lookup is
14034 not appropriate, even if an unqualified-name was used
14035 to denote the function. */
14036 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
14037 || identifier_p (function))
14038 /* Only do this when substitution turns a dependent call
14039 into a non-dependent call. */
14040 && type_dependent_expression_p_push (t)
14041 && !any_type_dependent_arguments_p (call_args))
14042 function = perform_koenig_lookup (function, call_args, false,
14043 tf_none);
14044
14045 if (identifier_p (function)
14046 && !any_type_dependent_arguments_p (call_args))
14047 {
14048 if (koenig_p && (complain & tf_warning_or_error))
14049 {
14050 /* For backwards compatibility and good diagnostics, try
14051 the unqualified lookup again if we aren't in SFINAE
14052 context. */
14053 tree unq = (tsubst_copy_and_build
14054 (function, args, complain, in_decl, true,
14055 integral_constant_expression_p));
14056 if (unq == error_mark_node)
14057 RETURN (error_mark_node);
14058
14059 if (unq != function)
14060 {
14061 tree fn = unq;
14062 if (INDIRECT_REF_P (fn))
14063 fn = TREE_OPERAND (fn, 0);
14064 if (TREE_CODE (fn) == COMPONENT_REF)
14065 fn = TREE_OPERAND (fn, 1);
14066 if (is_overloaded_fn (fn))
14067 fn = get_first_fn (fn);
14068 if (permerror (EXPR_LOC_OR_HERE (t),
14069 "%qD was not declared in this scope, "
14070 "and no declarations were found by "
14071 "argument-dependent lookup at the point "
14072 "of instantiation", function))
14073 {
14074 if (!DECL_P (fn))
14075 /* Can't say anything more. */;
14076 else if (DECL_CLASS_SCOPE_P (fn))
14077 {
14078 inform (EXPR_LOC_OR_HERE (t),
14079 "declarations in dependent base %qT are "
14080 "not found by unqualified lookup",
14081 DECL_CLASS_CONTEXT (fn));
14082 if (current_class_ptr)
14083 inform (EXPR_LOC_OR_HERE (t),
14084 "use %<this->%D%> instead", function);
14085 else
14086 inform (EXPR_LOC_OR_HERE (t),
14087 "use %<%T::%D%> instead",
14088 current_class_name, function);
14089 }
14090 else
14091 inform (0, "%q+D declared here, later in the "
14092 "translation unit", fn);
14093 }
14094 function = unq;
14095 }
14096 }
14097 if (identifier_p (function))
14098 {
14099 if (complain & tf_error)
14100 unqualified_name_lookup_error (function);
14101 release_tree_vector (call_args);
14102 RETURN (error_mark_node);
14103 }
14104 }
14105
14106 /* Remember that there was a reference to this entity. */
14107 if (DECL_P (function))
14108 mark_used (function);
14109
14110 /* Put back tf_decltype for the actual call. */
14111 complain |= decltype_flag;
14112
14113 if (TREE_CODE (function) == OFFSET_REF)
14114 ret = build_offset_ref_call_from_tree (function, &call_args,
14115 complain);
14116 else if (TREE_CODE (function) == COMPONENT_REF)
14117 {
14118 tree instance = TREE_OPERAND (function, 0);
14119 tree fn = TREE_OPERAND (function, 1);
14120
14121 if (processing_template_decl
14122 && (type_dependent_expression_p (instance)
14123 || (!BASELINK_P (fn)
14124 && TREE_CODE (fn) != FIELD_DECL)
14125 || type_dependent_expression_p (fn)
14126 || any_type_dependent_arguments_p (call_args)))
14127 ret = build_nt_call_vec (function, call_args);
14128 else if (!BASELINK_P (fn))
14129 ret = finish_call_expr (function, &call_args,
14130 /*disallow_virtual=*/false,
14131 /*koenig_p=*/false,
14132 complain);
14133 else
14134 ret = (build_new_method_call
14135 (instance, fn,
14136 &call_args, NULL_TREE,
14137 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
14138 /*fn_p=*/NULL,
14139 complain));
14140 }
14141 else
14142 ret = finish_call_expr (function, &call_args,
14143 /*disallow_virtual=*/qualified_p,
14144 koenig_p,
14145 complain);
14146
14147 release_tree_vector (call_args);
14148
14149 RETURN (ret);
14150 }
14151
14152 case COND_EXPR:
14153 {
14154 tree cond = RECUR (TREE_OPERAND (t, 0));
14155 tree exp1, exp2;
14156
14157 if (TREE_CODE (cond) == INTEGER_CST)
14158 {
14159 if (integer_zerop (cond))
14160 {
14161 ++c_inhibit_evaluation_warnings;
14162 exp1 = RECUR (TREE_OPERAND (t, 1));
14163 --c_inhibit_evaluation_warnings;
14164 exp2 = RECUR (TREE_OPERAND (t, 2));
14165 }
14166 else
14167 {
14168 exp1 = RECUR (TREE_OPERAND (t, 1));
14169 ++c_inhibit_evaluation_warnings;
14170 exp2 = RECUR (TREE_OPERAND (t, 2));
14171 --c_inhibit_evaluation_warnings;
14172 }
14173 }
14174 else
14175 {
14176 exp1 = RECUR (TREE_OPERAND (t, 1));
14177 exp2 = RECUR (TREE_OPERAND (t, 2));
14178 }
14179
14180 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
14181 cond, exp1, exp2, complain));
14182 }
14183
14184 case PSEUDO_DTOR_EXPR:
14185 RETURN (finish_pseudo_destructor_expr
14186 (RECUR (TREE_OPERAND (t, 0)),
14187 RECUR (TREE_OPERAND (t, 1)),
14188 tsubst (TREE_OPERAND (t, 2), args, complain, in_decl)));
14189
14190 case TREE_LIST:
14191 {
14192 tree purpose, value, chain;
14193
14194 if (t == void_list_node)
14195 RETURN (t);
14196
14197 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
14198 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
14199 {
14200 /* We have pack expansions, so expand those and
14201 create a new list out of it. */
14202 tree purposevec = NULL_TREE;
14203 tree valuevec = NULL_TREE;
14204 tree chain;
14205 int i, len = -1;
14206
14207 /* Expand the argument expressions. */
14208 if (TREE_PURPOSE (t))
14209 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
14210 complain, in_decl);
14211 if (TREE_VALUE (t))
14212 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
14213 complain, in_decl);
14214
14215 /* Build the rest of the list. */
14216 chain = TREE_CHAIN (t);
14217 if (chain && chain != void_type_node)
14218 chain = RECUR (chain);
14219
14220 /* Determine the number of arguments. */
14221 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
14222 {
14223 len = TREE_VEC_LENGTH (purposevec);
14224 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
14225 }
14226 else if (TREE_CODE (valuevec) == TREE_VEC)
14227 len = TREE_VEC_LENGTH (valuevec);
14228 else
14229 {
14230 /* Since we only performed a partial substitution into
14231 the argument pack, we only RETURN (a single list
14232 node. */
14233 if (purposevec == TREE_PURPOSE (t)
14234 && valuevec == TREE_VALUE (t)
14235 && chain == TREE_CHAIN (t))
14236 RETURN (t);
14237
14238 RETURN (tree_cons (purposevec, valuevec, chain));
14239 }
14240
14241 /* Convert the argument vectors into a TREE_LIST */
14242 i = len;
14243 while (i > 0)
14244 {
14245 /* Grab the Ith values. */
14246 i--;
14247 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
14248 : NULL_TREE;
14249 value
14250 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
14251 : NULL_TREE;
14252
14253 /* Build the list (backwards). */
14254 chain = tree_cons (purpose, value, chain);
14255 }
14256
14257 RETURN (chain);
14258 }
14259
14260 purpose = TREE_PURPOSE (t);
14261 if (purpose)
14262 purpose = RECUR (purpose);
14263 value = TREE_VALUE (t);
14264 if (value)
14265 value = RECUR (value);
14266 chain = TREE_CHAIN (t);
14267 if (chain && chain != void_type_node)
14268 chain = RECUR (chain);
14269 if (purpose == TREE_PURPOSE (t)
14270 && value == TREE_VALUE (t)
14271 && chain == TREE_CHAIN (t))
14272 RETURN (t);
14273 RETURN (tree_cons (purpose, value, chain));
14274 }
14275
14276 case COMPONENT_REF:
14277 {
14278 tree object;
14279 tree object_type;
14280 tree member;
14281
14282 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14283 args, complain, in_decl);
14284 /* Remember that there was a reference to this entity. */
14285 if (DECL_P (object))
14286 mark_used (object);
14287 object_type = TREE_TYPE (object);
14288
14289 member = TREE_OPERAND (t, 1);
14290 if (BASELINK_P (member))
14291 member = tsubst_baselink (member,
14292 non_reference (TREE_TYPE (object)),
14293 args, complain, in_decl);
14294 else
14295 member = tsubst_copy (member, args, complain, in_decl);
14296 if (member == error_mark_node)
14297 RETURN (error_mark_node);
14298
14299 if (type_dependent_expression_p (object))
14300 /* We can't do much here. */;
14301 else if (!CLASS_TYPE_P (object_type))
14302 {
14303 if (scalarish_type_p (object_type))
14304 {
14305 tree s = NULL_TREE;
14306 tree dtor = member;
14307
14308 if (TREE_CODE (dtor) == SCOPE_REF)
14309 {
14310 s = TREE_OPERAND (dtor, 0);
14311 dtor = TREE_OPERAND (dtor, 1);
14312 }
14313 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
14314 {
14315 dtor = TREE_OPERAND (dtor, 0);
14316 if (TYPE_P (dtor))
14317 RETURN (finish_pseudo_destructor_expr (object, s, dtor));
14318 }
14319 }
14320 }
14321 else if (TREE_CODE (member) == SCOPE_REF
14322 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
14323 {
14324 /* Lookup the template functions now that we know what the
14325 scope is. */
14326 tree scope = TREE_OPERAND (member, 0);
14327 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
14328 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
14329 member = lookup_qualified_name (scope, tmpl,
14330 /*is_type_p=*/false,
14331 /*complain=*/false);
14332 if (BASELINK_P (member))
14333 {
14334 BASELINK_FUNCTIONS (member)
14335 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
14336 args);
14337 member = (adjust_result_of_qualified_name_lookup
14338 (member, BINFO_TYPE (BASELINK_BINFO (member)),
14339 object_type));
14340 }
14341 else
14342 {
14343 qualified_name_lookup_error (scope, tmpl, member,
14344 input_location);
14345 RETURN (error_mark_node);
14346 }
14347 }
14348 else if (TREE_CODE (member) == SCOPE_REF
14349 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
14350 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
14351 {
14352 if (complain & tf_error)
14353 {
14354 if (TYPE_P (TREE_OPERAND (member, 0)))
14355 error ("%qT is not a class or namespace",
14356 TREE_OPERAND (member, 0));
14357 else
14358 error ("%qD is not a class or namespace",
14359 TREE_OPERAND (member, 0));
14360 }
14361 RETURN (error_mark_node);
14362 }
14363 else if (TREE_CODE (member) == FIELD_DECL)
14364 RETURN (finish_non_static_data_member (member, object, NULL_TREE));
14365
14366 RETURN (finish_class_member_access_expr (object, member,
14367 /*template_p=*/false,
14368 complain));
14369 }
14370
14371 case THROW_EXPR:
14372 RETURN (build_throw
14373 (RECUR (TREE_OPERAND (t, 0))));
14374
14375 case CONSTRUCTOR:
14376 {
14377 vec<constructor_elt, va_gc> *n;
14378 constructor_elt *ce;
14379 unsigned HOST_WIDE_INT idx;
14380 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14381 bool process_index_p;
14382 int newlen;
14383 bool need_copy_p = false;
14384 tree r;
14385
14386 if (type == error_mark_node)
14387 RETURN (error_mark_node);
14388
14389 /* digest_init will do the wrong thing if we let it. */
14390 if (type && TYPE_PTRMEMFUNC_P (type))
14391 RETURN (t);
14392
14393 /* We do not want to process the index of aggregate
14394 initializers as they are identifier nodes which will be
14395 looked up by digest_init. */
14396 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
14397
14398 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
14399 newlen = vec_safe_length (n);
14400 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
14401 {
14402 if (ce->index && process_index_p
14403 /* An identifier index is looked up in the type
14404 being initialized, not the current scope. */
14405 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
14406 ce->index = RECUR (ce->index);
14407
14408 if (PACK_EXPANSION_P (ce->value))
14409 {
14410 /* Substitute into the pack expansion. */
14411 ce->value = tsubst_pack_expansion (ce->value, args, complain,
14412 in_decl);
14413
14414 if (ce->value == error_mark_node
14415 || PACK_EXPANSION_P (ce->value))
14416 ;
14417 else if (TREE_VEC_LENGTH (ce->value) == 1)
14418 /* Just move the argument into place. */
14419 ce->value = TREE_VEC_ELT (ce->value, 0);
14420 else
14421 {
14422 /* Update the length of the final CONSTRUCTOR
14423 arguments vector, and note that we will need to
14424 copy.*/
14425 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
14426 need_copy_p = true;
14427 }
14428 }
14429 else
14430 ce->value = RECUR (ce->value);
14431 }
14432
14433 if (need_copy_p)
14434 {
14435 vec<constructor_elt, va_gc> *old_n = n;
14436
14437 vec_alloc (n, newlen);
14438 FOR_EACH_VEC_ELT (*old_n, idx, ce)
14439 {
14440 if (TREE_CODE (ce->value) == TREE_VEC)
14441 {
14442 int i, len = TREE_VEC_LENGTH (ce->value);
14443 for (i = 0; i < len; ++i)
14444 CONSTRUCTOR_APPEND_ELT (n, 0,
14445 TREE_VEC_ELT (ce->value, i));
14446 }
14447 else
14448 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
14449 }
14450 }
14451
14452 r = build_constructor (init_list_type_node, n);
14453 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
14454
14455 if (TREE_HAS_CONSTRUCTOR (t))
14456 RETURN (finish_compound_literal (type, r, complain));
14457
14458 TREE_TYPE (r) = type;
14459 RETURN (r);
14460 }
14461
14462 case TYPEID_EXPR:
14463 {
14464 tree operand_0 = TREE_OPERAND (t, 0);
14465 if (TYPE_P (operand_0))
14466 {
14467 operand_0 = tsubst (operand_0, args, complain, in_decl);
14468 RETURN (get_typeid (operand_0, complain));
14469 }
14470 else
14471 {
14472 operand_0 = RECUR (operand_0);
14473 RETURN (build_typeid (operand_0, complain));
14474 }
14475 }
14476
14477 case VAR_DECL:
14478 if (!args)
14479 RETURN (t);
14480 /* Fall through */
14481
14482 case PARM_DECL:
14483 {
14484 tree r = tsubst_copy (t, args, complain, in_decl);
14485
14486 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
14487 /* If the original type was a reference, we'll be wrapped in
14488 the appropriate INDIRECT_REF. */
14489 r = convert_from_reference (r);
14490 RETURN (r);
14491 }
14492
14493 case VA_ARG_EXPR:
14494 RETURN (build_x_va_arg (EXPR_LOCATION (t),
14495 RECUR (TREE_OPERAND (t, 0)),
14496 tsubst (TREE_TYPE (t), args, complain, in_decl)));
14497
14498 case OFFSETOF_EXPR:
14499 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0))));
14500
14501 case TRAIT_EXPR:
14502 {
14503 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
14504 complain, in_decl);
14505
14506 tree type2 = TRAIT_EXPR_TYPE2 (t);
14507 if (type2)
14508 type2 = tsubst_copy (type2, args, complain, in_decl);
14509
14510 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
14511 }
14512
14513 case STMT_EXPR:
14514 {
14515 tree old_stmt_expr = cur_stmt_expr;
14516 tree stmt_expr = begin_stmt_expr ();
14517
14518 cur_stmt_expr = stmt_expr;
14519 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
14520 integral_constant_expression_p);
14521 stmt_expr = finish_stmt_expr (stmt_expr, false);
14522 cur_stmt_expr = old_stmt_expr;
14523
14524 /* If the resulting list of expression statement is empty,
14525 fold it further into void_zero_node. */
14526 if (empty_expr_stmt_p (stmt_expr))
14527 stmt_expr = void_zero_node;
14528
14529 RETURN (stmt_expr);
14530 }
14531
14532 case LAMBDA_EXPR:
14533 {
14534 tree r = build_lambda_expr ();
14535
14536 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
14537 LAMBDA_EXPR_CLOSURE (r) = type;
14538 CLASSTYPE_LAMBDA_EXPR (type) = r;
14539
14540 LAMBDA_EXPR_LOCATION (r)
14541 = LAMBDA_EXPR_LOCATION (t);
14542 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
14543 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
14544 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
14545 LAMBDA_EXPR_DISCRIMINATOR (r)
14546 = (LAMBDA_EXPR_DISCRIMINATOR (t));
14547 /* For a function scope, we want to use tsubst so that we don't
14548 complain about referring to an auto function before its return
14549 type has been deduced. Otherwise, we want to use tsubst_copy so
14550 that we look up the existing field/parameter/variable rather
14551 than build a new one. */
14552 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
14553 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
14554 scope = tsubst (scope, args, complain, in_decl);
14555 else if (scope && TREE_CODE (scope) == PARM_DECL)
14556 {
14557 /* Look up the parameter we want directly, as tsubst_copy
14558 doesn't do what we need. */
14559 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
14560 tree parm = FUNCTION_FIRST_USER_PARM (fn);
14561 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
14562 parm = DECL_CHAIN (parm);
14563 scope = parm;
14564 /* FIXME Work around the parm not having DECL_CONTEXT set. */
14565 if (DECL_CONTEXT (scope) == NULL_TREE)
14566 DECL_CONTEXT (scope) = fn;
14567 }
14568 else
14569 scope = RECUR (scope);
14570 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
14571 LAMBDA_EXPR_RETURN_TYPE (r)
14572 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
14573
14574 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
14575 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
14576
14577 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
14578 determine_visibility (TYPE_NAME (type));
14579 /* Now that we know visibility, instantiate the type so we have a
14580 declaration of the op() for later calls to lambda_function. */
14581 complete_type (type);
14582
14583 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
14584
14585 RETURN (build_lambda_object (r));
14586 }
14587
14588 case TARGET_EXPR:
14589 /* We can get here for a constant initializer of non-dependent type.
14590 FIXME stop folding in cp_parser_initializer_clause. */
14591 {
14592 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
14593 complain);
14594 RETURN (r);
14595 }
14596
14597 case TRANSACTION_EXPR:
14598 RETURN (tsubst_expr(t, args, complain, in_decl,
14599 integral_constant_expression_p));
14600
14601 case PAREN_EXPR:
14602 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
14603
14604 default:
14605 /* Handle Objective-C++ constructs, if appropriate. */
14606 {
14607 tree subst
14608 = objcp_tsubst_copy_and_build (t, args, complain,
14609 in_decl, /*function_p=*/false);
14610 if (subst)
14611 RETURN (subst);
14612 }
14613 RETURN (tsubst_copy (t, args, complain, in_decl));
14614 }
14615
14616 #undef RECUR
14617 #undef RETURN
14618 out:
14619 input_location = loc;
14620 return retval;
14621 }
14622
14623 /* Verify that the instantiated ARGS are valid. For type arguments,
14624 make sure that the type's linkage is ok. For non-type arguments,
14625 make sure they are constants if they are integral or enumerations.
14626 Emit an error under control of COMPLAIN, and return TRUE on error. */
14627
14628 static bool
14629 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
14630 {
14631 if (dependent_template_arg_p (t))
14632 return false;
14633 if (ARGUMENT_PACK_P (t))
14634 {
14635 tree vec = ARGUMENT_PACK_ARGS (t);
14636 int len = TREE_VEC_LENGTH (vec);
14637 bool result = false;
14638 int i;
14639
14640 for (i = 0; i < len; ++i)
14641 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
14642 result = true;
14643 return result;
14644 }
14645 else if (TYPE_P (t))
14646 {
14647 /* [basic.link]: A name with no linkage (notably, the name
14648 of a class or enumeration declared in a local scope)
14649 shall not be used to declare an entity with linkage.
14650 This implies that names with no linkage cannot be used as
14651 template arguments
14652
14653 DR 757 relaxes this restriction for C++0x. */
14654 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
14655 : no_linkage_check (t, /*relaxed_p=*/false));
14656
14657 if (nt)
14658 {
14659 /* DR 488 makes use of a type with no linkage cause
14660 type deduction to fail. */
14661 if (complain & tf_error)
14662 {
14663 if (TYPE_ANONYMOUS_P (nt))
14664 error ("%qT is/uses anonymous type", t);
14665 else
14666 error ("template argument for %qD uses local type %qT",
14667 tmpl, t);
14668 }
14669 return true;
14670 }
14671 /* In order to avoid all sorts of complications, we do not
14672 allow variably-modified types as template arguments. */
14673 else if (variably_modified_type_p (t, NULL_TREE))
14674 {
14675 if (complain & tf_error)
14676 error ("%qT is a variably modified type", t);
14677 return true;
14678 }
14679 }
14680 /* Class template and alias template arguments should be OK. */
14681 else if (DECL_TYPE_TEMPLATE_P (t))
14682 ;
14683 /* A non-type argument of integral or enumerated type must be a
14684 constant. */
14685 else if (TREE_TYPE (t)
14686 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
14687 && !TREE_CONSTANT (t))
14688 {
14689 if (complain & tf_error)
14690 error ("integral expression %qE is not constant", t);
14691 return true;
14692 }
14693 return false;
14694 }
14695
14696 static bool
14697 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
14698 {
14699 int ix, len = DECL_NTPARMS (tmpl);
14700 bool result = false;
14701
14702 for (ix = 0; ix != len; ix++)
14703 {
14704 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
14705 result = true;
14706 }
14707 if (result && (complain & tf_error))
14708 error (" trying to instantiate %qD", tmpl);
14709 return result;
14710 }
14711
14712 /* We're out of SFINAE context now, so generate diagnostics for the access
14713 errors we saw earlier when instantiating D from TMPL and ARGS. */
14714
14715 static void
14716 recheck_decl_substitution (tree d, tree tmpl, tree args)
14717 {
14718 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
14719 tree type = TREE_TYPE (pattern);
14720 location_t loc = input_location;
14721
14722 push_access_scope (d);
14723 push_deferring_access_checks (dk_no_deferred);
14724 input_location = DECL_SOURCE_LOCATION (pattern);
14725 tsubst (type, args, tf_warning_or_error, d);
14726 input_location = loc;
14727 pop_deferring_access_checks ();
14728 pop_access_scope (d);
14729 }
14730
14731 /* Instantiate the indicated variable, function, or alias template TMPL with
14732 the template arguments in TARG_PTR. */
14733
14734 static tree
14735 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
14736 {
14737 tree targ_ptr = orig_args;
14738 tree fndecl;
14739 tree gen_tmpl;
14740 tree spec;
14741 bool access_ok = true;
14742
14743 if (tmpl == error_mark_node)
14744 return error_mark_node;
14745
14746 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
14747
14748 /* If this function is a clone, handle it specially. */
14749 if (DECL_CLONED_FUNCTION_P (tmpl))
14750 {
14751 tree spec;
14752 tree clone;
14753
14754 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
14755 DECL_CLONED_FUNCTION. */
14756 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
14757 targ_ptr, complain);
14758 if (spec == error_mark_node)
14759 return error_mark_node;
14760
14761 /* Look for the clone. */
14762 FOR_EACH_CLONE (clone, spec)
14763 if (DECL_NAME (clone) == DECL_NAME (tmpl))
14764 return clone;
14765 /* We should always have found the clone by now. */
14766 gcc_unreachable ();
14767 return NULL_TREE;
14768 }
14769
14770 /* Check to see if we already have this specialization. */
14771 gen_tmpl = most_general_template (tmpl);
14772 if (tmpl != gen_tmpl)
14773 /* The TMPL is a partial instantiation. To get a full set of
14774 arguments we must add the arguments used to perform the
14775 partial instantiation. */
14776 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
14777 targ_ptr);
14778
14779 /* It would be nice to avoid hashing here and then again in tsubst_decl,
14780 but it doesn't seem to be on the hot path. */
14781 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
14782
14783 gcc_assert (tmpl == gen_tmpl
14784 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
14785 == spec)
14786 || fndecl == NULL_TREE);
14787
14788 if (spec != NULL_TREE)
14789 {
14790 if (FNDECL_HAS_ACCESS_ERRORS (spec))
14791 {
14792 if (complain & tf_error)
14793 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
14794 return error_mark_node;
14795 }
14796 return spec;
14797 }
14798
14799 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
14800 complain))
14801 return error_mark_node;
14802
14803 /* We are building a FUNCTION_DECL, during which the access of its
14804 parameters and return types have to be checked. However this
14805 FUNCTION_DECL which is the desired context for access checking
14806 is not built yet. We solve this chicken-and-egg problem by
14807 deferring all checks until we have the FUNCTION_DECL. */
14808 push_deferring_access_checks (dk_deferred);
14809
14810 /* Instantiation of the function happens in the context of the function
14811 template, not the context of the overload resolution we're doing. */
14812 push_to_top_level ();
14813 /* If there are dependent arguments, e.g. because we're doing partial
14814 ordering, make sure processing_template_decl stays set. */
14815 if (uses_template_parms (targ_ptr))
14816 ++processing_template_decl;
14817 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14818 {
14819 tree ctx = tsubst (DECL_CONTEXT (gen_tmpl), targ_ptr,
14820 complain, gen_tmpl);
14821 push_nested_class (ctx);
14822 }
14823 /* Substitute template parameters to obtain the specialization. */
14824 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
14825 targ_ptr, complain, gen_tmpl);
14826 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14827 pop_nested_class ();
14828 pop_from_top_level ();
14829
14830 if (fndecl == error_mark_node)
14831 {
14832 pop_deferring_access_checks ();
14833 return error_mark_node;
14834 }
14835
14836 /* The DECL_TI_TEMPLATE should always be the immediate parent
14837 template, not the most general template. */
14838 DECL_TI_TEMPLATE (fndecl) = tmpl;
14839
14840 /* Now we know the specialization, compute access previously
14841 deferred. */
14842 push_access_scope (fndecl);
14843 if (!perform_deferred_access_checks (complain))
14844 access_ok = false;
14845 pop_access_scope (fndecl);
14846 pop_deferring_access_checks ();
14847
14848 /* If we've just instantiated the main entry point for a function,
14849 instantiate all the alternate entry points as well. We do this
14850 by cloning the instantiation of the main entry point, not by
14851 instantiating the template clones. */
14852 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
14853 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
14854
14855 if (!access_ok)
14856 {
14857 if (!(complain & tf_error))
14858 {
14859 /* Remember to reinstantiate when we're out of SFINAE so the user
14860 can see the errors. */
14861 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
14862 }
14863 return error_mark_node;
14864 }
14865 return fndecl;
14866 }
14867
14868 /* Wrapper for instantiate_template_1. */
14869
14870 tree
14871 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
14872 {
14873 tree ret;
14874 timevar_push (TV_TEMPLATE_INST);
14875 ret = instantiate_template_1 (tmpl, orig_args, complain);
14876 timevar_pop (TV_TEMPLATE_INST);
14877 return ret;
14878 }
14879
14880 /* Instantiate the alias template TMPL with ARGS. Also push a template
14881 instantiation level, which instantiate_template doesn't do because
14882 functions and variables have sufficient context established by the
14883 callers. */
14884
14885 static tree
14886 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
14887 {
14888 struct pending_template *old_last_pend = last_pending_template;
14889 struct tinst_level *old_error_tinst = last_error_tinst_level;
14890 if (tmpl == error_mark_node || args == error_mark_node)
14891 return error_mark_node;
14892 tree tinst = build_tree_list (tmpl, args);
14893 if (!push_tinst_level (tinst))
14894 {
14895 ggc_free (tinst);
14896 return error_mark_node;
14897 }
14898
14899 args =
14900 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
14901 args, tmpl, complain,
14902 /*require_all_args=*/true,
14903 /*use_default_args=*/true);
14904
14905 tree r = instantiate_template (tmpl, args, complain);
14906 pop_tinst_level ();
14907 /* We can't free this if a pending_template entry or last_error_tinst_level
14908 is pointing at it. */
14909 if (last_pending_template == old_last_pend
14910 && last_error_tinst_level == old_error_tinst)
14911 ggc_free (tinst);
14912
14913 return r;
14914 }
14915
14916 /* PARM is a template parameter pack for FN. Returns true iff
14917 PARM is used in a deducible way in the argument list of FN. */
14918
14919 static bool
14920 pack_deducible_p (tree parm, tree fn)
14921 {
14922 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
14923 for (; t; t = TREE_CHAIN (t))
14924 {
14925 tree type = TREE_VALUE (t);
14926 tree packs;
14927 if (!PACK_EXPANSION_P (type))
14928 continue;
14929 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
14930 packs; packs = TREE_CHAIN (packs))
14931 if (TREE_VALUE (packs) == parm)
14932 {
14933 /* The template parameter pack is used in a function parameter
14934 pack. If this is the end of the parameter list, the
14935 template parameter pack is deducible. */
14936 if (TREE_CHAIN (t) == void_list_node)
14937 return true;
14938 else
14939 /* Otherwise, not. Well, it could be deduced from
14940 a non-pack parameter, but doing so would end up with
14941 a deduction mismatch, so don't bother. */
14942 return false;
14943 }
14944 }
14945 /* The template parameter pack isn't used in any function parameter
14946 packs, but it might be used deeper, e.g. tuple<Args...>. */
14947 return true;
14948 }
14949
14950 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
14951 NARGS elements of the arguments that are being used when calling
14952 it. TARGS is a vector into which the deduced template arguments
14953 are placed.
14954
14955 Return zero for success, 2 for an incomplete match that doesn't resolve
14956 all the types, and 1 for complete failure. An error message will be
14957 printed only for an incomplete match.
14958
14959 If FN is a conversion operator, or we are trying to produce a specific
14960 specialization, RETURN_TYPE is the return type desired.
14961
14962 The EXPLICIT_TARGS are explicit template arguments provided via a
14963 template-id.
14964
14965 The parameter STRICT is one of:
14966
14967 DEDUCE_CALL:
14968 We are deducing arguments for a function call, as in
14969 [temp.deduct.call].
14970
14971 DEDUCE_CONV:
14972 We are deducing arguments for a conversion function, as in
14973 [temp.deduct.conv].
14974
14975 DEDUCE_EXACT:
14976 We are deducing arguments when doing an explicit instantiation
14977 as in [temp.explicit], when determining an explicit specialization
14978 as in [temp.expl.spec], or when taking the address of a function
14979 template, as in [temp.deduct.funcaddr]. */
14980
14981 tree
14982 fn_type_unification (tree fn,
14983 tree explicit_targs,
14984 tree targs,
14985 const tree *args,
14986 unsigned int nargs,
14987 tree return_type,
14988 unification_kind_t strict,
14989 int flags,
14990 bool explain_p,
14991 bool decltype_p)
14992 {
14993 tree parms;
14994 tree fntype;
14995 tree decl = NULL_TREE;
14996 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
14997 bool ok;
14998 static int deduction_depth;
14999 struct pending_template *old_last_pend = last_pending_template;
15000 struct tinst_level *old_error_tinst = last_error_tinst_level;
15001 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
15002 tree tinst;
15003 tree r = error_mark_node;
15004
15005 if (decltype_p)
15006 complain |= tf_decltype;
15007
15008 /* In C++0x, it's possible to have a function template whose type depends
15009 on itself recursively. This is most obvious with decltype, but can also
15010 occur with enumeration scope (c++/48969). So we need to catch infinite
15011 recursion and reject the substitution at deduction time; this function
15012 will return error_mark_node for any repeated substitution.
15013
15014 This also catches excessive recursion such as when f<N> depends on
15015 f<N-1> across all integers, and returns error_mark_node for all the
15016 substitutions back up to the initial one.
15017
15018 This is, of course, not reentrant. */
15019 if (excessive_deduction_depth)
15020 return error_mark_node;
15021 tinst = build_tree_list (fn, NULL_TREE);
15022 ++deduction_depth;
15023 push_deferring_access_checks (dk_deferred);
15024
15025 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
15026
15027 fntype = TREE_TYPE (fn);
15028 if (explicit_targs)
15029 {
15030 /* [temp.deduct]
15031
15032 The specified template arguments must match the template
15033 parameters in kind (i.e., type, nontype, template), and there
15034 must not be more arguments than there are parameters;
15035 otherwise type deduction fails.
15036
15037 Nontype arguments must match the types of the corresponding
15038 nontype template parameters, or must be convertible to the
15039 types of the corresponding nontype parameters as specified in
15040 _temp.arg.nontype_, otherwise type deduction fails.
15041
15042 All references in the function type of the function template
15043 to the corresponding template parameters are replaced by the
15044 specified template argument values. If a substitution in a
15045 template parameter or in the function type of the function
15046 template results in an invalid type, type deduction fails. */
15047 int i, len = TREE_VEC_LENGTH (tparms);
15048 location_t loc = input_location;
15049 bool incomplete = false;
15050
15051 /* Adjust any explicit template arguments before entering the
15052 substitution context. */
15053 explicit_targs
15054 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
15055 complain,
15056 /*require_all_args=*/false,
15057 /*use_default_args=*/false));
15058 if (explicit_targs == error_mark_node)
15059 goto fail;
15060
15061 /* Substitute the explicit args into the function type. This is
15062 necessary so that, for instance, explicitly declared function
15063 arguments can match null pointed constants. If we were given
15064 an incomplete set of explicit args, we must not do semantic
15065 processing during substitution as we could create partial
15066 instantiations. */
15067 for (i = 0; i < len; i++)
15068 {
15069 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15070 bool parameter_pack = false;
15071 tree targ = TREE_VEC_ELT (explicit_targs, i);
15072
15073 /* Dig out the actual parm. */
15074 if (TREE_CODE (parm) == TYPE_DECL
15075 || TREE_CODE (parm) == TEMPLATE_DECL)
15076 {
15077 parm = TREE_TYPE (parm);
15078 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
15079 }
15080 else if (TREE_CODE (parm) == PARM_DECL)
15081 {
15082 parm = DECL_INITIAL (parm);
15083 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
15084 }
15085
15086 if (!parameter_pack && targ == NULL_TREE)
15087 /* No explicit argument for this template parameter. */
15088 incomplete = true;
15089
15090 if (parameter_pack && pack_deducible_p (parm, fn))
15091 {
15092 /* Mark the argument pack as "incomplete". We could
15093 still deduce more arguments during unification.
15094 We remove this mark in type_unification_real. */
15095 if (targ)
15096 {
15097 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
15098 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
15099 = ARGUMENT_PACK_ARGS (targ);
15100 }
15101
15102 /* We have some incomplete argument packs. */
15103 incomplete = true;
15104 }
15105 }
15106
15107 TREE_VALUE (tinst) = explicit_targs;
15108 if (!push_tinst_level (tinst))
15109 {
15110 excessive_deduction_depth = true;
15111 goto fail;
15112 }
15113 processing_template_decl += incomplete;
15114 input_location = DECL_SOURCE_LOCATION (fn);
15115 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
15116 complain | tf_partial, NULL_TREE);
15117 input_location = loc;
15118 processing_template_decl -= incomplete;
15119 pop_tinst_level ();
15120
15121 if (fntype == error_mark_node)
15122 goto fail;
15123
15124 /* Throw away these access checks; we'll see them again in
15125 instantiate_template and they might have the wrong
15126 access path at this point. */
15127 pop_deferring_access_checks ();
15128 push_deferring_access_checks (dk_deferred);
15129
15130 /* Place the explicitly specified arguments in TARGS. */
15131 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
15132 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
15133 }
15134
15135 /* Never do unification on the 'this' parameter. */
15136 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
15137
15138 if (return_type)
15139 {
15140 tree *new_args;
15141
15142 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
15143 new_args = XALLOCAVEC (tree, nargs + 1);
15144 new_args[0] = return_type;
15145 memcpy (new_args + 1, args, nargs * sizeof (tree));
15146 args = new_args;
15147 ++nargs;
15148 }
15149
15150 /* We allow incomplete unification without an error message here
15151 because the standard doesn't seem to explicitly prohibit it. Our
15152 callers must be ready to deal with unification failures in any
15153 event. */
15154
15155 TREE_VALUE (tinst) = targs;
15156 /* If we aren't explaining yet, push tinst context so we can see where
15157 any errors (e.g. from class instantiations triggered by instantiation
15158 of default template arguments) come from. If we are explaining, this
15159 context is redundant. */
15160 if (!explain_p && !push_tinst_level (tinst))
15161 {
15162 excessive_deduction_depth = true;
15163 goto fail;
15164 }
15165 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15166 targs, parms, args, nargs, /*subr=*/0,
15167 strict, flags, explain_p);
15168 if (!explain_p)
15169 pop_tinst_level ();
15170 if (!ok)
15171 goto fail;
15172
15173 /* Now that we have bindings for all of the template arguments,
15174 ensure that the arguments deduced for the template template
15175 parameters have compatible template parameter lists. We cannot
15176 check this property before we have deduced all template
15177 arguments, because the template parameter types of a template
15178 template parameter might depend on prior template parameters
15179 deduced after the template template parameter. The following
15180 ill-formed example illustrates this issue:
15181
15182 template<typename T, template<T> class C> void f(C<5>, T);
15183
15184 template<int N> struct X {};
15185
15186 void g() {
15187 f(X<5>(), 5l); // error: template argument deduction fails
15188 }
15189
15190 The template parameter list of 'C' depends on the template type
15191 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
15192 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
15193 time that we deduce 'C'. */
15194 if (!template_template_parm_bindings_ok_p
15195 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
15196 {
15197 unify_inconsistent_template_template_parameters (explain_p);
15198 goto fail;
15199 }
15200
15201 /* All is well so far. Now, check:
15202
15203 [temp.deduct]
15204
15205 When all template arguments have been deduced, all uses of
15206 template parameters in nondeduced contexts are replaced with
15207 the corresponding deduced argument values. If the
15208 substitution results in an invalid type, as described above,
15209 type deduction fails. */
15210 TREE_VALUE (tinst) = targs;
15211 if (!push_tinst_level (tinst))
15212 {
15213 excessive_deduction_depth = true;
15214 goto fail;
15215 }
15216 decl = instantiate_template (fn, targs, complain);
15217 pop_tinst_level ();
15218
15219 if (decl == error_mark_node)
15220 goto fail;
15221
15222 /* Now perform any access checks encountered during deduction, such as
15223 for default template arguments. */
15224 push_access_scope (decl);
15225 ok = perform_deferred_access_checks (complain);
15226 pop_access_scope (decl);
15227 if (!ok)
15228 goto fail;
15229
15230 /* If we're looking for an exact match, check that what we got
15231 is indeed an exact match. It might not be if some template
15232 parameters are used in non-deduced contexts. */
15233 if (strict == DEDUCE_EXACT)
15234 {
15235 tree substed = TREE_TYPE (decl);
15236 unsigned int i;
15237
15238 tree sarg
15239 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
15240 if (return_type)
15241 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
15242 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
15243 if (!same_type_p (args[i], TREE_VALUE (sarg)))
15244 {
15245 unify_type_mismatch (explain_p, args[i],
15246 TREE_VALUE (sarg));
15247 goto fail;
15248 }
15249 }
15250
15251 r = decl;
15252
15253 fail:
15254 pop_deferring_access_checks ();
15255 --deduction_depth;
15256 if (excessive_deduction_depth)
15257 {
15258 if (deduction_depth == 0)
15259 /* Reset once we're all the way out. */
15260 excessive_deduction_depth = false;
15261 }
15262
15263 /* We can't free this if a pending_template entry or last_error_tinst_level
15264 is pointing at it. */
15265 if (last_pending_template == old_last_pend
15266 && last_error_tinst_level == old_error_tinst)
15267 ggc_free (tinst);
15268
15269 return r;
15270 }
15271
15272 /* Adjust types before performing type deduction, as described in
15273 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
15274 sections are symmetric. PARM is the type of a function parameter
15275 or the return type of the conversion function. ARG is the type of
15276 the argument passed to the call, or the type of the value
15277 initialized with the result of the conversion function.
15278 ARG_EXPR is the original argument expression, which may be null. */
15279
15280 static int
15281 maybe_adjust_types_for_deduction (unification_kind_t strict,
15282 tree* parm,
15283 tree* arg,
15284 tree arg_expr)
15285 {
15286 int result = 0;
15287
15288 switch (strict)
15289 {
15290 case DEDUCE_CALL:
15291 break;
15292
15293 case DEDUCE_CONV:
15294 {
15295 /* Swap PARM and ARG throughout the remainder of this
15296 function; the handling is precisely symmetric since PARM
15297 will initialize ARG rather than vice versa. */
15298 tree* temp = parm;
15299 parm = arg;
15300 arg = temp;
15301 break;
15302 }
15303
15304 case DEDUCE_EXACT:
15305 /* Core issue #873: Do the DR606 thing (see below) for these cases,
15306 too, but here handle it by stripping the reference from PARM
15307 rather than by adding it to ARG. */
15308 if (TREE_CODE (*parm) == REFERENCE_TYPE
15309 && TYPE_REF_IS_RVALUE (*parm)
15310 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15311 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15312 && TREE_CODE (*arg) == REFERENCE_TYPE
15313 && !TYPE_REF_IS_RVALUE (*arg))
15314 *parm = TREE_TYPE (*parm);
15315 /* Nothing else to do in this case. */
15316 return 0;
15317
15318 default:
15319 gcc_unreachable ();
15320 }
15321
15322 if (TREE_CODE (*parm) != REFERENCE_TYPE)
15323 {
15324 /* [temp.deduct.call]
15325
15326 If P is not a reference type:
15327
15328 --If A is an array type, the pointer type produced by the
15329 array-to-pointer standard conversion (_conv.array_) is
15330 used in place of A for type deduction; otherwise,
15331
15332 --If A is a function type, the pointer type produced by
15333 the function-to-pointer standard conversion
15334 (_conv.func_) is used in place of A for type deduction;
15335 otherwise,
15336
15337 --If A is a cv-qualified type, the top level
15338 cv-qualifiers of A's type are ignored for type
15339 deduction. */
15340 if (TREE_CODE (*arg) == ARRAY_TYPE)
15341 *arg = build_pointer_type (TREE_TYPE (*arg));
15342 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
15343 *arg = build_pointer_type (*arg);
15344 else
15345 *arg = TYPE_MAIN_VARIANT (*arg);
15346 }
15347
15348 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
15349 of the form T&&, where T is a template parameter, and the argument
15350 is an lvalue, T is deduced as A& */
15351 if (TREE_CODE (*parm) == REFERENCE_TYPE
15352 && TYPE_REF_IS_RVALUE (*parm)
15353 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15354 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15355 && (arg_expr ? real_lvalue_p (arg_expr)
15356 /* try_one_overload doesn't provide an arg_expr, but
15357 functions are always lvalues. */
15358 : TREE_CODE (*arg) == FUNCTION_TYPE))
15359 *arg = build_reference_type (*arg);
15360
15361 /* [temp.deduct.call]
15362
15363 If P is a cv-qualified type, the top level cv-qualifiers
15364 of P's type are ignored for type deduction. If P is a
15365 reference type, the type referred to by P is used for
15366 type deduction. */
15367 *parm = TYPE_MAIN_VARIANT (*parm);
15368 if (TREE_CODE (*parm) == REFERENCE_TYPE)
15369 {
15370 *parm = TREE_TYPE (*parm);
15371 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
15372 }
15373
15374 /* DR 322. For conversion deduction, remove a reference type on parm
15375 too (which has been swapped into ARG). */
15376 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
15377 *arg = TREE_TYPE (*arg);
15378
15379 return result;
15380 }
15381
15382 /* Subroutine of unify_one_argument. PARM is a function parameter of a
15383 template which does contain any deducible template parameters; check if
15384 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
15385 unify_one_argument. */
15386
15387 static int
15388 check_non_deducible_conversion (tree parm, tree arg, int strict,
15389 int flags, bool explain_p)
15390 {
15391 tree type;
15392
15393 if (!TYPE_P (arg))
15394 type = TREE_TYPE (arg);
15395 else
15396 type = arg;
15397
15398 if (same_type_p (parm, type))
15399 return unify_success (explain_p);
15400
15401 if (strict == DEDUCE_CONV)
15402 {
15403 if (can_convert_arg (type, parm, NULL_TREE, flags,
15404 explain_p ? tf_warning_or_error : tf_none))
15405 return unify_success (explain_p);
15406 }
15407 else if (strict != DEDUCE_EXACT)
15408 {
15409 if (can_convert_arg (parm, type,
15410 TYPE_P (arg) ? NULL_TREE : arg,
15411 flags, explain_p ? tf_warning_or_error : tf_none))
15412 return unify_success (explain_p);
15413 }
15414
15415 if (strict == DEDUCE_EXACT)
15416 return unify_type_mismatch (explain_p, parm, arg);
15417 else
15418 return unify_arg_conversion (explain_p, parm, type, arg);
15419 }
15420
15421 static bool uses_deducible_template_parms (tree type);
15422
15423 /* Returns true iff the expression EXPR is one from which a template
15424 argument can be deduced. In other words, if it's an undecorated
15425 use of a template non-type parameter. */
15426
15427 static bool
15428 deducible_expression (tree expr)
15429 {
15430 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
15431 }
15432
15433 /* Returns true iff the array domain DOMAIN uses a template parameter in a
15434 deducible way; that is, if it has a max value of <PARM> - 1. */
15435
15436 static bool
15437 deducible_array_bound (tree domain)
15438 {
15439 if (domain == NULL_TREE)
15440 return false;
15441
15442 tree max = TYPE_MAX_VALUE (domain);
15443 if (TREE_CODE (max) != MINUS_EXPR)
15444 return false;
15445
15446 return deducible_expression (TREE_OPERAND (max, 0));
15447 }
15448
15449 /* Returns true iff the template arguments ARGS use a template parameter
15450 in a deducible way. */
15451
15452 static bool
15453 deducible_template_args (tree args)
15454 {
15455 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
15456 {
15457 bool deducible;
15458 tree elt = TREE_VEC_ELT (args, i);
15459 if (ARGUMENT_PACK_P (elt))
15460 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
15461 else
15462 {
15463 if (PACK_EXPANSION_P (elt))
15464 elt = PACK_EXPANSION_PATTERN (elt);
15465 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
15466 deducible = true;
15467 else if (TYPE_P (elt))
15468 deducible = uses_deducible_template_parms (elt);
15469 else
15470 deducible = deducible_expression (elt);
15471 }
15472 if (deducible)
15473 return true;
15474 }
15475 return false;
15476 }
15477
15478 /* Returns true iff TYPE contains any deducible references to template
15479 parameters, as per 14.8.2.5. */
15480
15481 static bool
15482 uses_deducible_template_parms (tree type)
15483 {
15484 if (PACK_EXPANSION_P (type))
15485 type = PACK_EXPANSION_PATTERN (type);
15486
15487 /* T
15488 cv-list T
15489 TT<T>
15490 TT<i>
15491 TT<> */
15492 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
15493 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
15494 return true;
15495
15496 /* T*
15497 T&
15498 T&& */
15499 if (POINTER_TYPE_P (type))
15500 return uses_deducible_template_parms (TREE_TYPE (type));
15501
15502 /* T[integer-constant ]
15503 type [i] */
15504 if (TREE_CODE (type) == ARRAY_TYPE)
15505 return (uses_deducible_template_parms (TREE_TYPE (type))
15506 || deducible_array_bound (TYPE_DOMAIN (type)));
15507
15508 /* T type ::*
15509 type T::*
15510 T T::*
15511 T (type ::*)()
15512 type (T::*)()
15513 type (type ::*)(T)
15514 type (T::*)(T)
15515 T (type ::*)(T)
15516 T (T::*)()
15517 T (T::*)(T) */
15518 if (TYPE_PTRMEM_P (type))
15519 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
15520 || (uses_deducible_template_parms
15521 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
15522
15523 /* template-name <T> (where template-name refers to a class template)
15524 template-name <i> (where template-name refers to a class template) */
15525 if (CLASS_TYPE_P (type)
15526 && CLASSTYPE_TEMPLATE_INFO (type)
15527 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
15528 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
15529 (CLASSTYPE_TI_ARGS (type)));
15530
15531 /* type (T)
15532 T()
15533 T(T) */
15534 if (TREE_CODE (type) == FUNCTION_TYPE
15535 || TREE_CODE (type) == METHOD_TYPE)
15536 {
15537 if (uses_deducible_template_parms (TREE_TYPE (type)))
15538 return true;
15539 tree parm = TYPE_ARG_TYPES (type);
15540 if (TREE_CODE (type) == METHOD_TYPE)
15541 parm = TREE_CHAIN (parm);
15542 for (; parm; parm = TREE_CHAIN (parm))
15543 if (uses_deducible_template_parms (TREE_VALUE (parm)))
15544 return true;
15545 }
15546
15547 return false;
15548 }
15549
15550 /* Subroutine of type_unification_real and unify_pack_expansion to
15551 handle unification of a single P/A pair. Parameters are as
15552 for those functions. */
15553
15554 static int
15555 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
15556 int subr, unification_kind_t strict, int flags,
15557 bool explain_p)
15558 {
15559 tree arg_expr = NULL_TREE;
15560 int arg_strict;
15561
15562 if (arg == error_mark_node || parm == error_mark_node)
15563 return unify_invalid (explain_p);
15564 if (arg == unknown_type_node)
15565 /* We can't deduce anything from this, but we might get all the
15566 template args from other function args. */
15567 return unify_success (explain_p);
15568
15569 /* Implicit conversions (Clause 4) will be performed on a function
15570 argument to convert it to the type of the corresponding function
15571 parameter if the parameter type contains no template-parameters that
15572 participate in template argument deduction. */
15573 if (TYPE_P (parm) && !uses_template_parms (parm))
15574 /* For function parameters that contain no template-parameters at all,
15575 we have historically checked for convertibility in order to shortcut
15576 consideration of this candidate. */
15577 return check_non_deducible_conversion (parm, arg, strict, flags,
15578 explain_p);
15579 else if (strict == DEDUCE_CALL
15580 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
15581 /* For function parameters with only non-deducible template parameters,
15582 just return. */
15583 return unify_success (explain_p);
15584
15585 switch (strict)
15586 {
15587 case DEDUCE_CALL:
15588 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
15589 | UNIFY_ALLOW_MORE_CV_QUAL
15590 | UNIFY_ALLOW_DERIVED);
15591 break;
15592
15593 case DEDUCE_CONV:
15594 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
15595 break;
15596
15597 case DEDUCE_EXACT:
15598 arg_strict = UNIFY_ALLOW_NONE;
15599 break;
15600
15601 default:
15602 gcc_unreachable ();
15603 }
15604
15605 /* We only do these transformations if this is the top-level
15606 parameter_type_list in a call or declaration matching; in other
15607 situations (nested function declarators, template argument lists) we
15608 won't be comparing a type to an expression, and we don't do any type
15609 adjustments. */
15610 if (!subr)
15611 {
15612 if (!TYPE_P (arg))
15613 {
15614 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
15615 if (type_unknown_p (arg))
15616 {
15617 /* [temp.deduct.type] A template-argument can be
15618 deduced from a pointer to function or pointer
15619 to member function argument if the set of
15620 overloaded functions does not contain function
15621 templates and at most one of a set of
15622 overloaded functions provides a unique
15623 match. */
15624
15625 if (resolve_overloaded_unification
15626 (tparms, targs, parm, arg, strict,
15627 arg_strict, explain_p))
15628 return unify_success (explain_p);
15629 return unify_overload_resolution_failure (explain_p, arg);
15630 }
15631
15632 arg_expr = arg;
15633 arg = unlowered_expr_type (arg);
15634 if (arg == error_mark_node)
15635 return unify_invalid (explain_p);
15636 }
15637
15638 arg_strict |=
15639 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
15640 }
15641 else
15642 gcc_assert ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
15643 == (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL));
15644
15645 /* For deduction from an init-list we need the actual list. */
15646 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
15647 arg = arg_expr;
15648 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
15649 }
15650
15651 /* Most parms like fn_type_unification.
15652
15653 If SUBR is 1, we're being called recursively (to unify the
15654 arguments of a function or method parameter of a function
15655 template). */
15656
15657 static int
15658 type_unification_real (tree tparms,
15659 tree targs,
15660 tree xparms,
15661 const tree *xargs,
15662 unsigned int xnargs,
15663 int subr,
15664 unification_kind_t strict,
15665 int flags,
15666 bool explain_p)
15667 {
15668 tree parm, arg;
15669 int i;
15670 int ntparms = TREE_VEC_LENGTH (tparms);
15671 int saw_undeduced = 0;
15672 tree parms;
15673 const tree *args;
15674 unsigned int nargs;
15675 unsigned int ia;
15676
15677 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
15678 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
15679 gcc_assert (ntparms > 0);
15680
15681 /* Reset the number of non-defaulted template arguments contained
15682 in TARGS. */
15683 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
15684
15685 again:
15686 parms = xparms;
15687 args = xargs;
15688 nargs = xnargs;
15689
15690 ia = 0;
15691 while (parms && parms != void_list_node
15692 && ia < nargs)
15693 {
15694 parm = TREE_VALUE (parms);
15695
15696 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
15697 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
15698 /* For a function parameter pack that occurs at the end of the
15699 parameter-declaration-list, the type A of each remaining
15700 argument of the call is compared with the type P of the
15701 declarator-id of the function parameter pack. */
15702 break;
15703
15704 parms = TREE_CHAIN (parms);
15705
15706 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
15707 /* For a function parameter pack that does not occur at the
15708 end of the parameter-declaration-list, the type of the
15709 parameter pack is a non-deduced context. */
15710 continue;
15711
15712 arg = args[ia];
15713 ++ia;
15714
15715 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
15716 flags, explain_p))
15717 return 1;
15718 }
15719
15720 if (parms
15721 && parms != void_list_node
15722 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
15723 {
15724 /* Unify the remaining arguments with the pack expansion type. */
15725 tree argvec;
15726 tree parmvec = make_tree_vec (1);
15727
15728 /* Allocate a TREE_VEC and copy in all of the arguments */
15729 argvec = make_tree_vec (nargs - ia);
15730 for (i = 0; ia < nargs; ++ia, ++i)
15731 TREE_VEC_ELT (argvec, i) = args[ia];
15732
15733 /* Copy the parameter into parmvec. */
15734 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
15735 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
15736 /*subr=*/subr, explain_p))
15737 return 1;
15738
15739 /* Advance to the end of the list of parameters. */
15740 parms = TREE_CHAIN (parms);
15741 }
15742
15743 /* Fail if we've reached the end of the parm list, and more args
15744 are present, and the parm list isn't variadic. */
15745 if (ia < nargs && parms == void_list_node)
15746 return unify_too_many_arguments (explain_p, nargs, ia);
15747 /* Fail if parms are left and they don't have default values. */
15748 if (parms && parms != void_list_node
15749 && TREE_PURPOSE (parms) == NULL_TREE)
15750 {
15751 unsigned int count = nargs;
15752 tree p = parms;
15753 while (p && p != void_list_node)
15754 {
15755 count++;
15756 p = TREE_CHAIN (p);
15757 }
15758 return unify_too_few_arguments (explain_p, ia, count);
15759 }
15760
15761 if (!subr)
15762 {
15763 tsubst_flags_t complain = (explain_p
15764 ? tf_warning_or_error
15765 : tf_none);
15766
15767 for (i = 0; i < ntparms; i++)
15768 {
15769 tree targ = TREE_VEC_ELT (targs, i);
15770 tree tparm = TREE_VEC_ELT (tparms, i);
15771
15772 /* Clear the "incomplete" flags on all argument packs now so that
15773 substituting them into later default arguments works. */
15774 if (targ && ARGUMENT_PACK_P (targ))
15775 {
15776 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
15777 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
15778 }
15779
15780 if (targ || tparm == error_mark_node)
15781 continue;
15782 tparm = TREE_VALUE (tparm);
15783
15784 /* If this is an undeduced nontype parameter that depends on
15785 a type parameter, try another pass; its type may have been
15786 deduced from a later argument than the one from which
15787 this parameter can be deduced. */
15788 if (TREE_CODE (tparm) == PARM_DECL
15789 && uses_template_parms (TREE_TYPE (tparm))
15790 && !saw_undeduced++)
15791 goto again;
15792
15793 /* Core issue #226 (C++0x) [temp.deduct]:
15794
15795 If a template argument has not been deduced, its
15796 default template argument, if any, is used.
15797
15798 When we are in C++98 mode, TREE_PURPOSE will either
15799 be NULL_TREE or ERROR_MARK_NODE, so we do not need
15800 to explicitly check cxx_dialect here. */
15801 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
15802 {
15803 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15804 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
15805 location_t save_loc = input_location;
15806 if (DECL_P (parm))
15807 input_location = DECL_SOURCE_LOCATION (parm);
15808 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
15809 arg = convert_template_argument (parm, arg, targs, complain,
15810 i, NULL_TREE);
15811 input_location = save_loc;
15812 if (arg == error_mark_node)
15813 return 1;
15814 else
15815 {
15816 TREE_VEC_ELT (targs, i) = arg;
15817 /* The position of the first default template argument,
15818 is also the number of non-defaulted arguments in TARGS.
15819 Record that. */
15820 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15821 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
15822 continue;
15823 }
15824 }
15825
15826 /* If the type parameter is a parameter pack, then it will
15827 be deduced to an empty parameter pack. */
15828 if (template_parameter_pack_p (tparm))
15829 {
15830 tree arg;
15831
15832 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
15833 {
15834 arg = make_node (NONTYPE_ARGUMENT_PACK);
15835 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
15836 TREE_CONSTANT (arg) = 1;
15837 }
15838 else
15839 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
15840
15841 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
15842
15843 TREE_VEC_ELT (targs, i) = arg;
15844 continue;
15845 }
15846
15847 return unify_parameter_deduction_failure (explain_p, tparm);
15848 }
15849 }
15850 #ifdef ENABLE_CHECKING
15851 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15852 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
15853 #endif
15854
15855 return unify_success (explain_p);
15856 }
15857
15858 /* Subroutine of type_unification_real. Args are like the variables
15859 at the call site. ARG is an overloaded function (or template-id);
15860 we try deducing template args from each of the overloads, and if
15861 only one succeeds, we go with that. Modifies TARGS and returns
15862 true on success. */
15863
15864 static bool
15865 resolve_overloaded_unification (tree tparms,
15866 tree targs,
15867 tree parm,
15868 tree arg,
15869 unification_kind_t strict,
15870 int sub_strict,
15871 bool explain_p)
15872 {
15873 tree tempargs = copy_node (targs);
15874 int good = 0;
15875 tree goodfn = NULL_TREE;
15876 bool addr_p;
15877
15878 if (TREE_CODE (arg) == ADDR_EXPR)
15879 {
15880 arg = TREE_OPERAND (arg, 0);
15881 addr_p = true;
15882 }
15883 else
15884 addr_p = false;
15885
15886 if (TREE_CODE (arg) == COMPONENT_REF)
15887 /* Handle `&x' where `x' is some static or non-static member
15888 function name. */
15889 arg = TREE_OPERAND (arg, 1);
15890
15891 if (TREE_CODE (arg) == OFFSET_REF)
15892 arg = TREE_OPERAND (arg, 1);
15893
15894 /* Strip baselink information. */
15895 if (BASELINK_P (arg))
15896 arg = BASELINK_FUNCTIONS (arg);
15897
15898 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
15899 {
15900 /* If we got some explicit template args, we need to plug them into
15901 the affected templates before we try to unify, in case the
15902 explicit args will completely resolve the templates in question. */
15903
15904 int ok = 0;
15905 tree expl_subargs = TREE_OPERAND (arg, 1);
15906 arg = TREE_OPERAND (arg, 0);
15907
15908 for (; arg; arg = OVL_NEXT (arg))
15909 {
15910 tree fn = OVL_CURRENT (arg);
15911 tree subargs, elem;
15912
15913 if (TREE_CODE (fn) != TEMPLATE_DECL)
15914 continue;
15915
15916 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15917 expl_subargs, NULL_TREE, tf_none,
15918 /*require_all_args=*/true,
15919 /*use_default_args=*/true);
15920 if (subargs != error_mark_node
15921 && !any_dependent_template_arguments_p (subargs))
15922 {
15923 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
15924 if (try_one_overload (tparms, targs, tempargs, parm,
15925 elem, strict, sub_strict, addr_p, explain_p)
15926 && (!goodfn || !same_type_p (goodfn, elem)))
15927 {
15928 goodfn = elem;
15929 ++good;
15930 }
15931 }
15932 else if (subargs)
15933 ++ok;
15934 }
15935 /* If no templates (or more than one) are fully resolved by the
15936 explicit arguments, this template-id is a non-deduced context; it
15937 could still be OK if we deduce all template arguments for the
15938 enclosing call through other arguments. */
15939 if (good != 1)
15940 good = ok;
15941 }
15942 else if (TREE_CODE (arg) != OVERLOAD
15943 && TREE_CODE (arg) != FUNCTION_DECL)
15944 /* If ARG is, for example, "(0, &f)" then its type will be unknown
15945 -- but the deduction does not succeed because the expression is
15946 not just the function on its own. */
15947 return false;
15948 else
15949 for (; arg; arg = OVL_NEXT (arg))
15950 if (try_one_overload (tparms, targs, tempargs, parm,
15951 TREE_TYPE (OVL_CURRENT (arg)),
15952 strict, sub_strict, addr_p, explain_p)
15953 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
15954 {
15955 goodfn = OVL_CURRENT (arg);
15956 ++good;
15957 }
15958
15959 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15960 to function or pointer to member function argument if the set of
15961 overloaded functions does not contain function templates and at most
15962 one of a set of overloaded functions provides a unique match.
15963
15964 So if we found multiple possibilities, we return success but don't
15965 deduce anything. */
15966
15967 if (good == 1)
15968 {
15969 int i = TREE_VEC_LENGTH (targs);
15970 for (; i--; )
15971 if (TREE_VEC_ELT (tempargs, i))
15972 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
15973 }
15974 if (good)
15975 return true;
15976
15977 return false;
15978 }
15979
15980 /* Core DR 115: In contexts where deduction is done and fails, or in
15981 contexts where deduction is not done, if a template argument list is
15982 specified and it, along with any default template arguments, identifies
15983 a single function template specialization, then the template-id is an
15984 lvalue for the function template specialization. */
15985
15986 tree
15987 resolve_nondeduced_context (tree orig_expr)
15988 {
15989 tree expr, offset, baselink;
15990 bool addr;
15991
15992 if (!type_unknown_p (orig_expr))
15993 return orig_expr;
15994
15995 expr = orig_expr;
15996 addr = false;
15997 offset = NULL_TREE;
15998 baselink = NULL_TREE;
15999
16000 if (TREE_CODE (expr) == ADDR_EXPR)
16001 {
16002 expr = TREE_OPERAND (expr, 0);
16003 addr = true;
16004 }
16005 if (TREE_CODE (expr) == OFFSET_REF)
16006 {
16007 offset = expr;
16008 expr = TREE_OPERAND (expr, 1);
16009 }
16010 if (BASELINK_P (expr))
16011 {
16012 baselink = expr;
16013 expr = BASELINK_FUNCTIONS (expr);
16014 }
16015
16016 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
16017 {
16018 int good = 0;
16019 tree goodfn = NULL_TREE;
16020
16021 /* If we got some explicit template args, we need to plug them into
16022 the affected templates before we try to unify, in case the
16023 explicit args will completely resolve the templates in question. */
16024
16025 tree expl_subargs = TREE_OPERAND (expr, 1);
16026 tree arg = TREE_OPERAND (expr, 0);
16027 tree badfn = NULL_TREE;
16028 tree badargs = NULL_TREE;
16029
16030 for (; arg; arg = OVL_NEXT (arg))
16031 {
16032 tree fn = OVL_CURRENT (arg);
16033 tree subargs, elem;
16034
16035 if (TREE_CODE (fn) != TEMPLATE_DECL)
16036 continue;
16037
16038 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16039 expl_subargs, NULL_TREE, tf_none,
16040 /*require_all_args=*/true,
16041 /*use_default_args=*/true);
16042 if (subargs != error_mark_node
16043 && !any_dependent_template_arguments_p (subargs))
16044 {
16045 elem = instantiate_template (fn, subargs, tf_none);
16046 if (elem == error_mark_node)
16047 {
16048 badfn = fn;
16049 badargs = subargs;
16050 }
16051 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
16052 {
16053 goodfn = elem;
16054 ++good;
16055 }
16056 }
16057 }
16058 if (good == 1)
16059 {
16060 mark_used (goodfn);
16061 expr = goodfn;
16062 if (baselink)
16063 expr = build_baselink (BASELINK_BINFO (baselink),
16064 BASELINK_ACCESS_BINFO (baselink),
16065 expr, BASELINK_OPTYPE (baselink));
16066 if (offset)
16067 {
16068 tree base
16069 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
16070 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
16071 }
16072 if (addr)
16073 expr = cp_build_addr_expr (expr, tf_warning_or_error);
16074 return expr;
16075 }
16076 else if (good == 0 && badargs)
16077 /* There were no good options and at least one bad one, so let the
16078 user know what the problem is. */
16079 instantiate_template (badfn, badargs, tf_warning_or_error);
16080 }
16081 return orig_expr;
16082 }
16083
16084 /* Subroutine of resolve_overloaded_unification; does deduction for a single
16085 overload. Fills TARGS with any deduced arguments, or error_mark_node if
16086 different overloads deduce different arguments for a given parm.
16087 ADDR_P is true if the expression for which deduction is being
16088 performed was of the form "& fn" rather than simply "fn".
16089
16090 Returns 1 on success. */
16091
16092 static int
16093 try_one_overload (tree tparms,
16094 tree orig_targs,
16095 tree targs,
16096 tree parm,
16097 tree arg,
16098 unification_kind_t strict,
16099 int sub_strict,
16100 bool addr_p,
16101 bool explain_p)
16102 {
16103 int nargs;
16104 tree tempargs;
16105 int i;
16106
16107 if (arg == error_mark_node)
16108 return 0;
16109
16110 /* [temp.deduct.type] A template-argument can be deduced from a pointer
16111 to function or pointer to member function argument if the set of
16112 overloaded functions does not contain function templates and at most
16113 one of a set of overloaded functions provides a unique match.
16114
16115 So if this is a template, just return success. */
16116
16117 if (uses_template_parms (arg))
16118 return 1;
16119
16120 if (TREE_CODE (arg) == METHOD_TYPE)
16121 arg = build_ptrmemfunc_type (build_pointer_type (arg));
16122 else if (addr_p)
16123 arg = build_pointer_type (arg);
16124
16125 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
16126
16127 /* We don't copy orig_targs for this because if we have already deduced
16128 some template args from previous args, unify would complain when we
16129 try to deduce a template parameter for the same argument, even though
16130 there isn't really a conflict. */
16131 nargs = TREE_VEC_LENGTH (targs);
16132 tempargs = make_tree_vec (nargs);
16133
16134 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
16135 return 0;
16136
16137 /* First make sure we didn't deduce anything that conflicts with
16138 explicitly specified args. */
16139 for (i = nargs; i--; )
16140 {
16141 tree elt = TREE_VEC_ELT (tempargs, i);
16142 tree oldelt = TREE_VEC_ELT (orig_targs, i);
16143
16144 if (!elt)
16145 /*NOP*/;
16146 else if (uses_template_parms (elt))
16147 /* Since we're unifying against ourselves, we will fill in
16148 template args used in the function parm list with our own
16149 template parms. Discard them. */
16150 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
16151 else if (oldelt && !template_args_equal (oldelt, elt))
16152 return 0;
16153 }
16154
16155 for (i = nargs; i--; )
16156 {
16157 tree elt = TREE_VEC_ELT (tempargs, i);
16158
16159 if (elt)
16160 TREE_VEC_ELT (targs, i) = elt;
16161 }
16162
16163 return 1;
16164 }
16165
16166 /* PARM is a template class (perhaps with unbound template
16167 parameters). ARG is a fully instantiated type. If ARG can be
16168 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
16169 TARGS are as for unify. */
16170
16171 static tree
16172 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
16173 bool explain_p)
16174 {
16175 tree copy_of_targs;
16176
16177 if (!CLASSTYPE_TEMPLATE_INFO (arg)
16178 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
16179 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
16180 return NULL_TREE;
16181
16182 /* We need to make a new template argument vector for the call to
16183 unify. If we used TARGS, we'd clutter it up with the result of
16184 the attempted unification, even if this class didn't work out.
16185 We also don't want to commit ourselves to all the unifications
16186 we've already done, since unification is supposed to be done on
16187 an argument-by-argument basis. In other words, consider the
16188 following pathological case:
16189
16190 template <int I, int J, int K>
16191 struct S {};
16192
16193 template <int I, int J>
16194 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
16195
16196 template <int I, int J, int K>
16197 void f(S<I, J, K>, S<I, I, I>);
16198
16199 void g() {
16200 S<0, 0, 0> s0;
16201 S<0, 1, 2> s2;
16202
16203 f(s0, s2);
16204 }
16205
16206 Now, by the time we consider the unification involving `s2', we
16207 already know that we must have `f<0, 0, 0>'. But, even though
16208 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
16209 because there are two ways to unify base classes of S<0, 1, 2>
16210 with S<I, I, I>. If we kept the already deduced knowledge, we
16211 would reject the possibility I=1. */
16212 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
16213
16214 /* If unification failed, we're done. */
16215 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
16216 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
16217 return NULL_TREE;
16218
16219 return arg;
16220 }
16221
16222 /* Given a template type PARM and a class type ARG, find the unique
16223 base type in ARG that is an instance of PARM. We do not examine
16224 ARG itself; only its base-classes. If there is not exactly one
16225 appropriate base class, return NULL_TREE. PARM may be the type of
16226 a partial specialization, as well as a plain template type. Used
16227 by unify. */
16228
16229 static enum template_base_result
16230 get_template_base (tree tparms, tree targs, tree parm, tree arg,
16231 bool explain_p, tree *result)
16232 {
16233 tree rval = NULL_TREE;
16234 tree binfo;
16235
16236 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
16237
16238 binfo = TYPE_BINFO (complete_type (arg));
16239 if (!binfo)
16240 {
16241 /* The type could not be completed. */
16242 *result = NULL_TREE;
16243 return tbr_incomplete_type;
16244 }
16245
16246 /* Walk in inheritance graph order. The search order is not
16247 important, and this avoids multiple walks of virtual bases. */
16248 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
16249 {
16250 tree r = try_class_unification (tparms, targs, parm,
16251 BINFO_TYPE (binfo), explain_p);
16252
16253 if (r)
16254 {
16255 /* If there is more than one satisfactory baseclass, then:
16256
16257 [temp.deduct.call]
16258
16259 If they yield more than one possible deduced A, the type
16260 deduction fails.
16261
16262 applies. */
16263 if (rval && !same_type_p (r, rval))
16264 {
16265 *result = NULL_TREE;
16266 return tbr_ambiguous_baseclass;
16267 }
16268
16269 rval = r;
16270 }
16271 }
16272
16273 *result = rval;
16274 return tbr_success;
16275 }
16276
16277 /* Returns the level of DECL, which declares a template parameter. */
16278
16279 static int
16280 template_decl_level (tree decl)
16281 {
16282 switch (TREE_CODE (decl))
16283 {
16284 case TYPE_DECL:
16285 case TEMPLATE_DECL:
16286 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
16287
16288 case PARM_DECL:
16289 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
16290
16291 default:
16292 gcc_unreachable ();
16293 }
16294 return 0;
16295 }
16296
16297 /* Decide whether ARG can be unified with PARM, considering only the
16298 cv-qualifiers of each type, given STRICT as documented for unify.
16299 Returns nonzero iff the unification is OK on that basis. */
16300
16301 static int
16302 check_cv_quals_for_unify (int strict, tree arg, tree parm)
16303 {
16304 int arg_quals = cp_type_quals (arg);
16305 int parm_quals = cp_type_quals (parm);
16306
16307 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16308 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
16309 {
16310 /* Although a CVR qualifier is ignored when being applied to a
16311 substituted template parameter ([8.3.2]/1 for example), that
16312 does not allow us to unify "const T" with "int&" because both
16313 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
16314 It is ok when we're allowing additional CV qualifiers
16315 at the outer level [14.8.2.1]/3,1st bullet. */
16316 if ((TREE_CODE (arg) == REFERENCE_TYPE
16317 || TREE_CODE (arg) == FUNCTION_TYPE
16318 || TREE_CODE (arg) == METHOD_TYPE)
16319 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
16320 return 0;
16321
16322 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
16323 && (parm_quals & TYPE_QUAL_RESTRICT))
16324 return 0;
16325 }
16326
16327 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
16328 && (arg_quals & parm_quals) != parm_quals)
16329 return 0;
16330
16331 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
16332 && (parm_quals & arg_quals) != arg_quals)
16333 return 0;
16334
16335 return 1;
16336 }
16337
16338 /* Determines the LEVEL and INDEX for the template parameter PARM. */
16339 void
16340 template_parm_level_and_index (tree parm, int* level, int* index)
16341 {
16342 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16343 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16344 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16345 {
16346 *index = TEMPLATE_TYPE_IDX (parm);
16347 *level = TEMPLATE_TYPE_LEVEL (parm);
16348 }
16349 else
16350 {
16351 *index = TEMPLATE_PARM_IDX (parm);
16352 *level = TEMPLATE_PARM_LEVEL (parm);
16353 }
16354 }
16355
16356 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
16357 do { \
16358 if (unify (TP, TA, P, A, S, EP)) \
16359 return 1; \
16360 } while (0);
16361
16362 /* Unifies the remaining arguments in PACKED_ARGS with the pack
16363 expansion at the end of PACKED_PARMS. Returns 0 if the type
16364 deduction succeeds, 1 otherwise. STRICT is the same as in
16365 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
16366 call argument list. We'll need to adjust the arguments to make them
16367 types. SUBR tells us if this is from a recursive call to
16368 type_unification_real, or for comparing two template argument
16369 lists. */
16370
16371 static int
16372 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
16373 tree packed_args, unification_kind_t strict,
16374 bool subr, bool explain_p)
16375 {
16376 tree parm
16377 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
16378 tree pattern = PACK_EXPANSION_PATTERN (parm);
16379 tree pack, packs = NULL_TREE;
16380 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
16381 int len = TREE_VEC_LENGTH (packed_args);
16382
16383 /* Determine the parameter packs we will be deducing from the
16384 pattern, and record their current deductions. */
16385 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
16386 pack; pack = TREE_CHAIN (pack))
16387 {
16388 tree parm_pack = TREE_VALUE (pack);
16389 int idx, level;
16390
16391 /* Determine the index and level of this parameter pack. */
16392 template_parm_level_and_index (parm_pack, &level, &idx);
16393
16394 /* Keep track of the parameter packs and their corresponding
16395 argument packs. */
16396 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
16397 TREE_TYPE (packs) = make_tree_vec (len - start);
16398 }
16399
16400 /* Loop through all of the arguments that have not yet been
16401 unified and unify each with the pattern. */
16402 for (i = start; i < len; i++)
16403 {
16404 tree parm;
16405 bool any_explicit = false;
16406 tree arg = TREE_VEC_ELT (packed_args, i);
16407
16408 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
16409 or the element of its argument pack at the current index if
16410 this argument was explicitly specified. */
16411 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16412 {
16413 int idx, level;
16414 tree arg, pargs;
16415 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16416
16417 arg = NULL_TREE;
16418 if (TREE_VALUE (pack)
16419 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
16420 && (i - start < TREE_VEC_LENGTH (pargs)))
16421 {
16422 any_explicit = true;
16423 arg = TREE_VEC_ELT (pargs, i - start);
16424 }
16425 TMPL_ARG (targs, level, idx) = arg;
16426 }
16427
16428 /* If we had explicit template arguments, substitute them into the
16429 pattern before deduction. */
16430 if (any_explicit)
16431 {
16432 /* Some arguments might still be unspecified or dependent. */
16433 bool dependent;
16434 ++processing_template_decl;
16435 dependent = any_dependent_template_arguments_p (targs);
16436 if (!dependent)
16437 --processing_template_decl;
16438 parm = tsubst (pattern, targs,
16439 explain_p ? tf_warning_or_error : tf_none,
16440 NULL_TREE);
16441 if (dependent)
16442 --processing_template_decl;
16443 if (parm == error_mark_node)
16444 return 1;
16445 }
16446 else
16447 parm = pattern;
16448
16449 /* Unify the pattern with the current argument. */
16450 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16451 LOOKUP_IMPLICIT, explain_p))
16452 return 1;
16453
16454 /* For each parameter pack, collect the deduced value. */
16455 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16456 {
16457 int idx, level;
16458 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16459
16460 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
16461 TMPL_ARG (targs, level, idx);
16462 }
16463 }
16464
16465 /* Verify that the results of unification with the parameter packs
16466 produce results consistent with what we've seen before, and make
16467 the deduced argument packs available. */
16468 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16469 {
16470 tree old_pack = TREE_VALUE (pack);
16471 tree new_args = TREE_TYPE (pack);
16472 int i, len = TREE_VEC_LENGTH (new_args);
16473 int idx, level;
16474 bool nondeduced_p = false;
16475
16476 /* By default keep the original deduced argument pack.
16477 If necessary, more specific code is going to update the
16478 resulting deduced argument later down in this function. */
16479 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16480 TMPL_ARG (targs, level, idx) = old_pack;
16481
16482 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
16483 actually deduce anything. */
16484 for (i = 0; i < len && !nondeduced_p; ++i)
16485 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
16486 nondeduced_p = true;
16487 if (nondeduced_p)
16488 continue;
16489
16490 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
16491 {
16492 /* If we had fewer function args than explicit template args,
16493 just use the explicits. */
16494 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16495 int explicit_len = TREE_VEC_LENGTH (explicit_args);
16496 if (len < explicit_len)
16497 new_args = explicit_args;
16498 }
16499
16500 if (!old_pack)
16501 {
16502 tree result;
16503 /* Build the deduced *_ARGUMENT_PACK. */
16504 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
16505 {
16506 result = make_node (NONTYPE_ARGUMENT_PACK);
16507 TREE_TYPE (result) =
16508 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
16509 TREE_CONSTANT (result) = 1;
16510 }
16511 else
16512 result = cxx_make_type (TYPE_ARGUMENT_PACK);
16513
16514 SET_ARGUMENT_PACK_ARGS (result, new_args);
16515
16516 /* Note the deduced argument packs for this parameter
16517 pack. */
16518 TMPL_ARG (targs, level, idx) = result;
16519 }
16520 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
16521 && (ARGUMENT_PACK_ARGS (old_pack)
16522 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
16523 {
16524 /* We only had the explicitly-provided arguments before, but
16525 now we have a complete set of arguments. */
16526 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16527
16528 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
16529 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
16530 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
16531 }
16532 else
16533 {
16534 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
16535 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
16536
16537 if (!comp_template_args_with_info (old_args, new_args,
16538 &bad_old_arg, &bad_new_arg))
16539 /* Inconsistent unification of this parameter pack. */
16540 return unify_parameter_pack_inconsistent (explain_p,
16541 bad_old_arg,
16542 bad_new_arg);
16543 }
16544 }
16545
16546 return unify_success (explain_p);
16547 }
16548
16549 /* Deduce the value of template parameters. TPARMS is the (innermost)
16550 set of template parameters to a template. TARGS is the bindings
16551 for those template parameters, as determined thus far; TARGS may
16552 include template arguments for outer levels of template parameters
16553 as well. PARM is a parameter to a template function, or a
16554 subcomponent of that parameter; ARG is the corresponding argument.
16555 This function attempts to match PARM with ARG in a manner
16556 consistent with the existing assignments in TARGS. If more values
16557 are deduced, then TARGS is updated.
16558
16559 Returns 0 if the type deduction succeeds, 1 otherwise. The
16560 parameter STRICT is a bitwise or of the following flags:
16561
16562 UNIFY_ALLOW_NONE:
16563 Require an exact match between PARM and ARG.
16564 UNIFY_ALLOW_MORE_CV_QUAL:
16565 Allow the deduced ARG to be more cv-qualified (by qualification
16566 conversion) than ARG.
16567 UNIFY_ALLOW_LESS_CV_QUAL:
16568 Allow the deduced ARG to be less cv-qualified than ARG.
16569 UNIFY_ALLOW_DERIVED:
16570 Allow the deduced ARG to be a template base class of ARG,
16571 or a pointer to a template base class of the type pointed to by
16572 ARG.
16573 UNIFY_ALLOW_INTEGER:
16574 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
16575 case for more information.
16576 UNIFY_ALLOW_OUTER_LEVEL:
16577 This is the outermost level of a deduction. Used to determine validity
16578 of qualification conversions. A valid qualification conversion must
16579 have const qualified pointers leading up to the inner type which
16580 requires additional CV quals, except at the outer level, where const
16581 is not required [conv.qual]. It would be normal to set this flag in
16582 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
16583 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
16584 This is the outermost level of a deduction, and PARM can be more CV
16585 qualified at this point.
16586 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
16587 This is the outermost level of a deduction, and PARM can be less CV
16588 qualified at this point. */
16589
16590 static int
16591 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
16592 bool explain_p)
16593 {
16594 int idx;
16595 tree targ;
16596 tree tparm;
16597 int strict_in = strict;
16598
16599 /* I don't think this will do the right thing with respect to types.
16600 But the only case I've seen it in so far has been array bounds, where
16601 signedness is the only information lost, and I think that will be
16602 okay. */
16603 while (TREE_CODE (parm) == NOP_EXPR)
16604 parm = TREE_OPERAND (parm, 0);
16605
16606 if (arg == error_mark_node)
16607 return unify_invalid (explain_p);
16608 if (arg == unknown_type_node
16609 || arg == init_list_type_node)
16610 /* We can't deduce anything from this, but we might get all the
16611 template args from other function args. */
16612 return unify_success (explain_p);
16613
16614 /* If PARM uses template parameters, then we can't bail out here,
16615 even if ARG == PARM, since we won't record unifications for the
16616 template parameters. We might need them if we're trying to
16617 figure out which of two things is more specialized. */
16618 if (arg == parm && !uses_template_parms (parm))
16619 return unify_success (explain_p);
16620
16621 /* Handle init lists early, so the rest of the function can assume
16622 we're dealing with a type. */
16623 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
16624 {
16625 tree elt, elttype;
16626 unsigned i;
16627 tree orig_parm = parm;
16628
16629 /* Replace T with std::initializer_list<T> for deduction. */
16630 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16631 && flag_deduce_init_list)
16632 parm = listify (parm);
16633
16634 if (!is_std_init_list (parm))
16635 /* We can only deduce from an initializer list argument if the
16636 parameter is std::initializer_list; otherwise this is a
16637 non-deduced context. */
16638 return unify_success (explain_p);
16639
16640 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
16641
16642 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
16643 {
16644 int elt_strict = strict;
16645
16646 if (elt == error_mark_node)
16647 return unify_invalid (explain_p);
16648
16649 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
16650 {
16651 tree type = TREE_TYPE (elt);
16652 /* It should only be possible to get here for a call. */
16653 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
16654 elt_strict |= maybe_adjust_types_for_deduction
16655 (DEDUCE_CALL, &elttype, &type, elt);
16656 elt = type;
16657 }
16658
16659 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
16660 explain_p);
16661 }
16662
16663 /* If the std::initializer_list<T> deduction worked, replace the
16664 deduced A with std::initializer_list<A>. */
16665 if (orig_parm != parm)
16666 {
16667 idx = TEMPLATE_TYPE_IDX (orig_parm);
16668 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16669 targ = listify (targ);
16670 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
16671 }
16672 return unify_success (explain_p);
16673 }
16674
16675 /* Immediately reject some pairs that won't unify because of
16676 cv-qualification mismatches. */
16677 if (TREE_CODE (arg) == TREE_CODE (parm)
16678 && TYPE_P (arg)
16679 /* It is the elements of the array which hold the cv quals of an array
16680 type, and the elements might be template type parms. We'll check
16681 when we recurse. */
16682 && TREE_CODE (arg) != ARRAY_TYPE
16683 /* We check the cv-qualifiers when unifying with template type
16684 parameters below. We want to allow ARG `const T' to unify with
16685 PARM `T' for example, when computing which of two templates
16686 is more specialized, for example. */
16687 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
16688 && !check_cv_quals_for_unify (strict_in, arg, parm))
16689 return unify_cv_qual_mismatch (explain_p, parm, arg);
16690
16691 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
16692 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
16693 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
16694 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
16695 strict &= ~UNIFY_ALLOW_DERIVED;
16696 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16697 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
16698
16699 switch (TREE_CODE (parm))
16700 {
16701 case TYPENAME_TYPE:
16702 case SCOPE_REF:
16703 case UNBOUND_CLASS_TEMPLATE:
16704 /* In a type which contains a nested-name-specifier, template
16705 argument values cannot be deduced for template parameters used
16706 within the nested-name-specifier. */
16707 return unify_success (explain_p);
16708
16709 case TEMPLATE_TYPE_PARM:
16710 case TEMPLATE_TEMPLATE_PARM:
16711 case BOUND_TEMPLATE_TEMPLATE_PARM:
16712 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16713 if (tparm == error_mark_node)
16714 return unify_invalid (explain_p);
16715
16716 if (TEMPLATE_TYPE_LEVEL (parm)
16717 != template_decl_level (tparm))
16718 /* The PARM is not one we're trying to unify. Just check
16719 to see if it matches ARG. */
16720 {
16721 if (TREE_CODE (arg) == TREE_CODE (parm)
16722 && (is_auto (parm) ? is_auto (arg)
16723 : same_type_p (parm, arg)))
16724 return unify_success (explain_p);
16725 else
16726 return unify_type_mismatch (explain_p, parm, arg);
16727 }
16728 idx = TEMPLATE_TYPE_IDX (parm);
16729 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16730 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
16731 if (tparm == error_mark_node)
16732 return unify_invalid (explain_p);
16733
16734 /* Check for mixed types and values. */
16735 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16736 && TREE_CODE (tparm) != TYPE_DECL)
16737 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16738 && TREE_CODE (tparm) != TEMPLATE_DECL))
16739 gcc_unreachable ();
16740
16741 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16742 {
16743 /* ARG must be constructed from a template class or a template
16744 template parameter. */
16745 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
16746 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
16747 return unify_template_deduction_failure (explain_p, parm, arg);
16748
16749 {
16750 tree parmvec = TYPE_TI_ARGS (parm);
16751 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
16752 tree full_argvec = add_to_template_args (targs, argvec);
16753 tree parm_parms
16754 = DECL_INNERMOST_TEMPLATE_PARMS
16755 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
16756 int i, len;
16757 int parm_variadic_p = 0;
16758
16759 /* The resolution to DR150 makes clear that default
16760 arguments for an N-argument may not be used to bind T
16761 to a template template parameter with fewer than N
16762 parameters. It is not safe to permit the binding of
16763 default arguments as an extension, as that may change
16764 the meaning of a conforming program. Consider:
16765
16766 struct Dense { static const unsigned int dim = 1; };
16767
16768 template <template <typename> class View,
16769 typename Block>
16770 void operator+(float, View<Block> const&);
16771
16772 template <typename Block,
16773 unsigned int Dim = Block::dim>
16774 struct Lvalue_proxy { operator float() const; };
16775
16776 void
16777 test_1d (void) {
16778 Lvalue_proxy<Dense> p;
16779 float b;
16780 b + p;
16781 }
16782
16783 Here, if Lvalue_proxy is permitted to bind to View, then
16784 the global operator+ will be used; if they are not, the
16785 Lvalue_proxy will be converted to float. */
16786 if (coerce_template_parms (parm_parms,
16787 full_argvec,
16788 TYPE_TI_TEMPLATE (parm),
16789 (explain_p
16790 ? tf_warning_or_error
16791 : tf_none),
16792 /*require_all_args=*/true,
16793 /*use_default_args=*/false)
16794 == error_mark_node)
16795 return 1;
16796
16797 /* Deduce arguments T, i from TT<T> or TT<i>.
16798 We check each element of PARMVEC and ARGVEC individually
16799 rather than the whole TREE_VEC since they can have
16800 different number of elements. */
16801
16802 parmvec = expand_template_argument_pack (parmvec);
16803 argvec = expand_template_argument_pack (argvec);
16804
16805 len = TREE_VEC_LENGTH (parmvec);
16806
16807 /* Check if the parameters end in a pack, making them
16808 variadic. */
16809 if (len > 0
16810 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
16811 parm_variadic_p = 1;
16812
16813 for (i = 0; i < len - parm_variadic_p; ++i)
16814 /* If the template argument list of P contains a pack
16815 expansion that is not the last template argument, the
16816 entire template argument list is a non-deduced
16817 context. */
16818 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
16819 return unify_success (explain_p);
16820
16821 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
16822 return unify_too_few_arguments (explain_p,
16823 TREE_VEC_LENGTH (argvec), len);
16824
16825 for (i = 0; i < len - parm_variadic_p; ++i)
16826 {
16827 RECUR_AND_CHECK_FAILURE (tparms, targs,
16828 TREE_VEC_ELT (parmvec, i),
16829 TREE_VEC_ELT (argvec, i),
16830 UNIFY_ALLOW_NONE, explain_p);
16831 }
16832
16833 if (parm_variadic_p
16834 && unify_pack_expansion (tparms, targs,
16835 parmvec, argvec,
16836 DEDUCE_EXACT,
16837 /*subr=*/true, explain_p))
16838 return 1;
16839 }
16840 arg = TYPE_TI_TEMPLATE (arg);
16841
16842 /* Fall through to deduce template name. */
16843 }
16844
16845 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16846 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16847 {
16848 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
16849
16850 /* Simple cases: Value already set, does match or doesn't. */
16851 if (targ != NULL_TREE && template_args_equal (targ, arg))
16852 return unify_success (explain_p);
16853 else if (targ)
16854 return unify_inconsistency (explain_p, parm, targ, arg);
16855 }
16856 else
16857 {
16858 /* If PARM is `const T' and ARG is only `int', we don't have
16859 a match unless we are allowing additional qualification.
16860 If ARG is `const int' and PARM is just `T' that's OK;
16861 that binds `const int' to `T'. */
16862 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
16863 arg, parm))
16864 return unify_cv_qual_mismatch (explain_p, parm, arg);
16865
16866 /* Consider the case where ARG is `const volatile int' and
16867 PARM is `const T'. Then, T should be `volatile int'. */
16868 arg = cp_build_qualified_type_real
16869 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
16870 if (arg == error_mark_node)
16871 return unify_invalid (explain_p);
16872
16873 /* Simple cases: Value already set, does match or doesn't. */
16874 if (targ != NULL_TREE && same_type_p (targ, arg))
16875 return unify_success (explain_p);
16876 else if (targ)
16877 return unify_inconsistency (explain_p, parm, targ, arg);
16878
16879 /* Make sure that ARG is not a variable-sized array. (Note
16880 that were talking about variable-sized arrays (like
16881 `int[n]'), rather than arrays of unknown size (like
16882 `int[]').) We'll get very confused by such a type since
16883 the bound of the array is not constant, and therefore
16884 not mangleable. Besides, such types are not allowed in
16885 ISO C++, so we can do as we please here. We do allow
16886 them for 'auto' deduction, since that isn't ABI-exposed. */
16887 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
16888 return unify_vla_arg (explain_p, arg);
16889
16890 /* Strip typedefs as in convert_template_argument. */
16891 arg = canonicalize_type_argument (arg, tf_none);
16892 }
16893
16894 /* If ARG is a parameter pack or an expansion, we cannot unify
16895 against it unless PARM is also a parameter pack. */
16896 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16897 && !template_parameter_pack_p (parm))
16898 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16899
16900 /* If the argument deduction results is a METHOD_TYPE,
16901 then there is a problem.
16902 METHOD_TYPE doesn't map to any real C++ type the result of
16903 the deduction can not be of that type. */
16904 if (TREE_CODE (arg) == METHOD_TYPE)
16905 return unify_method_type_error (explain_p, arg);
16906
16907 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16908 return unify_success (explain_p);
16909
16910 case TEMPLATE_PARM_INDEX:
16911 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16912 if (tparm == error_mark_node)
16913 return unify_invalid (explain_p);
16914
16915 if (TEMPLATE_PARM_LEVEL (parm)
16916 != template_decl_level (tparm))
16917 {
16918 /* The PARM is not one we're trying to unify. Just check
16919 to see if it matches ARG. */
16920 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
16921 && cp_tree_equal (parm, arg));
16922 if (result)
16923 unify_expression_unequal (explain_p, parm, arg);
16924 return result;
16925 }
16926
16927 idx = TEMPLATE_PARM_IDX (parm);
16928 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16929
16930 if (targ)
16931 {
16932 int x = !cp_tree_equal (targ, arg);
16933 if (x)
16934 unify_inconsistency (explain_p, parm, targ, arg);
16935 return x;
16936 }
16937
16938 /* [temp.deduct.type] If, in the declaration of a function template
16939 with a non-type template-parameter, the non-type
16940 template-parameter is used in an expression in the function
16941 parameter-list and, if the corresponding template-argument is
16942 deduced, the template-argument type shall match the type of the
16943 template-parameter exactly, except that a template-argument
16944 deduced from an array bound may be of any integral type.
16945 The non-type parameter might use already deduced type parameters. */
16946 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
16947 if (!TREE_TYPE (arg))
16948 /* Template-parameter dependent expression. Just accept it for now.
16949 It will later be processed in convert_template_argument. */
16950 ;
16951 else if (same_type_p (TREE_TYPE (arg), tparm))
16952 /* OK */;
16953 else if ((strict & UNIFY_ALLOW_INTEGER)
16954 && CP_INTEGRAL_TYPE_P (tparm))
16955 /* Convert the ARG to the type of PARM; the deduced non-type
16956 template argument must exactly match the types of the
16957 corresponding parameter. */
16958 arg = fold (build_nop (tparm, arg));
16959 else if (uses_template_parms (tparm))
16960 /* We haven't deduced the type of this parameter yet. Try again
16961 later. */
16962 return unify_success (explain_p);
16963 else
16964 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
16965
16966 /* If ARG is a parameter pack or an expansion, we cannot unify
16967 against it unless PARM is also a parameter pack. */
16968 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16969 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
16970 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16971
16972 arg = strip_typedefs_expr (arg);
16973 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16974 return unify_success (explain_p);
16975
16976 case PTRMEM_CST:
16977 {
16978 /* A pointer-to-member constant can be unified only with
16979 another constant. */
16980 if (TREE_CODE (arg) != PTRMEM_CST)
16981 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
16982
16983 /* Just unify the class member. It would be useless (and possibly
16984 wrong, depending on the strict flags) to unify also
16985 PTRMEM_CST_CLASS, because we want to be sure that both parm and
16986 arg refer to the same variable, even if through different
16987 classes. For instance:
16988
16989 struct A { int x; };
16990 struct B : A { };
16991
16992 Unification of &A::x and &B::x must succeed. */
16993 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
16994 PTRMEM_CST_MEMBER (arg), strict, explain_p);
16995 }
16996
16997 case POINTER_TYPE:
16998 {
16999 if (!TYPE_PTR_P (arg))
17000 return unify_type_mismatch (explain_p, parm, arg);
17001
17002 /* [temp.deduct.call]
17003
17004 A can be another pointer or pointer to member type that can
17005 be converted to the deduced A via a qualification
17006 conversion (_conv.qual_).
17007
17008 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
17009 This will allow for additional cv-qualification of the
17010 pointed-to types if appropriate. */
17011
17012 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
17013 /* The derived-to-base conversion only persists through one
17014 level of pointers. */
17015 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
17016
17017 return unify (tparms, targs, TREE_TYPE (parm),
17018 TREE_TYPE (arg), strict, explain_p);
17019 }
17020
17021 case REFERENCE_TYPE:
17022 if (TREE_CODE (arg) != REFERENCE_TYPE)
17023 return unify_type_mismatch (explain_p, parm, arg);
17024 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
17025 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
17026
17027 case ARRAY_TYPE:
17028 if (TREE_CODE (arg) != ARRAY_TYPE)
17029 return unify_type_mismatch (explain_p, parm, arg);
17030 if ((TYPE_DOMAIN (parm) == NULL_TREE)
17031 != (TYPE_DOMAIN (arg) == NULL_TREE))
17032 return unify_type_mismatch (explain_p, parm, arg);
17033 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
17034 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
17035 if (TYPE_DOMAIN (parm) != NULL_TREE)
17036 {
17037 tree parm_max;
17038 tree arg_max;
17039 bool parm_cst;
17040 bool arg_cst;
17041
17042 /* Our representation of array types uses "N - 1" as the
17043 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17044 not an integer constant. We cannot unify arbitrarily
17045 complex expressions, so we eliminate the MINUS_EXPRs
17046 here. */
17047 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
17048 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17049 if (!parm_cst)
17050 {
17051 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17052 parm_max = TREE_OPERAND (parm_max, 0);
17053 }
17054 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
17055 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17056 if (!arg_cst)
17057 {
17058 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17059 trying to unify the type of a variable with the type
17060 of a template parameter. For example:
17061
17062 template <unsigned int N>
17063 void f (char (&) [N]);
17064 int g();
17065 void h(int i) {
17066 char a[g(i)];
17067 f(a);
17068 }
17069
17070 Here, the type of the ARG will be "int [g(i)]", and
17071 may be a SAVE_EXPR, etc. */
17072 if (TREE_CODE (arg_max) != MINUS_EXPR)
17073 return unify_vla_arg (explain_p, arg);
17074 arg_max = TREE_OPERAND (arg_max, 0);
17075 }
17076
17077 /* If only one of the bounds used a MINUS_EXPR, compensate
17078 by adding one to the other bound. */
17079 if (parm_cst && !arg_cst)
17080 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17081 integer_type_node,
17082 parm_max,
17083 integer_one_node);
17084 else if (arg_cst && !parm_cst)
17085 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17086 integer_type_node,
17087 arg_max,
17088 integer_one_node);
17089
17090 RECUR_AND_CHECK_FAILURE (tparms, targs, parm_max, arg_max,
17091 UNIFY_ALLOW_INTEGER, explain_p);
17092 }
17093 return unify_success (explain_p);
17094
17095 case REAL_TYPE:
17096 case COMPLEX_TYPE:
17097 case VECTOR_TYPE:
17098 case INTEGER_TYPE:
17099 case BOOLEAN_TYPE:
17100 case ENUMERAL_TYPE:
17101 case VOID_TYPE:
17102 case NULLPTR_TYPE:
17103 if (TREE_CODE (arg) != TREE_CODE (parm))
17104 return unify_type_mismatch (explain_p, parm, arg);
17105
17106 /* We have already checked cv-qualification at the top of the
17107 function. */
17108 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
17109 return unify_type_mismatch (explain_p, parm, arg);
17110
17111 /* As far as unification is concerned, this wins. Later checks
17112 will invalidate it if necessary. */
17113 return unify_success (explain_p);
17114
17115 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
17116 /* Type INTEGER_CST can come from ordinary constant template args. */
17117 case INTEGER_CST:
17118 while (TREE_CODE (arg) == NOP_EXPR)
17119 arg = TREE_OPERAND (arg, 0);
17120
17121 if (TREE_CODE (arg) != INTEGER_CST)
17122 return unify_template_argument_mismatch (explain_p, parm, arg);
17123 return (tree_int_cst_equal (parm, arg)
17124 ? unify_success (explain_p)
17125 : unify_template_argument_mismatch (explain_p, parm, arg));
17126
17127 case TREE_VEC:
17128 {
17129 int i, len, argslen;
17130 int parm_variadic_p = 0;
17131
17132 if (TREE_CODE (arg) != TREE_VEC)
17133 return unify_template_argument_mismatch (explain_p, parm, arg);
17134
17135 len = TREE_VEC_LENGTH (parm);
17136 argslen = TREE_VEC_LENGTH (arg);
17137
17138 /* Check for pack expansions in the parameters. */
17139 for (i = 0; i < len; ++i)
17140 {
17141 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
17142 {
17143 if (i == len - 1)
17144 /* We can unify against something with a trailing
17145 parameter pack. */
17146 parm_variadic_p = 1;
17147 else
17148 /* [temp.deduct.type]/9: If the template argument list of
17149 P contains a pack expansion that is not the last
17150 template argument, the entire template argument list
17151 is a non-deduced context. */
17152 return unify_success (explain_p);
17153 }
17154 }
17155
17156 /* If we don't have enough arguments to satisfy the parameters
17157 (not counting the pack expression at the end), or we have
17158 too many arguments for a parameter list that doesn't end in
17159 a pack expression, we can't unify. */
17160 if (parm_variadic_p
17161 ? argslen < len - parm_variadic_p
17162 : argslen != len)
17163 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
17164
17165 /* Unify all of the parameters that precede the (optional)
17166 pack expression. */
17167 for (i = 0; i < len - parm_variadic_p; ++i)
17168 {
17169 RECUR_AND_CHECK_FAILURE (tparms, targs,
17170 TREE_VEC_ELT (parm, i),
17171 TREE_VEC_ELT (arg, i),
17172 UNIFY_ALLOW_NONE, explain_p);
17173 }
17174 if (parm_variadic_p)
17175 return unify_pack_expansion (tparms, targs, parm, arg,
17176 DEDUCE_EXACT,
17177 /*subr=*/true, explain_p);
17178 return unify_success (explain_p);
17179 }
17180
17181 case RECORD_TYPE:
17182 case UNION_TYPE:
17183 if (TREE_CODE (arg) != TREE_CODE (parm))
17184 return unify_type_mismatch (explain_p, parm, arg);
17185
17186 if (TYPE_PTRMEMFUNC_P (parm))
17187 {
17188 if (!TYPE_PTRMEMFUNC_P (arg))
17189 return unify_type_mismatch (explain_p, parm, arg);
17190
17191 return unify (tparms, targs,
17192 TYPE_PTRMEMFUNC_FN_TYPE (parm),
17193 TYPE_PTRMEMFUNC_FN_TYPE (arg),
17194 strict, explain_p);
17195 }
17196
17197 if (CLASSTYPE_TEMPLATE_INFO (parm))
17198 {
17199 tree t = NULL_TREE;
17200
17201 if (strict_in & UNIFY_ALLOW_DERIVED)
17202 {
17203 /* First, we try to unify the PARM and ARG directly. */
17204 t = try_class_unification (tparms, targs,
17205 parm, arg, explain_p);
17206
17207 if (!t)
17208 {
17209 /* Fallback to the special case allowed in
17210 [temp.deduct.call]:
17211
17212 If P is a class, and P has the form
17213 template-id, then A can be a derived class of
17214 the deduced A. Likewise, if P is a pointer to
17215 a class of the form template-id, A can be a
17216 pointer to a derived class pointed to by the
17217 deduced A. */
17218 enum template_base_result r;
17219 r = get_template_base (tparms, targs, parm, arg,
17220 explain_p, &t);
17221
17222 if (!t)
17223 return unify_no_common_base (explain_p, r, parm, arg);
17224 }
17225 }
17226 else if (CLASSTYPE_TEMPLATE_INFO (arg)
17227 && (CLASSTYPE_TI_TEMPLATE (parm)
17228 == CLASSTYPE_TI_TEMPLATE (arg)))
17229 /* Perhaps PARM is something like S<U> and ARG is S<int>.
17230 Then, we should unify `int' and `U'. */
17231 t = arg;
17232 else
17233 /* There's no chance of unification succeeding. */
17234 return unify_type_mismatch (explain_p, parm, arg);
17235
17236 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
17237 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
17238 }
17239 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
17240 return unify_type_mismatch (explain_p, parm, arg);
17241 return unify_success (explain_p);
17242
17243 case METHOD_TYPE:
17244 case FUNCTION_TYPE:
17245 {
17246 unsigned int nargs;
17247 tree *args;
17248 tree a;
17249 unsigned int i;
17250
17251 if (TREE_CODE (arg) != TREE_CODE (parm))
17252 return unify_type_mismatch (explain_p, parm, arg);
17253
17254 /* CV qualifications for methods can never be deduced, they must
17255 match exactly. We need to check them explicitly here,
17256 because type_unification_real treats them as any other
17257 cv-qualified parameter. */
17258 if (TREE_CODE (parm) == METHOD_TYPE
17259 && (!check_cv_quals_for_unify
17260 (UNIFY_ALLOW_NONE,
17261 class_of_this_parm (arg),
17262 class_of_this_parm (parm))))
17263 return unify_cv_qual_mismatch (explain_p, parm, arg);
17264
17265 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
17266 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
17267
17268 nargs = list_length (TYPE_ARG_TYPES (arg));
17269 args = XALLOCAVEC (tree, nargs);
17270 for (a = TYPE_ARG_TYPES (arg), i = 0;
17271 a != NULL_TREE && a != void_list_node;
17272 a = TREE_CHAIN (a), ++i)
17273 args[i] = TREE_VALUE (a);
17274 nargs = i;
17275
17276 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
17277 args, nargs, 1, DEDUCE_EXACT,
17278 LOOKUP_NORMAL, explain_p);
17279 }
17280
17281 case OFFSET_TYPE:
17282 /* Unify a pointer to member with a pointer to member function, which
17283 deduces the type of the member as a function type. */
17284 if (TYPE_PTRMEMFUNC_P (arg))
17285 {
17286 /* Check top-level cv qualifiers */
17287 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
17288 return unify_cv_qual_mismatch (explain_p, parm, arg);
17289
17290 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
17291 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
17292 UNIFY_ALLOW_NONE, explain_p);
17293
17294 /* Determine the type of the function we are unifying against. */
17295 tree fntype = static_fn_type (arg);
17296
17297 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
17298 }
17299
17300 if (TREE_CODE (arg) != OFFSET_TYPE)
17301 return unify_type_mismatch (explain_p, parm, arg);
17302 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
17303 TYPE_OFFSET_BASETYPE (arg),
17304 UNIFY_ALLOW_NONE, explain_p);
17305 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
17306 strict, explain_p);
17307
17308 case CONST_DECL:
17309 if (DECL_TEMPLATE_PARM_P (parm))
17310 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
17311 if (arg != integral_constant_value (parm))
17312 return unify_template_argument_mismatch (explain_p, parm, arg);
17313 return unify_success (explain_p);
17314
17315 case FIELD_DECL:
17316 case TEMPLATE_DECL:
17317 /* Matched cases are handled by the ARG == PARM test above. */
17318 return unify_template_argument_mismatch (explain_p, parm, arg);
17319
17320 case VAR_DECL:
17321 /* A non-type template parameter that is a variable should be a
17322 an integral constant, in which case, it whould have been
17323 folded into its (constant) value. So we should not be getting
17324 a variable here. */
17325 gcc_unreachable ();
17326
17327 case TYPE_ARGUMENT_PACK:
17328 case NONTYPE_ARGUMENT_PACK:
17329 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
17330 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
17331
17332 case TYPEOF_TYPE:
17333 case DECLTYPE_TYPE:
17334 case UNDERLYING_TYPE:
17335 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
17336 or UNDERLYING_TYPE nodes. */
17337 return unify_success (explain_p);
17338
17339 case ERROR_MARK:
17340 /* Unification fails if we hit an error node. */
17341 return unify_invalid (explain_p);
17342
17343 default:
17344 /* An unresolved overload is a nondeduced context. */
17345 if (is_overloaded_fn (parm) || type_unknown_p (parm))
17346 return unify_success (explain_p);
17347 gcc_assert (EXPR_P (parm));
17348
17349 /* We must be looking at an expression. This can happen with
17350 something like:
17351
17352 template <int I>
17353 void foo(S<I>, S<I + 2>);
17354
17355 This is a "nondeduced context":
17356
17357 [deduct.type]
17358
17359 The nondeduced contexts are:
17360
17361 --A type that is a template-id in which one or more of
17362 the template-arguments is an expression that references
17363 a template-parameter.
17364
17365 In these cases, we assume deduction succeeded, but don't
17366 actually infer any unifications. */
17367
17368 if (!uses_template_parms (parm)
17369 && !template_args_equal (parm, arg))
17370 return unify_expression_unequal (explain_p, parm, arg);
17371 else
17372 return unify_success (explain_p);
17373 }
17374 }
17375 #undef RECUR_AND_CHECK_FAILURE
17376 \f
17377 /* Note that DECL can be defined in this translation unit, if
17378 required. */
17379
17380 static void
17381 mark_definable (tree decl)
17382 {
17383 tree clone;
17384 DECL_NOT_REALLY_EXTERN (decl) = 1;
17385 FOR_EACH_CLONE (clone, decl)
17386 DECL_NOT_REALLY_EXTERN (clone) = 1;
17387 }
17388
17389 /* Called if RESULT is explicitly instantiated, or is a member of an
17390 explicitly instantiated class. */
17391
17392 void
17393 mark_decl_instantiated (tree result, int extern_p)
17394 {
17395 SET_DECL_EXPLICIT_INSTANTIATION (result);
17396
17397 /* If this entity has already been written out, it's too late to
17398 make any modifications. */
17399 if (TREE_ASM_WRITTEN (result))
17400 return;
17401
17402 /* For anonymous namespace we don't need to do anything. */
17403 if (decl_anon_ns_mem_p (result))
17404 {
17405 gcc_assert (!TREE_PUBLIC (result));
17406 return;
17407 }
17408
17409 if (TREE_CODE (result) != FUNCTION_DECL)
17410 /* The TREE_PUBLIC flag for function declarations will have been
17411 set correctly by tsubst. */
17412 TREE_PUBLIC (result) = 1;
17413
17414 /* This might have been set by an earlier implicit instantiation. */
17415 DECL_COMDAT (result) = 0;
17416
17417 if (extern_p)
17418 DECL_NOT_REALLY_EXTERN (result) = 0;
17419 else
17420 {
17421 mark_definable (result);
17422 /* Always make artificials weak. */
17423 if (DECL_ARTIFICIAL (result) && flag_weak)
17424 comdat_linkage (result);
17425 /* For WIN32 we also want to put explicit instantiations in
17426 linkonce sections. */
17427 else if (TREE_PUBLIC (result))
17428 maybe_make_one_only (result);
17429 }
17430
17431 /* If EXTERN_P, then this function will not be emitted -- unless
17432 followed by an explicit instantiation, at which point its linkage
17433 will be adjusted. If !EXTERN_P, then this function will be
17434 emitted here. In neither circumstance do we want
17435 import_export_decl to adjust the linkage. */
17436 DECL_INTERFACE_KNOWN (result) = 1;
17437 }
17438
17439 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
17440 important template arguments. If any are missing, we check whether
17441 they're important by using error_mark_node for substituting into any
17442 args that were used for partial ordering (the ones between ARGS and END)
17443 and seeing if it bubbles up. */
17444
17445 static bool
17446 check_undeduced_parms (tree targs, tree args, tree end)
17447 {
17448 bool found = false;
17449 int i;
17450 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
17451 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
17452 {
17453 found = true;
17454 TREE_VEC_ELT (targs, i) = error_mark_node;
17455 }
17456 if (found)
17457 {
17458 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
17459 if (substed == error_mark_node)
17460 return true;
17461 }
17462 return false;
17463 }
17464
17465 /* Given two function templates PAT1 and PAT2, return:
17466
17467 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
17468 -1 if PAT2 is more specialized than PAT1.
17469 0 if neither is more specialized.
17470
17471 LEN indicates the number of parameters we should consider
17472 (defaulted parameters should not be considered).
17473
17474 The 1998 std underspecified function template partial ordering, and
17475 DR214 addresses the issue. We take pairs of arguments, one from
17476 each of the templates, and deduce them against each other. One of
17477 the templates will be more specialized if all the *other*
17478 template's arguments deduce against its arguments and at least one
17479 of its arguments *does* *not* deduce against the other template's
17480 corresponding argument. Deduction is done as for class templates.
17481 The arguments used in deduction have reference and top level cv
17482 qualifiers removed. Iff both arguments were originally reference
17483 types *and* deduction succeeds in both directions, the template
17484 with the more cv-qualified argument wins for that pairing (if
17485 neither is more cv-qualified, they both are equal). Unlike regular
17486 deduction, after all the arguments have been deduced in this way,
17487 we do *not* verify the deduced template argument values can be
17488 substituted into non-deduced contexts.
17489
17490 The logic can be a bit confusing here, because we look at deduce1 and
17491 targs1 to see if pat2 is at least as specialized, and vice versa; if we
17492 can find template arguments for pat1 to make arg1 look like arg2, that
17493 means that arg2 is at least as specialized as arg1. */
17494
17495 int
17496 more_specialized_fn (tree pat1, tree pat2, int len)
17497 {
17498 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
17499 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
17500 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
17501 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
17502 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
17503 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
17504 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
17505 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
17506 tree origs1, origs2;
17507 bool lose1 = false;
17508 bool lose2 = false;
17509
17510 /* Remove the this parameter from non-static member functions. If
17511 one is a non-static member function and the other is not a static
17512 member function, remove the first parameter from that function
17513 also. This situation occurs for operator functions where we
17514 locate both a member function (with this pointer) and non-member
17515 operator (with explicit first operand). */
17516 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
17517 {
17518 len--; /* LEN is the number of significant arguments for DECL1 */
17519 args1 = TREE_CHAIN (args1);
17520 if (!DECL_STATIC_FUNCTION_P (decl2))
17521 args2 = TREE_CHAIN (args2);
17522 }
17523 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
17524 {
17525 args2 = TREE_CHAIN (args2);
17526 if (!DECL_STATIC_FUNCTION_P (decl1))
17527 {
17528 len--;
17529 args1 = TREE_CHAIN (args1);
17530 }
17531 }
17532
17533 /* If only one is a conversion operator, they are unordered. */
17534 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
17535 return 0;
17536
17537 /* Consider the return type for a conversion function */
17538 if (DECL_CONV_FN_P (decl1))
17539 {
17540 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
17541 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
17542 len++;
17543 }
17544
17545 processing_template_decl++;
17546
17547 origs1 = args1;
17548 origs2 = args2;
17549
17550 while (len--
17551 /* Stop when an ellipsis is seen. */
17552 && args1 != NULL_TREE && args2 != NULL_TREE)
17553 {
17554 tree arg1 = TREE_VALUE (args1);
17555 tree arg2 = TREE_VALUE (args2);
17556 int deduce1, deduce2;
17557 int quals1 = -1;
17558 int quals2 = -1;
17559
17560 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17561 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17562 {
17563 /* When both arguments are pack expansions, we need only
17564 unify the patterns themselves. */
17565 arg1 = PACK_EXPANSION_PATTERN (arg1);
17566 arg2 = PACK_EXPANSION_PATTERN (arg2);
17567
17568 /* This is the last comparison we need to do. */
17569 len = 0;
17570 }
17571
17572 if (TREE_CODE (arg1) == REFERENCE_TYPE)
17573 {
17574 arg1 = TREE_TYPE (arg1);
17575 quals1 = cp_type_quals (arg1);
17576 }
17577
17578 if (TREE_CODE (arg2) == REFERENCE_TYPE)
17579 {
17580 arg2 = TREE_TYPE (arg2);
17581 quals2 = cp_type_quals (arg2);
17582 }
17583
17584 arg1 = TYPE_MAIN_VARIANT (arg1);
17585 arg2 = TYPE_MAIN_VARIANT (arg2);
17586
17587 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
17588 {
17589 int i, len2 = list_length (args2);
17590 tree parmvec = make_tree_vec (1);
17591 tree argvec = make_tree_vec (len2);
17592 tree ta = args2;
17593
17594 /* Setup the parameter vector, which contains only ARG1. */
17595 TREE_VEC_ELT (parmvec, 0) = arg1;
17596
17597 /* Setup the argument vector, which contains the remaining
17598 arguments. */
17599 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
17600 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17601
17602 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
17603 argvec, DEDUCE_EXACT,
17604 /*subr=*/true, /*explain_p=*/false)
17605 == 0);
17606
17607 /* We cannot deduce in the other direction, because ARG1 is
17608 a pack expansion but ARG2 is not. */
17609 deduce2 = 0;
17610 }
17611 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17612 {
17613 int i, len1 = list_length (args1);
17614 tree parmvec = make_tree_vec (1);
17615 tree argvec = make_tree_vec (len1);
17616 tree ta = args1;
17617
17618 /* Setup the parameter vector, which contains only ARG1. */
17619 TREE_VEC_ELT (parmvec, 0) = arg2;
17620
17621 /* Setup the argument vector, which contains the remaining
17622 arguments. */
17623 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
17624 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17625
17626 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
17627 argvec, DEDUCE_EXACT,
17628 /*subr=*/true, /*explain_p=*/false)
17629 == 0);
17630
17631 /* We cannot deduce in the other direction, because ARG2 is
17632 a pack expansion but ARG1 is not.*/
17633 deduce1 = 0;
17634 }
17635
17636 else
17637 {
17638 /* The normal case, where neither argument is a pack
17639 expansion. */
17640 deduce1 = (unify (tparms1, targs1, arg1, arg2,
17641 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17642 == 0);
17643 deduce2 = (unify (tparms2, targs2, arg2, arg1,
17644 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17645 == 0);
17646 }
17647
17648 /* If we couldn't deduce arguments for tparms1 to make arg1 match
17649 arg2, then arg2 is not as specialized as arg1. */
17650 if (!deduce1)
17651 lose2 = true;
17652 if (!deduce2)
17653 lose1 = true;
17654
17655 /* "If, for a given type, deduction succeeds in both directions
17656 (i.e., the types are identical after the transformations above)
17657 and if the type from the argument template is more cv-qualified
17658 than the type from the parameter template (as described above)
17659 that type is considered to be more specialized than the other. If
17660 neither type is more cv-qualified than the other then neither type
17661 is more specialized than the other." */
17662
17663 if (deduce1 && deduce2
17664 && quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
17665 {
17666 if ((quals1 & quals2) == quals2)
17667 lose2 = true;
17668 if ((quals1 & quals2) == quals1)
17669 lose1 = true;
17670 }
17671
17672 if (lose1 && lose2)
17673 /* We've failed to deduce something in either direction.
17674 These must be unordered. */
17675 break;
17676
17677 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17678 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17679 /* We have already processed all of the arguments in our
17680 handing of the pack expansion type. */
17681 len = 0;
17682
17683 args1 = TREE_CHAIN (args1);
17684 args2 = TREE_CHAIN (args2);
17685 }
17686
17687 /* "In most cases, all template parameters must have values in order for
17688 deduction to succeed, but for partial ordering purposes a template
17689 parameter may remain without a value provided it is not used in the
17690 types being used for partial ordering."
17691
17692 Thus, if we are missing any of the targs1 we need to substitute into
17693 origs1, then pat2 is not as specialized as pat1. This can happen when
17694 there is a nondeduced context. */
17695 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
17696 lose2 = true;
17697 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
17698 lose1 = true;
17699
17700 processing_template_decl--;
17701
17702 /* All things being equal, if the next argument is a pack expansion
17703 for one function but not for the other, prefer the
17704 non-variadic function. FIXME this is bogus; see c++/41958. */
17705 if (lose1 == lose2
17706 && args1 && TREE_VALUE (args1)
17707 && args2 && TREE_VALUE (args2))
17708 {
17709 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
17710 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
17711 }
17712
17713 if (lose1 == lose2)
17714 return 0;
17715 else if (!lose1)
17716 return 1;
17717 else
17718 return -1;
17719 }
17720
17721 /* Determine which of two partial specializations of MAIN_TMPL is more
17722 specialized.
17723
17724 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
17725 to the first partial specialization. The TREE_VALUE is the
17726 innermost set of template parameters for the partial
17727 specialization. PAT2 is similar, but for the second template.
17728
17729 Return 1 if the first partial specialization is more specialized;
17730 -1 if the second is more specialized; 0 if neither is more
17731 specialized.
17732
17733 See [temp.class.order] for information about determining which of
17734 two templates is more specialized. */
17735
17736 static int
17737 more_specialized_class (tree main_tmpl, tree pat1, tree pat2)
17738 {
17739 tree targs;
17740 tree tmpl1, tmpl2;
17741 int winner = 0;
17742 bool any_deductions = false;
17743
17744 tmpl1 = TREE_TYPE (pat1);
17745 tmpl2 = TREE_TYPE (pat2);
17746
17747 /* Just like what happens for functions, if we are ordering between
17748 different class template specializations, we may encounter dependent
17749 types in the arguments, and we need our dependency check functions
17750 to behave correctly. */
17751 ++processing_template_decl;
17752 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat1),
17753 CLASSTYPE_TI_ARGS (tmpl1),
17754 CLASSTYPE_TI_ARGS (tmpl2));
17755 if (targs)
17756 {
17757 --winner;
17758 any_deductions = true;
17759 }
17760
17761 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat2),
17762 CLASSTYPE_TI_ARGS (tmpl2),
17763 CLASSTYPE_TI_ARGS (tmpl1));
17764 if (targs)
17765 {
17766 ++winner;
17767 any_deductions = true;
17768 }
17769 --processing_template_decl;
17770
17771 /* In the case of a tie where at least one of the class templates
17772 has a parameter pack at the end, the template with the most
17773 non-packed parameters wins. */
17774 if (winner == 0
17775 && any_deductions
17776 && (template_args_variadic_p (TREE_PURPOSE (pat1))
17777 || template_args_variadic_p (TREE_PURPOSE (pat2))))
17778 {
17779 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
17780 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
17781 int len1 = TREE_VEC_LENGTH (args1);
17782 int len2 = TREE_VEC_LENGTH (args2);
17783
17784 /* We don't count the pack expansion at the end. */
17785 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
17786 --len1;
17787 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
17788 --len2;
17789
17790 if (len1 > len2)
17791 return 1;
17792 else if (len1 < len2)
17793 return -1;
17794 }
17795
17796 return winner;
17797 }
17798
17799 /* Return the template arguments that will produce the function signature
17800 DECL from the function template FN, with the explicit template
17801 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
17802 also match. Return NULL_TREE if no satisfactory arguments could be
17803 found. */
17804
17805 static tree
17806 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
17807 {
17808 int ntparms = DECL_NTPARMS (fn);
17809 tree targs = make_tree_vec (ntparms);
17810 tree decl_type = TREE_TYPE (decl);
17811 tree decl_arg_types;
17812 tree *args;
17813 unsigned int nargs, ix;
17814 tree arg;
17815
17816 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
17817
17818 /* Never do unification on the 'this' parameter. */
17819 decl_arg_types = skip_artificial_parms_for (decl,
17820 TYPE_ARG_TYPES (decl_type));
17821
17822 nargs = list_length (decl_arg_types);
17823 args = XALLOCAVEC (tree, nargs);
17824 for (arg = decl_arg_types, ix = 0;
17825 arg != NULL_TREE && arg != void_list_node;
17826 arg = TREE_CHAIN (arg), ++ix)
17827 args[ix] = TREE_VALUE (arg);
17828
17829 if (fn_type_unification (fn, explicit_args, targs,
17830 args, ix,
17831 (check_rettype || DECL_CONV_FN_P (fn)
17832 ? TREE_TYPE (decl_type) : NULL_TREE),
17833 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
17834 /*decltype*/false)
17835 == error_mark_node)
17836 return NULL_TREE;
17837
17838 return targs;
17839 }
17840
17841 /* Return the innermost template arguments that, when applied to a partial
17842 specialization of MAIN_TMPL whose innermost template parameters are
17843 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
17844 ARGS.
17845
17846 For example, suppose we have:
17847
17848 template <class T, class U> struct S {};
17849 template <class T> struct S<T*, int> {};
17850
17851 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
17852 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
17853 int}. The resulting vector will be {double}, indicating that `T'
17854 is bound to `double'. */
17855
17856 static tree
17857 get_class_bindings (tree main_tmpl, tree tparms, tree spec_args, tree args)
17858 {
17859 int i, ntparms = TREE_VEC_LENGTH (tparms);
17860 tree deduced_args;
17861 tree innermost_deduced_args;
17862
17863 innermost_deduced_args = make_tree_vec (ntparms);
17864 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17865 {
17866 deduced_args = copy_node (args);
17867 SET_TMPL_ARGS_LEVEL (deduced_args,
17868 TMPL_ARGS_DEPTH (deduced_args),
17869 innermost_deduced_args);
17870 }
17871 else
17872 deduced_args = innermost_deduced_args;
17873
17874 if (unify (tparms, deduced_args,
17875 INNERMOST_TEMPLATE_ARGS (spec_args),
17876 INNERMOST_TEMPLATE_ARGS (args),
17877 UNIFY_ALLOW_NONE, /*explain_p=*/false))
17878 return NULL_TREE;
17879
17880 for (i = 0; i < ntparms; ++i)
17881 if (! TREE_VEC_ELT (innermost_deduced_args, i))
17882 return NULL_TREE;
17883
17884 /* Verify that nondeduced template arguments agree with the type
17885 obtained from argument deduction.
17886
17887 For example:
17888
17889 struct A { typedef int X; };
17890 template <class T, class U> struct C {};
17891 template <class T> struct C<T, typename T::X> {};
17892
17893 Then with the instantiation `C<A, int>', we can deduce that
17894 `T' is `A' but unify () does not check whether `typename T::X'
17895 is `int'. */
17896 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
17897 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (main_tmpl),
17898 spec_args, main_tmpl,
17899 tf_none, false, false);
17900 if (spec_args == error_mark_node
17901 /* We only need to check the innermost arguments; the other
17902 arguments will always agree. */
17903 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
17904 INNERMOST_TEMPLATE_ARGS (args)))
17905 return NULL_TREE;
17906
17907 /* Now that we have bindings for all of the template arguments,
17908 ensure that the arguments deduced for the template template
17909 parameters have compatible template parameter lists. See the use
17910 of template_template_parm_bindings_ok_p in fn_type_unification
17911 for more information. */
17912 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
17913 return NULL_TREE;
17914
17915 return deduced_args;
17916 }
17917
17918 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
17919 Return the TREE_LIST node with the most specialized template, if
17920 any. If there is no most specialized template, the error_mark_node
17921 is returned.
17922
17923 Note that this function does not look at, or modify, the
17924 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
17925 returned is one of the elements of INSTANTIATIONS, callers may
17926 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
17927 and retrieve it from the value returned. */
17928
17929 tree
17930 most_specialized_instantiation (tree templates)
17931 {
17932 tree fn, champ;
17933
17934 ++processing_template_decl;
17935
17936 champ = templates;
17937 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
17938 {
17939 int fate = 0;
17940
17941 if (get_bindings (TREE_VALUE (champ),
17942 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17943 NULL_TREE, /*check_ret=*/true))
17944 fate--;
17945
17946 if (get_bindings (TREE_VALUE (fn),
17947 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17948 NULL_TREE, /*check_ret=*/true))
17949 fate++;
17950
17951 if (fate == -1)
17952 champ = fn;
17953 else if (!fate)
17954 {
17955 /* Equally specialized, move to next function. If there
17956 is no next function, nothing's most specialized. */
17957 fn = TREE_CHAIN (fn);
17958 champ = fn;
17959 if (!fn)
17960 break;
17961 }
17962 }
17963
17964 if (champ)
17965 /* Now verify that champ is better than everything earlier in the
17966 instantiation list. */
17967 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
17968 if (get_bindings (TREE_VALUE (champ),
17969 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17970 NULL_TREE, /*check_ret=*/true)
17971 || !get_bindings (TREE_VALUE (fn),
17972 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17973 NULL_TREE, /*check_ret=*/true))
17974 {
17975 champ = NULL_TREE;
17976 break;
17977 }
17978
17979 processing_template_decl--;
17980
17981 if (!champ)
17982 return error_mark_node;
17983
17984 return champ;
17985 }
17986
17987 /* If DECL is a specialization of some template, return the most
17988 general such template. Otherwise, returns NULL_TREE.
17989
17990 For example, given:
17991
17992 template <class T> struct S { template <class U> void f(U); };
17993
17994 if TMPL is `template <class U> void S<int>::f(U)' this will return
17995 the full template. This function will not trace past partial
17996 specializations, however. For example, given in addition:
17997
17998 template <class T> struct S<T*> { template <class U> void f(U); };
17999
18000 if TMPL is `template <class U> void S<int*>::f(U)' this will return
18001 `template <class T> template <class U> S<T*>::f(U)'. */
18002
18003 tree
18004 most_general_template (tree decl)
18005 {
18006 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
18007 an immediate specialization. */
18008 if (TREE_CODE (decl) == FUNCTION_DECL)
18009 {
18010 if (DECL_TEMPLATE_INFO (decl)) {
18011 decl = DECL_TI_TEMPLATE (decl);
18012
18013 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
18014 template friend. */
18015 if (TREE_CODE (decl) != TEMPLATE_DECL)
18016 return NULL_TREE;
18017 } else
18018 return NULL_TREE;
18019 }
18020
18021 /* Look for more and more general templates. */
18022 while (DECL_TEMPLATE_INFO (decl))
18023 {
18024 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
18025 (See cp-tree.h for details.) */
18026 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
18027 break;
18028
18029 if (CLASS_TYPE_P (TREE_TYPE (decl))
18030 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
18031 break;
18032
18033 /* Stop if we run into an explicitly specialized class template. */
18034 if (!DECL_NAMESPACE_SCOPE_P (decl)
18035 && DECL_CONTEXT (decl)
18036 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
18037 break;
18038
18039 decl = DECL_TI_TEMPLATE (decl);
18040 }
18041
18042 return decl;
18043 }
18044
18045 /* Return the most specialized of the class template partial
18046 specializations of TMPL which can produce TYPE, a specialization of
18047 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
18048 a _TYPE node corresponding to the partial specialization, while the
18049 TREE_PURPOSE is the set of template arguments that must be
18050 substituted into the TREE_TYPE in order to generate TYPE.
18051
18052 If the choice of partial specialization is ambiguous, a diagnostic
18053 is issued, and the error_mark_node is returned. If there are no
18054 partial specializations of TMPL matching TYPE, then NULL_TREE is
18055 returned. */
18056
18057 static tree
18058 most_specialized_class (tree type, tree tmpl, tsubst_flags_t complain)
18059 {
18060 tree list = NULL_TREE;
18061 tree t;
18062 tree champ;
18063 int fate;
18064 bool ambiguous_p;
18065 tree args;
18066 tree outer_args = NULL_TREE;
18067
18068 tmpl = most_general_template (tmpl);
18069 args = CLASSTYPE_TI_ARGS (type);
18070
18071 /* For determining which partial specialization to use, only the
18072 innermost args are interesting. */
18073 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
18074 {
18075 outer_args = strip_innermost_template_args (args, 1);
18076 args = INNERMOST_TEMPLATE_ARGS (args);
18077 }
18078
18079 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
18080 {
18081 tree partial_spec_args;
18082 tree spec_args;
18083 tree parms = TREE_VALUE (t);
18084
18085 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
18086
18087 ++processing_template_decl;
18088
18089 if (outer_args)
18090 {
18091 int i;
18092
18093 /* Discard the outer levels of args, and then substitute in the
18094 template args from the enclosing class. */
18095 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
18096 partial_spec_args = tsubst_template_args
18097 (partial_spec_args, outer_args, tf_none, NULL_TREE);
18098
18099 /* PARMS already refers to just the innermost parms, but the
18100 template parms in partial_spec_args had their levels lowered
18101 by tsubst, so we need to do the same for the parm list. We
18102 can't just tsubst the TREE_VEC itself, as tsubst wants to
18103 treat a TREE_VEC as an argument vector. */
18104 parms = copy_node (parms);
18105 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
18106 TREE_VEC_ELT (parms, i) =
18107 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
18108
18109 }
18110
18111 partial_spec_args =
18112 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
18113 add_to_template_args (outer_args,
18114 partial_spec_args),
18115 tmpl, tf_none,
18116 /*require_all_args=*/true,
18117 /*use_default_args=*/true);
18118
18119 --processing_template_decl;
18120
18121 if (partial_spec_args == error_mark_node)
18122 return error_mark_node;
18123
18124 spec_args = get_class_bindings (tmpl, parms,
18125 partial_spec_args,
18126 args);
18127 if (spec_args)
18128 {
18129 if (outer_args)
18130 spec_args = add_to_template_args (outer_args, spec_args);
18131 list = tree_cons (spec_args, TREE_VALUE (t), list);
18132 TREE_TYPE (list) = TREE_TYPE (t);
18133 }
18134 }
18135
18136 if (! list)
18137 return NULL_TREE;
18138
18139 ambiguous_p = false;
18140 t = list;
18141 champ = t;
18142 t = TREE_CHAIN (t);
18143 for (; t; t = TREE_CHAIN (t))
18144 {
18145 fate = more_specialized_class (tmpl, champ, t);
18146 if (fate == 1)
18147 ;
18148 else
18149 {
18150 if (fate == 0)
18151 {
18152 t = TREE_CHAIN (t);
18153 if (! t)
18154 {
18155 ambiguous_p = true;
18156 break;
18157 }
18158 }
18159 champ = t;
18160 }
18161 }
18162
18163 if (!ambiguous_p)
18164 for (t = list; t && t != champ; t = TREE_CHAIN (t))
18165 {
18166 fate = more_specialized_class (tmpl, champ, t);
18167 if (fate != 1)
18168 {
18169 ambiguous_p = true;
18170 break;
18171 }
18172 }
18173
18174 if (ambiguous_p)
18175 {
18176 const char *str;
18177 char *spaces = NULL;
18178 if (!(complain & tf_error))
18179 return error_mark_node;
18180 error ("ambiguous class template instantiation for %q#T", type);
18181 str = ngettext ("candidate is:", "candidates are:", list_length (list));
18182 for (t = list; t; t = TREE_CHAIN (t))
18183 {
18184 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
18185 spaces = spaces ? spaces : get_spaces (str);
18186 }
18187 free (spaces);
18188 return error_mark_node;
18189 }
18190
18191 return champ;
18192 }
18193
18194 /* Explicitly instantiate DECL. */
18195
18196 void
18197 do_decl_instantiation (tree decl, tree storage)
18198 {
18199 tree result = NULL_TREE;
18200 int extern_p = 0;
18201
18202 if (!decl || decl == error_mark_node)
18203 /* An error occurred, for which grokdeclarator has already issued
18204 an appropriate message. */
18205 return;
18206 else if (! DECL_LANG_SPECIFIC (decl))
18207 {
18208 error ("explicit instantiation of non-template %q#D", decl);
18209 return;
18210 }
18211 else if (VAR_P (decl))
18212 {
18213 /* There is an asymmetry here in the way VAR_DECLs and
18214 FUNCTION_DECLs are handled by grokdeclarator. In the case of
18215 the latter, the DECL we get back will be marked as a
18216 template instantiation, and the appropriate
18217 DECL_TEMPLATE_INFO will be set up. This does not happen for
18218 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
18219 should handle VAR_DECLs as it currently handles
18220 FUNCTION_DECLs. */
18221 if (!DECL_CLASS_SCOPE_P (decl))
18222 {
18223 error ("%qD is not a static data member of a class template", decl);
18224 return;
18225 }
18226 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
18227 if (!result || !VAR_P (result))
18228 {
18229 error ("no matching template for %qD found", decl);
18230 return;
18231 }
18232 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
18233 {
18234 error ("type %qT for explicit instantiation %qD does not match "
18235 "declared type %qT", TREE_TYPE (result), decl,
18236 TREE_TYPE (decl));
18237 return;
18238 }
18239 }
18240 else if (TREE_CODE (decl) != FUNCTION_DECL)
18241 {
18242 error ("explicit instantiation of %q#D", decl);
18243 return;
18244 }
18245 else
18246 result = decl;
18247
18248 /* Check for various error cases. Note that if the explicit
18249 instantiation is valid the RESULT will currently be marked as an
18250 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
18251 until we get here. */
18252
18253 if (DECL_TEMPLATE_SPECIALIZATION (result))
18254 {
18255 /* DR 259 [temp.spec].
18256
18257 Both an explicit instantiation and a declaration of an explicit
18258 specialization shall not appear in a program unless the explicit
18259 instantiation follows a declaration of the explicit specialization.
18260
18261 For a given set of template parameters, if an explicit
18262 instantiation of a template appears after a declaration of an
18263 explicit specialization for that template, the explicit
18264 instantiation has no effect. */
18265 return;
18266 }
18267 else if (DECL_EXPLICIT_INSTANTIATION (result))
18268 {
18269 /* [temp.spec]
18270
18271 No program shall explicitly instantiate any template more
18272 than once.
18273
18274 We check DECL_NOT_REALLY_EXTERN so as not to complain when
18275 the first instantiation was `extern' and the second is not,
18276 and EXTERN_P for the opposite case. */
18277 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
18278 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
18279 /* If an "extern" explicit instantiation follows an ordinary
18280 explicit instantiation, the template is instantiated. */
18281 if (extern_p)
18282 return;
18283 }
18284 else if (!DECL_IMPLICIT_INSTANTIATION (result))
18285 {
18286 error ("no matching template for %qD found", result);
18287 return;
18288 }
18289 else if (!DECL_TEMPLATE_INFO (result))
18290 {
18291 permerror (input_location, "explicit instantiation of non-template %q#D", result);
18292 return;
18293 }
18294
18295 if (storage == NULL_TREE)
18296 ;
18297 else if (storage == ridpointers[(int) RID_EXTERN])
18298 {
18299 if (!in_system_header && (cxx_dialect == cxx98))
18300 pedwarn (input_location, OPT_Wpedantic,
18301 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
18302 "instantiations");
18303 extern_p = 1;
18304 }
18305 else
18306 error ("storage class %qD applied to template instantiation", storage);
18307
18308 check_explicit_instantiation_namespace (result);
18309 mark_decl_instantiated (result, extern_p);
18310 if (! extern_p)
18311 instantiate_decl (result, /*defer_ok=*/1,
18312 /*expl_inst_class_mem_p=*/false);
18313 }
18314
18315 static void
18316 mark_class_instantiated (tree t, int extern_p)
18317 {
18318 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
18319 SET_CLASSTYPE_INTERFACE_KNOWN (t);
18320 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
18321 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
18322 if (! extern_p)
18323 {
18324 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
18325 rest_of_type_compilation (t, 1);
18326 }
18327 }
18328
18329 /* Called from do_type_instantiation through binding_table_foreach to
18330 do recursive instantiation for the type bound in ENTRY. */
18331 static void
18332 bt_instantiate_type_proc (binding_entry entry, void *data)
18333 {
18334 tree storage = *(tree *) data;
18335
18336 if (MAYBE_CLASS_TYPE_P (entry->type)
18337 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
18338 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
18339 }
18340
18341 /* Called from do_type_instantiation to instantiate a member
18342 (a member function or a static member variable) of an
18343 explicitly instantiated class template. */
18344 static void
18345 instantiate_class_member (tree decl, int extern_p)
18346 {
18347 mark_decl_instantiated (decl, extern_p);
18348 if (! extern_p)
18349 instantiate_decl (decl, /*defer_ok=*/1,
18350 /*expl_inst_class_mem_p=*/true);
18351 }
18352
18353 /* Perform an explicit instantiation of template class T. STORAGE, if
18354 non-null, is the RID for extern, inline or static. COMPLAIN is
18355 nonzero if this is called from the parser, zero if called recursively,
18356 since the standard is unclear (as detailed below). */
18357
18358 void
18359 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
18360 {
18361 int extern_p = 0;
18362 int nomem_p = 0;
18363 int static_p = 0;
18364 int previous_instantiation_extern_p = 0;
18365
18366 if (TREE_CODE (t) == TYPE_DECL)
18367 t = TREE_TYPE (t);
18368
18369 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
18370 {
18371 tree tmpl =
18372 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
18373 if (tmpl)
18374 error ("explicit instantiation of non-class template %qD", tmpl);
18375 else
18376 error ("explicit instantiation of non-template type %qT", t);
18377 return;
18378 }
18379
18380 complete_type (t);
18381
18382 if (!COMPLETE_TYPE_P (t))
18383 {
18384 if (complain & tf_error)
18385 error ("explicit instantiation of %q#T before definition of template",
18386 t);
18387 return;
18388 }
18389
18390 if (storage != NULL_TREE)
18391 {
18392 if (!in_system_header)
18393 {
18394 if (storage == ridpointers[(int) RID_EXTERN])
18395 {
18396 if (cxx_dialect == cxx98)
18397 pedwarn (input_location, OPT_Wpedantic,
18398 "ISO C++ 1998 forbids the use of %<extern%> on "
18399 "explicit instantiations");
18400 }
18401 else
18402 pedwarn (input_location, OPT_Wpedantic,
18403 "ISO C++ forbids the use of %qE"
18404 " on explicit instantiations", storage);
18405 }
18406
18407 if (storage == ridpointers[(int) RID_INLINE])
18408 nomem_p = 1;
18409 else if (storage == ridpointers[(int) RID_EXTERN])
18410 extern_p = 1;
18411 else if (storage == ridpointers[(int) RID_STATIC])
18412 static_p = 1;
18413 else
18414 {
18415 error ("storage class %qD applied to template instantiation",
18416 storage);
18417 extern_p = 0;
18418 }
18419 }
18420
18421 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
18422 {
18423 /* DR 259 [temp.spec].
18424
18425 Both an explicit instantiation and a declaration of an explicit
18426 specialization shall not appear in a program unless the explicit
18427 instantiation follows a declaration of the explicit specialization.
18428
18429 For a given set of template parameters, if an explicit
18430 instantiation of a template appears after a declaration of an
18431 explicit specialization for that template, the explicit
18432 instantiation has no effect. */
18433 return;
18434 }
18435 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
18436 {
18437 /* [temp.spec]
18438
18439 No program shall explicitly instantiate any template more
18440 than once.
18441
18442 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
18443 instantiation was `extern'. If EXTERN_P then the second is.
18444 These cases are OK. */
18445 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
18446
18447 if (!previous_instantiation_extern_p && !extern_p
18448 && (complain & tf_error))
18449 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
18450
18451 /* If we've already instantiated the template, just return now. */
18452 if (!CLASSTYPE_INTERFACE_ONLY (t))
18453 return;
18454 }
18455
18456 check_explicit_instantiation_namespace (TYPE_NAME (t));
18457 mark_class_instantiated (t, extern_p);
18458
18459 if (nomem_p)
18460 return;
18461
18462 {
18463 tree tmp;
18464
18465 /* In contrast to implicit instantiation, where only the
18466 declarations, and not the definitions, of members are
18467 instantiated, we have here:
18468
18469 [temp.explicit]
18470
18471 The explicit instantiation of a class template specialization
18472 implies the instantiation of all of its members not
18473 previously explicitly specialized in the translation unit
18474 containing the explicit instantiation.
18475
18476 Of course, we can't instantiate member template classes, since
18477 we don't have any arguments for them. Note that the standard
18478 is unclear on whether the instantiation of the members are
18479 *explicit* instantiations or not. However, the most natural
18480 interpretation is that it should be an explicit instantiation. */
18481
18482 if (! static_p)
18483 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
18484 if (TREE_CODE (tmp) == FUNCTION_DECL
18485 && DECL_TEMPLATE_INSTANTIATION (tmp))
18486 instantiate_class_member (tmp, extern_p);
18487
18488 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
18489 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
18490 instantiate_class_member (tmp, extern_p);
18491
18492 if (CLASSTYPE_NESTED_UTDS (t))
18493 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
18494 bt_instantiate_type_proc, &storage);
18495 }
18496 }
18497
18498 /* Given a function DECL, which is a specialization of TMPL, modify
18499 DECL to be a re-instantiation of TMPL with the same template
18500 arguments. TMPL should be the template into which tsubst'ing
18501 should occur for DECL, not the most general template.
18502
18503 One reason for doing this is a scenario like this:
18504
18505 template <class T>
18506 void f(const T&, int i);
18507
18508 void g() { f(3, 7); }
18509
18510 template <class T>
18511 void f(const T& t, const int i) { }
18512
18513 Note that when the template is first instantiated, with
18514 instantiate_template, the resulting DECL will have no name for the
18515 first parameter, and the wrong type for the second. So, when we go
18516 to instantiate the DECL, we regenerate it. */
18517
18518 static void
18519 regenerate_decl_from_template (tree decl, tree tmpl)
18520 {
18521 /* The arguments used to instantiate DECL, from the most general
18522 template. */
18523 tree args;
18524 tree code_pattern;
18525
18526 args = DECL_TI_ARGS (decl);
18527 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
18528
18529 /* Make sure that we can see identifiers, and compute access
18530 correctly. */
18531 push_access_scope (decl);
18532
18533 if (TREE_CODE (decl) == FUNCTION_DECL)
18534 {
18535 tree decl_parm;
18536 tree pattern_parm;
18537 tree specs;
18538 int args_depth;
18539 int parms_depth;
18540
18541 args_depth = TMPL_ARGS_DEPTH (args);
18542 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
18543 if (args_depth > parms_depth)
18544 args = get_innermost_template_args (args, parms_depth);
18545
18546 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
18547 args, tf_error, NULL_TREE,
18548 /*defer_ok*/false);
18549 if (specs && specs != error_mark_node)
18550 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
18551 specs);
18552
18553 /* Merge parameter declarations. */
18554 decl_parm = skip_artificial_parms_for (decl,
18555 DECL_ARGUMENTS (decl));
18556 pattern_parm
18557 = skip_artificial_parms_for (code_pattern,
18558 DECL_ARGUMENTS (code_pattern));
18559 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
18560 {
18561 tree parm_type;
18562 tree attributes;
18563
18564 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18565 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
18566 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
18567 NULL_TREE);
18568 parm_type = type_decays_to (parm_type);
18569 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18570 TREE_TYPE (decl_parm) = parm_type;
18571 attributes = DECL_ATTRIBUTES (pattern_parm);
18572 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18573 {
18574 DECL_ATTRIBUTES (decl_parm) = attributes;
18575 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18576 }
18577 decl_parm = DECL_CHAIN (decl_parm);
18578 pattern_parm = DECL_CHAIN (pattern_parm);
18579 }
18580 /* Merge any parameters that match with the function parameter
18581 pack. */
18582 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
18583 {
18584 int i, len;
18585 tree expanded_types;
18586 /* Expand the TYPE_PACK_EXPANSION that provides the types for
18587 the parameters in this function parameter pack. */
18588 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
18589 args, tf_error, NULL_TREE);
18590 len = TREE_VEC_LENGTH (expanded_types);
18591 for (i = 0; i < len; i++)
18592 {
18593 tree parm_type;
18594 tree attributes;
18595
18596 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18597 /* Rename the parameter to include the index. */
18598 DECL_NAME (decl_parm) =
18599 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
18600 parm_type = TREE_VEC_ELT (expanded_types, i);
18601 parm_type = type_decays_to (parm_type);
18602 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18603 TREE_TYPE (decl_parm) = parm_type;
18604 attributes = DECL_ATTRIBUTES (pattern_parm);
18605 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18606 {
18607 DECL_ATTRIBUTES (decl_parm) = attributes;
18608 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18609 }
18610 decl_parm = DECL_CHAIN (decl_parm);
18611 }
18612 }
18613 /* Merge additional specifiers from the CODE_PATTERN. */
18614 if (DECL_DECLARED_INLINE_P (code_pattern)
18615 && !DECL_DECLARED_INLINE_P (decl))
18616 DECL_DECLARED_INLINE_P (decl) = 1;
18617 }
18618 else if (VAR_P (decl))
18619 {
18620 DECL_INITIAL (decl) =
18621 tsubst_expr (DECL_INITIAL (code_pattern), args,
18622 tf_error, DECL_TI_TEMPLATE (decl),
18623 /*integral_constant_expression_p=*/false);
18624 if (VAR_HAD_UNKNOWN_BOUND (decl))
18625 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
18626 tf_error, DECL_TI_TEMPLATE (decl));
18627 }
18628 else
18629 gcc_unreachable ();
18630
18631 pop_access_scope (decl);
18632 }
18633
18634 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
18635 substituted to get DECL. */
18636
18637 tree
18638 template_for_substitution (tree decl)
18639 {
18640 tree tmpl = DECL_TI_TEMPLATE (decl);
18641
18642 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
18643 for the instantiation. This is not always the most general
18644 template. Consider, for example:
18645
18646 template <class T>
18647 struct S { template <class U> void f();
18648 template <> void f<int>(); };
18649
18650 and an instantiation of S<double>::f<int>. We want TD to be the
18651 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
18652 while (/* An instantiation cannot have a definition, so we need a
18653 more general template. */
18654 DECL_TEMPLATE_INSTANTIATION (tmpl)
18655 /* We must also deal with friend templates. Given:
18656
18657 template <class T> struct S {
18658 template <class U> friend void f() {};
18659 };
18660
18661 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
18662 so far as the language is concerned, but that's still
18663 where we get the pattern for the instantiation from. On
18664 other hand, if the definition comes outside the class, say:
18665
18666 template <class T> struct S {
18667 template <class U> friend void f();
18668 };
18669 template <class U> friend void f() {}
18670
18671 we don't need to look any further. That's what the check for
18672 DECL_INITIAL is for. */
18673 || (TREE_CODE (decl) == FUNCTION_DECL
18674 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
18675 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
18676 {
18677 /* The present template, TD, should not be a definition. If it
18678 were a definition, we should be using it! Note that we
18679 cannot restructure the loop to just keep going until we find
18680 a template with a definition, since that might go too far if
18681 a specialization was declared, but not defined. */
18682 gcc_assert (!VAR_P (decl)
18683 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
18684
18685 /* Fetch the more general template. */
18686 tmpl = DECL_TI_TEMPLATE (tmpl);
18687 }
18688
18689 return tmpl;
18690 }
18691
18692 /* Returns true if we need to instantiate this template instance even if we
18693 know we aren't going to emit it.. */
18694
18695 bool
18696 always_instantiate_p (tree decl)
18697 {
18698 /* We always instantiate inline functions so that we can inline them. An
18699 explicit instantiation declaration prohibits implicit instantiation of
18700 non-inline functions. With high levels of optimization, we would
18701 normally inline non-inline functions -- but we're not allowed to do
18702 that for "extern template" functions. Therefore, we check
18703 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
18704 return ((TREE_CODE (decl) == FUNCTION_DECL
18705 && (DECL_DECLARED_INLINE_P (decl)
18706 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
18707 /* And we need to instantiate static data members so that
18708 their initializers are available in integral constant
18709 expressions. */
18710 || (VAR_P (decl)
18711 && decl_maybe_constant_var_p (decl)));
18712 }
18713
18714 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
18715 instantiate it now, modifying TREE_TYPE (fn). */
18716
18717 void
18718 maybe_instantiate_noexcept (tree fn)
18719 {
18720 tree fntype, spec, noex, clone;
18721
18722 if (DECL_CLONED_FUNCTION_P (fn))
18723 fn = DECL_CLONED_FUNCTION (fn);
18724 fntype = TREE_TYPE (fn);
18725 spec = TYPE_RAISES_EXCEPTIONS (fntype);
18726
18727 if (!DEFERRED_NOEXCEPT_SPEC_P (spec))
18728 return;
18729
18730 noex = TREE_PURPOSE (spec);
18731
18732 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
18733 {
18734 if (push_tinst_level (fn))
18735 {
18736 push_access_scope (fn);
18737 push_deferring_access_checks (dk_no_deferred);
18738 input_location = DECL_SOURCE_LOCATION (fn);
18739 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
18740 DEFERRED_NOEXCEPT_ARGS (noex),
18741 tf_warning_or_error, fn,
18742 /*function_p=*/false,
18743 /*integral_constant_expression_p=*/true);
18744 pop_deferring_access_checks ();
18745 pop_access_scope (fn);
18746 pop_tinst_level ();
18747 spec = build_noexcept_spec (noex, tf_warning_or_error);
18748 if (spec == error_mark_node)
18749 spec = noexcept_false_spec;
18750 }
18751 else
18752 spec = noexcept_false_spec;
18753 }
18754 else
18755 {
18756 /* This is an implicitly declared function, so NOEX is a list of
18757 other functions to evaluate and merge. */
18758 tree elt;
18759 spec = noexcept_true_spec;
18760 for (elt = noex; elt; elt = OVL_NEXT (elt))
18761 {
18762 tree fn = OVL_CURRENT (elt);
18763 tree subspec;
18764 maybe_instantiate_noexcept (fn);
18765 subspec = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
18766 spec = merge_exception_specifiers (spec, subspec, NULL_TREE);
18767 }
18768 }
18769
18770 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
18771
18772 FOR_EACH_CLONE (clone, fn)
18773 {
18774 if (TREE_TYPE (clone) == fntype)
18775 TREE_TYPE (clone) = TREE_TYPE (fn);
18776 else
18777 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
18778 }
18779 }
18780
18781 /* Produce the definition of D, a _DECL generated from a template. If
18782 DEFER_OK is nonzero, then we don't have to actually do the
18783 instantiation now; we just have to do it sometime. Normally it is
18784 an error if this is an explicit instantiation but D is undefined.
18785 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
18786 explicitly instantiated class template. */
18787
18788 tree
18789 instantiate_decl (tree d, int defer_ok,
18790 bool expl_inst_class_mem_p)
18791 {
18792 tree tmpl = DECL_TI_TEMPLATE (d);
18793 tree gen_args;
18794 tree args;
18795 tree td;
18796 tree code_pattern;
18797 tree spec;
18798 tree gen_tmpl;
18799 bool pattern_defined;
18800 location_t saved_loc = input_location;
18801 bool external_p;
18802 tree fn_context;
18803 bool nested;
18804
18805 /* This function should only be used to instantiate templates for
18806 functions and static member variables. */
18807 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
18808
18809 /* Variables are never deferred; if instantiation is required, they
18810 are instantiated right away. That allows for better code in the
18811 case that an expression refers to the value of the variable --
18812 if the variable has a constant value the referring expression can
18813 take advantage of that fact. */
18814 if (VAR_P (d)
18815 || DECL_DECLARED_CONSTEXPR_P (d))
18816 defer_ok = 0;
18817
18818 /* Don't instantiate cloned functions. Instead, instantiate the
18819 functions they cloned. */
18820 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
18821 d = DECL_CLONED_FUNCTION (d);
18822
18823 if (DECL_TEMPLATE_INSTANTIATED (d)
18824 || (TREE_CODE (d) == FUNCTION_DECL
18825 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
18826 || DECL_TEMPLATE_SPECIALIZATION (d))
18827 /* D has already been instantiated or explicitly specialized, so
18828 there's nothing for us to do here.
18829
18830 It might seem reasonable to check whether or not D is an explicit
18831 instantiation, and, if so, stop here. But when an explicit
18832 instantiation is deferred until the end of the compilation,
18833 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
18834 the instantiation. */
18835 return d;
18836
18837 /* Check to see whether we know that this template will be
18838 instantiated in some other file, as with "extern template"
18839 extension. */
18840 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
18841
18842 /* In general, we do not instantiate such templates. */
18843 if (external_p && !always_instantiate_p (d))
18844 return d;
18845
18846 gen_tmpl = most_general_template (tmpl);
18847 gen_args = DECL_TI_ARGS (d);
18848
18849 if (tmpl != gen_tmpl)
18850 /* We should already have the extra args. */
18851 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
18852 == TMPL_ARGS_DEPTH (gen_args));
18853 /* And what's in the hash table should match D. */
18854 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
18855 || spec == NULL_TREE);
18856
18857 /* This needs to happen before any tsubsting. */
18858 if (! push_tinst_level (d))
18859 return d;
18860
18861 timevar_push (TV_TEMPLATE_INST);
18862
18863 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
18864 for the instantiation. */
18865 td = template_for_substitution (d);
18866 code_pattern = DECL_TEMPLATE_RESULT (td);
18867
18868 /* We should never be trying to instantiate a member of a class
18869 template or partial specialization. */
18870 gcc_assert (d != code_pattern);
18871
18872 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
18873 || DECL_TEMPLATE_SPECIALIZATION (td))
18874 /* In the case of a friend template whose definition is provided
18875 outside the class, we may have too many arguments. Drop the
18876 ones we don't need. The same is true for specializations. */
18877 args = get_innermost_template_args
18878 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
18879 else
18880 args = gen_args;
18881
18882 if (TREE_CODE (d) == FUNCTION_DECL)
18883 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
18884 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern));
18885 else
18886 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
18887
18888 /* We may be in the middle of deferred access check. Disable it now. */
18889 push_deferring_access_checks (dk_no_deferred);
18890
18891 /* Unless an explicit instantiation directive has already determined
18892 the linkage of D, remember that a definition is available for
18893 this entity. */
18894 if (pattern_defined
18895 && !DECL_INTERFACE_KNOWN (d)
18896 && !DECL_NOT_REALLY_EXTERN (d))
18897 mark_definable (d);
18898
18899 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
18900 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
18901 input_location = DECL_SOURCE_LOCATION (d);
18902
18903 /* If D is a member of an explicitly instantiated class template,
18904 and no definition is available, treat it like an implicit
18905 instantiation. */
18906 if (!pattern_defined && expl_inst_class_mem_p
18907 && DECL_EXPLICIT_INSTANTIATION (d))
18908 {
18909 /* Leave linkage flags alone on instantiations with anonymous
18910 visibility. */
18911 if (TREE_PUBLIC (d))
18912 {
18913 DECL_NOT_REALLY_EXTERN (d) = 0;
18914 DECL_INTERFACE_KNOWN (d) = 0;
18915 }
18916 SET_DECL_IMPLICIT_INSTANTIATION (d);
18917 }
18918
18919 if (TREE_CODE (d) == FUNCTION_DECL)
18920 maybe_instantiate_noexcept (d);
18921
18922 /* Defer all other templates, unless we have been explicitly
18923 forbidden from doing so. */
18924 if (/* If there is no definition, we cannot instantiate the
18925 template. */
18926 ! pattern_defined
18927 /* If it's OK to postpone instantiation, do so. */
18928 || defer_ok
18929 /* If this is a static data member that will be defined
18930 elsewhere, we don't want to instantiate the entire data
18931 member, but we do want to instantiate the initializer so that
18932 we can substitute that elsewhere. */
18933 || (external_p && VAR_P (d)))
18934 {
18935 /* The definition of the static data member is now required so
18936 we must substitute the initializer. */
18937 if (VAR_P (d)
18938 && !DECL_INITIAL (d)
18939 && DECL_INITIAL (code_pattern))
18940 {
18941 tree ns;
18942 tree init;
18943 bool const_init = false;
18944
18945 ns = decl_namespace_context (d);
18946 push_nested_namespace (ns);
18947 push_nested_class (DECL_CONTEXT (d));
18948 init = tsubst_expr (DECL_INITIAL (code_pattern),
18949 args,
18950 tf_warning_or_error, NULL_TREE,
18951 /*integral_constant_expression_p=*/false);
18952 /* Make sure the initializer is still constant, in case of
18953 circular dependency (template/instantiate6.C). */
18954 const_init
18955 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18956 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
18957 /*asmspec_tree=*/NULL_TREE,
18958 LOOKUP_ONLYCONVERTING);
18959 pop_nested_class ();
18960 pop_nested_namespace (ns);
18961 }
18962
18963 /* We restore the source position here because it's used by
18964 add_pending_template. */
18965 input_location = saved_loc;
18966
18967 if (at_eof && !pattern_defined
18968 && DECL_EXPLICIT_INSTANTIATION (d)
18969 && DECL_NOT_REALLY_EXTERN (d))
18970 /* [temp.explicit]
18971
18972 The definition of a non-exported function template, a
18973 non-exported member function template, or a non-exported
18974 member function or static data member of a class template
18975 shall be present in every translation unit in which it is
18976 explicitly instantiated. */
18977 permerror (input_location, "explicit instantiation of %qD "
18978 "but no definition available", d);
18979
18980 /* If we're in unevaluated context, we just wanted to get the
18981 constant value; this isn't an odr use, so don't queue
18982 a full instantiation. */
18983 if (cp_unevaluated_operand != 0)
18984 goto out;
18985 /* ??? Historically, we have instantiated inline functions, even
18986 when marked as "extern template". */
18987 if (!(external_p && VAR_P (d)))
18988 add_pending_template (d);
18989 goto out;
18990 }
18991 /* Tell the repository that D is available in this translation unit
18992 -- and see if it is supposed to be instantiated here. */
18993 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
18994 {
18995 /* In a PCH file, despite the fact that the repository hasn't
18996 requested instantiation in the PCH it is still possible that
18997 an instantiation will be required in a file that includes the
18998 PCH. */
18999 if (pch_file)
19000 add_pending_template (d);
19001 /* Instantiate inline functions so that the inliner can do its
19002 job, even though we'll not be emitting a copy of this
19003 function. */
19004 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
19005 goto out;
19006 }
19007
19008 fn_context = decl_function_context (d);
19009 nested = (current_function_decl != NULL_TREE);
19010 if (!fn_context)
19011 push_to_top_level ();
19012 else if (nested)
19013 push_function_context ();
19014
19015 /* Mark D as instantiated so that recursive calls to
19016 instantiate_decl do not try to instantiate it again. */
19017 DECL_TEMPLATE_INSTANTIATED (d) = 1;
19018
19019 /* Regenerate the declaration in case the template has been modified
19020 by a subsequent redeclaration. */
19021 regenerate_decl_from_template (d, td);
19022
19023 /* We already set the file and line above. Reset them now in case
19024 they changed as a result of calling regenerate_decl_from_template. */
19025 input_location = DECL_SOURCE_LOCATION (d);
19026
19027 if (VAR_P (d))
19028 {
19029 tree init;
19030 bool const_init = false;
19031
19032 /* Clear out DECL_RTL; whatever was there before may not be right
19033 since we've reset the type of the declaration. */
19034 SET_DECL_RTL (d, NULL);
19035 DECL_IN_AGGR_P (d) = 0;
19036
19037 /* The initializer is placed in DECL_INITIAL by
19038 regenerate_decl_from_template so we don't need to
19039 push/pop_access_scope again here. Pull it out so that
19040 cp_finish_decl can process it. */
19041 init = DECL_INITIAL (d);
19042 DECL_INITIAL (d) = NULL_TREE;
19043 DECL_INITIALIZED_P (d) = 0;
19044
19045 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
19046 initializer. That function will defer actual emission until
19047 we have a chance to determine linkage. */
19048 DECL_EXTERNAL (d) = 0;
19049
19050 /* Enter the scope of D so that access-checking works correctly. */
19051 push_nested_class (DECL_CONTEXT (d));
19052 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
19053 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
19054 pop_nested_class ();
19055 }
19056 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
19057 synthesize_method (d);
19058 else if (TREE_CODE (d) == FUNCTION_DECL)
19059 {
19060 struct pointer_map_t *saved_local_specializations;
19061 tree subst_decl;
19062 tree tmpl_parm;
19063 tree spec_parm;
19064
19065 /* Save away the current list, in case we are instantiating one
19066 template from within the body of another. */
19067 saved_local_specializations = local_specializations;
19068
19069 /* Set up the list of local specializations. */
19070 local_specializations = pointer_map_create ();
19071
19072 /* Set up context. */
19073 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
19074
19075 /* Some typedefs referenced from within the template code need to be
19076 access checked at template instantiation time, i.e now. These
19077 types were added to the template at parsing time. Let's get those
19078 and perform the access checks then. */
19079 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
19080 gen_args);
19081
19082 /* Create substitution entries for the parameters. */
19083 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
19084 tmpl_parm = DECL_ARGUMENTS (subst_decl);
19085 spec_parm = DECL_ARGUMENTS (d);
19086 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
19087 {
19088 register_local_specialization (spec_parm, tmpl_parm);
19089 spec_parm = skip_artificial_parms_for (d, spec_parm);
19090 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
19091 }
19092 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
19093 {
19094 if (!FUNCTION_PARAMETER_PACK_P (tmpl_parm))
19095 {
19096 register_local_specialization (spec_parm, tmpl_parm);
19097 spec_parm = DECL_CHAIN (spec_parm);
19098 }
19099 else
19100 {
19101 /* Register the (value) argument pack as a specialization of
19102 TMPL_PARM, then move on. */
19103 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
19104 register_local_specialization (argpack, tmpl_parm);
19105 }
19106 }
19107 gcc_assert (!spec_parm);
19108
19109 /* Substitute into the body of the function. */
19110 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
19111 tf_warning_or_error, tmpl,
19112 /*integral_constant_expression_p=*/false);
19113
19114 /* Set the current input_location to the end of the function
19115 so that finish_function knows where we are. */
19116 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
19117
19118 /* We don't need the local specializations any more. */
19119 pointer_map_destroy (local_specializations);
19120 local_specializations = saved_local_specializations;
19121
19122 /* Finish the function. */
19123 d = finish_function (0);
19124 expand_or_defer_fn (d);
19125 }
19126
19127 /* We're not deferring instantiation any more. */
19128 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
19129
19130 if (!fn_context)
19131 pop_from_top_level ();
19132 else if (nested)
19133 pop_function_context ();
19134
19135 out:
19136 input_location = saved_loc;
19137 pop_deferring_access_checks ();
19138 pop_tinst_level ();
19139
19140 timevar_pop (TV_TEMPLATE_INST);
19141
19142 return d;
19143 }
19144
19145 /* Run through the list of templates that we wish we could
19146 instantiate, and instantiate any we can. RETRIES is the
19147 number of times we retry pending template instantiation. */
19148
19149 void
19150 instantiate_pending_templates (int retries)
19151 {
19152 int reconsider;
19153 location_t saved_loc = input_location;
19154
19155 /* Instantiating templates may trigger vtable generation. This in turn
19156 may require further template instantiations. We place a limit here
19157 to avoid infinite loop. */
19158 if (pending_templates && retries >= max_tinst_depth)
19159 {
19160 tree decl = pending_templates->tinst->decl;
19161
19162 error ("template instantiation depth exceeds maximum of %d"
19163 " instantiating %q+D, possibly from virtual table generation"
19164 " (use -ftemplate-depth= to increase the maximum)",
19165 max_tinst_depth, decl);
19166 if (TREE_CODE (decl) == FUNCTION_DECL)
19167 /* Pretend that we defined it. */
19168 DECL_INITIAL (decl) = error_mark_node;
19169 return;
19170 }
19171
19172 do
19173 {
19174 struct pending_template **t = &pending_templates;
19175 struct pending_template *last = NULL;
19176 reconsider = 0;
19177 while (*t)
19178 {
19179 tree instantiation = reopen_tinst_level ((*t)->tinst);
19180 bool complete = false;
19181
19182 if (TYPE_P (instantiation))
19183 {
19184 tree fn;
19185
19186 if (!COMPLETE_TYPE_P (instantiation))
19187 {
19188 instantiate_class_template (instantiation);
19189 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
19190 for (fn = TYPE_METHODS (instantiation);
19191 fn;
19192 fn = TREE_CHAIN (fn))
19193 if (! DECL_ARTIFICIAL (fn))
19194 instantiate_decl (fn,
19195 /*defer_ok=*/0,
19196 /*expl_inst_class_mem_p=*/false);
19197 if (COMPLETE_TYPE_P (instantiation))
19198 reconsider = 1;
19199 }
19200
19201 complete = COMPLETE_TYPE_P (instantiation);
19202 }
19203 else
19204 {
19205 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
19206 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
19207 {
19208 instantiation
19209 = instantiate_decl (instantiation,
19210 /*defer_ok=*/0,
19211 /*expl_inst_class_mem_p=*/false);
19212 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
19213 reconsider = 1;
19214 }
19215
19216 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
19217 || DECL_TEMPLATE_INSTANTIATED (instantiation));
19218 }
19219
19220 if (complete)
19221 /* If INSTANTIATION has been instantiated, then we don't
19222 need to consider it again in the future. */
19223 *t = (*t)->next;
19224 else
19225 {
19226 last = *t;
19227 t = &(*t)->next;
19228 }
19229 tinst_depth = 0;
19230 current_tinst_level = NULL;
19231 }
19232 last_pending_template = last;
19233 }
19234 while (reconsider);
19235
19236 input_location = saved_loc;
19237 }
19238
19239 /* Substitute ARGVEC into T, which is a list of initializers for
19240 either base class or a non-static data member. The TREE_PURPOSEs
19241 are DECLs, and the TREE_VALUEs are the initializer values. Used by
19242 instantiate_decl. */
19243
19244 static tree
19245 tsubst_initializer_list (tree t, tree argvec)
19246 {
19247 tree inits = NULL_TREE;
19248
19249 for (; t; t = TREE_CHAIN (t))
19250 {
19251 tree decl;
19252 tree init;
19253 tree expanded_bases = NULL_TREE;
19254 tree expanded_arguments = NULL_TREE;
19255 int i, len = 1;
19256
19257 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
19258 {
19259 tree expr;
19260 tree arg;
19261
19262 /* Expand the base class expansion type into separate base
19263 classes. */
19264 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
19265 tf_warning_or_error,
19266 NULL_TREE);
19267 if (expanded_bases == error_mark_node)
19268 continue;
19269
19270 /* We'll be building separate TREE_LISTs of arguments for
19271 each base. */
19272 len = TREE_VEC_LENGTH (expanded_bases);
19273 expanded_arguments = make_tree_vec (len);
19274 for (i = 0; i < len; i++)
19275 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
19276
19277 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
19278 expand each argument in the TREE_VALUE of t. */
19279 expr = make_node (EXPR_PACK_EXPANSION);
19280 PACK_EXPANSION_LOCAL_P (expr) = true;
19281 PACK_EXPANSION_PARAMETER_PACKS (expr) =
19282 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
19283
19284 if (TREE_VALUE (t) == void_type_node)
19285 /* VOID_TYPE_NODE is used to indicate
19286 value-initialization. */
19287 {
19288 for (i = 0; i < len; i++)
19289 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
19290 }
19291 else
19292 {
19293 /* Substitute parameter packs into each argument in the
19294 TREE_LIST. */
19295 in_base_initializer = 1;
19296 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
19297 {
19298 tree expanded_exprs;
19299
19300 /* Expand the argument. */
19301 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
19302 expanded_exprs
19303 = tsubst_pack_expansion (expr, argvec,
19304 tf_warning_or_error,
19305 NULL_TREE);
19306 if (expanded_exprs == error_mark_node)
19307 continue;
19308
19309 /* Prepend each of the expanded expressions to the
19310 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
19311 for (i = 0; i < len; i++)
19312 {
19313 TREE_VEC_ELT (expanded_arguments, i) =
19314 tree_cons (NULL_TREE,
19315 TREE_VEC_ELT (expanded_exprs, i),
19316 TREE_VEC_ELT (expanded_arguments, i));
19317 }
19318 }
19319 in_base_initializer = 0;
19320
19321 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
19322 since we built them backwards. */
19323 for (i = 0; i < len; i++)
19324 {
19325 TREE_VEC_ELT (expanded_arguments, i) =
19326 nreverse (TREE_VEC_ELT (expanded_arguments, i));
19327 }
19328 }
19329 }
19330
19331 for (i = 0; i < len; ++i)
19332 {
19333 if (expanded_bases)
19334 {
19335 decl = TREE_VEC_ELT (expanded_bases, i);
19336 decl = expand_member_init (decl);
19337 init = TREE_VEC_ELT (expanded_arguments, i);
19338 }
19339 else
19340 {
19341 tree tmp;
19342 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
19343 tf_warning_or_error, NULL_TREE);
19344
19345 decl = expand_member_init (decl);
19346 if (decl && !DECL_P (decl))
19347 in_base_initializer = 1;
19348
19349 init = TREE_VALUE (t);
19350 tmp = init;
19351 if (init != void_type_node)
19352 init = tsubst_expr (init, argvec,
19353 tf_warning_or_error, NULL_TREE,
19354 /*integral_constant_expression_p=*/false);
19355 if (init == NULL_TREE && tmp != NULL_TREE)
19356 /* If we had an initializer but it instantiated to nothing,
19357 value-initialize the object. This will only occur when
19358 the initializer was a pack expansion where the parameter
19359 packs used in that expansion were of length zero. */
19360 init = void_type_node;
19361 in_base_initializer = 0;
19362 }
19363
19364 if (decl)
19365 {
19366 init = build_tree_list (decl, init);
19367 TREE_CHAIN (init) = inits;
19368 inits = init;
19369 }
19370 }
19371 }
19372 return inits;
19373 }
19374
19375 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
19376
19377 static void
19378 set_current_access_from_decl (tree decl)
19379 {
19380 if (TREE_PRIVATE (decl))
19381 current_access_specifier = access_private_node;
19382 else if (TREE_PROTECTED (decl))
19383 current_access_specifier = access_protected_node;
19384 else
19385 current_access_specifier = access_public_node;
19386 }
19387
19388 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
19389 is the instantiation (which should have been created with
19390 start_enum) and ARGS are the template arguments to use. */
19391
19392 static void
19393 tsubst_enum (tree tag, tree newtag, tree args)
19394 {
19395 tree e;
19396
19397 if (SCOPED_ENUM_P (newtag))
19398 begin_scope (sk_scoped_enum, newtag);
19399
19400 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
19401 {
19402 tree value;
19403 tree decl;
19404
19405 decl = TREE_VALUE (e);
19406 /* Note that in a template enum, the TREE_VALUE is the
19407 CONST_DECL, not the corresponding INTEGER_CST. */
19408 value = tsubst_expr (DECL_INITIAL (decl),
19409 args, tf_warning_or_error, NULL_TREE,
19410 /*integral_constant_expression_p=*/true);
19411
19412 /* Give this enumeration constant the correct access. */
19413 set_current_access_from_decl (decl);
19414
19415 /* Actually build the enumerator itself. */
19416 build_enumerator
19417 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
19418 }
19419
19420 if (SCOPED_ENUM_P (newtag))
19421 finish_scope ();
19422
19423 finish_enum_value_list (newtag);
19424 finish_enum (newtag);
19425
19426 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
19427 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
19428 }
19429
19430 /* DECL is a FUNCTION_DECL that is a template specialization. Return
19431 its type -- but without substituting the innermost set of template
19432 arguments. So, innermost set of template parameters will appear in
19433 the type. */
19434
19435 tree
19436 get_mostly_instantiated_function_type (tree decl)
19437 {
19438 tree fn_type;
19439 tree tmpl;
19440 tree targs;
19441 tree tparms;
19442 int parm_depth;
19443
19444 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
19445 targs = DECL_TI_ARGS (decl);
19446 tparms = DECL_TEMPLATE_PARMS (tmpl);
19447 parm_depth = TMPL_PARMS_DEPTH (tparms);
19448
19449 /* There should be as many levels of arguments as there are levels
19450 of parameters. */
19451 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
19452
19453 fn_type = TREE_TYPE (tmpl);
19454
19455 if (parm_depth == 1)
19456 /* No substitution is necessary. */
19457 ;
19458 else
19459 {
19460 int i;
19461 tree partial_args;
19462
19463 /* Replace the innermost level of the TARGS with NULL_TREEs to
19464 let tsubst know not to substitute for those parameters. */
19465 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
19466 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
19467 SET_TMPL_ARGS_LEVEL (partial_args, i,
19468 TMPL_ARGS_LEVEL (targs, i));
19469 SET_TMPL_ARGS_LEVEL (partial_args,
19470 TMPL_ARGS_DEPTH (targs),
19471 make_tree_vec (DECL_NTPARMS (tmpl)));
19472
19473 /* Make sure that we can see identifiers, and compute access
19474 correctly. */
19475 push_access_scope (decl);
19476
19477 ++processing_template_decl;
19478 /* Now, do the (partial) substitution to figure out the
19479 appropriate function type. */
19480 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
19481 --processing_template_decl;
19482
19483 /* Substitute into the template parameters to obtain the real
19484 innermost set of parameters. This step is important if the
19485 innermost set of template parameters contains value
19486 parameters whose types depend on outer template parameters. */
19487 TREE_VEC_LENGTH (partial_args)--;
19488 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
19489
19490 pop_access_scope (decl);
19491 }
19492
19493 return fn_type;
19494 }
19495
19496 /* Return truthvalue if we're processing a template different from
19497 the last one involved in diagnostics. */
19498 int
19499 problematic_instantiation_changed (void)
19500 {
19501 return current_tinst_level != last_error_tinst_level;
19502 }
19503
19504 /* Remember current template involved in diagnostics. */
19505 void
19506 record_last_problematic_instantiation (void)
19507 {
19508 last_error_tinst_level = current_tinst_level;
19509 }
19510
19511 struct tinst_level *
19512 current_instantiation (void)
19513 {
19514 return current_tinst_level;
19515 }
19516
19517 /* [temp.param] Check that template non-type parm TYPE is of an allowable
19518 type. Return zero for ok, nonzero for disallowed. Issue error and
19519 warning messages under control of COMPLAIN. */
19520
19521 static int
19522 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
19523 {
19524 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
19525 return 0;
19526 else if (POINTER_TYPE_P (type))
19527 return 0;
19528 else if (TYPE_PTRMEM_P (type))
19529 return 0;
19530 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
19531 return 0;
19532 else if (TREE_CODE (type) == TYPENAME_TYPE)
19533 return 0;
19534 else if (TREE_CODE (type) == DECLTYPE_TYPE)
19535 return 0;
19536 else if (TREE_CODE (type) == NULLPTR_TYPE)
19537 return 0;
19538
19539 if (complain & tf_error)
19540 {
19541 if (type == error_mark_node)
19542 inform (input_location, "invalid template non-type parameter");
19543 else
19544 error ("%q#T is not a valid type for a template non-type parameter",
19545 type);
19546 }
19547 return 1;
19548 }
19549
19550 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
19551 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
19552
19553 static bool
19554 dependent_type_p_r (tree type)
19555 {
19556 tree scope;
19557
19558 /* [temp.dep.type]
19559
19560 A type is dependent if it is:
19561
19562 -- a template parameter. Template template parameters are types
19563 for us (since TYPE_P holds true for them) so we handle
19564 them here. */
19565 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
19566 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
19567 return true;
19568 /* -- a qualified-id with a nested-name-specifier which contains a
19569 class-name that names a dependent type or whose unqualified-id
19570 names a dependent type. */
19571 if (TREE_CODE (type) == TYPENAME_TYPE)
19572 return true;
19573 /* -- a cv-qualified type where the cv-unqualified type is
19574 dependent. */
19575 type = TYPE_MAIN_VARIANT (type);
19576 /* -- a compound type constructed from any dependent type. */
19577 if (TYPE_PTRMEM_P (type))
19578 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
19579 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
19580 (type)));
19581 else if (TYPE_PTR_P (type)
19582 || TREE_CODE (type) == REFERENCE_TYPE)
19583 return dependent_type_p (TREE_TYPE (type));
19584 else if (TREE_CODE (type) == FUNCTION_TYPE
19585 || TREE_CODE (type) == METHOD_TYPE)
19586 {
19587 tree arg_type;
19588
19589 if (dependent_type_p (TREE_TYPE (type)))
19590 return true;
19591 for (arg_type = TYPE_ARG_TYPES (type);
19592 arg_type;
19593 arg_type = TREE_CHAIN (arg_type))
19594 if (dependent_type_p (TREE_VALUE (arg_type)))
19595 return true;
19596 return false;
19597 }
19598 /* -- an array type constructed from any dependent type or whose
19599 size is specified by a constant expression that is
19600 value-dependent.
19601
19602 We checked for type- and value-dependence of the bounds in
19603 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
19604 if (TREE_CODE (type) == ARRAY_TYPE)
19605 {
19606 if (TYPE_DOMAIN (type)
19607 && dependent_type_p (TYPE_DOMAIN (type)))
19608 return true;
19609 return dependent_type_p (TREE_TYPE (type));
19610 }
19611
19612 /* -- a template-id in which either the template name is a template
19613 parameter ... */
19614 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
19615 return true;
19616 /* ... or any of the template arguments is a dependent type or
19617 an expression that is type-dependent or value-dependent. */
19618 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
19619 && (any_dependent_template_arguments_p
19620 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
19621 return true;
19622
19623 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
19624 dependent; if the argument of the `typeof' expression is not
19625 type-dependent, then it should already been have resolved. */
19626 if (TREE_CODE (type) == TYPEOF_TYPE
19627 || TREE_CODE (type) == DECLTYPE_TYPE
19628 || TREE_CODE (type) == UNDERLYING_TYPE)
19629 return true;
19630
19631 /* A template argument pack is dependent if any of its packed
19632 arguments are. */
19633 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
19634 {
19635 tree args = ARGUMENT_PACK_ARGS (type);
19636 int i, len = TREE_VEC_LENGTH (args);
19637 for (i = 0; i < len; ++i)
19638 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19639 return true;
19640 }
19641
19642 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
19643 be template parameters. */
19644 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
19645 return true;
19646
19647 /* The standard does not specifically mention types that are local
19648 to template functions or local classes, but they should be
19649 considered dependent too. For example:
19650
19651 template <int I> void f() {
19652 enum E { a = I };
19653 S<sizeof (E)> s;
19654 }
19655
19656 The size of `E' cannot be known until the value of `I' has been
19657 determined. Therefore, `E' must be considered dependent. */
19658 scope = TYPE_CONTEXT (type);
19659 if (scope && TYPE_P (scope))
19660 return dependent_type_p (scope);
19661 /* Don't use type_dependent_expression_p here, as it can lead
19662 to infinite recursion trying to determine whether a lambda
19663 nested in a lambda is dependent (c++/47687). */
19664 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
19665 && DECL_LANG_SPECIFIC (scope)
19666 && DECL_TEMPLATE_INFO (scope)
19667 && (any_dependent_template_arguments_p
19668 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
19669 return true;
19670
19671 /* Other types are non-dependent. */
19672 return false;
19673 }
19674
19675 /* Returns TRUE if TYPE is dependent, in the sense of
19676 [temp.dep.type]. Note that a NULL type is considered dependent. */
19677
19678 bool
19679 dependent_type_p (tree type)
19680 {
19681 /* If there are no template parameters in scope, then there can't be
19682 any dependent types. */
19683 if (!processing_template_decl)
19684 {
19685 /* If we are not processing a template, then nobody should be
19686 providing us with a dependent type. */
19687 gcc_assert (type);
19688 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
19689 return false;
19690 }
19691
19692 /* If the type is NULL, we have not computed a type for the entity
19693 in question; in that case, the type is dependent. */
19694 if (!type)
19695 return true;
19696
19697 /* Erroneous types can be considered non-dependent. */
19698 if (type == error_mark_node)
19699 return false;
19700
19701 /* If we have not already computed the appropriate value for TYPE,
19702 do so now. */
19703 if (!TYPE_DEPENDENT_P_VALID (type))
19704 {
19705 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
19706 TYPE_DEPENDENT_P_VALID (type) = 1;
19707 }
19708
19709 return TYPE_DEPENDENT_P (type);
19710 }
19711
19712 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
19713 lookup. In other words, a dependent type that is not the current
19714 instantiation. */
19715
19716 bool
19717 dependent_scope_p (tree scope)
19718 {
19719 return (scope && TYPE_P (scope) && dependent_type_p (scope)
19720 && !currently_open_class (scope));
19721 }
19722
19723 /* T is a SCOPE_REF; return whether we need to consider it
19724 instantiation-dependent so that we can check access at instantiation
19725 time even though we know which member it resolves to. */
19726
19727 static bool
19728 instantiation_dependent_scope_ref_p (tree t)
19729 {
19730 if (DECL_P (TREE_OPERAND (t, 1))
19731 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
19732 && accessible_in_template_p (TREE_OPERAND (t, 0),
19733 TREE_OPERAND (t, 1)))
19734 return false;
19735 else
19736 return true;
19737 }
19738
19739 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
19740 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
19741 expression. */
19742
19743 /* Note that this predicate is not appropriate for general expressions;
19744 only constant expressions (that satisfy potential_constant_expression)
19745 can be tested for value dependence. */
19746
19747 bool
19748 value_dependent_expression_p (tree expression)
19749 {
19750 if (!processing_template_decl)
19751 return false;
19752
19753 /* A name declared with a dependent type. */
19754 if (DECL_P (expression) && type_dependent_expression_p (expression))
19755 return true;
19756
19757 switch (TREE_CODE (expression))
19758 {
19759 case IDENTIFIER_NODE:
19760 /* A name that has not been looked up -- must be dependent. */
19761 return true;
19762
19763 case TEMPLATE_PARM_INDEX:
19764 /* A non-type template parm. */
19765 return true;
19766
19767 case CONST_DECL:
19768 /* A non-type template parm. */
19769 if (DECL_TEMPLATE_PARM_P (expression))
19770 return true;
19771 return value_dependent_expression_p (DECL_INITIAL (expression));
19772
19773 case VAR_DECL:
19774 /* A constant with literal type and is initialized
19775 with an expression that is value-dependent.
19776
19777 Note that a non-dependent parenthesized initializer will have
19778 already been replaced with its constant value, so if we see
19779 a TREE_LIST it must be dependent. */
19780 if (DECL_INITIAL (expression)
19781 && decl_constant_var_p (expression)
19782 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
19783 || value_dependent_expression_p (DECL_INITIAL (expression))))
19784 return true;
19785 return false;
19786
19787 case DYNAMIC_CAST_EXPR:
19788 case STATIC_CAST_EXPR:
19789 case CONST_CAST_EXPR:
19790 case REINTERPRET_CAST_EXPR:
19791 case CAST_EXPR:
19792 /* These expressions are value-dependent if the type to which
19793 the cast occurs is dependent or the expression being casted
19794 is value-dependent. */
19795 {
19796 tree type = TREE_TYPE (expression);
19797
19798 if (dependent_type_p (type))
19799 return true;
19800
19801 /* A functional cast has a list of operands. */
19802 expression = TREE_OPERAND (expression, 0);
19803 if (!expression)
19804 {
19805 /* If there are no operands, it must be an expression such
19806 as "int()". This should not happen for aggregate types
19807 because it would form non-constant expressions. */
19808 gcc_assert (cxx_dialect >= cxx0x
19809 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
19810
19811 return false;
19812 }
19813
19814 if (TREE_CODE (expression) == TREE_LIST)
19815 return any_value_dependent_elements_p (expression);
19816
19817 return value_dependent_expression_p (expression);
19818 }
19819
19820 case SIZEOF_EXPR:
19821 if (SIZEOF_EXPR_TYPE_P (expression))
19822 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
19823 /* FALLTHRU */
19824 case ALIGNOF_EXPR:
19825 case TYPEID_EXPR:
19826 /* A `sizeof' expression is value-dependent if the operand is
19827 type-dependent or is a pack expansion. */
19828 expression = TREE_OPERAND (expression, 0);
19829 if (PACK_EXPANSION_P (expression))
19830 return true;
19831 else if (TYPE_P (expression))
19832 return dependent_type_p (expression);
19833 return instantiation_dependent_expression_p (expression);
19834
19835 case AT_ENCODE_EXPR:
19836 /* An 'encode' expression is value-dependent if the operand is
19837 type-dependent. */
19838 expression = TREE_OPERAND (expression, 0);
19839 return dependent_type_p (expression);
19840
19841 case NOEXCEPT_EXPR:
19842 expression = TREE_OPERAND (expression, 0);
19843 return instantiation_dependent_expression_p (expression);
19844
19845 case SCOPE_REF:
19846 /* All instantiation-dependent expressions should also be considered
19847 value-dependent. */
19848 return instantiation_dependent_scope_ref_p (expression);
19849
19850 case COMPONENT_REF:
19851 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
19852 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
19853
19854 case NONTYPE_ARGUMENT_PACK:
19855 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
19856 is value-dependent. */
19857 {
19858 tree values = ARGUMENT_PACK_ARGS (expression);
19859 int i, len = TREE_VEC_LENGTH (values);
19860
19861 for (i = 0; i < len; ++i)
19862 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
19863 return true;
19864
19865 return false;
19866 }
19867
19868 case TRAIT_EXPR:
19869 {
19870 tree type2 = TRAIT_EXPR_TYPE2 (expression);
19871 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
19872 || (type2 ? dependent_type_p (type2) : false));
19873 }
19874
19875 case MODOP_EXPR:
19876 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19877 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
19878
19879 case ARRAY_REF:
19880 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19881 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
19882
19883 case ADDR_EXPR:
19884 {
19885 tree op = TREE_OPERAND (expression, 0);
19886 return (value_dependent_expression_p (op)
19887 || has_value_dependent_address (op));
19888 }
19889
19890 case CALL_EXPR:
19891 {
19892 tree fn = get_callee_fndecl (expression);
19893 int i, nargs;
19894 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
19895 return true;
19896 nargs = call_expr_nargs (expression);
19897 for (i = 0; i < nargs; ++i)
19898 {
19899 tree op = CALL_EXPR_ARG (expression, i);
19900 /* In a call to a constexpr member function, look through the
19901 implicit ADDR_EXPR on the object argument so that it doesn't
19902 cause the call to be considered value-dependent. We also
19903 look through it in potential_constant_expression. */
19904 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
19905 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
19906 && TREE_CODE (op) == ADDR_EXPR)
19907 op = TREE_OPERAND (op, 0);
19908 if (value_dependent_expression_p (op))
19909 return true;
19910 }
19911 return false;
19912 }
19913
19914 case TEMPLATE_ID_EXPR:
19915 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
19916 type-dependent. */
19917 return type_dependent_expression_p (expression);
19918
19919 case CONSTRUCTOR:
19920 {
19921 unsigned ix;
19922 tree val;
19923 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
19924 if (value_dependent_expression_p (val))
19925 return true;
19926 return false;
19927 }
19928
19929 case STMT_EXPR:
19930 /* Treat a GNU statement expression as dependent to avoid crashing
19931 under fold_non_dependent_expr; it can't be constant. */
19932 return true;
19933
19934 default:
19935 /* A constant expression is value-dependent if any subexpression is
19936 value-dependent. */
19937 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
19938 {
19939 case tcc_reference:
19940 case tcc_unary:
19941 case tcc_comparison:
19942 case tcc_binary:
19943 case tcc_expression:
19944 case tcc_vl_exp:
19945 {
19946 int i, len = cp_tree_operand_length (expression);
19947
19948 for (i = 0; i < len; i++)
19949 {
19950 tree t = TREE_OPERAND (expression, i);
19951
19952 /* In some cases, some of the operands may be missing.l
19953 (For example, in the case of PREDECREMENT_EXPR, the
19954 amount to increment by may be missing.) That doesn't
19955 make the expression dependent. */
19956 if (t && value_dependent_expression_p (t))
19957 return true;
19958 }
19959 }
19960 break;
19961 default:
19962 break;
19963 }
19964 break;
19965 }
19966
19967 /* The expression is not value-dependent. */
19968 return false;
19969 }
19970
19971 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
19972 [temp.dep.expr]. Note that an expression with no type is
19973 considered dependent. Other parts of the compiler arrange for an
19974 expression with type-dependent subexpressions to have no type, so
19975 this function doesn't have to be fully recursive. */
19976
19977 bool
19978 type_dependent_expression_p (tree expression)
19979 {
19980 if (!processing_template_decl)
19981 return false;
19982
19983 if (expression == error_mark_node)
19984 return false;
19985
19986 /* An unresolved name is always dependent. */
19987 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
19988 return true;
19989
19990 /* Some expression forms are never type-dependent. */
19991 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
19992 || TREE_CODE (expression) == SIZEOF_EXPR
19993 || TREE_CODE (expression) == ALIGNOF_EXPR
19994 || TREE_CODE (expression) == AT_ENCODE_EXPR
19995 || TREE_CODE (expression) == NOEXCEPT_EXPR
19996 || TREE_CODE (expression) == TRAIT_EXPR
19997 || TREE_CODE (expression) == TYPEID_EXPR
19998 || TREE_CODE (expression) == DELETE_EXPR
19999 || TREE_CODE (expression) == VEC_DELETE_EXPR
20000 || TREE_CODE (expression) == THROW_EXPR)
20001 return false;
20002
20003 /* The types of these expressions depends only on the type to which
20004 the cast occurs. */
20005 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
20006 || TREE_CODE (expression) == STATIC_CAST_EXPR
20007 || TREE_CODE (expression) == CONST_CAST_EXPR
20008 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
20009 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
20010 || TREE_CODE (expression) == CAST_EXPR)
20011 return dependent_type_p (TREE_TYPE (expression));
20012
20013 /* The types of these expressions depends only on the type created
20014 by the expression. */
20015 if (TREE_CODE (expression) == NEW_EXPR
20016 || TREE_CODE (expression) == VEC_NEW_EXPR)
20017 {
20018 /* For NEW_EXPR tree nodes created inside a template, either
20019 the object type itself or a TREE_LIST may appear as the
20020 operand 1. */
20021 tree type = TREE_OPERAND (expression, 1);
20022 if (TREE_CODE (type) == TREE_LIST)
20023 /* This is an array type. We need to check array dimensions
20024 as well. */
20025 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
20026 || value_dependent_expression_p
20027 (TREE_OPERAND (TREE_VALUE (type), 1));
20028 else
20029 return dependent_type_p (type);
20030 }
20031
20032 if (TREE_CODE (expression) == SCOPE_REF)
20033 {
20034 tree scope = TREE_OPERAND (expression, 0);
20035 tree name = TREE_OPERAND (expression, 1);
20036
20037 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
20038 contains an identifier associated by name lookup with one or more
20039 declarations declared with a dependent type, or...a
20040 nested-name-specifier or qualified-id that names a member of an
20041 unknown specialization. */
20042 return (type_dependent_expression_p (name)
20043 || dependent_scope_p (scope));
20044 }
20045
20046 if (TREE_CODE (expression) == FUNCTION_DECL
20047 && DECL_LANG_SPECIFIC (expression)
20048 && DECL_TEMPLATE_INFO (expression)
20049 && (any_dependent_template_arguments_p
20050 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
20051 return true;
20052
20053 if (TREE_CODE (expression) == TEMPLATE_DECL
20054 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
20055 return false;
20056
20057 if (TREE_CODE (expression) == STMT_EXPR)
20058 expression = stmt_expr_value_expr (expression);
20059
20060 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
20061 {
20062 tree elt;
20063 unsigned i;
20064
20065 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
20066 {
20067 if (type_dependent_expression_p (elt))
20068 return true;
20069 }
20070 return false;
20071 }
20072
20073 /* A static data member of the current instantiation with incomplete
20074 array type is type-dependent, as the definition and specializations
20075 can have different bounds. */
20076 if (VAR_P (expression)
20077 && DECL_CLASS_SCOPE_P (expression)
20078 && dependent_type_p (DECL_CONTEXT (expression))
20079 && VAR_HAD_UNKNOWN_BOUND (expression))
20080 return true;
20081
20082 /* An array of unknown bound depending on a variadic parameter, eg:
20083
20084 template<typename... Args>
20085 void foo (Args... args)
20086 {
20087 int arr[] = { args... };
20088 }
20089
20090 template<int... vals>
20091 void bar ()
20092 {
20093 int arr[] = { vals... };
20094 }
20095
20096 If the array has no length and has an initializer, it must be that
20097 we couldn't determine its length in cp_complete_array_type because
20098 it is dependent. */
20099 if (VAR_P (expression)
20100 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
20101 && !TYPE_DOMAIN (TREE_TYPE (expression))
20102 && DECL_INITIAL (expression))
20103 return true;
20104
20105 if (TREE_TYPE (expression) == unknown_type_node)
20106 {
20107 if (TREE_CODE (expression) == ADDR_EXPR)
20108 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
20109 if (TREE_CODE (expression) == COMPONENT_REF
20110 || TREE_CODE (expression) == OFFSET_REF)
20111 {
20112 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
20113 return true;
20114 expression = TREE_OPERAND (expression, 1);
20115 if (identifier_p (expression))
20116 return false;
20117 }
20118 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
20119 if (TREE_CODE (expression) == SCOPE_REF)
20120 return false;
20121
20122 if (BASELINK_P (expression))
20123 expression = BASELINK_FUNCTIONS (expression);
20124
20125 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
20126 {
20127 if (any_dependent_template_arguments_p
20128 (TREE_OPERAND (expression, 1)))
20129 return true;
20130 expression = TREE_OPERAND (expression, 0);
20131 }
20132 gcc_assert (TREE_CODE (expression) == OVERLOAD
20133 || TREE_CODE (expression) == FUNCTION_DECL);
20134
20135 while (expression)
20136 {
20137 if (type_dependent_expression_p (OVL_CURRENT (expression)))
20138 return true;
20139 expression = OVL_NEXT (expression);
20140 }
20141 return false;
20142 }
20143
20144 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
20145
20146 return (dependent_type_p (TREE_TYPE (expression)));
20147 }
20148
20149 /* walk_tree callback function for instantiation_dependent_expression_p,
20150 below. Returns non-zero if a dependent subexpression is found. */
20151
20152 static tree
20153 instantiation_dependent_r (tree *tp, int *walk_subtrees,
20154 void * /*data*/)
20155 {
20156 if (TYPE_P (*tp))
20157 {
20158 /* We don't have to worry about decltype currently because decltype
20159 of an instantiation-dependent expr is a dependent type. This
20160 might change depending on the resolution of DR 1172. */
20161 *walk_subtrees = false;
20162 return NULL_TREE;
20163 }
20164 enum tree_code code = TREE_CODE (*tp);
20165 switch (code)
20166 {
20167 /* Don't treat an argument list as dependent just because it has no
20168 TREE_TYPE. */
20169 case TREE_LIST:
20170 case TREE_VEC:
20171 return NULL_TREE;
20172
20173 case VAR_DECL:
20174 case CONST_DECL:
20175 /* A constant with a dependent initializer is dependent. */
20176 if (value_dependent_expression_p (*tp))
20177 return *tp;
20178 break;
20179
20180 case TEMPLATE_PARM_INDEX:
20181 return *tp;
20182
20183 /* Handle expressions with type operands. */
20184 case SIZEOF_EXPR:
20185 case ALIGNOF_EXPR:
20186 case TYPEID_EXPR:
20187 case AT_ENCODE_EXPR:
20188 {
20189 tree op = TREE_OPERAND (*tp, 0);
20190 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
20191 op = TREE_TYPE (op);
20192 if (TYPE_P (op))
20193 {
20194 if (dependent_type_p (op))
20195 return *tp;
20196 else
20197 {
20198 *walk_subtrees = false;
20199 return NULL_TREE;
20200 }
20201 }
20202 break;
20203 }
20204
20205 case TRAIT_EXPR:
20206 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
20207 || (TRAIT_EXPR_TYPE2 (*tp)
20208 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
20209 return *tp;
20210 *walk_subtrees = false;
20211 return NULL_TREE;
20212
20213 case COMPONENT_REF:
20214 if (identifier_p (TREE_OPERAND (*tp, 1)))
20215 /* In a template, finish_class_member_access_expr creates a
20216 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
20217 type-dependent, so that we can check access control at
20218 instantiation time (PR 42277). See also Core issue 1273. */
20219 return *tp;
20220 break;
20221
20222 case SCOPE_REF:
20223 if (instantiation_dependent_scope_ref_p (*tp))
20224 return *tp;
20225 else
20226 break;
20227
20228 /* Treat statement-expressions as dependent. */
20229 case BIND_EXPR:
20230 return *tp;
20231
20232 default:
20233 break;
20234 }
20235
20236 if (type_dependent_expression_p (*tp))
20237 return *tp;
20238 else
20239 return NULL_TREE;
20240 }
20241
20242 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
20243 sense defined by the ABI:
20244
20245 "An expression is instantiation-dependent if it is type-dependent
20246 or value-dependent, or it has a subexpression that is type-dependent
20247 or value-dependent." */
20248
20249 bool
20250 instantiation_dependent_expression_p (tree expression)
20251 {
20252 tree result;
20253
20254 if (!processing_template_decl)
20255 return false;
20256
20257 if (expression == error_mark_node)
20258 return false;
20259
20260 result = cp_walk_tree_without_duplicates (&expression,
20261 instantiation_dependent_r, NULL);
20262 return result != NULL_TREE;
20263 }
20264
20265 /* Like type_dependent_expression_p, but it also works while not processing
20266 a template definition, i.e. during substitution or mangling. */
20267
20268 bool
20269 type_dependent_expression_p_push (tree expr)
20270 {
20271 bool b;
20272 ++processing_template_decl;
20273 b = type_dependent_expression_p (expr);
20274 --processing_template_decl;
20275 return b;
20276 }
20277
20278 /* Returns TRUE if ARGS contains a type-dependent expression. */
20279
20280 bool
20281 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
20282 {
20283 unsigned int i;
20284 tree arg;
20285
20286 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
20287 {
20288 if (type_dependent_expression_p (arg))
20289 return true;
20290 }
20291 return false;
20292 }
20293
20294 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
20295 expressions) contains any type-dependent expressions. */
20296
20297 bool
20298 any_type_dependent_elements_p (const_tree list)
20299 {
20300 for (; list; list = TREE_CHAIN (list))
20301 if (value_dependent_expression_p (TREE_VALUE (list)))
20302 return true;
20303
20304 return false;
20305 }
20306
20307 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
20308 expressions) contains any value-dependent expressions. */
20309
20310 bool
20311 any_value_dependent_elements_p (const_tree list)
20312 {
20313 for (; list; list = TREE_CHAIN (list))
20314 if (value_dependent_expression_p (TREE_VALUE (list)))
20315 return true;
20316
20317 return false;
20318 }
20319
20320 /* Returns TRUE if the ARG (a template argument) is dependent. */
20321
20322 bool
20323 dependent_template_arg_p (tree arg)
20324 {
20325 if (!processing_template_decl)
20326 return false;
20327
20328 /* Assume a template argument that was wrongly written by the user
20329 is dependent. This is consistent with what
20330 any_dependent_template_arguments_p [that calls this function]
20331 does. */
20332 if (!arg || arg == error_mark_node)
20333 return true;
20334
20335 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
20336 arg = ARGUMENT_PACK_SELECT_ARG (arg);
20337
20338 if (TREE_CODE (arg) == TEMPLATE_DECL
20339 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
20340 return dependent_template_p (arg);
20341 else if (ARGUMENT_PACK_P (arg))
20342 {
20343 tree args = ARGUMENT_PACK_ARGS (arg);
20344 int i, len = TREE_VEC_LENGTH (args);
20345 for (i = 0; i < len; ++i)
20346 {
20347 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20348 return true;
20349 }
20350
20351 return false;
20352 }
20353 else if (TYPE_P (arg))
20354 return dependent_type_p (arg);
20355 else
20356 return (type_dependent_expression_p (arg)
20357 || value_dependent_expression_p (arg));
20358 }
20359
20360 /* Returns true if ARGS (a collection of template arguments) contains
20361 any types that require structural equality testing. */
20362
20363 bool
20364 any_template_arguments_need_structural_equality_p (tree args)
20365 {
20366 int i;
20367 int j;
20368
20369 if (!args)
20370 return false;
20371 if (args == error_mark_node)
20372 return true;
20373
20374 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
20375 {
20376 tree level = TMPL_ARGS_LEVEL (args, i + 1);
20377 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
20378 {
20379 tree arg = TREE_VEC_ELT (level, j);
20380 tree packed_args = NULL_TREE;
20381 int k, len = 1;
20382
20383 if (ARGUMENT_PACK_P (arg))
20384 {
20385 /* Look inside the argument pack. */
20386 packed_args = ARGUMENT_PACK_ARGS (arg);
20387 len = TREE_VEC_LENGTH (packed_args);
20388 }
20389
20390 for (k = 0; k < len; ++k)
20391 {
20392 if (packed_args)
20393 arg = TREE_VEC_ELT (packed_args, k);
20394
20395 if (error_operand_p (arg))
20396 return true;
20397 else if (TREE_CODE (arg) == TEMPLATE_DECL)
20398 continue;
20399 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
20400 return true;
20401 else if (!TYPE_P (arg) && TREE_TYPE (arg)
20402 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
20403 return true;
20404 }
20405 }
20406 }
20407
20408 return false;
20409 }
20410
20411 /* Returns true if ARGS (a collection of template arguments) contains
20412 any dependent arguments. */
20413
20414 bool
20415 any_dependent_template_arguments_p (const_tree args)
20416 {
20417 int i;
20418 int j;
20419
20420 if (!args)
20421 return false;
20422 if (args == error_mark_node)
20423 return true;
20424
20425 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
20426 {
20427 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
20428 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
20429 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
20430 return true;
20431 }
20432
20433 return false;
20434 }
20435
20436 /* Returns TRUE if the template TMPL is dependent. */
20437
20438 bool
20439 dependent_template_p (tree tmpl)
20440 {
20441 if (TREE_CODE (tmpl) == OVERLOAD)
20442 {
20443 while (tmpl)
20444 {
20445 if (dependent_template_p (OVL_CURRENT (tmpl)))
20446 return true;
20447 tmpl = OVL_NEXT (tmpl);
20448 }
20449 return false;
20450 }
20451
20452 /* Template template parameters are dependent. */
20453 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
20454 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
20455 return true;
20456 /* So are names that have not been looked up. */
20457 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
20458 return true;
20459 /* So are member templates of dependent classes. */
20460 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
20461 return dependent_type_p (DECL_CONTEXT (tmpl));
20462 return false;
20463 }
20464
20465 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
20466
20467 bool
20468 dependent_template_id_p (tree tmpl, tree args)
20469 {
20470 return (dependent_template_p (tmpl)
20471 || any_dependent_template_arguments_p (args));
20472 }
20473
20474 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
20475 is dependent. */
20476
20477 bool
20478 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
20479 {
20480 int i;
20481
20482 if (!processing_template_decl)
20483 return false;
20484
20485 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
20486 {
20487 tree decl = TREE_VEC_ELT (declv, i);
20488 tree init = TREE_VEC_ELT (initv, i);
20489 tree cond = TREE_VEC_ELT (condv, i);
20490 tree incr = TREE_VEC_ELT (incrv, i);
20491
20492 if (type_dependent_expression_p (decl))
20493 return true;
20494
20495 if (init && type_dependent_expression_p (init))
20496 return true;
20497
20498 if (type_dependent_expression_p (cond))
20499 return true;
20500
20501 if (COMPARISON_CLASS_P (cond)
20502 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
20503 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
20504 return true;
20505
20506 if (TREE_CODE (incr) == MODOP_EXPR)
20507 {
20508 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
20509 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
20510 return true;
20511 }
20512 else if (type_dependent_expression_p (incr))
20513 return true;
20514 else if (TREE_CODE (incr) == MODIFY_EXPR)
20515 {
20516 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
20517 return true;
20518 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
20519 {
20520 tree t = TREE_OPERAND (incr, 1);
20521 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
20522 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
20523 return true;
20524 }
20525 }
20526 }
20527
20528 return false;
20529 }
20530
20531 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
20532 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
20533 no such TYPE can be found. Note that this function peers inside
20534 uninstantiated templates and therefore should be used only in
20535 extremely limited situations. ONLY_CURRENT_P restricts this
20536 peering to the currently open classes hierarchy (which is required
20537 when comparing types). */
20538
20539 tree
20540 resolve_typename_type (tree type, bool only_current_p)
20541 {
20542 tree scope;
20543 tree name;
20544 tree decl;
20545 int quals;
20546 tree pushed_scope;
20547 tree result;
20548
20549 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
20550
20551 scope = TYPE_CONTEXT (type);
20552 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
20553 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
20554 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
20555 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
20556 identifier of the TYPENAME_TYPE anymore.
20557 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
20558 TYPENAME_TYPE instead, we avoid messing up with a possible
20559 typedef variant case. */
20560 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
20561
20562 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
20563 it first before we can figure out what NAME refers to. */
20564 if (TREE_CODE (scope) == TYPENAME_TYPE)
20565 {
20566 if (TYPENAME_IS_RESOLVING_P (scope))
20567 /* Given a class template A with a dependent base with nested type C,
20568 typedef typename A::C::C C will land us here, as trying to resolve
20569 the initial A::C leads to the local C typedef, which leads back to
20570 A::C::C. So we break the recursion now. */
20571 return type;
20572 else
20573 scope = resolve_typename_type (scope, only_current_p);
20574 }
20575 /* If we don't know what SCOPE refers to, then we cannot resolve the
20576 TYPENAME_TYPE. */
20577 if (TREE_CODE (scope) == TYPENAME_TYPE)
20578 return type;
20579 /* If the SCOPE is a template type parameter, we have no way of
20580 resolving the name. */
20581 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
20582 return type;
20583 /* If the SCOPE is not the current instantiation, there's no reason
20584 to look inside it. */
20585 if (only_current_p && !currently_open_class (scope))
20586 return type;
20587 /* If this is a typedef, we don't want to look inside (c++/11987). */
20588 if (typedef_variant_p (type))
20589 return type;
20590 /* If SCOPE isn't the template itself, it will not have a valid
20591 TYPE_FIELDS list. */
20592 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
20593 /* scope is either the template itself or a compatible instantiation
20594 like X<T>, so look up the name in the original template. */
20595 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
20596 else
20597 /* scope is a partial instantiation, so we can't do the lookup or we
20598 will lose the template arguments. */
20599 return type;
20600 /* Enter the SCOPE so that name lookup will be resolved as if we
20601 were in the class definition. In particular, SCOPE will no
20602 longer be considered a dependent type. */
20603 pushed_scope = push_scope (scope);
20604 /* Look up the declaration. */
20605 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
20606 tf_warning_or_error);
20607
20608 result = NULL_TREE;
20609
20610 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
20611 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
20612 if (!decl)
20613 /*nop*/;
20614 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
20615 && TREE_CODE (decl) == TYPE_DECL)
20616 {
20617 result = TREE_TYPE (decl);
20618 if (result == error_mark_node)
20619 result = NULL_TREE;
20620 }
20621 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
20622 && DECL_CLASS_TEMPLATE_P (decl))
20623 {
20624 tree tmpl;
20625 tree args;
20626 /* Obtain the template and the arguments. */
20627 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
20628 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
20629 /* Instantiate the template. */
20630 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
20631 /*entering_scope=*/0,
20632 tf_error | tf_user);
20633 if (result == error_mark_node)
20634 result = NULL_TREE;
20635 }
20636
20637 /* Leave the SCOPE. */
20638 if (pushed_scope)
20639 pop_scope (pushed_scope);
20640
20641 /* If we failed to resolve it, return the original typename. */
20642 if (!result)
20643 return type;
20644
20645 /* If lookup found a typename type, resolve that too. */
20646 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
20647 {
20648 /* Ill-formed programs can cause infinite recursion here, so we
20649 must catch that. */
20650 TYPENAME_IS_RESOLVING_P (type) = 1;
20651 result = resolve_typename_type (result, only_current_p);
20652 TYPENAME_IS_RESOLVING_P (type) = 0;
20653 }
20654
20655 /* Qualify the resulting type. */
20656 quals = cp_type_quals (type);
20657 if (quals)
20658 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
20659
20660 return result;
20661 }
20662
20663 /* EXPR is an expression which is not type-dependent. Return a proxy
20664 for EXPR that can be used to compute the types of larger
20665 expressions containing EXPR. */
20666
20667 tree
20668 build_non_dependent_expr (tree expr)
20669 {
20670 tree inner_expr;
20671
20672 #ifdef ENABLE_CHECKING
20673 /* Try to get a constant value for all non-dependent expressions in
20674 order to expose bugs in *_dependent_expression_p and constexpr. */
20675 if (cxx_dialect >= cxx0x)
20676 maybe_constant_value (fold_non_dependent_expr_sfinae (expr, tf_none));
20677 #endif
20678
20679 /* Preserve OVERLOADs; the functions must be available to resolve
20680 types. */
20681 inner_expr = expr;
20682 if (TREE_CODE (inner_expr) == STMT_EXPR)
20683 inner_expr = stmt_expr_value_expr (inner_expr);
20684 if (TREE_CODE (inner_expr) == ADDR_EXPR)
20685 inner_expr = TREE_OPERAND (inner_expr, 0);
20686 if (TREE_CODE (inner_expr) == COMPONENT_REF)
20687 inner_expr = TREE_OPERAND (inner_expr, 1);
20688 if (is_overloaded_fn (inner_expr)
20689 || TREE_CODE (inner_expr) == OFFSET_REF)
20690 return expr;
20691 /* There is no need to return a proxy for a variable. */
20692 if (VAR_P (expr))
20693 return expr;
20694 /* Preserve string constants; conversions from string constants to
20695 "char *" are allowed, even though normally a "const char *"
20696 cannot be used to initialize a "char *". */
20697 if (TREE_CODE (expr) == STRING_CST)
20698 return expr;
20699 /* Preserve arithmetic constants, as an optimization -- there is no
20700 reason to create a new node. */
20701 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
20702 return expr;
20703 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
20704 There is at least one place where we want to know that a
20705 particular expression is a throw-expression: when checking a ?:
20706 expression, there are special rules if the second or third
20707 argument is a throw-expression. */
20708 if (TREE_CODE (expr) == THROW_EXPR)
20709 return expr;
20710
20711 /* Don't wrap an initializer list, we need to be able to look inside. */
20712 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
20713 return expr;
20714
20715 /* Don't wrap a dummy object, we need to be able to test for it. */
20716 if (is_dummy_object (expr))
20717 return expr;
20718
20719 if (TREE_CODE (expr) == COND_EXPR)
20720 return build3 (COND_EXPR,
20721 TREE_TYPE (expr),
20722 TREE_OPERAND (expr, 0),
20723 (TREE_OPERAND (expr, 1)
20724 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
20725 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
20726 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
20727 if (TREE_CODE (expr) == COMPOUND_EXPR
20728 && !COMPOUND_EXPR_OVERLOADED (expr))
20729 return build2 (COMPOUND_EXPR,
20730 TREE_TYPE (expr),
20731 TREE_OPERAND (expr, 0),
20732 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
20733
20734 /* If the type is unknown, it can't really be non-dependent */
20735 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
20736
20737 /* Otherwise, build a NON_DEPENDENT_EXPR. */
20738 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
20739 }
20740
20741 /* ARGS is a vector of expressions as arguments to a function call.
20742 Replace the arguments with equivalent non-dependent expressions.
20743 This modifies ARGS in place. */
20744
20745 void
20746 make_args_non_dependent (vec<tree, va_gc> *args)
20747 {
20748 unsigned int ix;
20749 tree arg;
20750
20751 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
20752 {
20753 tree newarg = build_non_dependent_expr (arg);
20754 if (newarg != arg)
20755 (*args)[ix] = newarg;
20756 }
20757 }
20758
20759 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
20760 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
20761 parms. */
20762
20763 static tree
20764 make_auto_1 (tree name)
20765 {
20766 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
20767 TYPE_NAME (au) = build_decl (BUILTINS_LOCATION,
20768 TYPE_DECL, name, au);
20769 TYPE_STUB_DECL (au) = TYPE_NAME (au);
20770 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
20771 (0, processing_template_decl + 1, processing_template_decl + 1,
20772 TYPE_NAME (au), NULL_TREE);
20773 TYPE_CANONICAL (au) = canonical_type_parameter (au);
20774 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
20775 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
20776
20777 return au;
20778 }
20779
20780 tree
20781 make_decltype_auto (void)
20782 {
20783 return make_auto_1 (get_identifier ("decltype(auto)"));
20784 }
20785
20786 tree
20787 make_auto (void)
20788 {
20789 return make_auto_1 (get_identifier ("auto"));
20790 }
20791
20792 /* Given type ARG, return std::initializer_list<ARG>. */
20793
20794 static tree
20795 listify (tree arg)
20796 {
20797 tree std_init_list = namespace_binding
20798 (get_identifier ("initializer_list"), std_node);
20799 tree argvec;
20800 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
20801 {
20802 error ("deducing from brace-enclosed initializer list requires "
20803 "#include <initializer_list>");
20804 return error_mark_node;
20805 }
20806 argvec = make_tree_vec (1);
20807 TREE_VEC_ELT (argvec, 0) = arg;
20808 return lookup_template_class (std_init_list, argvec, NULL_TREE,
20809 NULL_TREE, 0, tf_warning_or_error);
20810 }
20811
20812 /* Replace auto in TYPE with std::initializer_list<auto>. */
20813
20814 static tree
20815 listify_autos (tree type, tree auto_node)
20816 {
20817 tree init_auto = listify (auto_node);
20818 tree argvec = make_tree_vec (1);
20819 TREE_VEC_ELT (argvec, 0) = init_auto;
20820 if (processing_template_decl)
20821 argvec = add_to_template_args (current_template_args (), argvec);
20822 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20823 }
20824
20825 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
20826 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
20827
20828 tree
20829 do_auto_deduction (tree type, tree init, tree auto_node)
20830 {
20831 tree targs;
20832
20833 if (init == error_mark_node)
20834 return error_mark_node;
20835
20836 if (type_dependent_expression_p (init))
20837 /* Defining a subset of type-dependent expressions that we can deduce
20838 from ahead of time isn't worth the trouble. */
20839 return type;
20840
20841 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
20842 with either a new invented type template parameter U or, if the
20843 initializer is a braced-init-list (8.5.4), with
20844 std::initializer_list<U>. */
20845 if (BRACE_ENCLOSED_INITIALIZER_P (init))
20846 type = listify_autos (type, auto_node);
20847
20848 init = resolve_nondeduced_context (init);
20849
20850 targs = make_tree_vec (1);
20851 if (AUTO_IS_DECLTYPE (auto_node))
20852 {
20853 bool id = (DECL_P (init) || TREE_CODE (init) == COMPONENT_REF);
20854 TREE_VEC_ELT (targs, 0)
20855 = finish_decltype_type (init, id, tf_warning_or_error);
20856 if (type != auto_node)
20857 {
20858 error ("%qT as type rather than plain %<decltype(auto)%>", type);
20859 return error_mark_node;
20860 }
20861 }
20862 else
20863 {
20864 tree parms = build_tree_list (NULL_TREE, type);
20865 tree tparms = make_tree_vec (1);
20866 int val;
20867
20868 TREE_VEC_ELT (tparms, 0)
20869 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
20870 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
20871 DEDUCE_CALL, LOOKUP_NORMAL,
20872 /*explain_p=*/false);
20873 if (val > 0)
20874 {
20875 if (processing_template_decl)
20876 /* Try again at instantiation time. */
20877 return type;
20878 if (type && type != error_mark_node)
20879 /* If type is error_mark_node a diagnostic must have been
20880 emitted by now. Also, having a mention to '<type error>'
20881 in the diagnostic is not really useful to the user. */
20882 {
20883 if (cfun && auto_node == current_function_auto_return_pattern
20884 && LAMBDA_FUNCTION_P (current_function_decl))
20885 error ("unable to deduce lambda return type from %qE", init);
20886 else
20887 error ("unable to deduce %qT from %qE", type, init);
20888 }
20889 return error_mark_node;
20890 }
20891 }
20892
20893 /* If the list of declarators contains more than one declarator, the type
20894 of each declared variable is determined as described above. If the
20895 type deduced for the template parameter U is not the same in each
20896 deduction, the program is ill-formed. */
20897 if (TREE_TYPE (auto_node)
20898 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
20899 {
20900 if (cfun && auto_node == current_function_auto_return_pattern
20901 && LAMBDA_FUNCTION_P (current_function_decl))
20902 error ("inconsistent types %qT and %qT deduced for "
20903 "lambda return type", TREE_TYPE (auto_node),
20904 TREE_VEC_ELT (targs, 0));
20905 else
20906 error ("inconsistent deduction for %qT: %qT and then %qT",
20907 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
20908 return error_mark_node;
20909 }
20910 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
20911
20912 if (processing_template_decl)
20913 targs = add_to_template_args (current_template_args (), targs);
20914 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
20915 }
20916
20917 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
20918 result. */
20919
20920 tree
20921 splice_late_return_type (tree type, tree late_return_type)
20922 {
20923 tree argvec;
20924
20925 if (late_return_type == NULL_TREE)
20926 return type;
20927 argvec = make_tree_vec (1);
20928 TREE_VEC_ELT (argvec, 0) = late_return_type;
20929 if (processing_template_parmlist)
20930 /* For a late-specified return type in a template type-parameter, we
20931 need to add a dummy argument level for its parmlist. */
20932 argvec = add_to_template_args
20933 (make_tree_vec (processing_template_parmlist), argvec);
20934 if (current_template_parms)
20935 argvec = add_to_template_args (current_template_args (), argvec);
20936 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20937 }
20938
20939 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
20940 'decltype(auto)'. */
20941
20942 bool
20943 is_auto (const_tree type)
20944 {
20945 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20946 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
20947 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
20948 return true;
20949 else
20950 return false;
20951 }
20952
20953 /* Returns true iff TYPE contains a use of 'auto'. Since auto can only
20954 appear as a type-specifier for the declaration in question, we don't
20955 have to look through the whole type. */
20956
20957 tree
20958 type_uses_auto (tree type)
20959 {
20960 enum tree_code code;
20961 if (is_auto (type))
20962 return type;
20963
20964 code = TREE_CODE (type);
20965
20966 if (code == POINTER_TYPE || code == REFERENCE_TYPE
20967 || code == OFFSET_TYPE || code == FUNCTION_TYPE
20968 || code == METHOD_TYPE || code == ARRAY_TYPE)
20969 return type_uses_auto (TREE_TYPE (type));
20970
20971 if (TYPE_PTRMEMFUNC_P (type))
20972 return type_uses_auto (TREE_TYPE (TREE_TYPE
20973 (TYPE_PTRMEMFUNC_FN_TYPE (type))));
20974
20975 return NULL_TREE;
20976 }
20977
20978 /* For a given template T, return the vector of typedefs referenced
20979 in T for which access check is needed at T instantiation time.
20980 T is either a FUNCTION_DECL or a RECORD_TYPE.
20981 Those typedefs were added to T by the function
20982 append_type_to_template_for_access_check. */
20983
20984 vec<qualified_typedef_usage_t, va_gc> *
20985 get_types_needing_access_check (tree t)
20986 {
20987 tree ti;
20988 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
20989
20990 if (!t || t == error_mark_node)
20991 return NULL;
20992
20993 if (!(ti = get_template_info (t)))
20994 return NULL;
20995
20996 if (CLASS_TYPE_P (t)
20997 || TREE_CODE (t) == FUNCTION_DECL)
20998 {
20999 if (!TI_TEMPLATE (ti))
21000 return NULL;
21001
21002 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
21003 }
21004
21005 return result;
21006 }
21007
21008 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
21009 tied to T. That list of typedefs will be access checked at
21010 T instantiation time.
21011 T is either a FUNCTION_DECL or a RECORD_TYPE.
21012 TYPE_DECL is a TYPE_DECL node representing a typedef.
21013 SCOPE is the scope through which TYPE_DECL is accessed.
21014 LOCATION is the location of the usage point of TYPE_DECL.
21015
21016 This function is a subroutine of
21017 append_type_to_template_for_access_check. */
21018
21019 static void
21020 append_type_to_template_for_access_check_1 (tree t,
21021 tree type_decl,
21022 tree scope,
21023 location_t location)
21024 {
21025 qualified_typedef_usage_t typedef_usage;
21026 tree ti;
21027
21028 if (!t || t == error_mark_node)
21029 return;
21030
21031 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
21032 || CLASS_TYPE_P (t))
21033 && type_decl
21034 && TREE_CODE (type_decl) == TYPE_DECL
21035 && scope);
21036
21037 if (!(ti = get_template_info (t)))
21038 return;
21039
21040 gcc_assert (TI_TEMPLATE (ti));
21041
21042 typedef_usage.typedef_decl = type_decl;
21043 typedef_usage.context = scope;
21044 typedef_usage.locus = location;
21045
21046 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
21047 }
21048
21049 /* Append TYPE_DECL to the template TEMPL.
21050 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
21051 At TEMPL instanciation time, TYPE_DECL will be checked to see
21052 if it can be accessed through SCOPE.
21053 LOCATION is the location of the usage point of TYPE_DECL.
21054
21055 e.g. consider the following code snippet:
21056
21057 class C
21058 {
21059 typedef int myint;
21060 };
21061
21062 template<class U> struct S
21063 {
21064 C::myint mi; // <-- usage point of the typedef C::myint
21065 };
21066
21067 S<char> s;
21068
21069 At S<char> instantiation time, we need to check the access of C::myint
21070 In other words, we need to check the access of the myint typedef through
21071 the C scope. For that purpose, this function will add the myint typedef
21072 and the scope C through which its being accessed to a list of typedefs
21073 tied to the template S. That list will be walked at template instantiation
21074 time and access check performed on each typedefs it contains.
21075 Note that this particular code snippet should yield an error because
21076 myint is private to C. */
21077
21078 void
21079 append_type_to_template_for_access_check (tree templ,
21080 tree type_decl,
21081 tree scope,
21082 location_t location)
21083 {
21084 qualified_typedef_usage_t *iter;
21085 unsigned i;
21086
21087 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
21088
21089 /* Make sure we don't append the type to the template twice. */
21090 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
21091 if (iter->typedef_decl == type_decl && scope == iter->context)
21092 return;
21093
21094 append_type_to_template_for_access_check_1 (templ, type_decl,
21095 scope, location);
21096 }
21097
21098 /* Set up the hash tables for template instantiations. */
21099
21100 void
21101 init_template_processing (void)
21102 {
21103 decl_specializations = htab_create_ggc (37,
21104 hash_specialization,
21105 eq_specializations,
21106 ggc_free);
21107 type_specializations = htab_create_ggc (37,
21108 hash_specialization,
21109 eq_specializations,
21110 ggc_free);
21111 }
21112
21113 /* Print stats about the template hash tables for -fstats. */
21114
21115 void
21116 print_template_statistics (void)
21117 {
21118 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
21119 "%f collisions\n", (long) htab_size (decl_specializations),
21120 (long) htab_elements (decl_specializations),
21121 htab_collisions (decl_specializations));
21122 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
21123 "%f collisions\n", (long) htab_size (type_specializations),
21124 (long) htab_elements (type_specializations),
21125 htab_collisions (type_specializations));
21126 }
21127
21128 #include "gt-cp-pt.h"