pt.c (value_dependent_expression_p): Tweak new cases to better match the wording...
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2016 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 "cp-tree.h"
31 #include "timevar.h"
32 #include "stringpool.h"
33 #include "varasm.h"
34 #include "attribs.h"
35 #include "stor-layout.h"
36 #include "intl.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "toplev.h"
40 #include "tree-iterator.h"
41 #include "type-utils.h"
42 #include "gimplify.h"
43
44 /* The type of functions taking a tree, and some additional data, and
45 returning an int. */
46 typedef int (*tree_fn_t) (tree, void*);
47
48 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
49 instantiations have been deferred, either because their definitions
50 were not yet available, or because we were putting off doing the work. */
51 struct GTY ((chain_next ("%h.next"))) pending_template {
52 struct pending_template *next;
53 struct tinst_level *tinst;
54 };
55
56 static GTY(()) struct pending_template *pending_templates;
57 static GTY(()) struct pending_template *last_pending_template;
58
59 int processing_template_parmlist;
60 static int template_header_count;
61
62 static GTY(()) tree saved_trees;
63 static vec<int> inline_parm_levels;
64
65 static GTY(()) struct tinst_level *current_tinst_level;
66
67 static GTY(()) tree saved_access_scope;
68
69 /* Live only within one (recursive) call to tsubst_expr. We use
70 this to pass the statement expression node from the STMT_EXPR
71 to the EXPR_STMT that is its result. */
72 static tree cur_stmt_expr;
73
74 // -------------------------------------------------------------------------- //
75 // Local Specialization Stack
76 //
77 // Implementation of the RAII helper for creating new local
78 // specializations.
79 local_specialization_stack::local_specialization_stack ()
80 : saved (local_specializations)
81 {
82 local_specializations = new hash_map<tree, tree>;
83 }
84
85 local_specialization_stack::~local_specialization_stack ()
86 {
87 delete local_specializations;
88 local_specializations = saved;
89 }
90
91 /* True if we've recursed into fn_type_unification too many times. */
92 static bool excessive_deduction_depth;
93
94 struct GTY((for_user)) spec_entry
95 {
96 tree tmpl;
97 tree args;
98 tree spec;
99 };
100
101 struct spec_hasher : ggc_ptr_hash<spec_entry>
102 {
103 static hashval_t hash (spec_entry *);
104 static bool equal (spec_entry *, spec_entry *);
105 };
106
107 static GTY (()) hash_table<spec_hasher> *decl_specializations;
108
109 static GTY (()) hash_table<spec_hasher> *type_specializations;
110
111 /* Contains canonical template parameter types. The vector is indexed by
112 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
113 TREE_LIST, whose TREE_VALUEs contain the canonical template
114 parameters of various types and levels. */
115 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
116
117 #define UNIFY_ALLOW_NONE 0
118 #define UNIFY_ALLOW_MORE_CV_QUAL 1
119 #define UNIFY_ALLOW_LESS_CV_QUAL 2
120 #define UNIFY_ALLOW_DERIVED 4
121 #define UNIFY_ALLOW_INTEGER 8
122 #define UNIFY_ALLOW_OUTER_LEVEL 16
123 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
124 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
125
126 enum template_base_result {
127 tbr_incomplete_type,
128 tbr_ambiguous_baseclass,
129 tbr_success
130 };
131
132 static void push_access_scope (tree);
133 static void pop_access_scope (tree);
134 static bool resolve_overloaded_unification (tree, tree, tree, tree,
135 unification_kind_t, int,
136 bool);
137 static int try_one_overload (tree, tree, tree, tree, tree,
138 unification_kind_t, int, bool, bool);
139 static int unify (tree, tree, tree, tree, int, bool);
140 static void add_pending_template (tree);
141 static tree reopen_tinst_level (struct tinst_level *);
142 static tree tsubst_initializer_list (tree, tree);
143 static tree get_partial_spec_bindings (tree, tree, tree, tree);
144 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
145 bool, bool);
146 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
147 bool, bool);
148 static void tsubst_enum (tree, tree, tree);
149 static tree add_to_template_args (tree, tree);
150 static tree add_outermost_template_args (tree, tree);
151 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
152 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
153 tree);
154 static int type_unification_real (tree, tree, tree, const tree *,
155 unsigned int, int, unification_kind_t, int,
156 vec<deferred_access_check, va_gc> **,
157 bool);
158 static void note_template_header (int);
159 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
160 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
161 static tree convert_template_argument (tree, tree, tree,
162 tsubst_flags_t, int, tree);
163 static tree for_each_template_parm (tree, tree_fn_t, void*,
164 hash_set<tree> *, bool);
165 static tree expand_template_argument_pack (tree);
166 static tree build_template_parm_index (int, int, int, tree, tree);
167 static bool inline_needs_template_parms (tree, bool);
168 static void push_inline_template_parms_recursive (tree, int);
169 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
170 static int mark_template_parm (tree, void *);
171 static int template_parm_this_level_p (tree, void *);
172 static tree tsubst_friend_function (tree, tree);
173 static tree tsubst_friend_class (tree, tree);
174 static int can_complete_type_without_circularity (tree);
175 static tree get_bindings (tree, tree, tree, bool);
176 static int template_decl_level (tree);
177 static int check_cv_quals_for_unify (int, tree, tree);
178 static void template_parm_level_and_index (tree, int*, int*);
179 static int unify_pack_expansion (tree, tree, tree,
180 tree, unification_kind_t, bool, bool);
181 static tree copy_template_args (tree);
182 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
183 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
184 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
185 static void regenerate_decl_from_template (tree, tree);
186 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
187 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
188 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
189 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
190 static bool check_specialization_scope (void);
191 static tree process_partial_specialization (tree);
192 static void set_current_access_from_decl (tree);
193 static enum template_base_result get_template_base (tree, tree, tree, tree,
194 bool , tree *);
195 static tree try_class_unification (tree, tree, tree, tree, bool);
196 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
197 tree, tree);
198 static bool template_template_parm_bindings_ok_p (tree, tree);
199 static int template_args_equal (tree, tree);
200 static void tsubst_default_arguments (tree, tsubst_flags_t);
201 static tree for_each_template_parm_r (tree *, int *, void *);
202 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
203 static void copy_default_args_to_explicit_spec (tree);
204 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
205 static bool dependent_template_arg_p (tree);
206 static bool any_template_arguments_need_structural_equality_p (tree);
207 static bool dependent_type_p_r (tree);
208 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
209 static tree tsubst_decl (tree, tree, tsubst_flags_t);
210 static void perform_typedefs_access_check (tree tmpl, tree targs);
211 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
212 location_t);
213 static tree listify (tree);
214 static tree listify_autos (tree, tree);
215 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
216 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
217 static bool complex_alias_template_p (const_tree tmpl);
218 static tree tsubst_attributes (tree, tree, tsubst_flags_t, tree);
219
220 /* Make the current scope suitable for access checking when we are
221 processing T. T can be FUNCTION_DECL for instantiated function
222 template, VAR_DECL for static member variable, or TYPE_DECL for
223 alias template (needed by instantiate_decl). */
224
225 static void
226 push_access_scope (tree t)
227 {
228 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
229 || TREE_CODE (t) == TYPE_DECL);
230
231 if (DECL_FRIEND_CONTEXT (t))
232 push_nested_class (DECL_FRIEND_CONTEXT (t));
233 else if (DECL_CLASS_SCOPE_P (t))
234 push_nested_class (DECL_CONTEXT (t));
235 else
236 push_to_top_level ();
237
238 if (TREE_CODE (t) == FUNCTION_DECL)
239 {
240 saved_access_scope = tree_cons
241 (NULL_TREE, current_function_decl, saved_access_scope);
242 current_function_decl = t;
243 }
244 }
245
246 /* Restore the scope set up by push_access_scope. T is the node we
247 are processing. */
248
249 static void
250 pop_access_scope (tree t)
251 {
252 if (TREE_CODE (t) == FUNCTION_DECL)
253 {
254 current_function_decl = TREE_VALUE (saved_access_scope);
255 saved_access_scope = TREE_CHAIN (saved_access_scope);
256 }
257
258 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
259 pop_nested_class ();
260 else
261 pop_from_top_level ();
262 }
263
264 /* Do any processing required when DECL (a member template
265 declaration) is finished. Returns the TEMPLATE_DECL corresponding
266 to DECL, unless it is a specialization, in which case the DECL
267 itself is returned. */
268
269 tree
270 finish_member_template_decl (tree decl)
271 {
272 if (decl == error_mark_node)
273 return error_mark_node;
274
275 gcc_assert (DECL_P (decl));
276
277 if (TREE_CODE (decl) == TYPE_DECL)
278 {
279 tree type;
280
281 type = TREE_TYPE (decl);
282 if (type == error_mark_node)
283 return error_mark_node;
284 if (MAYBE_CLASS_TYPE_P (type)
285 && CLASSTYPE_TEMPLATE_INFO (type)
286 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
287 {
288 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
289 check_member_template (tmpl);
290 return tmpl;
291 }
292 return NULL_TREE;
293 }
294 else if (TREE_CODE (decl) == FIELD_DECL)
295 error ("data member %qD cannot be a member template", decl);
296 else if (DECL_TEMPLATE_INFO (decl))
297 {
298 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
299 {
300 check_member_template (DECL_TI_TEMPLATE (decl));
301 return DECL_TI_TEMPLATE (decl);
302 }
303 else
304 return decl;
305 }
306 else
307 error ("invalid member template declaration %qD", decl);
308
309 return error_mark_node;
310 }
311
312 /* Create a template info node. */
313
314 tree
315 build_template_info (tree template_decl, tree template_args)
316 {
317 tree result = make_node (TEMPLATE_INFO);
318 TI_TEMPLATE (result) = template_decl;
319 TI_ARGS (result) = template_args;
320 return result;
321 }
322
323 /* Return the template info node corresponding to T, whatever T is. */
324
325 tree
326 get_template_info (const_tree t)
327 {
328 tree tinfo = NULL_TREE;
329
330 if (!t || t == error_mark_node)
331 return NULL;
332
333 if (TREE_CODE (t) == NAMESPACE_DECL
334 || TREE_CODE (t) == PARM_DECL)
335 return NULL;
336
337 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
338 tinfo = DECL_TEMPLATE_INFO (t);
339
340 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
341 t = TREE_TYPE (t);
342
343 if (OVERLOAD_TYPE_P (t))
344 tinfo = TYPE_TEMPLATE_INFO (t);
345 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
346 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
347
348 return tinfo;
349 }
350
351 /* Returns the template nesting level of the indicated class TYPE.
352
353 For example, in:
354 template <class T>
355 struct A
356 {
357 template <class U>
358 struct B {};
359 };
360
361 A<T>::B<U> has depth two, while A<T> has depth one.
362 Both A<T>::B<int> and A<int>::B<U> have depth one, if
363 they are instantiations, not specializations.
364
365 This function is guaranteed to return 0 if passed NULL_TREE so
366 that, for example, `template_class_depth (current_class_type)' is
367 always safe. */
368
369 int
370 template_class_depth (tree type)
371 {
372 int depth;
373
374 for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
375 {
376 tree tinfo = get_template_info (type);
377
378 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
379 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
380 ++depth;
381
382 if (DECL_P (type))
383 type = CP_DECL_CONTEXT (type);
384 else if (LAMBDA_TYPE_P (type))
385 type = LAMBDA_TYPE_EXTRA_SCOPE (type);
386 else
387 type = CP_TYPE_CONTEXT (type);
388 }
389
390 return depth;
391 }
392
393 /* Subroutine of maybe_begin_member_template_processing.
394 Returns true if processing DECL needs us to push template parms. */
395
396 static bool
397 inline_needs_template_parms (tree decl, bool nsdmi)
398 {
399 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
400 return false;
401
402 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
403 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
404 }
405
406 /* Subroutine of maybe_begin_member_template_processing.
407 Push the template parms in PARMS, starting from LEVELS steps into the
408 chain, and ending at the beginning, since template parms are listed
409 innermost first. */
410
411 static void
412 push_inline_template_parms_recursive (tree parmlist, int levels)
413 {
414 tree parms = TREE_VALUE (parmlist);
415 int i;
416
417 if (levels > 1)
418 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
419
420 ++processing_template_decl;
421 current_template_parms
422 = tree_cons (size_int (processing_template_decl),
423 parms, current_template_parms);
424 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
425
426 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
427 NULL);
428 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
429 {
430 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
431
432 if (error_operand_p (parm))
433 continue;
434
435 gcc_assert (DECL_P (parm));
436
437 switch (TREE_CODE (parm))
438 {
439 case TYPE_DECL:
440 case TEMPLATE_DECL:
441 pushdecl (parm);
442 break;
443
444 case PARM_DECL:
445 /* Push the CONST_DECL. */
446 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
447 break;
448
449 default:
450 gcc_unreachable ();
451 }
452 }
453 }
454
455 /* Restore the template parameter context for a member template, a
456 friend template defined in a class definition, or a non-template
457 member of template class. */
458
459 void
460 maybe_begin_member_template_processing (tree decl)
461 {
462 tree parms;
463 int levels = 0;
464 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
465
466 if (nsdmi)
467 {
468 tree ctx = DECL_CONTEXT (decl);
469 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
470 /* Disregard full specializations (c++/60999). */
471 && uses_template_parms (ctx)
472 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
473 }
474
475 if (inline_needs_template_parms (decl, nsdmi))
476 {
477 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
478 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
479
480 if (DECL_TEMPLATE_SPECIALIZATION (decl))
481 {
482 --levels;
483 parms = TREE_CHAIN (parms);
484 }
485
486 push_inline_template_parms_recursive (parms, levels);
487 }
488
489 /* Remember how many levels of template parameters we pushed so that
490 we can pop them later. */
491 inline_parm_levels.safe_push (levels);
492 }
493
494 /* Undo the effects of maybe_begin_member_template_processing. */
495
496 void
497 maybe_end_member_template_processing (void)
498 {
499 int i;
500 int last;
501
502 if (inline_parm_levels.length () == 0)
503 return;
504
505 last = inline_parm_levels.pop ();
506 for (i = 0; i < last; ++i)
507 {
508 --processing_template_decl;
509 current_template_parms = TREE_CHAIN (current_template_parms);
510 poplevel (0, 0, 0);
511 }
512 }
513
514 /* Return a new template argument vector which contains all of ARGS,
515 but has as its innermost set of arguments the EXTRA_ARGS. */
516
517 static tree
518 add_to_template_args (tree args, tree extra_args)
519 {
520 tree new_args;
521 int extra_depth;
522 int i;
523 int j;
524
525 if (args == NULL_TREE || extra_args == error_mark_node)
526 return extra_args;
527
528 extra_depth = TMPL_ARGS_DEPTH (extra_args);
529 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
530
531 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
532 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
533
534 for (j = 1; j <= extra_depth; ++j, ++i)
535 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
536
537 return new_args;
538 }
539
540 /* Like add_to_template_args, but only the outermost ARGS are added to
541 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
542 (EXTRA_ARGS) levels are added. This function is used to combine
543 the template arguments from a partial instantiation with the
544 template arguments used to attain the full instantiation from the
545 partial instantiation. */
546
547 static tree
548 add_outermost_template_args (tree args, tree extra_args)
549 {
550 tree new_args;
551
552 /* If there are more levels of EXTRA_ARGS than there are ARGS,
553 something very fishy is going on. */
554 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
555
556 /* If *all* the new arguments will be the EXTRA_ARGS, just return
557 them. */
558 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
559 return extra_args;
560
561 /* For the moment, we make ARGS look like it contains fewer levels. */
562 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
563
564 new_args = add_to_template_args (args, extra_args);
565
566 /* Now, we restore ARGS to its full dimensions. */
567 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
568
569 return new_args;
570 }
571
572 /* Return the N levels of innermost template arguments from the ARGS. */
573
574 tree
575 get_innermost_template_args (tree args, int n)
576 {
577 tree new_args;
578 int extra_levels;
579 int i;
580
581 gcc_assert (n >= 0);
582
583 /* If N is 1, just return the innermost set of template arguments. */
584 if (n == 1)
585 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
586
587 /* If we're not removing anything, just return the arguments we were
588 given. */
589 extra_levels = TMPL_ARGS_DEPTH (args) - n;
590 gcc_assert (extra_levels >= 0);
591 if (extra_levels == 0)
592 return args;
593
594 /* Make a new set of arguments, not containing the outer arguments. */
595 new_args = make_tree_vec (n);
596 for (i = 1; i <= n; ++i)
597 SET_TMPL_ARGS_LEVEL (new_args, i,
598 TMPL_ARGS_LEVEL (args, i + extra_levels));
599
600 return new_args;
601 }
602
603 /* The inverse of get_innermost_template_args: Return all but the innermost
604 EXTRA_LEVELS levels of template arguments from the ARGS. */
605
606 static tree
607 strip_innermost_template_args (tree args, int extra_levels)
608 {
609 tree new_args;
610 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
611 int i;
612
613 gcc_assert (n >= 0);
614
615 /* If N is 1, just return the outermost set of template arguments. */
616 if (n == 1)
617 return TMPL_ARGS_LEVEL (args, 1);
618
619 /* If we're not removing anything, just return the arguments we were
620 given. */
621 gcc_assert (extra_levels >= 0);
622 if (extra_levels == 0)
623 return args;
624
625 /* Make a new set of arguments, not containing the inner arguments. */
626 new_args = make_tree_vec (n);
627 for (i = 1; i <= n; ++i)
628 SET_TMPL_ARGS_LEVEL (new_args, i,
629 TMPL_ARGS_LEVEL (args, i));
630
631 return new_args;
632 }
633
634 /* We've got a template header coming up; push to a new level for storing
635 the parms. */
636
637 void
638 begin_template_parm_list (void)
639 {
640 /* We use a non-tag-transparent scope here, which causes pushtag to
641 put tags in this scope, rather than in the enclosing class or
642 namespace scope. This is the right thing, since we want
643 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
644 global template class, push_template_decl handles putting the
645 TEMPLATE_DECL into top-level scope. For a nested template class,
646 e.g.:
647
648 template <class T> struct S1 {
649 template <class T> struct S2 {};
650 };
651
652 pushtag contains special code to call pushdecl_with_scope on the
653 TEMPLATE_DECL for S2. */
654 begin_scope (sk_template_parms, NULL);
655 ++processing_template_decl;
656 ++processing_template_parmlist;
657 note_template_header (0);
658
659 /* Add a dummy parameter level while we process the parameter list. */
660 current_template_parms
661 = tree_cons (size_int (processing_template_decl),
662 make_tree_vec (0),
663 current_template_parms);
664 }
665
666 /* This routine is called when a specialization is declared. If it is
667 invalid to declare a specialization here, an error is reported and
668 false is returned, otherwise this routine will return true. */
669
670 static bool
671 check_specialization_scope (void)
672 {
673 tree scope = current_scope ();
674
675 /* [temp.expl.spec]
676
677 An explicit specialization shall be declared in the namespace of
678 which the template is a member, or, for member templates, in the
679 namespace of which the enclosing class or enclosing class
680 template is a member. An explicit specialization of a member
681 function, member class or static data member of a class template
682 shall be declared in the namespace of which the class template
683 is a member. */
684 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
685 {
686 error ("explicit specialization in non-namespace scope %qD", scope);
687 return false;
688 }
689
690 /* [temp.expl.spec]
691
692 In an explicit specialization declaration for a member of a class
693 template or a member template that appears in namespace scope,
694 the member template and some of its enclosing class templates may
695 remain unspecialized, except that the declaration shall not
696 explicitly specialize a class member template if its enclosing
697 class templates are not explicitly specialized as well. */
698 if (current_template_parms)
699 {
700 error ("enclosing class templates are not explicitly specialized");
701 return false;
702 }
703
704 return true;
705 }
706
707 /* We've just seen template <>. */
708
709 bool
710 begin_specialization (void)
711 {
712 begin_scope (sk_template_spec, NULL);
713 note_template_header (1);
714 return check_specialization_scope ();
715 }
716
717 /* Called at then end of processing a declaration preceded by
718 template<>. */
719
720 void
721 end_specialization (void)
722 {
723 finish_scope ();
724 reset_specialization ();
725 }
726
727 /* Any template <>'s that we have seen thus far are not referring to a
728 function specialization. */
729
730 void
731 reset_specialization (void)
732 {
733 processing_specialization = 0;
734 template_header_count = 0;
735 }
736
737 /* We've just seen a template header. If SPECIALIZATION is nonzero,
738 it was of the form template <>. */
739
740 static void
741 note_template_header (int specialization)
742 {
743 processing_specialization = specialization;
744 template_header_count++;
745 }
746
747 /* We're beginning an explicit instantiation. */
748
749 void
750 begin_explicit_instantiation (void)
751 {
752 gcc_assert (!processing_explicit_instantiation);
753 processing_explicit_instantiation = true;
754 }
755
756
757 void
758 end_explicit_instantiation (void)
759 {
760 gcc_assert (processing_explicit_instantiation);
761 processing_explicit_instantiation = false;
762 }
763
764 /* An explicit specialization or partial specialization of TMPL is being
765 declared. Check that the namespace in which the specialization is
766 occurring is permissible. Returns false iff it is invalid to
767 specialize TMPL in the current namespace. */
768
769 static bool
770 check_specialization_namespace (tree tmpl)
771 {
772 tree tpl_ns = decl_namespace_context (tmpl);
773
774 /* [tmpl.expl.spec]
775
776 An explicit specialization shall be declared in the namespace of
777 which the template is a member, or, for member templates, in the
778 namespace of which the enclosing class or enclosing class
779 template is a member. An explicit specialization of a member
780 function, member class or static data member of a class template
781 shall be declared in the namespace of which the class template is
782 a member. */
783 if (current_scope() != DECL_CONTEXT (tmpl)
784 && !at_namespace_scope_p ())
785 {
786 error ("specialization of %qD must appear at namespace scope", tmpl);
787 return false;
788 }
789 if (is_associated_namespace (current_namespace, tpl_ns))
790 /* Same or super-using namespace. */
791 return true;
792 else
793 {
794 permerror (input_location,
795 "specialization of %qD in different namespace", tmpl);
796 permerror (DECL_SOURCE_LOCATION (tmpl),
797 " from definition of %q#D", tmpl);
798 return false;
799 }
800 }
801
802 /* SPEC is an explicit instantiation. Check that it is valid to
803 perform this explicit instantiation in the current namespace. */
804
805 static void
806 check_explicit_instantiation_namespace (tree spec)
807 {
808 tree ns;
809
810 /* DR 275: An explicit instantiation shall appear in an enclosing
811 namespace of its template. */
812 ns = decl_namespace_context (spec);
813 if (!is_ancestor (current_namespace, ns))
814 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
815 "(which does not enclose namespace %qD)",
816 spec, current_namespace, ns);
817 }
818
819 // Returns the type of a template specialization only if that
820 // specialization needs to be defined. Otherwise (e.g., if the type has
821 // already been defined), the function returns NULL_TREE.
822 static tree
823 maybe_new_partial_specialization (tree type)
824 {
825 // An implicit instantiation of an incomplete type implies
826 // the definition of a new class template.
827 //
828 // template<typename T>
829 // struct S;
830 //
831 // template<typename T>
832 // struct S<T*>;
833 //
834 // Here, S<T*> is an implicit instantiation of S whose type
835 // is incomplete.
836 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
837 return type;
838
839 // It can also be the case that TYPE is a completed specialization.
840 // Continuing the previous example, suppose we also declare:
841 //
842 // template<typename T>
843 // requires Integral<T>
844 // struct S<T*>;
845 //
846 // Here, S<T*> refers to the specialization S<T*> defined
847 // above. However, we need to differentiate definitions because
848 // we intend to define a new partial specialization. In this case,
849 // we rely on the fact that the constraints are different for
850 // this declaration than that above.
851 //
852 // Note that we also get here for injected class names and
853 // late-parsed template definitions. We must ensure that we
854 // do not create new type declarations for those cases.
855 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
856 {
857 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
858 tree args = CLASSTYPE_TI_ARGS (type);
859
860 // If there are no template parameters, this cannot be a new
861 // partial template specializtion?
862 if (!current_template_parms)
863 return NULL_TREE;
864
865 // The injected-class-name is not a new partial specialization.
866 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
867 return NULL_TREE;
868
869 // If the constraints are not the same as those of the primary
870 // then, we can probably create a new specialization.
871 tree type_constr = current_template_constraints ();
872
873 if (type == TREE_TYPE (tmpl))
874 {
875 tree main_constr = get_constraints (tmpl);
876 if (equivalent_constraints (type_constr, main_constr))
877 return NULL_TREE;
878 }
879
880 // Also, if there's a pre-existing specialization with matching
881 // constraints, then this also isn't new.
882 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
883 while (specs)
884 {
885 tree spec_tmpl = TREE_VALUE (specs);
886 tree spec_args = TREE_PURPOSE (specs);
887 tree spec_constr = get_constraints (spec_tmpl);
888 if (comp_template_args (args, spec_args)
889 && equivalent_constraints (type_constr, spec_constr))
890 return NULL_TREE;
891 specs = TREE_CHAIN (specs);
892 }
893
894 // Create a new type node (and corresponding type decl)
895 // for the newly declared specialization.
896 tree t = make_class_type (TREE_CODE (type));
897 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
898 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
899 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
900
901 /* We only need a separate type node for storing the definition of this
902 partial specialization; uses of S<T*> are unconstrained, so all are
903 equivalent. So keep TYPE_CANONICAL the same. */
904 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
905
906 // Build the corresponding type decl.
907 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
908 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
909 DECL_SOURCE_LOCATION (d) = input_location;
910
911 return t;
912 }
913
914 return NULL_TREE;
915 }
916
917 /* The TYPE is being declared. If it is a template type, that means it
918 is a partial specialization. Do appropriate error-checking. */
919
920 tree
921 maybe_process_partial_specialization (tree type)
922 {
923 tree context;
924
925 if (type == error_mark_node)
926 return error_mark_node;
927
928 /* A lambda that appears in specialization context is not itself a
929 specialization. */
930 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
931 return type;
932
933 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
934 {
935 error ("name of class shadows template template parameter %qD",
936 TYPE_NAME (type));
937 return error_mark_node;
938 }
939
940 context = TYPE_CONTEXT (type);
941
942 if (TYPE_ALIAS_P (type))
943 {
944 if (TYPE_TEMPLATE_INFO (type)
945 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
946 error ("specialization of alias template %qD",
947 TYPE_TI_TEMPLATE (type));
948 else
949 error ("explicit specialization of non-template %qT", type);
950 return error_mark_node;
951 }
952 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
953 {
954 /* This is for ordinary explicit specialization and partial
955 specialization of a template class such as:
956
957 template <> class C<int>;
958
959 or:
960
961 template <class T> class C<T*>;
962
963 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
964
965 if (tree t = maybe_new_partial_specialization (type))
966 {
967 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
968 && !at_namespace_scope_p ())
969 return error_mark_node;
970 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
971 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
972 if (processing_template_decl)
973 {
974 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
975 if (decl == error_mark_node)
976 return error_mark_node;
977 return TREE_TYPE (decl);
978 }
979 }
980 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
981 error ("specialization of %qT after instantiation", type);
982 else if (errorcount && !processing_specialization
983 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
984 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
985 /* Trying to define a specialization either without a template<> header
986 or in an inappropriate place. We've already given an error, so just
987 bail now so we don't actually define the specialization. */
988 return error_mark_node;
989 }
990 else if (CLASS_TYPE_P (type)
991 && !CLASSTYPE_USE_TEMPLATE (type)
992 && CLASSTYPE_TEMPLATE_INFO (type)
993 && context && CLASS_TYPE_P (context)
994 && CLASSTYPE_TEMPLATE_INFO (context))
995 {
996 /* This is for an explicit specialization of member class
997 template according to [temp.expl.spec/18]:
998
999 template <> template <class U> class C<int>::D;
1000
1001 The context `C<int>' must be an implicit instantiation.
1002 Otherwise this is just a member class template declared
1003 earlier like:
1004
1005 template <> class C<int> { template <class U> class D; };
1006 template <> template <class U> class C<int>::D;
1007
1008 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1009 while in the second case, `C<int>::D' is a primary template
1010 and `C<T>::D' may not exist. */
1011
1012 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1013 && !COMPLETE_TYPE_P (type))
1014 {
1015 tree t;
1016 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1017
1018 if (current_namespace
1019 != decl_namespace_context (tmpl))
1020 {
1021 permerror (input_location,
1022 "specializing %q#T in different namespace", type);
1023 permerror (DECL_SOURCE_LOCATION (tmpl),
1024 " from definition of %q#D", tmpl);
1025 }
1026
1027 /* Check for invalid specialization after instantiation:
1028
1029 template <> template <> class C<int>::D<int>;
1030 template <> template <class U> class C<int>::D; */
1031
1032 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1033 t; t = TREE_CHAIN (t))
1034 {
1035 tree inst = TREE_VALUE (t);
1036 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1037 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1038 {
1039 /* We already have a full specialization of this partial
1040 instantiation, or a full specialization has been
1041 looked up but not instantiated. Reassign it to the
1042 new member specialization template. */
1043 spec_entry elt;
1044 spec_entry *entry;
1045
1046 elt.tmpl = most_general_template (tmpl);
1047 elt.args = CLASSTYPE_TI_ARGS (inst);
1048 elt.spec = inst;
1049
1050 type_specializations->remove_elt (&elt);
1051
1052 elt.tmpl = tmpl;
1053 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1054
1055 spec_entry **slot
1056 = type_specializations->find_slot (&elt, INSERT);
1057 entry = ggc_alloc<spec_entry> ();
1058 *entry = elt;
1059 *slot = entry;
1060 }
1061 else
1062 /* But if we've had an implicit instantiation, that's a
1063 problem ([temp.expl.spec]/6). */
1064 error ("specialization %qT after instantiation %qT",
1065 type, inst);
1066 }
1067
1068 /* Mark TYPE as a specialization. And as a result, we only
1069 have one level of template argument for the innermost
1070 class template. */
1071 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1072 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1073 CLASSTYPE_TI_ARGS (type)
1074 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1075 }
1076 }
1077 else if (processing_specialization)
1078 {
1079 /* Someday C++0x may allow for enum template specialization. */
1080 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1081 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1082 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1083 "of %qD not allowed by ISO C++", type);
1084 else
1085 {
1086 error ("explicit specialization of non-template %qT", type);
1087 return error_mark_node;
1088 }
1089 }
1090
1091 return type;
1092 }
1093
1094 /* Returns nonzero if we can optimize the retrieval of specializations
1095 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1096 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1097
1098 static inline bool
1099 optimize_specialization_lookup_p (tree tmpl)
1100 {
1101 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1102 && DECL_CLASS_SCOPE_P (tmpl)
1103 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1104 parameter. */
1105 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1106 /* The optimized lookup depends on the fact that the
1107 template arguments for the member function template apply
1108 purely to the containing class, which is not true if the
1109 containing class is an explicit or partial
1110 specialization. */
1111 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1112 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1113 && !DECL_CONV_FN_P (tmpl)
1114 /* It is possible to have a template that is not a member
1115 template and is not a member of a template class:
1116
1117 template <typename T>
1118 struct S { friend A::f(); };
1119
1120 Here, the friend function is a template, but the context does
1121 not have template information. The optimized lookup relies
1122 on having ARGS be the template arguments for both the class
1123 and the function template. */
1124 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1125 }
1126
1127 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1128 gone through coerce_template_parms by now. */
1129
1130 static void
1131 verify_unstripped_args (tree args)
1132 {
1133 ++processing_template_decl;
1134 if (!any_dependent_template_arguments_p (args))
1135 {
1136 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1137 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1138 {
1139 tree arg = TREE_VEC_ELT (inner, i);
1140 if (TREE_CODE (arg) == TEMPLATE_DECL)
1141 /* OK */;
1142 else if (TYPE_P (arg))
1143 gcc_assert (strip_typedefs (arg, NULL) == arg);
1144 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1145 /* Allow typedefs on the type of a non-type argument, since a
1146 parameter can have them. */;
1147 else
1148 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1149 }
1150 }
1151 --processing_template_decl;
1152 }
1153
1154 /* Retrieve the specialization (in the sense of [temp.spec] - a
1155 specialization is either an instantiation or an explicit
1156 specialization) of TMPL for the given template ARGS. If there is
1157 no such specialization, return NULL_TREE. The ARGS are a vector of
1158 arguments, or a vector of vectors of arguments, in the case of
1159 templates with more than one level of parameters.
1160
1161 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1162 then we search for a partial specialization matching ARGS. This
1163 parameter is ignored if TMPL is not a class template.
1164
1165 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1166 result is a NONTYPE_ARGUMENT_PACK. */
1167
1168 static tree
1169 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1170 {
1171 if (tmpl == NULL_TREE)
1172 return NULL_TREE;
1173
1174 if (args == error_mark_node)
1175 return NULL_TREE;
1176
1177 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1178 || TREE_CODE (tmpl) == FIELD_DECL);
1179
1180 /* There should be as many levels of arguments as there are
1181 levels of parameters. */
1182 gcc_assert (TMPL_ARGS_DEPTH (args)
1183 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1184 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1185 : template_class_depth (DECL_CONTEXT (tmpl))));
1186
1187 if (flag_checking)
1188 verify_unstripped_args (args);
1189
1190 if (optimize_specialization_lookup_p (tmpl))
1191 {
1192 tree class_template;
1193 tree class_specialization;
1194 vec<tree, va_gc> *methods;
1195 tree fns;
1196 int idx;
1197
1198 /* The template arguments actually apply to the containing
1199 class. Find the class specialization with those
1200 arguments. */
1201 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1202 class_specialization
1203 = retrieve_specialization (class_template, args, 0);
1204 if (!class_specialization)
1205 return NULL_TREE;
1206 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1207 for the specialization. */
1208 idx = class_method_index_for_fn (class_specialization, tmpl);
1209 if (idx == -1)
1210 return NULL_TREE;
1211 /* Iterate through the methods with the indicated name, looking
1212 for the one that has an instance of TMPL. */
1213 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1214 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1215 {
1216 tree fn = OVL_CURRENT (fns);
1217 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1218 /* using-declarations can add base methods to the method vec,
1219 and we don't want those here. */
1220 && DECL_CONTEXT (fn) == class_specialization)
1221 return fn;
1222 }
1223 return NULL_TREE;
1224 }
1225 else
1226 {
1227 spec_entry *found;
1228 spec_entry elt;
1229 hash_table<spec_hasher> *specializations;
1230
1231 elt.tmpl = tmpl;
1232 elt.args = args;
1233 elt.spec = NULL_TREE;
1234
1235 if (DECL_CLASS_TEMPLATE_P (tmpl))
1236 specializations = type_specializations;
1237 else
1238 specializations = decl_specializations;
1239
1240 if (hash == 0)
1241 hash = spec_hasher::hash (&elt);
1242 found = specializations->find_with_hash (&elt, hash);
1243 if (found)
1244 return found->spec;
1245 }
1246
1247 return NULL_TREE;
1248 }
1249
1250 /* Like retrieve_specialization, but for local declarations. */
1251
1252 tree
1253 retrieve_local_specialization (tree tmpl)
1254 {
1255 if (local_specializations == NULL)
1256 return NULL_TREE;
1257
1258 tree *slot = local_specializations->get (tmpl);
1259 return slot ? *slot : NULL_TREE;
1260 }
1261
1262 /* Returns nonzero iff DECL is a specialization of TMPL. */
1263
1264 int
1265 is_specialization_of (tree decl, tree tmpl)
1266 {
1267 tree t;
1268
1269 if (TREE_CODE (decl) == FUNCTION_DECL)
1270 {
1271 for (t = decl;
1272 t != NULL_TREE;
1273 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1274 if (t == tmpl)
1275 return 1;
1276 }
1277 else
1278 {
1279 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1280
1281 for (t = TREE_TYPE (decl);
1282 t != NULL_TREE;
1283 t = CLASSTYPE_USE_TEMPLATE (t)
1284 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1285 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1286 return 1;
1287 }
1288
1289 return 0;
1290 }
1291
1292 /* Returns nonzero iff DECL is a specialization of friend declaration
1293 FRIEND_DECL according to [temp.friend]. */
1294
1295 bool
1296 is_specialization_of_friend (tree decl, tree friend_decl)
1297 {
1298 bool need_template = true;
1299 int template_depth;
1300
1301 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1302 || TREE_CODE (decl) == TYPE_DECL);
1303
1304 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1305 of a template class, we want to check if DECL is a specialization
1306 if this. */
1307 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1308 && DECL_TEMPLATE_INFO (friend_decl)
1309 && !DECL_USE_TEMPLATE (friend_decl))
1310 {
1311 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1312 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1313 need_template = false;
1314 }
1315 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1316 && !PRIMARY_TEMPLATE_P (friend_decl))
1317 need_template = false;
1318
1319 /* There is nothing to do if this is not a template friend. */
1320 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1321 return false;
1322
1323 if (is_specialization_of (decl, friend_decl))
1324 return true;
1325
1326 /* [temp.friend/6]
1327 A member of a class template may be declared to be a friend of a
1328 non-template class. In this case, the corresponding member of
1329 every specialization of the class template is a friend of the
1330 class granting friendship.
1331
1332 For example, given a template friend declaration
1333
1334 template <class T> friend void A<T>::f();
1335
1336 the member function below is considered a friend
1337
1338 template <> struct A<int> {
1339 void f();
1340 };
1341
1342 For this type of template friend, TEMPLATE_DEPTH below will be
1343 nonzero. To determine if DECL is a friend of FRIEND, we first
1344 check if the enclosing class is a specialization of another. */
1345
1346 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1347 if (template_depth
1348 && DECL_CLASS_SCOPE_P (decl)
1349 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1350 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1351 {
1352 /* Next, we check the members themselves. In order to handle
1353 a few tricky cases, such as when FRIEND_DECL's are
1354
1355 template <class T> friend void A<T>::g(T t);
1356 template <class T> template <T t> friend void A<T>::h();
1357
1358 and DECL's are
1359
1360 void A<int>::g(int);
1361 template <int> void A<int>::h();
1362
1363 we need to figure out ARGS, the template arguments from
1364 the context of DECL. This is required for template substitution
1365 of `T' in the function parameter of `g' and template parameter
1366 of `h' in the above examples. Here ARGS corresponds to `int'. */
1367
1368 tree context = DECL_CONTEXT (decl);
1369 tree args = NULL_TREE;
1370 int current_depth = 0;
1371
1372 while (current_depth < template_depth)
1373 {
1374 if (CLASSTYPE_TEMPLATE_INFO (context))
1375 {
1376 if (current_depth == 0)
1377 args = TYPE_TI_ARGS (context);
1378 else
1379 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1380 current_depth++;
1381 }
1382 context = TYPE_CONTEXT (context);
1383 }
1384
1385 if (TREE_CODE (decl) == FUNCTION_DECL)
1386 {
1387 bool is_template;
1388 tree friend_type;
1389 tree decl_type;
1390 tree friend_args_type;
1391 tree decl_args_type;
1392
1393 /* Make sure that both DECL and FRIEND_DECL are templates or
1394 non-templates. */
1395 is_template = DECL_TEMPLATE_INFO (decl)
1396 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1397 if (need_template ^ is_template)
1398 return false;
1399 else if (is_template)
1400 {
1401 /* If both are templates, check template parameter list. */
1402 tree friend_parms
1403 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1404 args, tf_none);
1405 if (!comp_template_parms
1406 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1407 friend_parms))
1408 return false;
1409
1410 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1411 }
1412 else
1413 decl_type = TREE_TYPE (decl);
1414
1415 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1416 tf_none, NULL_TREE);
1417 if (friend_type == error_mark_node)
1418 return false;
1419
1420 /* Check if return types match. */
1421 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1422 return false;
1423
1424 /* Check if function parameter types match, ignoring the
1425 `this' parameter. */
1426 friend_args_type = TYPE_ARG_TYPES (friend_type);
1427 decl_args_type = TYPE_ARG_TYPES (decl_type);
1428 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1429 friend_args_type = TREE_CHAIN (friend_args_type);
1430 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1431 decl_args_type = TREE_CHAIN (decl_args_type);
1432
1433 return compparms (decl_args_type, friend_args_type);
1434 }
1435 else
1436 {
1437 /* DECL is a TYPE_DECL */
1438 bool is_template;
1439 tree decl_type = TREE_TYPE (decl);
1440
1441 /* Make sure that both DECL and FRIEND_DECL are templates or
1442 non-templates. */
1443 is_template
1444 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1445 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1446
1447 if (need_template ^ is_template)
1448 return false;
1449 else if (is_template)
1450 {
1451 tree friend_parms;
1452 /* If both are templates, check the name of the two
1453 TEMPLATE_DECL's first because is_friend didn't. */
1454 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1455 != DECL_NAME (friend_decl))
1456 return false;
1457
1458 /* Now check template parameter list. */
1459 friend_parms
1460 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1461 args, tf_none);
1462 return comp_template_parms
1463 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1464 friend_parms);
1465 }
1466 else
1467 return (DECL_NAME (decl)
1468 == DECL_NAME (friend_decl));
1469 }
1470 }
1471 return false;
1472 }
1473
1474 /* Register the specialization SPEC as a specialization of TMPL with
1475 the indicated ARGS. IS_FRIEND indicates whether the specialization
1476 is actually just a friend declaration. Returns SPEC, or an
1477 equivalent prior declaration, if available.
1478
1479 We also store instantiations of field packs in the hash table, even
1480 though they are not themselves templates, to make lookup easier. */
1481
1482 static tree
1483 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1484 hashval_t hash)
1485 {
1486 tree fn;
1487 spec_entry **slot = NULL;
1488 spec_entry elt;
1489
1490 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1491 || (TREE_CODE (tmpl) == FIELD_DECL
1492 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1493
1494 if (TREE_CODE (spec) == FUNCTION_DECL
1495 && uses_template_parms (DECL_TI_ARGS (spec)))
1496 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1497 register it; we want the corresponding TEMPLATE_DECL instead.
1498 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1499 the more obvious `uses_template_parms (spec)' to avoid problems
1500 with default function arguments. In particular, given
1501 something like this:
1502
1503 template <class T> void f(T t1, T t = T())
1504
1505 the default argument expression is not substituted for in an
1506 instantiation unless and until it is actually needed. */
1507 return spec;
1508
1509 if (optimize_specialization_lookup_p (tmpl))
1510 /* We don't put these specializations in the hash table, but we might
1511 want to give an error about a mismatch. */
1512 fn = retrieve_specialization (tmpl, args, 0);
1513 else
1514 {
1515 elt.tmpl = tmpl;
1516 elt.args = args;
1517 elt.spec = spec;
1518
1519 if (hash == 0)
1520 hash = spec_hasher::hash (&elt);
1521
1522 slot =
1523 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1524 if (*slot)
1525 fn = ((spec_entry *) *slot)->spec;
1526 else
1527 fn = NULL_TREE;
1528 }
1529
1530 /* We can sometimes try to re-register a specialization that we've
1531 already got. In particular, regenerate_decl_from_template calls
1532 duplicate_decls which will update the specialization list. But,
1533 we'll still get called again here anyhow. It's more convenient
1534 to simply allow this than to try to prevent it. */
1535 if (fn == spec)
1536 return spec;
1537 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1538 {
1539 if (DECL_TEMPLATE_INSTANTIATION (fn))
1540 {
1541 if (DECL_ODR_USED (fn)
1542 || DECL_EXPLICIT_INSTANTIATION (fn))
1543 {
1544 error ("specialization of %qD after instantiation",
1545 fn);
1546 return error_mark_node;
1547 }
1548 else
1549 {
1550 tree clone;
1551 /* This situation should occur only if the first
1552 specialization is an implicit instantiation, the
1553 second is an explicit specialization, and the
1554 implicit instantiation has not yet been used. That
1555 situation can occur if we have implicitly
1556 instantiated a member function and then specialized
1557 it later.
1558
1559 We can also wind up here if a friend declaration that
1560 looked like an instantiation turns out to be a
1561 specialization:
1562
1563 template <class T> void foo(T);
1564 class S { friend void foo<>(int) };
1565 template <> void foo(int);
1566
1567 We transform the existing DECL in place so that any
1568 pointers to it become pointers to the updated
1569 declaration.
1570
1571 If there was a definition for the template, but not
1572 for the specialization, we want this to look as if
1573 there were no definition, and vice versa. */
1574 DECL_INITIAL (fn) = NULL_TREE;
1575 duplicate_decls (spec, fn, is_friend);
1576 /* The call to duplicate_decls will have applied
1577 [temp.expl.spec]:
1578
1579 An explicit specialization of a function template
1580 is inline only if it is explicitly declared to be,
1581 and independently of whether its function template
1582 is.
1583
1584 to the primary function; now copy the inline bits to
1585 the various clones. */
1586 FOR_EACH_CLONE (clone, fn)
1587 {
1588 DECL_DECLARED_INLINE_P (clone)
1589 = DECL_DECLARED_INLINE_P (fn);
1590 DECL_SOURCE_LOCATION (clone)
1591 = DECL_SOURCE_LOCATION (fn);
1592 DECL_DELETED_FN (clone)
1593 = DECL_DELETED_FN (fn);
1594 }
1595 check_specialization_namespace (tmpl);
1596
1597 return fn;
1598 }
1599 }
1600 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1601 {
1602 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1603 /* Dup decl failed, but this is a new definition. Set the
1604 line number so any errors match this new
1605 definition. */
1606 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1607
1608 return fn;
1609 }
1610 }
1611 else if (fn)
1612 return duplicate_decls (spec, fn, is_friend);
1613
1614 /* A specialization must be declared in the same namespace as the
1615 template it is specializing. */
1616 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1617 && !check_specialization_namespace (tmpl))
1618 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1619
1620 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1621 {
1622 spec_entry *entry = ggc_alloc<spec_entry> ();
1623 gcc_assert (tmpl && args && spec);
1624 *entry = elt;
1625 *slot = entry;
1626 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1627 && PRIMARY_TEMPLATE_P (tmpl)
1628 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1629 || variable_template_p (tmpl))
1630 /* If TMPL is a forward declaration of a template function, keep a list
1631 of all specializations in case we need to reassign them to a friend
1632 template later in tsubst_friend_function.
1633
1634 Also keep a list of all variable template instantiations so that
1635 process_partial_specialization can check whether a later partial
1636 specialization would have used it. */
1637 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1638 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1639 }
1640
1641 return spec;
1642 }
1643
1644 /* Returns true iff two spec_entry nodes are equivalent. */
1645
1646 int comparing_specializations;
1647
1648 bool
1649 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1650 {
1651 int equal;
1652
1653 ++comparing_specializations;
1654 equal = (e1->tmpl == e2->tmpl
1655 && comp_template_args (e1->args, e2->args));
1656 if (equal && flag_concepts
1657 /* tmpl could be a FIELD_DECL for a capture pack. */
1658 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1659 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1660 && uses_template_parms (e1->args))
1661 {
1662 /* Partial specializations of a variable template can be distinguished by
1663 constraints. */
1664 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1665 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1666 equal = equivalent_constraints (c1, c2);
1667 }
1668 --comparing_specializations;
1669
1670 return equal;
1671 }
1672
1673 /* Returns a hash for a template TMPL and template arguments ARGS. */
1674
1675 static hashval_t
1676 hash_tmpl_and_args (tree tmpl, tree args)
1677 {
1678 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1679 return iterative_hash_template_arg (args, val);
1680 }
1681
1682 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1683 ignoring SPEC. */
1684
1685 hashval_t
1686 spec_hasher::hash (spec_entry *e)
1687 {
1688 return hash_tmpl_and_args (e->tmpl, e->args);
1689 }
1690
1691 /* Recursively calculate a hash value for a template argument ARG, for use
1692 in the hash tables of template specializations. */
1693
1694 hashval_t
1695 iterative_hash_template_arg (tree arg, hashval_t val)
1696 {
1697 unsigned HOST_WIDE_INT i;
1698 enum tree_code code;
1699 char tclass;
1700
1701 if (arg == NULL_TREE)
1702 return iterative_hash_object (arg, val);
1703
1704 if (!TYPE_P (arg))
1705 STRIP_NOPS (arg);
1706
1707 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1708 /* We can get one of these when re-hashing a previous entry in the middle
1709 of substituting into a pack expansion. Just look through it. */
1710 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1711
1712 code = TREE_CODE (arg);
1713 tclass = TREE_CODE_CLASS (code);
1714
1715 val = iterative_hash_object (code, val);
1716
1717 switch (code)
1718 {
1719 case ERROR_MARK:
1720 return val;
1721
1722 case IDENTIFIER_NODE:
1723 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1724
1725 case TREE_VEC:
1726 {
1727 int i, len = TREE_VEC_LENGTH (arg);
1728 for (i = 0; i < len; ++i)
1729 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1730 return val;
1731 }
1732
1733 case TYPE_PACK_EXPANSION:
1734 case EXPR_PACK_EXPANSION:
1735 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1736 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1737
1738 case TYPE_ARGUMENT_PACK:
1739 case NONTYPE_ARGUMENT_PACK:
1740 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1741
1742 case TREE_LIST:
1743 for (; arg; arg = TREE_CHAIN (arg))
1744 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1745 return val;
1746
1747 case OVERLOAD:
1748 for (; arg; arg = OVL_NEXT (arg))
1749 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1750 return val;
1751
1752 case CONSTRUCTOR:
1753 {
1754 tree field, value;
1755 iterative_hash_template_arg (TREE_TYPE (arg), val);
1756 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1757 {
1758 val = iterative_hash_template_arg (field, val);
1759 val = iterative_hash_template_arg (value, val);
1760 }
1761 return val;
1762 }
1763
1764 case PARM_DECL:
1765 if (!DECL_ARTIFICIAL (arg))
1766 {
1767 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1768 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1769 }
1770 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1771
1772 case TARGET_EXPR:
1773 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1774
1775 case PTRMEM_CST:
1776 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1777 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1778
1779 case TEMPLATE_PARM_INDEX:
1780 val = iterative_hash_template_arg
1781 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1782 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1783 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1784
1785 case TRAIT_EXPR:
1786 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1787 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1788 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1789
1790 case BASELINK:
1791 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1792 val);
1793 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1794 val);
1795
1796 case MODOP_EXPR:
1797 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1798 code = TREE_CODE (TREE_OPERAND (arg, 1));
1799 val = iterative_hash_object (code, val);
1800 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1801
1802 case LAMBDA_EXPR:
1803 /* A lambda can't appear in a template arg, but don't crash on
1804 erroneous input. */
1805 gcc_assert (seen_error ());
1806 return val;
1807
1808 case CAST_EXPR:
1809 case IMPLICIT_CONV_EXPR:
1810 case STATIC_CAST_EXPR:
1811 case REINTERPRET_CAST_EXPR:
1812 case CONST_CAST_EXPR:
1813 case DYNAMIC_CAST_EXPR:
1814 case NEW_EXPR:
1815 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1816 /* Now hash operands as usual. */
1817 break;
1818
1819 default:
1820 break;
1821 }
1822
1823 switch (tclass)
1824 {
1825 case tcc_type:
1826 if (alias_template_specialization_p (arg))
1827 {
1828 // We want an alias specialization that survived strip_typedefs
1829 // to hash differently from its TYPE_CANONICAL, to avoid hash
1830 // collisions that compare as different in template_args_equal.
1831 // These could be dependent specializations that strip_typedefs
1832 // left alone, or untouched specializations because
1833 // coerce_template_parms returns the unconverted template
1834 // arguments if it sees incomplete argument packs.
1835 tree ti = TYPE_TEMPLATE_INFO (arg);
1836 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1837 }
1838 if (TYPE_CANONICAL (arg))
1839 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1840 val);
1841 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1842 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1843 /* Otherwise just compare the types during lookup. */
1844 return val;
1845
1846 case tcc_declaration:
1847 case tcc_constant:
1848 return iterative_hash_expr (arg, val);
1849
1850 default:
1851 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1852 {
1853 unsigned n = cp_tree_operand_length (arg);
1854 for (i = 0; i < n; ++i)
1855 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1856 return val;
1857 }
1858 }
1859 gcc_unreachable ();
1860 return 0;
1861 }
1862
1863 /* Unregister the specialization SPEC as a specialization of TMPL.
1864 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1865 if the SPEC was listed as a specialization of TMPL.
1866
1867 Note that SPEC has been ggc_freed, so we can't look inside it. */
1868
1869 bool
1870 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1871 {
1872 spec_entry *entry;
1873 spec_entry elt;
1874
1875 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1876 elt.args = TI_ARGS (tinfo);
1877 elt.spec = NULL_TREE;
1878
1879 entry = decl_specializations->find (&elt);
1880 if (entry != NULL)
1881 {
1882 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1883 gcc_assert (new_spec != NULL_TREE);
1884 entry->spec = new_spec;
1885 return 1;
1886 }
1887
1888 return 0;
1889 }
1890
1891 /* Like register_specialization, but for local declarations. We are
1892 registering SPEC, an instantiation of TMPL. */
1893
1894 void
1895 register_local_specialization (tree spec, tree tmpl)
1896 {
1897 local_specializations->put (tmpl, spec);
1898 }
1899
1900 /* TYPE is a class type. Returns true if TYPE is an explicitly
1901 specialized class. */
1902
1903 bool
1904 explicit_class_specialization_p (tree type)
1905 {
1906 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1907 return false;
1908 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1909 }
1910
1911 /* Print the list of functions at FNS, going through all the overloads
1912 for each element of the list. Alternatively, FNS can not be a
1913 TREE_LIST, in which case it will be printed together with all the
1914 overloads.
1915
1916 MORE and *STR should respectively be FALSE and NULL when the function
1917 is called from the outside. They are used internally on recursive
1918 calls. print_candidates manages the two parameters and leaves NULL
1919 in *STR when it ends. */
1920
1921 static void
1922 print_candidates_1 (tree fns, bool more, const char **str)
1923 {
1924 tree fn, fn2;
1925 char *spaces = NULL;
1926
1927 for (fn = fns; fn; fn = OVL_NEXT (fn))
1928 if (TREE_CODE (fn) == TREE_LIST)
1929 {
1930 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1931 print_candidates_1 (TREE_VALUE (fn2),
1932 TREE_CHAIN (fn2) || more, str);
1933 }
1934 else
1935 {
1936 tree cand = OVL_CURRENT (fn);
1937 if (!*str)
1938 {
1939 /* Pick the prefix string. */
1940 if (!more && !OVL_NEXT (fns))
1941 {
1942 inform (DECL_SOURCE_LOCATION (cand),
1943 "candidate is: %#D", cand);
1944 continue;
1945 }
1946
1947 *str = _("candidates are:");
1948 spaces = get_spaces (*str);
1949 }
1950 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1951 *str = spaces ? spaces : *str;
1952 }
1953
1954 if (!more)
1955 {
1956 free (spaces);
1957 *str = NULL;
1958 }
1959 }
1960
1961 /* Print the list of candidate FNS in an error message. FNS can also
1962 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1963
1964 void
1965 print_candidates (tree fns)
1966 {
1967 const char *str = NULL;
1968 print_candidates_1 (fns, false, &str);
1969 gcc_assert (str == NULL);
1970 }
1971
1972 /* Get a (possibly) constrained template declaration for the
1973 purpose of ordering candidates. */
1974 static tree
1975 get_template_for_ordering (tree list)
1976 {
1977 gcc_assert (TREE_CODE (list) == TREE_LIST);
1978 tree f = TREE_VALUE (list);
1979 if (tree ti = DECL_TEMPLATE_INFO (f))
1980 return TI_TEMPLATE (ti);
1981 return f;
1982 }
1983
1984 /* Among candidates having the same signature, return the
1985 most constrained or NULL_TREE if there is no best candidate.
1986 If the signatures of candidates vary (e.g., template
1987 specialization vs. member function), then there can be no
1988 most constrained.
1989
1990 Note that we don't compare constraints on the functions
1991 themselves, but rather those of their templates. */
1992 static tree
1993 most_constrained_function (tree candidates)
1994 {
1995 // Try to find the best candidate in a first pass.
1996 tree champ = candidates;
1997 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1998 {
1999 int winner = more_constrained (get_template_for_ordering (champ),
2000 get_template_for_ordering (c));
2001 if (winner == -1)
2002 champ = c; // The candidate is more constrained
2003 else if (winner == 0)
2004 return NULL_TREE; // Neither is more constrained
2005 }
2006
2007 // Verify that the champ is better than previous candidates.
2008 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2009 if (!more_constrained (get_template_for_ordering (champ),
2010 get_template_for_ordering (c)))
2011 return NULL_TREE;
2012 }
2013
2014 return champ;
2015 }
2016
2017
2018 /* Returns the template (one of the functions given by TEMPLATE_ID)
2019 which can be specialized to match the indicated DECL with the
2020 explicit template args given in TEMPLATE_ID. The DECL may be
2021 NULL_TREE if none is available. In that case, the functions in
2022 TEMPLATE_ID are non-members.
2023
2024 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2025 specialization of a member template.
2026
2027 The TEMPLATE_COUNT is the number of references to qualifying
2028 template classes that appeared in the name of the function. See
2029 check_explicit_specialization for a more accurate description.
2030
2031 TSK indicates what kind of template declaration (if any) is being
2032 declared. TSK_TEMPLATE indicates that the declaration given by
2033 DECL, though a FUNCTION_DECL, has template parameters, and is
2034 therefore a template function.
2035
2036 The template args (those explicitly specified and those deduced)
2037 are output in a newly created vector *TARGS_OUT.
2038
2039 If it is impossible to determine the result, an error message is
2040 issued. The error_mark_node is returned to indicate failure. */
2041
2042 static tree
2043 determine_specialization (tree template_id,
2044 tree decl,
2045 tree* targs_out,
2046 int need_member_template,
2047 int template_count,
2048 tmpl_spec_kind tsk)
2049 {
2050 tree fns;
2051 tree targs;
2052 tree explicit_targs;
2053 tree candidates = NULL_TREE;
2054
2055 /* A TREE_LIST of templates of which DECL may be a specialization.
2056 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2057 corresponding TREE_PURPOSE is the set of template arguments that,
2058 when used to instantiate the template, would produce a function
2059 with the signature of DECL. */
2060 tree templates = NULL_TREE;
2061 int header_count;
2062 cp_binding_level *b;
2063
2064 *targs_out = NULL_TREE;
2065
2066 if (template_id == error_mark_node || decl == error_mark_node)
2067 return error_mark_node;
2068
2069 /* We shouldn't be specializing a member template of an
2070 unspecialized class template; we already gave an error in
2071 check_specialization_scope, now avoid crashing. */
2072 if (template_count && DECL_CLASS_SCOPE_P (decl)
2073 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2074 {
2075 gcc_assert (errorcount);
2076 return error_mark_node;
2077 }
2078
2079 fns = TREE_OPERAND (template_id, 0);
2080 explicit_targs = TREE_OPERAND (template_id, 1);
2081
2082 if (fns == error_mark_node)
2083 return error_mark_node;
2084
2085 /* Check for baselinks. */
2086 if (BASELINK_P (fns))
2087 fns = BASELINK_FUNCTIONS (fns);
2088
2089 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2090 {
2091 error ("%qD is not a function template", fns);
2092 return error_mark_node;
2093 }
2094 else if (VAR_P (decl) && !variable_template_p (fns))
2095 {
2096 error ("%qD is not a variable template", fns);
2097 return error_mark_node;
2098 }
2099
2100 /* Count the number of template headers specified for this
2101 specialization. */
2102 header_count = 0;
2103 for (b = current_binding_level;
2104 b->kind == sk_template_parms;
2105 b = b->level_chain)
2106 ++header_count;
2107
2108 tree orig_fns = fns;
2109
2110 if (variable_template_p (fns))
2111 {
2112 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2113 targs = coerce_template_parms (parms, explicit_targs, fns,
2114 tf_warning_or_error,
2115 /*req_all*/true, /*use_defarg*/true);
2116 if (targs != error_mark_node)
2117 templates = tree_cons (targs, fns, templates);
2118 }
2119 else for (; fns; fns = OVL_NEXT (fns))
2120 {
2121 tree fn = OVL_CURRENT (fns);
2122
2123 if (TREE_CODE (fn) == TEMPLATE_DECL)
2124 {
2125 tree decl_arg_types;
2126 tree fn_arg_types;
2127 tree insttype;
2128
2129 /* In case of explicit specialization, we need to check if
2130 the number of template headers appearing in the specialization
2131 is correct. This is usually done in check_explicit_specialization,
2132 but the check done there cannot be exhaustive when specializing
2133 member functions. Consider the following code:
2134
2135 template <> void A<int>::f(int);
2136 template <> template <> void A<int>::f(int);
2137
2138 Assuming that A<int> is not itself an explicit specialization
2139 already, the first line specializes "f" which is a non-template
2140 member function, whilst the second line specializes "f" which
2141 is a template member function. So both lines are syntactically
2142 correct, and check_explicit_specialization does not reject
2143 them.
2144
2145 Here, we can do better, as we are matching the specialization
2146 against the declarations. We count the number of template
2147 headers, and we check if they match TEMPLATE_COUNT + 1
2148 (TEMPLATE_COUNT is the number of qualifying template classes,
2149 plus there must be another header for the member template
2150 itself).
2151
2152 Notice that if header_count is zero, this is not a
2153 specialization but rather a template instantiation, so there
2154 is no check we can perform here. */
2155 if (header_count && header_count != template_count + 1)
2156 continue;
2157
2158 /* Check that the number of template arguments at the
2159 innermost level for DECL is the same as for FN. */
2160 if (current_binding_level->kind == sk_template_parms
2161 && !current_binding_level->explicit_spec_p
2162 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2163 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2164 (current_template_parms))))
2165 continue;
2166
2167 /* DECL might be a specialization of FN. */
2168 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2169 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2170
2171 /* For a non-static member function, we need to make sure
2172 that the const qualification is the same. Since
2173 get_bindings does not try to merge the "this" parameter,
2174 we must do the comparison explicitly. */
2175 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2176 && !same_type_p (TREE_VALUE (fn_arg_types),
2177 TREE_VALUE (decl_arg_types)))
2178 continue;
2179
2180 /* Skip the "this" parameter and, for constructors of
2181 classes with virtual bases, the VTT parameter. A
2182 full specialization of a constructor will have a VTT
2183 parameter, but a template never will. */
2184 decl_arg_types
2185 = skip_artificial_parms_for (decl, decl_arg_types);
2186 fn_arg_types
2187 = skip_artificial_parms_for (fn, fn_arg_types);
2188
2189 /* Function templates cannot be specializations; there are
2190 no partial specializations of functions. Therefore, if
2191 the type of DECL does not match FN, there is no
2192 match.
2193
2194 Note that it should never be the case that we have both
2195 candidates added here, and for regular member functions
2196 below. */
2197 if (tsk == tsk_template)
2198 {
2199 if (compparms (fn_arg_types, decl_arg_types))
2200 candidates = tree_cons (NULL_TREE, fn, candidates);
2201 continue;
2202 }
2203
2204 /* See whether this function might be a specialization of this
2205 template. Suppress access control because we might be trying
2206 to make this specialization a friend, and we have already done
2207 access control for the declaration of the specialization. */
2208 push_deferring_access_checks (dk_no_check);
2209 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2210 pop_deferring_access_checks ();
2211
2212 if (!targs)
2213 /* We cannot deduce template arguments that when used to
2214 specialize TMPL will produce DECL. */
2215 continue;
2216
2217 /* Remove, from the set of candidates, all those functions
2218 whose constraints are not satisfied. */
2219 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2220 continue;
2221
2222 // Then, try to form the new function type.
2223 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2224 if (insttype == error_mark_node)
2225 continue;
2226 fn_arg_types
2227 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2228 if (!compparms (fn_arg_types, decl_arg_types))
2229 continue;
2230
2231 /* Save this template, and the arguments deduced. */
2232 templates = tree_cons (targs, fn, templates);
2233 }
2234 else if (need_member_template)
2235 /* FN is an ordinary member function, and we need a
2236 specialization of a member template. */
2237 ;
2238 else if (TREE_CODE (fn) != FUNCTION_DECL)
2239 /* We can get IDENTIFIER_NODEs here in certain erroneous
2240 cases. */
2241 ;
2242 else if (!DECL_FUNCTION_MEMBER_P (fn))
2243 /* This is just an ordinary non-member function. Nothing can
2244 be a specialization of that. */
2245 ;
2246 else if (DECL_ARTIFICIAL (fn))
2247 /* Cannot specialize functions that are created implicitly. */
2248 ;
2249 else
2250 {
2251 tree decl_arg_types;
2252
2253 /* This is an ordinary member function. However, since
2254 we're here, we can assume its enclosing class is a
2255 template class. For example,
2256
2257 template <typename T> struct S { void f(); };
2258 template <> void S<int>::f() {}
2259
2260 Here, S<int>::f is a non-template, but S<int> is a
2261 template class. If FN has the same type as DECL, we
2262 might be in business. */
2263
2264 if (!DECL_TEMPLATE_INFO (fn))
2265 /* Its enclosing class is an explicit specialization
2266 of a template class. This is not a candidate. */
2267 continue;
2268
2269 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2270 TREE_TYPE (TREE_TYPE (fn))))
2271 /* The return types differ. */
2272 continue;
2273
2274 /* Adjust the type of DECL in case FN is a static member. */
2275 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2276 if (DECL_STATIC_FUNCTION_P (fn)
2277 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2278 decl_arg_types = TREE_CHAIN (decl_arg_types);
2279
2280 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2281 decl_arg_types))
2282 continue;
2283
2284 // If the deduced arguments do not satisfy the constraints,
2285 // this is not a candidate.
2286 if (flag_concepts && !constraints_satisfied_p (fn))
2287 continue;
2288
2289 // Add the candidate.
2290 candidates = tree_cons (NULL_TREE, fn, candidates);
2291 }
2292 }
2293
2294 if (templates && TREE_CHAIN (templates))
2295 {
2296 /* We have:
2297
2298 [temp.expl.spec]
2299
2300 It is possible for a specialization with a given function
2301 signature to be instantiated from more than one function
2302 template. In such cases, explicit specification of the
2303 template arguments must be used to uniquely identify the
2304 function template specialization being specialized.
2305
2306 Note that here, there's no suggestion that we're supposed to
2307 determine which of the candidate templates is most
2308 specialized. However, we, also have:
2309
2310 [temp.func.order]
2311
2312 Partial ordering of overloaded function template
2313 declarations is used in the following contexts to select
2314 the function template to which a function template
2315 specialization refers:
2316
2317 -- when an explicit specialization refers to a function
2318 template.
2319
2320 So, we do use the partial ordering rules, at least for now.
2321 This extension can only serve to make invalid programs valid,
2322 so it's safe. And, there is strong anecdotal evidence that
2323 the committee intended the partial ordering rules to apply;
2324 the EDG front end has that behavior, and John Spicer claims
2325 that the committee simply forgot to delete the wording in
2326 [temp.expl.spec]. */
2327 tree tmpl = most_specialized_instantiation (templates);
2328 if (tmpl != error_mark_node)
2329 {
2330 templates = tmpl;
2331 TREE_CHAIN (templates) = NULL_TREE;
2332 }
2333 }
2334
2335 // Concepts allows multiple declarations of member functions
2336 // with the same signature. Like above, we need to rely on
2337 // on the partial ordering of those candidates to determine which
2338 // is the best.
2339 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2340 {
2341 if (tree cand = most_constrained_function (candidates))
2342 {
2343 candidates = cand;
2344 TREE_CHAIN (cand) = NULL_TREE;
2345 }
2346 }
2347
2348 if (templates == NULL_TREE && candidates == NULL_TREE)
2349 {
2350 error ("template-id %qD for %q+D does not match any template "
2351 "declaration", template_id, decl);
2352 if (header_count && header_count != template_count + 1)
2353 inform (input_location, "saw %d %<template<>%>, need %d for "
2354 "specializing a member function template",
2355 header_count, template_count + 1);
2356 else
2357 print_candidates (orig_fns);
2358 return error_mark_node;
2359 }
2360 else if ((templates && TREE_CHAIN (templates))
2361 || (candidates && TREE_CHAIN (candidates))
2362 || (templates && candidates))
2363 {
2364 error ("ambiguous template specialization %qD for %q+D",
2365 template_id, decl);
2366 candidates = chainon (candidates, templates);
2367 print_candidates (candidates);
2368 return error_mark_node;
2369 }
2370
2371 /* We have one, and exactly one, match. */
2372 if (candidates)
2373 {
2374 tree fn = TREE_VALUE (candidates);
2375 *targs_out = copy_node (DECL_TI_ARGS (fn));
2376
2377 // Propagate the candidate's constraints to the declaration.
2378 set_constraints (decl, get_constraints (fn));
2379
2380 /* DECL is a re-declaration or partial instantiation of a template
2381 function. */
2382 if (TREE_CODE (fn) == TEMPLATE_DECL)
2383 return fn;
2384 /* It was a specialization of an ordinary member function in a
2385 template class. */
2386 return DECL_TI_TEMPLATE (fn);
2387 }
2388
2389 /* It was a specialization of a template. */
2390 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2391 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2392 {
2393 *targs_out = copy_node (targs);
2394 SET_TMPL_ARGS_LEVEL (*targs_out,
2395 TMPL_ARGS_DEPTH (*targs_out),
2396 TREE_PURPOSE (templates));
2397 }
2398 else
2399 *targs_out = TREE_PURPOSE (templates);
2400 return TREE_VALUE (templates);
2401 }
2402
2403 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2404 but with the default argument values filled in from those in the
2405 TMPL_TYPES. */
2406
2407 static tree
2408 copy_default_args_to_explicit_spec_1 (tree spec_types,
2409 tree tmpl_types)
2410 {
2411 tree new_spec_types;
2412
2413 if (!spec_types)
2414 return NULL_TREE;
2415
2416 if (spec_types == void_list_node)
2417 return void_list_node;
2418
2419 /* Substitute into the rest of the list. */
2420 new_spec_types =
2421 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2422 TREE_CHAIN (tmpl_types));
2423
2424 /* Add the default argument for this parameter. */
2425 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2426 TREE_VALUE (spec_types),
2427 new_spec_types);
2428 }
2429
2430 /* DECL is an explicit specialization. Replicate default arguments
2431 from the template it specializes. (That way, code like:
2432
2433 template <class T> void f(T = 3);
2434 template <> void f(double);
2435 void g () { f (); }
2436
2437 works, as required.) An alternative approach would be to look up
2438 the correct default arguments at the call-site, but this approach
2439 is consistent with how implicit instantiations are handled. */
2440
2441 static void
2442 copy_default_args_to_explicit_spec (tree decl)
2443 {
2444 tree tmpl;
2445 tree spec_types;
2446 tree tmpl_types;
2447 tree new_spec_types;
2448 tree old_type;
2449 tree new_type;
2450 tree t;
2451 tree object_type = NULL_TREE;
2452 tree in_charge = NULL_TREE;
2453 tree vtt = NULL_TREE;
2454
2455 /* See if there's anything we need to do. */
2456 tmpl = DECL_TI_TEMPLATE (decl);
2457 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2458 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2459 if (TREE_PURPOSE (t))
2460 break;
2461 if (!t)
2462 return;
2463
2464 old_type = TREE_TYPE (decl);
2465 spec_types = TYPE_ARG_TYPES (old_type);
2466
2467 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2468 {
2469 /* Remove the this pointer, but remember the object's type for
2470 CV quals. */
2471 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2472 spec_types = TREE_CHAIN (spec_types);
2473 tmpl_types = TREE_CHAIN (tmpl_types);
2474
2475 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2476 {
2477 /* DECL may contain more parameters than TMPL due to the extra
2478 in-charge parameter in constructors and destructors. */
2479 in_charge = spec_types;
2480 spec_types = TREE_CHAIN (spec_types);
2481 }
2482 if (DECL_HAS_VTT_PARM_P (decl))
2483 {
2484 vtt = spec_types;
2485 spec_types = TREE_CHAIN (spec_types);
2486 }
2487 }
2488
2489 /* Compute the merged default arguments. */
2490 new_spec_types =
2491 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2492
2493 /* Compute the new FUNCTION_TYPE. */
2494 if (object_type)
2495 {
2496 if (vtt)
2497 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2498 TREE_VALUE (vtt),
2499 new_spec_types);
2500
2501 if (in_charge)
2502 /* Put the in-charge parameter back. */
2503 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2504 TREE_VALUE (in_charge),
2505 new_spec_types);
2506
2507 new_type = build_method_type_directly (object_type,
2508 TREE_TYPE (old_type),
2509 new_spec_types);
2510 }
2511 else
2512 new_type = build_function_type (TREE_TYPE (old_type),
2513 new_spec_types);
2514 new_type = cp_build_type_attribute_variant (new_type,
2515 TYPE_ATTRIBUTES (old_type));
2516 new_type = build_exception_variant (new_type,
2517 TYPE_RAISES_EXCEPTIONS (old_type));
2518
2519 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2520 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2521
2522 TREE_TYPE (decl) = new_type;
2523 }
2524
2525 /* Return the number of template headers we expect to see for a definition
2526 or specialization of CTYPE or one of its non-template members. */
2527
2528 int
2529 num_template_headers_for_class (tree ctype)
2530 {
2531 int num_templates = 0;
2532
2533 while (ctype && CLASS_TYPE_P (ctype))
2534 {
2535 /* You're supposed to have one `template <...>' for every
2536 template class, but you don't need one for a full
2537 specialization. For example:
2538
2539 template <class T> struct S{};
2540 template <> struct S<int> { void f(); };
2541 void S<int>::f () {}
2542
2543 is correct; there shouldn't be a `template <>' for the
2544 definition of `S<int>::f'. */
2545 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2546 /* If CTYPE does not have template information of any
2547 kind, then it is not a template, nor is it nested
2548 within a template. */
2549 break;
2550 if (explicit_class_specialization_p (ctype))
2551 break;
2552 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2553 ++num_templates;
2554
2555 ctype = TYPE_CONTEXT (ctype);
2556 }
2557
2558 return num_templates;
2559 }
2560
2561 /* Do a simple sanity check on the template headers that precede the
2562 variable declaration DECL. */
2563
2564 void
2565 check_template_variable (tree decl)
2566 {
2567 tree ctx = CP_DECL_CONTEXT (decl);
2568 int wanted = num_template_headers_for_class (ctx);
2569 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2570 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2571 {
2572 if (cxx_dialect < cxx14)
2573 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2574 "variable templates only available with "
2575 "-std=c++14 or -std=gnu++14");
2576
2577 // Namespace-scope variable templates should have a template header.
2578 ++wanted;
2579 }
2580 if (template_header_count > wanted)
2581 {
2582 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2583 "too many template headers for %D (should be %d)",
2584 decl, wanted);
2585 if (warned && CLASS_TYPE_P (ctx)
2586 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2587 inform (DECL_SOURCE_LOCATION (decl),
2588 "members of an explicitly specialized class are defined "
2589 "without a template header");
2590 }
2591 }
2592
2593 /* Check to see if the function just declared, as indicated in
2594 DECLARATOR, and in DECL, is a specialization of a function
2595 template. We may also discover that the declaration is an explicit
2596 instantiation at this point.
2597
2598 Returns DECL, or an equivalent declaration that should be used
2599 instead if all goes well. Issues an error message if something is
2600 amiss. Returns error_mark_node if the error is not easily
2601 recoverable.
2602
2603 FLAGS is a bitmask consisting of the following flags:
2604
2605 2: The function has a definition.
2606 4: The function is a friend.
2607
2608 The TEMPLATE_COUNT is the number of references to qualifying
2609 template classes that appeared in the name of the function. For
2610 example, in
2611
2612 template <class T> struct S { void f(); };
2613 void S<int>::f();
2614
2615 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2616 classes are not counted in the TEMPLATE_COUNT, so that in
2617
2618 template <class T> struct S {};
2619 template <> struct S<int> { void f(); }
2620 template <> void S<int>::f();
2621
2622 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2623 invalid; there should be no template <>.)
2624
2625 If the function is a specialization, it is marked as such via
2626 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2627 is set up correctly, and it is added to the list of specializations
2628 for that template. */
2629
2630 tree
2631 check_explicit_specialization (tree declarator,
2632 tree decl,
2633 int template_count,
2634 int flags)
2635 {
2636 int have_def = flags & 2;
2637 int is_friend = flags & 4;
2638 bool is_concept = flags & 8;
2639 int specialization = 0;
2640 int explicit_instantiation = 0;
2641 int member_specialization = 0;
2642 tree ctype = DECL_CLASS_CONTEXT (decl);
2643 tree dname = DECL_NAME (decl);
2644 tmpl_spec_kind tsk;
2645
2646 if (is_friend)
2647 {
2648 if (!processing_specialization)
2649 tsk = tsk_none;
2650 else
2651 tsk = tsk_excessive_parms;
2652 }
2653 else
2654 tsk = current_tmpl_spec_kind (template_count);
2655
2656 switch (tsk)
2657 {
2658 case tsk_none:
2659 if (processing_specialization && !VAR_P (decl))
2660 {
2661 specialization = 1;
2662 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2663 }
2664 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2665 {
2666 if (is_friend)
2667 /* This could be something like:
2668
2669 template <class T> void f(T);
2670 class S { friend void f<>(int); } */
2671 specialization = 1;
2672 else
2673 {
2674 /* This case handles bogus declarations like template <>
2675 template <class T> void f<int>(); */
2676
2677 error ("template-id %qD in declaration of primary template",
2678 declarator);
2679 return decl;
2680 }
2681 }
2682 break;
2683
2684 case tsk_invalid_member_spec:
2685 /* The error has already been reported in
2686 check_specialization_scope. */
2687 return error_mark_node;
2688
2689 case tsk_invalid_expl_inst:
2690 error ("template parameter list used in explicit instantiation");
2691
2692 /* Fall through. */
2693
2694 case tsk_expl_inst:
2695 if (have_def)
2696 error ("definition provided for explicit instantiation");
2697
2698 explicit_instantiation = 1;
2699 break;
2700
2701 case tsk_excessive_parms:
2702 case tsk_insufficient_parms:
2703 if (tsk == tsk_excessive_parms)
2704 error ("too many template parameter lists in declaration of %qD",
2705 decl);
2706 else if (template_header_count)
2707 error("too few template parameter lists in declaration of %qD", decl);
2708 else
2709 error("explicit specialization of %qD must be introduced by "
2710 "%<template <>%>", decl);
2711
2712 /* Fall through. */
2713 case tsk_expl_spec:
2714 if (is_concept)
2715 error ("explicit specialization declared %<concept%>");
2716
2717 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2718 /* In cases like template<> constexpr bool v = true;
2719 We'll give an error in check_template_variable. */
2720 break;
2721
2722 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2723 if (ctype)
2724 member_specialization = 1;
2725 else
2726 specialization = 1;
2727 break;
2728
2729 case tsk_template:
2730 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2731 {
2732 /* This case handles bogus declarations like template <>
2733 template <class T> void f<int>(); */
2734
2735 if (!uses_template_parms (declarator))
2736 error ("template-id %qD in declaration of primary template",
2737 declarator);
2738 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2739 {
2740 /* Partial specialization of variable template. */
2741 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2742 specialization = 1;
2743 goto ok;
2744 }
2745 else if (cxx_dialect < cxx14)
2746 error ("non-type partial specialization %qD "
2747 "is not allowed", declarator);
2748 else
2749 error ("non-class, non-variable partial specialization %qD "
2750 "is not allowed", declarator);
2751 return decl;
2752 ok:;
2753 }
2754
2755 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2756 /* This is a specialization of a member template, without
2757 specialization the containing class. Something like:
2758
2759 template <class T> struct S {
2760 template <class U> void f (U);
2761 };
2762 template <> template <class U> void S<int>::f(U) {}
2763
2764 That's a specialization -- but of the entire template. */
2765 specialization = 1;
2766 break;
2767
2768 default:
2769 gcc_unreachable ();
2770 }
2771
2772 if ((specialization || member_specialization)
2773 /* This doesn't apply to variable templates. */
2774 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2775 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2776 {
2777 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2778 for (; t; t = TREE_CHAIN (t))
2779 if (TREE_PURPOSE (t))
2780 {
2781 permerror (input_location,
2782 "default argument specified in explicit specialization");
2783 break;
2784 }
2785 }
2786
2787 if (specialization || member_specialization || explicit_instantiation)
2788 {
2789 tree tmpl = NULL_TREE;
2790 tree targs = NULL_TREE;
2791 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2792
2793 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2794 if (!was_template_id)
2795 {
2796 tree fns;
2797
2798 gcc_assert (identifier_p (declarator));
2799 if (ctype)
2800 fns = dname;
2801 else
2802 {
2803 /* If there is no class context, the explicit instantiation
2804 must be at namespace scope. */
2805 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2806
2807 /* Find the namespace binding, using the declaration
2808 context. */
2809 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2810 false, true);
2811 if (fns == error_mark_node || !is_overloaded_fn (fns))
2812 {
2813 error ("%qD is not a template function", dname);
2814 fns = error_mark_node;
2815 }
2816 }
2817
2818 declarator = lookup_template_function (fns, NULL_TREE);
2819 }
2820
2821 if (declarator == error_mark_node)
2822 return error_mark_node;
2823
2824 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2825 {
2826 if (!explicit_instantiation)
2827 /* A specialization in class scope. This is invalid,
2828 but the error will already have been flagged by
2829 check_specialization_scope. */
2830 return error_mark_node;
2831 else
2832 {
2833 /* It's not valid to write an explicit instantiation in
2834 class scope, e.g.:
2835
2836 class C { template void f(); }
2837
2838 This case is caught by the parser. However, on
2839 something like:
2840
2841 template class C { void f(); };
2842
2843 (which is invalid) we can get here. The error will be
2844 issued later. */
2845 ;
2846 }
2847
2848 return decl;
2849 }
2850 else if (ctype != NULL_TREE
2851 && (identifier_p (TREE_OPERAND (declarator, 0))))
2852 {
2853 // We'll match variable templates in start_decl.
2854 if (VAR_P (decl))
2855 return decl;
2856
2857 /* Find the list of functions in ctype that have the same
2858 name as the declared function. */
2859 tree name = TREE_OPERAND (declarator, 0);
2860 tree fns = NULL_TREE;
2861 int idx;
2862
2863 if (constructor_name_p (name, ctype))
2864 {
2865 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2866
2867 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2868 : !CLASSTYPE_DESTRUCTORS (ctype))
2869 {
2870 /* From [temp.expl.spec]:
2871
2872 If such an explicit specialization for the member
2873 of a class template names an implicitly-declared
2874 special member function (clause _special_), the
2875 program is ill-formed.
2876
2877 Similar language is found in [temp.explicit]. */
2878 error ("specialization of implicitly-declared special member function");
2879 return error_mark_node;
2880 }
2881
2882 name = is_constructor ? ctor_identifier : dtor_identifier;
2883 }
2884
2885 if (!DECL_CONV_FN_P (decl))
2886 {
2887 idx = lookup_fnfields_1 (ctype, name);
2888 if (idx >= 0)
2889 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2890 }
2891 else
2892 {
2893 vec<tree, va_gc> *methods;
2894 tree ovl;
2895
2896 /* For a type-conversion operator, we cannot do a
2897 name-based lookup. We might be looking for `operator
2898 int' which will be a specialization of `operator T'.
2899 So, we find *all* the conversion operators, and then
2900 select from them. */
2901 fns = NULL_TREE;
2902
2903 methods = CLASSTYPE_METHOD_VEC (ctype);
2904 if (methods)
2905 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2906 methods->iterate (idx, &ovl);
2907 ++idx)
2908 {
2909 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2910 /* There are no more conversion functions. */
2911 break;
2912
2913 /* Glue all these conversion functions together
2914 with those we already have. */
2915 for (; ovl; ovl = OVL_NEXT (ovl))
2916 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2917 }
2918 }
2919
2920 if (fns == NULL_TREE)
2921 {
2922 error ("no member function %qD declared in %qT", name, ctype);
2923 return error_mark_node;
2924 }
2925 else
2926 TREE_OPERAND (declarator, 0) = fns;
2927 }
2928
2929 /* Figure out what exactly is being specialized at this point.
2930 Note that for an explicit instantiation, even one for a
2931 member function, we cannot tell apriori whether the
2932 instantiation is for a member template, or just a member
2933 function of a template class. Even if a member template is
2934 being instantiated, the member template arguments may be
2935 elided if they can be deduced from the rest of the
2936 declaration. */
2937 tmpl = determine_specialization (declarator, decl,
2938 &targs,
2939 member_specialization,
2940 template_count,
2941 tsk);
2942
2943 if (!tmpl || tmpl == error_mark_node)
2944 /* We couldn't figure out what this declaration was
2945 specializing. */
2946 return error_mark_node;
2947 else
2948 {
2949 if (!ctype && !was_template_id
2950 && (specialization || member_specialization
2951 || explicit_instantiation)
2952 && !is_associated_namespace (CP_DECL_CONTEXT (decl),
2953 CP_DECL_CONTEXT (tmpl)))
2954 error ("%qD is not declared in %qD",
2955 tmpl, current_namespace);
2956
2957 tree gen_tmpl = most_general_template (tmpl);
2958
2959 if (explicit_instantiation)
2960 {
2961 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2962 is done by do_decl_instantiation later. */
2963
2964 int arg_depth = TMPL_ARGS_DEPTH (targs);
2965 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2966
2967 if (arg_depth > parm_depth)
2968 {
2969 /* If TMPL is not the most general template (for
2970 example, if TMPL is a friend template that is
2971 injected into namespace scope), then there will
2972 be too many levels of TARGS. Remove some of them
2973 here. */
2974 int i;
2975 tree new_targs;
2976
2977 new_targs = make_tree_vec (parm_depth);
2978 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2979 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2980 = TREE_VEC_ELT (targs, i);
2981 targs = new_targs;
2982 }
2983
2984 return instantiate_template (tmpl, targs, tf_error);
2985 }
2986
2987 /* If we thought that the DECL was a member function, but it
2988 turns out to be specializing a static member function,
2989 make DECL a static member function as well. */
2990 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2991 && DECL_STATIC_FUNCTION_P (tmpl)
2992 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2993 revert_static_member_fn (decl);
2994
2995 /* If this is a specialization of a member template of a
2996 template class, we want to return the TEMPLATE_DECL, not
2997 the specialization of it. */
2998 if (tsk == tsk_template && !was_template_id)
2999 {
3000 tree result = DECL_TEMPLATE_RESULT (tmpl);
3001 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3002 DECL_INITIAL (result) = NULL_TREE;
3003 if (have_def)
3004 {
3005 tree parm;
3006 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3007 DECL_SOURCE_LOCATION (result)
3008 = DECL_SOURCE_LOCATION (decl);
3009 /* We want to use the argument list specified in the
3010 definition, not in the original declaration. */
3011 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3012 for (parm = DECL_ARGUMENTS (result); parm;
3013 parm = DECL_CHAIN (parm))
3014 DECL_CONTEXT (parm) = result;
3015 }
3016 return register_specialization (tmpl, gen_tmpl, targs,
3017 is_friend, 0);
3018 }
3019
3020 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3021 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3022
3023 if (was_template_id)
3024 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3025
3026 /* Inherit default function arguments from the template
3027 DECL is specializing. */
3028 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3029 copy_default_args_to_explicit_spec (decl);
3030
3031 /* This specialization has the same protection as the
3032 template it specializes. */
3033 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3034 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3035
3036 /* 7.1.1-1 [dcl.stc]
3037
3038 A storage-class-specifier shall not be specified in an
3039 explicit specialization...
3040
3041 The parser rejects these, so unless action is taken here,
3042 explicit function specializations will always appear with
3043 global linkage.
3044
3045 The action recommended by the C++ CWG in response to C++
3046 defect report 605 is to make the storage class and linkage
3047 of the explicit specialization match the templated function:
3048
3049 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3050 */
3051 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3052 {
3053 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3054 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3055
3056 /* A concept cannot be specialized. */
3057 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3058 {
3059 error ("explicit specialization of function concept %qD",
3060 gen_tmpl);
3061 return error_mark_node;
3062 }
3063
3064 /* This specialization has the same linkage and visibility as
3065 the function template it specializes. */
3066 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3067 if (! TREE_PUBLIC (decl))
3068 {
3069 DECL_INTERFACE_KNOWN (decl) = 1;
3070 DECL_NOT_REALLY_EXTERN (decl) = 1;
3071 }
3072 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3073 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3074 {
3075 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3076 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3077 }
3078 }
3079
3080 /* If DECL is a friend declaration, declared using an
3081 unqualified name, the namespace associated with DECL may
3082 have been set incorrectly. For example, in:
3083
3084 template <typename T> void f(T);
3085 namespace N {
3086 struct S { friend void f<int>(int); }
3087 }
3088
3089 we will have set the DECL_CONTEXT for the friend
3090 declaration to N, rather than to the global namespace. */
3091 if (DECL_NAMESPACE_SCOPE_P (decl))
3092 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3093
3094 if (is_friend && !have_def)
3095 /* This is not really a declaration of a specialization.
3096 It's just the name of an instantiation. But, it's not
3097 a request for an instantiation, either. */
3098 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3099 else if (TREE_CODE (decl) == FUNCTION_DECL)
3100 /* A specialization is not necessarily COMDAT. */
3101 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3102 && DECL_DECLARED_INLINE_P (decl));
3103 else if (VAR_P (decl))
3104 DECL_COMDAT (decl) = false;
3105
3106 /* If this is a full specialization, register it so that we can find
3107 it again. Partial specializations will be registered in
3108 process_partial_specialization. */
3109 if (!processing_template_decl)
3110 decl = register_specialization (decl, gen_tmpl, targs,
3111 is_friend, 0);
3112
3113 /* A 'structor should already have clones. */
3114 gcc_assert (decl == error_mark_node
3115 || variable_template_p (tmpl)
3116 || !(DECL_CONSTRUCTOR_P (decl)
3117 || DECL_DESTRUCTOR_P (decl))
3118 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3119 }
3120 }
3121
3122 return decl;
3123 }
3124
3125 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3126 parameters. These are represented in the same format used for
3127 DECL_TEMPLATE_PARMS. */
3128
3129 int
3130 comp_template_parms (const_tree parms1, const_tree parms2)
3131 {
3132 const_tree p1;
3133 const_tree p2;
3134
3135 if (parms1 == parms2)
3136 return 1;
3137
3138 for (p1 = parms1, p2 = parms2;
3139 p1 != NULL_TREE && p2 != NULL_TREE;
3140 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3141 {
3142 tree t1 = TREE_VALUE (p1);
3143 tree t2 = TREE_VALUE (p2);
3144 int i;
3145
3146 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3147 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3148
3149 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3150 return 0;
3151
3152 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3153 {
3154 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3155 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3156
3157 /* If either of the template parameters are invalid, assume
3158 they match for the sake of error recovery. */
3159 if (error_operand_p (parm1) || error_operand_p (parm2))
3160 return 1;
3161
3162 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3163 return 0;
3164
3165 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3166 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3167 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3168 continue;
3169 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3170 return 0;
3171 }
3172 }
3173
3174 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3175 /* One set of parameters has more parameters lists than the
3176 other. */
3177 return 0;
3178
3179 return 1;
3180 }
3181
3182 /* Determine whether PARM is a parameter pack. */
3183
3184 bool
3185 template_parameter_pack_p (const_tree parm)
3186 {
3187 /* Determine if we have a non-type template parameter pack. */
3188 if (TREE_CODE (parm) == PARM_DECL)
3189 return (DECL_TEMPLATE_PARM_P (parm)
3190 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3191 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3192 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3193
3194 /* If this is a list of template parameters, we could get a
3195 TYPE_DECL or a TEMPLATE_DECL. */
3196 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3197 parm = TREE_TYPE (parm);
3198
3199 /* Otherwise it must be a type template parameter. */
3200 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3201 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3202 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3203 }
3204
3205 /* Determine if T is a function parameter pack. */
3206
3207 bool
3208 function_parameter_pack_p (const_tree t)
3209 {
3210 if (t && TREE_CODE (t) == PARM_DECL)
3211 return DECL_PACK_P (t);
3212 return false;
3213 }
3214
3215 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3216 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3217
3218 tree
3219 get_function_template_decl (const_tree primary_func_tmpl_inst)
3220 {
3221 if (! primary_func_tmpl_inst
3222 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3223 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3224 return NULL;
3225
3226 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3227 }
3228
3229 /* Return true iff the function parameter PARAM_DECL was expanded
3230 from the function parameter pack PACK. */
3231
3232 bool
3233 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3234 {
3235 if (DECL_ARTIFICIAL (param_decl)
3236 || !function_parameter_pack_p (pack))
3237 return false;
3238
3239 /* The parameter pack and its pack arguments have the same
3240 DECL_PARM_INDEX. */
3241 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3242 }
3243
3244 /* Determine whether ARGS describes a variadic template args list,
3245 i.e., one that is terminated by a template argument pack. */
3246
3247 static bool
3248 template_args_variadic_p (tree args)
3249 {
3250 int nargs;
3251 tree last_parm;
3252
3253 if (args == NULL_TREE)
3254 return false;
3255
3256 args = INNERMOST_TEMPLATE_ARGS (args);
3257 nargs = TREE_VEC_LENGTH (args);
3258
3259 if (nargs == 0)
3260 return false;
3261
3262 last_parm = TREE_VEC_ELT (args, nargs - 1);
3263
3264 return ARGUMENT_PACK_P (last_parm);
3265 }
3266
3267 /* Generate a new name for the parameter pack name NAME (an
3268 IDENTIFIER_NODE) that incorporates its */
3269
3270 static tree
3271 make_ith_pack_parameter_name (tree name, int i)
3272 {
3273 /* Munge the name to include the parameter index. */
3274 #define NUMBUF_LEN 128
3275 char numbuf[NUMBUF_LEN];
3276 char* newname;
3277 int newname_len;
3278
3279 if (name == NULL_TREE)
3280 return name;
3281 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3282 newname_len = IDENTIFIER_LENGTH (name)
3283 + strlen (numbuf) + 2;
3284 newname = (char*)alloca (newname_len);
3285 snprintf (newname, newname_len,
3286 "%s#%i", IDENTIFIER_POINTER (name), i);
3287 return get_identifier (newname);
3288 }
3289
3290 /* Return true if T is a primary function, class or alias template
3291 instantiation. */
3292
3293 bool
3294 primary_template_instantiation_p (const_tree t)
3295 {
3296 if (!t)
3297 return false;
3298
3299 if (TREE_CODE (t) == FUNCTION_DECL)
3300 return DECL_LANG_SPECIFIC (t)
3301 && DECL_TEMPLATE_INSTANTIATION (t)
3302 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3303 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3304 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3305 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3306 else if (alias_template_specialization_p (t))
3307 return true;
3308 return false;
3309 }
3310
3311 /* Return true if PARM is a template template parameter. */
3312
3313 bool
3314 template_template_parameter_p (const_tree parm)
3315 {
3316 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3317 }
3318
3319 /* Return true iff PARM is a DECL representing a type template
3320 parameter. */
3321
3322 bool
3323 template_type_parameter_p (const_tree parm)
3324 {
3325 return (parm
3326 && (TREE_CODE (parm) == TYPE_DECL
3327 || TREE_CODE (parm) == TEMPLATE_DECL)
3328 && DECL_TEMPLATE_PARM_P (parm));
3329 }
3330
3331 /* Return the template parameters of T if T is a
3332 primary template instantiation, NULL otherwise. */
3333
3334 tree
3335 get_primary_template_innermost_parameters (const_tree t)
3336 {
3337 tree parms = NULL, template_info = NULL;
3338
3339 if ((template_info = get_template_info (t))
3340 && primary_template_instantiation_p (t))
3341 parms = INNERMOST_TEMPLATE_PARMS
3342 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3343
3344 return parms;
3345 }
3346
3347 /* Return the template parameters of the LEVELth level from the full list
3348 of template parameters PARMS. */
3349
3350 tree
3351 get_template_parms_at_level (tree parms, int level)
3352 {
3353 tree p;
3354 if (!parms
3355 || TREE_CODE (parms) != TREE_LIST
3356 || level > TMPL_PARMS_DEPTH (parms))
3357 return NULL_TREE;
3358
3359 for (p = parms; p; p = TREE_CHAIN (p))
3360 if (TMPL_PARMS_DEPTH (p) == level)
3361 return p;
3362
3363 return NULL_TREE;
3364 }
3365
3366 /* Returns the template arguments of T if T is a template instantiation,
3367 NULL otherwise. */
3368
3369 tree
3370 get_template_innermost_arguments (const_tree t)
3371 {
3372 tree args = NULL, template_info = NULL;
3373
3374 if ((template_info = get_template_info (t))
3375 && TI_ARGS (template_info))
3376 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3377
3378 return args;
3379 }
3380
3381 /* Return the argument pack elements of T if T is a template argument pack,
3382 NULL otherwise. */
3383
3384 tree
3385 get_template_argument_pack_elems (const_tree t)
3386 {
3387 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3388 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3389 return NULL;
3390
3391 return ARGUMENT_PACK_ARGS (t);
3392 }
3393
3394 /* Structure used to track the progress of find_parameter_packs_r. */
3395 struct find_parameter_pack_data
3396 {
3397 /* TREE_LIST that will contain all of the parameter packs found by
3398 the traversal. */
3399 tree* parameter_packs;
3400
3401 /* Set of AST nodes that have been visited by the traversal. */
3402 hash_set<tree> *visited;
3403
3404 /* True iff we're making a type pack expansion. */
3405 bool type_pack_expansion_p;
3406 };
3407
3408 /* Identifies all of the argument packs that occur in a template
3409 argument and appends them to the TREE_LIST inside DATA, which is a
3410 find_parameter_pack_data structure. This is a subroutine of
3411 make_pack_expansion and uses_parameter_packs. */
3412 static tree
3413 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3414 {
3415 tree t = *tp;
3416 struct find_parameter_pack_data* ppd =
3417 (struct find_parameter_pack_data*)data;
3418 bool parameter_pack_p = false;
3419
3420 /* Handle type aliases/typedefs. */
3421 if (TYPE_ALIAS_P (t))
3422 {
3423 if (TYPE_TEMPLATE_INFO (t))
3424 cp_walk_tree (&TYPE_TI_ARGS (t),
3425 &find_parameter_packs_r,
3426 ppd, ppd->visited);
3427 *walk_subtrees = 0;
3428 return NULL_TREE;
3429 }
3430
3431 /* Identify whether this is a parameter pack or not. */
3432 switch (TREE_CODE (t))
3433 {
3434 case TEMPLATE_PARM_INDEX:
3435 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3436 parameter_pack_p = true;
3437 break;
3438
3439 case TEMPLATE_TYPE_PARM:
3440 t = TYPE_MAIN_VARIANT (t);
3441 case TEMPLATE_TEMPLATE_PARM:
3442 /* If the placeholder appears in the decl-specifier-seq of a function
3443 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3444 is a pack expansion, the invented template parameter is a template
3445 parameter pack. */
3446 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3447 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3448 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3449 parameter_pack_p = true;
3450 break;
3451
3452 case FIELD_DECL:
3453 case PARM_DECL:
3454 if (DECL_PACK_P (t))
3455 {
3456 /* We don't want to walk into the type of a PARM_DECL,
3457 because we don't want to see the type parameter pack. */
3458 *walk_subtrees = 0;
3459 parameter_pack_p = true;
3460 }
3461 break;
3462
3463 /* Look through a lambda capture proxy to the field pack. */
3464 case VAR_DECL:
3465 if (DECL_HAS_VALUE_EXPR_P (t))
3466 {
3467 tree v = DECL_VALUE_EXPR (t);
3468 cp_walk_tree (&v,
3469 &find_parameter_packs_r,
3470 ppd, ppd->visited);
3471 *walk_subtrees = 0;
3472 }
3473 else if (variable_template_specialization_p (t))
3474 {
3475 cp_walk_tree (&DECL_TI_ARGS (t),
3476 find_parameter_packs_r,
3477 ppd, ppd->visited);
3478 *walk_subtrees = 0;
3479 }
3480 break;
3481
3482 case BASES:
3483 parameter_pack_p = true;
3484 break;
3485 default:
3486 /* Not a parameter pack. */
3487 break;
3488 }
3489
3490 if (parameter_pack_p)
3491 {
3492 /* Add this parameter pack to the list. */
3493 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3494 }
3495
3496 if (TYPE_P (t))
3497 cp_walk_tree (&TYPE_CONTEXT (t),
3498 &find_parameter_packs_r, ppd, ppd->visited);
3499
3500 /* This switch statement will return immediately if we don't find a
3501 parameter pack. */
3502 switch (TREE_CODE (t))
3503 {
3504 case TEMPLATE_PARM_INDEX:
3505 return NULL_TREE;
3506
3507 case BOUND_TEMPLATE_TEMPLATE_PARM:
3508 /* Check the template itself. */
3509 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3510 &find_parameter_packs_r, ppd, ppd->visited);
3511 /* Check the template arguments. */
3512 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3513 ppd->visited);
3514 *walk_subtrees = 0;
3515 return NULL_TREE;
3516
3517 case TEMPLATE_TYPE_PARM:
3518 case TEMPLATE_TEMPLATE_PARM:
3519 return NULL_TREE;
3520
3521 case PARM_DECL:
3522 return NULL_TREE;
3523
3524 case RECORD_TYPE:
3525 if (TYPE_PTRMEMFUNC_P (t))
3526 return NULL_TREE;
3527 /* Fall through. */
3528
3529 case UNION_TYPE:
3530 case ENUMERAL_TYPE:
3531 if (TYPE_TEMPLATE_INFO (t))
3532 cp_walk_tree (&TYPE_TI_ARGS (t),
3533 &find_parameter_packs_r, ppd, ppd->visited);
3534
3535 *walk_subtrees = 0;
3536 return NULL_TREE;
3537
3538 case CONSTRUCTOR:
3539 case TEMPLATE_DECL:
3540 cp_walk_tree (&TREE_TYPE (t),
3541 &find_parameter_packs_r, ppd, ppd->visited);
3542 return NULL_TREE;
3543
3544 case TYPENAME_TYPE:
3545 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3546 ppd, ppd->visited);
3547 *walk_subtrees = 0;
3548 return NULL_TREE;
3549
3550 case TYPE_PACK_EXPANSION:
3551 case EXPR_PACK_EXPANSION:
3552 *walk_subtrees = 0;
3553 return NULL_TREE;
3554
3555 case INTEGER_TYPE:
3556 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3557 ppd, ppd->visited);
3558 *walk_subtrees = 0;
3559 return NULL_TREE;
3560
3561 case IDENTIFIER_NODE:
3562 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3563 ppd->visited);
3564 *walk_subtrees = 0;
3565 return NULL_TREE;
3566
3567 case DECLTYPE_TYPE:
3568 {
3569 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3570 type_pack_expansion_p to false so that any placeholders
3571 within the expression don't get marked as parameter packs. */
3572 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3573 ppd->type_pack_expansion_p = false;
3574 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3575 ppd, ppd->visited);
3576 ppd->type_pack_expansion_p = type_pack_expansion_p;
3577 *walk_subtrees = 0;
3578 return NULL_TREE;
3579 }
3580
3581 default:
3582 return NULL_TREE;
3583 }
3584
3585 return NULL_TREE;
3586 }
3587
3588 /* Determines if the expression or type T uses any parameter packs. */
3589 bool
3590 uses_parameter_packs (tree t)
3591 {
3592 tree parameter_packs = NULL_TREE;
3593 struct find_parameter_pack_data ppd;
3594 ppd.parameter_packs = &parameter_packs;
3595 ppd.visited = new hash_set<tree>;
3596 ppd.type_pack_expansion_p = false;
3597 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3598 delete ppd.visited;
3599 return parameter_packs != NULL_TREE;
3600 }
3601
3602 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3603 representation a base-class initializer into a parameter pack
3604 expansion. If all goes well, the resulting node will be an
3605 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3606 respectively. */
3607 tree
3608 make_pack_expansion (tree arg)
3609 {
3610 tree result;
3611 tree parameter_packs = NULL_TREE;
3612 bool for_types = false;
3613 struct find_parameter_pack_data ppd;
3614
3615 if (!arg || arg == error_mark_node)
3616 return arg;
3617
3618 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3619 {
3620 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3621 class initializer. In this case, the TREE_PURPOSE will be a
3622 _TYPE node (representing the base class expansion we're
3623 initializing) and the TREE_VALUE will be a TREE_LIST
3624 containing the initialization arguments.
3625
3626 The resulting expansion looks somewhat different from most
3627 expansions. Rather than returning just one _EXPANSION, we
3628 return a TREE_LIST whose TREE_PURPOSE is a
3629 TYPE_PACK_EXPANSION containing the bases that will be
3630 initialized. The TREE_VALUE will be identical to the
3631 original TREE_VALUE, which is a list of arguments that will
3632 be passed to each base. We do not introduce any new pack
3633 expansion nodes into the TREE_VALUE (although it is possible
3634 that some already exist), because the TREE_PURPOSE and
3635 TREE_VALUE all need to be expanded together with the same
3636 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3637 resulting TREE_PURPOSE will mention the parameter packs in
3638 both the bases and the arguments to the bases. */
3639 tree purpose;
3640 tree value;
3641 tree parameter_packs = NULL_TREE;
3642
3643 /* Determine which parameter packs will be used by the base
3644 class expansion. */
3645 ppd.visited = new hash_set<tree>;
3646 ppd.parameter_packs = &parameter_packs;
3647 ppd.type_pack_expansion_p = true;
3648 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3649 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3650 &ppd, ppd.visited);
3651
3652 if (parameter_packs == NULL_TREE)
3653 {
3654 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3655 delete ppd.visited;
3656 return error_mark_node;
3657 }
3658
3659 if (TREE_VALUE (arg) != void_type_node)
3660 {
3661 /* Collect the sets of parameter packs used in each of the
3662 initialization arguments. */
3663 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3664 {
3665 /* Determine which parameter packs will be expanded in this
3666 argument. */
3667 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3668 &ppd, ppd.visited);
3669 }
3670 }
3671
3672 delete ppd.visited;
3673
3674 /* Create the pack expansion type for the base type. */
3675 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3676 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3677 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3678
3679 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3680 they will rarely be compared to anything. */
3681 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3682
3683 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3684 }
3685
3686 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3687 for_types = true;
3688
3689 /* Build the PACK_EXPANSION_* node. */
3690 result = for_types
3691 ? cxx_make_type (TYPE_PACK_EXPANSION)
3692 : make_node (EXPR_PACK_EXPANSION);
3693 SET_PACK_EXPANSION_PATTERN (result, arg);
3694 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3695 {
3696 /* Propagate type and const-expression information. */
3697 TREE_TYPE (result) = TREE_TYPE (arg);
3698 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3699 /* Mark this read now, since the expansion might be length 0. */
3700 mark_exp_read (arg);
3701 }
3702 else
3703 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3704 they will rarely be compared to anything. */
3705 SET_TYPE_STRUCTURAL_EQUALITY (result);
3706
3707 /* Determine which parameter packs will be expanded. */
3708 ppd.parameter_packs = &parameter_packs;
3709 ppd.visited = new hash_set<tree>;
3710 ppd.type_pack_expansion_p = TYPE_P (arg);
3711 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3712 delete ppd.visited;
3713
3714 /* Make sure we found some parameter packs. */
3715 if (parameter_packs == NULL_TREE)
3716 {
3717 if (TYPE_P (arg))
3718 error ("expansion pattern %<%T%> contains no argument packs", arg);
3719 else
3720 error ("expansion pattern %<%E%> contains no argument packs", arg);
3721 return error_mark_node;
3722 }
3723 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3724
3725 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3726
3727 return result;
3728 }
3729
3730 /* Checks T for any "bare" parameter packs, which have not yet been
3731 expanded, and issues an error if any are found. This operation can
3732 only be done on full expressions or types (e.g., an expression
3733 statement, "if" condition, etc.), because we could have expressions like:
3734
3735 foo(f(g(h(args)))...)
3736
3737 where "args" is a parameter pack. check_for_bare_parameter_packs
3738 should not be called for the subexpressions args, h(args),
3739 g(h(args)), or f(g(h(args))), because we would produce erroneous
3740 error messages.
3741
3742 Returns TRUE and emits an error if there were bare parameter packs,
3743 returns FALSE otherwise. */
3744 bool
3745 check_for_bare_parameter_packs (tree t)
3746 {
3747 tree parameter_packs = NULL_TREE;
3748 struct find_parameter_pack_data ppd;
3749
3750 if (!processing_template_decl || !t || t == error_mark_node)
3751 return false;
3752
3753 if (TREE_CODE (t) == TYPE_DECL)
3754 t = TREE_TYPE (t);
3755
3756 ppd.parameter_packs = &parameter_packs;
3757 ppd.visited = new hash_set<tree>;
3758 ppd.type_pack_expansion_p = false;
3759 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3760 delete ppd.visited;
3761
3762 if (parameter_packs)
3763 {
3764 error ("parameter packs not expanded with %<...%>:");
3765 while (parameter_packs)
3766 {
3767 tree pack = TREE_VALUE (parameter_packs);
3768 tree name = NULL_TREE;
3769
3770 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3771 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3772 name = TYPE_NAME (pack);
3773 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3774 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3775 else
3776 name = DECL_NAME (pack);
3777
3778 if (name)
3779 inform (input_location, " %qD", name);
3780 else
3781 inform (input_location, " <anonymous>");
3782
3783 parameter_packs = TREE_CHAIN (parameter_packs);
3784 }
3785
3786 return true;
3787 }
3788
3789 return false;
3790 }
3791
3792 /* Expand any parameter packs that occur in the template arguments in
3793 ARGS. */
3794 tree
3795 expand_template_argument_pack (tree args)
3796 {
3797 tree result_args = NULL_TREE;
3798 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3799 int num_result_args = -1;
3800 int non_default_args_count = -1;
3801
3802 /* First, determine if we need to expand anything, and the number of
3803 slots we'll need. */
3804 for (in_arg = 0; in_arg < nargs; ++in_arg)
3805 {
3806 tree arg = TREE_VEC_ELT (args, in_arg);
3807 if (arg == NULL_TREE)
3808 return args;
3809 if (ARGUMENT_PACK_P (arg))
3810 {
3811 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3812 if (num_result_args < 0)
3813 num_result_args = in_arg + num_packed;
3814 else
3815 num_result_args += num_packed;
3816 }
3817 else
3818 {
3819 if (num_result_args >= 0)
3820 num_result_args++;
3821 }
3822 }
3823
3824 /* If no expansion is necessary, we're done. */
3825 if (num_result_args < 0)
3826 return args;
3827
3828 /* Expand arguments. */
3829 result_args = make_tree_vec (num_result_args);
3830 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3831 non_default_args_count =
3832 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3833 for (in_arg = 0; in_arg < nargs; ++in_arg)
3834 {
3835 tree arg = TREE_VEC_ELT (args, in_arg);
3836 if (ARGUMENT_PACK_P (arg))
3837 {
3838 tree packed = ARGUMENT_PACK_ARGS (arg);
3839 int i, num_packed = TREE_VEC_LENGTH (packed);
3840 for (i = 0; i < num_packed; ++i, ++out_arg)
3841 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3842 if (non_default_args_count > 0)
3843 non_default_args_count += num_packed - 1;
3844 }
3845 else
3846 {
3847 TREE_VEC_ELT (result_args, out_arg) = arg;
3848 ++out_arg;
3849 }
3850 }
3851 if (non_default_args_count >= 0)
3852 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3853 return result_args;
3854 }
3855
3856 /* Checks if DECL shadows a template parameter.
3857
3858 [temp.local]: A template-parameter shall not be redeclared within its
3859 scope (including nested scopes).
3860
3861 Emits an error and returns TRUE if the DECL shadows a parameter,
3862 returns FALSE otherwise. */
3863
3864 bool
3865 check_template_shadow (tree decl)
3866 {
3867 tree olddecl;
3868
3869 /* If we're not in a template, we can't possibly shadow a template
3870 parameter. */
3871 if (!current_template_parms)
3872 return true;
3873
3874 /* Figure out what we're shadowing. */
3875 if (TREE_CODE (decl) == OVERLOAD)
3876 decl = OVL_CURRENT (decl);
3877 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3878
3879 /* If there's no previous binding for this name, we're not shadowing
3880 anything, let alone a template parameter. */
3881 if (!olddecl)
3882 return true;
3883
3884 /* If we're not shadowing a template parameter, we're done. Note
3885 that OLDDECL might be an OVERLOAD (or perhaps even an
3886 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3887 node. */
3888 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3889 return true;
3890
3891 /* We check for decl != olddecl to avoid bogus errors for using a
3892 name inside a class. We check TPFI to avoid duplicate errors for
3893 inline member templates. */
3894 if (decl == olddecl
3895 || (DECL_TEMPLATE_PARM_P (decl)
3896 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3897 return true;
3898
3899 /* Don't complain about the injected class name, as we've already
3900 complained about the class itself. */
3901 if (DECL_SELF_REFERENCE_P (decl))
3902 return false;
3903
3904 if (DECL_TEMPLATE_PARM_P (decl))
3905 error ("declaration of template parameter %q+D shadows "
3906 "template parameter", decl);
3907 else
3908 error ("declaration of %q+#D shadows template parameter", decl);
3909 inform (DECL_SOURCE_LOCATION (olddecl),
3910 "template parameter %qD declared here", olddecl);
3911 return false;
3912 }
3913
3914 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3915 ORIG_LEVEL, DECL, and TYPE. */
3916
3917 static tree
3918 build_template_parm_index (int index,
3919 int level,
3920 int orig_level,
3921 tree decl,
3922 tree type)
3923 {
3924 tree t = make_node (TEMPLATE_PARM_INDEX);
3925 TEMPLATE_PARM_IDX (t) = index;
3926 TEMPLATE_PARM_LEVEL (t) = level;
3927 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3928 TEMPLATE_PARM_DECL (t) = decl;
3929 TREE_TYPE (t) = type;
3930 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3931 TREE_READONLY (t) = TREE_READONLY (decl);
3932
3933 return t;
3934 }
3935
3936 /* Find the canonical type parameter for the given template type
3937 parameter. Returns the canonical type parameter, which may be TYPE
3938 if no such parameter existed. */
3939
3940 static tree
3941 canonical_type_parameter (tree type)
3942 {
3943 tree list;
3944 int idx = TEMPLATE_TYPE_IDX (type);
3945 if (!canonical_template_parms)
3946 vec_alloc (canonical_template_parms, idx+1);
3947
3948 while (canonical_template_parms->length () <= (unsigned)idx)
3949 vec_safe_push (canonical_template_parms, NULL_TREE);
3950
3951 list = (*canonical_template_parms)[idx];
3952 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3953 list = TREE_CHAIN (list);
3954
3955 if (list)
3956 return TREE_VALUE (list);
3957 else
3958 {
3959 (*canonical_template_parms)[idx]
3960 = tree_cons (NULL_TREE, type,
3961 (*canonical_template_parms)[idx]);
3962 return type;
3963 }
3964 }
3965
3966 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3967 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3968 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3969 new one is created. */
3970
3971 static tree
3972 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3973 tsubst_flags_t complain)
3974 {
3975 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3976 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3977 != TEMPLATE_PARM_LEVEL (index) - levels)
3978 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3979 {
3980 tree orig_decl = TEMPLATE_PARM_DECL (index);
3981 tree decl, t;
3982
3983 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3984 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3985 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3986 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3987 DECL_ARTIFICIAL (decl) = 1;
3988 SET_DECL_TEMPLATE_PARM_P (decl);
3989
3990 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3991 TEMPLATE_PARM_LEVEL (index) - levels,
3992 TEMPLATE_PARM_ORIG_LEVEL (index),
3993 decl, type);
3994 TEMPLATE_PARM_DESCENDANTS (index) = t;
3995 TEMPLATE_PARM_PARAMETER_PACK (t)
3996 = TEMPLATE_PARM_PARAMETER_PACK (index);
3997
3998 /* Template template parameters need this. */
3999 if (TREE_CODE (decl) == TEMPLATE_DECL)
4000 {
4001 DECL_TEMPLATE_RESULT (decl)
4002 = build_decl (DECL_SOURCE_LOCATION (decl),
4003 TYPE_DECL, DECL_NAME (decl), type);
4004 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
4005 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
4006 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
4007 }
4008 }
4009
4010 return TEMPLATE_PARM_DESCENDANTS (index);
4011 }
4012
4013 /* Process information from new template parameter PARM and append it
4014 to the LIST being built. This new parameter is a non-type
4015 parameter iff IS_NON_TYPE is true. This new parameter is a
4016 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4017 is in PARM_LOC. */
4018
4019 tree
4020 process_template_parm (tree list, location_t parm_loc, tree parm,
4021 bool is_non_type, bool is_parameter_pack)
4022 {
4023 tree decl = 0;
4024 int idx = 0;
4025
4026 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4027 tree defval = TREE_PURPOSE (parm);
4028 tree constr = TREE_TYPE (parm);
4029
4030 if (list)
4031 {
4032 tree p = tree_last (list);
4033
4034 if (p && TREE_VALUE (p) != error_mark_node)
4035 {
4036 p = TREE_VALUE (p);
4037 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4038 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4039 else
4040 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4041 }
4042
4043 ++idx;
4044 }
4045
4046 if (is_non_type)
4047 {
4048 parm = TREE_VALUE (parm);
4049
4050 SET_DECL_TEMPLATE_PARM_P (parm);
4051
4052 if (TREE_TYPE (parm) != error_mark_node)
4053 {
4054 /* [temp.param]
4055
4056 The top-level cv-qualifiers on the template-parameter are
4057 ignored when determining its type. */
4058 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4059 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4060 TREE_TYPE (parm) = error_mark_node;
4061 else if (uses_parameter_packs (TREE_TYPE (parm))
4062 && !is_parameter_pack
4063 /* If we're in a nested template parameter list, the template
4064 template parameter could be a parameter pack. */
4065 && processing_template_parmlist == 1)
4066 {
4067 /* This template parameter is not a parameter pack, but it
4068 should be. Complain about "bare" parameter packs. */
4069 check_for_bare_parameter_packs (TREE_TYPE (parm));
4070
4071 /* Recover by calling this a parameter pack. */
4072 is_parameter_pack = true;
4073 }
4074 }
4075
4076 /* A template parameter is not modifiable. */
4077 TREE_CONSTANT (parm) = 1;
4078 TREE_READONLY (parm) = 1;
4079 decl = build_decl (parm_loc,
4080 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4081 TREE_CONSTANT (decl) = 1;
4082 TREE_READONLY (decl) = 1;
4083 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4084 = build_template_parm_index (idx, processing_template_decl,
4085 processing_template_decl,
4086 decl, TREE_TYPE (parm));
4087
4088 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4089 = is_parameter_pack;
4090 }
4091 else
4092 {
4093 tree t;
4094 parm = TREE_VALUE (TREE_VALUE (parm));
4095
4096 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4097 {
4098 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4099 /* This is for distinguishing between real templates and template
4100 template parameters */
4101 TREE_TYPE (parm) = t;
4102 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4103 decl = parm;
4104 }
4105 else
4106 {
4107 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4108 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4109 decl = build_decl (parm_loc,
4110 TYPE_DECL, parm, t);
4111 }
4112
4113 TYPE_NAME (t) = decl;
4114 TYPE_STUB_DECL (t) = decl;
4115 parm = decl;
4116 TEMPLATE_TYPE_PARM_INDEX (t)
4117 = build_template_parm_index (idx, processing_template_decl,
4118 processing_template_decl,
4119 decl, TREE_TYPE (parm));
4120 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4121 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4122 }
4123 DECL_ARTIFICIAL (decl) = 1;
4124 SET_DECL_TEMPLATE_PARM_P (decl);
4125
4126 /* Build requirements for the type/template parameter.
4127 This must be done after SET_DECL_TEMPLATE_PARM_P or
4128 process_template_parm could fail. */
4129 tree reqs = finish_shorthand_constraint (parm, constr);
4130
4131 pushdecl (decl);
4132
4133 /* Build the parameter node linking the parameter declaration,
4134 its default argument (if any), and its constraints (if any). */
4135 parm = build_tree_list (defval, parm);
4136 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4137
4138 return chainon (list, parm);
4139 }
4140
4141 /* The end of a template parameter list has been reached. Process the
4142 tree list into a parameter vector, converting each parameter into a more
4143 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4144 as PARM_DECLs. */
4145
4146 tree
4147 end_template_parm_list (tree parms)
4148 {
4149 int nparms;
4150 tree parm, next;
4151 tree saved_parmlist = make_tree_vec (list_length (parms));
4152
4153 /* Pop the dummy parameter level and add the real one. */
4154 current_template_parms = TREE_CHAIN (current_template_parms);
4155
4156 current_template_parms
4157 = tree_cons (size_int (processing_template_decl),
4158 saved_parmlist, current_template_parms);
4159
4160 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4161 {
4162 next = TREE_CHAIN (parm);
4163 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4164 TREE_CHAIN (parm) = NULL_TREE;
4165 }
4166
4167 --processing_template_parmlist;
4168
4169 return saved_parmlist;
4170 }
4171
4172 // Explicitly indicate the end of the template parameter list. We assume
4173 // that the current template parameters have been constructed and/or
4174 // managed explicitly, as when creating new template template parameters
4175 // from a shorthand constraint.
4176 void
4177 end_template_parm_list ()
4178 {
4179 --processing_template_parmlist;
4180 }
4181
4182 /* end_template_decl is called after a template declaration is seen. */
4183
4184 void
4185 end_template_decl (void)
4186 {
4187 reset_specialization ();
4188
4189 if (! processing_template_decl)
4190 return;
4191
4192 /* This matches the pushlevel in begin_template_parm_list. */
4193 finish_scope ();
4194
4195 --processing_template_decl;
4196 current_template_parms = TREE_CHAIN (current_template_parms);
4197 }
4198
4199 /* Takes a TREE_LIST representing a template parameter and convert it
4200 into an argument suitable to be passed to the type substitution
4201 functions. Note that If the TREE_LIST contains an error_mark
4202 node, the returned argument is error_mark_node. */
4203
4204 tree
4205 template_parm_to_arg (tree t)
4206 {
4207
4208 if (t == NULL_TREE
4209 || TREE_CODE (t) != TREE_LIST)
4210 return t;
4211
4212 if (error_operand_p (TREE_VALUE (t)))
4213 return error_mark_node;
4214
4215 t = TREE_VALUE (t);
4216
4217 if (TREE_CODE (t) == TYPE_DECL
4218 || TREE_CODE (t) == TEMPLATE_DECL)
4219 {
4220 t = TREE_TYPE (t);
4221
4222 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4223 {
4224 /* Turn this argument into a TYPE_ARGUMENT_PACK
4225 with a single element, which expands T. */
4226 tree vec = make_tree_vec (1);
4227 if (CHECKING_P)
4228 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4229
4230 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4231
4232 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4233 SET_ARGUMENT_PACK_ARGS (t, vec);
4234 }
4235 }
4236 else
4237 {
4238 t = DECL_INITIAL (t);
4239
4240 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4241 {
4242 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4243 with a single element, which expands T. */
4244 tree vec = make_tree_vec (1);
4245 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4246 if (CHECKING_P)
4247 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4248
4249 t = convert_from_reference (t);
4250 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4251
4252 t = make_node (NONTYPE_ARGUMENT_PACK);
4253 SET_ARGUMENT_PACK_ARGS (t, vec);
4254 TREE_TYPE (t) = type;
4255 }
4256 else
4257 t = convert_from_reference (t);
4258 }
4259 return t;
4260 }
4261
4262 /* Given a set of template parameters, return them as a set of template
4263 arguments. The template parameters are represented as a TREE_VEC, in
4264 the form documented in cp-tree.h for template arguments. */
4265
4266 static tree
4267 template_parms_to_args (tree parms)
4268 {
4269 tree header;
4270 tree args = NULL_TREE;
4271 int length = TMPL_PARMS_DEPTH (parms);
4272 int l = length;
4273
4274 /* If there is only one level of template parameters, we do not
4275 create a TREE_VEC of TREE_VECs. Instead, we return a single
4276 TREE_VEC containing the arguments. */
4277 if (length > 1)
4278 args = make_tree_vec (length);
4279
4280 for (header = parms; header; header = TREE_CHAIN (header))
4281 {
4282 tree a = copy_node (TREE_VALUE (header));
4283 int i;
4284
4285 TREE_TYPE (a) = NULL_TREE;
4286 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4287 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4288
4289 if (CHECKING_P)
4290 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4291
4292 if (length > 1)
4293 TREE_VEC_ELT (args, --l) = a;
4294 else
4295 args = a;
4296 }
4297
4298 return args;
4299 }
4300
4301 /* Within the declaration of a template, return the currently active
4302 template parameters as an argument TREE_VEC. */
4303
4304 static tree
4305 current_template_args (void)
4306 {
4307 return template_parms_to_args (current_template_parms);
4308 }
4309
4310 /* Update the declared TYPE by doing any lookups which were thought to be
4311 dependent, but are not now that we know the SCOPE of the declarator. */
4312
4313 tree
4314 maybe_update_decl_type (tree orig_type, tree scope)
4315 {
4316 tree type = orig_type;
4317
4318 if (type == NULL_TREE)
4319 return type;
4320
4321 if (TREE_CODE (orig_type) == TYPE_DECL)
4322 type = TREE_TYPE (type);
4323
4324 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4325 && dependent_type_p (type)
4326 /* Don't bother building up the args in this case. */
4327 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4328 {
4329 /* tsubst in the args corresponding to the template parameters,
4330 including auto if present. Most things will be unchanged, but
4331 make_typename_type and tsubst_qualified_id will resolve
4332 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4333 tree args = current_template_args ();
4334 tree auto_node = type_uses_auto (type);
4335 tree pushed;
4336 if (auto_node)
4337 {
4338 tree auto_vec = make_tree_vec (1);
4339 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4340 args = add_to_template_args (args, auto_vec);
4341 }
4342 pushed = push_scope (scope);
4343 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4344 if (pushed)
4345 pop_scope (scope);
4346 }
4347
4348 if (type == error_mark_node)
4349 return orig_type;
4350
4351 if (TREE_CODE (orig_type) == TYPE_DECL)
4352 {
4353 if (same_type_p (type, TREE_TYPE (orig_type)))
4354 type = orig_type;
4355 else
4356 type = TYPE_NAME (type);
4357 }
4358 return type;
4359 }
4360
4361 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4362 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4363 the new template is a member template. */
4364
4365 tree
4366 build_template_decl (tree decl, tree parms, bool member_template_p)
4367 {
4368 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4369 DECL_TEMPLATE_PARMS (tmpl) = parms;
4370 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4371 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4372 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4373
4374 return tmpl;
4375 }
4376
4377 struct template_parm_data
4378 {
4379 /* The level of the template parameters we are currently
4380 processing. */
4381 int level;
4382
4383 /* The index of the specialization argument we are currently
4384 processing. */
4385 int current_arg;
4386
4387 /* An array whose size is the number of template parameters. The
4388 elements are nonzero if the parameter has been used in any one
4389 of the arguments processed so far. */
4390 int* parms;
4391
4392 /* An array whose size is the number of template arguments. The
4393 elements are nonzero if the argument makes use of template
4394 parameters of this level. */
4395 int* arg_uses_template_parms;
4396 };
4397
4398 /* Subroutine of push_template_decl used to see if each template
4399 parameter in a partial specialization is used in the explicit
4400 argument list. If T is of the LEVEL given in DATA (which is
4401 treated as a template_parm_data*), then DATA->PARMS is marked
4402 appropriately. */
4403
4404 static int
4405 mark_template_parm (tree t, void* data)
4406 {
4407 int level;
4408 int idx;
4409 struct template_parm_data* tpd = (struct template_parm_data*) data;
4410
4411 template_parm_level_and_index (t, &level, &idx);
4412
4413 if (level == tpd->level)
4414 {
4415 tpd->parms[idx] = 1;
4416 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4417 }
4418
4419 /* Return zero so that for_each_template_parm will continue the
4420 traversal of the tree; we want to mark *every* template parm. */
4421 return 0;
4422 }
4423
4424 /* Process the partial specialization DECL. */
4425
4426 static tree
4427 process_partial_specialization (tree decl)
4428 {
4429 tree type = TREE_TYPE (decl);
4430 tree tinfo = get_template_info (decl);
4431 tree maintmpl = TI_TEMPLATE (tinfo);
4432 tree specargs = TI_ARGS (tinfo);
4433 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4434 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4435 tree inner_parms;
4436 tree inst;
4437 int nargs = TREE_VEC_LENGTH (inner_args);
4438 int ntparms;
4439 int i;
4440 bool did_error_intro = false;
4441 struct template_parm_data tpd;
4442 struct template_parm_data tpd2;
4443
4444 gcc_assert (current_template_parms);
4445
4446 /* A concept cannot be specialized. */
4447 if (flag_concepts && variable_concept_p (maintmpl))
4448 {
4449 error ("specialization of variable concept %q#D", maintmpl);
4450 return error_mark_node;
4451 }
4452
4453 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4454 ntparms = TREE_VEC_LENGTH (inner_parms);
4455
4456 /* We check that each of the template parameters given in the
4457 partial specialization is used in the argument list to the
4458 specialization. For example:
4459
4460 template <class T> struct S;
4461 template <class T> struct S<T*>;
4462
4463 The second declaration is OK because `T*' uses the template
4464 parameter T, whereas
4465
4466 template <class T> struct S<int>;
4467
4468 is no good. Even trickier is:
4469
4470 template <class T>
4471 struct S1
4472 {
4473 template <class U>
4474 struct S2;
4475 template <class U>
4476 struct S2<T>;
4477 };
4478
4479 The S2<T> declaration is actually invalid; it is a
4480 full-specialization. Of course,
4481
4482 template <class U>
4483 struct S2<T (*)(U)>;
4484
4485 or some such would have been OK. */
4486 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4487 tpd.parms = XALLOCAVEC (int, ntparms);
4488 memset (tpd.parms, 0, sizeof (int) * ntparms);
4489
4490 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4491 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4492 for (i = 0; i < nargs; ++i)
4493 {
4494 tpd.current_arg = i;
4495 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4496 &mark_template_parm,
4497 &tpd,
4498 NULL,
4499 /*include_nondeduced_p=*/false);
4500 }
4501 for (i = 0; i < ntparms; ++i)
4502 if (tpd.parms[i] == 0)
4503 {
4504 /* One of the template parms was not used in a deduced context in the
4505 specialization. */
4506 if (!did_error_intro)
4507 {
4508 error ("template parameters not deducible in "
4509 "partial specialization:");
4510 did_error_intro = true;
4511 }
4512
4513 inform (input_location, " %qD",
4514 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4515 }
4516
4517 if (did_error_intro)
4518 return error_mark_node;
4519
4520 /* [temp.class.spec]
4521
4522 The argument list of the specialization shall not be identical to
4523 the implicit argument list of the primary template. */
4524 tree main_args
4525 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4526 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4527 && (!flag_concepts
4528 || !strictly_subsumes (current_template_constraints (),
4529 get_constraints (maintmpl))))
4530 {
4531 if (!flag_concepts)
4532 error ("partial specialization %q+D does not specialize "
4533 "any template arguments", decl);
4534 else
4535 error ("partial specialization %q+D does not specialize any "
4536 "template arguments and is not more constrained than", decl);
4537 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4538 }
4539
4540 /* A partial specialization that replaces multiple parameters of the
4541 primary template with a pack expansion is less specialized for those
4542 parameters. */
4543 if (nargs < DECL_NTPARMS (maintmpl))
4544 {
4545 error ("partial specialization is not more specialized than the "
4546 "primary template because it replaces multiple parameters "
4547 "with a pack expansion");
4548 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4549 return decl;
4550 }
4551
4552 /* [temp.class.spec]
4553
4554 A partially specialized non-type argument expression shall not
4555 involve template parameters of the partial specialization except
4556 when the argument expression is a simple identifier.
4557
4558 The type of a template parameter corresponding to a specialized
4559 non-type argument shall not be dependent on a parameter of the
4560 specialization.
4561
4562 Also, we verify that pack expansions only occur at the
4563 end of the argument list. */
4564 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4565 tpd2.parms = 0;
4566 for (i = 0; i < nargs; ++i)
4567 {
4568 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4569 tree arg = TREE_VEC_ELT (inner_args, i);
4570 tree packed_args = NULL_TREE;
4571 int j, len = 1;
4572
4573 if (ARGUMENT_PACK_P (arg))
4574 {
4575 /* Extract the arguments from the argument pack. We'll be
4576 iterating over these in the following loop. */
4577 packed_args = ARGUMENT_PACK_ARGS (arg);
4578 len = TREE_VEC_LENGTH (packed_args);
4579 }
4580
4581 for (j = 0; j < len; j++)
4582 {
4583 if (packed_args)
4584 /* Get the Jth argument in the parameter pack. */
4585 arg = TREE_VEC_ELT (packed_args, j);
4586
4587 if (PACK_EXPANSION_P (arg))
4588 {
4589 /* Pack expansions must come at the end of the
4590 argument list. */
4591 if ((packed_args && j < len - 1)
4592 || (!packed_args && i < nargs - 1))
4593 {
4594 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4595 error ("parameter pack argument %qE must be at the "
4596 "end of the template argument list", arg);
4597 else
4598 error ("parameter pack argument %qT must be at the "
4599 "end of the template argument list", arg);
4600 }
4601 }
4602
4603 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4604 /* We only care about the pattern. */
4605 arg = PACK_EXPANSION_PATTERN (arg);
4606
4607 if (/* These first two lines are the `non-type' bit. */
4608 !TYPE_P (arg)
4609 && TREE_CODE (arg) != TEMPLATE_DECL
4610 /* This next two lines are the `argument expression is not just a
4611 simple identifier' condition and also the `specialized
4612 non-type argument' bit. */
4613 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4614 && !(REFERENCE_REF_P (arg)
4615 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4616 {
4617 if ((!packed_args && tpd.arg_uses_template_parms[i])
4618 || (packed_args && uses_template_parms (arg)))
4619 error ("template argument %qE involves template parameter(s)",
4620 arg);
4621 else
4622 {
4623 /* Look at the corresponding template parameter,
4624 marking which template parameters its type depends
4625 upon. */
4626 tree type = TREE_TYPE (parm);
4627
4628 if (!tpd2.parms)
4629 {
4630 /* We haven't yet initialized TPD2. Do so now. */
4631 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4632 /* The number of parameters here is the number in the
4633 main template, which, as checked in the assertion
4634 above, is NARGS. */
4635 tpd2.parms = XALLOCAVEC (int, nargs);
4636 tpd2.level =
4637 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4638 }
4639
4640 /* Mark the template parameters. But this time, we're
4641 looking for the template parameters of the main
4642 template, not in the specialization. */
4643 tpd2.current_arg = i;
4644 tpd2.arg_uses_template_parms[i] = 0;
4645 memset (tpd2.parms, 0, sizeof (int) * nargs);
4646 for_each_template_parm (type,
4647 &mark_template_parm,
4648 &tpd2,
4649 NULL,
4650 /*include_nondeduced_p=*/false);
4651
4652 if (tpd2.arg_uses_template_parms [i])
4653 {
4654 /* The type depended on some template parameters.
4655 If they are fully specialized in the
4656 specialization, that's OK. */
4657 int j;
4658 int count = 0;
4659 for (j = 0; j < nargs; ++j)
4660 if (tpd2.parms[j] != 0
4661 && tpd.arg_uses_template_parms [j])
4662 ++count;
4663 if (count != 0)
4664 error_n (input_location, count,
4665 "type %qT of template argument %qE depends "
4666 "on a template parameter",
4667 "type %qT of template argument %qE depends "
4668 "on template parameters",
4669 type,
4670 arg);
4671 }
4672 }
4673 }
4674 }
4675 }
4676
4677 /* We should only get here once. */
4678 if (TREE_CODE (decl) == TYPE_DECL)
4679 gcc_assert (!COMPLETE_TYPE_P (type));
4680
4681 // Build the template decl.
4682 tree tmpl = build_template_decl (decl, current_template_parms,
4683 DECL_MEMBER_TEMPLATE_P (maintmpl));
4684 TREE_TYPE (tmpl) = type;
4685 DECL_TEMPLATE_RESULT (tmpl) = decl;
4686 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4687 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4688 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4689
4690 if (VAR_P (decl))
4691 /* We didn't register this in check_explicit_specialization so we could
4692 wait until the constraints were set. */
4693 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4694 else
4695 associate_classtype_constraints (type);
4696
4697 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4698 = tree_cons (specargs, tmpl,
4699 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4700 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4701
4702 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4703 inst = TREE_CHAIN (inst))
4704 {
4705 tree instance = TREE_VALUE (inst);
4706 if (TYPE_P (instance)
4707 ? (COMPLETE_TYPE_P (instance)
4708 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4709 : DECL_TEMPLATE_INSTANTIATION (instance))
4710 {
4711 tree spec = most_specialized_partial_spec (instance, tf_none);
4712 tree inst_decl = (DECL_P (instance)
4713 ? instance : TYPE_NAME (instance));
4714 if (!spec)
4715 /* OK */;
4716 else if (spec == error_mark_node)
4717 permerror (input_location,
4718 "declaration of %qD ambiguates earlier template "
4719 "instantiation for %qD", decl, inst_decl);
4720 else if (TREE_VALUE (spec) == tmpl)
4721 permerror (input_location,
4722 "partial specialization of %qD after instantiation "
4723 "of %qD", decl, inst_decl);
4724 }
4725 }
4726
4727 return decl;
4728 }
4729
4730 /* PARM is a template parameter of some form; return the corresponding
4731 TEMPLATE_PARM_INDEX. */
4732
4733 static tree
4734 get_template_parm_index (tree parm)
4735 {
4736 if (TREE_CODE (parm) == PARM_DECL
4737 || TREE_CODE (parm) == CONST_DECL)
4738 parm = DECL_INITIAL (parm);
4739 else if (TREE_CODE (parm) == TYPE_DECL
4740 || TREE_CODE (parm) == TEMPLATE_DECL)
4741 parm = TREE_TYPE (parm);
4742 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4743 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4744 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4745 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4746 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4747 return parm;
4748 }
4749
4750 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4751 parameter packs used by the template parameter PARM. */
4752
4753 static void
4754 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4755 {
4756 /* A type parm can't refer to another parm. */
4757 if (TREE_CODE (parm) == TYPE_DECL)
4758 return;
4759 else if (TREE_CODE (parm) == PARM_DECL)
4760 {
4761 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4762 ppd, ppd->visited);
4763 return;
4764 }
4765
4766 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4767
4768 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4769 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4770 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4771 }
4772
4773 /* PARM is a template parameter pack. Return any parameter packs used in
4774 its type or the type of any of its template parameters. If there are
4775 any such packs, it will be instantiated into a fixed template parameter
4776 list by partial instantiation rather than be fully deduced. */
4777
4778 tree
4779 fixed_parameter_pack_p (tree parm)
4780 {
4781 /* This can only be true in a member template. */
4782 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4783 return NULL_TREE;
4784 /* This can only be true for a parameter pack. */
4785 if (!template_parameter_pack_p (parm))
4786 return NULL_TREE;
4787 /* A type parm can't refer to another parm. */
4788 if (TREE_CODE (parm) == TYPE_DECL)
4789 return NULL_TREE;
4790
4791 tree parameter_packs = NULL_TREE;
4792 struct find_parameter_pack_data ppd;
4793 ppd.parameter_packs = &parameter_packs;
4794 ppd.visited = new hash_set<tree>;
4795 ppd.type_pack_expansion_p = false;
4796
4797 fixed_parameter_pack_p_1 (parm, &ppd);
4798
4799 delete ppd.visited;
4800 return parameter_packs;
4801 }
4802
4803 /* Check that a template declaration's use of default arguments and
4804 parameter packs is not invalid. Here, PARMS are the template
4805 parameters. IS_PRIMARY is true if DECL is the thing declared by
4806 a primary template. IS_PARTIAL is true if DECL is a partial
4807 specialization.
4808
4809 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4810 declaration (but not a definition); 1 indicates a declaration, 2
4811 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4812 emitted for extraneous default arguments.
4813
4814 Returns TRUE if there were no errors found, FALSE otherwise. */
4815
4816 bool
4817 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4818 bool is_partial, int is_friend_decl)
4819 {
4820 const char *msg;
4821 int last_level_to_check;
4822 tree parm_level;
4823 bool no_errors = true;
4824
4825 /* [temp.param]
4826
4827 A default template-argument shall not be specified in a
4828 function template declaration or a function template definition, nor
4829 in the template-parameter-list of the definition of a member of a
4830 class template. */
4831
4832 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4833 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4834 /* You can't have a function template declaration in a local
4835 scope, nor you can you define a member of a class template in a
4836 local scope. */
4837 return true;
4838
4839 if ((TREE_CODE (decl) == TYPE_DECL
4840 && TREE_TYPE (decl)
4841 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4842 || (TREE_CODE (decl) == FUNCTION_DECL
4843 && LAMBDA_FUNCTION_P (decl)))
4844 /* A lambda doesn't have an explicit declaration; don't complain
4845 about the parms of the enclosing class. */
4846 return true;
4847
4848 if (current_class_type
4849 && !TYPE_BEING_DEFINED (current_class_type)
4850 && DECL_LANG_SPECIFIC (decl)
4851 && DECL_DECLARES_FUNCTION_P (decl)
4852 /* If this is either a friend defined in the scope of the class
4853 or a member function. */
4854 && (DECL_FUNCTION_MEMBER_P (decl)
4855 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4856 : DECL_FRIEND_CONTEXT (decl)
4857 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4858 : false)
4859 /* And, if it was a member function, it really was defined in
4860 the scope of the class. */
4861 && (!DECL_FUNCTION_MEMBER_P (decl)
4862 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4863 /* We already checked these parameters when the template was
4864 declared, so there's no need to do it again now. This function
4865 was defined in class scope, but we're processing its body now
4866 that the class is complete. */
4867 return true;
4868
4869 /* Core issue 226 (C++0x only): the following only applies to class
4870 templates. */
4871 if (is_primary
4872 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4873 {
4874 /* [temp.param]
4875
4876 If a template-parameter has a default template-argument, all
4877 subsequent template-parameters shall have a default
4878 template-argument supplied. */
4879 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4880 {
4881 tree inner_parms = TREE_VALUE (parm_level);
4882 int ntparms = TREE_VEC_LENGTH (inner_parms);
4883 int seen_def_arg_p = 0;
4884 int i;
4885
4886 for (i = 0; i < ntparms; ++i)
4887 {
4888 tree parm = TREE_VEC_ELT (inner_parms, i);
4889
4890 if (parm == error_mark_node)
4891 continue;
4892
4893 if (TREE_PURPOSE (parm))
4894 seen_def_arg_p = 1;
4895 else if (seen_def_arg_p
4896 && !template_parameter_pack_p (TREE_VALUE (parm)))
4897 {
4898 error ("no default argument for %qD", TREE_VALUE (parm));
4899 /* For better subsequent error-recovery, we indicate that
4900 there should have been a default argument. */
4901 TREE_PURPOSE (parm) = error_mark_node;
4902 no_errors = false;
4903 }
4904 else if (!is_partial
4905 && !is_friend_decl
4906 /* Don't complain about an enclosing partial
4907 specialization. */
4908 && parm_level == parms
4909 && TREE_CODE (decl) == TYPE_DECL
4910 && i < ntparms - 1
4911 && template_parameter_pack_p (TREE_VALUE (parm))
4912 /* A fixed parameter pack will be partially
4913 instantiated into a fixed length list. */
4914 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4915 {
4916 /* A primary class template can only have one
4917 parameter pack, at the end of the template
4918 parameter list. */
4919
4920 error ("parameter pack %q+D must be at the end of the"
4921 " template parameter list", TREE_VALUE (parm));
4922
4923 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4924 = error_mark_node;
4925 no_errors = false;
4926 }
4927 }
4928 }
4929 }
4930
4931 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4932 || is_partial
4933 || !is_primary
4934 || is_friend_decl)
4935 /* For an ordinary class template, default template arguments are
4936 allowed at the innermost level, e.g.:
4937 template <class T = int>
4938 struct S {};
4939 but, in a partial specialization, they're not allowed even
4940 there, as we have in [temp.class.spec]:
4941
4942 The template parameter list of a specialization shall not
4943 contain default template argument values.
4944
4945 So, for a partial specialization, or for a function template
4946 (in C++98/C++03), we look at all of them. */
4947 ;
4948 else
4949 /* But, for a primary class template that is not a partial
4950 specialization we look at all template parameters except the
4951 innermost ones. */
4952 parms = TREE_CHAIN (parms);
4953
4954 /* Figure out what error message to issue. */
4955 if (is_friend_decl == 2)
4956 msg = G_("default template arguments may not be used in function template "
4957 "friend re-declaration");
4958 else if (is_friend_decl)
4959 msg = G_("default template arguments may not be used in function template "
4960 "friend declarations");
4961 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4962 msg = G_("default template arguments may not be used in function templates "
4963 "without -std=c++11 or -std=gnu++11");
4964 else if (is_partial)
4965 msg = G_("default template arguments may not be used in "
4966 "partial specializations");
4967 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4968 msg = G_("default argument for template parameter for class enclosing %qD");
4969 else
4970 /* Per [temp.param]/9, "A default template-argument shall not be
4971 specified in the template-parameter-lists of the definition of
4972 a member of a class template that appears outside of the member's
4973 class.", thus if we aren't handling a member of a class template
4974 there is no need to examine the parameters. */
4975 return true;
4976
4977 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4978 /* If we're inside a class definition, there's no need to
4979 examine the parameters to the class itself. On the one
4980 hand, they will be checked when the class is defined, and,
4981 on the other, default arguments are valid in things like:
4982 template <class T = double>
4983 struct S { template <class U> void f(U); };
4984 Here the default argument for `S' has no bearing on the
4985 declaration of `f'. */
4986 last_level_to_check = template_class_depth (current_class_type) + 1;
4987 else
4988 /* Check everything. */
4989 last_level_to_check = 0;
4990
4991 for (parm_level = parms;
4992 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4993 parm_level = TREE_CHAIN (parm_level))
4994 {
4995 tree inner_parms = TREE_VALUE (parm_level);
4996 int i;
4997 int ntparms;
4998
4999 ntparms = TREE_VEC_LENGTH (inner_parms);
5000 for (i = 0; i < ntparms; ++i)
5001 {
5002 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
5003 continue;
5004
5005 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
5006 {
5007 if (msg)
5008 {
5009 no_errors = false;
5010 if (is_friend_decl == 2)
5011 return no_errors;
5012
5013 error (msg, decl);
5014 msg = 0;
5015 }
5016
5017 /* Clear out the default argument so that we are not
5018 confused later. */
5019 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5020 }
5021 }
5022
5023 /* At this point, if we're still interested in issuing messages,
5024 they must apply to classes surrounding the object declared. */
5025 if (msg)
5026 msg = G_("default argument for template parameter for class "
5027 "enclosing %qD");
5028 }
5029
5030 return no_errors;
5031 }
5032
5033 /* Worker for push_template_decl_real, called via
5034 for_each_template_parm. DATA is really an int, indicating the
5035 level of the parameters we are interested in. If T is a template
5036 parameter of that level, return nonzero. */
5037
5038 static int
5039 template_parm_this_level_p (tree t, void* data)
5040 {
5041 int this_level = *(int *)data;
5042 int level;
5043
5044 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5045 level = TEMPLATE_PARM_LEVEL (t);
5046 else
5047 level = TEMPLATE_TYPE_LEVEL (t);
5048 return level == this_level;
5049 }
5050
5051 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5052 parameters given by current_template_args, or reuses a
5053 previously existing one, if appropriate. Returns the DECL, or an
5054 equivalent one, if it is replaced via a call to duplicate_decls.
5055
5056 If IS_FRIEND is true, DECL is a friend declaration. */
5057
5058 tree
5059 push_template_decl_real (tree decl, bool is_friend)
5060 {
5061 tree tmpl;
5062 tree args;
5063 tree info;
5064 tree ctx;
5065 bool is_primary;
5066 bool is_partial;
5067 int new_template_p = 0;
5068 /* True if the template is a member template, in the sense of
5069 [temp.mem]. */
5070 bool member_template_p = false;
5071
5072 if (decl == error_mark_node || !current_template_parms)
5073 return error_mark_node;
5074
5075 /* See if this is a partial specialization. */
5076 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5077 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5078 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5079 || (VAR_P (decl)
5080 && DECL_LANG_SPECIFIC (decl)
5081 && DECL_TEMPLATE_SPECIALIZATION (decl)
5082 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5083
5084 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5085 is_friend = true;
5086
5087 if (is_friend)
5088 /* For a friend, we want the context of the friend function, not
5089 the type of which it is a friend. */
5090 ctx = CP_DECL_CONTEXT (decl);
5091 else if (CP_DECL_CONTEXT (decl)
5092 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5093 /* In the case of a virtual function, we want the class in which
5094 it is defined. */
5095 ctx = CP_DECL_CONTEXT (decl);
5096 else
5097 /* Otherwise, if we're currently defining some class, the DECL
5098 is assumed to be a member of the class. */
5099 ctx = current_scope ();
5100
5101 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5102 ctx = NULL_TREE;
5103
5104 if (!DECL_CONTEXT (decl))
5105 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5106
5107 /* See if this is a primary template. */
5108 if (is_friend && ctx
5109 && uses_template_parms_level (ctx, processing_template_decl))
5110 /* A friend template that specifies a class context, i.e.
5111 template <typename T> friend void A<T>::f();
5112 is not primary. */
5113 is_primary = false;
5114 else if (TREE_CODE (decl) == TYPE_DECL
5115 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5116 is_primary = false;
5117 else
5118 is_primary = template_parm_scope_p ();
5119
5120 if (is_primary)
5121 {
5122 warning (OPT_Wtemplates, "template %qD declared", decl);
5123
5124 if (DECL_CLASS_SCOPE_P (decl))
5125 member_template_p = true;
5126 if (TREE_CODE (decl) == TYPE_DECL
5127 && anon_aggrname_p (DECL_NAME (decl)))
5128 {
5129 error ("template class without a name");
5130 return error_mark_node;
5131 }
5132 else if (TREE_CODE (decl) == FUNCTION_DECL)
5133 {
5134 if (member_template_p)
5135 {
5136 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5137 error ("member template %qD may not have virt-specifiers", decl);
5138 }
5139 if (DECL_DESTRUCTOR_P (decl))
5140 {
5141 /* [temp.mem]
5142
5143 A destructor shall not be a member template. */
5144 error ("destructor %qD declared as member template", decl);
5145 return error_mark_node;
5146 }
5147 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5148 && (!prototype_p (TREE_TYPE (decl))
5149 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5150 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5151 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5152 == void_list_node)))
5153 {
5154 /* [basic.stc.dynamic.allocation]
5155
5156 An allocation function can be a function
5157 template. ... Template allocation functions shall
5158 have two or more parameters. */
5159 error ("invalid template declaration of %qD", decl);
5160 return error_mark_node;
5161 }
5162 }
5163 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5164 && CLASS_TYPE_P (TREE_TYPE (decl)))
5165 /* OK */;
5166 else if (TREE_CODE (decl) == TYPE_DECL
5167 && TYPE_DECL_ALIAS_P (decl))
5168 /* alias-declaration */
5169 gcc_assert (!DECL_ARTIFICIAL (decl));
5170 else if (VAR_P (decl))
5171 /* C++14 variable template. */;
5172 else
5173 {
5174 error ("template declaration of %q#D", decl);
5175 return error_mark_node;
5176 }
5177 }
5178
5179 /* Check to see that the rules regarding the use of default
5180 arguments are not being violated. */
5181 check_default_tmpl_args (decl, current_template_parms,
5182 is_primary, is_partial, /*is_friend_decl=*/0);
5183
5184 /* Ensure that there are no parameter packs in the type of this
5185 declaration that have not been expanded. */
5186 if (TREE_CODE (decl) == FUNCTION_DECL)
5187 {
5188 /* Check each of the arguments individually to see if there are
5189 any bare parameter packs. */
5190 tree type = TREE_TYPE (decl);
5191 tree arg = DECL_ARGUMENTS (decl);
5192 tree argtype = TYPE_ARG_TYPES (type);
5193
5194 while (arg && argtype)
5195 {
5196 if (!DECL_PACK_P (arg)
5197 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5198 {
5199 /* This is a PARM_DECL that contains unexpanded parameter
5200 packs. We have already complained about this in the
5201 check_for_bare_parameter_packs call, so just replace
5202 these types with ERROR_MARK_NODE. */
5203 TREE_TYPE (arg) = error_mark_node;
5204 TREE_VALUE (argtype) = error_mark_node;
5205 }
5206
5207 arg = DECL_CHAIN (arg);
5208 argtype = TREE_CHAIN (argtype);
5209 }
5210
5211 /* Check for bare parameter packs in the return type and the
5212 exception specifiers. */
5213 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5214 /* Errors were already issued, set return type to int
5215 as the frontend doesn't expect error_mark_node as
5216 the return type. */
5217 TREE_TYPE (type) = integer_type_node;
5218 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5219 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5220 }
5221 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5222 && TYPE_DECL_ALIAS_P (decl))
5223 ? DECL_ORIGINAL_TYPE (decl)
5224 : TREE_TYPE (decl)))
5225 {
5226 TREE_TYPE (decl) = error_mark_node;
5227 return error_mark_node;
5228 }
5229
5230 if (is_partial)
5231 return process_partial_specialization (decl);
5232
5233 args = current_template_args ();
5234
5235 if (!ctx
5236 || TREE_CODE (ctx) == FUNCTION_DECL
5237 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5238 || (TREE_CODE (decl) == TYPE_DECL
5239 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5240 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5241 {
5242 if (DECL_LANG_SPECIFIC (decl)
5243 && DECL_TEMPLATE_INFO (decl)
5244 && DECL_TI_TEMPLATE (decl))
5245 tmpl = DECL_TI_TEMPLATE (decl);
5246 /* If DECL is a TYPE_DECL for a class-template, then there won't
5247 be DECL_LANG_SPECIFIC. The information equivalent to
5248 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5249 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5250 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5251 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5252 {
5253 /* Since a template declaration already existed for this
5254 class-type, we must be redeclaring it here. Make sure
5255 that the redeclaration is valid. */
5256 redeclare_class_template (TREE_TYPE (decl),
5257 current_template_parms,
5258 current_template_constraints ());
5259 /* We don't need to create a new TEMPLATE_DECL; just use the
5260 one we already had. */
5261 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5262 }
5263 else
5264 {
5265 tmpl = build_template_decl (decl, current_template_parms,
5266 member_template_p);
5267 new_template_p = 1;
5268
5269 if (DECL_LANG_SPECIFIC (decl)
5270 && DECL_TEMPLATE_SPECIALIZATION (decl))
5271 {
5272 /* A specialization of a member template of a template
5273 class. */
5274 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5275 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5276 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5277 }
5278 }
5279 }
5280 else
5281 {
5282 tree a, t, current, parms;
5283 int i;
5284 tree tinfo = get_template_info (decl);
5285
5286 if (!tinfo)
5287 {
5288 error ("template definition of non-template %q#D", decl);
5289 return error_mark_node;
5290 }
5291
5292 tmpl = TI_TEMPLATE (tinfo);
5293
5294 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5295 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5296 && DECL_TEMPLATE_SPECIALIZATION (decl)
5297 && DECL_MEMBER_TEMPLATE_P (tmpl))
5298 {
5299 tree new_tmpl;
5300
5301 /* The declaration is a specialization of a member
5302 template, declared outside the class. Therefore, the
5303 innermost template arguments will be NULL, so we
5304 replace them with the arguments determined by the
5305 earlier call to check_explicit_specialization. */
5306 args = DECL_TI_ARGS (decl);
5307
5308 new_tmpl
5309 = build_template_decl (decl, current_template_parms,
5310 member_template_p);
5311 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5312 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5313 DECL_TI_TEMPLATE (decl) = new_tmpl;
5314 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5315 DECL_TEMPLATE_INFO (new_tmpl)
5316 = build_template_info (tmpl, args);
5317
5318 register_specialization (new_tmpl,
5319 most_general_template (tmpl),
5320 args,
5321 is_friend, 0);
5322 return decl;
5323 }
5324
5325 /* Make sure the template headers we got make sense. */
5326
5327 parms = DECL_TEMPLATE_PARMS (tmpl);
5328 i = TMPL_PARMS_DEPTH (parms);
5329 if (TMPL_ARGS_DEPTH (args) != i)
5330 {
5331 error ("expected %d levels of template parms for %q#D, got %d",
5332 i, decl, TMPL_ARGS_DEPTH (args));
5333 DECL_INTERFACE_KNOWN (decl) = 1;
5334 return error_mark_node;
5335 }
5336 else
5337 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5338 {
5339 a = TMPL_ARGS_LEVEL (args, i);
5340 t = INNERMOST_TEMPLATE_PARMS (parms);
5341
5342 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5343 {
5344 if (current == decl)
5345 error ("got %d template parameters for %q#D",
5346 TREE_VEC_LENGTH (a), decl);
5347 else
5348 error ("got %d template parameters for %q#T",
5349 TREE_VEC_LENGTH (a), current);
5350 error (" but %d required", TREE_VEC_LENGTH (t));
5351 /* Avoid crash in import_export_decl. */
5352 DECL_INTERFACE_KNOWN (decl) = 1;
5353 return error_mark_node;
5354 }
5355
5356 if (current == decl)
5357 current = ctx;
5358 else if (current == NULL_TREE)
5359 /* Can happen in erroneous input. */
5360 break;
5361 else
5362 current = get_containing_scope (current);
5363 }
5364
5365 /* Check that the parms are used in the appropriate qualifying scopes
5366 in the declarator. */
5367 if (!comp_template_args
5368 (TI_ARGS (tinfo),
5369 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5370 {
5371 error ("\
5372 template arguments to %qD do not match original template %qD",
5373 decl, DECL_TEMPLATE_RESULT (tmpl));
5374 if (!uses_template_parms (TI_ARGS (tinfo)))
5375 inform (input_location, "use template<> for an explicit specialization");
5376 /* Avoid crash in import_export_decl. */
5377 DECL_INTERFACE_KNOWN (decl) = 1;
5378 return error_mark_node;
5379 }
5380 }
5381
5382 DECL_TEMPLATE_RESULT (tmpl) = decl;
5383 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5384
5385 /* Push template declarations for global functions and types. Note
5386 that we do not try to push a global template friend declared in a
5387 template class; such a thing may well depend on the template
5388 parameters of the class. */
5389 if (new_template_p && !ctx
5390 && !(is_friend && template_class_depth (current_class_type) > 0))
5391 {
5392 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5393 if (tmpl == error_mark_node)
5394 return error_mark_node;
5395
5396 /* Hide template friend classes that haven't been declared yet. */
5397 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5398 {
5399 DECL_ANTICIPATED (tmpl) = 1;
5400 DECL_FRIEND_P (tmpl) = 1;
5401 }
5402 }
5403
5404 if (is_primary)
5405 {
5406 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5407 int i;
5408
5409 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5410 if (DECL_CONV_FN_P (tmpl))
5411 {
5412 int depth = TMPL_PARMS_DEPTH (parms);
5413
5414 /* It is a conversion operator. See if the type converted to
5415 depends on innermost template operands. */
5416
5417 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5418 depth))
5419 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5420 }
5421
5422 /* Give template template parms a DECL_CONTEXT of the template
5423 for which they are a parameter. */
5424 parms = INNERMOST_TEMPLATE_PARMS (parms);
5425 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5426 {
5427 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5428 if (TREE_CODE (parm) == TEMPLATE_DECL)
5429 DECL_CONTEXT (parm) = tmpl;
5430 }
5431
5432 if (TREE_CODE (decl) == TYPE_DECL
5433 && TYPE_DECL_ALIAS_P (decl)
5434 && complex_alias_template_p (tmpl))
5435 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5436 }
5437
5438 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5439 back to its most general template. If TMPL is a specialization,
5440 ARGS may only have the innermost set of arguments. Add the missing
5441 argument levels if necessary. */
5442 if (DECL_TEMPLATE_INFO (tmpl))
5443 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5444
5445 info = build_template_info (tmpl, args);
5446
5447 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5448 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5449 else
5450 {
5451 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5452 retrofit_lang_decl (decl);
5453 if (DECL_LANG_SPECIFIC (decl))
5454 DECL_TEMPLATE_INFO (decl) = info;
5455 }
5456
5457 if (flag_implicit_templates
5458 && !is_friend
5459 && TREE_PUBLIC (decl)
5460 && VAR_OR_FUNCTION_DECL_P (decl))
5461 /* Set DECL_COMDAT on template instantiations; if we force
5462 them to be emitted by explicit instantiation or -frepo,
5463 mark_needed will tell cgraph to do the right thing. */
5464 DECL_COMDAT (decl) = true;
5465
5466 return DECL_TEMPLATE_RESULT (tmpl);
5467 }
5468
5469 tree
5470 push_template_decl (tree decl)
5471 {
5472 return push_template_decl_real (decl, false);
5473 }
5474
5475 /* FN is an inheriting constructor that inherits from the constructor
5476 template INHERITED; turn FN into a constructor template with a matching
5477 template header. */
5478
5479 tree
5480 add_inherited_template_parms (tree fn, tree inherited)
5481 {
5482 tree inner_parms
5483 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5484 inner_parms = copy_node (inner_parms);
5485 tree parms
5486 = tree_cons (size_int (processing_template_decl + 1),
5487 inner_parms, current_template_parms);
5488 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5489 tree args = template_parms_to_args (parms);
5490 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5491 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5492 DECL_TEMPLATE_RESULT (tmpl) = fn;
5493 DECL_ARTIFICIAL (tmpl) = true;
5494 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5495 return tmpl;
5496 }
5497
5498 /* Called when a class template TYPE is redeclared with the indicated
5499 template PARMS, e.g.:
5500
5501 template <class T> struct S;
5502 template <class T> struct S {}; */
5503
5504 bool
5505 redeclare_class_template (tree type, tree parms, tree cons)
5506 {
5507 tree tmpl;
5508 tree tmpl_parms;
5509 int i;
5510
5511 if (!TYPE_TEMPLATE_INFO (type))
5512 {
5513 error ("%qT is not a template type", type);
5514 return false;
5515 }
5516
5517 tmpl = TYPE_TI_TEMPLATE (type);
5518 if (!PRIMARY_TEMPLATE_P (tmpl))
5519 /* The type is nested in some template class. Nothing to worry
5520 about here; there are no new template parameters for the nested
5521 type. */
5522 return true;
5523
5524 if (!parms)
5525 {
5526 error ("template specifiers not specified in declaration of %qD",
5527 tmpl);
5528 return false;
5529 }
5530
5531 parms = INNERMOST_TEMPLATE_PARMS (parms);
5532 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5533
5534 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5535 {
5536 error_n (input_location, TREE_VEC_LENGTH (parms),
5537 "redeclared with %d template parameter",
5538 "redeclared with %d template parameters",
5539 TREE_VEC_LENGTH (parms));
5540 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5541 "previous declaration %qD used %d template parameter",
5542 "previous declaration %qD used %d template parameters",
5543 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5544 return false;
5545 }
5546
5547 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5548 {
5549 tree tmpl_parm;
5550 tree parm;
5551 tree tmpl_default;
5552 tree parm_default;
5553
5554 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5555 || TREE_VEC_ELT (parms, i) == error_mark_node)
5556 continue;
5557
5558 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5559 if (error_operand_p (tmpl_parm))
5560 return false;
5561
5562 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5563 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5564 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5565
5566 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5567 TEMPLATE_DECL. */
5568 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5569 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5570 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5571 || (TREE_CODE (tmpl_parm) != PARM_DECL
5572 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5573 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5574 || (TREE_CODE (tmpl_parm) == PARM_DECL
5575 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5576 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5577 {
5578 error ("template parameter %q+#D", tmpl_parm);
5579 error ("redeclared here as %q#D", parm);
5580 return false;
5581 }
5582
5583 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5584 {
5585 /* We have in [temp.param]:
5586
5587 A template-parameter may not be given default arguments
5588 by two different declarations in the same scope. */
5589 error_at (input_location, "redefinition of default argument for %q#D", parm);
5590 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5591 "original definition appeared here");
5592 return false;
5593 }
5594
5595 if (parm_default != NULL_TREE)
5596 /* Update the previous template parameters (which are the ones
5597 that will really count) with the new default value. */
5598 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5599 else if (tmpl_default != NULL_TREE)
5600 /* Update the new parameters, too; they'll be used as the
5601 parameters for any members. */
5602 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5603
5604 /* Give each template template parm in this redeclaration a
5605 DECL_CONTEXT of the template for which they are a parameter. */
5606 if (TREE_CODE (parm) == TEMPLATE_DECL)
5607 {
5608 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5609 DECL_CONTEXT (parm) = tmpl;
5610 }
5611 }
5612
5613 // Cannot redeclare a class template with a different set of constraints.
5614 if (!equivalent_constraints (get_constraints (tmpl), cons))
5615 {
5616 error_at (input_location, "redeclaration %q#D with different "
5617 "constraints", tmpl);
5618 inform (DECL_SOURCE_LOCATION (tmpl),
5619 "original declaration appeared here");
5620 }
5621
5622 return true;
5623 }
5624
5625 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5626 to be used when the caller has already checked
5627 (processing_template_decl
5628 && !instantiation_dependent_expression_p (expr)
5629 && potential_constant_expression (expr))
5630 and cleared processing_template_decl. */
5631
5632 tree
5633 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5634 {
5635 return tsubst_copy_and_build (expr,
5636 /*args=*/NULL_TREE,
5637 complain,
5638 /*in_decl=*/NULL_TREE,
5639 /*function_p=*/false,
5640 /*integral_constant_expression_p=*/true);
5641 }
5642
5643 /* Simplify EXPR if it is a non-dependent expression. Returns the
5644 (possibly simplified) expression. */
5645
5646 tree
5647 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5648 {
5649 if (expr == NULL_TREE)
5650 return NULL_TREE;
5651
5652 /* If we're in a template, but EXPR isn't value dependent, simplify
5653 it. We're supposed to treat:
5654
5655 template <typename T> void f(T[1 + 1]);
5656 template <typename T> void f(T[2]);
5657
5658 as two declarations of the same function, for example. */
5659 if (processing_template_decl
5660 && potential_nondependent_constant_expression (expr))
5661 {
5662 processing_template_decl_sentinel s;
5663 expr = instantiate_non_dependent_expr_internal (expr, complain);
5664 }
5665 return expr;
5666 }
5667
5668 tree
5669 instantiate_non_dependent_expr (tree expr)
5670 {
5671 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5672 }
5673
5674 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5675 an uninstantiated expression. */
5676
5677 tree
5678 instantiate_non_dependent_or_null (tree expr)
5679 {
5680 if (expr == NULL_TREE)
5681 return NULL_TREE;
5682 if (processing_template_decl)
5683 {
5684 if (!potential_nondependent_constant_expression (expr))
5685 expr = NULL_TREE;
5686 else
5687 {
5688 processing_template_decl_sentinel s;
5689 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5690 }
5691 }
5692 return expr;
5693 }
5694
5695 /* True iff T is a specialization of a variable template. */
5696
5697 bool
5698 variable_template_specialization_p (tree t)
5699 {
5700 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5701 return false;
5702 tree tmpl = DECL_TI_TEMPLATE (t);
5703 return variable_template_p (tmpl);
5704 }
5705
5706 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5707 template declaration, or a TYPE_DECL for an alias declaration. */
5708
5709 bool
5710 alias_type_or_template_p (tree t)
5711 {
5712 if (t == NULL_TREE)
5713 return false;
5714 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5715 || (TYPE_P (t)
5716 && TYPE_NAME (t)
5717 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5718 || DECL_ALIAS_TEMPLATE_P (t));
5719 }
5720
5721 /* Return TRUE iff T is a specialization of an alias template. */
5722
5723 bool
5724 alias_template_specialization_p (const_tree t)
5725 {
5726 /* It's an alias template specialization if it's an alias and its
5727 TYPE_NAME is a specialization of a primary template. */
5728 if (TYPE_ALIAS_P (t))
5729 {
5730 tree name = TYPE_NAME (t);
5731 if (DECL_LANG_SPECIFIC (name))
5732 if (tree ti = DECL_TEMPLATE_INFO (name))
5733 {
5734 tree tmpl = TI_TEMPLATE (ti);
5735 return PRIMARY_TEMPLATE_P (tmpl);
5736 }
5737 }
5738 return false;
5739 }
5740
5741 /* An alias template is complex from a SFINAE perspective if a template-id
5742 using that alias can be ill-formed when the expansion is not, as with
5743 the void_t template. We determine this by checking whether the
5744 expansion for the alias template uses all its template parameters. */
5745
5746 struct uses_all_template_parms_data
5747 {
5748 int level;
5749 bool *seen;
5750 };
5751
5752 static int
5753 uses_all_template_parms_r (tree t, void *data_)
5754 {
5755 struct uses_all_template_parms_data &data
5756 = *(struct uses_all_template_parms_data*)data_;
5757 tree idx = get_template_parm_index (t);
5758
5759 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5760 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5761 return 0;
5762 }
5763
5764 static bool
5765 complex_alias_template_p (const_tree tmpl)
5766 {
5767 struct uses_all_template_parms_data data;
5768 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5769 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5770 data.level = TMPL_PARMS_DEPTH (parms);
5771 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5772 data.seen = XALLOCAVEC (bool, len);
5773 for (int i = 0; i < len; ++i)
5774 data.seen[i] = false;
5775
5776 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5777 for (int i = 0; i < len; ++i)
5778 if (!data.seen[i])
5779 return true;
5780 return false;
5781 }
5782
5783 /* Return TRUE iff T is a specialization of a complex alias template with
5784 dependent template-arguments. */
5785
5786 bool
5787 dependent_alias_template_spec_p (const_tree t)
5788 {
5789 return (alias_template_specialization_p (t)
5790 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5791 && (any_dependent_template_arguments_p
5792 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5793 }
5794
5795 /* Return the number of innermost template parameters in TMPL. */
5796
5797 static int
5798 num_innermost_template_parms (tree tmpl)
5799 {
5800 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5801 return TREE_VEC_LENGTH (parms);
5802 }
5803
5804 /* Return either TMPL or another template that it is equivalent to under DR
5805 1286: An alias that just changes the name of a template is equivalent to
5806 the other template. */
5807
5808 static tree
5809 get_underlying_template (tree tmpl)
5810 {
5811 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5812 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5813 {
5814 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5815 if (TYPE_TEMPLATE_INFO (result))
5816 {
5817 tree sub = TYPE_TI_TEMPLATE (result);
5818 if (PRIMARY_TEMPLATE_P (sub)
5819 && (num_innermost_template_parms (tmpl)
5820 == num_innermost_template_parms (sub)))
5821 {
5822 tree alias_args = INNERMOST_TEMPLATE_ARGS
5823 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5824 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5825 break;
5826 /* The alias type is equivalent to the pattern of the
5827 underlying template, so strip the alias. */
5828 tmpl = sub;
5829 continue;
5830 }
5831 }
5832 break;
5833 }
5834 return tmpl;
5835 }
5836
5837 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5838 must be a function or a pointer-to-function type, as specified
5839 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5840 and check that the resulting function has external linkage. */
5841
5842 static tree
5843 convert_nontype_argument_function (tree type, tree expr,
5844 tsubst_flags_t complain)
5845 {
5846 tree fns = expr;
5847 tree fn, fn_no_ptr;
5848 linkage_kind linkage;
5849
5850 fn = instantiate_type (type, fns, tf_none);
5851 if (fn == error_mark_node)
5852 return error_mark_node;
5853
5854 fn_no_ptr = fn;
5855 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5856 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5857 if (BASELINK_P (fn_no_ptr))
5858 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5859
5860 /* [temp.arg.nontype]/1
5861
5862 A template-argument for a non-type, non-template template-parameter
5863 shall be one of:
5864 [...]
5865 -- the address of an object or function with external [C++11: or
5866 internal] linkage. */
5867
5868 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5869 {
5870 if (complain & tf_error)
5871 {
5872 error ("%qE is not a valid template argument for type %qT",
5873 expr, type);
5874 if (TYPE_PTR_P (type))
5875 error ("it must be the address of a function with "
5876 "external linkage");
5877 else
5878 error ("it must be the name of a function with "
5879 "external linkage");
5880 }
5881 return NULL_TREE;
5882 }
5883
5884 linkage = decl_linkage (fn_no_ptr);
5885 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5886 {
5887 if (complain & tf_error)
5888 {
5889 if (cxx_dialect >= cxx11)
5890 error ("%qE is not a valid template argument for type %qT "
5891 "because %qD has no linkage",
5892 expr, type, fn_no_ptr);
5893 else
5894 error ("%qE is not a valid template argument for type %qT "
5895 "because %qD does not have external linkage",
5896 expr, type, fn_no_ptr);
5897 }
5898 return NULL_TREE;
5899 }
5900
5901 return fn;
5902 }
5903
5904 /* Subroutine of convert_nontype_argument.
5905 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5906 Emit an error otherwise. */
5907
5908 static bool
5909 check_valid_ptrmem_cst_expr (tree type, tree expr,
5910 tsubst_flags_t complain)
5911 {
5912 STRIP_NOPS (expr);
5913 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5914 return true;
5915 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5916 return true;
5917 if (processing_template_decl
5918 && TREE_CODE (expr) == ADDR_EXPR
5919 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5920 return true;
5921 if (complain & tf_error)
5922 {
5923 error ("%qE is not a valid template argument for type %qT",
5924 expr, type);
5925 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5926 }
5927 return false;
5928 }
5929
5930 /* Returns TRUE iff the address of OP is value-dependent.
5931
5932 14.6.2.4 [temp.dep.temp]:
5933 A non-integral non-type template-argument is dependent if its type is
5934 dependent or it has either of the following forms
5935 qualified-id
5936 & qualified-id
5937 and contains a nested-name-specifier which specifies a class-name that
5938 names a dependent type.
5939
5940 We generalize this to just say that the address of a member of a
5941 dependent class is value-dependent; the above doesn't cover the
5942 address of a static data member named with an unqualified-id. */
5943
5944 static bool
5945 has_value_dependent_address (tree op)
5946 {
5947 /* We could use get_inner_reference here, but there's no need;
5948 this is only relevant for template non-type arguments, which
5949 can only be expressed as &id-expression. */
5950 if (DECL_P (op))
5951 {
5952 tree ctx = CP_DECL_CONTEXT (op);
5953 if (TYPE_P (ctx) && dependent_type_p (ctx))
5954 return true;
5955 }
5956
5957 return false;
5958 }
5959
5960 /* The next set of functions are used for providing helpful explanatory
5961 diagnostics for failed overload resolution. Their messages should be
5962 indented by two spaces for consistency with the messages in
5963 call.c */
5964
5965 static int
5966 unify_success (bool /*explain_p*/)
5967 {
5968 return 0;
5969 }
5970
5971 static int
5972 unify_parameter_deduction_failure (bool explain_p, tree parm)
5973 {
5974 if (explain_p)
5975 inform (input_location,
5976 " couldn't deduce template parameter %qD", parm);
5977 return 1;
5978 }
5979
5980 static int
5981 unify_invalid (bool /*explain_p*/)
5982 {
5983 return 1;
5984 }
5985
5986 static int
5987 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5988 {
5989 if (explain_p)
5990 inform (input_location,
5991 " types %qT and %qT have incompatible cv-qualifiers",
5992 parm, arg);
5993 return 1;
5994 }
5995
5996 static int
5997 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5998 {
5999 if (explain_p)
6000 inform (input_location, " mismatched types %qT and %qT", parm, arg);
6001 return 1;
6002 }
6003
6004 static int
6005 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6006 {
6007 if (explain_p)
6008 inform (input_location,
6009 " template parameter %qD is not a parameter pack, but "
6010 "argument %qD is",
6011 parm, arg);
6012 return 1;
6013 }
6014
6015 static int
6016 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6017 {
6018 if (explain_p)
6019 inform (input_location,
6020 " template argument %qE does not match "
6021 "pointer-to-member constant %qE",
6022 arg, parm);
6023 return 1;
6024 }
6025
6026 static int
6027 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6028 {
6029 if (explain_p)
6030 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6031 return 1;
6032 }
6033
6034 static int
6035 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6036 {
6037 if (explain_p)
6038 inform (input_location,
6039 " inconsistent parameter pack deduction with %qT and %qT",
6040 old_arg, new_arg);
6041 return 1;
6042 }
6043
6044 static int
6045 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6046 {
6047 if (explain_p)
6048 {
6049 if (TYPE_P (parm))
6050 inform (input_location,
6051 " deduced conflicting types for parameter %qT (%qT and %qT)",
6052 parm, first, second);
6053 else
6054 inform (input_location,
6055 " deduced conflicting values for non-type parameter "
6056 "%qE (%qE and %qE)", parm, first, second);
6057 }
6058 return 1;
6059 }
6060
6061 static int
6062 unify_vla_arg (bool explain_p, tree arg)
6063 {
6064 if (explain_p)
6065 inform (input_location,
6066 " variable-sized array type %qT is not "
6067 "a valid template argument",
6068 arg);
6069 return 1;
6070 }
6071
6072 static int
6073 unify_method_type_error (bool explain_p, tree arg)
6074 {
6075 if (explain_p)
6076 inform (input_location,
6077 " member function type %qT is not a valid template argument",
6078 arg);
6079 return 1;
6080 }
6081
6082 static int
6083 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6084 {
6085 if (explain_p)
6086 {
6087 if (least_p)
6088 inform_n (input_location, wanted,
6089 " candidate expects at least %d argument, %d provided",
6090 " candidate expects at least %d arguments, %d provided",
6091 wanted, have);
6092 else
6093 inform_n (input_location, wanted,
6094 " candidate expects %d argument, %d provided",
6095 " candidate expects %d arguments, %d provided",
6096 wanted, have);
6097 }
6098 return 1;
6099 }
6100
6101 static int
6102 unify_too_many_arguments (bool explain_p, int have, int wanted)
6103 {
6104 return unify_arity (explain_p, have, wanted);
6105 }
6106
6107 static int
6108 unify_too_few_arguments (bool explain_p, int have, int wanted,
6109 bool least_p = false)
6110 {
6111 return unify_arity (explain_p, have, wanted, least_p);
6112 }
6113
6114 static int
6115 unify_arg_conversion (bool explain_p, tree to_type,
6116 tree from_type, tree arg)
6117 {
6118 if (explain_p)
6119 inform (EXPR_LOC_OR_LOC (arg, input_location),
6120 " cannot convert %qE (type %qT) to type %qT",
6121 arg, from_type, to_type);
6122 return 1;
6123 }
6124
6125 static int
6126 unify_no_common_base (bool explain_p, enum template_base_result r,
6127 tree parm, tree arg)
6128 {
6129 if (explain_p)
6130 switch (r)
6131 {
6132 case tbr_ambiguous_baseclass:
6133 inform (input_location, " %qT is an ambiguous base class of %qT",
6134 parm, arg);
6135 break;
6136 default:
6137 inform (input_location, " %qT is not derived from %qT", arg, parm);
6138 break;
6139 }
6140 return 1;
6141 }
6142
6143 static int
6144 unify_inconsistent_template_template_parameters (bool explain_p)
6145 {
6146 if (explain_p)
6147 inform (input_location,
6148 " template parameters of a template template argument are "
6149 "inconsistent with other deduced template arguments");
6150 return 1;
6151 }
6152
6153 static int
6154 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6155 {
6156 if (explain_p)
6157 inform (input_location,
6158 " can't deduce a template for %qT from non-template type %qT",
6159 parm, arg);
6160 return 1;
6161 }
6162
6163 static int
6164 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6165 {
6166 if (explain_p)
6167 inform (input_location,
6168 " template argument %qE does not match %qD", arg, parm);
6169 return 1;
6170 }
6171
6172 static int
6173 unify_overload_resolution_failure (bool explain_p, tree arg)
6174 {
6175 if (explain_p)
6176 inform (input_location,
6177 " could not resolve address from overloaded function %qE",
6178 arg);
6179 return 1;
6180 }
6181
6182 /* Attempt to convert the non-type template parameter EXPR to the
6183 indicated TYPE. If the conversion is successful, return the
6184 converted value. If the conversion is unsuccessful, return
6185 NULL_TREE if we issued an error message, or error_mark_node if we
6186 did not. We issue error messages for out-and-out bad template
6187 parameters, but not simply because the conversion failed, since we
6188 might be just trying to do argument deduction. Both TYPE and EXPR
6189 must be non-dependent.
6190
6191 The conversion follows the special rules described in
6192 [temp.arg.nontype], and it is much more strict than an implicit
6193 conversion.
6194
6195 This function is called twice for each template argument (see
6196 lookup_template_class for a more accurate description of this
6197 problem). This means that we need to handle expressions which
6198 are not valid in a C++ source, but can be created from the
6199 first call (for instance, casts to perform conversions). These
6200 hacks can go away after we fix the double coercion problem. */
6201
6202 static tree
6203 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6204 {
6205 tree expr_type;
6206
6207 /* Detect immediately string literals as invalid non-type argument.
6208 This special-case is not needed for correctness (we would easily
6209 catch this later), but only to provide better diagnostic for this
6210 common user mistake. As suggested by DR 100, we do not mention
6211 linkage issues in the diagnostic as this is not the point. */
6212 /* FIXME we're making this OK. */
6213 if (TREE_CODE (expr) == STRING_CST)
6214 {
6215 if (complain & tf_error)
6216 error ("%qE is not a valid template argument for type %qT "
6217 "because string literals can never be used in this context",
6218 expr, type);
6219 return NULL_TREE;
6220 }
6221
6222 /* Add the ADDR_EXPR now for the benefit of
6223 value_dependent_expression_p. */
6224 if (TYPE_PTROBV_P (type)
6225 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6226 {
6227 expr = decay_conversion (expr, complain);
6228 if (expr == error_mark_node)
6229 return error_mark_node;
6230 }
6231
6232 /* If we are in a template, EXPR may be non-dependent, but still
6233 have a syntactic, rather than semantic, form. For example, EXPR
6234 might be a SCOPE_REF, rather than the VAR_DECL to which the
6235 SCOPE_REF refers. Preserving the qualifying scope is necessary
6236 so that access checking can be performed when the template is
6237 instantiated -- but here we need the resolved form so that we can
6238 convert the argument. */
6239 bool non_dep = false;
6240 if (TYPE_REF_OBJ_P (type)
6241 && has_value_dependent_address (expr))
6242 /* If we want the address and it's value-dependent, don't fold. */;
6243 else if (processing_template_decl
6244 && potential_nondependent_constant_expression (expr))
6245 non_dep = true;
6246 if (error_operand_p (expr))
6247 return error_mark_node;
6248 expr_type = TREE_TYPE (expr);
6249 if (TREE_CODE (type) == REFERENCE_TYPE)
6250 expr = mark_lvalue_use (expr);
6251 else
6252 expr = mark_rvalue_use (expr);
6253
6254 /* If the argument is non-dependent, perform any conversions in
6255 non-dependent context as well. */
6256 processing_template_decl_sentinel s (non_dep);
6257 if (non_dep)
6258 expr = instantiate_non_dependent_expr_internal (expr, complain);
6259
6260 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6261 to a non-type argument of "nullptr". */
6262 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6263 expr = fold_simple (convert (type, expr));
6264
6265 /* In C++11, integral or enumeration non-type template arguments can be
6266 arbitrary constant expressions. Pointer and pointer to
6267 member arguments can be general constant expressions that evaluate
6268 to a null value, but otherwise still need to be of a specific form. */
6269 if (cxx_dialect >= cxx11)
6270 {
6271 if (TREE_CODE (expr) == PTRMEM_CST)
6272 /* A PTRMEM_CST is already constant, and a valid template
6273 argument for a parameter of pointer to member type, we just want
6274 to leave it in that form rather than lower it to a
6275 CONSTRUCTOR. */;
6276 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6277 expr = maybe_constant_value (expr);
6278 else if (cxx_dialect >= cxx1z)
6279 {
6280 if (TREE_CODE (type) != REFERENCE_TYPE)
6281 expr = maybe_constant_value (expr);
6282 else if (REFERENCE_REF_P (expr))
6283 {
6284 expr = TREE_OPERAND (expr, 0);
6285 expr = maybe_constant_value (expr);
6286 expr = convert_from_reference (expr);
6287 }
6288 }
6289 else if (TYPE_PTR_OR_PTRMEM_P (type))
6290 {
6291 tree folded = maybe_constant_value (expr);
6292 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6293 : null_member_pointer_value_p (folded))
6294 expr = folded;
6295 }
6296 }
6297
6298 /* HACK: Due to double coercion, we can get a
6299 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6300 which is the tree that we built on the first call (see
6301 below when coercing to reference to object or to reference to
6302 function). We just strip everything and get to the arg.
6303 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6304 for examples. */
6305 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6306 {
6307 tree probe_type, probe = expr;
6308 if (REFERENCE_REF_P (probe))
6309 probe = TREE_OPERAND (probe, 0);
6310 probe_type = TREE_TYPE (probe);
6311 if (TREE_CODE (probe) == NOP_EXPR)
6312 {
6313 /* ??? Maybe we could use convert_from_reference here, but we
6314 would need to relax its constraints because the NOP_EXPR
6315 could actually change the type to something more cv-qualified,
6316 and this is not folded by convert_from_reference. */
6317 tree addr = TREE_OPERAND (probe, 0);
6318 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6319 && TREE_CODE (addr) == ADDR_EXPR
6320 && TYPE_PTR_P (TREE_TYPE (addr))
6321 && (same_type_ignoring_top_level_qualifiers_p
6322 (TREE_TYPE (probe_type),
6323 TREE_TYPE (TREE_TYPE (addr)))))
6324 {
6325 expr = TREE_OPERAND (addr, 0);
6326 expr_type = TREE_TYPE (probe_type);
6327 }
6328 }
6329 }
6330
6331 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6332 parameter is a pointer to object, through decay and
6333 qualification conversion. Let's strip everything. */
6334 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6335 {
6336 tree probe = expr;
6337 STRIP_NOPS (probe);
6338 if (TREE_CODE (probe) == ADDR_EXPR
6339 && TYPE_PTR_P (TREE_TYPE (probe)))
6340 {
6341 /* Skip the ADDR_EXPR only if it is part of the decay for
6342 an array. Otherwise, it is part of the original argument
6343 in the source code. */
6344 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6345 probe = TREE_OPERAND (probe, 0);
6346 expr = probe;
6347 expr_type = TREE_TYPE (expr);
6348 }
6349 }
6350
6351 /* [temp.arg.nontype]/5, bullet 1
6352
6353 For a non-type template-parameter of integral or enumeration type,
6354 integral promotions (_conv.prom_) and integral conversions
6355 (_conv.integral_) are applied. */
6356 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6357 {
6358 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6359 t = maybe_constant_value (t);
6360 if (t != error_mark_node)
6361 expr = t;
6362
6363 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6364 return error_mark_node;
6365
6366 /* Notice that there are constant expressions like '4 % 0' which
6367 do not fold into integer constants. */
6368 if (TREE_CODE (expr) != INTEGER_CST)
6369 {
6370 if (complain & tf_error)
6371 {
6372 int errs = errorcount, warns = warningcount + werrorcount;
6373 if (processing_template_decl
6374 && !require_potential_constant_expression (expr))
6375 return NULL_TREE;
6376 expr = cxx_constant_value (expr);
6377 if (errorcount > errs || warningcount + werrorcount > warns)
6378 inform (EXPR_LOC_OR_LOC (expr, input_location),
6379 "in template argument for type %qT ", type);
6380 if (expr == error_mark_node)
6381 return NULL_TREE;
6382 /* else cxx_constant_value complained but gave us
6383 a real constant, so go ahead. */
6384 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6385 }
6386 else
6387 return NULL_TREE;
6388 }
6389
6390 /* Avoid typedef problems. */
6391 if (TREE_TYPE (expr) != type)
6392 expr = fold_convert (type, expr);
6393 }
6394 /* [temp.arg.nontype]/5, bullet 2
6395
6396 For a non-type template-parameter of type pointer to object,
6397 qualification conversions (_conv.qual_) and the array-to-pointer
6398 conversion (_conv.array_) are applied. */
6399 else if (TYPE_PTROBV_P (type))
6400 {
6401 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6402
6403 A template-argument for a non-type, non-template template-parameter
6404 shall be one of: [...]
6405
6406 -- the name of a non-type template-parameter;
6407 -- the address of an object or function with external linkage, [...]
6408 expressed as "& id-expression" where the & is optional if the name
6409 refers to a function or array, or if the corresponding
6410 template-parameter is a reference.
6411
6412 Here, we do not care about functions, as they are invalid anyway
6413 for a parameter of type pointer-to-object. */
6414
6415 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6416 /* Non-type template parameters are OK. */
6417 ;
6418 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6419 /* Null pointer values are OK in C++11. */;
6420 else if (TREE_CODE (expr) != ADDR_EXPR
6421 && TREE_CODE (expr_type) != ARRAY_TYPE)
6422 {
6423 if (VAR_P (expr))
6424 {
6425 if (complain & tf_error)
6426 error ("%qD is not a valid template argument "
6427 "because %qD is a variable, not the address of "
6428 "a variable", expr, expr);
6429 return NULL_TREE;
6430 }
6431 if (POINTER_TYPE_P (expr_type))
6432 {
6433 if (complain & tf_error)
6434 error ("%qE is not a valid template argument for %qT "
6435 "because it is not the address of a variable",
6436 expr, type);
6437 return NULL_TREE;
6438 }
6439 /* Other values, like integer constants, might be valid
6440 non-type arguments of some other type. */
6441 return error_mark_node;
6442 }
6443 else
6444 {
6445 tree decl;
6446
6447 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6448 ? TREE_OPERAND (expr, 0) : expr);
6449 if (!VAR_P (decl))
6450 {
6451 if (complain & tf_error)
6452 error ("%qE is not a valid template argument of type %qT "
6453 "because %qE is not a variable", expr, type, decl);
6454 return NULL_TREE;
6455 }
6456 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6457 {
6458 if (complain & tf_error)
6459 error ("%qE is not a valid template argument of type %qT "
6460 "because %qD does not have external linkage",
6461 expr, type, decl);
6462 return NULL_TREE;
6463 }
6464 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6465 {
6466 if (complain & tf_error)
6467 error ("%qE is not a valid template argument of type %qT "
6468 "because %qD has no linkage", expr, type, decl);
6469 return NULL_TREE;
6470 }
6471 }
6472
6473 expr = decay_conversion (expr, complain);
6474 if (expr == error_mark_node)
6475 return error_mark_node;
6476
6477 expr = perform_qualification_conversions (type, expr);
6478 if (expr == error_mark_node)
6479 return error_mark_node;
6480 }
6481 /* [temp.arg.nontype]/5, bullet 3
6482
6483 For a non-type template-parameter of type reference to object, no
6484 conversions apply. The type referred to by the reference may be more
6485 cv-qualified than the (otherwise identical) type of the
6486 template-argument. The template-parameter is bound directly to the
6487 template-argument, which must be an lvalue. */
6488 else if (TYPE_REF_OBJ_P (type))
6489 {
6490 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6491 expr_type))
6492 return error_mark_node;
6493
6494 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6495 {
6496 if (complain & tf_error)
6497 error ("%qE is not a valid template argument for type %qT "
6498 "because of conflicts in cv-qualification", expr, type);
6499 return NULL_TREE;
6500 }
6501
6502 if (!real_lvalue_p (expr))
6503 {
6504 if (complain & tf_error)
6505 error ("%qE is not a valid template argument for type %qT "
6506 "because it is not an lvalue", expr, type);
6507 return NULL_TREE;
6508 }
6509
6510 /* [temp.arg.nontype]/1
6511
6512 A template-argument for a non-type, non-template template-parameter
6513 shall be one of: [...]
6514
6515 -- the address of an object or function with external linkage. */
6516 if (INDIRECT_REF_P (expr)
6517 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6518 {
6519 expr = TREE_OPERAND (expr, 0);
6520 if (DECL_P (expr))
6521 {
6522 if (complain & tf_error)
6523 error ("%q#D is not a valid template argument for type %qT "
6524 "because a reference variable does not have a constant "
6525 "address", expr, type);
6526 return NULL_TREE;
6527 }
6528 }
6529
6530 if (!DECL_P (expr))
6531 {
6532 if (complain & tf_error)
6533 error ("%qE is not a valid template argument for type %qT "
6534 "because it is not an object with linkage",
6535 expr, type);
6536 return NULL_TREE;
6537 }
6538
6539 /* DR 1155 allows internal linkage in C++11 and up. */
6540 linkage_kind linkage = decl_linkage (expr);
6541 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6542 {
6543 if (complain & tf_error)
6544 error ("%qE is not a valid template argument for type %qT "
6545 "because object %qD does not have linkage",
6546 expr, type, expr);
6547 return NULL_TREE;
6548 }
6549
6550 expr = build_nop (type, build_address (expr));
6551 }
6552 /* [temp.arg.nontype]/5, bullet 4
6553
6554 For a non-type template-parameter of type pointer to function, only
6555 the function-to-pointer conversion (_conv.func_) is applied. If the
6556 template-argument represents a set of overloaded functions (or a
6557 pointer to such), the matching function is selected from the set
6558 (_over.over_). */
6559 else if (TYPE_PTRFN_P (type))
6560 {
6561 /* If the argument is a template-id, we might not have enough
6562 context information to decay the pointer. */
6563 if (!type_unknown_p (expr_type))
6564 {
6565 expr = decay_conversion (expr, complain);
6566 if (expr == error_mark_node)
6567 return error_mark_node;
6568 }
6569
6570 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6571 /* Null pointer values are OK in C++11. */
6572 return perform_qualification_conversions (type, expr);
6573
6574 expr = convert_nontype_argument_function (type, expr, complain);
6575 if (!expr || expr == error_mark_node)
6576 return expr;
6577 }
6578 /* [temp.arg.nontype]/5, bullet 5
6579
6580 For a non-type template-parameter of type reference to function, no
6581 conversions apply. If the template-argument represents a set of
6582 overloaded functions, the matching function is selected from the set
6583 (_over.over_). */
6584 else if (TYPE_REFFN_P (type))
6585 {
6586 if (TREE_CODE (expr) == ADDR_EXPR)
6587 {
6588 if (complain & tf_error)
6589 {
6590 error ("%qE is not a valid template argument for type %qT "
6591 "because it is a pointer", expr, type);
6592 inform (input_location, "try using %qE instead",
6593 TREE_OPERAND (expr, 0));
6594 }
6595 return NULL_TREE;
6596 }
6597
6598 expr = convert_nontype_argument_function (type, expr, complain);
6599 if (!expr || expr == error_mark_node)
6600 return expr;
6601
6602 expr = build_nop (type, build_address (expr));
6603 }
6604 /* [temp.arg.nontype]/5, bullet 6
6605
6606 For a non-type template-parameter of type pointer to member function,
6607 no conversions apply. If the template-argument represents a set of
6608 overloaded member functions, the matching member function is selected
6609 from the set (_over.over_). */
6610 else if (TYPE_PTRMEMFUNC_P (type))
6611 {
6612 expr = instantiate_type (type, expr, tf_none);
6613 if (expr == error_mark_node)
6614 return error_mark_node;
6615
6616 /* [temp.arg.nontype] bullet 1 says the pointer to member
6617 expression must be a pointer-to-member constant. */
6618 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6619 return error_mark_node;
6620
6621 /* There is no way to disable standard conversions in
6622 resolve_address_of_overloaded_function (called by
6623 instantiate_type). It is possible that the call succeeded by
6624 converting &B::I to &D::I (where B is a base of D), so we need
6625 to reject this conversion here.
6626
6627 Actually, even if there was a way to disable standard conversions,
6628 it would still be better to reject them here so that we can
6629 provide a superior diagnostic. */
6630 if (!same_type_p (TREE_TYPE (expr), type))
6631 {
6632 if (complain & tf_error)
6633 {
6634 error ("%qE is not a valid template argument for type %qT "
6635 "because it is of type %qT", expr, type,
6636 TREE_TYPE (expr));
6637 /* If we are just one standard conversion off, explain. */
6638 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6639 inform (input_location,
6640 "standard conversions are not allowed in this context");
6641 }
6642 return NULL_TREE;
6643 }
6644 }
6645 /* [temp.arg.nontype]/5, bullet 7
6646
6647 For a non-type template-parameter of type pointer to data member,
6648 qualification conversions (_conv.qual_) are applied. */
6649 else if (TYPE_PTRDATAMEM_P (type))
6650 {
6651 /* [temp.arg.nontype] bullet 1 says the pointer to member
6652 expression must be a pointer-to-member constant. */
6653 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6654 return error_mark_node;
6655
6656 expr = perform_qualification_conversions (type, expr);
6657 if (expr == error_mark_node)
6658 return expr;
6659 }
6660 else if (NULLPTR_TYPE_P (type))
6661 {
6662 if (expr != nullptr_node)
6663 {
6664 if (complain & tf_error)
6665 error ("%qE is not a valid template argument for type %qT "
6666 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6667 return NULL_TREE;
6668 }
6669 return expr;
6670 }
6671 /* A template non-type parameter must be one of the above. */
6672 else
6673 gcc_unreachable ();
6674
6675 /* Sanity check: did we actually convert the argument to the
6676 right type? */
6677 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6678 (type, TREE_TYPE (expr)));
6679 return convert_from_reference (expr);
6680 }
6681
6682 /* Subroutine of coerce_template_template_parms, which returns 1 if
6683 PARM_PARM and ARG_PARM match using the rule for the template
6684 parameters of template template parameters. Both PARM and ARG are
6685 template parameters; the rest of the arguments are the same as for
6686 coerce_template_template_parms.
6687 */
6688 static int
6689 coerce_template_template_parm (tree parm,
6690 tree arg,
6691 tsubst_flags_t complain,
6692 tree in_decl,
6693 tree outer_args)
6694 {
6695 if (arg == NULL_TREE || error_operand_p (arg)
6696 || parm == NULL_TREE || error_operand_p (parm))
6697 return 0;
6698
6699 if (TREE_CODE (arg) != TREE_CODE (parm))
6700 return 0;
6701
6702 switch (TREE_CODE (parm))
6703 {
6704 case TEMPLATE_DECL:
6705 /* We encounter instantiations of templates like
6706 template <template <template <class> class> class TT>
6707 class C; */
6708 {
6709 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6710 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6711
6712 if (!coerce_template_template_parms
6713 (parmparm, argparm, complain, in_decl, outer_args))
6714 return 0;
6715 }
6716 /* Fall through. */
6717
6718 case TYPE_DECL:
6719 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6720 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6721 /* Argument is a parameter pack but parameter is not. */
6722 return 0;
6723 break;
6724
6725 case PARM_DECL:
6726 /* The tsubst call is used to handle cases such as
6727
6728 template <int> class C {};
6729 template <class T, template <T> class TT> class D {};
6730 D<int, C> d;
6731
6732 i.e. the parameter list of TT depends on earlier parameters. */
6733 if (!uses_template_parms (TREE_TYPE (arg)))
6734 {
6735 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6736 if (!uses_template_parms (t)
6737 && !same_type_p (t, TREE_TYPE (arg)))
6738 return 0;
6739 }
6740
6741 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6742 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6743 /* Argument is a parameter pack but parameter is not. */
6744 return 0;
6745
6746 break;
6747
6748 default:
6749 gcc_unreachable ();
6750 }
6751
6752 return 1;
6753 }
6754
6755
6756 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6757 template template parameters. Both PARM_PARMS and ARG_PARMS are
6758 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6759 or PARM_DECL.
6760
6761 Consider the example:
6762 template <class T> class A;
6763 template<template <class U> class TT> class B;
6764
6765 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6766 the parameters to A, and OUTER_ARGS contains A. */
6767
6768 static int
6769 coerce_template_template_parms (tree parm_parms,
6770 tree arg_parms,
6771 tsubst_flags_t complain,
6772 tree in_decl,
6773 tree outer_args)
6774 {
6775 int nparms, nargs, i;
6776 tree parm, arg;
6777 int variadic_p = 0;
6778
6779 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6780 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6781
6782 nparms = TREE_VEC_LENGTH (parm_parms);
6783 nargs = TREE_VEC_LENGTH (arg_parms);
6784
6785 /* Determine whether we have a parameter pack at the end of the
6786 template template parameter's template parameter list. */
6787 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6788 {
6789 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6790
6791 if (error_operand_p (parm))
6792 return 0;
6793
6794 switch (TREE_CODE (parm))
6795 {
6796 case TEMPLATE_DECL:
6797 case TYPE_DECL:
6798 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6799 variadic_p = 1;
6800 break;
6801
6802 case PARM_DECL:
6803 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6804 variadic_p = 1;
6805 break;
6806
6807 default:
6808 gcc_unreachable ();
6809 }
6810 }
6811
6812 if (nargs != nparms
6813 && !(variadic_p && nargs >= nparms - 1))
6814 return 0;
6815
6816 /* Check all of the template parameters except the parameter pack at
6817 the end (if any). */
6818 for (i = 0; i < nparms - variadic_p; ++i)
6819 {
6820 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6821 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6822 continue;
6823
6824 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6825 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6826
6827 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6828 outer_args))
6829 return 0;
6830
6831 }
6832
6833 if (variadic_p)
6834 {
6835 /* Check each of the template parameters in the template
6836 argument against the template parameter pack at the end of
6837 the template template parameter. */
6838 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6839 return 0;
6840
6841 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6842
6843 for (; i < nargs; ++i)
6844 {
6845 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6846 continue;
6847
6848 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6849
6850 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6851 outer_args))
6852 return 0;
6853 }
6854 }
6855
6856 return 1;
6857 }
6858
6859 /* Verifies that the deduced template arguments (in TARGS) for the
6860 template template parameters (in TPARMS) represent valid bindings,
6861 by comparing the template parameter list of each template argument
6862 to the template parameter list of its corresponding template
6863 template parameter, in accordance with DR150. This
6864 routine can only be called after all template arguments have been
6865 deduced. It will return TRUE if all of the template template
6866 parameter bindings are okay, FALSE otherwise. */
6867 bool
6868 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6869 {
6870 int i, ntparms = TREE_VEC_LENGTH (tparms);
6871 bool ret = true;
6872
6873 /* We're dealing with template parms in this process. */
6874 ++processing_template_decl;
6875
6876 targs = INNERMOST_TEMPLATE_ARGS (targs);
6877
6878 for (i = 0; i < ntparms; ++i)
6879 {
6880 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6881 tree targ = TREE_VEC_ELT (targs, i);
6882
6883 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6884 {
6885 tree packed_args = NULL_TREE;
6886 int idx, len = 1;
6887
6888 if (ARGUMENT_PACK_P (targ))
6889 {
6890 /* Look inside the argument pack. */
6891 packed_args = ARGUMENT_PACK_ARGS (targ);
6892 len = TREE_VEC_LENGTH (packed_args);
6893 }
6894
6895 for (idx = 0; idx < len; ++idx)
6896 {
6897 tree targ_parms = NULL_TREE;
6898
6899 if (packed_args)
6900 /* Extract the next argument from the argument
6901 pack. */
6902 targ = TREE_VEC_ELT (packed_args, idx);
6903
6904 if (PACK_EXPANSION_P (targ))
6905 /* Look at the pattern of the pack expansion. */
6906 targ = PACK_EXPANSION_PATTERN (targ);
6907
6908 /* Extract the template parameters from the template
6909 argument. */
6910 if (TREE_CODE (targ) == TEMPLATE_DECL)
6911 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6912 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6913 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6914
6915 /* Verify that we can coerce the template template
6916 parameters from the template argument to the template
6917 parameter. This requires an exact match. */
6918 if (targ_parms
6919 && !coerce_template_template_parms
6920 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6921 targ_parms,
6922 tf_none,
6923 tparm,
6924 targs))
6925 {
6926 ret = false;
6927 goto out;
6928 }
6929 }
6930 }
6931 }
6932
6933 out:
6934
6935 --processing_template_decl;
6936 return ret;
6937 }
6938
6939 /* Since type attributes aren't mangled, we need to strip them from
6940 template type arguments. */
6941
6942 static tree
6943 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6944 {
6945 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6946 return arg;
6947 bool removed_attributes = false;
6948 tree canon = strip_typedefs (arg, &removed_attributes);
6949 if (removed_attributes
6950 && (complain & tf_warning))
6951 warning (OPT_Wignored_attributes,
6952 "ignoring attributes on template argument %qT", arg);
6953 return canon;
6954 }
6955
6956 // A template declaration can be substituted for a constrained
6957 // template template parameter only when the argument is more
6958 // constrained than the parameter.
6959 static bool
6960 is_compatible_template_arg (tree parm, tree arg)
6961 {
6962 tree parm_cons = get_constraints (parm);
6963
6964 /* For now, allow constrained template template arguments
6965 and unconstrained template template parameters. */
6966 if (parm_cons == NULL_TREE)
6967 return true;
6968
6969 tree arg_cons = get_constraints (arg);
6970
6971 // If the template parameter is constrained, we need to rewrite its
6972 // constraints in terms of the ARG's template parameters. This ensures
6973 // that all of the template parameter types will have the same depth.
6974 //
6975 // Note that this is only valid when coerce_template_template_parm is
6976 // true for the innermost template parameters of PARM and ARG. In other
6977 // words, because coercion is successful, this conversion will be valid.
6978 if (parm_cons)
6979 {
6980 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6981 parm_cons = tsubst_constraint_info (parm_cons,
6982 INNERMOST_TEMPLATE_ARGS (args),
6983 tf_none, NULL_TREE);
6984 if (parm_cons == error_mark_node)
6985 return false;
6986 }
6987
6988 return subsumes (parm_cons, arg_cons);
6989 }
6990
6991 // Convert a placeholder argument into a binding to the original
6992 // parameter. The original parameter is saved as the TREE_TYPE of
6993 // ARG.
6994 static inline tree
6995 convert_wildcard_argument (tree parm, tree arg)
6996 {
6997 TREE_TYPE (arg) = parm;
6998 return arg;
6999 }
7000
7001 /* Convert the indicated template ARG as necessary to match the
7002 indicated template PARM. Returns the converted ARG, or
7003 error_mark_node if the conversion was unsuccessful. Error and
7004 warning messages are issued under control of COMPLAIN. This
7005 conversion is for the Ith parameter in the parameter list. ARGS is
7006 the full set of template arguments deduced so far. */
7007
7008 static tree
7009 convert_template_argument (tree parm,
7010 tree arg,
7011 tree args,
7012 tsubst_flags_t complain,
7013 int i,
7014 tree in_decl)
7015 {
7016 tree orig_arg;
7017 tree val;
7018 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7019
7020 if (parm == error_mark_node)
7021 return error_mark_node;
7022
7023 /* Trivially convert placeholders. */
7024 if (TREE_CODE (arg) == WILDCARD_DECL)
7025 return convert_wildcard_argument (parm, arg);
7026
7027 if (TREE_CODE (arg) == TREE_LIST
7028 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7029 {
7030 /* The template argument was the name of some
7031 member function. That's usually
7032 invalid, but static members are OK. In any
7033 case, grab the underlying fields/functions
7034 and issue an error later if required. */
7035 orig_arg = TREE_VALUE (arg);
7036 TREE_TYPE (arg) = unknown_type_node;
7037 }
7038
7039 orig_arg = arg;
7040
7041 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7042 requires_type = (TREE_CODE (parm) == TYPE_DECL
7043 || requires_tmpl_type);
7044
7045 /* When determining whether an argument pack expansion is a template,
7046 look at the pattern. */
7047 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7048 arg = PACK_EXPANSION_PATTERN (arg);
7049
7050 /* Deal with an injected-class-name used as a template template arg. */
7051 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7052 {
7053 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7054 if (TREE_CODE (t) == TEMPLATE_DECL)
7055 {
7056 if (cxx_dialect >= cxx11)
7057 /* OK under DR 1004. */;
7058 else if (complain & tf_warning_or_error)
7059 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7060 " used as template template argument", TYPE_NAME (arg));
7061 else if (flag_pedantic_errors)
7062 t = arg;
7063
7064 arg = t;
7065 }
7066 }
7067
7068 is_tmpl_type =
7069 ((TREE_CODE (arg) == TEMPLATE_DECL
7070 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7071 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7072 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7073 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7074
7075 if (is_tmpl_type
7076 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7077 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7078 arg = TYPE_STUB_DECL (arg);
7079
7080 is_type = TYPE_P (arg) || is_tmpl_type;
7081
7082 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7083 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7084 {
7085 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7086 {
7087 if (complain & tf_error)
7088 error ("invalid use of destructor %qE as a type", orig_arg);
7089 return error_mark_node;
7090 }
7091
7092 permerror (input_location,
7093 "to refer to a type member of a template parameter, "
7094 "use %<typename %E%>", orig_arg);
7095
7096 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7097 TREE_OPERAND (arg, 1),
7098 typename_type,
7099 complain);
7100 arg = orig_arg;
7101 is_type = 1;
7102 }
7103 if (is_type != requires_type)
7104 {
7105 if (in_decl)
7106 {
7107 if (complain & tf_error)
7108 {
7109 error ("type/value mismatch at argument %d in template "
7110 "parameter list for %qD",
7111 i + 1, in_decl);
7112 if (is_type)
7113 inform (input_location,
7114 " expected a constant of type %qT, got %qT",
7115 TREE_TYPE (parm),
7116 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7117 else if (requires_tmpl_type)
7118 inform (input_location,
7119 " expected a class template, got %qE", orig_arg);
7120 else
7121 inform (input_location,
7122 " expected a type, got %qE", orig_arg);
7123 }
7124 }
7125 return error_mark_node;
7126 }
7127 if (is_tmpl_type ^ requires_tmpl_type)
7128 {
7129 if (in_decl && (complain & tf_error))
7130 {
7131 error ("type/value mismatch at argument %d in template "
7132 "parameter list for %qD",
7133 i + 1, in_decl);
7134 if (is_tmpl_type)
7135 inform (input_location,
7136 " expected a type, got %qT", DECL_NAME (arg));
7137 else
7138 inform (input_location,
7139 " expected a class template, got %qT", orig_arg);
7140 }
7141 return error_mark_node;
7142 }
7143
7144 if (is_type)
7145 {
7146 if (requires_tmpl_type)
7147 {
7148 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7149 val = orig_arg;
7150 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7151 /* The number of argument required is not known yet.
7152 Just accept it for now. */
7153 val = TREE_TYPE (arg);
7154 else
7155 {
7156 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7157 tree argparm;
7158
7159 /* Strip alias templates that are equivalent to another
7160 template. */
7161 arg = get_underlying_template (arg);
7162 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7163
7164 if (coerce_template_template_parms (parmparm, argparm,
7165 complain, in_decl,
7166 args))
7167 {
7168 val = arg;
7169
7170 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7171 TEMPLATE_DECL. */
7172 if (val != error_mark_node)
7173 {
7174 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7175 val = TREE_TYPE (val);
7176 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7177 val = make_pack_expansion (val);
7178 }
7179 }
7180 else
7181 {
7182 if (in_decl && (complain & tf_error))
7183 {
7184 error ("type/value mismatch at argument %d in "
7185 "template parameter list for %qD",
7186 i + 1, in_decl);
7187 inform (input_location,
7188 " expected a template of type %qD, got %qT",
7189 parm, orig_arg);
7190 }
7191
7192 val = error_mark_node;
7193 }
7194
7195 // Check that the constraints are compatible before allowing the
7196 // substitution.
7197 if (val != error_mark_node)
7198 if (!is_compatible_template_arg (parm, arg))
7199 {
7200 if (in_decl && (complain & tf_error))
7201 {
7202 error ("constraint mismatch at argument %d in "
7203 "template parameter list for %qD",
7204 i + 1, in_decl);
7205 inform (input_location, " expected %qD but got %qD",
7206 parm, arg);
7207 }
7208 val = error_mark_node;
7209 }
7210 }
7211 }
7212 else
7213 val = orig_arg;
7214 /* We only form one instance of each template specialization.
7215 Therefore, if we use a non-canonical variant (i.e., a
7216 typedef), any future messages referring to the type will use
7217 the typedef, which is confusing if those future uses do not
7218 themselves also use the typedef. */
7219 if (TYPE_P (val))
7220 val = canonicalize_type_argument (val, complain);
7221 }
7222 else
7223 {
7224 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7225
7226 if (invalid_nontype_parm_type_p (t, complain))
7227 return error_mark_node;
7228
7229 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7230 {
7231 if (same_type_p (t, TREE_TYPE (orig_arg)))
7232 val = orig_arg;
7233 else
7234 {
7235 /* Not sure if this is reachable, but it doesn't hurt
7236 to be robust. */
7237 error ("type mismatch in nontype parameter pack");
7238 val = error_mark_node;
7239 }
7240 }
7241 else if (!dependent_template_arg_p (orig_arg)
7242 && !uses_template_parms (t))
7243 /* We used to call digest_init here. However, digest_init
7244 will report errors, which we don't want when complain
7245 is zero. More importantly, digest_init will try too
7246 hard to convert things: for example, `0' should not be
7247 converted to pointer type at this point according to
7248 the standard. Accepting this is not merely an
7249 extension, since deciding whether or not these
7250 conversions can occur is part of determining which
7251 function template to call, or whether a given explicit
7252 argument specification is valid. */
7253 val = convert_nontype_argument (t, orig_arg, complain);
7254 else
7255 {
7256 bool removed_attr = false;
7257 val = strip_typedefs_expr (orig_arg, &removed_attr);
7258 }
7259
7260 if (val == NULL_TREE)
7261 val = error_mark_node;
7262 else if (val == error_mark_node && (complain & tf_error))
7263 error ("could not convert template argument %qE to %qT", orig_arg, t);
7264
7265 if (INDIRECT_REF_P (val))
7266 {
7267 /* Reject template arguments that are references to built-in
7268 functions with no library fallbacks. */
7269 const_tree inner = TREE_OPERAND (val, 0);
7270 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7271 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7272 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7273 && 0 < TREE_OPERAND_LENGTH (inner)
7274 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7275 return error_mark_node;
7276 }
7277
7278 if (TREE_CODE (val) == SCOPE_REF)
7279 {
7280 /* Strip typedefs from the SCOPE_REF. */
7281 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7282 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7283 complain);
7284 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7285 QUALIFIED_NAME_IS_TEMPLATE (val));
7286 }
7287 }
7288
7289 return val;
7290 }
7291
7292 /* Coerces the remaining template arguments in INNER_ARGS (from
7293 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7294 Returns the coerced argument pack. PARM_IDX is the position of this
7295 parameter in the template parameter list. ARGS is the original
7296 template argument list. */
7297 static tree
7298 coerce_template_parameter_pack (tree parms,
7299 int parm_idx,
7300 tree args,
7301 tree inner_args,
7302 int arg_idx,
7303 tree new_args,
7304 int* lost,
7305 tree in_decl,
7306 tsubst_flags_t complain)
7307 {
7308 tree parm = TREE_VEC_ELT (parms, parm_idx);
7309 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7310 tree packed_args;
7311 tree argument_pack;
7312 tree packed_parms = NULL_TREE;
7313
7314 if (arg_idx > nargs)
7315 arg_idx = nargs;
7316
7317 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7318 {
7319 /* When the template parameter is a non-type template parameter pack
7320 or template template parameter pack whose type or template
7321 parameters use parameter packs, we know exactly how many arguments
7322 we are looking for. Build a vector of the instantiated decls for
7323 these template parameters in PACKED_PARMS. */
7324 /* We can't use make_pack_expansion here because it would interpret a
7325 _DECL as a use rather than a declaration. */
7326 tree decl = TREE_VALUE (parm);
7327 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7328 SET_PACK_EXPANSION_PATTERN (exp, decl);
7329 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7330 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7331
7332 TREE_VEC_LENGTH (args)--;
7333 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7334 TREE_VEC_LENGTH (args)++;
7335
7336 if (packed_parms == error_mark_node)
7337 return error_mark_node;
7338
7339 /* If we're doing a partial instantiation of a member template,
7340 verify that all of the types used for the non-type
7341 template parameter pack are, in fact, valid for non-type
7342 template parameters. */
7343 if (arg_idx < nargs
7344 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7345 {
7346 int j, len = TREE_VEC_LENGTH (packed_parms);
7347 for (j = 0; j < len; ++j)
7348 {
7349 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7350 if (invalid_nontype_parm_type_p (t, complain))
7351 return error_mark_node;
7352 }
7353 /* We don't know how many args we have yet, just
7354 use the unconverted ones for now. */
7355 return NULL_TREE;
7356 }
7357
7358 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7359 }
7360 /* Check if we have a placeholder pack, which indicates we're
7361 in the context of a introduction list. In that case we want
7362 to match this pack to the single placeholder. */
7363 else if (arg_idx < nargs
7364 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7365 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7366 {
7367 nargs = arg_idx + 1;
7368 packed_args = make_tree_vec (1);
7369 }
7370 else
7371 packed_args = make_tree_vec (nargs - arg_idx);
7372
7373 /* Convert the remaining arguments, which will be a part of the
7374 parameter pack "parm". */
7375 for (; arg_idx < nargs; ++arg_idx)
7376 {
7377 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7378 tree actual_parm = TREE_VALUE (parm);
7379 int pack_idx = arg_idx - parm_idx;
7380
7381 if (packed_parms)
7382 {
7383 /* Once we've packed as many args as we have types, stop. */
7384 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7385 break;
7386 else if (PACK_EXPANSION_P (arg))
7387 /* We don't know how many args we have yet, just
7388 use the unconverted ones for now. */
7389 return NULL_TREE;
7390 else
7391 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7392 }
7393
7394 if (arg == error_mark_node)
7395 {
7396 if (complain & tf_error)
7397 error ("template argument %d is invalid", arg_idx + 1);
7398 }
7399 else
7400 arg = convert_template_argument (actual_parm,
7401 arg, new_args, complain, parm_idx,
7402 in_decl);
7403 if (arg == error_mark_node)
7404 (*lost)++;
7405 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7406 }
7407
7408 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7409 && TREE_VEC_LENGTH (packed_args) > 0)
7410 {
7411 if (complain & tf_error)
7412 error ("wrong number of template arguments (%d, should be %d)",
7413 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7414 return error_mark_node;
7415 }
7416
7417 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7418 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7419 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7420 else
7421 {
7422 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7423 TREE_TYPE (argument_pack)
7424 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7425 TREE_CONSTANT (argument_pack) = 1;
7426 }
7427
7428 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7429 if (CHECKING_P)
7430 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7431 TREE_VEC_LENGTH (packed_args));
7432 return argument_pack;
7433 }
7434
7435 /* Returns the number of pack expansions in the template argument vector
7436 ARGS. */
7437
7438 static int
7439 pack_expansion_args_count (tree args)
7440 {
7441 int i;
7442 int count = 0;
7443 if (args)
7444 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7445 {
7446 tree elt = TREE_VEC_ELT (args, i);
7447 if (elt && PACK_EXPANSION_P (elt))
7448 ++count;
7449 }
7450 return count;
7451 }
7452
7453 /* Convert all template arguments to their appropriate types, and
7454 return a vector containing the innermost resulting template
7455 arguments. If any error occurs, return error_mark_node. Error and
7456 warning messages are issued under control of COMPLAIN.
7457
7458 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7459 for arguments not specified in ARGS. Otherwise, if
7460 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7461 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7462 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7463 ARGS. */
7464
7465 static tree
7466 coerce_template_parms (tree parms,
7467 tree args,
7468 tree in_decl,
7469 tsubst_flags_t complain,
7470 bool require_all_args,
7471 bool use_default_args)
7472 {
7473 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7474 tree orig_inner_args;
7475 tree inner_args;
7476 tree new_args;
7477 tree new_inner_args;
7478 int saved_unevaluated_operand;
7479 int saved_inhibit_evaluation_warnings;
7480
7481 /* When used as a boolean value, indicates whether this is a
7482 variadic template parameter list. Since it's an int, we can also
7483 subtract it from nparms to get the number of non-variadic
7484 parameters. */
7485 int variadic_p = 0;
7486 int variadic_args_p = 0;
7487 int post_variadic_parms = 0;
7488
7489 /* Likewise for parameters with default arguments. */
7490 int default_p = 0;
7491
7492 if (args == error_mark_node)
7493 return error_mark_node;
7494
7495 nparms = TREE_VEC_LENGTH (parms);
7496
7497 /* Determine if there are any parameter packs or default arguments. */
7498 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7499 {
7500 tree parm = TREE_VEC_ELT (parms, parm_idx);
7501 if (variadic_p)
7502 ++post_variadic_parms;
7503 if (template_parameter_pack_p (TREE_VALUE (parm)))
7504 ++variadic_p;
7505 if (TREE_PURPOSE (parm))
7506 ++default_p;
7507 }
7508
7509 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7510 /* If there are no parameters that follow a parameter pack, we need to
7511 expand any argument packs so that we can deduce a parameter pack from
7512 some non-packed args followed by an argument pack, as in variadic85.C.
7513 If there are such parameters, we need to leave argument packs intact
7514 so the arguments are assigned properly. This can happen when dealing
7515 with a nested class inside a partial specialization of a class
7516 template, as in variadic92.C, or when deducing a template parameter pack
7517 from a sub-declarator, as in variadic114.C. */
7518 if (!post_variadic_parms)
7519 inner_args = expand_template_argument_pack (inner_args);
7520
7521 /* Count any pack expansion args. */
7522 variadic_args_p = pack_expansion_args_count (inner_args);
7523
7524 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7525 if ((nargs > nparms && !variadic_p)
7526 || (nargs < nparms - variadic_p
7527 && require_all_args
7528 && !variadic_args_p
7529 && (!use_default_args
7530 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7531 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7532 {
7533 if (complain & tf_error)
7534 {
7535 if (variadic_p || default_p)
7536 {
7537 nparms -= variadic_p + default_p;
7538 error ("wrong number of template arguments "
7539 "(%d, should be at least %d)", nargs, nparms);
7540 }
7541 else
7542 error ("wrong number of template arguments "
7543 "(%d, should be %d)", nargs, nparms);
7544
7545 if (in_decl)
7546 inform (DECL_SOURCE_LOCATION (in_decl),
7547 "provided for %qD", in_decl);
7548 }
7549
7550 return error_mark_node;
7551 }
7552 /* We can't pass a pack expansion to a non-pack parameter of an alias
7553 template (DR 1430). */
7554 else if (in_decl
7555 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7556 || concept_template_p (in_decl))
7557 && variadic_args_p
7558 && nargs - variadic_args_p < nparms - variadic_p)
7559 {
7560 if (complain & tf_error)
7561 {
7562 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7563 {
7564 tree arg = TREE_VEC_ELT (inner_args, i);
7565 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7566
7567 if (PACK_EXPANSION_P (arg)
7568 && !template_parameter_pack_p (parm))
7569 {
7570 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7571 error_at (location_of (arg),
7572 "pack expansion argument for non-pack parameter "
7573 "%qD of alias template %qD", parm, in_decl);
7574 else
7575 error_at (location_of (arg),
7576 "pack expansion argument for non-pack parameter "
7577 "%qD of concept %qD", parm, in_decl);
7578 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7579 goto found;
7580 }
7581 }
7582 gcc_unreachable ();
7583 found:;
7584 }
7585 return error_mark_node;
7586 }
7587
7588 /* We need to evaluate the template arguments, even though this
7589 template-id may be nested within a "sizeof". */
7590 saved_unevaluated_operand = cp_unevaluated_operand;
7591 cp_unevaluated_operand = 0;
7592 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7593 c_inhibit_evaluation_warnings = 0;
7594 new_inner_args = make_tree_vec (nparms);
7595 new_args = add_outermost_template_args (args, new_inner_args);
7596 int pack_adjust = 0;
7597 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7598 {
7599 tree arg;
7600 tree parm;
7601
7602 /* Get the Ith template parameter. */
7603 parm = TREE_VEC_ELT (parms, parm_idx);
7604
7605 if (parm == error_mark_node)
7606 {
7607 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7608 continue;
7609 }
7610
7611 /* Calculate the next argument. */
7612 if (arg_idx < nargs)
7613 arg = TREE_VEC_ELT (inner_args, arg_idx);
7614 else
7615 arg = NULL_TREE;
7616
7617 if (template_parameter_pack_p (TREE_VALUE (parm))
7618 && !(arg && ARGUMENT_PACK_P (arg)))
7619 {
7620 /* Some arguments will be placed in the
7621 template parameter pack PARM. */
7622 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7623 inner_args, arg_idx,
7624 new_args, &lost,
7625 in_decl, complain);
7626
7627 if (arg == NULL_TREE)
7628 {
7629 /* We don't know how many args we have yet, just use the
7630 unconverted (and still packed) ones for now. */
7631 new_inner_args = orig_inner_args;
7632 arg_idx = nargs;
7633 break;
7634 }
7635
7636 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7637
7638 /* Store this argument. */
7639 if (arg == error_mark_node)
7640 {
7641 lost++;
7642 /* We are done with all of the arguments. */
7643 arg_idx = nargs;
7644 }
7645 else
7646 {
7647 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7648 arg_idx += pack_adjust;
7649 }
7650
7651 continue;
7652 }
7653 else if (arg)
7654 {
7655 if (PACK_EXPANSION_P (arg))
7656 {
7657 /* "If every valid specialization of a variadic template
7658 requires an empty template parameter pack, the template is
7659 ill-formed, no diagnostic required." So check that the
7660 pattern works with this parameter. */
7661 tree pattern = PACK_EXPANSION_PATTERN (arg);
7662 tree conv = convert_template_argument (TREE_VALUE (parm),
7663 pattern, new_args,
7664 complain, parm_idx,
7665 in_decl);
7666 if (conv == error_mark_node)
7667 {
7668 inform (input_location, "so any instantiation with a "
7669 "non-empty parameter pack would be ill-formed");
7670 ++lost;
7671 }
7672 else if (TYPE_P (conv) && !TYPE_P (pattern))
7673 /* Recover from missing typename. */
7674 TREE_VEC_ELT (inner_args, arg_idx)
7675 = make_pack_expansion (conv);
7676
7677 /* We don't know how many args we have yet, just
7678 use the unconverted ones for now. */
7679 new_inner_args = inner_args;
7680 arg_idx = nargs;
7681 break;
7682 }
7683 }
7684 else if (require_all_args)
7685 {
7686 /* There must be a default arg in this case. */
7687 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7688 complain, in_decl);
7689 /* The position of the first default template argument,
7690 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7691 Record that. */
7692 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7693 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7694 arg_idx - pack_adjust);
7695 }
7696 else
7697 break;
7698
7699 if (arg == error_mark_node)
7700 {
7701 if (complain & tf_error)
7702 error ("template argument %d is invalid", arg_idx + 1);
7703 }
7704 else if (!arg)
7705 /* This only occurs if there was an error in the template
7706 parameter list itself (which we would already have
7707 reported) that we are trying to recover from, e.g., a class
7708 template with a parameter list such as
7709 template<typename..., typename>. */
7710 ++lost;
7711 else
7712 arg = convert_template_argument (TREE_VALUE (parm),
7713 arg, new_args, complain,
7714 parm_idx, in_decl);
7715
7716 if (arg == error_mark_node)
7717 lost++;
7718 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7719 }
7720 cp_unevaluated_operand = saved_unevaluated_operand;
7721 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7722
7723 if (variadic_p && arg_idx < nargs)
7724 {
7725 if (complain & tf_error)
7726 {
7727 error ("wrong number of template arguments "
7728 "(%d, should be %d)", nargs, arg_idx);
7729 if (in_decl)
7730 error ("provided for %q+D", in_decl);
7731 }
7732 return error_mark_node;
7733 }
7734
7735 if (lost)
7736 return error_mark_node;
7737
7738 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7739 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7740 TREE_VEC_LENGTH (new_inner_args));
7741
7742 return new_inner_args;
7743 }
7744
7745 /* Convert all template arguments to their appropriate types, and
7746 return a vector containing the innermost resulting template
7747 arguments. If any error occurs, return error_mark_node. Error and
7748 warning messages are not issued.
7749
7750 Note that no function argument deduction is performed, and default
7751 arguments are used to fill in unspecified arguments. */
7752 tree
7753 coerce_template_parms (tree parms, tree args, tree in_decl)
7754 {
7755 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7756 }
7757
7758 /* Convert all template arguments to their appropriate type, and
7759 instantiate default arguments as needed. This returns a vector
7760 containing the innermost resulting template arguments, or
7761 error_mark_node if unsuccessful. */
7762 tree
7763 coerce_template_parms (tree parms, tree args, tree in_decl,
7764 tsubst_flags_t complain)
7765 {
7766 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7767 }
7768
7769 /* Like coerce_template_parms. If PARMS represents all template
7770 parameters levels, this function returns a vector of vectors
7771 representing all the resulting argument levels. Note that in this
7772 case, only the innermost arguments are coerced because the
7773 outermost ones are supposed to have been coerced already.
7774
7775 Otherwise, if PARMS represents only (the innermost) vector of
7776 parameters, this function returns a vector containing just the
7777 innermost resulting arguments. */
7778
7779 static tree
7780 coerce_innermost_template_parms (tree parms,
7781 tree args,
7782 tree in_decl,
7783 tsubst_flags_t complain,
7784 bool require_all_args,
7785 bool use_default_args)
7786 {
7787 int parms_depth = TMPL_PARMS_DEPTH (parms);
7788 int args_depth = TMPL_ARGS_DEPTH (args);
7789 tree coerced_args;
7790
7791 if (parms_depth > 1)
7792 {
7793 coerced_args = make_tree_vec (parms_depth);
7794 tree level;
7795 int cur_depth;
7796
7797 for (level = parms, cur_depth = parms_depth;
7798 parms_depth > 0 && level != NULL_TREE;
7799 level = TREE_CHAIN (level), --cur_depth)
7800 {
7801 tree l;
7802 if (cur_depth == args_depth)
7803 l = coerce_template_parms (TREE_VALUE (level),
7804 args, in_decl, complain,
7805 require_all_args,
7806 use_default_args);
7807 else
7808 l = TMPL_ARGS_LEVEL (args, cur_depth);
7809
7810 if (l == error_mark_node)
7811 return error_mark_node;
7812
7813 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7814 }
7815 }
7816 else
7817 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7818 args, in_decl, complain,
7819 require_all_args,
7820 use_default_args);
7821 return coerced_args;
7822 }
7823
7824 /* Returns 1 if template args OT and NT are equivalent. */
7825
7826 static int
7827 template_args_equal (tree ot, tree nt)
7828 {
7829 if (nt == ot)
7830 return 1;
7831 if (nt == NULL_TREE || ot == NULL_TREE)
7832 return false;
7833
7834 if (TREE_CODE (nt) == TREE_VEC)
7835 /* For member templates */
7836 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7837 else if (PACK_EXPANSION_P (ot))
7838 return (PACK_EXPANSION_P (nt)
7839 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7840 PACK_EXPANSION_PATTERN (nt))
7841 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7842 PACK_EXPANSION_EXTRA_ARGS (nt)));
7843 else if (ARGUMENT_PACK_P (ot))
7844 {
7845 int i, len;
7846 tree opack, npack;
7847
7848 if (!ARGUMENT_PACK_P (nt))
7849 return 0;
7850
7851 opack = ARGUMENT_PACK_ARGS (ot);
7852 npack = ARGUMENT_PACK_ARGS (nt);
7853 len = TREE_VEC_LENGTH (opack);
7854 if (TREE_VEC_LENGTH (npack) != len)
7855 return 0;
7856 for (i = 0; i < len; ++i)
7857 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7858 TREE_VEC_ELT (npack, i)))
7859 return 0;
7860 return 1;
7861 }
7862 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7863 {
7864 /* We get here probably because we are in the middle of substituting
7865 into the pattern of a pack expansion. In that case the
7866 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7867 interested in. So we want to use the initial pack argument for
7868 the comparison. */
7869 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7870 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7871 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7872 return template_args_equal (ot, nt);
7873 }
7874 else if (TYPE_P (nt))
7875 {
7876 if (!TYPE_P (ot))
7877 return false;
7878 /* Don't treat an alias template specialization with dependent
7879 arguments as equivalent to its underlying type when used as a
7880 template argument; we need them to be distinct so that we
7881 substitute into the specialization arguments at instantiation
7882 time. And aliases can't be equivalent without being ==, so
7883 we don't need to look any deeper. */
7884 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7885 return false;
7886 else
7887 return same_type_p (ot, nt);
7888 }
7889 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7890 return 0;
7891 else
7892 {
7893 /* Try to treat a template non-type argument that has been converted
7894 to the parameter type as equivalent to one that hasn't yet. */
7895 for (enum tree_code code1 = TREE_CODE (ot);
7896 CONVERT_EXPR_CODE_P (code1)
7897 || code1 == NON_LVALUE_EXPR;
7898 code1 = TREE_CODE (ot))
7899 ot = TREE_OPERAND (ot, 0);
7900 for (enum tree_code code2 = TREE_CODE (nt);
7901 CONVERT_EXPR_CODE_P (code2)
7902 || code2 == NON_LVALUE_EXPR;
7903 code2 = TREE_CODE (nt))
7904 nt = TREE_OPERAND (nt, 0);
7905
7906 return cp_tree_equal (ot, nt);
7907 }
7908 }
7909
7910 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7911 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7912 NEWARG_PTR with the offending arguments if they are non-NULL. */
7913
7914 int
7915 comp_template_args (tree oldargs, tree newargs,
7916 tree *oldarg_ptr, tree *newarg_ptr)
7917 {
7918 int i;
7919
7920 if (oldargs == newargs)
7921 return 1;
7922
7923 if (!oldargs || !newargs)
7924 return 0;
7925
7926 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7927 return 0;
7928
7929 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7930 {
7931 tree nt = TREE_VEC_ELT (newargs, i);
7932 tree ot = TREE_VEC_ELT (oldargs, i);
7933
7934 if (! template_args_equal (ot, nt))
7935 {
7936 if (oldarg_ptr != NULL)
7937 *oldarg_ptr = ot;
7938 if (newarg_ptr != NULL)
7939 *newarg_ptr = nt;
7940 return 0;
7941 }
7942 }
7943 return 1;
7944 }
7945
7946 static void
7947 add_pending_template (tree d)
7948 {
7949 tree ti = (TYPE_P (d)
7950 ? CLASSTYPE_TEMPLATE_INFO (d)
7951 : DECL_TEMPLATE_INFO (d));
7952 struct pending_template *pt;
7953 int level;
7954
7955 if (TI_PENDING_TEMPLATE_FLAG (ti))
7956 return;
7957
7958 /* We are called both from instantiate_decl, where we've already had a
7959 tinst_level pushed, and instantiate_template, where we haven't.
7960 Compensate. */
7961 level = !current_tinst_level || current_tinst_level->decl != d;
7962
7963 if (level)
7964 push_tinst_level (d);
7965
7966 pt = ggc_alloc<pending_template> ();
7967 pt->next = NULL;
7968 pt->tinst = current_tinst_level;
7969 if (last_pending_template)
7970 last_pending_template->next = pt;
7971 else
7972 pending_templates = pt;
7973
7974 last_pending_template = pt;
7975
7976 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7977
7978 if (level)
7979 pop_tinst_level ();
7980 }
7981
7982
7983 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7984 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7985 documentation for TEMPLATE_ID_EXPR. */
7986
7987 tree
7988 lookup_template_function (tree fns, tree arglist)
7989 {
7990 tree type;
7991
7992 if (fns == error_mark_node || arglist == error_mark_node)
7993 return error_mark_node;
7994
7995 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7996
7997 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7998 {
7999 error ("%q#D is not a function template", fns);
8000 return error_mark_node;
8001 }
8002
8003 if (BASELINK_P (fns))
8004 {
8005 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8006 unknown_type_node,
8007 BASELINK_FUNCTIONS (fns),
8008 arglist);
8009 return fns;
8010 }
8011
8012 type = TREE_TYPE (fns);
8013 if (TREE_CODE (fns) == OVERLOAD || !type)
8014 type = unknown_type_node;
8015
8016 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8017 }
8018
8019 /* Within the scope of a template class S<T>, the name S gets bound
8020 (in build_self_reference) to a TYPE_DECL for the class, not a
8021 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8022 or one of its enclosing classes, and that type is a template,
8023 return the associated TEMPLATE_DECL. Otherwise, the original
8024 DECL is returned.
8025
8026 Also handle the case when DECL is a TREE_LIST of ambiguous
8027 injected-class-names from different bases. */
8028
8029 tree
8030 maybe_get_template_decl_from_type_decl (tree decl)
8031 {
8032 if (decl == NULL_TREE)
8033 return decl;
8034
8035 /* DR 176: A lookup that finds an injected-class-name (10.2
8036 [class.member.lookup]) can result in an ambiguity in certain cases
8037 (for example, if it is found in more than one base class). If all of
8038 the injected-class-names that are found refer to specializations of
8039 the same class template, and if the name is followed by a
8040 template-argument-list, the reference refers to the class template
8041 itself and not a specialization thereof, and is not ambiguous. */
8042 if (TREE_CODE (decl) == TREE_LIST)
8043 {
8044 tree t, tmpl = NULL_TREE;
8045 for (t = decl; t; t = TREE_CHAIN (t))
8046 {
8047 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8048 if (!tmpl)
8049 tmpl = elt;
8050 else if (tmpl != elt)
8051 break;
8052 }
8053 if (tmpl && t == NULL_TREE)
8054 return tmpl;
8055 else
8056 return decl;
8057 }
8058
8059 return (decl != NULL_TREE
8060 && DECL_SELF_REFERENCE_P (decl)
8061 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8062 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8063 }
8064
8065 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8066 parameters, find the desired type.
8067
8068 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8069
8070 IN_DECL, if non-NULL, is the template declaration we are trying to
8071 instantiate.
8072
8073 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8074 the class we are looking up.
8075
8076 Issue error and warning messages under control of COMPLAIN.
8077
8078 If the template class is really a local class in a template
8079 function, then the FUNCTION_CONTEXT is the function in which it is
8080 being instantiated.
8081
8082 ??? Note that this function is currently called *twice* for each
8083 template-id: the first time from the parser, while creating the
8084 incomplete type (finish_template_type), and the second type during the
8085 real instantiation (instantiate_template_class). This is surely something
8086 that we want to avoid. It also causes some problems with argument
8087 coercion (see convert_nontype_argument for more information on this). */
8088
8089 static tree
8090 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8091 int entering_scope, tsubst_flags_t complain)
8092 {
8093 tree templ = NULL_TREE, parmlist;
8094 tree t;
8095 spec_entry **slot;
8096 spec_entry *entry;
8097 spec_entry elt;
8098 hashval_t hash;
8099
8100 if (identifier_p (d1))
8101 {
8102 tree value = innermost_non_namespace_value (d1);
8103 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8104 templ = value;
8105 else
8106 {
8107 if (context)
8108 push_decl_namespace (context);
8109 templ = lookup_name (d1);
8110 templ = maybe_get_template_decl_from_type_decl (templ);
8111 if (context)
8112 pop_decl_namespace ();
8113 }
8114 if (templ)
8115 context = DECL_CONTEXT (templ);
8116 }
8117 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8118 {
8119 tree type = TREE_TYPE (d1);
8120
8121 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8122 an implicit typename for the second A. Deal with it. */
8123 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8124 type = TREE_TYPE (type);
8125
8126 if (CLASSTYPE_TEMPLATE_INFO (type))
8127 {
8128 templ = CLASSTYPE_TI_TEMPLATE (type);
8129 d1 = DECL_NAME (templ);
8130 }
8131 }
8132 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8133 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8134 {
8135 templ = TYPE_TI_TEMPLATE (d1);
8136 d1 = DECL_NAME (templ);
8137 }
8138 else if (DECL_TYPE_TEMPLATE_P (d1))
8139 {
8140 templ = d1;
8141 d1 = DECL_NAME (templ);
8142 context = DECL_CONTEXT (templ);
8143 }
8144 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8145 {
8146 templ = d1;
8147 d1 = DECL_NAME (templ);
8148 }
8149
8150 /* Issue an error message if we didn't find a template. */
8151 if (! templ)
8152 {
8153 if (complain & tf_error)
8154 error ("%qT is not a template", d1);
8155 return error_mark_node;
8156 }
8157
8158 if (TREE_CODE (templ) != TEMPLATE_DECL
8159 /* Make sure it's a user visible template, if it was named by
8160 the user. */
8161 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8162 && !PRIMARY_TEMPLATE_P (templ)))
8163 {
8164 if (complain & tf_error)
8165 {
8166 error ("non-template type %qT used as a template", d1);
8167 if (in_decl)
8168 error ("for template declaration %q+D", in_decl);
8169 }
8170 return error_mark_node;
8171 }
8172
8173 complain &= ~tf_user;
8174
8175 /* An alias that just changes the name of a template is equivalent to the
8176 other template, so if any of the arguments are pack expansions, strip
8177 the alias to avoid problems with a pack expansion passed to a non-pack
8178 alias template parameter (DR 1430). */
8179 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8180 templ = get_underlying_template (templ);
8181
8182 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8183 {
8184 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8185 template arguments */
8186
8187 tree parm;
8188 tree arglist2;
8189 tree outer;
8190
8191 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8192
8193 /* Consider an example where a template template parameter declared as
8194
8195 template <class T, class U = std::allocator<T> > class TT
8196
8197 The template parameter level of T and U are one level larger than
8198 of TT. To proper process the default argument of U, say when an
8199 instantiation `TT<int>' is seen, we need to build the full
8200 arguments containing {int} as the innermost level. Outer levels,
8201 available when not appearing as default template argument, can be
8202 obtained from the arguments of the enclosing template.
8203
8204 Suppose that TT is later substituted with std::vector. The above
8205 instantiation is `TT<int, std::allocator<T> >' with TT at
8206 level 1, and T at level 2, while the template arguments at level 1
8207 becomes {std::vector} and the inner level 2 is {int}. */
8208
8209 outer = DECL_CONTEXT (templ);
8210 if (outer)
8211 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8212 else if (current_template_parms)
8213 {
8214 /* This is an argument of the current template, so we haven't set
8215 DECL_CONTEXT yet. */
8216 tree relevant_template_parms;
8217
8218 /* Parameter levels that are greater than the level of the given
8219 template template parm are irrelevant. */
8220 relevant_template_parms = current_template_parms;
8221 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8222 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8223 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8224
8225 outer = template_parms_to_args (relevant_template_parms);
8226 }
8227
8228 if (outer)
8229 arglist = add_to_template_args (outer, arglist);
8230
8231 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8232 complain,
8233 /*require_all_args=*/true,
8234 /*use_default_args=*/true);
8235 if (arglist2 == error_mark_node
8236 || (!uses_template_parms (arglist2)
8237 && check_instantiated_args (templ, arglist2, complain)))
8238 return error_mark_node;
8239
8240 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8241 return parm;
8242 }
8243 else
8244 {
8245 tree template_type = TREE_TYPE (templ);
8246 tree gen_tmpl;
8247 tree type_decl;
8248 tree found = NULL_TREE;
8249 int arg_depth;
8250 int parm_depth;
8251 int is_dependent_type;
8252 int use_partial_inst_tmpl = false;
8253
8254 if (template_type == error_mark_node)
8255 /* An error occurred while building the template TEMPL, and a
8256 diagnostic has most certainly been emitted for that
8257 already. Let's propagate that error. */
8258 return error_mark_node;
8259
8260 gen_tmpl = most_general_template (templ);
8261 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8262 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8263 arg_depth = TMPL_ARGS_DEPTH (arglist);
8264
8265 if (arg_depth == 1 && parm_depth > 1)
8266 {
8267 /* We've been given an incomplete set of template arguments.
8268 For example, given:
8269
8270 template <class T> struct S1 {
8271 template <class U> struct S2 {};
8272 template <class U> struct S2<U*> {};
8273 };
8274
8275 we will be called with an ARGLIST of `U*', but the
8276 TEMPLATE will be `template <class T> template
8277 <class U> struct S1<T>::S2'. We must fill in the missing
8278 arguments. */
8279 arglist
8280 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8281 arglist);
8282 arg_depth = TMPL_ARGS_DEPTH (arglist);
8283 }
8284
8285 /* Now we should have enough arguments. */
8286 gcc_assert (parm_depth == arg_depth);
8287
8288 /* From here on, we're only interested in the most general
8289 template. */
8290
8291 /* Calculate the BOUND_ARGS. These will be the args that are
8292 actually tsubst'd into the definition to create the
8293 instantiation. */
8294 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8295 complain,
8296 /*require_all_args=*/true,
8297 /*use_default_args=*/true);
8298
8299 if (arglist == error_mark_node)
8300 /* We were unable to bind the arguments. */
8301 return error_mark_node;
8302
8303 /* In the scope of a template class, explicit references to the
8304 template class refer to the type of the template, not any
8305 instantiation of it. For example, in:
8306
8307 template <class T> class C { void f(C<T>); }
8308
8309 the `C<T>' is just the same as `C'. Outside of the
8310 class, however, such a reference is an instantiation. */
8311 if ((entering_scope
8312 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8313 || currently_open_class (template_type))
8314 /* comp_template_args is expensive, check it last. */
8315 && comp_template_args (TYPE_TI_ARGS (template_type),
8316 arglist))
8317 return template_type;
8318
8319 /* If we already have this specialization, return it. */
8320 elt.tmpl = gen_tmpl;
8321 elt.args = arglist;
8322 elt.spec = NULL_TREE;
8323 hash = spec_hasher::hash (&elt);
8324 entry = type_specializations->find_with_hash (&elt, hash);
8325
8326 if (entry)
8327 return entry->spec;
8328
8329 /* If the the template's constraints are not satisfied,
8330 then we cannot form a valid type.
8331
8332 Note that the check is deferred until after the hash
8333 lookup. This prevents redundant checks on previously
8334 instantiated specializations. */
8335 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8336 {
8337 if (complain & tf_error)
8338 {
8339 error ("template constraint failure");
8340 diagnose_constraints (input_location, gen_tmpl, arglist);
8341 }
8342 return error_mark_node;
8343 }
8344
8345 is_dependent_type = uses_template_parms (arglist);
8346
8347 /* If the deduced arguments are invalid, then the binding
8348 failed. */
8349 if (!is_dependent_type
8350 && check_instantiated_args (gen_tmpl,
8351 INNERMOST_TEMPLATE_ARGS (arglist),
8352 complain))
8353 return error_mark_node;
8354
8355 if (!is_dependent_type
8356 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8357 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8358 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8359 {
8360 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8361 DECL_NAME (gen_tmpl),
8362 /*tag_scope=*/ts_global);
8363 return found;
8364 }
8365
8366 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8367 complain, in_decl);
8368 if (context == error_mark_node)
8369 return error_mark_node;
8370
8371 if (!context)
8372 context = global_namespace;
8373
8374 /* Create the type. */
8375 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8376 {
8377 /* The user referred to a specialization of an alias
8378 template represented by GEN_TMPL.
8379
8380 [temp.alias]/2 says:
8381
8382 When a template-id refers to the specialization of an
8383 alias template, it is equivalent to the associated
8384 type obtained by substitution of its
8385 template-arguments for the template-parameters in the
8386 type-id of the alias template. */
8387
8388 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8389 /* Note that the call above (by indirectly calling
8390 register_specialization in tsubst_decl) registers the
8391 TYPE_DECL representing the specialization of the alias
8392 template. So next time someone substitutes ARGLIST for
8393 the template parms into the alias template (GEN_TMPL),
8394 she'll get that TYPE_DECL back. */
8395
8396 if (t == error_mark_node)
8397 return t;
8398 }
8399 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8400 {
8401 if (!is_dependent_type)
8402 {
8403 set_current_access_from_decl (TYPE_NAME (template_type));
8404 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8405 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8406 arglist, complain, in_decl),
8407 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8408 arglist, complain, in_decl),
8409 SCOPED_ENUM_P (template_type), NULL);
8410
8411 if (t == error_mark_node)
8412 return t;
8413 }
8414 else
8415 {
8416 /* We don't want to call start_enum for this type, since
8417 the values for the enumeration constants may involve
8418 template parameters. And, no one should be interested
8419 in the enumeration constants for such a type. */
8420 t = cxx_make_type (ENUMERAL_TYPE);
8421 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8422 }
8423 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8424 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8425 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8426 }
8427 else if (CLASS_TYPE_P (template_type))
8428 {
8429 t = make_class_type (TREE_CODE (template_type));
8430 CLASSTYPE_DECLARED_CLASS (t)
8431 = CLASSTYPE_DECLARED_CLASS (template_type);
8432 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8433 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8434
8435 /* A local class. Make sure the decl gets registered properly. */
8436 if (context == current_function_decl)
8437 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8438
8439 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8440 /* This instantiation is another name for the primary
8441 template type. Set the TYPE_CANONICAL field
8442 appropriately. */
8443 TYPE_CANONICAL (t) = template_type;
8444 else if (any_template_arguments_need_structural_equality_p (arglist))
8445 /* Some of the template arguments require structural
8446 equality testing, so this template class requires
8447 structural equality testing. */
8448 SET_TYPE_STRUCTURAL_EQUALITY (t);
8449 }
8450 else
8451 gcc_unreachable ();
8452
8453 /* If we called start_enum or pushtag above, this information
8454 will already be set up. */
8455 if (!TYPE_NAME (t))
8456 {
8457 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8458
8459 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8460 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8461 DECL_SOURCE_LOCATION (type_decl)
8462 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8463 }
8464 else
8465 type_decl = TYPE_NAME (t);
8466
8467 if (CLASS_TYPE_P (template_type))
8468 {
8469 TREE_PRIVATE (type_decl)
8470 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8471 TREE_PROTECTED (type_decl)
8472 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8473 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8474 {
8475 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8476 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8477 }
8478 }
8479
8480 if (OVERLOAD_TYPE_P (t)
8481 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8482 {
8483 static const char *tags[] = {"abi_tag", "may_alias"};
8484
8485 for (unsigned ix = 0; ix != 2; ix++)
8486 {
8487 tree attributes
8488 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8489
8490 if (attributes)
8491 TYPE_ATTRIBUTES (t)
8492 = tree_cons (TREE_PURPOSE (attributes),
8493 TREE_VALUE (attributes),
8494 TYPE_ATTRIBUTES (t));
8495 }
8496 }
8497
8498 /* Let's consider the explicit specialization of a member
8499 of a class template specialization that is implicitly instantiated,
8500 e.g.:
8501 template<class T>
8502 struct S
8503 {
8504 template<class U> struct M {}; //#0
8505 };
8506
8507 template<>
8508 template<>
8509 struct S<int>::M<char> //#1
8510 {
8511 int i;
8512 };
8513 [temp.expl.spec]/4 says this is valid.
8514
8515 In this case, when we write:
8516 S<int>::M<char> m;
8517
8518 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8519 the one of #0.
8520
8521 When we encounter #1, we want to store the partial instantiation
8522 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8523
8524 For all cases other than this "explicit specialization of member of a
8525 class template", we just want to store the most general template into
8526 the CLASSTYPE_TI_TEMPLATE of M.
8527
8528 This case of "explicit specialization of member of a class template"
8529 only happens when:
8530 1/ the enclosing class is an instantiation of, and therefore not
8531 the same as, the context of the most general template, and
8532 2/ we aren't looking at the partial instantiation itself, i.e.
8533 the innermost arguments are not the same as the innermost parms of
8534 the most general template.
8535
8536 So it's only when 1/ and 2/ happens that we want to use the partial
8537 instantiation of the member template in lieu of its most general
8538 template. */
8539
8540 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8541 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8542 /* the enclosing class must be an instantiation... */
8543 && CLASS_TYPE_P (context)
8544 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8545 {
8546 tree partial_inst_args;
8547 TREE_VEC_LENGTH (arglist)--;
8548 ++processing_template_decl;
8549 partial_inst_args =
8550 tsubst (INNERMOST_TEMPLATE_ARGS
8551 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8552 arglist, complain, NULL_TREE);
8553 --processing_template_decl;
8554 TREE_VEC_LENGTH (arglist)++;
8555 if (partial_inst_args == error_mark_node)
8556 return error_mark_node;
8557 use_partial_inst_tmpl =
8558 /*...and we must not be looking at the partial instantiation
8559 itself. */
8560 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8561 partial_inst_args);
8562 }
8563
8564 if (!use_partial_inst_tmpl)
8565 /* This case is easy; there are no member templates involved. */
8566 found = gen_tmpl;
8567 else
8568 {
8569 /* This is a full instantiation of a member template. Find
8570 the partial instantiation of which this is an instance. */
8571
8572 /* Temporarily reduce by one the number of levels in the ARGLIST
8573 so as to avoid comparing the last set of arguments. */
8574 TREE_VEC_LENGTH (arglist)--;
8575 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8576 TREE_VEC_LENGTH (arglist)++;
8577 /* FOUND is either a proper class type, or an alias
8578 template specialization. In the later case, it's a
8579 TYPE_DECL, resulting from the substituting of arguments
8580 for parameters in the TYPE_DECL of the alias template
8581 done earlier. So be careful while getting the template
8582 of FOUND. */
8583 found = TREE_CODE (found) == TYPE_DECL
8584 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8585 : CLASSTYPE_TI_TEMPLATE (found);
8586 }
8587
8588 // Build template info for the new specialization.
8589 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8590
8591 elt.spec = t;
8592 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8593 entry = ggc_alloc<spec_entry> ();
8594 *entry = elt;
8595 *slot = entry;
8596
8597 /* Note this use of the partial instantiation so we can check it
8598 later in maybe_process_partial_specialization. */
8599 DECL_TEMPLATE_INSTANTIATIONS (found)
8600 = tree_cons (arglist, t,
8601 DECL_TEMPLATE_INSTANTIATIONS (found));
8602
8603 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8604 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8605 /* Now that the type has been registered on the instantiations
8606 list, we set up the enumerators. Because the enumeration
8607 constants may involve the enumeration type itself, we make
8608 sure to register the type first, and then create the
8609 constants. That way, doing tsubst_expr for the enumeration
8610 constants won't result in recursive calls here; we'll find
8611 the instantiation and exit above. */
8612 tsubst_enum (template_type, t, arglist);
8613
8614 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8615 /* If the type makes use of template parameters, the
8616 code that generates debugging information will crash. */
8617 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8618
8619 /* Possibly limit visibility based on template args. */
8620 TREE_PUBLIC (type_decl) = 1;
8621 determine_visibility (type_decl);
8622
8623 inherit_targ_abi_tags (t);
8624
8625 return t;
8626 }
8627 }
8628
8629 /* Wrapper for lookup_template_class_1. */
8630
8631 tree
8632 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8633 int entering_scope, tsubst_flags_t complain)
8634 {
8635 tree ret;
8636 timevar_push (TV_TEMPLATE_INST);
8637 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8638 entering_scope, complain);
8639 timevar_pop (TV_TEMPLATE_INST);
8640 return ret;
8641 }
8642
8643 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8644
8645 tree
8646 lookup_template_variable (tree templ, tree arglist)
8647 {
8648 /* The type of the expression is NULL_TREE since the template-id could refer
8649 to an explicit or partial specialization. */
8650 tree type = NULL_TREE;
8651 if (flag_concepts && variable_concept_p (templ))
8652 /* Except that concepts are always bool. */
8653 type = boolean_type_node;
8654 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8655 }
8656
8657 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8658
8659 tree
8660 finish_template_variable (tree var, tsubst_flags_t complain)
8661 {
8662 tree templ = TREE_OPERAND (var, 0);
8663 tree arglist = TREE_OPERAND (var, 1);
8664
8665 /* We never want to return a VAR_DECL for a variable concept, since they
8666 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8667 bool concept_p = flag_concepts && variable_concept_p (templ);
8668 if (concept_p && processing_template_decl)
8669 return var;
8670
8671 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8672 arglist = add_outermost_template_args (tmpl_args, arglist);
8673
8674 tree parms = DECL_TEMPLATE_PARMS (templ);
8675 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8676 /*req_all*/true,
8677 /*use_default*/true);
8678
8679 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8680 {
8681 if (complain & tf_error)
8682 {
8683 error ("constraints for %qD not satisfied", templ);
8684 diagnose_constraints (location_of (var), templ, arglist);
8685 }
8686 return error_mark_node;
8687 }
8688
8689 /* If a template-id refers to a specialization of a variable
8690 concept, then the expression is true if and only if the
8691 concept's constraints are satisfied by the given template
8692 arguments.
8693
8694 NOTE: This is an extension of Concepts Lite TS that
8695 allows constraints to be used in expressions. */
8696 if (concept_p)
8697 {
8698 tree decl = DECL_TEMPLATE_RESULT (templ);
8699 return evaluate_variable_concept (decl, arglist);
8700 }
8701
8702 return instantiate_template (templ, arglist, complain);
8703 }
8704
8705 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
8706 TARGS template args, and instantiate it if it's not dependent. */
8707
8708 static tree
8709 lookup_and_finish_template_variable (tree templ, tree targs,
8710 tsubst_flags_t complain)
8711 {
8712 templ = lookup_template_variable (templ, targs);
8713 if (!any_dependent_template_arguments_p (targs))
8714 {
8715 templ = finish_template_variable (templ, complain);
8716 mark_used (templ);
8717 }
8718
8719 return convert_from_reference (templ);
8720 }
8721
8722 \f
8723 struct pair_fn_data
8724 {
8725 tree_fn_t fn;
8726 void *data;
8727 /* True when we should also visit template parameters that occur in
8728 non-deduced contexts. */
8729 bool include_nondeduced_p;
8730 hash_set<tree> *visited;
8731 };
8732
8733 /* Called from for_each_template_parm via walk_tree. */
8734
8735 static tree
8736 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8737 {
8738 tree t = *tp;
8739 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8740 tree_fn_t fn = pfd->fn;
8741 void *data = pfd->data;
8742 tree result = NULL_TREE;
8743
8744 #define WALK_SUBTREE(NODE) \
8745 do \
8746 { \
8747 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8748 pfd->include_nondeduced_p); \
8749 if (result) goto out; \
8750 } \
8751 while (0)
8752
8753 if (TYPE_P (t)
8754 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8755 WALK_SUBTREE (TYPE_CONTEXT (t));
8756
8757 switch (TREE_CODE (t))
8758 {
8759 case RECORD_TYPE:
8760 if (TYPE_PTRMEMFUNC_P (t))
8761 break;
8762 /* Fall through. */
8763
8764 case UNION_TYPE:
8765 case ENUMERAL_TYPE:
8766 if (!TYPE_TEMPLATE_INFO (t))
8767 *walk_subtrees = 0;
8768 else
8769 WALK_SUBTREE (TYPE_TI_ARGS (t));
8770 break;
8771
8772 case INTEGER_TYPE:
8773 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8774 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8775 break;
8776
8777 case METHOD_TYPE:
8778 /* Since we're not going to walk subtrees, we have to do this
8779 explicitly here. */
8780 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8781 /* Fall through. */
8782
8783 case FUNCTION_TYPE:
8784 /* Check the return type. */
8785 WALK_SUBTREE (TREE_TYPE (t));
8786
8787 /* Check the parameter types. Since default arguments are not
8788 instantiated until they are needed, the TYPE_ARG_TYPES may
8789 contain expressions that involve template parameters. But,
8790 no-one should be looking at them yet. And, once they're
8791 instantiated, they don't contain template parameters, so
8792 there's no point in looking at them then, either. */
8793 {
8794 tree parm;
8795
8796 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8797 WALK_SUBTREE (TREE_VALUE (parm));
8798
8799 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8800 want walk_tree walking into them itself. */
8801 *walk_subtrees = 0;
8802 }
8803 break;
8804
8805 case TYPEOF_TYPE:
8806 case UNDERLYING_TYPE:
8807 if (pfd->include_nondeduced_p
8808 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8809 pfd->visited,
8810 pfd->include_nondeduced_p))
8811 return error_mark_node;
8812 break;
8813
8814 case FUNCTION_DECL:
8815 case VAR_DECL:
8816 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8817 WALK_SUBTREE (DECL_TI_ARGS (t));
8818 /* Fall through. */
8819
8820 case PARM_DECL:
8821 case CONST_DECL:
8822 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8823 WALK_SUBTREE (DECL_INITIAL (t));
8824 if (DECL_CONTEXT (t)
8825 && pfd->include_nondeduced_p)
8826 WALK_SUBTREE (DECL_CONTEXT (t));
8827 break;
8828
8829 case BOUND_TEMPLATE_TEMPLATE_PARM:
8830 /* Record template parameters such as `T' inside `TT<T>'. */
8831 WALK_SUBTREE (TYPE_TI_ARGS (t));
8832 /* Fall through. */
8833
8834 case TEMPLATE_TEMPLATE_PARM:
8835 case TEMPLATE_TYPE_PARM:
8836 case TEMPLATE_PARM_INDEX:
8837 if (fn && (*fn)(t, data))
8838 return t;
8839 else if (!fn)
8840 return t;
8841 break;
8842
8843 case TEMPLATE_DECL:
8844 /* A template template parameter is encountered. */
8845 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8846 WALK_SUBTREE (TREE_TYPE (t));
8847
8848 /* Already substituted template template parameter */
8849 *walk_subtrees = 0;
8850 break;
8851
8852 case TYPENAME_TYPE:
8853 /* A template-id in a TYPENAME_TYPE might be a deduced context after
8854 partial instantiation. */
8855 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8856 break;
8857
8858 case CONSTRUCTOR:
8859 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8860 && pfd->include_nondeduced_p)
8861 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8862 break;
8863
8864 case INDIRECT_REF:
8865 case COMPONENT_REF:
8866 /* If there's no type, then this thing must be some expression
8867 involving template parameters. */
8868 if (!fn && !TREE_TYPE (t))
8869 return error_mark_node;
8870 break;
8871
8872 case MODOP_EXPR:
8873 case CAST_EXPR:
8874 case IMPLICIT_CONV_EXPR:
8875 case REINTERPRET_CAST_EXPR:
8876 case CONST_CAST_EXPR:
8877 case STATIC_CAST_EXPR:
8878 case DYNAMIC_CAST_EXPR:
8879 case ARROW_EXPR:
8880 case DOTSTAR_EXPR:
8881 case TYPEID_EXPR:
8882 case PSEUDO_DTOR_EXPR:
8883 if (!fn)
8884 return error_mark_node;
8885 break;
8886
8887 default:
8888 break;
8889 }
8890
8891 #undef WALK_SUBTREE
8892
8893 /* We didn't find any template parameters we liked. */
8894 out:
8895 return result;
8896 }
8897
8898 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8899 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8900 call FN with the parameter and the DATA.
8901 If FN returns nonzero, the iteration is terminated, and
8902 for_each_template_parm returns 1. Otherwise, the iteration
8903 continues. If FN never returns a nonzero value, the value
8904 returned by for_each_template_parm is 0. If FN is NULL, it is
8905 considered to be the function which always returns 1.
8906
8907 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8908 parameters that occur in non-deduced contexts. When false, only
8909 visits those template parameters that can be deduced. */
8910
8911 static tree
8912 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8913 hash_set<tree> *visited,
8914 bool include_nondeduced_p)
8915 {
8916 struct pair_fn_data pfd;
8917 tree result;
8918
8919 /* Set up. */
8920 pfd.fn = fn;
8921 pfd.data = data;
8922 pfd.include_nondeduced_p = include_nondeduced_p;
8923
8924 /* Walk the tree. (Conceptually, we would like to walk without
8925 duplicates, but for_each_template_parm_r recursively calls
8926 for_each_template_parm, so we would need to reorganize a fair
8927 bit to use walk_tree_without_duplicates, so we keep our own
8928 visited list.) */
8929 if (visited)
8930 pfd.visited = visited;
8931 else
8932 pfd.visited = new hash_set<tree>;
8933 result = cp_walk_tree (&t,
8934 for_each_template_parm_r,
8935 &pfd,
8936 pfd.visited);
8937
8938 /* Clean up. */
8939 if (!visited)
8940 {
8941 delete pfd.visited;
8942 pfd.visited = 0;
8943 }
8944
8945 return result;
8946 }
8947
8948 /* Returns true if T depends on any template parameter. */
8949
8950 int
8951 uses_template_parms (tree t)
8952 {
8953 if (t == NULL_TREE)
8954 return false;
8955
8956 bool dependent_p;
8957 int saved_processing_template_decl;
8958
8959 saved_processing_template_decl = processing_template_decl;
8960 if (!saved_processing_template_decl)
8961 processing_template_decl = 1;
8962 if (TYPE_P (t))
8963 dependent_p = dependent_type_p (t);
8964 else if (TREE_CODE (t) == TREE_VEC)
8965 dependent_p = any_dependent_template_arguments_p (t);
8966 else if (TREE_CODE (t) == TREE_LIST)
8967 dependent_p = (uses_template_parms (TREE_VALUE (t))
8968 || uses_template_parms (TREE_CHAIN (t)));
8969 else if (TREE_CODE (t) == TYPE_DECL)
8970 dependent_p = dependent_type_p (TREE_TYPE (t));
8971 else if (DECL_P (t)
8972 || EXPR_P (t)
8973 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8974 || TREE_CODE (t) == OVERLOAD
8975 || BASELINK_P (t)
8976 || identifier_p (t)
8977 || TREE_CODE (t) == TRAIT_EXPR
8978 || TREE_CODE (t) == CONSTRUCTOR
8979 || CONSTANT_CLASS_P (t))
8980 dependent_p = (type_dependent_expression_p (t)
8981 || value_dependent_expression_p (t));
8982 else
8983 {
8984 gcc_assert (t == error_mark_node);
8985 dependent_p = false;
8986 }
8987
8988 processing_template_decl = saved_processing_template_decl;
8989
8990 return dependent_p;
8991 }
8992
8993 /* Returns true iff current_function_decl is an incompletely instantiated
8994 template. Useful instead of processing_template_decl because the latter
8995 is set to 0 during instantiate_non_dependent_expr. */
8996
8997 bool
8998 in_template_function (void)
8999 {
9000 tree fn = current_function_decl;
9001 bool ret;
9002 ++processing_template_decl;
9003 ret = (fn && DECL_LANG_SPECIFIC (fn)
9004 && DECL_TEMPLATE_INFO (fn)
9005 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
9006 --processing_template_decl;
9007 return ret;
9008 }
9009
9010 /* Returns true if T depends on any template parameter with level LEVEL. */
9011
9012 bool
9013 uses_template_parms_level (tree t, int level)
9014 {
9015 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
9016 /*include_nondeduced_p=*/true);
9017 }
9018
9019 /* Returns TRUE iff INST is an instantiation we don't need to do in an
9020 ill-formed translation unit, i.e. a variable or function that isn't
9021 usable in a constant expression. */
9022
9023 static inline bool
9024 neglectable_inst_p (tree d)
9025 {
9026 return (DECL_P (d)
9027 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9028 : decl_maybe_constant_var_p (d)));
9029 }
9030
9031 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9032 neglectable and instantiated from within an erroneous instantiation. */
9033
9034 static bool
9035 limit_bad_template_recursion (tree decl)
9036 {
9037 struct tinst_level *lev = current_tinst_level;
9038 int errs = errorcount + sorrycount;
9039 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9040 return false;
9041
9042 for (; lev; lev = lev->next)
9043 if (neglectable_inst_p (lev->decl))
9044 break;
9045
9046 return (lev && errs > lev->errors);
9047 }
9048
9049 static int tinst_depth;
9050 extern int max_tinst_depth;
9051 int depth_reached;
9052
9053 static GTY(()) struct tinst_level *last_error_tinst_level;
9054
9055 /* We're starting to instantiate D; record the template instantiation context
9056 for diagnostics and to restore it later. */
9057
9058 bool
9059 push_tinst_level (tree d)
9060 {
9061 return push_tinst_level_loc (d, input_location);
9062 }
9063
9064 /* We're starting to instantiate D; record the template instantiation context
9065 at LOC for diagnostics and to restore it later. */
9066
9067 bool
9068 push_tinst_level_loc (tree d, location_t loc)
9069 {
9070 struct tinst_level *new_level;
9071
9072 if (tinst_depth >= max_tinst_depth)
9073 {
9074 fatal_error (input_location,
9075 "template instantiation depth exceeds maximum of %d"
9076 " (use -ftemplate-depth= to increase the maximum)",
9077 max_tinst_depth);
9078 return false;
9079 }
9080
9081 /* If the current instantiation caused problems, don't let it instantiate
9082 anything else. Do allow deduction substitution and decls usable in
9083 constant expressions. */
9084 if (limit_bad_template_recursion (d))
9085 return false;
9086
9087 new_level = ggc_alloc<tinst_level> ();
9088 new_level->decl = d;
9089 new_level->locus = loc;
9090 new_level->errors = errorcount+sorrycount;
9091 new_level->in_system_header_p = in_system_header_at (input_location);
9092 new_level->next = current_tinst_level;
9093 current_tinst_level = new_level;
9094
9095 ++tinst_depth;
9096 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9097 depth_reached = tinst_depth;
9098
9099 return true;
9100 }
9101
9102 /* We're done instantiating this template; return to the instantiation
9103 context. */
9104
9105 void
9106 pop_tinst_level (void)
9107 {
9108 /* Restore the filename and line number stashed away when we started
9109 this instantiation. */
9110 input_location = current_tinst_level->locus;
9111 current_tinst_level = current_tinst_level->next;
9112 --tinst_depth;
9113 }
9114
9115 /* We're instantiating a deferred template; restore the template
9116 instantiation context in which the instantiation was requested, which
9117 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9118
9119 static tree
9120 reopen_tinst_level (struct tinst_level *level)
9121 {
9122 struct tinst_level *t;
9123
9124 tinst_depth = 0;
9125 for (t = level; t; t = t->next)
9126 ++tinst_depth;
9127
9128 current_tinst_level = level;
9129 pop_tinst_level ();
9130 if (current_tinst_level)
9131 current_tinst_level->errors = errorcount+sorrycount;
9132 return level->decl;
9133 }
9134
9135 /* Returns the TINST_LEVEL which gives the original instantiation
9136 context. */
9137
9138 struct tinst_level *
9139 outermost_tinst_level (void)
9140 {
9141 struct tinst_level *level = current_tinst_level;
9142 if (level)
9143 while (level->next)
9144 level = level->next;
9145 return level;
9146 }
9147
9148 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9149 vector of template arguments, as for tsubst.
9150
9151 Returns an appropriate tsubst'd friend declaration. */
9152
9153 static tree
9154 tsubst_friend_function (tree decl, tree args)
9155 {
9156 tree new_friend;
9157
9158 if (TREE_CODE (decl) == FUNCTION_DECL
9159 && DECL_TEMPLATE_INSTANTIATION (decl)
9160 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9161 /* This was a friend declared with an explicit template
9162 argument list, e.g.:
9163
9164 friend void f<>(T);
9165
9166 to indicate that f was a template instantiation, not a new
9167 function declaration. Now, we have to figure out what
9168 instantiation of what template. */
9169 {
9170 tree template_id, arglist, fns;
9171 tree new_args;
9172 tree tmpl;
9173 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9174
9175 /* Friend functions are looked up in the containing namespace scope.
9176 We must enter that scope, to avoid finding member functions of the
9177 current class with same name. */
9178 push_nested_namespace (ns);
9179 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9180 tf_warning_or_error, NULL_TREE,
9181 /*integral_constant_expression_p=*/false);
9182 pop_nested_namespace (ns);
9183 arglist = tsubst (DECL_TI_ARGS (decl), args,
9184 tf_warning_or_error, NULL_TREE);
9185 template_id = lookup_template_function (fns, arglist);
9186
9187 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9188 tmpl = determine_specialization (template_id, new_friend,
9189 &new_args,
9190 /*need_member_template=*/0,
9191 TREE_VEC_LENGTH (args),
9192 tsk_none);
9193 return instantiate_template (tmpl, new_args, tf_error);
9194 }
9195
9196 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9197
9198 /* The NEW_FRIEND will look like an instantiation, to the
9199 compiler, but is not an instantiation from the point of view of
9200 the language. For example, we might have had:
9201
9202 template <class T> struct S {
9203 template <class U> friend void f(T, U);
9204 };
9205
9206 Then, in S<int>, template <class U> void f(int, U) is not an
9207 instantiation of anything. */
9208 if (new_friend == error_mark_node)
9209 return error_mark_node;
9210
9211 DECL_USE_TEMPLATE (new_friend) = 0;
9212 if (TREE_CODE (decl) == TEMPLATE_DECL)
9213 {
9214 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9215 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9216 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9217 }
9218
9219 /* The mangled name for the NEW_FRIEND is incorrect. The function
9220 is not a template instantiation and should not be mangled like
9221 one. Therefore, we forget the mangling here; we'll recompute it
9222 later if we need it. */
9223 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9224 {
9225 SET_DECL_RTL (new_friend, NULL);
9226 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9227 }
9228
9229 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9230 {
9231 tree old_decl;
9232 tree new_friend_template_info;
9233 tree new_friend_result_template_info;
9234 tree ns;
9235 int new_friend_is_defn;
9236
9237 /* We must save some information from NEW_FRIEND before calling
9238 duplicate decls since that function will free NEW_FRIEND if
9239 possible. */
9240 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9241 new_friend_is_defn =
9242 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9243 (template_for_substitution (new_friend)))
9244 != NULL_TREE);
9245 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9246 {
9247 /* This declaration is a `primary' template. */
9248 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9249
9250 new_friend_result_template_info
9251 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9252 }
9253 else
9254 new_friend_result_template_info = NULL_TREE;
9255
9256 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9257 if (new_friend_is_defn)
9258 DECL_INITIAL (new_friend) = error_mark_node;
9259
9260 /* Inside pushdecl_namespace_level, we will push into the
9261 current namespace. However, the friend function should go
9262 into the namespace of the template. */
9263 ns = decl_namespace_context (new_friend);
9264 push_nested_namespace (ns);
9265 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9266 pop_nested_namespace (ns);
9267
9268 if (old_decl == error_mark_node)
9269 return error_mark_node;
9270
9271 if (old_decl != new_friend)
9272 {
9273 /* This new friend declaration matched an existing
9274 declaration. For example, given:
9275
9276 template <class T> void f(T);
9277 template <class U> class C {
9278 template <class T> friend void f(T) {}
9279 };
9280
9281 the friend declaration actually provides the definition
9282 of `f', once C has been instantiated for some type. So,
9283 old_decl will be the out-of-class template declaration,
9284 while new_friend is the in-class definition.
9285
9286 But, if `f' was called before this point, the
9287 instantiation of `f' will have DECL_TI_ARGS corresponding
9288 to `T' but not to `U', references to which might appear
9289 in the definition of `f'. Previously, the most general
9290 template for an instantiation of `f' was the out-of-class
9291 version; now it is the in-class version. Therefore, we
9292 run through all specialization of `f', adding to their
9293 DECL_TI_ARGS appropriately. In particular, they need a
9294 new set of outer arguments, corresponding to the
9295 arguments for this class instantiation.
9296
9297 The same situation can arise with something like this:
9298
9299 friend void f(int);
9300 template <class T> class C {
9301 friend void f(T) {}
9302 };
9303
9304 when `C<int>' is instantiated. Now, `f(int)' is defined
9305 in the class. */
9306
9307 if (!new_friend_is_defn)
9308 /* On the other hand, if the in-class declaration does
9309 *not* provide a definition, then we don't want to alter
9310 existing definitions. We can just leave everything
9311 alone. */
9312 ;
9313 else
9314 {
9315 tree new_template = TI_TEMPLATE (new_friend_template_info);
9316 tree new_args = TI_ARGS (new_friend_template_info);
9317
9318 /* Overwrite whatever template info was there before, if
9319 any, with the new template information pertaining to
9320 the declaration. */
9321 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9322
9323 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9324 {
9325 /* We should have called reregister_specialization in
9326 duplicate_decls. */
9327 gcc_assert (retrieve_specialization (new_template,
9328 new_args, 0)
9329 == old_decl);
9330
9331 /* Instantiate it if the global has already been used. */
9332 if (DECL_ODR_USED (old_decl))
9333 instantiate_decl (old_decl, /*defer_ok=*/true,
9334 /*expl_inst_class_mem_p=*/false);
9335 }
9336 else
9337 {
9338 tree t;
9339
9340 /* Indicate that the old function template is a partial
9341 instantiation. */
9342 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9343 = new_friend_result_template_info;
9344
9345 gcc_assert (new_template
9346 == most_general_template (new_template));
9347 gcc_assert (new_template != old_decl);
9348
9349 /* Reassign any specializations already in the hash table
9350 to the new more general template, and add the
9351 additional template args. */
9352 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9353 t != NULL_TREE;
9354 t = TREE_CHAIN (t))
9355 {
9356 tree spec = TREE_VALUE (t);
9357 spec_entry elt;
9358
9359 elt.tmpl = old_decl;
9360 elt.args = DECL_TI_ARGS (spec);
9361 elt.spec = NULL_TREE;
9362
9363 decl_specializations->remove_elt (&elt);
9364
9365 DECL_TI_ARGS (spec)
9366 = add_outermost_template_args (new_args,
9367 DECL_TI_ARGS (spec));
9368
9369 register_specialization
9370 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9371
9372 }
9373 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9374 }
9375 }
9376
9377 /* The information from NEW_FRIEND has been merged into OLD_DECL
9378 by duplicate_decls. */
9379 new_friend = old_decl;
9380 }
9381 }
9382 else
9383 {
9384 tree context = DECL_CONTEXT (new_friend);
9385 bool dependent_p;
9386
9387 /* In the code
9388 template <class T> class C {
9389 template <class U> friend void C1<U>::f (); // case 1
9390 friend void C2<T>::f (); // case 2
9391 };
9392 we only need to make sure CONTEXT is a complete type for
9393 case 2. To distinguish between the two cases, we note that
9394 CONTEXT of case 1 remains dependent type after tsubst while
9395 this isn't true for case 2. */
9396 ++processing_template_decl;
9397 dependent_p = dependent_type_p (context);
9398 --processing_template_decl;
9399
9400 if (!dependent_p
9401 && !complete_type_or_else (context, NULL_TREE))
9402 return error_mark_node;
9403
9404 if (COMPLETE_TYPE_P (context))
9405 {
9406 tree fn = new_friend;
9407 /* do_friend adds the TEMPLATE_DECL for any member friend
9408 template even if it isn't a member template, i.e.
9409 template <class T> friend A<T>::f();
9410 Look through it in that case. */
9411 if (TREE_CODE (fn) == TEMPLATE_DECL
9412 && !PRIMARY_TEMPLATE_P (fn))
9413 fn = DECL_TEMPLATE_RESULT (fn);
9414 /* Check to see that the declaration is really present, and,
9415 possibly obtain an improved declaration. */
9416 fn = check_classfn (context, fn, NULL_TREE);
9417
9418 if (fn)
9419 new_friend = fn;
9420 }
9421 }
9422
9423 return new_friend;
9424 }
9425
9426 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9427 template arguments, as for tsubst.
9428
9429 Returns an appropriate tsubst'd friend type or error_mark_node on
9430 failure. */
9431
9432 static tree
9433 tsubst_friend_class (tree friend_tmpl, tree args)
9434 {
9435 tree friend_type;
9436 tree tmpl;
9437 tree context;
9438
9439 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9440 {
9441 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9442 return TREE_TYPE (t);
9443 }
9444
9445 context = CP_DECL_CONTEXT (friend_tmpl);
9446
9447 if (context != global_namespace)
9448 {
9449 if (TREE_CODE (context) == NAMESPACE_DECL)
9450 push_nested_namespace (context);
9451 else
9452 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9453 }
9454
9455 /* Look for a class template declaration. We look for hidden names
9456 because two friend declarations of the same template are the
9457 same. For example, in:
9458
9459 struct A {
9460 template <typename> friend class F;
9461 };
9462 template <typename> struct B {
9463 template <typename> friend class F;
9464 };
9465
9466 both F templates are the same. */
9467 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9468 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9469
9470 /* But, if we don't find one, it might be because we're in a
9471 situation like this:
9472
9473 template <class T>
9474 struct S {
9475 template <class U>
9476 friend struct S;
9477 };
9478
9479 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9480 for `S<int>', not the TEMPLATE_DECL. */
9481 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9482 {
9483 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9484 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9485 }
9486
9487 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9488 {
9489 /* The friend template has already been declared. Just
9490 check to see that the declarations match, and install any new
9491 default parameters. We must tsubst the default parameters,
9492 of course. We only need the innermost template parameters
9493 because that is all that redeclare_class_template will look
9494 at. */
9495 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9496 > TMPL_ARGS_DEPTH (args))
9497 {
9498 tree parms;
9499 location_t saved_input_location;
9500 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9501 args, tf_warning_or_error);
9502
9503 saved_input_location = input_location;
9504 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9505 tree cons = get_constraints (tmpl);
9506 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9507 input_location = saved_input_location;
9508
9509 }
9510
9511 friend_type = TREE_TYPE (tmpl);
9512 }
9513 else
9514 {
9515 /* The friend template has not already been declared. In this
9516 case, the instantiation of the template class will cause the
9517 injection of this template into the global scope. */
9518 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9519 if (tmpl == error_mark_node)
9520 return error_mark_node;
9521
9522 /* The new TMPL is not an instantiation of anything, so we
9523 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9524 the new type because that is supposed to be the corresponding
9525 template decl, i.e., TMPL. */
9526 DECL_USE_TEMPLATE (tmpl) = 0;
9527 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9528 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9529 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9530 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9531
9532 /* Inject this template into the global scope. */
9533 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9534 }
9535
9536 if (context != global_namespace)
9537 {
9538 if (TREE_CODE (context) == NAMESPACE_DECL)
9539 pop_nested_namespace (context);
9540 else
9541 pop_nested_class ();
9542 }
9543
9544 return friend_type;
9545 }
9546
9547 /* Returns zero if TYPE cannot be completed later due to circularity.
9548 Otherwise returns one. */
9549
9550 static int
9551 can_complete_type_without_circularity (tree type)
9552 {
9553 if (type == NULL_TREE || type == error_mark_node)
9554 return 0;
9555 else if (COMPLETE_TYPE_P (type))
9556 return 1;
9557 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9558 return can_complete_type_without_circularity (TREE_TYPE (type));
9559 else if (CLASS_TYPE_P (type)
9560 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9561 return 0;
9562 else
9563 return 1;
9564 }
9565
9566 static tree tsubst_omp_clauses (tree, enum c_omp_region_type, tree,
9567 tsubst_flags_t, tree);
9568
9569 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9570 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9571
9572 static tree
9573 tsubst_attribute (tree t, tree *decl_p, tree args,
9574 tsubst_flags_t complain, tree in_decl)
9575 {
9576 gcc_assert (ATTR_IS_DEPENDENT (t));
9577
9578 tree val = TREE_VALUE (t);
9579 if (val == NULL_TREE)
9580 /* Nothing to do. */;
9581 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9582 && is_attribute_p ("omp declare simd",
9583 get_attribute_name (t)))
9584 {
9585 tree clauses = TREE_VALUE (val);
9586 clauses = tsubst_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD, args,
9587 complain, in_decl);
9588 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9589 clauses = finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
9590 tree parms = DECL_ARGUMENTS (*decl_p);
9591 clauses
9592 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9593 if (clauses)
9594 val = build_tree_list (NULL_TREE, clauses);
9595 else
9596 val = NULL_TREE;
9597 }
9598 /* If the first attribute argument is an identifier, don't
9599 pass it through tsubst. Attributes like mode, format,
9600 cleanup and several target specific attributes expect it
9601 unmodified. */
9602 else if (attribute_takes_identifier_p (get_attribute_name (t)))
9603 {
9604 tree chain
9605 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
9606 /*integral_constant_expression_p=*/false);
9607 if (chain != TREE_CHAIN (val))
9608 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
9609 }
9610 else if (PACK_EXPANSION_P (val))
9611 {
9612 /* An attribute pack expansion. */
9613 tree purp = TREE_PURPOSE (t);
9614 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
9615 int len = TREE_VEC_LENGTH (pack);
9616 tree list = NULL_TREE;
9617 tree *q = &list;
9618 for (int i = 0; i < len; ++i)
9619 {
9620 tree elt = TREE_VEC_ELT (pack, i);
9621 *q = build_tree_list (purp, elt);
9622 q = &TREE_CHAIN (*q);
9623 }
9624 return list;
9625 }
9626 else
9627 val = tsubst_expr (val, args, complain, in_decl,
9628 /*integral_constant_expression_p=*/false);
9629
9630 if (val != TREE_VALUE (t))
9631 return build_tree_list (TREE_PURPOSE (t), val);
9632 return t;
9633 }
9634
9635 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
9636 unchanged or a new TREE_LIST chain. */
9637
9638 static tree
9639 tsubst_attributes (tree attributes, tree args,
9640 tsubst_flags_t complain, tree in_decl)
9641 {
9642 tree last_dep = NULL_TREE;
9643
9644 for (tree t = attributes; t; t = TREE_CHAIN (t))
9645 if (ATTR_IS_DEPENDENT (t))
9646 {
9647 last_dep = t;
9648 attributes = copy_list (attributes);
9649 break;
9650 }
9651
9652 if (last_dep)
9653 for (tree *p = &attributes; *p; p = &TREE_CHAIN (*p))
9654 {
9655 tree t = *p;
9656 if (ATTR_IS_DEPENDENT (t))
9657 {
9658 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
9659 if (subst == t)
9660 continue;
9661 *p = subst;
9662 do
9663 p = &TREE_CHAIN (*p);
9664 while (*p);
9665 *p = TREE_CHAIN (t);
9666 }
9667 }
9668
9669 return attributes;
9670 }
9671
9672 /* Apply any attributes which had to be deferred until instantiation
9673 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9674 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9675
9676 static void
9677 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9678 tree args, tsubst_flags_t complain, tree in_decl)
9679 {
9680 tree last_dep = NULL_TREE;
9681 tree t;
9682 tree *p;
9683
9684 for (t = attributes; t; t = TREE_CHAIN (t))
9685 if (ATTR_IS_DEPENDENT (t))
9686 {
9687 last_dep = t;
9688 attributes = copy_list (attributes);
9689 break;
9690 }
9691
9692 if (DECL_P (*decl_p))
9693 {
9694 if (TREE_TYPE (*decl_p) == error_mark_node)
9695 return;
9696 p = &DECL_ATTRIBUTES (*decl_p);
9697 }
9698 else
9699 p = &TYPE_ATTRIBUTES (*decl_p);
9700
9701 if (last_dep)
9702 {
9703 tree late_attrs = NULL_TREE;
9704 tree *q = &late_attrs;
9705
9706 for (*p = attributes; *p; )
9707 {
9708 t = *p;
9709 if (ATTR_IS_DEPENDENT (t))
9710 {
9711 *p = TREE_CHAIN (t);
9712 TREE_CHAIN (t) = NULL_TREE;
9713 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
9714 do
9715 q = &TREE_CHAIN (*q);
9716 while (*q);
9717 }
9718 else
9719 p = &TREE_CHAIN (t);
9720 }
9721
9722 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9723 }
9724 }
9725
9726 /* Perform (or defer) access check for typedefs that were referenced
9727 from within the template TMPL code.
9728 This is a subroutine of instantiate_decl and instantiate_class_template.
9729 TMPL is the template to consider and TARGS is the list of arguments of
9730 that template. */
9731
9732 static void
9733 perform_typedefs_access_check (tree tmpl, tree targs)
9734 {
9735 location_t saved_location;
9736 unsigned i;
9737 qualified_typedef_usage_t *iter;
9738
9739 if (!tmpl
9740 || (!CLASS_TYPE_P (tmpl)
9741 && TREE_CODE (tmpl) != FUNCTION_DECL))
9742 return;
9743
9744 saved_location = input_location;
9745 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9746 {
9747 tree type_decl = iter->typedef_decl;
9748 tree type_scope = iter->context;
9749
9750 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9751 continue;
9752
9753 if (uses_template_parms (type_decl))
9754 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9755 if (uses_template_parms (type_scope))
9756 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9757
9758 /* Make access check error messages point to the location
9759 of the use of the typedef. */
9760 input_location = iter->locus;
9761 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9762 type_decl, type_decl,
9763 tf_warning_or_error);
9764 }
9765 input_location = saved_location;
9766 }
9767
9768 static tree
9769 instantiate_class_template_1 (tree type)
9770 {
9771 tree templ, args, pattern, t, member;
9772 tree typedecl;
9773 tree pbinfo;
9774 tree base_list;
9775 unsigned int saved_maximum_field_alignment;
9776 tree fn_context;
9777
9778 if (type == error_mark_node)
9779 return error_mark_node;
9780
9781 if (COMPLETE_OR_OPEN_TYPE_P (type)
9782 || uses_template_parms (type))
9783 return type;
9784
9785 /* Figure out which template is being instantiated. */
9786 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9787 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9788
9789 /* Determine what specialization of the original template to
9790 instantiate. */
9791 t = most_specialized_partial_spec (type, tf_warning_or_error);
9792 if (t == error_mark_node)
9793 {
9794 TYPE_BEING_DEFINED (type) = 1;
9795 return error_mark_node;
9796 }
9797 else if (t)
9798 {
9799 /* This TYPE is actually an instantiation of a partial
9800 specialization. We replace the innermost set of ARGS with
9801 the arguments appropriate for substitution. For example,
9802 given:
9803
9804 template <class T> struct S {};
9805 template <class T> struct S<T*> {};
9806
9807 and supposing that we are instantiating S<int*>, ARGS will
9808 presently be {int*} -- but we need {int}. */
9809 pattern = TREE_TYPE (t);
9810 args = TREE_PURPOSE (t);
9811 }
9812 else
9813 {
9814 pattern = TREE_TYPE (templ);
9815 args = CLASSTYPE_TI_ARGS (type);
9816 }
9817
9818 /* If the template we're instantiating is incomplete, then clearly
9819 there's nothing we can do. */
9820 if (!COMPLETE_TYPE_P (pattern))
9821 return type;
9822
9823 /* If we've recursively instantiated too many templates, stop. */
9824 if (! push_tinst_level (type))
9825 return type;
9826
9827 /* Now we're really doing the instantiation. Mark the type as in
9828 the process of being defined. */
9829 TYPE_BEING_DEFINED (type) = 1;
9830
9831 /* We may be in the middle of deferred access check. Disable
9832 it now. */
9833 push_deferring_access_checks (dk_no_deferred);
9834
9835 int saved_unevaluated_operand = cp_unevaluated_operand;
9836 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9837
9838 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9839 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9840 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9841 fn_context = error_mark_node;
9842 if (!fn_context)
9843 push_to_top_level ();
9844 else
9845 {
9846 cp_unevaluated_operand = 0;
9847 c_inhibit_evaluation_warnings = 0;
9848 }
9849 /* Use #pragma pack from the template context. */
9850 saved_maximum_field_alignment = maximum_field_alignment;
9851 maximum_field_alignment = TYPE_PRECISION (pattern);
9852
9853 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9854
9855 /* Set the input location to the most specialized template definition.
9856 This is needed if tsubsting causes an error. */
9857 typedecl = TYPE_MAIN_DECL (pattern);
9858 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9859 DECL_SOURCE_LOCATION (typedecl);
9860
9861 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9862 SET_TYPE_ALIGN (type, TYPE_ALIGN (pattern));
9863 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9864 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9865 if (ANON_AGGR_TYPE_P (pattern))
9866 SET_ANON_AGGR_TYPE_P (type);
9867 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9868 {
9869 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9870 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9871 /* Adjust visibility for template arguments. */
9872 determine_visibility (TYPE_MAIN_DECL (type));
9873 }
9874 if (CLASS_TYPE_P (type))
9875 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9876
9877 pbinfo = TYPE_BINFO (pattern);
9878
9879 /* We should never instantiate a nested class before its enclosing
9880 class; we need to look up the nested class by name before we can
9881 instantiate it, and that lookup should instantiate the enclosing
9882 class. */
9883 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9884 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9885
9886 base_list = NULL_TREE;
9887 if (BINFO_N_BASE_BINFOS (pbinfo))
9888 {
9889 tree pbase_binfo;
9890 tree pushed_scope;
9891 int i;
9892
9893 /* We must enter the scope containing the type, as that is where
9894 the accessibility of types named in dependent bases are
9895 looked up from. */
9896 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9897
9898 /* Substitute into each of the bases to determine the actual
9899 basetypes. */
9900 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9901 {
9902 tree base;
9903 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9904 tree expanded_bases = NULL_TREE;
9905 int idx, len = 1;
9906
9907 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9908 {
9909 expanded_bases =
9910 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9911 args, tf_error, NULL_TREE);
9912 if (expanded_bases == error_mark_node)
9913 continue;
9914
9915 len = TREE_VEC_LENGTH (expanded_bases);
9916 }
9917
9918 for (idx = 0; idx < len; idx++)
9919 {
9920 if (expanded_bases)
9921 /* Extract the already-expanded base class. */
9922 base = TREE_VEC_ELT (expanded_bases, idx);
9923 else
9924 /* Substitute to figure out the base class. */
9925 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9926 NULL_TREE);
9927
9928 if (base == error_mark_node)
9929 continue;
9930
9931 base_list = tree_cons (access, base, base_list);
9932 if (BINFO_VIRTUAL_P (pbase_binfo))
9933 TREE_TYPE (base_list) = integer_type_node;
9934 }
9935 }
9936
9937 /* The list is now in reverse order; correct that. */
9938 base_list = nreverse (base_list);
9939
9940 if (pushed_scope)
9941 pop_scope (pushed_scope);
9942 }
9943 /* Now call xref_basetypes to set up all the base-class
9944 information. */
9945 xref_basetypes (type, base_list);
9946
9947 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9948 (int) ATTR_FLAG_TYPE_IN_PLACE,
9949 args, tf_error, NULL_TREE);
9950 fixup_attribute_variants (type);
9951
9952 /* Now that our base classes are set up, enter the scope of the
9953 class, so that name lookups into base classes, etc. will work
9954 correctly. This is precisely analogous to what we do in
9955 begin_class_definition when defining an ordinary non-template
9956 class, except we also need to push the enclosing classes. */
9957 push_nested_class (type);
9958
9959 /* Now members are processed in the order of declaration. */
9960 for (member = CLASSTYPE_DECL_LIST (pattern);
9961 member; member = TREE_CHAIN (member))
9962 {
9963 tree t = TREE_VALUE (member);
9964
9965 if (TREE_PURPOSE (member))
9966 {
9967 if (TYPE_P (t))
9968 {
9969 /* Build new CLASSTYPE_NESTED_UTDS. */
9970
9971 tree newtag;
9972 bool class_template_p;
9973
9974 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9975 && TYPE_LANG_SPECIFIC (t)
9976 && CLASSTYPE_IS_TEMPLATE (t));
9977 /* If the member is a class template, then -- even after
9978 substitution -- there may be dependent types in the
9979 template argument list for the class. We increment
9980 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9981 that function will assume that no types are dependent
9982 when outside of a template. */
9983 if (class_template_p)
9984 ++processing_template_decl;
9985 newtag = tsubst (t, args, tf_error, NULL_TREE);
9986 if (class_template_p)
9987 --processing_template_decl;
9988 if (newtag == error_mark_node)
9989 continue;
9990
9991 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9992 {
9993 tree name = TYPE_IDENTIFIER (t);
9994
9995 if (class_template_p)
9996 /* Unfortunately, lookup_template_class sets
9997 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9998 instantiation (i.e., for the type of a member
9999 template class nested within a template class.)
10000 This behavior is required for
10001 maybe_process_partial_specialization to work
10002 correctly, but is not accurate in this case;
10003 the TAG is not an instantiation of anything.
10004 (The corresponding TEMPLATE_DECL is an
10005 instantiation, but the TYPE is not.) */
10006 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
10007
10008 /* Now, we call pushtag to put this NEWTAG into the scope of
10009 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10010 pushtag calling push_template_decl. We don't have to do
10011 this for enums because it will already have been done in
10012 tsubst_enum. */
10013 if (name)
10014 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
10015 pushtag (name, newtag, /*tag_scope=*/ts_current);
10016 }
10017 }
10018 else if (DECL_DECLARES_FUNCTION_P (t))
10019 {
10020 /* Build new TYPE_METHODS. */
10021 tree r;
10022
10023 if (TREE_CODE (t) == TEMPLATE_DECL)
10024 ++processing_template_decl;
10025 r = tsubst (t, args, tf_error, NULL_TREE);
10026 if (TREE_CODE (t) == TEMPLATE_DECL)
10027 --processing_template_decl;
10028 set_current_access_from_decl (r);
10029 finish_member_declaration (r);
10030 /* Instantiate members marked with attribute used. */
10031 if (r != error_mark_node && DECL_PRESERVE_P (r))
10032 mark_used (r);
10033 if (TREE_CODE (r) == FUNCTION_DECL
10034 && DECL_OMP_DECLARE_REDUCTION_P (r))
10035 cp_check_omp_declare_reduction (r);
10036 }
10037 else if (DECL_CLASS_TEMPLATE_P (t)
10038 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10039 /* A closure type for a lambda in a default argument for a
10040 member template. Ignore it; it will be instantiated with
10041 the default argument. */;
10042 else
10043 {
10044 /* Build new TYPE_FIELDS. */
10045 if (TREE_CODE (t) == STATIC_ASSERT)
10046 {
10047 tree condition;
10048
10049 ++c_inhibit_evaluation_warnings;
10050 condition =
10051 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10052 tf_warning_or_error, NULL_TREE,
10053 /*integral_constant_expression_p=*/true);
10054 --c_inhibit_evaluation_warnings;
10055
10056 finish_static_assert (condition,
10057 STATIC_ASSERT_MESSAGE (t),
10058 STATIC_ASSERT_SOURCE_LOCATION (t),
10059 /*member_p=*/true);
10060 }
10061 else if (TREE_CODE (t) != CONST_DECL)
10062 {
10063 tree r;
10064 tree vec = NULL_TREE;
10065 int len = 1;
10066
10067 /* The file and line for this declaration, to
10068 assist in error message reporting. Since we
10069 called push_tinst_level above, we don't need to
10070 restore these. */
10071 input_location = DECL_SOURCE_LOCATION (t);
10072
10073 if (TREE_CODE (t) == TEMPLATE_DECL)
10074 ++processing_template_decl;
10075 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10076 if (TREE_CODE (t) == TEMPLATE_DECL)
10077 --processing_template_decl;
10078
10079 if (TREE_CODE (r) == TREE_VEC)
10080 {
10081 /* A capture pack became multiple fields. */
10082 vec = r;
10083 len = TREE_VEC_LENGTH (vec);
10084 }
10085
10086 for (int i = 0; i < len; ++i)
10087 {
10088 if (vec)
10089 r = TREE_VEC_ELT (vec, i);
10090 if (VAR_P (r))
10091 {
10092 /* In [temp.inst]:
10093
10094 [t]he initialization (and any associated
10095 side-effects) of a static data member does
10096 not occur unless the static data member is
10097 itself used in a way that requires the
10098 definition of the static data member to
10099 exist.
10100
10101 Therefore, we do not substitute into the
10102 initialized for the static data member here. */
10103 finish_static_data_member_decl
10104 (r,
10105 /*init=*/NULL_TREE,
10106 /*init_const_expr_p=*/false,
10107 /*asmspec_tree=*/NULL_TREE,
10108 /*flags=*/0);
10109 /* Instantiate members marked with attribute used. */
10110 if (r != error_mark_node && DECL_PRESERVE_P (r))
10111 mark_used (r);
10112 }
10113 else if (TREE_CODE (r) == FIELD_DECL)
10114 {
10115 /* Determine whether R has a valid type and can be
10116 completed later. If R is invalid, then its type
10117 is replaced by error_mark_node. */
10118 tree rtype = TREE_TYPE (r);
10119 if (can_complete_type_without_circularity (rtype))
10120 complete_type (rtype);
10121
10122 if (TREE_CODE (r) == FIELD_DECL
10123 && TREE_CODE (rtype) == ARRAY_TYPE
10124 && COMPLETE_TYPE_P (TREE_TYPE (rtype))
10125 && !COMPLETE_TYPE_P (rtype))
10126 {
10127 /* Flexible array mmembers of elements
10128 of complete type have an incomplete type
10129 and that's okay. */
10130 }
10131 else if (!COMPLETE_TYPE_P (rtype))
10132 {
10133 cxx_incomplete_type_error (r, rtype);
10134 TREE_TYPE (r) = error_mark_node;
10135 }
10136 }
10137
10138 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10139 such a thing will already have been added to the field
10140 list by tsubst_enum in finish_member_declaration in the
10141 CLASSTYPE_NESTED_UTDS case above. */
10142 if (!(TREE_CODE (r) == TYPE_DECL
10143 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10144 && DECL_ARTIFICIAL (r)))
10145 {
10146 set_current_access_from_decl (r);
10147 finish_member_declaration (r);
10148 }
10149 }
10150 }
10151 }
10152 }
10153 else
10154 {
10155 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10156 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10157 {
10158 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10159
10160 tree friend_type = t;
10161 bool adjust_processing_template_decl = false;
10162
10163 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10164 {
10165 /* template <class T> friend class C; */
10166 friend_type = tsubst_friend_class (friend_type, args);
10167 adjust_processing_template_decl = true;
10168 }
10169 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10170 {
10171 /* template <class T> friend class C::D; */
10172 friend_type = tsubst (friend_type, args,
10173 tf_warning_or_error, NULL_TREE);
10174 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10175 friend_type = TREE_TYPE (friend_type);
10176 adjust_processing_template_decl = true;
10177 }
10178 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10179 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10180 {
10181 /* This could be either
10182
10183 friend class T::C;
10184
10185 when dependent_type_p is false or
10186
10187 template <class U> friend class T::C;
10188
10189 otherwise. */
10190 /* Bump processing_template_decl in case this is something like
10191 template <class T> friend struct A<T>::B. */
10192 ++processing_template_decl;
10193 friend_type = tsubst (friend_type, args,
10194 tf_warning_or_error, NULL_TREE);
10195 if (dependent_type_p (friend_type))
10196 adjust_processing_template_decl = true;
10197 --processing_template_decl;
10198 }
10199 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10200 && hidden_name_p (TYPE_NAME (friend_type)))
10201 {
10202 /* friend class C;
10203
10204 where C hasn't been declared yet. Let's lookup name
10205 from namespace scope directly, bypassing any name that
10206 come from dependent base class. */
10207 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10208
10209 /* The call to xref_tag_from_type does injection for friend
10210 classes. */
10211 push_nested_namespace (ns);
10212 friend_type =
10213 xref_tag_from_type (friend_type, NULL_TREE,
10214 /*tag_scope=*/ts_current);
10215 pop_nested_namespace (ns);
10216 }
10217 else if (uses_template_parms (friend_type))
10218 /* friend class C<T>; */
10219 friend_type = tsubst (friend_type, args,
10220 tf_warning_or_error, NULL_TREE);
10221 /* Otherwise it's
10222
10223 friend class C;
10224
10225 where C is already declared or
10226
10227 friend class C<int>;
10228
10229 We don't have to do anything in these cases. */
10230
10231 if (adjust_processing_template_decl)
10232 /* Trick make_friend_class into realizing that the friend
10233 we're adding is a template, not an ordinary class. It's
10234 important that we use make_friend_class since it will
10235 perform some error-checking and output cross-reference
10236 information. */
10237 ++processing_template_decl;
10238
10239 if (friend_type != error_mark_node)
10240 make_friend_class (type, friend_type, /*complain=*/false);
10241
10242 if (adjust_processing_template_decl)
10243 --processing_template_decl;
10244 }
10245 else
10246 {
10247 /* Build new DECL_FRIENDLIST. */
10248 tree r;
10249
10250 /* The file and line for this declaration, to
10251 assist in error message reporting. Since we
10252 called push_tinst_level above, we don't need to
10253 restore these. */
10254 input_location = DECL_SOURCE_LOCATION (t);
10255
10256 if (TREE_CODE (t) == TEMPLATE_DECL)
10257 {
10258 ++processing_template_decl;
10259 push_deferring_access_checks (dk_no_check);
10260 }
10261
10262 r = tsubst_friend_function (t, args);
10263 add_friend (type, r, /*complain=*/false);
10264 if (TREE_CODE (t) == TEMPLATE_DECL)
10265 {
10266 pop_deferring_access_checks ();
10267 --processing_template_decl;
10268 }
10269 }
10270 }
10271 }
10272
10273 if (fn_context)
10274 {
10275 /* Restore these before substituting into the lambda capture
10276 initializers. */
10277 cp_unevaluated_operand = saved_unevaluated_operand;
10278 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10279 }
10280
10281 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10282 {
10283 tree decl = lambda_function (type);
10284 if (decl)
10285 {
10286 if (!DECL_TEMPLATE_INFO (decl)
10287 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10288 {
10289 /* Set function_depth to avoid garbage collection. */
10290 ++function_depth;
10291 instantiate_decl (decl, false, false);
10292 --function_depth;
10293 }
10294
10295 /* We need to instantiate the capture list from the template
10296 after we've instantiated the closure members, but before we
10297 consider adding the conversion op. Also keep any captures
10298 that may have been added during instantiation of the op(). */
10299 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10300 tree tmpl_cap
10301 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10302 args, tf_warning_or_error, NULL_TREE,
10303 false, false);
10304
10305 LAMBDA_EXPR_CAPTURE_LIST (expr)
10306 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10307
10308 maybe_add_lambda_conv_op (type);
10309 }
10310 else
10311 gcc_assert (errorcount);
10312 }
10313
10314 /* Set the file and line number information to whatever is given for
10315 the class itself. This puts error messages involving generated
10316 implicit functions at a predictable point, and the same point
10317 that would be used for non-template classes. */
10318 input_location = DECL_SOURCE_LOCATION (typedecl);
10319
10320 unreverse_member_declarations (type);
10321 finish_struct_1 (type);
10322 TYPE_BEING_DEFINED (type) = 0;
10323
10324 /* We don't instantiate default arguments for member functions. 14.7.1:
10325
10326 The implicit instantiation of a class template specialization causes
10327 the implicit instantiation of the declarations, but not of the
10328 definitions or default arguments, of the class member functions,
10329 member classes, static data members and member templates.... */
10330
10331 /* Some typedefs referenced from within the template code need to be access
10332 checked at template instantiation time, i.e now. These types were
10333 added to the template at parsing time. Let's get those and perform
10334 the access checks then. */
10335 perform_typedefs_access_check (pattern, args);
10336 perform_deferred_access_checks (tf_warning_or_error);
10337 pop_nested_class ();
10338 maximum_field_alignment = saved_maximum_field_alignment;
10339 if (!fn_context)
10340 pop_from_top_level ();
10341 pop_deferring_access_checks ();
10342 pop_tinst_level ();
10343
10344 /* The vtable for a template class can be emitted in any translation
10345 unit in which the class is instantiated. When there is no key
10346 method, however, finish_struct_1 will already have added TYPE to
10347 the keyed_classes list. */
10348 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10349 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10350
10351 return type;
10352 }
10353
10354 /* Wrapper for instantiate_class_template_1. */
10355
10356 tree
10357 instantiate_class_template (tree type)
10358 {
10359 tree ret;
10360 timevar_push (TV_TEMPLATE_INST);
10361 ret = instantiate_class_template_1 (type);
10362 timevar_pop (TV_TEMPLATE_INST);
10363 return ret;
10364 }
10365
10366 static tree
10367 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10368 {
10369 tree r;
10370
10371 if (!t)
10372 r = t;
10373 else if (TYPE_P (t))
10374 r = tsubst (t, args, complain, in_decl);
10375 else
10376 {
10377 if (!(complain & tf_warning))
10378 ++c_inhibit_evaluation_warnings;
10379 r = tsubst_expr (t, args, complain, in_decl,
10380 /*integral_constant_expression_p=*/true);
10381 if (!(complain & tf_warning))
10382 --c_inhibit_evaluation_warnings;
10383 }
10384 return r;
10385 }
10386
10387 /* Given a function parameter pack TMPL_PARM and some function parameters
10388 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10389 and set *SPEC_P to point at the next point in the list. */
10390
10391 tree
10392 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10393 {
10394 /* Collect all of the extra "packed" parameters into an
10395 argument pack. */
10396 tree parmvec;
10397 tree parmtypevec;
10398 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10399 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10400 tree spec_parm = *spec_p;
10401 int i, len;
10402
10403 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10404 if (tmpl_parm
10405 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10406 break;
10407
10408 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10409 parmvec = make_tree_vec (len);
10410 parmtypevec = make_tree_vec (len);
10411 spec_parm = *spec_p;
10412 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10413 {
10414 TREE_VEC_ELT (parmvec, i) = spec_parm;
10415 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10416 }
10417
10418 /* Build the argument packs. */
10419 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10420 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10421 TREE_TYPE (argpack) = argtypepack;
10422 *spec_p = spec_parm;
10423
10424 return argpack;
10425 }
10426
10427 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10428 NONTYPE_ARGUMENT_PACK. */
10429
10430 static tree
10431 make_fnparm_pack (tree spec_parm)
10432 {
10433 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10434 }
10435
10436 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10437 pack expansion with no extra args, 2 if it has extra args, or 0
10438 if it is not a pack expansion. */
10439
10440 static int
10441 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10442 {
10443 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10444 if (i >= TREE_VEC_LENGTH (vec))
10445 return 0;
10446 tree elt = TREE_VEC_ELT (vec, i);
10447 if (DECL_P (elt))
10448 /* A decl pack is itself an expansion. */
10449 elt = TREE_TYPE (elt);
10450 if (!PACK_EXPANSION_P (elt))
10451 return 0;
10452 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10453 return 2;
10454 return 1;
10455 }
10456
10457
10458 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10459
10460 static tree
10461 make_argument_pack_select (tree arg_pack, unsigned index)
10462 {
10463 tree aps = make_node (ARGUMENT_PACK_SELECT);
10464
10465 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10466 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10467
10468 return aps;
10469 }
10470
10471 /* This is a subroutine of tsubst_pack_expansion.
10472
10473 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10474 mechanism to store the (non complete list of) arguments of the
10475 substitution and return a non substituted pack expansion, in order
10476 to wait for when we have enough arguments to really perform the
10477 substitution. */
10478
10479 static bool
10480 use_pack_expansion_extra_args_p (tree parm_packs,
10481 int arg_pack_len,
10482 bool has_empty_arg)
10483 {
10484 /* If one pack has an expansion and another pack has a normal
10485 argument or if one pack has an empty argument and an another
10486 one hasn't then tsubst_pack_expansion cannot perform the
10487 substitution and need to fall back on the
10488 PACK_EXPANSION_EXTRA mechanism. */
10489 if (parm_packs == NULL_TREE)
10490 return false;
10491 else if (has_empty_arg)
10492 return true;
10493
10494 bool has_expansion_arg = false;
10495 for (int i = 0 ; i < arg_pack_len; ++i)
10496 {
10497 bool has_non_expansion_arg = false;
10498 for (tree parm_pack = parm_packs;
10499 parm_pack;
10500 parm_pack = TREE_CHAIN (parm_pack))
10501 {
10502 tree arg = TREE_VALUE (parm_pack);
10503
10504 int exp = argument_pack_element_is_expansion_p (arg, i);
10505 if (exp == 2)
10506 /* We can't substitute a pack expansion with extra args into
10507 our pattern. */
10508 return true;
10509 else if (exp)
10510 has_expansion_arg = true;
10511 else
10512 has_non_expansion_arg = true;
10513 }
10514
10515 if (has_expansion_arg && has_non_expansion_arg)
10516 return true;
10517 }
10518 return false;
10519 }
10520
10521 /* [temp.variadic]/6 says that:
10522
10523 The instantiation of a pack expansion [...]
10524 produces a list E1,E2, ..., En, where N is the number of elements
10525 in the pack expansion parameters.
10526
10527 This subroutine of tsubst_pack_expansion produces one of these Ei.
10528
10529 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10530 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10531 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10532 INDEX is the index 'i' of the element Ei to produce. ARGS,
10533 COMPLAIN, and IN_DECL are the same parameters as for the
10534 tsubst_pack_expansion function.
10535
10536 The function returns the resulting Ei upon successful completion,
10537 or error_mark_node.
10538
10539 Note that this function possibly modifies the ARGS parameter, so
10540 it's the responsibility of the caller to restore it. */
10541
10542 static tree
10543 gen_elem_of_pack_expansion_instantiation (tree pattern,
10544 tree parm_packs,
10545 unsigned index,
10546 tree args /* This parm gets
10547 modified. */,
10548 tsubst_flags_t complain,
10549 tree in_decl)
10550 {
10551 tree t;
10552 bool ith_elem_is_expansion = false;
10553
10554 /* For each parameter pack, change the substitution of the parameter
10555 pack to the ith argument in its argument pack, then expand the
10556 pattern. */
10557 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10558 {
10559 tree parm = TREE_PURPOSE (pack);
10560 tree arg_pack = TREE_VALUE (pack);
10561 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10562
10563 ith_elem_is_expansion |=
10564 argument_pack_element_is_expansion_p (arg_pack, index);
10565
10566 /* Select the Ith argument from the pack. */
10567 if (TREE_CODE (parm) == PARM_DECL
10568 || TREE_CODE (parm) == FIELD_DECL)
10569 {
10570 if (index == 0)
10571 {
10572 aps = make_argument_pack_select (arg_pack, index);
10573 if (!mark_used (parm, complain) && !(complain & tf_error))
10574 return error_mark_node;
10575 register_local_specialization (aps, parm);
10576 }
10577 else
10578 aps = retrieve_local_specialization (parm);
10579 }
10580 else
10581 {
10582 int idx, level;
10583 template_parm_level_and_index (parm, &level, &idx);
10584
10585 if (index == 0)
10586 {
10587 aps = make_argument_pack_select (arg_pack, index);
10588 /* Update the corresponding argument. */
10589 TMPL_ARG (args, level, idx) = aps;
10590 }
10591 else
10592 /* Re-use the ARGUMENT_PACK_SELECT. */
10593 aps = TMPL_ARG (args, level, idx);
10594 }
10595 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10596 }
10597
10598 /* Substitute into the PATTERN with the (possibly altered)
10599 arguments. */
10600 if (pattern == in_decl)
10601 /* Expanding a fixed parameter pack from
10602 coerce_template_parameter_pack. */
10603 t = tsubst_decl (pattern, args, complain);
10604 else if (pattern == error_mark_node)
10605 t = error_mark_node;
10606 else if (constraint_p (pattern))
10607 {
10608 if (processing_template_decl)
10609 t = tsubst_constraint (pattern, args, complain, in_decl);
10610 else
10611 t = (constraints_satisfied_p (pattern, args)
10612 ? boolean_true_node : boolean_false_node);
10613 }
10614 else if (!TYPE_P (pattern))
10615 t = tsubst_expr (pattern, args, complain, in_decl,
10616 /*integral_constant_expression_p=*/false);
10617 else
10618 t = tsubst (pattern, args, complain, in_decl);
10619
10620 /* If the Ith argument pack element is a pack expansion, then
10621 the Ith element resulting from the substituting is going to
10622 be a pack expansion as well. */
10623 if (ith_elem_is_expansion)
10624 t = make_pack_expansion (t);
10625
10626 return t;
10627 }
10628
10629 /* When the unexpanded parameter pack in a fold expression expands to an empty
10630 sequence, the value of the expression is as follows; the program is
10631 ill-formed if the operator is not listed in this table.
10632
10633 && true
10634 || false
10635 , void() */
10636
10637 tree
10638 expand_empty_fold (tree t, tsubst_flags_t complain)
10639 {
10640 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10641 if (!FOLD_EXPR_MODIFY_P (t))
10642 switch (code)
10643 {
10644 case TRUTH_ANDIF_EXPR:
10645 return boolean_true_node;
10646 case TRUTH_ORIF_EXPR:
10647 return boolean_false_node;
10648 case COMPOUND_EXPR:
10649 return void_node;
10650 default:
10651 break;
10652 }
10653
10654 if (complain & tf_error)
10655 error_at (location_of (t),
10656 "fold of empty expansion over %O", code);
10657 return error_mark_node;
10658 }
10659
10660 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10661 form an expression that combines the two terms using the
10662 operator of T. */
10663
10664 static tree
10665 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10666 {
10667 tree op = FOLD_EXPR_OP (t);
10668 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10669
10670 // Handle compound assignment operators.
10671 if (FOLD_EXPR_MODIFY_P (t))
10672 return build_x_modify_expr (input_location, left, code, right, complain);
10673
10674 switch (code)
10675 {
10676 case COMPOUND_EXPR:
10677 return build_x_compound_expr (input_location, left, right, complain);
10678 case DOTSTAR_EXPR:
10679 return build_m_component_ref (left, right, complain);
10680 default:
10681 return build_x_binary_op (input_location, code,
10682 left, TREE_CODE (left),
10683 right, TREE_CODE (right),
10684 /*overload=*/NULL,
10685 complain);
10686 }
10687 }
10688
10689 /* Substitute ARGS into the pack of a fold expression T. */
10690
10691 static inline tree
10692 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10693 {
10694 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10695 }
10696
10697 /* Substitute ARGS into the pack of a fold expression T. */
10698
10699 static inline tree
10700 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10701 {
10702 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10703 }
10704
10705 /* Expand a PACK of arguments into a grouped as left fold.
10706 Given a pack containing elements A0, A1, ..., An and an
10707 operator @, this builds the expression:
10708
10709 ((A0 @ A1) @ A2) ... @ An
10710
10711 Note that PACK must not be empty.
10712
10713 The operator is defined by the original fold expression T. */
10714
10715 static tree
10716 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10717 {
10718 tree left = TREE_VEC_ELT (pack, 0);
10719 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10720 {
10721 tree right = TREE_VEC_ELT (pack, i);
10722 left = fold_expression (t, left, right, complain);
10723 }
10724 return left;
10725 }
10726
10727 /* Substitute into a unary left fold expression. */
10728
10729 static tree
10730 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10731 tree in_decl)
10732 {
10733 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10734 if (pack == error_mark_node)
10735 return error_mark_node;
10736 if (TREE_VEC_LENGTH (pack) == 0)
10737 return expand_empty_fold (t, complain);
10738 else
10739 return expand_left_fold (t, pack, complain);
10740 }
10741
10742 /* Substitute into a binary left fold expression.
10743
10744 Do ths by building a single (non-empty) vector of argumnts and
10745 building the expression from those elements. */
10746
10747 static tree
10748 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10749 tree in_decl)
10750 {
10751 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10752 if (pack == error_mark_node)
10753 return error_mark_node;
10754 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10755 if (init == error_mark_node)
10756 return error_mark_node;
10757
10758 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10759 TREE_VEC_ELT (vec, 0) = init;
10760 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10761 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10762
10763 return expand_left_fold (t, vec, complain);
10764 }
10765
10766 /* Expand a PACK of arguments into a grouped as right fold.
10767 Given a pack containing elementns A0, A1, ..., and an
10768 operator @, this builds the expression:
10769
10770 A0@ ... (An-2 @ (An-1 @ An))
10771
10772 Note that PACK must not be empty.
10773
10774 The operator is defined by the original fold expression T. */
10775
10776 tree
10777 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10778 {
10779 // Build the expression.
10780 int n = TREE_VEC_LENGTH (pack);
10781 tree right = TREE_VEC_ELT (pack, n - 1);
10782 for (--n; n != 0; --n)
10783 {
10784 tree left = TREE_VEC_ELT (pack, n - 1);
10785 right = fold_expression (t, left, right, complain);
10786 }
10787 return right;
10788 }
10789
10790 /* Substitute into a unary right fold expression. */
10791
10792 static tree
10793 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10794 tree in_decl)
10795 {
10796 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10797 if (pack == error_mark_node)
10798 return error_mark_node;
10799 if (TREE_VEC_LENGTH (pack) == 0)
10800 return expand_empty_fold (t, complain);
10801 else
10802 return expand_right_fold (t, pack, complain);
10803 }
10804
10805 /* Substitute into a binary right fold expression.
10806
10807 Do ths by building a single (non-empty) vector of arguments and
10808 building the expression from those elements. */
10809
10810 static tree
10811 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10812 tree in_decl)
10813 {
10814 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10815 if (pack == error_mark_node)
10816 return error_mark_node;
10817 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10818 if (init == error_mark_node)
10819 return error_mark_node;
10820
10821 int n = TREE_VEC_LENGTH (pack);
10822 tree vec = make_tree_vec (n + 1);
10823 for (int i = 0; i < n; ++i)
10824 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10825 TREE_VEC_ELT (vec, n) = init;
10826
10827 return expand_right_fold (t, vec, complain);
10828 }
10829
10830
10831 /* Substitute ARGS into T, which is an pack expansion
10832 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10833 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10834 (if only a partial substitution could be performed) or
10835 ERROR_MARK_NODE if there was an error. */
10836 tree
10837 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10838 tree in_decl)
10839 {
10840 tree pattern;
10841 tree pack, packs = NULL_TREE;
10842 bool unsubstituted_packs = false;
10843 int i, len = -1;
10844 tree result;
10845 hash_map<tree, tree> *saved_local_specializations = NULL;
10846 bool need_local_specializations = false;
10847 int levels;
10848
10849 gcc_assert (PACK_EXPANSION_P (t));
10850 pattern = PACK_EXPANSION_PATTERN (t);
10851
10852 /* Add in any args remembered from an earlier partial instantiation. */
10853 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10854
10855 levels = TMPL_ARGS_DEPTH (args);
10856
10857 /* Determine the argument packs that will instantiate the parameter
10858 packs used in the expansion expression. While we're at it,
10859 compute the number of arguments to be expanded and make sure it
10860 is consistent. */
10861 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10862 pack = TREE_CHAIN (pack))
10863 {
10864 tree parm_pack = TREE_VALUE (pack);
10865 tree arg_pack = NULL_TREE;
10866 tree orig_arg = NULL_TREE;
10867 int level = 0;
10868
10869 if (TREE_CODE (parm_pack) == BASES)
10870 {
10871 if (BASES_DIRECT (parm_pack))
10872 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10873 args, complain, in_decl, false));
10874 else
10875 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10876 args, complain, in_decl, false));
10877 }
10878 if (TREE_CODE (parm_pack) == PARM_DECL)
10879 {
10880 /* We know we have correct local_specializations if this
10881 expansion is at function scope, or if we're dealing with a
10882 local parameter in a requires expression; for the latter,
10883 tsubst_requires_expr set it up appropriately. */
10884 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10885 arg_pack = retrieve_local_specialization (parm_pack);
10886 else
10887 /* We can't rely on local_specializations for a parameter
10888 name used later in a function declaration (such as in a
10889 late-specified return type). Even if it exists, it might
10890 have the wrong value for a recursive call. */
10891 need_local_specializations = true;
10892
10893 if (!arg_pack)
10894 {
10895 /* This parameter pack was used in an unevaluated context. Just
10896 make a dummy decl, since it's only used for its type. */
10897 arg_pack = tsubst_decl (parm_pack, args, complain);
10898 if (arg_pack && DECL_PACK_P (arg_pack))
10899 /* Partial instantiation of the parm_pack, we can't build
10900 up an argument pack yet. */
10901 arg_pack = NULL_TREE;
10902 else
10903 arg_pack = make_fnparm_pack (arg_pack);
10904 }
10905 }
10906 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10907 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10908 else
10909 {
10910 int idx;
10911 template_parm_level_and_index (parm_pack, &level, &idx);
10912
10913 if (level <= levels)
10914 arg_pack = TMPL_ARG (args, level, idx);
10915 }
10916
10917 orig_arg = arg_pack;
10918 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10919 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10920
10921 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10922 /* This can only happen if we forget to expand an argument
10923 pack somewhere else. Just return an error, silently. */
10924 {
10925 result = make_tree_vec (1);
10926 TREE_VEC_ELT (result, 0) = error_mark_node;
10927 return result;
10928 }
10929
10930 if (arg_pack)
10931 {
10932 int my_len =
10933 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10934
10935 /* Don't bother trying to do a partial substitution with
10936 incomplete packs; we'll try again after deduction. */
10937 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10938 return t;
10939
10940 if (len < 0)
10941 len = my_len;
10942 else if (len != my_len)
10943 {
10944 if (!(complain & tf_error))
10945 /* Fail quietly. */;
10946 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10947 error ("mismatched argument pack lengths while expanding "
10948 "%<%T%>",
10949 pattern);
10950 else
10951 error ("mismatched argument pack lengths while expanding "
10952 "%<%E%>",
10953 pattern);
10954 return error_mark_node;
10955 }
10956
10957 /* Keep track of the parameter packs and their corresponding
10958 argument packs. */
10959 packs = tree_cons (parm_pack, arg_pack, packs);
10960 TREE_TYPE (packs) = orig_arg;
10961 }
10962 else
10963 {
10964 /* We can't substitute for this parameter pack. We use a flag as
10965 well as the missing_level counter because function parameter
10966 packs don't have a level. */
10967 gcc_assert (processing_template_decl);
10968 unsubstituted_packs = true;
10969 }
10970 }
10971
10972 /* If the expansion is just T..., return the matching argument pack, unless
10973 we need to call convert_from_reference on all the elements. This is an
10974 important optimization; see c++/68422. */
10975 if (!unsubstituted_packs
10976 && TREE_PURPOSE (packs) == pattern)
10977 {
10978 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10979 /* Types need no adjustment, nor does sizeof..., and if we still have
10980 some pack expansion args we won't do anything yet. */
10981 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10982 || PACK_EXPANSION_SIZEOF_P (t)
10983 || pack_expansion_args_count (args))
10984 return args;
10985 /* Also optimize expression pack expansions if we can tell that the
10986 elements won't have reference type. */
10987 tree type = TREE_TYPE (pattern);
10988 if (type && TREE_CODE (type) != REFERENCE_TYPE
10989 && !PACK_EXPANSION_P (type)
10990 && !WILDCARD_TYPE_P (type))
10991 return args;
10992 /* Otherwise use the normal path so we get convert_from_reference. */
10993 }
10994
10995 /* We cannot expand this expansion expression, because we don't have
10996 all of the argument packs we need. */
10997 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10998 {
10999 /* We got some full packs, but we can't substitute them in until we
11000 have values for all the packs. So remember these until then. */
11001
11002 t = make_pack_expansion (pattern);
11003 PACK_EXPANSION_EXTRA_ARGS (t) = args;
11004 return t;
11005 }
11006 else if (unsubstituted_packs)
11007 {
11008 /* There were no real arguments, we're just replacing a parameter
11009 pack with another version of itself. Substitute into the
11010 pattern and return a PACK_EXPANSION_*. The caller will need to
11011 deal with that. */
11012 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
11013 t = tsubst_expr (pattern, args, complain, in_decl,
11014 /*integral_constant_expression_p=*/false);
11015 else
11016 t = tsubst (pattern, args, complain, in_decl);
11017 t = make_pack_expansion (t);
11018 return t;
11019 }
11020
11021 gcc_assert (len >= 0);
11022
11023 if (need_local_specializations)
11024 {
11025 /* We're in a late-specified return type, so create our own local
11026 specializations map; the current map is either NULL or (in the
11027 case of recursive unification) might have bindings that we don't
11028 want to use or alter. */
11029 saved_local_specializations = local_specializations;
11030 local_specializations = new hash_map<tree, tree>;
11031 }
11032
11033 /* For each argument in each argument pack, substitute into the
11034 pattern. */
11035 result = make_tree_vec (len);
11036 tree elem_args = copy_template_args (args);
11037 for (i = 0; i < len; ++i)
11038 {
11039 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11040 i,
11041 elem_args, complain,
11042 in_decl);
11043 TREE_VEC_ELT (result, i) = t;
11044 if (t == error_mark_node)
11045 {
11046 result = error_mark_node;
11047 break;
11048 }
11049 }
11050
11051 /* Update ARGS to restore the substitution from parameter packs to
11052 their argument packs. */
11053 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11054 {
11055 tree parm = TREE_PURPOSE (pack);
11056
11057 if (TREE_CODE (parm) == PARM_DECL
11058 || TREE_CODE (parm) == FIELD_DECL)
11059 register_local_specialization (TREE_TYPE (pack), parm);
11060 else
11061 {
11062 int idx, level;
11063
11064 if (TREE_VALUE (pack) == NULL_TREE)
11065 continue;
11066
11067 template_parm_level_and_index (parm, &level, &idx);
11068
11069 /* Update the corresponding argument. */
11070 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11071 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11072 TREE_TYPE (pack);
11073 else
11074 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11075 }
11076 }
11077
11078 if (need_local_specializations)
11079 {
11080 delete local_specializations;
11081 local_specializations = saved_local_specializations;
11082 }
11083
11084 return result;
11085 }
11086
11087 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11088 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11089 parameter packs; all parms generated from a function parameter pack will
11090 have the same DECL_PARM_INDEX. */
11091
11092 tree
11093 get_pattern_parm (tree parm, tree tmpl)
11094 {
11095 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11096 tree patparm;
11097
11098 if (DECL_ARTIFICIAL (parm))
11099 {
11100 for (patparm = DECL_ARGUMENTS (pattern);
11101 patparm; patparm = DECL_CHAIN (patparm))
11102 if (DECL_ARTIFICIAL (patparm)
11103 && DECL_NAME (parm) == DECL_NAME (patparm))
11104 break;
11105 }
11106 else
11107 {
11108 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11109 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11110 gcc_assert (DECL_PARM_INDEX (patparm)
11111 == DECL_PARM_INDEX (parm));
11112 }
11113
11114 return patparm;
11115 }
11116
11117 /* Make an argument pack out of the TREE_VEC VEC. */
11118
11119 static tree
11120 make_argument_pack (tree vec)
11121 {
11122 tree pack;
11123 tree elt = TREE_VEC_ELT (vec, 0);
11124 if (TYPE_P (elt))
11125 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
11126 else
11127 {
11128 pack = make_node (NONTYPE_ARGUMENT_PACK);
11129 TREE_TYPE (pack) = TREE_TYPE (elt);
11130 TREE_CONSTANT (pack) = 1;
11131 }
11132 SET_ARGUMENT_PACK_ARGS (pack, vec);
11133 return pack;
11134 }
11135
11136 /* Return an exact copy of template args T that can be modified
11137 independently. */
11138
11139 static tree
11140 copy_template_args (tree t)
11141 {
11142 if (t == error_mark_node)
11143 return t;
11144
11145 int len = TREE_VEC_LENGTH (t);
11146 tree new_vec = make_tree_vec (len);
11147
11148 for (int i = 0; i < len; ++i)
11149 {
11150 tree elt = TREE_VEC_ELT (t, i);
11151 if (elt && TREE_CODE (elt) == TREE_VEC)
11152 elt = copy_template_args (elt);
11153 TREE_VEC_ELT (new_vec, i) = elt;
11154 }
11155
11156 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
11157 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
11158
11159 return new_vec;
11160 }
11161
11162 /* Substitute ARGS into the vector or list of template arguments T. */
11163
11164 static tree
11165 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11166 {
11167 tree orig_t = t;
11168 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11169 tree *elts;
11170
11171 if (t == error_mark_node)
11172 return error_mark_node;
11173
11174 len = TREE_VEC_LENGTH (t);
11175 elts = XALLOCAVEC (tree, len);
11176
11177 for (i = 0; i < len; i++)
11178 {
11179 tree orig_arg = TREE_VEC_ELT (t, i);
11180 tree new_arg;
11181
11182 if (TREE_CODE (orig_arg) == TREE_VEC)
11183 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11184 else if (PACK_EXPANSION_P (orig_arg))
11185 {
11186 /* Substitute into an expansion expression. */
11187 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11188
11189 if (TREE_CODE (new_arg) == TREE_VEC)
11190 /* Add to the expanded length adjustment the number of
11191 expanded arguments. We subtract one from this
11192 measurement, because the argument pack expression
11193 itself is already counted as 1 in
11194 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11195 the argument pack is empty. */
11196 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11197 }
11198 else if (ARGUMENT_PACK_P (orig_arg))
11199 {
11200 /* Substitute into each of the arguments. */
11201 new_arg = TYPE_P (orig_arg)
11202 ? cxx_make_type (TREE_CODE (orig_arg))
11203 : make_node (TREE_CODE (orig_arg));
11204
11205 SET_ARGUMENT_PACK_ARGS (
11206 new_arg,
11207 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11208 args, complain, in_decl));
11209
11210 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11211 new_arg = error_mark_node;
11212
11213 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11214 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11215 complain, in_decl);
11216 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11217
11218 if (TREE_TYPE (new_arg) == error_mark_node)
11219 new_arg = error_mark_node;
11220 }
11221 }
11222 else
11223 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11224
11225 if (new_arg == error_mark_node)
11226 return error_mark_node;
11227
11228 elts[i] = new_arg;
11229 if (new_arg != orig_arg)
11230 need_new = 1;
11231 }
11232
11233 if (!need_new)
11234 return t;
11235
11236 /* Make space for the expanded arguments coming from template
11237 argument packs. */
11238 t = make_tree_vec (len + expanded_len_adjust);
11239 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11240 arguments for a member template.
11241 In that case each TREE_VEC in ORIG_T represents a level of template
11242 arguments, and ORIG_T won't carry any non defaulted argument count.
11243 It will rather be the nested TREE_VECs that will carry one.
11244 In other words, ORIG_T carries a non defaulted argument count only
11245 if it doesn't contain any nested TREE_VEC. */
11246 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11247 {
11248 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11249 count += expanded_len_adjust;
11250 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11251 }
11252 for (i = 0, out = 0; i < len; i++)
11253 {
11254 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11255 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11256 && TREE_CODE (elts[i]) == TREE_VEC)
11257 {
11258 int idx;
11259
11260 /* Now expand the template argument pack "in place". */
11261 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11262 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11263 }
11264 else
11265 {
11266 TREE_VEC_ELT (t, out) = elts[i];
11267 out++;
11268 }
11269 }
11270
11271 return t;
11272 }
11273
11274 /* Return the result of substituting ARGS into the template parameters
11275 given by PARMS. If there are m levels of ARGS and m + n levels of
11276 PARMS, then the result will contain n levels of PARMS. For
11277 example, if PARMS is `template <class T> template <class U>
11278 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11279 result will be `template <int*, double, class V>'. */
11280
11281 static tree
11282 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11283 {
11284 tree r = NULL_TREE;
11285 tree* new_parms;
11286
11287 /* When substituting into a template, we must set
11288 PROCESSING_TEMPLATE_DECL as the template parameters may be
11289 dependent if they are based on one-another, and the dependency
11290 predicates are short-circuit outside of templates. */
11291 ++processing_template_decl;
11292
11293 for (new_parms = &r;
11294 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11295 new_parms = &(TREE_CHAIN (*new_parms)),
11296 parms = TREE_CHAIN (parms))
11297 {
11298 tree new_vec =
11299 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11300 int i;
11301
11302 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11303 {
11304 tree tuple;
11305
11306 if (parms == error_mark_node)
11307 continue;
11308
11309 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11310
11311 if (tuple == error_mark_node)
11312 continue;
11313
11314 TREE_VEC_ELT (new_vec, i) =
11315 tsubst_template_parm (tuple, args, complain);
11316 }
11317
11318 *new_parms =
11319 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11320 - TMPL_ARGS_DEPTH (args)),
11321 new_vec, NULL_TREE);
11322 }
11323
11324 --processing_template_decl;
11325
11326 return r;
11327 }
11328
11329 /* Return the result of substituting ARGS into one template parameter
11330 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11331 parameter and which TREE_PURPOSE is the default argument of the
11332 template parameter. */
11333
11334 static tree
11335 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11336 {
11337 tree default_value, parm_decl;
11338
11339 if (args == NULL_TREE
11340 || t == NULL_TREE
11341 || t == error_mark_node)
11342 return t;
11343
11344 gcc_assert (TREE_CODE (t) == TREE_LIST);
11345
11346 default_value = TREE_PURPOSE (t);
11347 parm_decl = TREE_VALUE (t);
11348
11349 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11350 if (TREE_CODE (parm_decl) == PARM_DECL
11351 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11352 parm_decl = error_mark_node;
11353 default_value = tsubst_template_arg (default_value, args,
11354 complain, NULL_TREE);
11355
11356 return build_tree_list (default_value, parm_decl);
11357 }
11358
11359 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11360 type T. If T is not an aggregate or enumeration type, it is
11361 handled as if by tsubst. IN_DECL is as for tsubst. If
11362 ENTERING_SCOPE is nonzero, T is the context for a template which
11363 we are presently tsubst'ing. Return the substituted value. */
11364
11365 static tree
11366 tsubst_aggr_type (tree t,
11367 tree args,
11368 tsubst_flags_t complain,
11369 tree in_decl,
11370 int entering_scope)
11371 {
11372 if (t == NULL_TREE)
11373 return NULL_TREE;
11374
11375 switch (TREE_CODE (t))
11376 {
11377 case RECORD_TYPE:
11378 if (TYPE_PTRMEMFUNC_P (t))
11379 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11380
11381 /* Else fall through. */
11382 case ENUMERAL_TYPE:
11383 case UNION_TYPE:
11384 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11385 {
11386 tree argvec;
11387 tree context;
11388 tree r;
11389 int saved_unevaluated_operand;
11390 int saved_inhibit_evaluation_warnings;
11391
11392 /* In "sizeof(X<I>)" we need to evaluate "I". */
11393 saved_unevaluated_operand = cp_unevaluated_operand;
11394 cp_unevaluated_operand = 0;
11395 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11396 c_inhibit_evaluation_warnings = 0;
11397
11398 /* First, determine the context for the type we are looking
11399 up. */
11400 context = TYPE_CONTEXT (t);
11401 if (context && TYPE_P (context))
11402 {
11403 context = tsubst_aggr_type (context, args, complain,
11404 in_decl, /*entering_scope=*/1);
11405 /* If context is a nested class inside a class template,
11406 it may still need to be instantiated (c++/33959). */
11407 context = complete_type (context);
11408 }
11409
11410 /* Then, figure out what arguments are appropriate for the
11411 type we are trying to find. For example, given:
11412
11413 template <class T> struct S;
11414 template <class T, class U> void f(T, U) { S<U> su; }
11415
11416 and supposing that we are instantiating f<int, double>,
11417 then our ARGS will be {int, double}, but, when looking up
11418 S we only want {double}. */
11419 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11420 complain, in_decl);
11421 if (argvec == error_mark_node)
11422 r = error_mark_node;
11423 else
11424 {
11425 r = lookup_template_class (t, argvec, in_decl, context,
11426 entering_scope, complain);
11427 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11428 }
11429
11430 cp_unevaluated_operand = saved_unevaluated_operand;
11431 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11432
11433 return r;
11434 }
11435 else
11436 /* This is not a template type, so there's nothing to do. */
11437 return t;
11438
11439 default:
11440 return tsubst (t, args, complain, in_decl);
11441 }
11442 }
11443
11444 /* Substitute into the default argument ARG (a default argument for
11445 FN), which has the indicated TYPE. */
11446
11447 tree
11448 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11449 {
11450 tree saved_class_ptr = NULL_TREE;
11451 tree saved_class_ref = NULL_TREE;
11452 int errs = errorcount + sorrycount;
11453
11454 /* This can happen in invalid code. */
11455 if (TREE_CODE (arg) == DEFAULT_ARG)
11456 return arg;
11457
11458 /* This default argument came from a template. Instantiate the
11459 default argument here, not in tsubst. In the case of
11460 something like:
11461
11462 template <class T>
11463 struct S {
11464 static T t();
11465 void f(T = t());
11466 };
11467
11468 we must be careful to do name lookup in the scope of S<T>,
11469 rather than in the current class. */
11470 push_access_scope (fn);
11471 /* The "this" pointer is not valid in a default argument. */
11472 if (cfun)
11473 {
11474 saved_class_ptr = current_class_ptr;
11475 cp_function_chain->x_current_class_ptr = NULL_TREE;
11476 saved_class_ref = current_class_ref;
11477 cp_function_chain->x_current_class_ref = NULL_TREE;
11478 }
11479
11480 push_deferring_access_checks(dk_no_deferred);
11481 /* The default argument expression may cause implicitly defined
11482 member functions to be synthesized, which will result in garbage
11483 collection. We must treat this situation as if we were within
11484 the body of function so as to avoid collecting live data on the
11485 stack. */
11486 ++function_depth;
11487 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11488 complain, NULL_TREE,
11489 /*integral_constant_expression_p=*/false);
11490 --function_depth;
11491 pop_deferring_access_checks();
11492
11493 /* Restore the "this" pointer. */
11494 if (cfun)
11495 {
11496 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11497 cp_function_chain->x_current_class_ref = saved_class_ref;
11498 }
11499
11500 if (errorcount+sorrycount > errs
11501 && (complain & tf_warning_or_error))
11502 inform (input_location,
11503 " when instantiating default argument for call to %D", fn);
11504
11505 /* Make sure the default argument is reasonable. */
11506 arg = check_default_argument (type, arg, complain);
11507
11508 pop_access_scope (fn);
11509
11510 return arg;
11511 }
11512
11513 /* Substitute into all the default arguments for FN. */
11514
11515 static void
11516 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11517 {
11518 tree arg;
11519 tree tmpl_args;
11520
11521 tmpl_args = DECL_TI_ARGS (fn);
11522
11523 /* If this function is not yet instantiated, we certainly don't need
11524 its default arguments. */
11525 if (uses_template_parms (tmpl_args))
11526 return;
11527 /* Don't do this again for clones. */
11528 if (DECL_CLONED_FUNCTION_P (fn))
11529 return;
11530
11531 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11532 arg;
11533 arg = TREE_CHAIN (arg))
11534 if (TREE_PURPOSE (arg))
11535 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11536 TREE_VALUE (arg),
11537 TREE_PURPOSE (arg),
11538 complain);
11539 }
11540
11541 /* Substitute the ARGS into the T, which is a _DECL. Return the
11542 result of the substitution. Issue error and warning messages under
11543 control of COMPLAIN. */
11544
11545 static tree
11546 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11547 {
11548 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11549 location_t saved_loc;
11550 tree r = NULL_TREE;
11551 tree in_decl = t;
11552 hashval_t hash = 0;
11553
11554 /* Set the filename and linenumber to improve error-reporting. */
11555 saved_loc = input_location;
11556 input_location = DECL_SOURCE_LOCATION (t);
11557
11558 switch (TREE_CODE (t))
11559 {
11560 case TEMPLATE_DECL:
11561 {
11562 /* We can get here when processing a member function template,
11563 member class template, or template template parameter. */
11564 tree decl = DECL_TEMPLATE_RESULT (t);
11565 tree spec;
11566 tree tmpl_args;
11567 tree full_args;
11568
11569 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11570 {
11571 /* Template template parameter is treated here. */
11572 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11573 if (new_type == error_mark_node)
11574 r = error_mark_node;
11575 /* If we get a real template back, return it. This can happen in
11576 the context of most_specialized_partial_spec. */
11577 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11578 r = new_type;
11579 else
11580 /* The new TEMPLATE_DECL was built in
11581 reduce_template_parm_level. */
11582 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11583 break;
11584 }
11585
11586 /* We might already have an instance of this template.
11587 The ARGS are for the surrounding class type, so the
11588 full args contain the tsubst'd args for the context,
11589 plus the innermost args from the template decl. */
11590 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11591 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11592 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11593 /* Because this is a template, the arguments will still be
11594 dependent, even after substitution. If
11595 PROCESSING_TEMPLATE_DECL is not set, the dependency
11596 predicates will short-circuit. */
11597 ++processing_template_decl;
11598 full_args = tsubst_template_args (tmpl_args, args,
11599 complain, in_decl);
11600 --processing_template_decl;
11601 if (full_args == error_mark_node)
11602 RETURN (error_mark_node);
11603
11604 /* If this is a default template template argument,
11605 tsubst might not have changed anything. */
11606 if (full_args == tmpl_args)
11607 RETURN (t);
11608
11609 hash = hash_tmpl_and_args (t, full_args);
11610 spec = retrieve_specialization (t, full_args, hash);
11611 if (spec != NULL_TREE)
11612 {
11613 r = spec;
11614 break;
11615 }
11616
11617 /* Make a new template decl. It will be similar to the
11618 original, but will record the current template arguments.
11619 We also create a new function declaration, which is just
11620 like the old one, but points to this new template, rather
11621 than the old one. */
11622 r = copy_decl (t);
11623 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11624 DECL_CHAIN (r) = NULL_TREE;
11625
11626 // Build new template info linking to the original template decl.
11627 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11628
11629 if (TREE_CODE (decl) == TYPE_DECL
11630 && !TYPE_DECL_ALIAS_P (decl))
11631 {
11632 tree new_type;
11633 ++processing_template_decl;
11634 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11635 --processing_template_decl;
11636 if (new_type == error_mark_node)
11637 RETURN (error_mark_node);
11638
11639 TREE_TYPE (r) = new_type;
11640 /* For a partial specialization, we need to keep pointing to
11641 the primary template. */
11642 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11643 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11644 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11645 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11646 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11647 }
11648 else
11649 {
11650 tree new_decl;
11651 ++processing_template_decl;
11652 new_decl = tsubst (decl, args, complain, in_decl);
11653 --processing_template_decl;
11654 if (new_decl == error_mark_node)
11655 RETURN (error_mark_node);
11656
11657 DECL_TEMPLATE_RESULT (r) = new_decl;
11658 DECL_TI_TEMPLATE (new_decl) = r;
11659 TREE_TYPE (r) = TREE_TYPE (new_decl);
11660 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11661 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11662 }
11663
11664 SET_DECL_IMPLICIT_INSTANTIATION (r);
11665 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11666 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11667
11668 /* The template parameters for this new template are all the
11669 template parameters for the old template, except the
11670 outermost level of parameters. */
11671 DECL_TEMPLATE_PARMS (r)
11672 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11673 complain);
11674
11675 if (PRIMARY_TEMPLATE_P (t))
11676 DECL_PRIMARY_TEMPLATE (r) = r;
11677
11678 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11679 /* Record this non-type partial instantiation. */
11680 register_specialization (r, t,
11681 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11682 false, hash);
11683 }
11684 break;
11685
11686 case FUNCTION_DECL:
11687 {
11688 tree ctx;
11689 tree argvec = NULL_TREE;
11690 tree *friends;
11691 tree gen_tmpl;
11692 tree type;
11693 int member;
11694 int args_depth;
11695 int parms_depth;
11696
11697 /* Nobody should be tsubst'ing into non-template functions. */
11698 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11699
11700 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11701 {
11702 tree spec;
11703
11704 /* If T is not dependent, just return it. */
11705 if (!uses_template_parms (DECL_TI_ARGS (t)))
11706 RETURN (t);
11707
11708 /* Calculate the most general template of which R is a
11709 specialization, and the complete set of arguments used to
11710 specialize R. */
11711 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11712 argvec = tsubst_template_args (DECL_TI_ARGS
11713 (DECL_TEMPLATE_RESULT
11714 (DECL_TI_TEMPLATE (t))),
11715 args, complain, in_decl);
11716 if (argvec == error_mark_node)
11717 RETURN (error_mark_node);
11718
11719 /* Check to see if we already have this specialization. */
11720 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11721 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11722
11723 if (spec)
11724 {
11725 r = spec;
11726 break;
11727 }
11728
11729 /* We can see more levels of arguments than parameters if
11730 there was a specialization of a member template, like
11731 this:
11732
11733 template <class T> struct S { template <class U> void f(); }
11734 template <> template <class U> void S<int>::f(U);
11735
11736 Here, we'll be substituting into the specialization,
11737 because that's where we can find the code we actually
11738 want to generate, but we'll have enough arguments for
11739 the most general template.
11740
11741 We also deal with the peculiar case:
11742
11743 template <class T> struct S {
11744 template <class U> friend void f();
11745 };
11746 template <class U> void f() {}
11747 template S<int>;
11748 template void f<double>();
11749
11750 Here, the ARGS for the instantiation of will be {int,
11751 double}. But, we only need as many ARGS as there are
11752 levels of template parameters in CODE_PATTERN. We are
11753 careful not to get fooled into reducing the ARGS in
11754 situations like:
11755
11756 template <class T> struct S { template <class U> void f(U); }
11757 template <class T> template <> void S<T>::f(int) {}
11758
11759 which we can spot because the pattern will be a
11760 specialization in this case. */
11761 args_depth = TMPL_ARGS_DEPTH (args);
11762 parms_depth =
11763 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11764 if (args_depth > parms_depth
11765 && !DECL_TEMPLATE_SPECIALIZATION (t))
11766 args = get_innermost_template_args (args, parms_depth);
11767 }
11768 else
11769 {
11770 /* This special case arises when we have something like this:
11771
11772 template <class T> struct S {
11773 friend void f<int>(int, double);
11774 };
11775
11776 Here, the DECL_TI_TEMPLATE for the friend declaration
11777 will be an IDENTIFIER_NODE. We are being called from
11778 tsubst_friend_function, and we want only to create a
11779 new decl (R) with appropriate types so that we can call
11780 determine_specialization. */
11781 gen_tmpl = NULL_TREE;
11782 }
11783
11784 if (DECL_CLASS_SCOPE_P (t))
11785 {
11786 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11787 member = 2;
11788 else
11789 member = 1;
11790 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11791 complain, t, /*entering_scope=*/1);
11792 }
11793 else
11794 {
11795 member = 0;
11796 ctx = DECL_CONTEXT (t);
11797 }
11798 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11799 if (type == error_mark_node)
11800 RETURN (error_mark_node);
11801
11802 /* If we hit excessive deduction depth, the type is bogus even if
11803 it isn't error_mark_node, so don't build a decl. */
11804 if (excessive_deduction_depth)
11805 RETURN (error_mark_node);
11806
11807 /* We do NOT check for matching decls pushed separately at this
11808 point, as they may not represent instantiations of this
11809 template, and in any case are considered separate under the
11810 discrete model. */
11811 r = copy_decl (t);
11812 DECL_USE_TEMPLATE (r) = 0;
11813 TREE_TYPE (r) = type;
11814 /* Clear out the mangled name and RTL for the instantiation. */
11815 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11816 SET_DECL_RTL (r, NULL);
11817 /* Leave DECL_INITIAL set on deleted instantiations. */
11818 if (!DECL_DELETED_FN (r))
11819 DECL_INITIAL (r) = NULL_TREE;
11820 DECL_CONTEXT (r) = ctx;
11821
11822 /* OpenMP UDRs have the only argument a reference to the declared
11823 type. We want to diagnose if the declared type is a reference,
11824 which is invalid, but as references to references are usually
11825 quietly merged, diagnose it here. */
11826 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11827 {
11828 tree argtype
11829 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11830 argtype = tsubst (argtype, args, complain, in_decl);
11831 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11832 error_at (DECL_SOURCE_LOCATION (t),
11833 "reference type %qT in "
11834 "%<#pragma omp declare reduction%>", argtype);
11835 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11836 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11837 argtype);
11838 }
11839
11840 if (member && DECL_CONV_FN_P (r))
11841 /* Type-conversion operator. Reconstruct the name, in
11842 case it's the name of one of the template's parameters. */
11843 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11844
11845 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11846 complain, t);
11847 DECL_RESULT (r) = NULL_TREE;
11848
11849 TREE_STATIC (r) = 0;
11850 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11851 DECL_EXTERNAL (r) = 1;
11852 /* If this is an instantiation of a function with internal
11853 linkage, we already know what object file linkage will be
11854 assigned to the instantiation. */
11855 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11856 DECL_DEFER_OUTPUT (r) = 0;
11857 DECL_CHAIN (r) = NULL_TREE;
11858 DECL_PENDING_INLINE_INFO (r) = 0;
11859 DECL_PENDING_INLINE_P (r) = 0;
11860 DECL_SAVED_TREE (r) = NULL_TREE;
11861 DECL_STRUCT_FUNCTION (r) = NULL;
11862 TREE_USED (r) = 0;
11863 /* We'll re-clone as appropriate in instantiate_template. */
11864 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11865
11866 /* If we aren't complaining now, return on error before we register
11867 the specialization so that we'll complain eventually. */
11868 if ((complain & tf_error) == 0
11869 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11870 && !grok_op_properties (r, /*complain=*/false))
11871 RETURN (error_mark_node);
11872
11873 /* When instantiating a constrained member, substitute
11874 into the constraints to create a new constraint. */
11875 if (tree ci = get_constraints (t))
11876 if (member)
11877 {
11878 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11879 set_constraints (r, ci);
11880 }
11881
11882 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11883 this in the special friend case mentioned above where
11884 GEN_TMPL is NULL. */
11885 if (gen_tmpl)
11886 {
11887 DECL_TEMPLATE_INFO (r)
11888 = build_template_info (gen_tmpl, argvec);
11889 SET_DECL_IMPLICIT_INSTANTIATION (r);
11890
11891 tree new_r
11892 = register_specialization (r, gen_tmpl, argvec, false, hash);
11893 if (new_r != r)
11894 /* We instantiated this while substituting into
11895 the type earlier (template/friend54.C). */
11896 RETURN (new_r);
11897
11898 /* We're not supposed to instantiate default arguments
11899 until they are called, for a template. But, for a
11900 declaration like:
11901
11902 template <class T> void f ()
11903 { extern void g(int i = T()); }
11904
11905 we should do the substitution when the template is
11906 instantiated. We handle the member function case in
11907 instantiate_class_template since the default arguments
11908 might refer to other members of the class. */
11909 if (!member
11910 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11911 && !uses_template_parms (argvec))
11912 tsubst_default_arguments (r, complain);
11913 }
11914 else
11915 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11916
11917 /* Copy the list of befriending classes. */
11918 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11919 *friends;
11920 friends = &TREE_CHAIN (*friends))
11921 {
11922 *friends = copy_node (*friends);
11923 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11924 args, complain,
11925 in_decl);
11926 }
11927
11928 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11929 {
11930 maybe_retrofit_in_chrg (r);
11931 if (DECL_CONSTRUCTOR_P (r))
11932 grok_ctor_properties (ctx, r);
11933 if (DECL_INHERITED_CTOR_BASE (r))
11934 deduce_inheriting_ctor (r);
11935 /* If this is an instantiation of a member template, clone it.
11936 If it isn't, that'll be handled by
11937 clone_constructors_and_destructors. */
11938 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11939 clone_function_decl (r, /*update_method_vec_p=*/0);
11940 }
11941 else if ((complain & tf_error) != 0
11942 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11943 && !grok_op_properties (r, /*complain=*/true))
11944 RETURN (error_mark_node);
11945
11946 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11947 SET_DECL_FRIEND_CONTEXT (r,
11948 tsubst (DECL_FRIEND_CONTEXT (t),
11949 args, complain, in_decl));
11950
11951 /* Possibly limit visibility based on template args. */
11952 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11953 if (DECL_VISIBILITY_SPECIFIED (t))
11954 {
11955 DECL_VISIBILITY_SPECIFIED (r) = 0;
11956 DECL_ATTRIBUTES (r)
11957 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11958 }
11959 determine_visibility (r);
11960 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11961 && !processing_template_decl)
11962 defaulted_late_check (r);
11963
11964 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11965 args, complain, in_decl);
11966 }
11967 break;
11968
11969 case PARM_DECL:
11970 {
11971 tree type = NULL_TREE;
11972 int i, len = 1;
11973 tree expanded_types = NULL_TREE;
11974 tree prev_r = NULL_TREE;
11975 tree first_r = NULL_TREE;
11976
11977 if (DECL_PACK_P (t))
11978 {
11979 /* If there is a local specialization that isn't a
11980 parameter pack, it means that we're doing a "simple"
11981 substitution from inside tsubst_pack_expansion. Just
11982 return the local specialization (which will be a single
11983 parm). */
11984 tree spec = retrieve_local_specialization (t);
11985 if (spec
11986 && TREE_CODE (spec) == PARM_DECL
11987 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11988 RETURN (spec);
11989
11990 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11991 the parameters in this function parameter pack. */
11992 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11993 complain, in_decl);
11994 if (TREE_CODE (expanded_types) == TREE_VEC)
11995 {
11996 len = TREE_VEC_LENGTH (expanded_types);
11997
11998 /* Zero-length parameter packs are boring. Just substitute
11999 into the chain. */
12000 if (len == 0)
12001 RETURN (tsubst (TREE_CHAIN (t), args, complain,
12002 TREE_CHAIN (t)));
12003 }
12004 else
12005 {
12006 /* All we did was update the type. Make a note of that. */
12007 type = expanded_types;
12008 expanded_types = NULL_TREE;
12009 }
12010 }
12011
12012 /* Loop through all of the parameters we'll build. When T is
12013 a function parameter pack, LEN is the number of expanded
12014 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12015 r = NULL_TREE;
12016 for (i = 0; i < len; ++i)
12017 {
12018 prev_r = r;
12019 r = copy_node (t);
12020 if (DECL_TEMPLATE_PARM_P (t))
12021 SET_DECL_TEMPLATE_PARM_P (r);
12022
12023 if (expanded_types)
12024 /* We're on the Ith parameter of the function parameter
12025 pack. */
12026 {
12027 /* Get the Ith type. */
12028 type = TREE_VEC_ELT (expanded_types, i);
12029
12030 /* Rename the parameter to include the index. */
12031 DECL_NAME (r)
12032 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12033 }
12034 else if (!type)
12035 /* We're dealing with a normal parameter. */
12036 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12037
12038 type = type_decays_to (type);
12039 TREE_TYPE (r) = type;
12040 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12041
12042 if (DECL_INITIAL (r))
12043 {
12044 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
12045 DECL_INITIAL (r) = TREE_TYPE (r);
12046 else
12047 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
12048 complain, in_decl);
12049 }
12050
12051 DECL_CONTEXT (r) = NULL_TREE;
12052
12053 if (!DECL_TEMPLATE_PARM_P (r))
12054 DECL_ARG_TYPE (r) = type_passed_as (type);
12055
12056 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12057 args, complain, in_decl);
12058
12059 /* Keep track of the first new parameter we
12060 generate. That's what will be returned to the
12061 caller. */
12062 if (!first_r)
12063 first_r = r;
12064
12065 /* Build a proper chain of parameters when substituting
12066 into a function parameter pack. */
12067 if (prev_r)
12068 DECL_CHAIN (prev_r) = r;
12069 }
12070
12071 /* If cp_unevaluated_operand is set, we're just looking for a
12072 single dummy parameter, so don't keep going. */
12073 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12074 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12075 complain, DECL_CHAIN (t));
12076
12077 /* FIRST_R contains the start of the chain we've built. */
12078 r = first_r;
12079 }
12080 break;
12081
12082 case FIELD_DECL:
12083 {
12084 tree type = NULL_TREE;
12085 tree vec = NULL_TREE;
12086 tree expanded_types = NULL_TREE;
12087 int len = 1;
12088
12089 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12090 {
12091 /* This field is a lambda capture pack. Return a TREE_VEC of
12092 the expanded fields to instantiate_class_template_1 and
12093 store them in the specializations hash table as a
12094 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12095 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12096 complain, in_decl);
12097 if (TREE_CODE (expanded_types) == TREE_VEC)
12098 {
12099 len = TREE_VEC_LENGTH (expanded_types);
12100 vec = make_tree_vec (len);
12101 }
12102 else
12103 {
12104 /* All we did was update the type. Make a note of that. */
12105 type = expanded_types;
12106 expanded_types = NULL_TREE;
12107 }
12108 }
12109
12110 for (int i = 0; i < len; ++i)
12111 {
12112 r = copy_decl (t);
12113 if (expanded_types)
12114 {
12115 type = TREE_VEC_ELT (expanded_types, i);
12116 DECL_NAME (r)
12117 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12118 }
12119 else if (!type)
12120 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12121
12122 if (type == error_mark_node)
12123 RETURN (error_mark_node);
12124 TREE_TYPE (r) = type;
12125 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12126
12127 if (DECL_C_BIT_FIELD (r))
12128 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12129 non-bit-fields DECL_INITIAL is a non-static data member
12130 initializer, which gets deferred instantiation. */
12131 DECL_INITIAL (r)
12132 = tsubst_expr (DECL_INITIAL (t), args,
12133 complain, in_decl,
12134 /*integral_constant_expression_p=*/true);
12135 else if (DECL_INITIAL (t))
12136 {
12137 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12138 NSDMI in perform_member_init. Still set DECL_INITIAL
12139 so that we know there is one. */
12140 DECL_INITIAL (r) = void_node;
12141 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12142 retrofit_lang_decl (r);
12143 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12144 }
12145 /* We don't have to set DECL_CONTEXT here; it is set by
12146 finish_member_declaration. */
12147 DECL_CHAIN (r) = NULL_TREE;
12148
12149 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12150 args, complain, in_decl);
12151
12152 if (vec)
12153 TREE_VEC_ELT (vec, i) = r;
12154 }
12155
12156 if (vec)
12157 {
12158 r = vec;
12159 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12160 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12161 SET_ARGUMENT_PACK_ARGS (pack, vec);
12162 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12163 TREE_TYPE (pack) = tpack;
12164 register_specialization (pack, t, args, false, 0);
12165 }
12166 }
12167 break;
12168
12169 case USING_DECL:
12170 /* We reach here only for member using decls. We also need to check
12171 uses_template_parms because DECL_DEPENDENT_P is not set for a
12172 using-declaration that designates a member of the current
12173 instantiation (c++/53549). */
12174 if (DECL_DEPENDENT_P (t)
12175 || uses_template_parms (USING_DECL_SCOPE (t)))
12176 {
12177 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12178 complain, in_decl);
12179 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12180 r = do_class_using_decl (inst_scope, name);
12181 if (!r)
12182 r = error_mark_node;
12183 else
12184 {
12185 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12186 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12187 }
12188 }
12189 else
12190 {
12191 r = copy_node (t);
12192 DECL_CHAIN (r) = NULL_TREE;
12193 }
12194 break;
12195
12196 case TYPE_DECL:
12197 case VAR_DECL:
12198 {
12199 tree argvec = NULL_TREE;
12200 tree gen_tmpl = NULL_TREE;
12201 tree spec;
12202 tree tmpl = NULL_TREE;
12203 tree ctx;
12204 tree type = NULL_TREE;
12205 bool local_p;
12206
12207 if (TREE_TYPE (t) == error_mark_node)
12208 RETURN (error_mark_node);
12209
12210 if (TREE_CODE (t) == TYPE_DECL
12211 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12212 {
12213 /* If this is the canonical decl, we don't have to
12214 mess with instantiations, and often we can't (for
12215 typename, template type parms and such). Note that
12216 TYPE_NAME is not correct for the above test if
12217 we've copied the type for a typedef. */
12218 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12219 if (type == error_mark_node)
12220 RETURN (error_mark_node);
12221 r = TYPE_NAME (type);
12222 break;
12223 }
12224
12225 /* Check to see if we already have the specialization we
12226 need. */
12227 spec = NULL_TREE;
12228 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12229 {
12230 /* T is a static data member or namespace-scope entity.
12231 We have to substitute into namespace-scope variables
12232 (not just variable templates) because of cases like:
12233
12234 template <class T> void f() { extern T t; }
12235
12236 where the entity referenced is not known until
12237 instantiation time. */
12238 local_p = false;
12239 ctx = DECL_CONTEXT (t);
12240 if (DECL_CLASS_SCOPE_P (t))
12241 {
12242 ctx = tsubst_aggr_type (ctx, args,
12243 complain,
12244 in_decl, /*entering_scope=*/1);
12245 /* If CTX is unchanged, then T is in fact the
12246 specialization we want. That situation occurs when
12247 referencing a static data member within in its own
12248 class. We can use pointer equality, rather than
12249 same_type_p, because DECL_CONTEXT is always
12250 canonical... */
12251 if (ctx == DECL_CONTEXT (t)
12252 /* ... unless T is a member template; in which
12253 case our caller can be willing to create a
12254 specialization of that template represented
12255 by T. */
12256 && !(DECL_TI_TEMPLATE (t)
12257 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12258 spec = t;
12259 }
12260
12261 if (!spec)
12262 {
12263 tmpl = DECL_TI_TEMPLATE (t);
12264 gen_tmpl = most_general_template (tmpl);
12265 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12266 if (argvec != error_mark_node)
12267 argvec = (coerce_innermost_template_parms
12268 (DECL_TEMPLATE_PARMS (gen_tmpl),
12269 argvec, t, complain,
12270 /*all*/true, /*defarg*/true));
12271 if (argvec == error_mark_node)
12272 RETURN (error_mark_node);
12273 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12274 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12275 }
12276 }
12277 else
12278 {
12279 /* A local variable. */
12280 local_p = true;
12281 /* Subsequent calls to pushdecl will fill this in. */
12282 ctx = NULL_TREE;
12283 spec = retrieve_local_specialization (t);
12284 }
12285 /* If we already have the specialization we need, there is
12286 nothing more to do. */
12287 if (spec)
12288 {
12289 r = spec;
12290 break;
12291 }
12292
12293 /* Create a new node for the specialization we need. */
12294 r = copy_decl (t);
12295 if (type == NULL_TREE)
12296 {
12297 if (is_typedef_decl (t))
12298 type = DECL_ORIGINAL_TYPE (t);
12299 else
12300 type = TREE_TYPE (t);
12301 if (VAR_P (t)
12302 && VAR_HAD_UNKNOWN_BOUND (t)
12303 && type != error_mark_node)
12304 type = strip_array_domain (type);
12305 type = tsubst (type, args, complain, in_decl);
12306 }
12307 if (VAR_P (r))
12308 {
12309 /* Even if the original location is out of scope, the
12310 newly substituted one is not. */
12311 DECL_DEAD_FOR_LOCAL (r) = 0;
12312 DECL_INITIALIZED_P (r) = 0;
12313 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12314 if (type == error_mark_node)
12315 RETURN (error_mark_node);
12316 if (TREE_CODE (type) == FUNCTION_TYPE)
12317 {
12318 /* It may seem that this case cannot occur, since:
12319
12320 typedef void f();
12321 void g() { f x; }
12322
12323 declares a function, not a variable. However:
12324
12325 typedef void f();
12326 template <typename T> void g() { T t; }
12327 template void g<f>();
12328
12329 is an attempt to declare a variable with function
12330 type. */
12331 error ("variable %qD has function type",
12332 /* R is not yet sufficiently initialized, so we
12333 just use its name. */
12334 DECL_NAME (r));
12335 RETURN (error_mark_node);
12336 }
12337 type = complete_type (type);
12338 /* Wait until cp_finish_decl to set this again, to handle
12339 circular dependency (template/instantiate6.C). */
12340 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12341 type = check_var_type (DECL_NAME (r), type);
12342
12343 if (DECL_HAS_VALUE_EXPR_P (t))
12344 {
12345 tree ve = DECL_VALUE_EXPR (t);
12346 ve = tsubst_expr (ve, args, complain, in_decl,
12347 /*constant_expression_p=*/false);
12348 if (REFERENCE_REF_P (ve))
12349 {
12350 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12351 ve = TREE_OPERAND (ve, 0);
12352 }
12353 SET_DECL_VALUE_EXPR (r, ve);
12354 }
12355 if (CP_DECL_THREAD_LOCAL_P (r)
12356 && !processing_template_decl)
12357 set_decl_tls_model (r, decl_default_tls_model (r));
12358 }
12359 else if (DECL_SELF_REFERENCE_P (t))
12360 SET_DECL_SELF_REFERENCE_P (r);
12361 TREE_TYPE (r) = type;
12362 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12363 DECL_CONTEXT (r) = ctx;
12364 /* Clear out the mangled name and RTL for the instantiation. */
12365 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12366 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12367 SET_DECL_RTL (r, NULL);
12368 /* The initializer must not be expanded until it is required;
12369 see [temp.inst]. */
12370 DECL_INITIAL (r) = NULL_TREE;
12371 if (VAR_P (r))
12372 DECL_MODE (r) = VOIDmode;
12373 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12374 SET_DECL_RTL (r, NULL);
12375 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12376 if (VAR_P (r))
12377 {
12378 /* Possibly limit visibility based on template args. */
12379 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12380 if (DECL_VISIBILITY_SPECIFIED (t))
12381 {
12382 DECL_VISIBILITY_SPECIFIED (r) = 0;
12383 DECL_ATTRIBUTES (r)
12384 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12385 }
12386 determine_visibility (r);
12387 }
12388
12389 if (!local_p)
12390 {
12391 /* A static data member declaration is always marked
12392 external when it is declared in-class, even if an
12393 initializer is present. We mimic the non-template
12394 processing here. */
12395 DECL_EXTERNAL (r) = 1;
12396 if (DECL_NAMESPACE_SCOPE_P (t))
12397 DECL_NOT_REALLY_EXTERN (r) = 1;
12398
12399 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12400 SET_DECL_IMPLICIT_INSTANTIATION (r);
12401 register_specialization (r, gen_tmpl, argvec, false, hash);
12402 }
12403 else
12404 {
12405 if (DECL_LANG_SPECIFIC (r))
12406 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12407 if (!cp_unevaluated_operand)
12408 register_local_specialization (r, t);
12409 }
12410
12411 DECL_CHAIN (r) = NULL_TREE;
12412
12413 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12414 /*flags=*/0,
12415 args, complain, in_decl);
12416
12417 /* Preserve a typedef that names a type. */
12418 if (is_typedef_decl (r))
12419 {
12420 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12421 set_underlying_type (r);
12422 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12423 /* An alias template specialization can be dependent
12424 even if its underlying type is not. */
12425 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12426 }
12427
12428 layout_decl (r, 0);
12429 }
12430 break;
12431
12432 default:
12433 gcc_unreachable ();
12434 }
12435 #undef RETURN
12436
12437 out:
12438 /* Restore the file and line information. */
12439 input_location = saved_loc;
12440
12441 return r;
12442 }
12443
12444 /* Substitute into the ARG_TYPES of a function type.
12445 If END is a TREE_CHAIN, leave it and any following types
12446 un-substituted. */
12447
12448 static tree
12449 tsubst_arg_types (tree arg_types,
12450 tree args,
12451 tree end,
12452 tsubst_flags_t complain,
12453 tree in_decl)
12454 {
12455 tree remaining_arg_types;
12456 tree type = NULL_TREE;
12457 int i = 1;
12458 tree expanded_args = NULL_TREE;
12459 tree default_arg;
12460
12461 if (!arg_types || arg_types == void_list_node || arg_types == end)
12462 return arg_types;
12463
12464 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12465 args, end, complain, in_decl);
12466 if (remaining_arg_types == error_mark_node)
12467 return error_mark_node;
12468
12469 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12470 {
12471 /* For a pack expansion, perform substitution on the
12472 entire expression. Later on, we'll handle the arguments
12473 one-by-one. */
12474 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12475 args, complain, in_decl);
12476
12477 if (TREE_CODE (expanded_args) == TREE_VEC)
12478 /* So that we'll spin through the parameters, one by one. */
12479 i = TREE_VEC_LENGTH (expanded_args);
12480 else
12481 {
12482 /* We only partially substituted into the parameter
12483 pack. Our type is TYPE_PACK_EXPANSION. */
12484 type = expanded_args;
12485 expanded_args = NULL_TREE;
12486 }
12487 }
12488
12489 while (i > 0) {
12490 --i;
12491
12492 if (expanded_args)
12493 type = TREE_VEC_ELT (expanded_args, i);
12494 else if (!type)
12495 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12496
12497 if (type == error_mark_node)
12498 return error_mark_node;
12499 if (VOID_TYPE_P (type))
12500 {
12501 if (complain & tf_error)
12502 {
12503 error ("invalid parameter type %qT", type);
12504 if (in_decl)
12505 error ("in declaration %q+D", in_decl);
12506 }
12507 return error_mark_node;
12508 }
12509 /* DR 657. */
12510 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12511 return error_mark_node;
12512
12513 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12514 top-level qualifiers as required. */
12515 type = cv_unqualified (type_decays_to (type));
12516
12517 /* We do not substitute into default arguments here. The standard
12518 mandates that they be instantiated only when needed, which is
12519 done in build_over_call. */
12520 default_arg = TREE_PURPOSE (arg_types);
12521
12522 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12523 {
12524 /* We've instantiated a template before its default arguments
12525 have been parsed. This can happen for a nested template
12526 class, and is not an error unless we require the default
12527 argument in a call of this function. */
12528 remaining_arg_types =
12529 tree_cons (default_arg, type, remaining_arg_types);
12530 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12531 }
12532 else
12533 remaining_arg_types =
12534 hash_tree_cons (default_arg, type, remaining_arg_types);
12535 }
12536
12537 return remaining_arg_types;
12538 }
12539
12540 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12541 *not* handle the exception-specification for FNTYPE, because the
12542 initial substitution of explicitly provided template parameters
12543 during argument deduction forbids substitution into the
12544 exception-specification:
12545
12546 [temp.deduct]
12547
12548 All references in the function type of the function template to the
12549 corresponding template parameters are replaced by the specified tem-
12550 plate argument values. If a substitution in a template parameter or
12551 in the function type of the function template results in an invalid
12552 type, type deduction fails. [Note: The equivalent substitution in
12553 exception specifications is done only when the function is instanti-
12554 ated, at which point a program is ill-formed if the substitution
12555 results in an invalid type.] */
12556
12557 static tree
12558 tsubst_function_type (tree t,
12559 tree args,
12560 tsubst_flags_t complain,
12561 tree in_decl)
12562 {
12563 tree return_type;
12564 tree arg_types = NULL_TREE;
12565 tree fntype;
12566
12567 /* The TYPE_CONTEXT is not used for function/method types. */
12568 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12569
12570 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12571 failure. */
12572 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12573
12574 if (late_return_type_p)
12575 {
12576 /* Substitute the argument types. */
12577 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12578 complain, in_decl);
12579 if (arg_types == error_mark_node)
12580 return error_mark_node;
12581
12582 tree save_ccp = current_class_ptr;
12583 tree save_ccr = current_class_ref;
12584 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12585 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12586 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12587 if (do_inject)
12588 {
12589 /* DR 1207: 'this' is in scope in the trailing return type. */
12590 inject_this_parameter (this_type, cp_type_quals (this_type));
12591 }
12592
12593 /* Substitute the return type. */
12594 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12595
12596 if (do_inject)
12597 {
12598 current_class_ptr = save_ccp;
12599 current_class_ref = save_ccr;
12600 }
12601 }
12602 else
12603 /* Substitute the return type. */
12604 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12605
12606 if (return_type == error_mark_node)
12607 return error_mark_node;
12608 /* DR 486 clarifies that creation of a function type with an
12609 invalid return type is a deduction failure. */
12610 if (TREE_CODE (return_type) == ARRAY_TYPE
12611 || TREE_CODE (return_type) == FUNCTION_TYPE)
12612 {
12613 if (complain & tf_error)
12614 {
12615 if (TREE_CODE (return_type) == ARRAY_TYPE)
12616 error ("function returning an array");
12617 else
12618 error ("function returning a function");
12619 }
12620 return error_mark_node;
12621 }
12622 /* And DR 657. */
12623 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12624 return error_mark_node;
12625
12626 if (!late_return_type_p)
12627 {
12628 /* Substitute the argument types. */
12629 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12630 complain, in_decl);
12631 if (arg_types == error_mark_node)
12632 return error_mark_node;
12633 }
12634
12635 /* Construct a new type node and return it. */
12636 if (TREE_CODE (t) == FUNCTION_TYPE)
12637 {
12638 fntype = build_function_type (return_type, arg_types);
12639 fntype = apply_memfn_quals (fntype,
12640 type_memfn_quals (t),
12641 type_memfn_rqual (t));
12642 }
12643 else
12644 {
12645 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12646 /* Don't pick up extra function qualifiers from the basetype. */
12647 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12648 if (! MAYBE_CLASS_TYPE_P (r))
12649 {
12650 /* [temp.deduct]
12651
12652 Type deduction may fail for any of the following
12653 reasons:
12654
12655 -- Attempting to create "pointer to member of T" when T
12656 is not a class type. */
12657 if (complain & tf_error)
12658 error ("creating pointer to member function of non-class type %qT",
12659 r);
12660 return error_mark_node;
12661 }
12662
12663 fntype = build_method_type_directly (r, return_type,
12664 TREE_CHAIN (arg_types));
12665 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12666 }
12667 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12668
12669 if (late_return_type_p)
12670 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12671
12672 return fntype;
12673 }
12674
12675 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12676 ARGS into that specification, and return the substituted
12677 specification. If there is no specification, return NULL_TREE. */
12678
12679 static tree
12680 tsubst_exception_specification (tree fntype,
12681 tree args,
12682 tsubst_flags_t complain,
12683 tree in_decl,
12684 bool defer_ok)
12685 {
12686 tree specs;
12687 tree new_specs;
12688
12689 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12690 new_specs = NULL_TREE;
12691 if (specs && TREE_PURPOSE (specs))
12692 {
12693 /* A noexcept-specifier. */
12694 tree expr = TREE_PURPOSE (specs);
12695 if (TREE_CODE (expr) == INTEGER_CST)
12696 new_specs = expr;
12697 else if (defer_ok)
12698 {
12699 /* Defer instantiation of noexcept-specifiers to avoid
12700 excessive instantiations (c++/49107). */
12701 new_specs = make_node (DEFERRED_NOEXCEPT);
12702 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12703 {
12704 /* We already partially instantiated this member template,
12705 so combine the new args with the old. */
12706 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12707 = DEFERRED_NOEXCEPT_PATTERN (expr);
12708 DEFERRED_NOEXCEPT_ARGS (new_specs)
12709 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12710 }
12711 else
12712 {
12713 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12714 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12715 }
12716 }
12717 else
12718 new_specs = tsubst_copy_and_build
12719 (expr, args, complain, in_decl, /*function_p=*/false,
12720 /*integral_constant_expression_p=*/true);
12721 new_specs = build_noexcept_spec (new_specs, complain);
12722 }
12723 else if (specs)
12724 {
12725 if (! TREE_VALUE (specs))
12726 new_specs = specs;
12727 else
12728 while (specs)
12729 {
12730 tree spec;
12731 int i, len = 1;
12732 tree expanded_specs = NULL_TREE;
12733
12734 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12735 {
12736 /* Expand the pack expansion type. */
12737 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12738 args, complain,
12739 in_decl);
12740
12741 if (expanded_specs == error_mark_node)
12742 return error_mark_node;
12743 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12744 len = TREE_VEC_LENGTH (expanded_specs);
12745 else
12746 {
12747 /* We're substituting into a member template, so
12748 we got a TYPE_PACK_EXPANSION back. Add that
12749 expansion and move on. */
12750 gcc_assert (TREE_CODE (expanded_specs)
12751 == TYPE_PACK_EXPANSION);
12752 new_specs = add_exception_specifier (new_specs,
12753 expanded_specs,
12754 complain);
12755 specs = TREE_CHAIN (specs);
12756 continue;
12757 }
12758 }
12759
12760 for (i = 0; i < len; ++i)
12761 {
12762 if (expanded_specs)
12763 spec = TREE_VEC_ELT (expanded_specs, i);
12764 else
12765 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12766 if (spec == error_mark_node)
12767 return spec;
12768 new_specs = add_exception_specifier (new_specs, spec,
12769 complain);
12770 }
12771
12772 specs = TREE_CHAIN (specs);
12773 }
12774 }
12775 return new_specs;
12776 }
12777
12778 /* Take the tree structure T and replace template parameters used
12779 therein with the argument vector ARGS. IN_DECL is an associated
12780 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12781 Issue error and warning messages under control of COMPLAIN. Note
12782 that we must be relatively non-tolerant of extensions here, in
12783 order to preserve conformance; if we allow substitutions that
12784 should not be allowed, we may allow argument deductions that should
12785 not succeed, and therefore report ambiguous overload situations
12786 where there are none. In theory, we could allow the substitution,
12787 but indicate that it should have failed, and allow our caller to
12788 make sure that the right thing happens, but we don't try to do this
12789 yet.
12790
12791 This function is used for dealing with types, decls and the like;
12792 for expressions, use tsubst_expr or tsubst_copy. */
12793
12794 tree
12795 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12796 {
12797 enum tree_code code;
12798 tree type, r = NULL_TREE;
12799
12800 if (t == NULL_TREE || t == error_mark_node
12801 || t == integer_type_node
12802 || t == void_type_node
12803 || t == char_type_node
12804 || t == unknown_type_node
12805 || TREE_CODE (t) == NAMESPACE_DECL
12806 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12807 return t;
12808
12809 if (DECL_P (t))
12810 return tsubst_decl (t, args, complain);
12811
12812 if (args == NULL_TREE)
12813 return t;
12814
12815 code = TREE_CODE (t);
12816
12817 if (code == IDENTIFIER_NODE)
12818 type = IDENTIFIER_TYPE_VALUE (t);
12819 else
12820 type = TREE_TYPE (t);
12821
12822 gcc_assert (type != unknown_type_node);
12823
12824 /* Reuse typedefs. We need to do this to handle dependent attributes,
12825 such as attribute aligned. */
12826 if (TYPE_P (t)
12827 && typedef_variant_p (t))
12828 {
12829 tree decl = TYPE_NAME (t);
12830
12831 if (alias_template_specialization_p (t))
12832 {
12833 /* DECL represents an alias template and we want to
12834 instantiate it. */
12835 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12836 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12837 r = instantiate_alias_template (tmpl, gen_args, complain);
12838 }
12839 else if (DECL_CLASS_SCOPE_P (decl)
12840 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12841 && uses_template_parms (DECL_CONTEXT (decl)))
12842 {
12843 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12844 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12845 r = retrieve_specialization (tmpl, gen_args, 0);
12846 }
12847 else if (DECL_FUNCTION_SCOPE_P (decl)
12848 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12849 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12850 r = retrieve_local_specialization (decl);
12851 else
12852 /* The typedef is from a non-template context. */
12853 return t;
12854
12855 if (r)
12856 {
12857 r = TREE_TYPE (r);
12858 r = cp_build_qualified_type_real
12859 (r, cp_type_quals (t) | cp_type_quals (r),
12860 complain | tf_ignore_bad_quals);
12861 return r;
12862 }
12863 else
12864 {
12865 /* We don't have an instantiation yet, so drop the typedef. */
12866 int quals = cp_type_quals (t);
12867 t = DECL_ORIGINAL_TYPE (decl);
12868 t = cp_build_qualified_type_real (t, quals,
12869 complain | tf_ignore_bad_quals);
12870 }
12871 }
12872
12873 if (type
12874 && code != TYPENAME_TYPE
12875 && code != TEMPLATE_TYPE_PARM
12876 && code != IDENTIFIER_NODE
12877 && code != FUNCTION_TYPE
12878 && code != METHOD_TYPE)
12879 type = tsubst (type, args, complain, in_decl);
12880 if (type == error_mark_node)
12881 return error_mark_node;
12882
12883 switch (code)
12884 {
12885 case RECORD_TYPE:
12886 case UNION_TYPE:
12887 case ENUMERAL_TYPE:
12888 return tsubst_aggr_type (t, args, complain, in_decl,
12889 /*entering_scope=*/0);
12890
12891 case ERROR_MARK:
12892 case IDENTIFIER_NODE:
12893 case VOID_TYPE:
12894 case REAL_TYPE:
12895 case COMPLEX_TYPE:
12896 case VECTOR_TYPE:
12897 case BOOLEAN_TYPE:
12898 case NULLPTR_TYPE:
12899 case LANG_TYPE:
12900 return t;
12901
12902 case INTEGER_TYPE:
12903 if (t == integer_type_node)
12904 return t;
12905
12906 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12907 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12908 return t;
12909
12910 {
12911 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12912
12913 max = tsubst_expr (omax, args, complain, in_decl,
12914 /*integral_constant_expression_p=*/false);
12915
12916 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12917 needed. */
12918 if (TREE_CODE (max) == NOP_EXPR
12919 && TREE_SIDE_EFFECTS (omax)
12920 && !TREE_TYPE (max))
12921 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12922
12923 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12924 with TREE_SIDE_EFFECTS that indicates this is not an integral
12925 constant expression. */
12926 if (processing_template_decl
12927 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12928 {
12929 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12930 TREE_SIDE_EFFECTS (max) = 1;
12931 }
12932
12933 return compute_array_index_type (NULL_TREE, max, complain);
12934 }
12935
12936 case TEMPLATE_TYPE_PARM:
12937 case TEMPLATE_TEMPLATE_PARM:
12938 case BOUND_TEMPLATE_TEMPLATE_PARM:
12939 case TEMPLATE_PARM_INDEX:
12940 {
12941 int idx;
12942 int level;
12943 int levels;
12944 tree arg = NULL_TREE;
12945
12946 /* Early in template argument deduction substitution, we don't
12947 want to reduce the level of 'auto', or it will be confused
12948 with a normal template parm in subsequent deduction. */
12949 if (is_auto (t) && (complain & tf_partial))
12950 return t;
12951
12952 r = NULL_TREE;
12953
12954 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12955 template_parm_level_and_index (t, &level, &idx);
12956
12957 levels = TMPL_ARGS_DEPTH (args);
12958 if (level <= levels
12959 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12960 {
12961 arg = TMPL_ARG (args, level, idx);
12962
12963 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12964 {
12965 /* See through ARGUMENT_PACK_SELECT arguments. */
12966 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12967 /* If the selected argument is an expansion E, that most
12968 likely means we were called from
12969 gen_elem_of_pack_expansion_instantiation during the
12970 substituting of pack an argument pack (which Ith
12971 element is a pack expansion, where I is
12972 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12973 In this case, the Ith element resulting from this
12974 substituting is going to be a pack expansion, which
12975 pattern is the pattern of E. Let's return the
12976 pattern of E, and
12977 gen_elem_of_pack_expansion_instantiation will
12978 build the resulting pack expansion from it. */
12979 if (PACK_EXPANSION_P (arg))
12980 {
12981 /* Make sure we aren't throwing away arg info. */
12982 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12983 arg = PACK_EXPANSION_PATTERN (arg);
12984 }
12985 }
12986 }
12987
12988 if (arg == error_mark_node)
12989 return error_mark_node;
12990 else if (arg != NULL_TREE)
12991 {
12992 if (ARGUMENT_PACK_P (arg))
12993 /* If ARG is an argument pack, we don't actually want to
12994 perform a substitution here, because substitutions
12995 for argument packs are only done
12996 element-by-element. We can get to this point when
12997 substituting the type of a non-type template
12998 parameter pack, when that type actually contains
12999 template parameter packs from an outer template, e.g.,
13000
13001 template<typename... Types> struct A {
13002 template<Types... Values> struct B { };
13003 }; */
13004 return t;
13005
13006 if (code == TEMPLATE_TYPE_PARM)
13007 {
13008 int quals;
13009 gcc_assert (TYPE_P (arg));
13010
13011 quals = cp_type_quals (arg) | cp_type_quals (t);
13012
13013 return cp_build_qualified_type_real
13014 (arg, quals, complain | tf_ignore_bad_quals);
13015 }
13016 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13017 {
13018 /* We are processing a type constructed from a
13019 template template parameter. */
13020 tree argvec = tsubst (TYPE_TI_ARGS (t),
13021 args, complain, in_decl);
13022 if (argvec == error_mark_node)
13023 return error_mark_node;
13024
13025 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
13026 || TREE_CODE (arg) == TEMPLATE_DECL
13027 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
13028
13029 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
13030 /* Consider this code:
13031
13032 template <template <class> class Template>
13033 struct Internal {
13034 template <class Arg> using Bind = Template<Arg>;
13035 };
13036
13037 template <template <class> class Template, class Arg>
13038 using Instantiate = Template<Arg>; //#0
13039
13040 template <template <class> class Template,
13041 class Argument>
13042 using Bind =
13043 Instantiate<Internal<Template>::template Bind,
13044 Argument>; //#1
13045
13046 When #1 is parsed, the
13047 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13048 parameter `Template' in #0 matches the
13049 UNBOUND_CLASS_TEMPLATE representing the argument
13050 `Internal<Template>::template Bind'; We then want
13051 to assemble the type `Bind<Argument>' that can't
13052 be fully created right now, because
13053 `Internal<Template>' not being complete, the Bind
13054 template cannot be looked up in that context. So
13055 we need to "store" `Bind<Argument>' for later
13056 when the context of Bind becomes complete. Let's
13057 store that in a TYPENAME_TYPE. */
13058 return make_typename_type (TYPE_CONTEXT (arg),
13059 build_nt (TEMPLATE_ID_EXPR,
13060 TYPE_IDENTIFIER (arg),
13061 argvec),
13062 typename_type,
13063 complain);
13064
13065 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13066 are resolving nested-types in the signature of a
13067 member function templates. Otherwise ARG is a
13068 TEMPLATE_DECL and is the real template to be
13069 instantiated. */
13070 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13071 arg = TYPE_NAME (arg);
13072
13073 r = lookup_template_class (arg,
13074 argvec, in_decl,
13075 DECL_CONTEXT (arg),
13076 /*entering_scope=*/0,
13077 complain);
13078 return cp_build_qualified_type_real
13079 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13080 }
13081 else
13082 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
13083 return convert_from_reference (unshare_expr (arg));
13084 }
13085
13086 if (level == 1)
13087 /* This can happen during the attempted tsubst'ing in
13088 unify. This means that we don't yet have any information
13089 about the template parameter in question. */
13090 return t;
13091
13092 /* If we get here, we must have been looking at a parm for a
13093 more deeply nested template. Make a new version of this
13094 template parameter, but with a lower level. */
13095 switch (code)
13096 {
13097 case TEMPLATE_TYPE_PARM:
13098 case TEMPLATE_TEMPLATE_PARM:
13099 case BOUND_TEMPLATE_TEMPLATE_PARM:
13100 if (cp_type_quals (t))
13101 {
13102 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13103 r = cp_build_qualified_type_real
13104 (r, cp_type_quals (t),
13105 complain | (code == TEMPLATE_TYPE_PARM
13106 ? tf_ignore_bad_quals : 0));
13107 }
13108 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13109 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13110 && (r = (TEMPLATE_PARM_DESCENDANTS
13111 (TEMPLATE_TYPE_PARM_INDEX (t))))
13112 && (r = TREE_TYPE (r))
13113 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13114 /* Break infinite recursion when substituting the constraints
13115 of a constrained placeholder. */;
13116 else
13117 {
13118 r = copy_type (t);
13119 TEMPLATE_TYPE_PARM_INDEX (r)
13120 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13121 r, levels, args, complain);
13122 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13123 TYPE_MAIN_VARIANT (r) = r;
13124 TYPE_POINTER_TO (r) = NULL_TREE;
13125 TYPE_REFERENCE_TO (r) = NULL_TREE;
13126
13127 /* Propagate constraints on placeholders. */
13128 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13129 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13130 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13131 = tsubst_constraint (constr, args, complain, in_decl);
13132
13133 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13134 /* We have reduced the level of the template
13135 template parameter, but not the levels of its
13136 template parameters, so canonical_type_parameter
13137 will not be able to find the canonical template
13138 template parameter for this level. Thus, we
13139 require structural equality checking to compare
13140 TEMPLATE_TEMPLATE_PARMs. */
13141 SET_TYPE_STRUCTURAL_EQUALITY (r);
13142 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13143 SET_TYPE_STRUCTURAL_EQUALITY (r);
13144 else
13145 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13146
13147 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13148 {
13149 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
13150 complain, in_decl);
13151 if (argvec == error_mark_node)
13152 return error_mark_node;
13153
13154 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13155 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
13156 }
13157 }
13158 break;
13159
13160 case TEMPLATE_PARM_INDEX:
13161 r = reduce_template_parm_level (t, type, levels, args, complain);
13162 break;
13163
13164 default:
13165 gcc_unreachable ();
13166 }
13167
13168 return r;
13169 }
13170
13171 case TREE_LIST:
13172 {
13173 tree purpose, value, chain;
13174
13175 if (t == void_list_node)
13176 return t;
13177
13178 purpose = TREE_PURPOSE (t);
13179 if (purpose)
13180 {
13181 purpose = tsubst (purpose, args, complain, in_decl);
13182 if (purpose == error_mark_node)
13183 return error_mark_node;
13184 }
13185 value = TREE_VALUE (t);
13186 if (value)
13187 {
13188 value = tsubst (value, args, complain, in_decl);
13189 if (value == error_mark_node)
13190 return error_mark_node;
13191 }
13192 chain = TREE_CHAIN (t);
13193 if (chain && chain != void_type_node)
13194 {
13195 chain = tsubst (chain, args, complain, in_decl);
13196 if (chain == error_mark_node)
13197 return error_mark_node;
13198 }
13199 if (purpose == TREE_PURPOSE (t)
13200 && value == TREE_VALUE (t)
13201 && chain == TREE_CHAIN (t))
13202 return t;
13203 return hash_tree_cons (purpose, value, chain);
13204 }
13205
13206 case TREE_BINFO:
13207 /* We should never be tsubsting a binfo. */
13208 gcc_unreachable ();
13209
13210 case TREE_VEC:
13211 /* A vector of template arguments. */
13212 gcc_assert (!type);
13213 return tsubst_template_args (t, args, complain, in_decl);
13214
13215 case POINTER_TYPE:
13216 case REFERENCE_TYPE:
13217 {
13218 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13219 return t;
13220
13221 /* [temp.deduct]
13222
13223 Type deduction may fail for any of the following
13224 reasons:
13225
13226 -- Attempting to create a pointer to reference type.
13227 -- Attempting to create a reference to a reference type or
13228 a reference to void.
13229
13230 Core issue 106 says that creating a reference to a reference
13231 during instantiation is no longer a cause for failure. We
13232 only enforce this check in strict C++98 mode. */
13233 if ((TREE_CODE (type) == REFERENCE_TYPE
13234 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13235 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13236 {
13237 static location_t last_loc;
13238
13239 /* We keep track of the last time we issued this error
13240 message to avoid spewing a ton of messages during a
13241 single bad template instantiation. */
13242 if (complain & tf_error
13243 && last_loc != input_location)
13244 {
13245 if (VOID_TYPE_P (type))
13246 error ("forming reference to void");
13247 else if (code == POINTER_TYPE)
13248 error ("forming pointer to reference type %qT", type);
13249 else
13250 error ("forming reference to reference type %qT", type);
13251 last_loc = input_location;
13252 }
13253
13254 return error_mark_node;
13255 }
13256 else if (TREE_CODE (type) == FUNCTION_TYPE
13257 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13258 || type_memfn_rqual (type) != REF_QUAL_NONE))
13259 {
13260 if (complain & tf_error)
13261 {
13262 if (code == POINTER_TYPE)
13263 error ("forming pointer to qualified function type %qT",
13264 type);
13265 else
13266 error ("forming reference to qualified function type %qT",
13267 type);
13268 }
13269 return error_mark_node;
13270 }
13271 else if (code == POINTER_TYPE)
13272 {
13273 r = build_pointer_type (type);
13274 if (TREE_CODE (type) == METHOD_TYPE)
13275 r = build_ptrmemfunc_type (r);
13276 }
13277 else if (TREE_CODE (type) == REFERENCE_TYPE)
13278 /* In C++0x, during template argument substitution, when there is an
13279 attempt to create a reference to a reference type, reference
13280 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13281
13282 "If a template-argument for a template-parameter T names a type
13283 that is a reference to a type A, an attempt to create the type
13284 'lvalue reference to cv T' creates the type 'lvalue reference to
13285 A,' while an attempt to create the type type rvalue reference to
13286 cv T' creates the type T"
13287 */
13288 r = cp_build_reference_type
13289 (TREE_TYPE (type),
13290 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13291 else
13292 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13293 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13294
13295 if (r != error_mark_node)
13296 /* Will this ever be needed for TYPE_..._TO values? */
13297 layout_type (r);
13298
13299 return r;
13300 }
13301 case OFFSET_TYPE:
13302 {
13303 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13304 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13305 {
13306 /* [temp.deduct]
13307
13308 Type deduction may fail for any of the following
13309 reasons:
13310
13311 -- Attempting to create "pointer to member of T" when T
13312 is not a class type. */
13313 if (complain & tf_error)
13314 error ("creating pointer to member of non-class type %qT", r);
13315 return error_mark_node;
13316 }
13317 if (TREE_CODE (type) == REFERENCE_TYPE)
13318 {
13319 if (complain & tf_error)
13320 error ("creating pointer to member reference type %qT", type);
13321 return error_mark_node;
13322 }
13323 if (VOID_TYPE_P (type))
13324 {
13325 if (complain & tf_error)
13326 error ("creating pointer to member of type void");
13327 return error_mark_node;
13328 }
13329 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13330 if (TREE_CODE (type) == FUNCTION_TYPE)
13331 {
13332 /* The type of the implicit object parameter gets its
13333 cv-qualifiers from the FUNCTION_TYPE. */
13334 tree memptr;
13335 tree method_type
13336 = build_memfn_type (type, r, type_memfn_quals (type),
13337 type_memfn_rqual (type));
13338 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13339 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13340 complain);
13341 }
13342 else
13343 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13344 cp_type_quals (t),
13345 complain);
13346 }
13347 case FUNCTION_TYPE:
13348 case METHOD_TYPE:
13349 {
13350 tree fntype;
13351 tree specs;
13352 fntype = tsubst_function_type (t, args, complain, in_decl);
13353 if (fntype == error_mark_node)
13354 return error_mark_node;
13355
13356 /* Substitute the exception specification. */
13357 specs = tsubst_exception_specification (t, args, complain,
13358 in_decl, /*defer_ok*/true);
13359 if (specs == error_mark_node)
13360 return error_mark_node;
13361 if (specs)
13362 fntype = build_exception_variant (fntype, specs);
13363 return fntype;
13364 }
13365 case ARRAY_TYPE:
13366 {
13367 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13368 if (domain == error_mark_node)
13369 return error_mark_node;
13370
13371 /* As an optimization, we avoid regenerating the array type if
13372 it will obviously be the same as T. */
13373 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13374 return t;
13375
13376 /* These checks should match the ones in create_array_type_for_decl.
13377
13378 [temp.deduct]
13379
13380 The deduction may fail for any of the following reasons:
13381
13382 -- Attempting to create an array with an element type that
13383 is void, a function type, or a reference type, or [DR337]
13384 an abstract class type. */
13385 if (VOID_TYPE_P (type)
13386 || TREE_CODE (type) == FUNCTION_TYPE
13387 || (TREE_CODE (type) == ARRAY_TYPE
13388 && TYPE_DOMAIN (type) == NULL_TREE)
13389 || TREE_CODE (type) == REFERENCE_TYPE)
13390 {
13391 if (complain & tf_error)
13392 error ("creating array of %qT", type);
13393 return error_mark_node;
13394 }
13395
13396 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13397 return error_mark_node;
13398
13399 r = build_cplus_array_type (type, domain);
13400
13401 if (TYPE_USER_ALIGN (t))
13402 {
13403 SET_TYPE_ALIGN (r, TYPE_ALIGN (t));
13404 TYPE_USER_ALIGN (r) = 1;
13405 }
13406
13407 return r;
13408 }
13409
13410 case TYPENAME_TYPE:
13411 {
13412 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13413 in_decl, /*entering_scope=*/1);
13414 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13415 complain, in_decl);
13416
13417 if (ctx == error_mark_node || f == error_mark_node)
13418 return error_mark_node;
13419
13420 if (!MAYBE_CLASS_TYPE_P (ctx))
13421 {
13422 if (complain & tf_error)
13423 error ("%qT is not a class, struct, or union type", ctx);
13424 return error_mark_node;
13425 }
13426 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13427 {
13428 /* Normally, make_typename_type does not require that the CTX
13429 have complete type in order to allow things like:
13430
13431 template <class T> struct S { typename S<T>::X Y; };
13432
13433 But, such constructs have already been resolved by this
13434 point, so here CTX really should have complete type, unless
13435 it's a partial instantiation. */
13436 ctx = complete_type (ctx);
13437 if (!COMPLETE_TYPE_P (ctx))
13438 {
13439 if (complain & tf_error)
13440 cxx_incomplete_type_error (NULL_TREE, ctx);
13441 return error_mark_node;
13442 }
13443 }
13444
13445 f = make_typename_type (ctx, f, typename_type,
13446 complain | tf_keep_type_decl);
13447 if (f == error_mark_node)
13448 return f;
13449 if (TREE_CODE (f) == TYPE_DECL)
13450 {
13451 complain |= tf_ignore_bad_quals;
13452 f = TREE_TYPE (f);
13453 }
13454
13455 if (TREE_CODE (f) != TYPENAME_TYPE)
13456 {
13457 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13458 {
13459 if (complain & tf_error)
13460 error ("%qT resolves to %qT, which is not an enumeration type",
13461 t, f);
13462 else
13463 return error_mark_node;
13464 }
13465 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13466 {
13467 if (complain & tf_error)
13468 error ("%qT resolves to %qT, which is is not a class type",
13469 t, f);
13470 else
13471 return error_mark_node;
13472 }
13473 }
13474
13475 return cp_build_qualified_type_real
13476 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13477 }
13478
13479 case UNBOUND_CLASS_TEMPLATE:
13480 {
13481 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13482 in_decl, /*entering_scope=*/1);
13483 tree name = TYPE_IDENTIFIER (t);
13484 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13485
13486 if (ctx == error_mark_node || name == error_mark_node)
13487 return error_mark_node;
13488
13489 if (parm_list)
13490 parm_list = tsubst_template_parms (parm_list, args, complain);
13491 return make_unbound_class_template (ctx, name, parm_list, complain);
13492 }
13493
13494 case TYPEOF_TYPE:
13495 {
13496 tree type;
13497
13498 ++cp_unevaluated_operand;
13499 ++c_inhibit_evaluation_warnings;
13500
13501 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13502 complain, in_decl,
13503 /*integral_constant_expression_p=*/false);
13504
13505 --cp_unevaluated_operand;
13506 --c_inhibit_evaluation_warnings;
13507
13508 type = finish_typeof (type);
13509 return cp_build_qualified_type_real (type,
13510 cp_type_quals (t)
13511 | cp_type_quals (type),
13512 complain);
13513 }
13514
13515 case DECLTYPE_TYPE:
13516 {
13517 tree type;
13518
13519 ++cp_unevaluated_operand;
13520 ++c_inhibit_evaluation_warnings;
13521
13522 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13523 complain|tf_decltype, in_decl,
13524 /*function_p*/false,
13525 /*integral_constant_expression*/false);
13526
13527 --cp_unevaluated_operand;
13528 --c_inhibit_evaluation_warnings;
13529
13530 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13531 type = lambda_capture_field_type (type,
13532 DECLTYPE_FOR_INIT_CAPTURE (t));
13533 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13534 type = lambda_proxy_type (type);
13535 else
13536 {
13537 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13538 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13539 && EXPR_P (type))
13540 /* In a template ~id could be either a complement expression
13541 or an unqualified-id naming a destructor; if instantiating
13542 it produces an expression, it's not an id-expression or
13543 member access. */
13544 id = false;
13545 type = finish_decltype_type (type, id, complain);
13546 }
13547 return cp_build_qualified_type_real (type,
13548 cp_type_quals (t)
13549 | cp_type_quals (type),
13550 complain | tf_ignore_bad_quals);
13551 }
13552
13553 case UNDERLYING_TYPE:
13554 {
13555 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13556 complain, in_decl);
13557 return finish_underlying_type (type);
13558 }
13559
13560 case TYPE_ARGUMENT_PACK:
13561 case NONTYPE_ARGUMENT_PACK:
13562 {
13563 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13564 tree packed_out =
13565 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13566 args,
13567 complain,
13568 in_decl);
13569 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13570
13571 /* For template nontype argument packs, also substitute into
13572 the type. */
13573 if (code == NONTYPE_ARGUMENT_PACK)
13574 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13575
13576 return r;
13577 }
13578 break;
13579
13580 case VOID_CST:
13581 case INTEGER_CST:
13582 case REAL_CST:
13583 case STRING_CST:
13584 case PLUS_EXPR:
13585 case MINUS_EXPR:
13586 case NEGATE_EXPR:
13587 case NOP_EXPR:
13588 case INDIRECT_REF:
13589 case ADDR_EXPR:
13590 case CALL_EXPR:
13591 case ARRAY_REF:
13592 case SCOPE_REF:
13593 /* We should use one of the expression tsubsts for these codes. */
13594 gcc_unreachable ();
13595
13596 default:
13597 sorry ("use of %qs in template", get_tree_code_name (code));
13598 return error_mark_node;
13599 }
13600 }
13601
13602 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13603 type of the expression on the left-hand side of the "." or "->"
13604 operator. */
13605
13606 static tree
13607 tsubst_baselink (tree baselink, tree object_type,
13608 tree args, tsubst_flags_t complain, tree in_decl)
13609 {
13610 tree name;
13611 tree qualifying_scope;
13612 tree fns;
13613 tree optype;
13614 tree template_args = 0;
13615 bool template_id_p = false;
13616 bool qualified = BASELINK_QUALIFIED_P (baselink);
13617
13618 /* A baselink indicates a function from a base class. Both the
13619 BASELINK_ACCESS_BINFO and the base class referenced may
13620 indicate bases of the template class, rather than the
13621 instantiated class. In addition, lookups that were not
13622 ambiguous before may be ambiguous now. Therefore, we perform
13623 the lookup again. */
13624 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13625 qualifying_scope = tsubst (qualifying_scope, args,
13626 complain, in_decl);
13627 fns = BASELINK_FUNCTIONS (baselink);
13628 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13629 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13630 {
13631 template_id_p = true;
13632 template_args = TREE_OPERAND (fns, 1);
13633 fns = TREE_OPERAND (fns, 0);
13634 if (template_args)
13635 template_args = tsubst_template_args (template_args, args,
13636 complain, in_decl);
13637 }
13638 name = DECL_NAME (get_first_fn (fns));
13639 if (IDENTIFIER_TYPENAME_P (name))
13640 name = mangle_conv_op_name_for_type (optype);
13641 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13642 if (!baselink)
13643 {
13644 if (constructor_name_p (name, qualifying_scope))
13645 {
13646 if (complain & tf_error)
13647 error ("cannot call constructor %<%T::%D%> directly",
13648 qualifying_scope, name);
13649 }
13650 return error_mark_node;
13651 }
13652
13653 /* If lookup found a single function, mark it as used at this
13654 point. (If it lookup found multiple functions the one selected
13655 later by overload resolution will be marked as used at that
13656 point.) */
13657 if (BASELINK_P (baselink))
13658 fns = BASELINK_FUNCTIONS (baselink);
13659 if (!template_id_p && !really_overloaded_fn (fns)
13660 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13661 return error_mark_node;
13662
13663 /* Add back the template arguments, if present. */
13664 if (BASELINK_P (baselink) && template_id_p)
13665 BASELINK_FUNCTIONS (baselink)
13666 = build2 (TEMPLATE_ID_EXPR,
13667 unknown_type_node,
13668 BASELINK_FUNCTIONS (baselink),
13669 template_args);
13670 /* Update the conversion operator type. */
13671 BASELINK_OPTYPE (baselink) = optype;
13672
13673 if (!object_type)
13674 object_type = current_class_type;
13675
13676 if (qualified)
13677 baselink = adjust_result_of_qualified_name_lookup (baselink,
13678 qualifying_scope,
13679 object_type);
13680 return baselink;
13681 }
13682
13683 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13684 true if the qualified-id will be a postfix-expression in-and-of
13685 itself; false if more of the postfix-expression follows the
13686 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13687 of "&". */
13688
13689 static tree
13690 tsubst_qualified_id (tree qualified_id, tree args,
13691 tsubst_flags_t complain, tree in_decl,
13692 bool done, bool address_p)
13693 {
13694 tree expr;
13695 tree scope;
13696 tree name;
13697 bool is_template;
13698 tree template_args;
13699 location_t loc = UNKNOWN_LOCATION;
13700
13701 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13702
13703 /* Figure out what name to look up. */
13704 name = TREE_OPERAND (qualified_id, 1);
13705 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13706 {
13707 is_template = true;
13708 loc = EXPR_LOCATION (name);
13709 template_args = TREE_OPERAND (name, 1);
13710 if (template_args)
13711 template_args = tsubst_template_args (template_args, args,
13712 complain, in_decl);
13713 name = TREE_OPERAND (name, 0);
13714 }
13715 else
13716 {
13717 is_template = false;
13718 template_args = NULL_TREE;
13719 }
13720
13721 /* Substitute into the qualifying scope. When there are no ARGS, we
13722 are just trying to simplify a non-dependent expression. In that
13723 case the qualifying scope may be dependent, and, in any case,
13724 substituting will not help. */
13725 scope = TREE_OPERAND (qualified_id, 0);
13726 if (args)
13727 {
13728 scope = tsubst (scope, args, complain, in_decl);
13729 expr = tsubst_copy (name, args, complain, in_decl);
13730 }
13731 else
13732 expr = name;
13733
13734 if (dependent_scope_p (scope))
13735 {
13736 if (is_template)
13737 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13738 return build_qualified_name (NULL_TREE, scope, expr,
13739 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13740 }
13741
13742 if (!BASELINK_P (name) && !DECL_P (expr))
13743 {
13744 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13745 {
13746 /* A BIT_NOT_EXPR is used to represent a destructor. */
13747 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13748 {
13749 error ("qualifying type %qT does not match destructor name ~%qT",
13750 scope, TREE_OPERAND (expr, 0));
13751 expr = error_mark_node;
13752 }
13753 else
13754 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13755 /*is_type_p=*/0, false);
13756 }
13757 else
13758 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13759 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13760 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13761 {
13762 if (complain & tf_error)
13763 {
13764 error ("dependent-name %qE is parsed as a non-type, but "
13765 "instantiation yields a type", qualified_id);
13766 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13767 }
13768 return error_mark_node;
13769 }
13770 }
13771
13772 if (DECL_P (expr))
13773 {
13774 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13775 scope);
13776 /* Remember that there was a reference to this entity. */
13777 if (!mark_used (expr, complain) && !(complain & tf_error))
13778 return error_mark_node;
13779 }
13780
13781 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13782 {
13783 if (complain & tf_error)
13784 qualified_name_lookup_error (scope,
13785 TREE_OPERAND (qualified_id, 1),
13786 expr, input_location);
13787 return error_mark_node;
13788 }
13789
13790 if (is_template)
13791 {
13792 if (variable_template_p (expr))
13793 expr = lookup_and_finish_template_variable (expr, template_args,
13794 complain);
13795 else
13796 expr = lookup_template_function (expr, template_args);
13797 }
13798
13799 if (expr == error_mark_node && complain & tf_error)
13800 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13801 expr, input_location);
13802 else if (TYPE_P (scope))
13803 {
13804 expr = (adjust_result_of_qualified_name_lookup
13805 (expr, scope, current_nonlambda_class_type ()));
13806 expr = (finish_qualified_id_expr
13807 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13808 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13809 /*template_arg_p=*/false, complain));
13810 }
13811
13812 /* Expressions do not generally have reference type. */
13813 if (TREE_CODE (expr) != SCOPE_REF
13814 /* However, if we're about to form a pointer-to-member, we just
13815 want the referenced member referenced. */
13816 && TREE_CODE (expr) != OFFSET_REF)
13817 expr = convert_from_reference (expr);
13818
13819 return expr;
13820 }
13821
13822 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13823 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13824 for tsubst. */
13825
13826 static tree
13827 tsubst_init (tree init, tree decl, tree args,
13828 tsubst_flags_t complain, tree in_decl)
13829 {
13830 if (!init)
13831 return NULL_TREE;
13832
13833 init = tsubst_expr (init, args, complain, in_decl, false);
13834
13835 if (!init)
13836 {
13837 /* If we had an initializer but it
13838 instantiated to nothing,
13839 value-initialize the object. This will
13840 only occur when the initializer was a
13841 pack expansion where the parameter packs
13842 used in that expansion were of length
13843 zero. */
13844 init = build_value_init (TREE_TYPE (decl),
13845 complain);
13846 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13847 init = get_target_expr_sfinae (init, complain);
13848 }
13849
13850 return init;
13851 }
13852
13853 /* Like tsubst, but deals with expressions. This function just replaces
13854 template parms; to finish processing the resultant expression, use
13855 tsubst_copy_and_build or tsubst_expr. */
13856
13857 static tree
13858 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13859 {
13860 enum tree_code code;
13861 tree r;
13862
13863 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13864 return t;
13865
13866 code = TREE_CODE (t);
13867
13868 switch (code)
13869 {
13870 case PARM_DECL:
13871 r = retrieve_local_specialization (t);
13872
13873 if (r == NULL_TREE)
13874 {
13875 /* We get here for a use of 'this' in an NSDMI as part of a
13876 constructor call or as part of an aggregate initialization. */
13877 if (DECL_NAME (t) == this_identifier
13878 && ((current_function_decl
13879 && DECL_CONSTRUCTOR_P (current_function_decl))
13880 || (current_class_ref
13881 && TREE_CODE (current_class_ref) == PLACEHOLDER_EXPR)))
13882 return current_class_ptr;
13883
13884 /* This can happen for a parameter name used later in a function
13885 declaration (such as in a late-specified return type). Just
13886 make a dummy decl, since it's only used for its type. */
13887 gcc_assert (cp_unevaluated_operand != 0);
13888 r = tsubst_decl (t, args, complain);
13889 /* Give it the template pattern as its context; its true context
13890 hasn't been instantiated yet and this is good enough for
13891 mangling. */
13892 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13893 }
13894
13895 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13896 r = ARGUMENT_PACK_SELECT_ARG (r);
13897 if (!mark_used (r, complain) && !(complain & tf_error))
13898 return error_mark_node;
13899 return r;
13900
13901 case CONST_DECL:
13902 {
13903 tree enum_type;
13904 tree v;
13905
13906 if (DECL_TEMPLATE_PARM_P (t))
13907 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13908 /* There is no need to substitute into namespace-scope
13909 enumerators. */
13910 if (DECL_NAMESPACE_SCOPE_P (t))
13911 return t;
13912 /* If ARGS is NULL, then T is known to be non-dependent. */
13913 if (args == NULL_TREE)
13914 return scalar_constant_value (t);
13915
13916 /* Unfortunately, we cannot just call lookup_name here.
13917 Consider:
13918
13919 template <int I> int f() {
13920 enum E { a = I };
13921 struct S { void g() { E e = a; } };
13922 };
13923
13924 When we instantiate f<7>::S::g(), say, lookup_name is not
13925 clever enough to find f<7>::a. */
13926 enum_type
13927 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13928 /*entering_scope=*/0);
13929
13930 for (v = TYPE_VALUES (enum_type);
13931 v != NULL_TREE;
13932 v = TREE_CHAIN (v))
13933 if (TREE_PURPOSE (v) == DECL_NAME (t))
13934 return TREE_VALUE (v);
13935
13936 /* We didn't find the name. That should never happen; if
13937 name-lookup found it during preliminary parsing, we
13938 should find it again here during instantiation. */
13939 gcc_unreachable ();
13940 }
13941 return t;
13942
13943 case FIELD_DECL:
13944 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13945 {
13946 /* Check for a local specialization set up by
13947 tsubst_pack_expansion. */
13948 if (tree r = retrieve_local_specialization (t))
13949 {
13950 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13951 r = ARGUMENT_PACK_SELECT_ARG (r);
13952 return r;
13953 }
13954
13955 /* When retrieving a capture pack from a generic lambda, remove the
13956 lambda call op's own template argument list from ARGS. Only the
13957 template arguments active for the closure type should be used to
13958 retrieve the pack specialization. */
13959 if (LAMBDA_FUNCTION_P (current_function_decl)
13960 && (template_class_depth (DECL_CONTEXT (t))
13961 != TMPL_ARGS_DEPTH (args)))
13962 args = strip_innermost_template_args (args, 1);
13963
13964 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13965 tsubst_decl put in the hash table. */
13966 return retrieve_specialization (t, args, 0);
13967 }
13968
13969 if (DECL_CONTEXT (t))
13970 {
13971 tree ctx;
13972
13973 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13974 /*entering_scope=*/1);
13975 if (ctx != DECL_CONTEXT (t))
13976 {
13977 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13978 if (!r)
13979 {
13980 if (complain & tf_error)
13981 error ("using invalid field %qD", t);
13982 return error_mark_node;
13983 }
13984 return r;
13985 }
13986 }
13987
13988 return t;
13989
13990 case VAR_DECL:
13991 case FUNCTION_DECL:
13992 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13993 r = tsubst (t, args, complain, in_decl);
13994 else if (local_variable_p (t))
13995 {
13996 r = retrieve_local_specialization (t);
13997 if (r == NULL_TREE)
13998 {
13999 /* First try name lookup to find the instantiation. */
14000 r = lookup_name (DECL_NAME (t));
14001 if (r)
14002 {
14003 /* Make sure that the one we found is the one we want. */
14004 tree ctx = DECL_CONTEXT (t);
14005 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
14006 ctx = tsubst (ctx, args, complain, in_decl);
14007 if (ctx != DECL_CONTEXT (r))
14008 r = NULL_TREE;
14009 }
14010
14011 if (r)
14012 /* OK */;
14013 else
14014 {
14015 /* This can happen for a variable used in a
14016 late-specified return type of a local lambda, or for a
14017 local static or constant. Building a new VAR_DECL
14018 should be OK in all those cases. */
14019 r = tsubst_decl (t, args, complain);
14020 if (decl_maybe_constant_var_p (r))
14021 {
14022 /* We can't call cp_finish_decl, so handle the
14023 initializer by hand. */
14024 tree init = tsubst_init (DECL_INITIAL (t), r, args,
14025 complain, in_decl);
14026 if (!processing_template_decl)
14027 init = maybe_constant_init (init);
14028 if (processing_template_decl
14029 ? potential_constant_expression (init)
14030 : reduced_constant_expression_p (init))
14031 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
14032 = TREE_CONSTANT (r) = true;
14033 DECL_INITIAL (r) = init;
14034 }
14035 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
14036 || decl_constant_var_p (r)
14037 || errorcount || sorrycount);
14038 if (!processing_template_decl)
14039 {
14040 if (TREE_STATIC (r))
14041 rest_of_decl_compilation (r, toplevel_bindings_p (),
14042 at_eof);
14043 else
14044 r = process_outer_var_ref (r, complain);
14045 }
14046 }
14047 /* Remember this for subsequent uses. */
14048 if (local_specializations)
14049 register_local_specialization (r, t);
14050 }
14051 }
14052 else
14053 r = t;
14054 if (!mark_used (r, complain) && !(complain & tf_error))
14055 return error_mark_node;
14056 return r;
14057
14058 case NAMESPACE_DECL:
14059 return t;
14060
14061 case OVERLOAD:
14062 /* An OVERLOAD will always be a non-dependent overload set; an
14063 overload set from function scope will just be represented with an
14064 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14065 gcc_assert (!uses_template_parms (t));
14066 return t;
14067
14068 case BASELINK:
14069 return tsubst_baselink (t, current_nonlambda_class_type (),
14070 args, complain, in_decl);
14071
14072 case TEMPLATE_DECL:
14073 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14074 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14075 args, complain, in_decl);
14076 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14077 return tsubst (t, args, complain, in_decl);
14078 else if (DECL_CLASS_SCOPE_P (t)
14079 && uses_template_parms (DECL_CONTEXT (t)))
14080 {
14081 /* Template template argument like the following example need
14082 special treatment:
14083
14084 template <template <class> class TT> struct C {};
14085 template <class T> struct D {
14086 template <class U> struct E {};
14087 C<E> c; // #1
14088 };
14089 D<int> d; // #2
14090
14091 We are processing the template argument `E' in #1 for
14092 the template instantiation #2. Originally, `E' is a
14093 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14094 have to substitute this with one having context `D<int>'. */
14095
14096 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14097 return lookup_field (context, DECL_NAME(t), 0, false);
14098 }
14099 else
14100 /* Ordinary template template argument. */
14101 return t;
14102
14103 case CAST_EXPR:
14104 case REINTERPRET_CAST_EXPR:
14105 case CONST_CAST_EXPR:
14106 case STATIC_CAST_EXPR:
14107 case DYNAMIC_CAST_EXPR:
14108 case IMPLICIT_CONV_EXPR:
14109 case CONVERT_EXPR:
14110 case NOP_EXPR:
14111 {
14112 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14113 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14114 return build1 (code, type, op0);
14115 }
14116
14117 case SIZEOF_EXPR:
14118 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
14119 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
14120 {
14121 tree expanded, op = TREE_OPERAND (t, 0);
14122 int len = 0;
14123
14124 if (SIZEOF_EXPR_TYPE_P (t))
14125 op = TREE_TYPE (op);
14126
14127 ++cp_unevaluated_operand;
14128 ++c_inhibit_evaluation_warnings;
14129 /* We only want to compute the number of arguments. */
14130 if (PACK_EXPANSION_P (op))
14131 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14132 else
14133 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
14134 args, complain, in_decl);
14135 --cp_unevaluated_operand;
14136 --c_inhibit_evaluation_warnings;
14137
14138 if (TREE_CODE (expanded) == TREE_VEC)
14139 {
14140 len = TREE_VEC_LENGTH (expanded);
14141 /* Set TREE_USED for the benefit of -Wunused. */
14142 for (int i = 0; i < len; i++)
14143 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14144 }
14145
14146 if (expanded == error_mark_node)
14147 return error_mark_node;
14148 else if (PACK_EXPANSION_P (expanded)
14149 || (TREE_CODE (expanded) == TREE_VEC
14150 && pack_expansion_args_count (expanded)))
14151
14152 {
14153 if (PACK_EXPANSION_P (expanded))
14154 /* OK. */;
14155 else if (TREE_VEC_LENGTH (expanded) == 1)
14156 expanded = TREE_VEC_ELT (expanded, 0);
14157 else
14158 expanded = make_argument_pack (expanded);
14159
14160 if (TYPE_P (expanded))
14161 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14162 complain & tf_error);
14163 else
14164 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14165 complain & tf_error);
14166 }
14167 else
14168 return build_int_cst (size_type_node, len);
14169 }
14170 if (SIZEOF_EXPR_TYPE_P (t))
14171 {
14172 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14173 args, complain, in_decl);
14174 r = build1 (NOP_EXPR, r, error_mark_node);
14175 r = build1 (SIZEOF_EXPR,
14176 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14177 SIZEOF_EXPR_TYPE_P (r) = 1;
14178 return r;
14179 }
14180 /* Fall through */
14181
14182 case INDIRECT_REF:
14183 case NEGATE_EXPR:
14184 case TRUTH_NOT_EXPR:
14185 case BIT_NOT_EXPR:
14186 case ADDR_EXPR:
14187 case UNARY_PLUS_EXPR: /* Unary + */
14188 case ALIGNOF_EXPR:
14189 case AT_ENCODE_EXPR:
14190 case ARROW_EXPR:
14191 case THROW_EXPR:
14192 case TYPEID_EXPR:
14193 case REALPART_EXPR:
14194 case IMAGPART_EXPR:
14195 case PAREN_EXPR:
14196 {
14197 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14198 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14199 return build1 (code, type, op0);
14200 }
14201
14202 case COMPONENT_REF:
14203 {
14204 tree object;
14205 tree name;
14206
14207 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14208 name = TREE_OPERAND (t, 1);
14209 if (TREE_CODE (name) == BIT_NOT_EXPR)
14210 {
14211 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14212 complain, in_decl);
14213 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14214 }
14215 else if (TREE_CODE (name) == SCOPE_REF
14216 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14217 {
14218 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14219 complain, in_decl);
14220 name = TREE_OPERAND (name, 1);
14221 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14222 complain, in_decl);
14223 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14224 name = build_qualified_name (/*type=*/NULL_TREE,
14225 base, name,
14226 /*template_p=*/false);
14227 }
14228 else if (BASELINK_P (name))
14229 name = tsubst_baselink (name,
14230 non_reference (TREE_TYPE (object)),
14231 args, complain,
14232 in_decl);
14233 else
14234 name = tsubst_copy (name, args, complain, in_decl);
14235 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14236 }
14237
14238 case PLUS_EXPR:
14239 case MINUS_EXPR:
14240 case MULT_EXPR:
14241 case TRUNC_DIV_EXPR:
14242 case CEIL_DIV_EXPR:
14243 case FLOOR_DIV_EXPR:
14244 case ROUND_DIV_EXPR:
14245 case EXACT_DIV_EXPR:
14246 case BIT_AND_EXPR:
14247 case BIT_IOR_EXPR:
14248 case BIT_XOR_EXPR:
14249 case TRUNC_MOD_EXPR:
14250 case FLOOR_MOD_EXPR:
14251 case TRUTH_ANDIF_EXPR:
14252 case TRUTH_ORIF_EXPR:
14253 case TRUTH_AND_EXPR:
14254 case TRUTH_OR_EXPR:
14255 case RSHIFT_EXPR:
14256 case LSHIFT_EXPR:
14257 case RROTATE_EXPR:
14258 case LROTATE_EXPR:
14259 case EQ_EXPR:
14260 case NE_EXPR:
14261 case MAX_EXPR:
14262 case MIN_EXPR:
14263 case LE_EXPR:
14264 case GE_EXPR:
14265 case LT_EXPR:
14266 case GT_EXPR:
14267 case COMPOUND_EXPR:
14268 case DOTSTAR_EXPR:
14269 case MEMBER_REF:
14270 case PREDECREMENT_EXPR:
14271 case PREINCREMENT_EXPR:
14272 case POSTDECREMENT_EXPR:
14273 case POSTINCREMENT_EXPR:
14274 {
14275 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14276 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14277 return build_nt (code, op0, op1);
14278 }
14279
14280 case SCOPE_REF:
14281 {
14282 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14283 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14284 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14285 QUALIFIED_NAME_IS_TEMPLATE (t));
14286 }
14287
14288 case ARRAY_REF:
14289 {
14290 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14291 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14292 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14293 }
14294
14295 case CALL_EXPR:
14296 {
14297 int n = VL_EXP_OPERAND_LENGTH (t);
14298 tree result = build_vl_exp (CALL_EXPR, n);
14299 int i;
14300 for (i = 0; i < n; i++)
14301 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14302 complain, in_decl);
14303 return result;
14304 }
14305
14306 case COND_EXPR:
14307 case MODOP_EXPR:
14308 case PSEUDO_DTOR_EXPR:
14309 case VEC_PERM_EXPR:
14310 {
14311 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14312 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14313 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14314 r = build_nt (code, op0, op1, op2);
14315 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14316 return r;
14317 }
14318
14319 case NEW_EXPR:
14320 {
14321 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14322 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14323 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14324 r = build_nt (code, op0, op1, op2);
14325 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14326 return r;
14327 }
14328
14329 case DELETE_EXPR:
14330 {
14331 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14332 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14333 r = build_nt (code, op0, op1);
14334 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14335 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14336 return r;
14337 }
14338
14339 case TEMPLATE_ID_EXPR:
14340 {
14341 /* Substituted template arguments */
14342 tree fn = TREE_OPERAND (t, 0);
14343 tree targs = TREE_OPERAND (t, 1);
14344
14345 fn = tsubst_copy (fn, args, complain, in_decl);
14346 if (targs)
14347 targs = tsubst_template_args (targs, args, complain, in_decl);
14348
14349 return lookup_template_function (fn, targs);
14350 }
14351
14352 case TREE_LIST:
14353 {
14354 tree purpose, value, chain;
14355
14356 if (t == void_list_node)
14357 return t;
14358
14359 purpose = TREE_PURPOSE (t);
14360 if (purpose)
14361 purpose = tsubst_copy (purpose, args, complain, in_decl);
14362 value = TREE_VALUE (t);
14363 if (value)
14364 value = tsubst_copy (value, args, complain, in_decl);
14365 chain = TREE_CHAIN (t);
14366 if (chain && chain != void_type_node)
14367 chain = tsubst_copy (chain, args, complain, in_decl);
14368 if (purpose == TREE_PURPOSE (t)
14369 && value == TREE_VALUE (t)
14370 && chain == TREE_CHAIN (t))
14371 return t;
14372 return tree_cons (purpose, value, chain);
14373 }
14374
14375 case RECORD_TYPE:
14376 case UNION_TYPE:
14377 case ENUMERAL_TYPE:
14378 case INTEGER_TYPE:
14379 case TEMPLATE_TYPE_PARM:
14380 case TEMPLATE_TEMPLATE_PARM:
14381 case BOUND_TEMPLATE_TEMPLATE_PARM:
14382 case TEMPLATE_PARM_INDEX:
14383 case POINTER_TYPE:
14384 case REFERENCE_TYPE:
14385 case OFFSET_TYPE:
14386 case FUNCTION_TYPE:
14387 case METHOD_TYPE:
14388 case ARRAY_TYPE:
14389 case TYPENAME_TYPE:
14390 case UNBOUND_CLASS_TEMPLATE:
14391 case TYPEOF_TYPE:
14392 case DECLTYPE_TYPE:
14393 case TYPE_DECL:
14394 return tsubst (t, args, complain, in_decl);
14395
14396 case USING_DECL:
14397 t = DECL_NAME (t);
14398 /* Fall through. */
14399 case IDENTIFIER_NODE:
14400 if (IDENTIFIER_TYPENAME_P (t))
14401 {
14402 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14403 return mangle_conv_op_name_for_type (new_type);
14404 }
14405 else
14406 return t;
14407
14408 case CONSTRUCTOR:
14409 /* This is handled by tsubst_copy_and_build. */
14410 gcc_unreachable ();
14411
14412 case VA_ARG_EXPR:
14413 {
14414 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14415 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14416 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14417 }
14418
14419 case CLEANUP_POINT_EXPR:
14420 /* We shouldn't have built any of these during initial template
14421 generation. Instead, they should be built during instantiation
14422 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14423 gcc_unreachable ();
14424
14425 case OFFSET_REF:
14426 {
14427 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14428 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14429 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14430 r = build2 (code, type, op0, op1);
14431 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14432 if (!mark_used (TREE_OPERAND (r, 1), complain)
14433 && !(complain & tf_error))
14434 return error_mark_node;
14435 return r;
14436 }
14437
14438 case EXPR_PACK_EXPANSION:
14439 error ("invalid use of pack expansion expression");
14440 return error_mark_node;
14441
14442 case NONTYPE_ARGUMENT_PACK:
14443 error ("use %<...%> to expand argument pack");
14444 return error_mark_node;
14445
14446 case VOID_CST:
14447 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14448 return t;
14449
14450 case INTEGER_CST:
14451 case REAL_CST:
14452 case STRING_CST:
14453 case COMPLEX_CST:
14454 {
14455 /* Instantiate any typedefs in the type. */
14456 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14457 r = fold_convert (type, t);
14458 gcc_assert (TREE_CODE (r) == code);
14459 return r;
14460 }
14461
14462 case PTRMEM_CST:
14463 /* These can sometimes show up in a partial instantiation, but never
14464 involve template parms. */
14465 gcc_assert (!uses_template_parms (t));
14466 return t;
14467
14468 case UNARY_LEFT_FOLD_EXPR:
14469 return tsubst_unary_left_fold (t, args, complain, in_decl);
14470 case UNARY_RIGHT_FOLD_EXPR:
14471 return tsubst_unary_right_fold (t, args, complain, in_decl);
14472 case BINARY_LEFT_FOLD_EXPR:
14473 return tsubst_binary_left_fold (t, args, complain, in_decl);
14474 case BINARY_RIGHT_FOLD_EXPR:
14475 return tsubst_binary_right_fold (t, args, complain, in_decl);
14476
14477 default:
14478 /* We shouldn't get here, but keep going if !flag_checking. */
14479 if (flag_checking)
14480 gcc_unreachable ();
14481 return t;
14482 }
14483 }
14484
14485 /* Helper function for tsubst_omp_clauses, used for instantiation of
14486 OMP_CLAUSE_DECL of clauses. */
14487
14488 static tree
14489 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14490 tree in_decl)
14491 {
14492 if (decl == NULL_TREE)
14493 return NULL_TREE;
14494
14495 /* Handle an OpenMP array section represented as a TREE_LIST (or
14496 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14497 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14498 TREE_LIST. We can handle it exactly the same as an array section
14499 (purpose, value, and a chain), even though the nomenclature
14500 (low_bound, length, etc) is different. */
14501 if (TREE_CODE (decl) == TREE_LIST)
14502 {
14503 tree low_bound
14504 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14505 /*integral_constant_expression_p=*/false);
14506 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14507 /*integral_constant_expression_p=*/false);
14508 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14509 in_decl);
14510 if (TREE_PURPOSE (decl) == low_bound
14511 && TREE_VALUE (decl) == length
14512 && TREE_CHAIN (decl) == chain)
14513 return decl;
14514 tree ret = tree_cons (low_bound, length, chain);
14515 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14516 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14517 return ret;
14518 }
14519 tree ret = tsubst_expr (decl, args, complain, in_decl,
14520 /*integral_constant_expression_p=*/false);
14521 /* Undo convert_from_reference tsubst_expr could have called. */
14522 if (decl
14523 && REFERENCE_REF_P (ret)
14524 && !REFERENCE_REF_P (decl))
14525 ret = TREE_OPERAND (ret, 0);
14526 return ret;
14527 }
14528
14529 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14530
14531 static tree
14532 tsubst_omp_clauses (tree clauses, enum c_omp_region_type ort,
14533 tree args, tsubst_flags_t complain, tree in_decl)
14534 {
14535 tree new_clauses = NULL_TREE, nc, oc;
14536 tree linear_no_step = NULL_TREE;
14537
14538 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14539 {
14540 nc = copy_node (oc);
14541 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14542 new_clauses = nc;
14543
14544 switch (OMP_CLAUSE_CODE (nc))
14545 {
14546 case OMP_CLAUSE_LASTPRIVATE:
14547 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14548 {
14549 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14550 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14551 in_decl, /*integral_constant_expression_p=*/false);
14552 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14553 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14554 }
14555 /* FALLTHRU */
14556 case OMP_CLAUSE_PRIVATE:
14557 case OMP_CLAUSE_SHARED:
14558 case OMP_CLAUSE_FIRSTPRIVATE:
14559 case OMP_CLAUSE_COPYIN:
14560 case OMP_CLAUSE_COPYPRIVATE:
14561 case OMP_CLAUSE_UNIFORM:
14562 case OMP_CLAUSE_DEPEND:
14563 case OMP_CLAUSE_FROM:
14564 case OMP_CLAUSE_TO:
14565 case OMP_CLAUSE_MAP:
14566 case OMP_CLAUSE_USE_DEVICE_PTR:
14567 case OMP_CLAUSE_IS_DEVICE_PTR:
14568 OMP_CLAUSE_DECL (nc)
14569 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14570 in_decl);
14571 break;
14572 case OMP_CLAUSE_IF:
14573 case OMP_CLAUSE_NUM_THREADS:
14574 case OMP_CLAUSE_SCHEDULE:
14575 case OMP_CLAUSE_COLLAPSE:
14576 case OMP_CLAUSE_FINAL:
14577 case OMP_CLAUSE_DEVICE:
14578 case OMP_CLAUSE_DIST_SCHEDULE:
14579 case OMP_CLAUSE_NUM_TEAMS:
14580 case OMP_CLAUSE_THREAD_LIMIT:
14581 case OMP_CLAUSE_SAFELEN:
14582 case OMP_CLAUSE_SIMDLEN:
14583 case OMP_CLAUSE_NUM_TASKS:
14584 case OMP_CLAUSE_GRAINSIZE:
14585 case OMP_CLAUSE_PRIORITY:
14586 case OMP_CLAUSE_ORDERED:
14587 case OMP_CLAUSE_HINT:
14588 case OMP_CLAUSE_NUM_GANGS:
14589 case OMP_CLAUSE_NUM_WORKERS:
14590 case OMP_CLAUSE_VECTOR_LENGTH:
14591 case OMP_CLAUSE_WORKER:
14592 case OMP_CLAUSE_VECTOR:
14593 case OMP_CLAUSE_ASYNC:
14594 case OMP_CLAUSE_WAIT:
14595 OMP_CLAUSE_OPERAND (nc, 0)
14596 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14597 in_decl, /*integral_constant_expression_p=*/false);
14598 break;
14599 case OMP_CLAUSE_REDUCTION:
14600 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14601 {
14602 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14603 if (TREE_CODE (placeholder) == SCOPE_REF)
14604 {
14605 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14606 complain, in_decl);
14607 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14608 = build_qualified_name (NULL_TREE, scope,
14609 TREE_OPERAND (placeholder, 1),
14610 false);
14611 }
14612 else
14613 gcc_assert (identifier_p (placeholder));
14614 }
14615 OMP_CLAUSE_DECL (nc)
14616 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14617 in_decl);
14618 break;
14619 case OMP_CLAUSE_GANG:
14620 case OMP_CLAUSE_ALIGNED:
14621 OMP_CLAUSE_DECL (nc)
14622 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14623 in_decl);
14624 OMP_CLAUSE_OPERAND (nc, 1)
14625 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14626 in_decl, /*integral_constant_expression_p=*/false);
14627 break;
14628 case OMP_CLAUSE_LINEAR:
14629 OMP_CLAUSE_DECL (nc)
14630 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14631 in_decl);
14632 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14633 {
14634 gcc_assert (!linear_no_step);
14635 linear_no_step = nc;
14636 }
14637 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14638 OMP_CLAUSE_LINEAR_STEP (nc)
14639 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14640 complain, in_decl);
14641 else
14642 OMP_CLAUSE_LINEAR_STEP (nc)
14643 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14644 in_decl,
14645 /*integral_constant_expression_p=*/false);
14646 break;
14647 case OMP_CLAUSE_NOWAIT:
14648 case OMP_CLAUSE_DEFAULT:
14649 case OMP_CLAUSE_UNTIED:
14650 case OMP_CLAUSE_MERGEABLE:
14651 case OMP_CLAUSE_INBRANCH:
14652 case OMP_CLAUSE_NOTINBRANCH:
14653 case OMP_CLAUSE_PROC_BIND:
14654 case OMP_CLAUSE_FOR:
14655 case OMP_CLAUSE_PARALLEL:
14656 case OMP_CLAUSE_SECTIONS:
14657 case OMP_CLAUSE_TASKGROUP:
14658 case OMP_CLAUSE_NOGROUP:
14659 case OMP_CLAUSE_THREADS:
14660 case OMP_CLAUSE_SIMD:
14661 case OMP_CLAUSE_DEFAULTMAP:
14662 case OMP_CLAUSE_INDEPENDENT:
14663 case OMP_CLAUSE_AUTO:
14664 case OMP_CLAUSE_SEQ:
14665 break;
14666 case OMP_CLAUSE_TILE:
14667 {
14668 tree lnc, loc;
14669 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14670 loc = OMP_CLAUSE_TILE_LIST (oc);
14671 loc;
14672 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14673 {
14674 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14675 complain, in_decl, false);
14676 }
14677 }
14678 break;
14679 default:
14680 gcc_unreachable ();
14681 }
14682 if ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP)
14683 switch (OMP_CLAUSE_CODE (nc))
14684 {
14685 case OMP_CLAUSE_SHARED:
14686 case OMP_CLAUSE_PRIVATE:
14687 case OMP_CLAUSE_FIRSTPRIVATE:
14688 case OMP_CLAUSE_LASTPRIVATE:
14689 case OMP_CLAUSE_COPYPRIVATE:
14690 case OMP_CLAUSE_LINEAR:
14691 case OMP_CLAUSE_REDUCTION:
14692 case OMP_CLAUSE_USE_DEVICE_PTR:
14693 case OMP_CLAUSE_IS_DEVICE_PTR:
14694 /* tsubst_expr on SCOPE_REF results in returning
14695 finish_non_static_data_member result. Undo that here. */
14696 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14697 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14698 == IDENTIFIER_NODE))
14699 {
14700 tree t = OMP_CLAUSE_DECL (nc);
14701 tree v = t;
14702 while (v)
14703 switch (TREE_CODE (v))
14704 {
14705 case COMPONENT_REF:
14706 case MEM_REF:
14707 case INDIRECT_REF:
14708 CASE_CONVERT:
14709 case POINTER_PLUS_EXPR:
14710 v = TREE_OPERAND (v, 0);
14711 continue;
14712 case PARM_DECL:
14713 if (DECL_CONTEXT (v) == current_function_decl
14714 && DECL_ARTIFICIAL (v)
14715 && DECL_NAME (v) == this_identifier)
14716 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14717 /* FALLTHRU */
14718 default:
14719 v = NULL_TREE;
14720 break;
14721 }
14722 }
14723 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14724 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14725 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14726 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14727 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14728 {
14729 tree decl = OMP_CLAUSE_DECL (nc);
14730 if (VAR_P (decl))
14731 {
14732 if (!DECL_LANG_SPECIFIC (decl))
14733 retrofit_lang_decl (decl);
14734 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14735 }
14736 }
14737 break;
14738 default:
14739 break;
14740 }
14741 }
14742
14743 new_clauses = nreverse (new_clauses);
14744 if (ort != C_ORT_OMP_DECLARE_SIMD)
14745 {
14746 new_clauses = finish_omp_clauses (new_clauses, ort);
14747 if (linear_no_step)
14748 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14749 if (nc == linear_no_step)
14750 {
14751 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14752 break;
14753 }
14754 }
14755 return new_clauses;
14756 }
14757
14758 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14759
14760 static tree
14761 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14762 tree in_decl)
14763 {
14764 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14765
14766 tree purpose, value, chain;
14767
14768 if (t == NULL)
14769 return t;
14770
14771 if (TREE_CODE (t) != TREE_LIST)
14772 return tsubst_copy_and_build (t, args, complain, in_decl,
14773 /*function_p=*/false,
14774 /*integral_constant_expression_p=*/false);
14775
14776 if (t == void_list_node)
14777 return t;
14778
14779 purpose = TREE_PURPOSE (t);
14780 if (purpose)
14781 purpose = RECUR (purpose);
14782 value = TREE_VALUE (t);
14783 if (value)
14784 {
14785 if (TREE_CODE (value) != LABEL_DECL)
14786 value = RECUR (value);
14787 else
14788 {
14789 value = lookup_label (DECL_NAME (value));
14790 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14791 TREE_USED (value) = 1;
14792 }
14793 }
14794 chain = TREE_CHAIN (t);
14795 if (chain && chain != void_type_node)
14796 chain = RECUR (chain);
14797 return tree_cons (purpose, value, chain);
14798 #undef RECUR
14799 }
14800
14801 /* Used to temporarily communicate the list of #pragma omp parallel
14802 clauses to #pragma omp for instantiation if they are combined
14803 together. */
14804
14805 static tree *omp_parallel_combined_clauses;
14806
14807 /* Substitute one OMP_FOR iterator. */
14808
14809 static void
14810 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14811 tree initv, tree condv, tree incrv, tree *clauses,
14812 tree args, tsubst_flags_t complain, tree in_decl,
14813 bool integral_constant_expression_p)
14814 {
14815 #define RECUR(NODE) \
14816 tsubst_expr ((NODE), args, complain, in_decl, \
14817 integral_constant_expression_p)
14818 tree decl, init, cond, incr;
14819
14820 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14821 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14822
14823 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14824 {
14825 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14826 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14827 }
14828
14829 decl = TREE_OPERAND (init, 0);
14830 init = TREE_OPERAND (init, 1);
14831 tree decl_expr = NULL_TREE;
14832 if (init && TREE_CODE (init) == DECL_EXPR)
14833 {
14834 /* We need to jump through some hoops to handle declarations in the
14835 for-init-statement, since we might need to handle auto deduction,
14836 but we need to keep control of initialization. */
14837 decl_expr = init;
14838 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14839 decl = tsubst_decl (decl, args, complain);
14840 }
14841 else
14842 {
14843 if (TREE_CODE (decl) == SCOPE_REF)
14844 {
14845 decl = RECUR (decl);
14846 if (TREE_CODE (decl) == COMPONENT_REF)
14847 {
14848 tree v = decl;
14849 while (v)
14850 switch (TREE_CODE (v))
14851 {
14852 case COMPONENT_REF:
14853 case MEM_REF:
14854 case INDIRECT_REF:
14855 CASE_CONVERT:
14856 case POINTER_PLUS_EXPR:
14857 v = TREE_OPERAND (v, 0);
14858 continue;
14859 case PARM_DECL:
14860 if (DECL_CONTEXT (v) == current_function_decl
14861 && DECL_ARTIFICIAL (v)
14862 && DECL_NAME (v) == this_identifier)
14863 {
14864 decl = TREE_OPERAND (decl, 1);
14865 decl = omp_privatize_field (decl, false);
14866 }
14867 /* FALLTHRU */
14868 default:
14869 v = NULL_TREE;
14870 break;
14871 }
14872 }
14873 }
14874 else
14875 decl = RECUR (decl);
14876 }
14877 init = RECUR (init);
14878
14879 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14880 if (auto_node && init)
14881 TREE_TYPE (decl)
14882 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14883
14884 gcc_assert (!type_dependent_expression_p (decl));
14885
14886 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14887 {
14888 if (decl_expr)
14889 {
14890 /* Declare the variable, but don't let that initialize it. */
14891 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14892 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14893 RECUR (decl_expr);
14894 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14895 }
14896
14897 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14898 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14899 if (TREE_CODE (incr) == MODIFY_EXPR)
14900 {
14901 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14902 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14903 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14904 NOP_EXPR, rhs, complain);
14905 }
14906 else
14907 incr = RECUR (incr);
14908 TREE_VEC_ELT (declv, i) = decl;
14909 TREE_VEC_ELT (initv, i) = init;
14910 TREE_VEC_ELT (condv, i) = cond;
14911 TREE_VEC_ELT (incrv, i) = incr;
14912 return;
14913 }
14914
14915 if (decl_expr)
14916 {
14917 /* Declare and initialize the variable. */
14918 RECUR (decl_expr);
14919 init = NULL_TREE;
14920 }
14921 else if (init)
14922 {
14923 tree *pc;
14924 int j;
14925 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14926 {
14927 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14928 {
14929 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14930 && OMP_CLAUSE_DECL (*pc) == decl)
14931 break;
14932 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14933 && OMP_CLAUSE_DECL (*pc) == decl)
14934 {
14935 if (j)
14936 break;
14937 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14938 tree c = *pc;
14939 *pc = OMP_CLAUSE_CHAIN (c);
14940 OMP_CLAUSE_CHAIN (c) = *clauses;
14941 *clauses = c;
14942 }
14943 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14944 && OMP_CLAUSE_DECL (*pc) == decl)
14945 {
14946 error ("iteration variable %qD should not be firstprivate",
14947 decl);
14948 *pc = OMP_CLAUSE_CHAIN (*pc);
14949 }
14950 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14951 && OMP_CLAUSE_DECL (*pc) == decl)
14952 {
14953 error ("iteration variable %qD should not be reduction",
14954 decl);
14955 *pc = OMP_CLAUSE_CHAIN (*pc);
14956 }
14957 else
14958 pc = &OMP_CLAUSE_CHAIN (*pc);
14959 }
14960 if (*pc)
14961 break;
14962 }
14963 if (*pc == NULL_TREE)
14964 {
14965 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14966 OMP_CLAUSE_DECL (c) = decl;
14967 c = finish_omp_clauses (c, C_ORT_OMP);
14968 if (c)
14969 {
14970 OMP_CLAUSE_CHAIN (c) = *clauses;
14971 *clauses = c;
14972 }
14973 }
14974 }
14975 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14976 if (COMPARISON_CLASS_P (cond))
14977 {
14978 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14979 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14980 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14981 }
14982 else
14983 cond = RECUR (cond);
14984 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14985 switch (TREE_CODE (incr))
14986 {
14987 case PREINCREMENT_EXPR:
14988 case PREDECREMENT_EXPR:
14989 case POSTINCREMENT_EXPR:
14990 case POSTDECREMENT_EXPR:
14991 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14992 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14993 break;
14994 case MODIFY_EXPR:
14995 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14996 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14997 {
14998 tree rhs = TREE_OPERAND (incr, 1);
14999 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15000 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15001 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15002 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15003 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15004 rhs0, rhs1));
15005 }
15006 else
15007 incr = RECUR (incr);
15008 break;
15009 case MODOP_EXPR:
15010 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15011 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15012 {
15013 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15014 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15015 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
15016 TREE_TYPE (decl), lhs,
15017 RECUR (TREE_OPERAND (incr, 2))));
15018 }
15019 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
15020 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
15021 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
15022 {
15023 tree rhs = TREE_OPERAND (incr, 2);
15024 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15025 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15026 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15027 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15028 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15029 rhs0, rhs1));
15030 }
15031 else
15032 incr = RECUR (incr);
15033 break;
15034 default:
15035 incr = RECUR (incr);
15036 break;
15037 }
15038
15039 TREE_VEC_ELT (declv, i) = decl;
15040 TREE_VEC_ELT (initv, i) = init;
15041 TREE_VEC_ELT (condv, i) = cond;
15042 TREE_VEC_ELT (incrv, i) = incr;
15043 #undef RECUR
15044 }
15045
15046 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15047 of OMP_TARGET's body. */
15048
15049 static tree
15050 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
15051 {
15052 *walk_subtrees = 0;
15053 switch (TREE_CODE (*tp))
15054 {
15055 case OMP_TEAMS:
15056 return *tp;
15057 case BIND_EXPR:
15058 case STATEMENT_LIST:
15059 *walk_subtrees = 1;
15060 break;
15061 default:
15062 break;
15063 }
15064 return NULL_TREE;
15065 }
15066
15067 /* Like tsubst_copy for expressions, etc. but also does semantic
15068 processing. */
15069
15070 tree
15071 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15072 bool integral_constant_expression_p)
15073 {
15074 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15075 #define RECUR(NODE) \
15076 tsubst_expr ((NODE), args, complain, in_decl, \
15077 integral_constant_expression_p)
15078
15079 tree stmt, tmp;
15080 tree r;
15081 location_t loc;
15082
15083 if (t == NULL_TREE || t == error_mark_node)
15084 return t;
15085
15086 loc = input_location;
15087 if (EXPR_HAS_LOCATION (t))
15088 input_location = EXPR_LOCATION (t);
15089 if (STATEMENT_CODE_P (TREE_CODE (t)))
15090 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15091
15092 switch (TREE_CODE (t))
15093 {
15094 case STATEMENT_LIST:
15095 {
15096 tree_stmt_iterator i;
15097 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15098 RECUR (tsi_stmt (i));
15099 break;
15100 }
15101
15102 case CTOR_INITIALIZER:
15103 finish_mem_initializers (tsubst_initializer_list
15104 (TREE_OPERAND (t, 0), args));
15105 break;
15106
15107 case RETURN_EXPR:
15108 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15109 break;
15110
15111 case EXPR_STMT:
15112 tmp = RECUR (EXPR_STMT_EXPR (t));
15113 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15114 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15115 else
15116 finish_expr_stmt (tmp);
15117 break;
15118
15119 case USING_STMT:
15120 do_using_directive (USING_STMT_NAMESPACE (t));
15121 break;
15122
15123 case DECL_EXPR:
15124 {
15125 tree decl, pattern_decl;
15126 tree init;
15127
15128 pattern_decl = decl = DECL_EXPR_DECL (t);
15129 if (TREE_CODE (decl) == LABEL_DECL)
15130 finish_label_decl (DECL_NAME (decl));
15131 else if (TREE_CODE (decl) == USING_DECL)
15132 {
15133 tree scope = USING_DECL_SCOPE (decl);
15134 tree name = DECL_NAME (decl);
15135
15136 scope = tsubst (scope, args, complain, in_decl);
15137 decl = lookup_qualified_name (scope, name,
15138 /*is_type_p=*/false,
15139 /*complain=*/false);
15140 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15141 qualified_name_lookup_error (scope, name, decl, input_location);
15142 else
15143 do_local_using_decl (decl, scope, name);
15144 }
15145 else if (DECL_PACK_P (decl))
15146 {
15147 /* Don't build up decls for a variadic capture proxy, we'll
15148 instantiate the elements directly as needed. */
15149 break;
15150 }
15151 else
15152 {
15153 init = DECL_INITIAL (decl);
15154 decl = tsubst (decl, args, complain, in_decl);
15155 if (decl != error_mark_node)
15156 {
15157 /* By marking the declaration as instantiated, we avoid
15158 trying to instantiate it. Since instantiate_decl can't
15159 handle local variables, and since we've already done
15160 all that needs to be done, that's the right thing to
15161 do. */
15162 if (VAR_P (decl))
15163 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15164 if (VAR_P (decl)
15165 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15166 /* Anonymous aggregates are a special case. */
15167 finish_anon_union (decl);
15168 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15169 {
15170 DECL_CONTEXT (decl) = current_function_decl;
15171 if (DECL_NAME (decl) == this_identifier)
15172 {
15173 tree lam = DECL_CONTEXT (current_function_decl);
15174 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15175 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15176 }
15177 insert_capture_proxy (decl);
15178 }
15179 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15180 /* We already did a pushtag. */;
15181 else if (TREE_CODE (decl) == FUNCTION_DECL
15182 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15183 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15184 {
15185 DECL_CONTEXT (decl) = NULL_TREE;
15186 pushdecl (decl);
15187 DECL_CONTEXT (decl) = current_function_decl;
15188 cp_check_omp_declare_reduction (decl);
15189 }
15190 else
15191 {
15192 int const_init = false;
15193 maybe_push_decl (decl);
15194 if (VAR_P (decl)
15195 && DECL_PRETTY_FUNCTION_P (decl))
15196 {
15197 /* For __PRETTY_FUNCTION__ we have to adjust the
15198 initializer. */
15199 const char *const name
15200 = cxx_printable_name (current_function_decl, 2);
15201 init = cp_fname_init (name, &TREE_TYPE (decl));
15202 }
15203 else
15204 init = tsubst_init (init, decl, args, complain, in_decl);
15205
15206 if (VAR_P (decl))
15207 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15208 (pattern_decl));
15209 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15210 }
15211 }
15212 }
15213
15214 break;
15215 }
15216
15217 case FOR_STMT:
15218 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15219 RECUR (FOR_INIT_STMT (t));
15220 finish_for_init_stmt (stmt);
15221 tmp = RECUR (FOR_COND (t));
15222 finish_for_cond (tmp, stmt, false);
15223 tmp = RECUR (FOR_EXPR (t));
15224 finish_for_expr (tmp, stmt);
15225 RECUR (FOR_BODY (t));
15226 finish_for_stmt (stmt);
15227 break;
15228
15229 case RANGE_FOR_STMT:
15230 {
15231 tree decl, expr;
15232 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15233 decl = RANGE_FOR_DECL (t);
15234 decl = tsubst (decl, args, complain, in_decl);
15235 maybe_push_decl (decl);
15236 expr = RECUR (RANGE_FOR_EXPR (t));
15237 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15238 RECUR (RANGE_FOR_BODY (t));
15239 finish_for_stmt (stmt);
15240 }
15241 break;
15242
15243 case WHILE_STMT:
15244 stmt = begin_while_stmt ();
15245 tmp = RECUR (WHILE_COND (t));
15246 finish_while_stmt_cond (tmp, stmt, false);
15247 RECUR (WHILE_BODY (t));
15248 finish_while_stmt (stmt);
15249 break;
15250
15251 case DO_STMT:
15252 stmt = begin_do_stmt ();
15253 RECUR (DO_BODY (t));
15254 finish_do_body (stmt);
15255 tmp = RECUR (DO_COND (t));
15256 finish_do_stmt (tmp, stmt, false);
15257 break;
15258
15259 case IF_STMT:
15260 stmt = begin_if_stmt ();
15261 tmp = RECUR (IF_COND (t));
15262 finish_if_stmt_cond (tmp, stmt);
15263 RECUR (THEN_CLAUSE (t));
15264 finish_then_clause (stmt);
15265
15266 if (ELSE_CLAUSE (t))
15267 {
15268 begin_else_clause (stmt);
15269 RECUR (ELSE_CLAUSE (t));
15270 finish_else_clause (stmt);
15271 }
15272
15273 finish_if_stmt (stmt);
15274 break;
15275
15276 case BIND_EXPR:
15277 if (BIND_EXPR_BODY_BLOCK (t))
15278 stmt = begin_function_body ();
15279 else
15280 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15281 ? BCS_TRY_BLOCK : 0);
15282
15283 RECUR (BIND_EXPR_BODY (t));
15284
15285 if (BIND_EXPR_BODY_BLOCK (t))
15286 finish_function_body (stmt);
15287 else
15288 finish_compound_stmt (stmt);
15289 break;
15290
15291 case BREAK_STMT:
15292 finish_break_stmt ();
15293 break;
15294
15295 case CONTINUE_STMT:
15296 finish_continue_stmt ();
15297 break;
15298
15299 case SWITCH_STMT:
15300 stmt = begin_switch_stmt ();
15301 tmp = RECUR (SWITCH_STMT_COND (t));
15302 finish_switch_cond (tmp, stmt);
15303 RECUR (SWITCH_STMT_BODY (t));
15304 finish_switch_stmt (stmt);
15305 break;
15306
15307 case CASE_LABEL_EXPR:
15308 {
15309 tree low = RECUR (CASE_LOW (t));
15310 tree high = RECUR (CASE_HIGH (t));
15311 finish_case_label (EXPR_LOCATION (t), low, high);
15312 }
15313 break;
15314
15315 case LABEL_EXPR:
15316 {
15317 tree decl = LABEL_EXPR_LABEL (t);
15318 tree label;
15319
15320 label = finish_label_stmt (DECL_NAME (decl));
15321 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15322 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15323 }
15324 break;
15325
15326 case GOTO_EXPR:
15327 tmp = GOTO_DESTINATION (t);
15328 if (TREE_CODE (tmp) != LABEL_DECL)
15329 /* Computed goto's must be tsubst'd into. On the other hand,
15330 non-computed gotos must not be; the identifier in question
15331 will have no binding. */
15332 tmp = RECUR (tmp);
15333 else
15334 tmp = DECL_NAME (tmp);
15335 finish_goto_stmt (tmp);
15336 break;
15337
15338 case ASM_EXPR:
15339 {
15340 tree string = RECUR (ASM_STRING (t));
15341 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15342 complain, in_decl);
15343 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15344 complain, in_decl);
15345 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15346 complain, in_decl);
15347 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15348 complain, in_decl);
15349 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15350 clobbers, labels);
15351 tree asm_expr = tmp;
15352 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15353 asm_expr = TREE_OPERAND (asm_expr, 0);
15354 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15355 }
15356 break;
15357
15358 case TRY_BLOCK:
15359 if (CLEANUP_P (t))
15360 {
15361 stmt = begin_try_block ();
15362 RECUR (TRY_STMTS (t));
15363 finish_cleanup_try_block (stmt);
15364 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15365 }
15366 else
15367 {
15368 tree compound_stmt = NULL_TREE;
15369
15370 if (FN_TRY_BLOCK_P (t))
15371 stmt = begin_function_try_block (&compound_stmt);
15372 else
15373 stmt = begin_try_block ();
15374
15375 RECUR (TRY_STMTS (t));
15376
15377 if (FN_TRY_BLOCK_P (t))
15378 finish_function_try_block (stmt);
15379 else
15380 finish_try_block (stmt);
15381
15382 RECUR (TRY_HANDLERS (t));
15383 if (FN_TRY_BLOCK_P (t))
15384 finish_function_handler_sequence (stmt, compound_stmt);
15385 else
15386 finish_handler_sequence (stmt);
15387 }
15388 break;
15389
15390 case HANDLER:
15391 {
15392 tree decl = HANDLER_PARMS (t);
15393
15394 if (decl)
15395 {
15396 decl = tsubst (decl, args, complain, in_decl);
15397 /* Prevent instantiate_decl from trying to instantiate
15398 this variable. We've already done all that needs to be
15399 done. */
15400 if (decl != error_mark_node)
15401 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15402 }
15403 stmt = begin_handler ();
15404 finish_handler_parms (decl, stmt);
15405 RECUR (HANDLER_BODY (t));
15406 finish_handler (stmt);
15407 }
15408 break;
15409
15410 case TAG_DEFN:
15411 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15412 if (CLASS_TYPE_P (tmp))
15413 {
15414 /* Local classes are not independent templates; they are
15415 instantiated along with their containing function. And this
15416 way we don't have to deal with pushing out of one local class
15417 to instantiate a member of another local class. */
15418 tree fn;
15419 /* Closures are handled by the LAMBDA_EXPR. */
15420 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15421 complete_type (tmp);
15422 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15423 if (!DECL_ARTIFICIAL (fn))
15424 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15425 }
15426 break;
15427
15428 case STATIC_ASSERT:
15429 {
15430 tree condition;
15431
15432 ++c_inhibit_evaluation_warnings;
15433 condition =
15434 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15435 args,
15436 complain, in_decl,
15437 /*integral_constant_expression_p=*/true);
15438 --c_inhibit_evaluation_warnings;
15439
15440 finish_static_assert (condition,
15441 STATIC_ASSERT_MESSAGE (t),
15442 STATIC_ASSERT_SOURCE_LOCATION (t),
15443 /*member_p=*/false);
15444 }
15445 break;
15446
15447 case OACC_KERNELS:
15448 case OACC_PARALLEL:
15449 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_ACC, args, complain,
15450 in_decl);
15451 stmt = begin_omp_parallel ();
15452 RECUR (OMP_BODY (t));
15453 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15454 break;
15455
15456 case OMP_PARALLEL:
15457 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15458 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), C_ORT_OMP, args,
15459 complain, in_decl);
15460 if (OMP_PARALLEL_COMBINED (t))
15461 omp_parallel_combined_clauses = &tmp;
15462 stmt = begin_omp_parallel ();
15463 RECUR (OMP_PARALLEL_BODY (t));
15464 gcc_assert (omp_parallel_combined_clauses == NULL);
15465 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15466 = OMP_PARALLEL_COMBINED (t);
15467 pop_omp_privatization_clauses (r);
15468 break;
15469
15470 case OMP_TASK:
15471 r = push_omp_privatization_clauses (false);
15472 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), C_ORT_OMP, args,
15473 complain, in_decl);
15474 stmt = begin_omp_task ();
15475 RECUR (OMP_TASK_BODY (t));
15476 finish_omp_task (tmp, stmt);
15477 pop_omp_privatization_clauses (r);
15478 break;
15479
15480 case OMP_FOR:
15481 case OMP_SIMD:
15482 case CILK_SIMD:
15483 case CILK_FOR:
15484 case OMP_DISTRIBUTE:
15485 case OMP_TASKLOOP:
15486 case OACC_LOOP:
15487 {
15488 tree clauses, body, pre_body;
15489 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15490 tree orig_declv = NULL_TREE;
15491 tree incrv = NULL_TREE;
15492 enum c_omp_region_type ort = C_ORT_OMP;
15493 int i;
15494
15495 if (TREE_CODE (t) == CILK_SIMD || TREE_CODE (t) == CILK_FOR)
15496 ort = C_ORT_CILK;
15497 else if (TREE_CODE (t) == OACC_LOOP)
15498 ort = C_ORT_ACC;
15499
15500 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15501 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), ort, args, complain,
15502 in_decl);
15503 if (OMP_FOR_INIT (t) != NULL_TREE)
15504 {
15505 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15506 if (OMP_FOR_ORIG_DECLS (t))
15507 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15508 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15509 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15510 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15511 }
15512
15513 stmt = begin_omp_structured_block ();
15514
15515 pre_body = push_stmt_list ();
15516 RECUR (OMP_FOR_PRE_BODY (t));
15517 pre_body = pop_stmt_list (pre_body);
15518
15519 if (OMP_FOR_INIT (t) != NULL_TREE)
15520 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15521 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15522 incrv, &clauses, args, complain, in_decl,
15523 integral_constant_expression_p);
15524 omp_parallel_combined_clauses = NULL;
15525
15526 body = push_stmt_list ();
15527 RECUR (OMP_FOR_BODY (t));
15528 body = pop_stmt_list (body);
15529
15530 if (OMP_FOR_INIT (t) != NULL_TREE)
15531 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15532 orig_declv, initv, condv, incrv, body, pre_body,
15533 NULL, clauses);
15534 else
15535 {
15536 t = make_node (TREE_CODE (t));
15537 TREE_TYPE (t) = void_type_node;
15538 OMP_FOR_BODY (t) = body;
15539 OMP_FOR_PRE_BODY (t) = pre_body;
15540 OMP_FOR_CLAUSES (t) = clauses;
15541 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15542 add_stmt (t);
15543 }
15544
15545 add_stmt (finish_omp_structured_block (stmt));
15546 pop_omp_privatization_clauses (r);
15547 }
15548 break;
15549
15550 case OMP_SECTIONS:
15551 omp_parallel_combined_clauses = NULL;
15552 /* FALLTHRU */
15553 case OMP_SINGLE:
15554 case OMP_TEAMS:
15555 case OMP_CRITICAL:
15556 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15557 && OMP_TEAMS_COMBINED (t));
15558 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_OMP, args, complain,
15559 in_decl);
15560 stmt = push_stmt_list ();
15561 RECUR (OMP_BODY (t));
15562 stmt = pop_stmt_list (stmt);
15563
15564 t = copy_node (t);
15565 OMP_BODY (t) = stmt;
15566 OMP_CLAUSES (t) = tmp;
15567 add_stmt (t);
15568 pop_omp_privatization_clauses (r);
15569 break;
15570
15571 case OACC_DATA:
15572 case OMP_TARGET_DATA:
15573 case OMP_TARGET:
15574 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), (TREE_CODE (t) == OACC_DATA)
15575 ? C_ORT_ACC : C_ORT_OMP, args, complain,
15576 in_decl);
15577 keep_next_level (true);
15578 stmt = begin_omp_structured_block ();
15579
15580 RECUR (OMP_BODY (t));
15581 stmt = finish_omp_structured_block (stmt);
15582
15583 t = copy_node (t);
15584 OMP_BODY (t) = stmt;
15585 OMP_CLAUSES (t) = tmp;
15586 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15587 {
15588 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15589 if (teams)
15590 {
15591 /* For combined target teams, ensure the num_teams and
15592 thread_limit clause expressions are evaluated on the host,
15593 before entering the target construct. */
15594 tree c;
15595 for (c = OMP_TEAMS_CLAUSES (teams);
15596 c; c = OMP_CLAUSE_CHAIN (c))
15597 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15598 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15599 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15600 {
15601 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15602 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15603 if (expr == error_mark_node)
15604 continue;
15605 tmp = TARGET_EXPR_SLOT (expr);
15606 add_stmt (expr);
15607 OMP_CLAUSE_OPERAND (c, 0) = expr;
15608 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15609 OMP_CLAUSE_FIRSTPRIVATE);
15610 OMP_CLAUSE_DECL (tc) = tmp;
15611 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15612 OMP_TARGET_CLAUSES (t) = tc;
15613 }
15614 }
15615 }
15616 add_stmt (t);
15617 break;
15618
15619 case OACC_DECLARE:
15620 t = copy_node (t);
15621 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), C_ORT_ACC, args,
15622 complain, in_decl);
15623 OACC_DECLARE_CLAUSES (t) = tmp;
15624 add_stmt (t);
15625 break;
15626
15627 case OMP_TARGET_UPDATE:
15628 case OMP_TARGET_ENTER_DATA:
15629 case OMP_TARGET_EXIT_DATA:
15630 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_OMP, args,
15631 complain, in_decl);
15632 t = copy_node (t);
15633 OMP_STANDALONE_CLAUSES (t) = tmp;
15634 add_stmt (t);
15635 break;
15636
15637 case OACC_ENTER_DATA:
15638 case OACC_EXIT_DATA:
15639 case OACC_UPDATE:
15640 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_ACC, args,
15641 complain, in_decl);
15642 t = copy_node (t);
15643 OMP_STANDALONE_CLAUSES (t) = tmp;
15644 add_stmt (t);
15645 break;
15646
15647 case OMP_ORDERED:
15648 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), C_ORT_OMP, args,
15649 complain, in_decl);
15650 stmt = push_stmt_list ();
15651 RECUR (OMP_BODY (t));
15652 stmt = pop_stmt_list (stmt);
15653
15654 t = copy_node (t);
15655 OMP_BODY (t) = stmt;
15656 OMP_ORDERED_CLAUSES (t) = tmp;
15657 add_stmt (t);
15658 break;
15659
15660 case OMP_SECTION:
15661 case OMP_MASTER:
15662 case OMP_TASKGROUP:
15663 stmt = push_stmt_list ();
15664 RECUR (OMP_BODY (t));
15665 stmt = pop_stmt_list (stmt);
15666
15667 t = copy_node (t);
15668 OMP_BODY (t) = stmt;
15669 add_stmt (t);
15670 break;
15671
15672 case OMP_ATOMIC:
15673 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15674 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15675 {
15676 tree op1 = TREE_OPERAND (t, 1);
15677 tree rhs1 = NULL_TREE;
15678 tree lhs, rhs;
15679 if (TREE_CODE (op1) == COMPOUND_EXPR)
15680 {
15681 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15682 op1 = TREE_OPERAND (op1, 1);
15683 }
15684 lhs = RECUR (TREE_OPERAND (op1, 0));
15685 rhs = RECUR (TREE_OPERAND (op1, 1));
15686 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15687 NULL_TREE, NULL_TREE, rhs1,
15688 OMP_ATOMIC_SEQ_CST (t));
15689 }
15690 else
15691 {
15692 tree op1 = TREE_OPERAND (t, 1);
15693 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15694 tree rhs1 = NULL_TREE;
15695 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15696 enum tree_code opcode = NOP_EXPR;
15697 if (code == OMP_ATOMIC_READ)
15698 {
15699 v = RECUR (TREE_OPERAND (op1, 0));
15700 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15701 }
15702 else if (code == OMP_ATOMIC_CAPTURE_OLD
15703 || code == OMP_ATOMIC_CAPTURE_NEW)
15704 {
15705 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15706 v = RECUR (TREE_OPERAND (op1, 0));
15707 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15708 if (TREE_CODE (op11) == COMPOUND_EXPR)
15709 {
15710 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15711 op11 = TREE_OPERAND (op11, 1);
15712 }
15713 lhs = RECUR (TREE_OPERAND (op11, 0));
15714 rhs = RECUR (TREE_OPERAND (op11, 1));
15715 opcode = TREE_CODE (op11);
15716 if (opcode == MODIFY_EXPR)
15717 opcode = NOP_EXPR;
15718 }
15719 else
15720 {
15721 code = OMP_ATOMIC;
15722 lhs = RECUR (TREE_OPERAND (op1, 0));
15723 rhs = RECUR (TREE_OPERAND (op1, 1));
15724 }
15725 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15726 OMP_ATOMIC_SEQ_CST (t));
15727 }
15728 break;
15729
15730 case TRANSACTION_EXPR:
15731 {
15732 int flags = 0;
15733 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15734 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15735
15736 if (TRANSACTION_EXPR_IS_STMT (t))
15737 {
15738 tree body = TRANSACTION_EXPR_BODY (t);
15739 tree noex = NULL_TREE;
15740 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15741 {
15742 noex = MUST_NOT_THROW_COND (body);
15743 if (noex == NULL_TREE)
15744 noex = boolean_true_node;
15745 body = TREE_OPERAND (body, 0);
15746 }
15747 stmt = begin_transaction_stmt (input_location, NULL, flags);
15748 RECUR (body);
15749 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15750 }
15751 else
15752 {
15753 stmt = build_transaction_expr (EXPR_LOCATION (t),
15754 RECUR (TRANSACTION_EXPR_BODY (t)),
15755 flags, NULL_TREE);
15756 RETURN (stmt);
15757 }
15758 }
15759 break;
15760
15761 case MUST_NOT_THROW_EXPR:
15762 {
15763 tree op0 = RECUR (TREE_OPERAND (t, 0));
15764 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15765 RETURN (build_must_not_throw_expr (op0, cond));
15766 }
15767
15768 case EXPR_PACK_EXPANSION:
15769 error ("invalid use of pack expansion expression");
15770 RETURN (error_mark_node);
15771
15772 case NONTYPE_ARGUMENT_PACK:
15773 error ("use %<...%> to expand argument pack");
15774 RETURN (error_mark_node);
15775
15776 case CILK_SPAWN_STMT:
15777 cfun->calls_cilk_spawn = 1;
15778 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15779
15780 case CILK_SYNC_STMT:
15781 RETURN (build_cilk_sync ());
15782
15783 case COMPOUND_EXPR:
15784 tmp = RECUR (TREE_OPERAND (t, 0));
15785 if (tmp == NULL_TREE)
15786 /* If the first operand was a statement, we're done with it. */
15787 RETURN (RECUR (TREE_OPERAND (t, 1)));
15788 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15789 RECUR (TREE_OPERAND (t, 1)),
15790 complain));
15791
15792 case ANNOTATE_EXPR:
15793 tmp = RECUR (TREE_OPERAND (t, 0));
15794 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15795 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15796
15797 default:
15798 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15799
15800 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15801 /*function_p=*/false,
15802 integral_constant_expression_p));
15803 }
15804
15805 RETURN (NULL_TREE);
15806 out:
15807 input_location = loc;
15808 return r;
15809 #undef RECUR
15810 #undef RETURN
15811 }
15812
15813 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15814 function. For description of the body see comment above
15815 cp_parser_omp_declare_reduction_exprs. */
15816
15817 static void
15818 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15819 {
15820 if (t == NULL_TREE || t == error_mark_node)
15821 return;
15822
15823 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15824
15825 tree_stmt_iterator tsi;
15826 int i;
15827 tree stmts[7];
15828 memset (stmts, 0, sizeof stmts);
15829 for (i = 0, tsi = tsi_start (t);
15830 i < 7 && !tsi_end_p (tsi);
15831 i++, tsi_next (&tsi))
15832 stmts[i] = tsi_stmt (tsi);
15833 gcc_assert (tsi_end_p (tsi));
15834
15835 if (i >= 3)
15836 {
15837 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15838 && TREE_CODE (stmts[1]) == DECL_EXPR);
15839 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15840 args, complain, in_decl);
15841 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15842 args, complain, in_decl);
15843 DECL_CONTEXT (omp_out) = current_function_decl;
15844 DECL_CONTEXT (omp_in) = current_function_decl;
15845 keep_next_level (true);
15846 tree block = begin_omp_structured_block ();
15847 tsubst_expr (stmts[2], args, complain, in_decl, false);
15848 block = finish_omp_structured_block (block);
15849 block = maybe_cleanup_point_expr_void (block);
15850 add_decl_expr (omp_out);
15851 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15852 TREE_NO_WARNING (omp_out) = 1;
15853 add_decl_expr (omp_in);
15854 finish_expr_stmt (block);
15855 }
15856 if (i >= 6)
15857 {
15858 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15859 && TREE_CODE (stmts[4]) == DECL_EXPR);
15860 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15861 args, complain, in_decl);
15862 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15863 args, complain, in_decl);
15864 DECL_CONTEXT (omp_priv) = current_function_decl;
15865 DECL_CONTEXT (omp_orig) = current_function_decl;
15866 keep_next_level (true);
15867 tree block = begin_omp_structured_block ();
15868 tsubst_expr (stmts[5], args, complain, in_decl, false);
15869 block = finish_omp_structured_block (block);
15870 block = maybe_cleanup_point_expr_void (block);
15871 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15872 add_decl_expr (omp_priv);
15873 add_decl_expr (omp_orig);
15874 finish_expr_stmt (block);
15875 if (i == 7)
15876 add_decl_expr (omp_orig);
15877 }
15878 }
15879
15880 /* T is a postfix-expression that is not being used in a function
15881 call. Return the substituted version of T. */
15882
15883 static tree
15884 tsubst_non_call_postfix_expression (tree t, tree args,
15885 tsubst_flags_t complain,
15886 tree in_decl)
15887 {
15888 if (TREE_CODE (t) == SCOPE_REF)
15889 t = tsubst_qualified_id (t, args, complain, in_decl,
15890 /*done=*/false, /*address_p=*/false);
15891 else
15892 t = tsubst_copy_and_build (t, args, complain, in_decl,
15893 /*function_p=*/false,
15894 /*integral_constant_expression_p=*/false);
15895
15896 return t;
15897 }
15898
15899 /* Like tsubst but deals with expressions and performs semantic
15900 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15901
15902 tree
15903 tsubst_copy_and_build (tree t,
15904 tree args,
15905 tsubst_flags_t complain,
15906 tree in_decl,
15907 bool function_p,
15908 bool integral_constant_expression_p)
15909 {
15910 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15911 #define RECUR(NODE) \
15912 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15913 /*function_p=*/false, \
15914 integral_constant_expression_p)
15915
15916 tree retval, op1;
15917 location_t loc;
15918
15919 if (t == NULL_TREE || t == error_mark_node)
15920 return t;
15921
15922 loc = input_location;
15923 if (EXPR_HAS_LOCATION (t))
15924 input_location = EXPR_LOCATION (t);
15925
15926 /* N3276 decltype magic only applies to calls at the top level or on the
15927 right side of a comma. */
15928 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15929 complain &= ~tf_decltype;
15930
15931 switch (TREE_CODE (t))
15932 {
15933 case USING_DECL:
15934 t = DECL_NAME (t);
15935 /* Fall through. */
15936 case IDENTIFIER_NODE:
15937 {
15938 tree decl;
15939 cp_id_kind idk;
15940 bool non_integral_constant_expression_p;
15941 const char *error_msg;
15942
15943 if (IDENTIFIER_TYPENAME_P (t))
15944 {
15945 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15946 t = mangle_conv_op_name_for_type (new_type);
15947 }
15948
15949 /* Look up the name. */
15950 decl = lookup_name (t);
15951
15952 /* By convention, expressions use ERROR_MARK_NODE to indicate
15953 failure, not NULL_TREE. */
15954 if (decl == NULL_TREE)
15955 decl = error_mark_node;
15956
15957 decl = finish_id_expression (t, decl, NULL_TREE,
15958 &idk,
15959 integral_constant_expression_p,
15960 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15961 &non_integral_constant_expression_p,
15962 /*template_p=*/false,
15963 /*done=*/true,
15964 /*address_p=*/false,
15965 /*template_arg_p=*/false,
15966 &error_msg,
15967 input_location);
15968 if (error_msg)
15969 error (error_msg);
15970 if (!function_p && identifier_p (decl))
15971 {
15972 if (complain & tf_error)
15973 unqualified_name_lookup_error (decl);
15974 decl = error_mark_node;
15975 }
15976 RETURN (decl);
15977 }
15978
15979 case TEMPLATE_ID_EXPR:
15980 {
15981 tree object;
15982 tree templ = RECUR (TREE_OPERAND (t, 0));
15983 tree targs = TREE_OPERAND (t, 1);
15984
15985 if (targs)
15986 targs = tsubst_template_args (targs, args, complain, in_decl);
15987 if (targs == error_mark_node)
15988 return error_mark_node;
15989
15990 if (variable_template_p (templ))
15991 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
15992
15993 if (TREE_CODE (templ) == COMPONENT_REF)
15994 {
15995 object = TREE_OPERAND (templ, 0);
15996 templ = TREE_OPERAND (templ, 1);
15997 }
15998 else
15999 object = NULL_TREE;
16000 templ = lookup_template_function (templ, targs);
16001
16002 if (object)
16003 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
16004 object, templ, NULL_TREE));
16005 else
16006 RETURN (baselink_for_fns (templ));
16007 }
16008
16009 case INDIRECT_REF:
16010 {
16011 tree r = RECUR (TREE_OPERAND (t, 0));
16012
16013 if (REFERENCE_REF_P (t))
16014 {
16015 /* A type conversion to reference type will be enclosed in
16016 such an indirect ref, but the substitution of the cast
16017 will have also added such an indirect ref. */
16018 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
16019 r = convert_from_reference (r);
16020 }
16021 else
16022 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
16023 complain|decltype_flag);
16024
16025 if (TREE_CODE (r) == INDIRECT_REF)
16026 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16027
16028 RETURN (r);
16029 }
16030
16031 case NOP_EXPR:
16032 {
16033 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16034 tree op0 = RECUR (TREE_OPERAND (t, 0));
16035 RETURN (build_nop (type, op0));
16036 }
16037
16038 case IMPLICIT_CONV_EXPR:
16039 {
16040 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16041 tree expr = RECUR (TREE_OPERAND (t, 0));
16042 int flags = LOOKUP_IMPLICIT;
16043 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
16044 flags = LOOKUP_NORMAL;
16045 RETURN (perform_implicit_conversion_flags (type, expr, complain,
16046 flags));
16047 }
16048
16049 case CONVERT_EXPR:
16050 {
16051 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16052 tree op0 = RECUR (TREE_OPERAND (t, 0));
16053 RETURN (build1 (CONVERT_EXPR, type, op0));
16054 }
16055
16056 case CAST_EXPR:
16057 case REINTERPRET_CAST_EXPR:
16058 case CONST_CAST_EXPR:
16059 case DYNAMIC_CAST_EXPR:
16060 case STATIC_CAST_EXPR:
16061 {
16062 tree type;
16063 tree op, r = NULL_TREE;
16064
16065 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16066 if (integral_constant_expression_p
16067 && !cast_valid_in_integral_constant_expression_p (type))
16068 {
16069 if (complain & tf_error)
16070 error ("a cast to a type other than an integral or "
16071 "enumeration type cannot appear in a constant-expression");
16072 RETURN (error_mark_node);
16073 }
16074
16075 op = RECUR (TREE_OPERAND (t, 0));
16076
16077 warning_sentinel s(warn_useless_cast);
16078 switch (TREE_CODE (t))
16079 {
16080 case CAST_EXPR:
16081 r = build_functional_cast (type, op, complain);
16082 break;
16083 case REINTERPRET_CAST_EXPR:
16084 r = build_reinterpret_cast (type, op, complain);
16085 break;
16086 case CONST_CAST_EXPR:
16087 r = build_const_cast (type, op, complain);
16088 break;
16089 case DYNAMIC_CAST_EXPR:
16090 r = build_dynamic_cast (type, op, complain);
16091 break;
16092 case STATIC_CAST_EXPR:
16093 r = build_static_cast (type, op, complain);
16094 break;
16095 default:
16096 gcc_unreachable ();
16097 }
16098
16099 RETURN (r);
16100 }
16101
16102 case POSTDECREMENT_EXPR:
16103 case POSTINCREMENT_EXPR:
16104 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16105 args, complain, in_decl);
16106 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16107 complain|decltype_flag));
16108
16109 case PREDECREMENT_EXPR:
16110 case PREINCREMENT_EXPR:
16111 case NEGATE_EXPR:
16112 case BIT_NOT_EXPR:
16113 case ABS_EXPR:
16114 case TRUTH_NOT_EXPR:
16115 case UNARY_PLUS_EXPR: /* Unary + */
16116 case REALPART_EXPR:
16117 case IMAGPART_EXPR:
16118 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16119 RECUR (TREE_OPERAND (t, 0)),
16120 complain|decltype_flag));
16121
16122 case FIX_TRUNC_EXPR:
16123 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16124 0, complain));
16125
16126 case ADDR_EXPR:
16127 op1 = TREE_OPERAND (t, 0);
16128 if (TREE_CODE (op1) == LABEL_DECL)
16129 RETURN (finish_label_address_expr (DECL_NAME (op1),
16130 EXPR_LOCATION (op1)));
16131 if (TREE_CODE (op1) == SCOPE_REF)
16132 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16133 /*done=*/true, /*address_p=*/true);
16134 else
16135 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16136 in_decl);
16137 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16138 complain|decltype_flag));
16139
16140 case PLUS_EXPR:
16141 case MINUS_EXPR:
16142 case MULT_EXPR:
16143 case TRUNC_DIV_EXPR:
16144 case CEIL_DIV_EXPR:
16145 case FLOOR_DIV_EXPR:
16146 case ROUND_DIV_EXPR:
16147 case EXACT_DIV_EXPR:
16148 case BIT_AND_EXPR:
16149 case BIT_IOR_EXPR:
16150 case BIT_XOR_EXPR:
16151 case TRUNC_MOD_EXPR:
16152 case FLOOR_MOD_EXPR:
16153 case TRUTH_ANDIF_EXPR:
16154 case TRUTH_ORIF_EXPR:
16155 case TRUTH_AND_EXPR:
16156 case TRUTH_OR_EXPR:
16157 case RSHIFT_EXPR:
16158 case LSHIFT_EXPR:
16159 case RROTATE_EXPR:
16160 case LROTATE_EXPR:
16161 case EQ_EXPR:
16162 case NE_EXPR:
16163 case MAX_EXPR:
16164 case MIN_EXPR:
16165 case LE_EXPR:
16166 case GE_EXPR:
16167 case LT_EXPR:
16168 case GT_EXPR:
16169 case MEMBER_REF:
16170 case DOTSTAR_EXPR:
16171 {
16172 warning_sentinel s1(warn_type_limits);
16173 warning_sentinel s2(warn_div_by_zero);
16174 warning_sentinel s3(warn_logical_op);
16175 warning_sentinel s4(warn_tautological_compare);
16176 tree op0 = RECUR (TREE_OPERAND (t, 0));
16177 tree op1 = RECUR (TREE_OPERAND (t, 1));
16178 tree r = build_x_binary_op
16179 (input_location, TREE_CODE (t),
16180 op0,
16181 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16182 ? ERROR_MARK
16183 : TREE_CODE (TREE_OPERAND (t, 0))),
16184 op1,
16185 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16186 ? ERROR_MARK
16187 : TREE_CODE (TREE_OPERAND (t, 1))),
16188 /*overload=*/NULL,
16189 complain|decltype_flag);
16190 if (EXPR_P (r) && TREE_NO_WARNING (t))
16191 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16192
16193 RETURN (r);
16194 }
16195
16196 case POINTER_PLUS_EXPR:
16197 {
16198 tree op0 = RECUR (TREE_OPERAND (t, 0));
16199 tree op1 = RECUR (TREE_OPERAND (t, 1));
16200 return fold_build_pointer_plus (op0, op1);
16201 }
16202
16203 case SCOPE_REF:
16204 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16205 /*address_p=*/false));
16206 case ARRAY_REF:
16207 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16208 args, complain, in_decl);
16209 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16210 RECUR (TREE_OPERAND (t, 1)),
16211 complain|decltype_flag));
16212
16213 case ARRAY_NOTATION_REF:
16214 {
16215 tree start_index, length, stride;
16216 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16217 args, complain, in_decl);
16218 start_index = RECUR (ARRAY_NOTATION_START (t));
16219 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16220 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16221 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16222 length, stride, TREE_TYPE (op1)));
16223 }
16224 case SIZEOF_EXPR:
16225 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
16226 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
16227 RETURN (tsubst_copy (t, args, complain, in_decl));
16228 /* Fall through */
16229
16230 case ALIGNOF_EXPR:
16231 {
16232 tree r;
16233
16234 op1 = TREE_OPERAND (t, 0);
16235 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16236 op1 = TREE_TYPE (op1);
16237 if (!args)
16238 {
16239 /* When there are no ARGS, we are trying to evaluate a
16240 non-dependent expression from the parser. Trying to do
16241 the substitutions may not work. */
16242 if (!TYPE_P (op1))
16243 op1 = TREE_TYPE (op1);
16244 }
16245 else
16246 {
16247 ++cp_unevaluated_operand;
16248 ++c_inhibit_evaluation_warnings;
16249 if (TYPE_P (op1))
16250 op1 = tsubst (op1, args, complain, in_decl);
16251 else
16252 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16253 /*function_p=*/false,
16254 /*integral_constant_expression_p=*/
16255 false);
16256 --cp_unevaluated_operand;
16257 --c_inhibit_evaluation_warnings;
16258 }
16259 if (TYPE_P (op1))
16260 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16261 complain & tf_error);
16262 else
16263 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16264 complain & tf_error);
16265 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16266 {
16267 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16268 {
16269 if (!processing_template_decl && TYPE_P (op1))
16270 {
16271 r = build_min (SIZEOF_EXPR, size_type_node,
16272 build1 (NOP_EXPR, op1, error_mark_node));
16273 SIZEOF_EXPR_TYPE_P (r) = 1;
16274 }
16275 else
16276 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16277 TREE_SIDE_EFFECTS (r) = 0;
16278 TREE_READONLY (r) = 1;
16279 }
16280 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16281 }
16282 RETURN (r);
16283 }
16284
16285 case AT_ENCODE_EXPR:
16286 {
16287 op1 = TREE_OPERAND (t, 0);
16288 ++cp_unevaluated_operand;
16289 ++c_inhibit_evaluation_warnings;
16290 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16291 /*function_p=*/false,
16292 /*integral_constant_expression_p=*/false);
16293 --cp_unevaluated_operand;
16294 --c_inhibit_evaluation_warnings;
16295 RETURN (objc_build_encode_expr (op1));
16296 }
16297
16298 case NOEXCEPT_EXPR:
16299 op1 = TREE_OPERAND (t, 0);
16300 ++cp_unevaluated_operand;
16301 ++c_inhibit_evaluation_warnings;
16302 ++cp_noexcept_operand;
16303 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16304 /*function_p=*/false,
16305 /*integral_constant_expression_p=*/false);
16306 --cp_unevaluated_operand;
16307 --c_inhibit_evaluation_warnings;
16308 --cp_noexcept_operand;
16309 RETURN (finish_noexcept_expr (op1, complain));
16310
16311 case MODOP_EXPR:
16312 {
16313 warning_sentinel s(warn_div_by_zero);
16314 tree lhs = RECUR (TREE_OPERAND (t, 0));
16315 tree rhs = RECUR (TREE_OPERAND (t, 2));
16316 tree r = build_x_modify_expr
16317 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16318 complain|decltype_flag);
16319 /* TREE_NO_WARNING must be set if either the expression was
16320 parenthesized or it uses an operator such as >>= rather
16321 than plain assignment. In the former case, it was already
16322 set and must be copied. In the latter case,
16323 build_x_modify_expr sets it and it must not be reset
16324 here. */
16325 if (TREE_NO_WARNING (t))
16326 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16327
16328 RETURN (r);
16329 }
16330
16331 case ARROW_EXPR:
16332 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16333 args, complain, in_decl);
16334 /* Remember that there was a reference to this entity. */
16335 if (DECL_P (op1)
16336 && !mark_used (op1, complain) && !(complain & tf_error))
16337 RETURN (error_mark_node);
16338 RETURN (build_x_arrow (input_location, op1, complain));
16339
16340 case NEW_EXPR:
16341 {
16342 tree placement = RECUR (TREE_OPERAND (t, 0));
16343 tree init = RECUR (TREE_OPERAND (t, 3));
16344 vec<tree, va_gc> *placement_vec;
16345 vec<tree, va_gc> *init_vec;
16346 tree ret;
16347
16348 if (placement == NULL_TREE)
16349 placement_vec = NULL;
16350 else
16351 {
16352 placement_vec = make_tree_vector ();
16353 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16354 vec_safe_push (placement_vec, TREE_VALUE (placement));
16355 }
16356
16357 /* If there was an initializer in the original tree, but it
16358 instantiated to an empty list, then we should pass a
16359 non-NULL empty vector to tell build_new that it was an
16360 empty initializer() rather than no initializer. This can
16361 only happen when the initializer is a pack expansion whose
16362 parameter packs are of length zero. */
16363 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16364 init_vec = NULL;
16365 else
16366 {
16367 init_vec = make_tree_vector ();
16368 if (init == void_node)
16369 gcc_assert (init_vec != NULL);
16370 else
16371 {
16372 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16373 vec_safe_push (init_vec, TREE_VALUE (init));
16374 }
16375 }
16376
16377 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16378 tree op2 = RECUR (TREE_OPERAND (t, 2));
16379 ret = build_new (&placement_vec, op1, op2, &init_vec,
16380 NEW_EXPR_USE_GLOBAL (t),
16381 complain);
16382
16383 if (placement_vec != NULL)
16384 release_tree_vector (placement_vec);
16385 if (init_vec != NULL)
16386 release_tree_vector (init_vec);
16387
16388 RETURN (ret);
16389 }
16390
16391 case DELETE_EXPR:
16392 {
16393 tree op0 = RECUR (TREE_OPERAND (t, 0));
16394 tree op1 = RECUR (TREE_OPERAND (t, 1));
16395 RETURN (delete_sanity (op0, op1,
16396 DELETE_EXPR_USE_VEC (t),
16397 DELETE_EXPR_USE_GLOBAL (t),
16398 complain));
16399 }
16400
16401 case COMPOUND_EXPR:
16402 {
16403 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16404 complain & ~tf_decltype, in_decl,
16405 /*function_p=*/false,
16406 integral_constant_expression_p);
16407 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16408 op0,
16409 RECUR (TREE_OPERAND (t, 1)),
16410 complain|decltype_flag));
16411 }
16412
16413 case CALL_EXPR:
16414 {
16415 tree function;
16416 vec<tree, va_gc> *call_args;
16417 unsigned int nargs, i;
16418 bool qualified_p;
16419 bool koenig_p;
16420 tree ret;
16421
16422 function = CALL_EXPR_FN (t);
16423 /* When we parsed the expression, we determined whether or
16424 not Koenig lookup should be performed. */
16425 koenig_p = KOENIG_LOOKUP_P (t);
16426 if (TREE_CODE (function) == SCOPE_REF)
16427 {
16428 qualified_p = true;
16429 function = tsubst_qualified_id (function, args, complain, in_decl,
16430 /*done=*/false,
16431 /*address_p=*/false);
16432 }
16433 else if (koenig_p && identifier_p (function))
16434 {
16435 /* Do nothing; calling tsubst_copy_and_build on an identifier
16436 would incorrectly perform unqualified lookup again.
16437
16438 Note that we can also have an IDENTIFIER_NODE if the earlier
16439 unqualified lookup found a member function; in that case
16440 koenig_p will be false and we do want to do the lookup
16441 again to find the instantiated member function.
16442
16443 FIXME but doing that causes c++/15272, so we need to stop
16444 using IDENTIFIER_NODE in that situation. */
16445 qualified_p = false;
16446 }
16447 else
16448 {
16449 if (TREE_CODE (function) == COMPONENT_REF)
16450 {
16451 tree op = TREE_OPERAND (function, 1);
16452
16453 qualified_p = (TREE_CODE (op) == SCOPE_REF
16454 || (BASELINK_P (op)
16455 && BASELINK_QUALIFIED_P (op)));
16456 }
16457 else
16458 qualified_p = false;
16459
16460 if (TREE_CODE (function) == ADDR_EXPR
16461 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16462 /* Avoid error about taking the address of a constructor. */
16463 function = TREE_OPERAND (function, 0);
16464
16465 function = tsubst_copy_and_build (function, args, complain,
16466 in_decl,
16467 !qualified_p,
16468 integral_constant_expression_p);
16469
16470 if (BASELINK_P (function))
16471 qualified_p = true;
16472 }
16473
16474 nargs = call_expr_nargs (t);
16475 call_args = make_tree_vector ();
16476 for (i = 0; i < nargs; ++i)
16477 {
16478 tree arg = CALL_EXPR_ARG (t, i);
16479
16480 if (!PACK_EXPANSION_P (arg))
16481 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16482 else
16483 {
16484 /* Expand the pack expansion and push each entry onto
16485 CALL_ARGS. */
16486 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16487 if (TREE_CODE (arg) == TREE_VEC)
16488 {
16489 unsigned int len, j;
16490
16491 len = TREE_VEC_LENGTH (arg);
16492 for (j = 0; j < len; ++j)
16493 {
16494 tree value = TREE_VEC_ELT (arg, j);
16495 if (value != NULL_TREE)
16496 value = convert_from_reference (value);
16497 vec_safe_push (call_args, value);
16498 }
16499 }
16500 else
16501 {
16502 /* A partial substitution. Add one entry. */
16503 vec_safe_push (call_args, arg);
16504 }
16505 }
16506 }
16507
16508 /* We do not perform argument-dependent lookup if normal
16509 lookup finds a non-function, in accordance with the
16510 expected resolution of DR 218. */
16511 if (koenig_p
16512 && ((is_overloaded_fn (function)
16513 /* If lookup found a member function, the Koenig lookup is
16514 not appropriate, even if an unqualified-name was used
16515 to denote the function. */
16516 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16517 || identifier_p (function))
16518 /* Only do this when substitution turns a dependent call
16519 into a non-dependent call. */
16520 && type_dependent_expression_p_push (t)
16521 && !any_type_dependent_arguments_p (call_args))
16522 function = perform_koenig_lookup (function, call_args, tf_none);
16523
16524 if (identifier_p (function)
16525 && !any_type_dependent_arguments_p (call_args))
16526 {
16527 if (koenig_p && (complain & tf_warning_or_error))
16528 {
16529 /* For backwards compatibility and good diagnostics, try
16530 the unqualified lookup again if we aren't in SFINAE
16531 context. */
16532 tree unq = (tsubst_copy_and_build
16533 (function, args, complain, in_decl, true,
16534 integral_constant_expression_p));
16535 if (unq == error_mark_node)
16536 RETURN (error_mark_node);
16537
16538 if (unq != function)
16539 {
16540 tree fn = unq;
16541 if (INDIRECT_REF_P (fn))
16542 fn = TREE_OPERAND (fn, 0);
16543 if (TREE_CODE (fn) == COMPONENT_REF)
16544 fn = TREE_OPERAND (fn, 1);
16545 if (is_overloaded_fn (fn))
16546 fn = get_first_fn (fn);
16547 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16548 "%qD was not declared in this scope, "
16549 "and no declarations were found by "
16550 "argument-dependent lookup at the point "
16551 "of instantiation", function))
16552 {
16553 if (!DECL_P (fn))
16554 /* Can't say anything more. */;
16555 else if (DECL_CLASS_SCOPE_P (fn))
16556 {
16557 location_t loc = EXPR_LOC_OR_LOC (t,
16558 input_location);
16559 inform (loc,
16560 "declarations in dependent base %qT are "
16561 "not found by unqualified lookup",
16562 DECL_CLASS_CONTEXT (fn));
16563 if (current_class_ptr)
16564 inform (loc,
16565 "use %<this->%D%> instead", function);
16566 else
16567 inform (loc,
16568 "use %<%T::%D%> instead",
16569 current_class_name, function);
16570 }
16571 else
16572 inform (DECL_SOURCE_LOCATION (fn),
16573 "%qD declared here, later in the "
16574 "translation unit", fn);
16575 }
16576 function = unq;
16577 }
16578 }
16579 if (identifier_p (function))
16580 {
16581 if (complain & tf_error)
16582 unqualified_name_lookup_error (function);
16583 release_tree_vector (call_args);
16584 RETURN (error_mark_node);
16585 }
16586 }
16587
16588 /* Remember that there was a reference to this entity. */
16589 if (DECL_P (function)
16590 && !mark_used (function, complain) && !(complain & tf_error))
16591 RETURN (error_mark_node);
16592
16593 /* Put back tf_decltype for the actual call. */
16594 complain |= decltype_flag;
16595
16596 if (TREE_CODE (function) == OFFSET_REF)
16597 ret = build_offset_ref_call_from_tree (function, &call_args,
16598 complain);
16599 else if (TREE_CODE (function) == COMPONENT_REF)
16600 {
16601 tree instance = TREE_OPERAND (function, 0);
16602 tree fn = TREE_OPERAND (function, 1);
16603
16604 if (processing_template_decl
16605 && (type_dependent_expression_p (instance)
16606 || (!BASELINK_P (fn)
16607 && TREE_CODE (fn) != FIELD_DECL)
16608 || type_dependent_expression_p (fn)
16609 || any_type_dependent_arguments_p (call_args)))
16610 ret = build_nt_call_vec (function, call_args);
16611 else if (!BASELINK_P (fn))
16612 ret = finish_call_expr (function, &call_args,
16613 /*disallow_virtual=*/false,
16614 /*koenig_p=*/false,
16615 complain);
16616 else
16617 ret = (build_new_method_call
16618 (instance, fn,
16619 &call_args, NULL_TREE,
16620 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16621 /*fn_p=*/NULL,
16622 complain));
16623 }
16624 else
16625 ret = finish_call_expr (function, &call_args,
16626 /*disallow_virtual=*/qualified_p,
16627 koenig_p,
16628 complain);
16629
16630 release_tree_vector (call_args);
16631
16632 RETURN (ret);
16633 }
16634
16635 case COND_EXPR:
16636 {
16637 tree cond = RECUR (TREE_OPERAND (t, 0));
16638 tree folded_cond = fold_non_dependent_expr (cond);
16639 tree exp1, exp2;
16640
16641 if (TREE_CODE (folded_cond) == INTEGER_CST)
16642 {
16643 if (integer_zerop (folded_cond))
16644 {
16645 ++c_inhibit_evaluation_warnings;
16646 exp1 = RECUR (TREE_OPERAND (t, 1));
16647 --c_inhibit_evaluation_warnings;
16648 exp2 = RECUR (TREE_OPERAND (t, 2));
16649 }
16650 else
16651 {
16652 exp1 = RECUR (TREE_OPERAND (t, 1));
16653 ++c_inhibit_evaluation_warnings;
16654 exp2 = RECUR (TREE_OPERAND (t, 2));
16655 --c_inhibit_evaluation_warnings;
16656 }
16657 cond = folded_cond;
16658 }
16659 else
16660 {
16661 exp1 = RECUR (TREE_OPERAND (t, 1));
16662 exp2 = RECUR (TREE_OPERAND (t, 2));
16663 }
16664
16665 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16666 cond, exp1, exp2, complain));
16667 }
16668
16669 case PSEUDO_DTOR_EXPR:
16670 {
16671 tree op0 = RECUR (TREE_OPERAND (t, 0));
16672 tree op1 = RECUR (TREE_OPERAND (t, 1));
16673 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16674 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16675 input_location));
16676 }
16677
16678 case TREE_LIST:
16679 {
16680 tree purpose, value, chain;
16681
16682 if (t == void_list_node)
16683 RETURN (t);
16684
16685 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16686 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16687 {
16688 /* We have pack expansions, so expand those and
16689 create a new list out of it. */
16690 tree purposevec = NULL_TREE;
16691 tree valuevec = NULL_TREE;
16692 tree chain;
16693 int i, len = -1;
16694
16695 /* Expand the argument expressions. */
16696 if (TREE_PURPOSE (t))
16697 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16698 complain, in_decl);
16699 if (TREE_VALUE (t))
16700 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16701 complain, in_decl);
16702
16703 /* Build the rest of the list. */
16704 chain = TREE_CHAIN (t);
16705 if (chain && chain != void_type_node)
16706 chain = RECUR (chain);
16707
16708 /* Determine the number of arguments. */
16709 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16710 {
16711 len = TREE_VEC_LENGTH (purposevec);
16712 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16713 }
16714 else if (TREE_CODE (valuevec) == TREE_VEC)
16715 len = TREE_VEC_LENGTH (valuevec);
16716 else
16717 {
16718 /* Since we only performed a partial substitution into
16719 the argument pack, we only RETURN (a single list
16720 node. */
16721 if (purposevec == TREE_PURPOSE (t)
16722 && valuevec == TREE_VALUE (t)
16723 && chain == TREE_CHAIN (t))
16724 RETURN (t);
16725
16726 RETURN (tree_cons (purposevec, valuevec, chain));
16727 }
16728
16729 /* Convert the argument vectors into a TREE_LIST */
16730 i = len;
16731 while (i > 0)
16732 {
16733 /* Grab the Ith values. */
16734 i--;
16735 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16736 : NULL_TREE;
16737 value
16738 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16739 : NULL_TREE;
16740
16741 /* Build the list (backwards). */
16742 chain = tree_cons (purpose, value, chain);
16743 }
16744
16745 RETURN (chain);
16746 }
16747
16748 purpose = TREE_PURPOSE (t);
16749 if (purpose)
16750 purpose = RECUR (purpose);
16751 value = TREE_VALUE (t);
16752 if (value)
16753 value = RECUR (value);
16754 chain = TREE_CHAIN (t);
16755 if (chain && chain != void_type_node)
16756 chain = RECUR (chain);
16757 if (purpose == TREE_PURPOSE (t)
16758 && value == TREE_VALUE (t)
16759 && chain == TREE_CHAIN (t))
16760 RETURN (t);
16761 RETURN (tree_cons (purpose, value, chain));
16762 }
16763
16764 case COMPONENT_REF:
16765 {
16766 tree object;
16767 tree object_type;
16768 tree member;
16769 tree r;
16770
16771 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16772 args, complain, in_decl);
16773 /* Remember that there was a reference to this entity. */
16774 if (DECL_P (object)
16775 && !mark_used (object, complain) && !(complain & tf_error))
16776 RETURN (error_mark_node);
16777 object_type = TREE_TYPE (object);
16778
16779 member = TREE_OPERAND (t, 1);
16780 if (BASELINK_P (member))
16781 member = tsubst_baselink (member,
16782 non_reference (TREE_TYPE (object)),
16783 args, complain, in_decl);
16784 else
16785 member = tsubst_copy (member, args, complain, in_decl);
16786 if (member == error_mark_node)
16787 RETURN (error_mark_node);
16788
16789 if (type_dependent_expression_p (object))
16790 /* We can't do much here. */;
16791 else if (!CLASS_TYPE_P (object_type))
16792 {
16793 if (scalarish_type_p (object_type))
16794 {
16795 tree s = NULL_TREE;
16796 tree dtor = member;
16797
16798 if (TREE_CODE (dtor) == SCOPE_REF)
16799 {
16800 s = TREE_OPERAND (dtor, 0);
16801 dtor = TREE_OPERAND (dtor, 1);
16802 }
16803 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16804 {
16805 dtor = TREE_OPERAND (dtor, 0);
16806 if (TYPE_P (dtor))
16807 RETURN (finish_pseudo_destructor_expr
16808 (object, s, dtor, input_location));
16809 }
16810 }
16811 }
16812 else if (TREE_CODE (member) == SCOPE_REF
16813 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16814 {
16815 /* Lookup the template functions now that we know what the
16816 scope is. */
16817 tree scope = TREE_OPERAND (member, 0);
16818 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16819 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16820 member = lookup_qualified_name (scope, tmpl,
16821 /*is_type_p=*/false,
16822 /*complain=*/false);
16823 if (BASELINK_P (member))
16824 {
16825 BASELINK_FUNCTIONS (member)
16826 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16827 args);
16828 member = (adjust_result_of_qualified_name_lookup
16829 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16830 object_type));
16831 }
16832 else
16833 {
16834 qualified_name_lookup_error (scope, tmpl, member,
16835 input_location);
16836 RETURN (error_mark_node);
16837 }
16838 }
16839 else if (TREE_CODE (member) == SCOPE_REF
16840 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16841 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16842 {
16843 if (complain & tf_error)
16844 {
16845 if (TYPE_P (TREE_OPERAND (member, 0)))
16846 error ("%qT is not a class or namespace",
16847 TREE_OPERAND (member, 0));
16848 else
16849 error ("%qD is not a class or namespace",
16850 TREE_OPERAND (member, 0));
16851 }
16852 RETURN (error_mark_node);
16853 }
16854 else if (TREE_CODE (member) == FIELD_DECL)
16855 {
16856 r = finish_non_static_data_member (member, object, NULL_TREE);
16857 if (TREE_CODE (r) == COMPONENT_REF)
16858 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16859 RETURN (r);
16860 }
16861
16862 r = finish_class_member_access_expr (object, member,
16863 /*template_p=*/false,
16864 complain);
16865 if (TREE_CODE (r) == COMPONENT_REF)
16866 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16867 RETURN (r);
16868 }
16869
16870 case THROW_EXPR:
16871 RETURN (build_throw
16872 (RECUR (TREE_OPERAND (t, 0))));
16873
16874 case CONSTRUCTOR:
16875 {
16876 vec<constructor_elt, va_gc> *n;
16877 constructor_elt *ce;
16878 unsigned HOST_WIDE_INT idx;
16879 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16880 bool process_index_p;
16881 int newlen;
16882 bool need_copy_p = false;
16883 tree r;
16884
16885 if (type == error_mark_node)
16886 RETURN (error_mark_node);
16887
16888 /* digest_init will do the wrong thing if we let it. */
16889 if (type && TYPE_PTRMEMFUNC_P (type))
16890 RETURN (t);
16891
16892 /* We do not want to process the index of aggregate
16893 initializers as they are identifier nodes which will be
16894 looked up by digest_init. */
16895 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16896
16897 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16898 newlen = vec_safe_length (n);
16899 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16900 {
16901 if (ce->index && process_index_p
16902 /* An identifier index is looked up in the type
16903 being initialized, not the current scope. */
16904 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16905 ce->index = RECUR (ce->index);
16906
16907 if (PACK_EXPANSION_P (ce->value))
16908 {
16909 /* Substitute into the pack expansion. */
16910 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16911 in_decl);
16912
16913 if (ce->value == error_mark_node
16914 || PACK_EXPANSION_P (ce->value))
16915 ;
16916 else if (TREE_VEC_LENGTH (ce->value) == 1)
16917 /* Just move the argument into place. */
16918 ce->value = TREE_VEC_ELT (ce->value, 0);
16919 else
16920 {
16921 /* Update the length of the final CONSTRUCTOR
16922 arguments vector, and note that we will need to
16923 copy.*/
16924 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16925 need_copy_p = true;
16926 }
16927 }
16928 else
16929 ce->value = RECUR (ce->value);
16930 }
16931
16932 if (need_copy_p)
16933 {
16934 vec<constructor_elt, va_gc> *old_n = n;
16935
16936 vec_alloc (n, newlen);
16937 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16938 {
16939 if (TREE_CODE (ce->value) == TREE_VEC)
16940 {
16941 int i, len = TREE_VEC_LENGTH (ce->value);
16942 for (i = 0; i < len; ++i)
16943 CONSTRUCTOR_APPEND_ELT (n, 0,
16944 TREE_VEC_ELT (ce->value, i));
16945 }
16946 else
16947 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16948 }
16949 }
16950
16951 r = build_constructor (init_list_type_node, n);
16952 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16953
16954 if (TREE_HAS_CONSTRUCTOR (t))
16955 RETURN (finish_compound_literal (type, r, complain));
16956
16957 TREE_TYPE (r) = type;
16958 RETURN (r);
16959 }
16960
16961 case TYPEID_EXPR:
16962 {
16963 tree operand_0 = TREE_OPERAND (t, 0);
16964 if (TYPE_P (operand_0))
16965 {
16966 operand_0 = tsubst (operand_0, args, complain, in_decl);
16967 RETURN (get_typeid (operand_0, complain));
16968 }
16969 else
16970 {
16971 operand_0 = RECUR (operand_0);
16972 RETURN (build_typeid (operand_0, complain));
16973 }
16974 }
16975
16976 case VAR_DECL:
16977 if (!args)
16978 RETURN (t);
16979 else if (DECL_PACK_P (t))
16980 {
16981 /* We don't build decls for an instantiation of a
16982 variadic capture proxy, we instantiate the elements
16983 when needed. */
16984 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16985 return RECUR (DECL_VALUE_EXPR (t));
16986 }
16987 /* Fall through */
16988
16989 case PARM_DECL:
16990 {
16991 tree r = tsubst_copy (t, args, complain, in_decl);
16992 /* ??? We're doing a subset of finish_id_expression here. */
16993 if (VAR_P (r)
16994 && !processing_template_decl
16995 && !cp_unevaluated_operand
16996 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16997 && CP_DECL_THREAD_LOCAL_P (r))
16998 {
16999 if (tree wrap = get_tls_wrapper_fn (r))
17000 /* Replace an evaluated use of the thread_local variable with
17001 a call to its wrapper. */
17002 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
17003 }
17004 else if (outer_automatic_var_p (r))
17005 {
17006 r = process_outer_var_ref (r, complain);
17007 if (is_capture_proxy (r))
17008 register_local_specialization (r, t);
17009 }
17010
17011 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
17012 /* If the original type was a reference, we'll be wrapped in
17013 the appropriate INDIRECT_REF. */
17014 r = convert_from_reference (r);
17015 RETURN (r);
17016 }
17017
17018 case VA_ARG_EXPR:
17019 {
17020 tree op0 = RECUR (TREE_OPERAND (t, 0));
17021 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17022 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
17023 }
17024
17025 case OFFSETOF_EXPR:
17026 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
17027 EXPR_LOCATION (t)));
17028
17029 case TRAIT_EXPR:
17030 {
17031 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
17032 complain, in_decl);
17033
17034 tree type2 = TRAIT_EXPR_TYPE2 (t);
17035 if (type2 && TREE_CODE (type2) == TREE_LIST)
17036 type2 = RECUR (type2);
17037 else if (type2)
17038 type2 = tsubst (type2, args, complain, in_decl);
17039
17040 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
17041 }
17042
17043 case STMT_EXPR:
17044 {
17045 tree old_stmt_expr = cur_stmt_expr;
17046 tree stmt_expr = begin_stmt_expr ();
17047
17048 cur_stmt_expr = stmt_expr;
17049 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
17050 integral_constant_expression_p);
17051 stmt_expr = finish_stmt_expr (stmt_expr, false);
17052 cur_stmt_expr = old_stmt_expr;
17053
17054 /* If the resulting list of expression statement is empty,
17055 fold it further into void_node. */
17056 if (empty_expr_stmt_p (stmt_expr))
17057 stmt_expr = void_node;
17058
17059 RETURN (stmt_expr);
17060 }
17061
17062 case LAMBDA_EXPR:
17063 {
17064 tree r = build_lambda_expr ();
17065
17066 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
17067 LAMBDA_EXPR_CLOSURE (r) = type;
17068 CLASSTYPE_LAMBDA_EXPR (type) = r;
17069
17070 LAMBDA_EXPR_LOCATION (r)
17071 = LAMBDA_EXPR_LOCATION (t);
17072 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17073 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17074 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17075 LAMBDA_EXPR_DISCRIMINATOR (r)
17076 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17077 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17078 if (!scope)
17079 /* No substitution needed. */;
17080 else if (VAR_OR_FUNCTION_DECL_P (scope))
17081 /* For a function or variable scope, we want to use tsubst so that we
17082 don't complain about referring to an auto before deduction. */
17083 scope = tsubst (scope, args, complain, in_decl);
17084 else if (TREE_CODE (scope) == PARM_DECL)
17085 {
17086 /* Look up the parameter we want directly, as tsubst_copy
17087 doesn't do what we need. */
17088 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17089 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17090 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17091 parm = DECL_CHAIN (parm);
17092 scope = parm;
17093 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17094 if (DECL_CONTEXT (scope) == NULL_TREE)
17095 DECL_CONTEXT (scope) = fn;
17096 }
17097 else if (TREE_CODE (scope) == FIELD_DECL)
17098 /* For a field, use tsubst_copy so that we look up the existing field
17099 rather than build a new one. */
17100 scope = RECUR (scope);
17101 else
17102 gcc_unreachable ();
17103 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17104
17105 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17106 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17107
17108 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17109 determine_visibility (TYPE_NAME (type));
17110 /* Now that we know visibility, instantiate the type so we have a
17111 declaration of the op() for later calls to lambda_function. */
17112 complete_type (type);
17113
17114 if (tree fn = lambda_function (type))
17115 LAMBDA_EXPR_RETURN_TYPE (r) = TREE_TYPE (TREE_TYPE (fn));
17116
17117 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17118
17119 insert_pending_capture_proxies ();
17120
17121 RETURN (build_lambda_object (r));
17122 }
17123
17124 case TARGET_EXPR:
17125 /* We can get here for a constant initializer of non-dependent type.
17126 FIXME stop folding in cp_parser_initializer_clause. */
17127 {
17128 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17129 complain);
17130 RETURN (r);
17131 }
17132
17133 case TRANSACTION_EXPR:
17134 RETURN (tsubst_expr(t, args, complain, in_decl,
17135 integral_constant_expression_p));
17136
17137 case PAREN_EXPR:
17138 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17139
17140 case VEC_PERM_EXPR:
17141 {
17142 tree op0 = RECUR (TREE_OPERAND (t, 0));
17143 tree op1 = RECUR (TREE_OPERAND (t, 1));
17144 tree op2 = RECUR (TREE_OPERAND (t, 2));
17145 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17146 complain));
17147 }
17148
17149 case REQUIRES_EXPR:
17150 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17151
17152 default:
17153 /* Handle Objective-C++ constructs, if appropriate. */
17154 {
17155 tree subst
17156 = objcp_tsubst_copy_and_build (t, args, complain,
17157 in_decl, /*function_p=*/false);
17158 if (subst)
17159 RETURN (subst);
17160 }
17161 RETURN (tsubst_copy (t, args, complain, in_decl));
17162 }
17163
17164 #undef RECUR
17165 #undef RETURN
17166 out:
17167 input_location = loc;
17168 return retval;
17169 }
17170
17171 /* Verify that the instantiated ARGS are valid. For type arguments,
17172 make sure that the type's linkage is ok. For non-type arguments,
17173 make sure they are constants if they are integral or enumerations.
17174 Emit an error under control of COMPLAIN, and return TRUE on error. */
17175
17176 static bool
17177 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17178 {
17179 if (dependent_template_arg_p (t))
17180 return false;
17181 if (ARGUMENT_PACK_P (t))
17182 {
17183 tree vec = ARGUMENT_PACK_ARGS (t);
17184 int len = TREE_VEC_LENGTH (vec);
17185 bool result = false;
17186 int i;
17187
17188 for (i = 0; i < len; ++i)
17189 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17190 result = true;
17191 return result;
17192 }
17193 else if (TYPE_P (t))
17194 {
17195 /* [basic.link]: A name with no linkage (notably, the name
17196 of a class or enumeration declared in a local scope)
17197 shall not be used to declare an entity with linkage.
17198 This implies that names with no linkage cannot be used as
17199 template arguments
17200
17201 DR 757 relaxes this restriction for C++0x. */
17202 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17203 : no_linkage_check (t, /*relaxed_p=*/false));
17204
17205 if (nt)
17206 {
17207 /* DR 488 makes use of a type with no linkage cause
17208 type deduction to fail. */
17209 if (complain & tf_error)
17210 {
17211 if (TYPE_ANONYMOUS_P (nt))
17212 error ("%qT is/uses anonymous type", t);
17213 else
17214 error ("template argument for %qD uses local type %qT",
17215 tmpl, t);
17216 }
17217 return true;
17218 }
17219 /* In order to avoid all sorts of complications, we do not
17220 allow variably-modified types as template arguments. */
17221 else if (variably_modified_type_p (t, NULL_TREE))
17222 {
17223 if (complain & tf_error)
17224 error ("%qT is a variably modified type", t);
17225 return true;
17226 }
17227 }
17228 /* Class template and alias template arguments should be OK. */
17229 else if (DECL_TYPE_TEMPLATE_P (t))
17230 ;
17231 /* A non-type argument of integral or enumerated type must be a
17232 constant. */
17233 else if (TREE_TYPE (t)
17234 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17235 && !REFERENCE_REF_P (t)
17236 && !TREE_CONSTANT (t))
17237 {
17238 if (complain & tf_error)
17239 error ("integral expression %qE is not constant", t);
17240 return true;
17241 }
17242 return false;
17243 }
17244
17245 static bool
17246 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17247 {
17248 int ix, len = DECL_NTPARMS (tmpl);
17249 bool result = false;
17250
17251 for (ix = 0; ix != len; ix++)
17252 {
17253 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17254 result = true;
17255 }
17256 if (result && (complain & tf_error))
17257 error (" trying to instantiate %qD", tmpl);
17258 return result;
17259 }
17260
17261 /* We're out of SFINAE context now, so generate diagnostics for the access
17262 errors we saw earlier when instantiating D from TMPL and ARGS. */
17263
17264 static void
17265 recheck_decl_substitution (tree d, tree tmpl, tree args)
17266 {
17267 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17268 tree type = TREE_TYPE (pattern);
17269 location_t loc = input_location;
17270
17271 push_access_scope (d);
17272 push_deferring_access_checks (dk_no_deferred);
17273 input_location = DECL_SOURCE_LOCATION (pattern);
17274 tsubst (type, args, tf_warning_or_error, d);
17275 input_location = loc;
17276 pop_deferring_access_checks ();
17277 pop_access_scope (d);
17278 }
17279
17280 /* Instantiate the indicated variable, function, or alias template TMPL with
17281 the template arguments in TARG_PTR. */
17282
17283 static tree
17284 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17285 {
17286 tree targ_ptr = orig_args;
17287 tree fndecl;
17288 tree gen_tmpl;
17289 tree spec;
17290 bool access_ok = true;
17291
17292 if (tmpl == error_mark_node)
17293 return error_mark_node;
17294
17295 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17296
17297 /* If this function is a clone, handle it specially. */
17298 if (DECL_CLONED_FUNCTION_P (tmpl))
17299 {
17300 tree spec;
17301 tree clone;
17302
17303 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17304 DECL_CLONED_FUNCTION. */
17305 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17306 targ_ptr, complain);
17307 if (spec == error_mark_node)
17308 return error_mark_node;
17309
17310 /* Look for the clone. */
17311 FOR_EACH_CLONE (clone, spec)
17312 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17313 return clone;
17314 /* We should always have found the clone by now. */
17315 gcc_unreachable ();
17316 return NULL_TREE;
17317 }
17318
17319 if (targ_ptr == error_mark_node)
17320 return error_mark_node;
17321
17322 /* Check to see if we already have this specialization. */
17323 gen_tmpl = most_general_template (tmpl);
17324 if (TMPL_ARGS_DEPTH (targ_ptr)
17325 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl)))
17326 /* targ_ptr only has the innermost template args, so add the outer ones
17327 from tmpl, which could be either a partial instantiation or gen_tmpl (in
17328 the case of a non-dependent call within a template definition). */
17329 targ_ptr = (add_outermost_template_args
17330 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (tmpl)),
17331 targ_ptr));
17332
17333 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17334 but it doesn't seem to be on the hot path. */
17335 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17336
17337 gcc_assert (tmpl == gen_tmpl
17338 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17339 == spec)
17340 || fndecl == NULL_TREE);
17341
17342 if (spec != NULL_TREE)
17343 {
17344 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17345 {
17346 if (complain & tf_error)
17347 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17348 return error_mark_node;
17349 }
17350 return spec;
17351 }
17352
17353 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17354 complain))
17355 return error_mark_node;
17356
17357 /* We are building a FUNCTION_DECL, during which the access of its
17358 parameters and return types have to be checked. However this
17359 FUNCTION_DECL which is the desired context for access checking
17360 is not built yet. We solve this chicken-and-egg problem by
17361 deferring all checks until we have the FUNCTION_DECL. */
17362 push_deferring_access_checks (dk_deferred);
17363
17364 /* Instantiation of the function happens in the context of the function
17365 template, not the context of the overload resolution we're doing. */
17366 push_to_top_level ();
17367 /* If there are dependent arguments, e.g. because we're doing partial
17368 ordering, make sure processing_template_decl stays set. */
17369 if (uses_template_parms (targ_ptr))
17370 ++processing_template_decl;
17371 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17372 {
17373 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17374 complain, gen_tmpl, true);
17375 push_nested_class (ctx);
17376 }
17377
17378 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17379
17380 if (VAR_P (pattern))
17381 {
17382 /* We need to determine if we're using a partial or explicit
17383 specialization now, because the type of the variable could be
17384 different. */
17385 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17386 tree elt = most_specialized_partial_spec (tid, complain);
17387 if (elt == error_mark_node)
17388 pattern = error_mark_node;
17389 else if (elt)
17390 {
17391 tmpl = TREE_VALUE (elt);
17392 pattern = DECL_TEMPLATE_RESULT (tmpl);
17393 targ_ptr = TREE_PURPOSE (elt);
17394 }
17395 }
17396
17397 /* Substitute template parameters to obtain the specialization. */
17398 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17399 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17400 pop_nested_class ();
17401 pop_from_top_level ();
17402
17403 if (fndecl == error_mark_node)
17404 {
17405 pop_deferring_access_checks ();
17406 return error_mark_node;
17407 }
17408
17409 /* The DECL_TI_TEMPLATE should always be the immediate parent
17410 template, not the most general template. */
17411 DECL_TI_TEMPLATE (fndecl) = tmpl;
17412 DECL_TI_ARGS (fndecl) = targ_ptr;
17413
17414 /* Now we know the specialization, compute access previously
17415 deferred. */
17416 push_access_scope (fndecl);
17417 if (!perform_deferred_access_checks (complain))
17418 access_ok = false;
17419 pop_access_scope (fndecl);
17420 pop_deferring_access_checks ();
17421
17422 /* If we've just instantiated the main entry point for a function,
17423 instantiate all the alternate entry points as well. We do this
17424 by cloning the instantiation of the main entry point, not by
17425 instantiating the template clones. */
17426 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17427 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17428
17429 if (!access_ok)
17430 {
17431 if (!(complain & tf_error))
17432 {
17433 /* Remember to reinstantiate when we're out of SFINAE so the user
17434 can see the errors. */
17435 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17436 }
17437 return error_mark_node;
17438 }
17439 return fndecl;
17440 }
17441
17442 /* Wrapper for instantiate_template_1. */
17443
17444 tree
17445 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17446 {
17447 tree ret;
17448 timevar_push (TV_TEMPLATE_INST);
17449 ret = instantiate_template_1 (tmpl, orig_args, complain);
17450 timevar_pop (TV_TEMPLATE_INST);
17451 return ret;
17452 }
17453
17454 /* Instantiate the alias template TMPL with ARGS. Also push a template
17455 instantiation level, which instantiate_template doesn't do because
17456 functions and variables have sufficient context established by the
17457 callers. */
17458
17459 static tree
17460 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17461 {
17462 struct pending_template *old_last_pend = last_pending_template;
17463 struct tinst_level *old_error_tinst = last_error_tinst_level;
17464 if (tmpl == error_mark_node || args == error_mark_node)
17465 return error_mark_node;
17466 tree tinst = build_tree_list (tmpl, args);
17467 if (!push_tinst_level (tinst))
17468 {
17469 ggc_free (tinst);
17470 return error_mark_node;
17471 }
17472
17473 args =
17474 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17475 args, tmpl, complain,
17476 /*require_all_args=*/true,
17477 /*use_default_args=*/true);
17478
17479 tree r = instantiate_template (tmpl, args, complain);
17480 pop_tinst_level ();
17481 /* We can't free this if a pending_template entry or last_error_tinst_level
17482 is pointing at it. */
17483 if (last_pending_template == old_last_pend
17484 && last_error_tinst_level == old_error_tinst)
17485 ggc_free (tinst);
17486
17487 return r;
17488 }
17489
17490 /* PARM is a template parameter pack for FN. Returns true iff
17491 PARM is used in a deducible way in the argument list of FN. */
17492
17493 static bool
17494 pack_deducible_p (tree parm, tree fn)
17495 {
17496 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17497 for (; t; t = TREE_CHAIN (t))
17498 {
17499 tree type = TREE_VALUE (t);
17500 tree packs;
17501 if (!PACK_EXPANSION_P (type))
17502 continue;
17503 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17504 packs; packs = TREE_CHAIN (packs))
17505 if (template_args_equal (TREE_VALUE (packs), parm))
17506 {
17507 /* The template parameter pack is used in a function parameter
17508 pack. If this is the end of the parameter list, the
17509 template parameter pack is deducible. */
17510 if (TREE_CHAIN (t) == void_list_node)
17511 return true;
17512 else
17513 /* Otherwise, not. Well, it could be deduced from
17514 a non-pack parameter, but doing so would end up with
17515 a deduction mismatch, so don't bother. */
17516 return false;
17517 }
17518 }
17519 /* The template parameter pack isn't used in any function parameter
17520 packs, but it might be used deeper, e.g. tuple<Args...>. */
17521 return true;
17522 }
17523
17524 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17525 NARGS elements of the arguments that are being used when calling
17526 it. TARGS is a vector into which the deduced template arguments
17527 are placed.
17528
17529 Returns either a FUNCTION_DECL for the matching specialization of FN or
17530 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17531 true, diagnostics will be printed to explain why it failed.
17532
17533 If FN is a conversion operator, or we are trying to produce a specific
17534 specialization, RETURN_TYPE is the return type desired.
17535
17536 The EXPLICIT_TARGS are explicit template arguments provided via a
17537 template-id.
17538
17539 The parameter STRICT is one of:
17540
17541 DEDUCE_CALL:
17542 We are deducing arguments for a function call, as in
17543 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17544 deducing arguments for a call to the result of a conversion
17545 function template, as in [over.call.object].
17546
17547 DEDUCE_CONV:
17548 We are deducing arguments for a conversion function, as in
17549 [temp.deduct.conv].
17550
17551 DEDUCE_EXACT:
17552 We are deducing arguments when doing an explicit instantiation
17553 as in [temp.explicit], when determining an explicit specialization
17554 as in [temp.expl.spec], or when taking the address of a function
17555 template, as in [temp.deduct.funcaddr]. */
17556
17557 tree
17558 fn_type_unification (tree fn,
17559 tree explicit_targs,
17560 tree targs,
17561 const tree *args,
17562 unsigned int nargs,
17563 tree return_type,
17564 unification_kind_t strict,
17565 int flags,
17566 bool explain_p,
17567 bool decltype_p)
17568 {
17569 tree parms;
17570 tree fntype;
17571 tree decl = NULL_TREE;
17572 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17573 bool ok;
17574 static int deduction_depth;
17575 struct pending_template *old_last_pend = last_pending_template;
17576 struct tinst_level *old_error_tinst = last_error_tinst_level;
17577 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17578 tree tinst;
17579 tree r = error_mark_node;
17580
17581 if (decltype_p)
17582 complain |= tf_decltype;
17583
17584 /* In C++0x, it's possible to have a function template whose type depends
17585 on itself recursively. This is most obvious with decltype, but can also
17586 occur with enumeration scope (c++/48969). So we need to catch infinite
17587 recursion and reject the substitution at deduction time; this function
17588 will return error_mark_node for any repeated substitution.
17589
17590 This also catches excessive recursion such as when f<N> depends on
17591 f<N-1> across all integers, and returns error_mark_node for all the
17592 substitutions back up to the initial one.
17593
17594 This is, of course, not reentrant. */
17595 if (excessive_deduction_depth)
17596 return error_mark_node;
17597 tinst = build_tree_list (fn, NULL_TREE);
17598 ++deduction_depth;
17599
17600 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17601
17602 fntype = TREE_TYPE (fn);
17603 if (explicit_targs)
17604 {
17605 /* [temp.deduct]
17606
17607 The specified template arguments must match the template
17608 parameters in kind (i.e., type, nontype, template), and there
17609 must not be more arguments than there are parameters;
17610 otherwise type deduction fails.
17611
17612 Nontype arguments must match the types of the corresponding
17613 nontype template parameters, or must be convertible to the
17614 types of the corresponding nontype parameters as specified in
17615 _temp.arg.nontype_, otherwise type deduction fails.
17616
17617 All references in the function type of the function template
17618 to the corresponding template parameters are replaced by the
17619 specified template argument values. If a substitution in a
17620 template parameter or in the function type of the function
17621 template results in an invalid type, type deduction fails. */
17622 int i, len = TREE_VEC_LENGTH (tparms);
17623 location_t loc = input_location;
17624 bool incomplete = false;
17625
17626 /* Adjust any explicit template arguments before entering the
17627 substitution context. */
17628 explicit_targs
17629 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17630 complain,
17631 /*require_all_args=*/false,
17632 /*use_default_args=*/false));
17633 if (explicit_targs == error_mark_node)
17634 goto fail;
17635
17636 /* Substitute the explicit args into the function type. This is
17637 necessary so that, for instance, explicitly declared function
17638 arguments can match null pointed constants. If we were given
17639 an incomplete set of explicit args, we must not do semantic
17640 processing during substitution as we could create partial
17641 instantiations. */
17642 for (i = 0; i < len; i++)
17643 {
17644 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17645 bool parameter_pack = false;
17646 tree targ = TREE_VEC_ELT (explicit_targs, i);
17647
17648 /* Dig out the actual parm. */
17649 if (TREE_CODE (parm) == TYPE_DECL
17650 || TREE_CODE (parm) == TEMPLATE_DECL)
17651 {
17652 parm = TREE_TYPE (parm);
17653 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17654 }
17655 else if (TREE_CODE (parm) == PARM_DECL)
17656 {
17657 parm = DECL_INITIAL (parm);
17658 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17659 }
17660
17661 if (!parameter_pack && targ == NULL_TREE)
17662 /* No explicit argument for this template parameter. */
17663 incomplete = true;
17664
17665 if (parameter_pack && pack_deducible_p (parm, fn))
17666 {
17667 /* Mark the argument pack as "incomplete". We could
17668 still deduce more arguments during unification.
17669 We remove this mark in type_unification_real. */
17670 if (targ)
17671 {
17672 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17673 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17674 = ARGUMENT_PACK_ARGS (targ);
17675 }
17676
17677 /* We have some incomplete argument packs. */
17678 incomplete = true;
17679 }
17680 }
17681
17682 TREE_VALUE (tinst) = explicit_targs;
17683 if (!push_tinst_level (tinst))
17684 {
17685 excessive_deduction_depth = true;
17686 goto fail;
17687 }
17688 processing_template_decl += incomplete;
17689 input_location = DECL_SOURCE_LOCATION (fn);
17690 /* Ignore any access checks; we'll see them again in
17691 instantiate_template and they might have the wrong
17692 access path at this point. */
17693 push_deferring_access_checks (dk_deferred);
17694 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17695 complain | tf_partial, NULL_TREE);
17696 pop_deferring_access_checks ();
17697 input_location = loc;
17698 processing_template_decl -= incomplete;
17699 pop_tinst_level ();
17700
17701 if (fntype == error_mark_node)
17702 goto fail;
17703
17704 /* Place the explicitly specified arguments in TARGS. */
17705 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17706 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17707 }
17708
17709 /* Never do unification on the 'this' parameter. */
17710 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17711
17712 if (return_type && strict == DEDUCE_CALL)
17713 {
17714 /* We're deducing for a call to the result of a template conversion
17715 function. The parms we really want are in return_type. */
17716 if (POINTER_TYPE_P (return_type))
17717 return_type = TREE_TYPE (return_type);
17718 parms = TYPE_ARG_TYPES (return_type);
17719 }
17720 else if (return_type)
17721 {
17722 tree *new_args;
17723
17724 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17725 new_args = XALLOCAVEC (tree, nargs + 1);
17726 new_args[0] = return_type;
17727 memcpy (new_args + 1, args, nargs * sizeof (tree));
17728 args = new_args;
17729 ++nargs;
17730 }
17731
17732 /* We allow incomplete unification without an error message here
17733 because the standard doesn't seem to explicitly prohibit it. Our
17734 callers must be ready to deal with unification failures in any
17735 event. */
17736
17737 TREE_VALUE (tinst) = targs;
17738 /* If we aren't explaining yet, push tinst context so we can see where
17739 any errors (e.g. from class instantiations triggered by instantiation
17740 of default template arguments) come from. If we are explaining, this
17741 context is redundant. */
17742 if (!explain_p && !push_tinst_level (tinst))
17743 {
17744 excessive_deduction_depth = true;
17745 goto fail;
17746 }
17747
17748 /* type_unification_real will pass back any access checks from default
17749 template argument substitution. */
17750 vec<deferred_access_check, va_gc> *checks;
17751 checks = NULL;
17752
17753 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17754 targs, parms, args, nargs, /*subr=*/0,
17755 strict, flags, &checks, explain_p);
17756 if (!explain_p)
17757 pop_tinst_level ();
17758 if (!ok)
17759 goto fail;
17760
17761 /* Now that we have bindings for all of the template arguments,
17762 ensure that the arguments deduced for the template template
17763 parameters have compatible template parameter lists. We cannot
17764 check this property before we have deduced all template
17765 arguments, because the template parameter types of a template
17766 template parameter might depend on prior template parameters
17767 deduced after the template template parameter. The following
17768 ill-formed example illustrates this issue:
17769
17770 template<typename T, template<T> class C> void f(C<5>, T);
17771
17772 template<int N> struct X {};
17773
17774 void g() {
17775 f(X<5>(), 5l); // error: template argument deduction fails
17776 }
17777
17778 The template parameter list of 'C' depends on the template type
17779 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17780 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17781 time that we deduce 'C'. */
17782 if (!template_template_parm_bindings_ok_p
17783 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17784 {
17785 unify_inconsistent_template_template_parameters (explain_p);
17786 goto fail;
17787 }
17788
17789 /* All is well so far. Now, check:
17790
17791 [temp.deduct]
17792
17793 When all template arguments have been deduced, all uses of
17794 template parameters in nondeduced contexts are replaced with
17795 the corresponding deduced argument values. If the
17796 substitution results in an invalid type, as described above,
17797 type deduction fails. */
17798 TREE_VALUE (tinst) = targs;
17799 if (!push_tinst_level (tinst))
17800 {
17801 excessive_deduction_depth = true;
17802 goto fail;
17803 }
17804
17805 /* Also collect access checks from the instantiation. */
17806 reopen_deferring_access_checks (checks);
17807
17808 decl = instantiate_template (fn, targs, complain);
17809
17810 checks = get_deferred_access_checks ();
17811 pop_deferring_access_checks ();
17812
17813 pop_tinst_level ();
17814
17815 if (decl == error_mark_node)
17816 goto fail;
17817
17818 /* Now perform any access checks encountered during substitution. */
17819 push_access_scope (decl);
17820 ok = perform_access_checks (checks, complain);
17821 pop_access_scope (decl);
17822 if (!ok)
17823 goto fail;
17824
17825 /* If we're looking for an exact match, check that what we got
17826 is indeed an exact match. It might not be if some template
17827 parameters are used in non-deduced contexts. But don't check
17828 for an exact match if we have dependent template arguments;
17829 in that case we're doing partial ordering, and we already know
17830 that we have two candidates that will provide the actual type. */
17831 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17832 {
17833 tree substed = TREE_TYPE (decl);
17834 unsigned int i;
17835
17836 tree sarg
17837 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17838 if (return_type)
17839 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17840 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17841 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17842 {
17843 unify_type_mismatch (explain_p, args[i],
17844 TREE_VALUE (sarg));
17845 goto fail;
17846 }
17847 }
17848
17849 r = decl;
17850
17851 fail:
17852 --deduction_depth;
17853 if (excessive_deduction_depth)
17854 {
17855 if (deduction_depth == 0)
17856 /* Reset once we're all the way out. */
17857 excessive_deduction_depth = false;
17858 }
17859
17860 /* We can't free this if a pending_template entry or last_error_tinst_level
17861 is pointing at it. */
17862 if (last_pending_template == old_last_pend
17863 && last_error_tinst_level == old_error_tinst)
17864 ggc_free (tinst);
17865
17866 return r;
17867 }
17868
17869 /* Adjust types before performing type deduction, as described in
17870 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17871 sections are symmetric. PARM is the type of a function parameter
17872 or the return type of the conversion function. ARG is the type of
17873 the argument passed to the call, or the type of the value
17874 initialized with the result of the conversion function.
17875 ARG_EXPR is the original argument expression, which may be null. */
17876
17877 static int
17878 maybe_adjust_types_for_deduction (unification_kind_t strict,
17879 tree* parm,
17880 tree* arg,
17881 tree arg_expr)
17882 {
17883 int result = 0;
17884
17885 switch (strict)
17886 {
17887 case DEDUCE_CALL:
17888 break;
17889
17890 case DEDUCE_CONV:
17891 /* Swap PARM and ARG throughout the remainder of this
17892 function; the handling is precisely symmetric since PARM
17893 will initialize ARG rather than vice versa. */
17894 std::swap (parm, arg);
17895 break;
17896
17897 case DEDUCE_EXACT:
17898 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17899 too, but here handle it by stripping the reference from PARM
17900 rather than by adding it to ARG. */
17901 if (TREE_CODE (*parm) == REFERENCE_TYPE
17902 && TYPE_REF_IS_RVALUE (*parm)
17903 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17904 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17905 && TREE_CODE (*arg) == REFERENCE_TYPE
17906 && !TYPE_REF_IS_RVALUE (*arg))
17907 *parm = TREE_TYPE (*parm);
17908 /* Nothing else to do in this case. */
17909 return 0;
17910
17911 default:
17912 gcc_unreachable ();
17913 }
17914
17915 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17916 {
17917 /* [temp.deduct.call]
17918
17919 If P is not a reference type:
17920
17921 --If A is an array type, the pointer type produced by the
17922 array-to-pointer standard conversion (_conv.array_) is
17923 used in place of A for type deduction; otherwise,
17924
17925 --If A is a function type, the pointer type produced by
17926 the function-to-pointer standard conversion
17927 (_conv.func_) is used in place of A for type deduction;
17928 otherwise,
17929
17930 --If A is a cv-qualified type, the top level
17931 cv-qualifiers of A's type are ignored for type
17932 deduction. */
17933 if (TREE_CODE (*arg) == ARRAY_TYPE)
17934 *arg = build_pointer_type (TREE_TYPE (*arg));
17935 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17936 *arg = build_pointer_type (*arg);
17937 else
17938 *arg = TYPE_MAIN_VARIANT (*arg);
17939 }
17940
17941 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17942 of the form T&&, where T is a template parameter, and the argument
17943 is an lvalue, T is deduced as A& */
17944 if (TREE_CODE (*parm) == REFERENCE_TYPE
17945 && TYPE_REF_IS_RVALUE (*parm)
17946 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17947 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17948 && (arg_expr ? real_lvalue_p (arg_expr)
17949 /* try_one_overload doesn't provide an arg_expr, but
17950 functions are always lvalues. */
17951 : TREE_CODE (*arg) == FUNCTION_TYPE))
17952 *arg = build_reference_type (*arg);
17953
17954 /* [temp.deduct.call]
17955
17956 If P is a cv-qualified type, the top level cv-qualifiers
17957 of P's type are ignored for type deduction. If P is a
17958 reference type, the type referred to by P is used for
17959 type deduction. */
17960 *parm = TYPE_MAIN_VARIANT (*parm);
17961 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17962 {
17963 *parm = TREE_TYPE (*parm);
17964 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17965 }
17966
17967 /* DR 322. For conversion deduction, remove a reference type on parm
17968 too (which has been swapped into ARG). */
17969 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17970 *arg = TREE_TYPE (*arg);
17971
17972 return result;
17973 }
17974
17975 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17976 template which does contain any deducible template parameters; check if
17977 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17978 unify_one_argument. */
17979
17980 static int
17981 check_non_deducible_conversion (tree parm, tree arg, int strict,
17982 int flags, bool explain_p)
17983 {
17984 tree type;
17985
17986 if (!TYPE_P (arg))
17987 type = TREE_TYPE (arg);
17988 else
17989 type = arg;
17990
17991 if (same_type_p (parm, type))
17992 return unify_success (explain_p);
17993
17994 if (strict == DEDUCE_CONV)
17995 {
17996 if (can_convert_arg (type, parm, NULL_TREE, flags,
17997 explain_p ? tf_warning_or_error : tf_none))
17998 return unify_success (explain_p);
17999 }
18000 else if (strict != DEDUCE_EXACT)
18001 {
18002 if (can_convert_arg (parm, type,
18003 TYPE_P (arg) ? NULL_TREE : arg,
18004 flags, explain_p ? tf_warning_or_error : tf_none))
18005 return unify_success (explain_p);
18006 }
18007
18008 if (strict == DEDUCE_EXACT)
18009 return unify_type_mismatch (explain_p, parm, arg);
18010 else
18011 return unify_arg_conversion (explain_p, parm, type, arg);
18012 }
18013
18014 static bool uses_deducible_template_parms (tree type);
18015
18016 /* Returns true iff the expression EXPR is one from which a template
18017 argument can be deduced. In other words, if it's an undecorated
18018 use of a template non-type parameter. */
18019
18020 static bool
18021 deducible_expression (tree expr)
18022 {
18023 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
18024 }
18025
18026 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18027 deducible way; that is, if it has a max value of <PARM> - 1. */
18028
18029 static bool
18030 deducible_array_bound (tree domain)
18031 {
18032 if (domain == NULL_TREE)
18033 return false;
18034
18035 tree max = TYPE_MAX_VALUE (domain);
18036 if (TREE_CODE (max) != MINUS_EXPR)
18037 return false;
18038
18039 return deducible_expression (TREE_OPERAND (max, 0));
18040 }
18041
18042 /* Returns true iff the template arguments ARGS use a template parameter
18043 in a deducible way. */
18044
18045 static bool
18046 deducible_template_args (tree args)
18047 {
18048 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
18049 {
18050 bool deducible;
18051 tree elt = TREE_VEC_ELT (args, i);
18052 if (ARGUMENT_PACK_P (elt))
18053 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
18054 else
18055 {
18056 if (PACK_EXPANSION_P (elt))
18057 elt = PACK_EXPANSION_PATTERN (elt);
18058 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
18059 deducible = true;
18060 else if (TYPE_P (elt))
18061 deducible = uses_deducible_template_parms (elt);
18062 else
18063 deducible = deducible_expression (elt);
18064 }
18065 if (deducible)
18066 return true;
18067 }
18068 return false;
18069 }
18070
18071 /* Returns true iff TYPE contains any deducible references to template
18072 parameters, as per 14.8.2.5. */
18073
18074 static bool
18075 uses_deducible_template_parms (tree type)
18076 {
18077 if (PACK_EXPANSION_P (type))
18078 type = PACK_EXPANSION_PATTERN (type);
18079
18080 /* T
18081 cv-list T
18082 TT<T>
18083 TT<i>
18084 TT<> */
18085 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18086 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18087 return true;
18088
18089 /* T*
18090 T&
18091 T&& */
18092 if (POINTER_TYPE_P (type))
18093 return uses_deducible_template_parms (TREE_TYPE (type));
18094
18095 /* T[integer-constant ]
18096 type [i] */
18097 if (TREE_CODE (type) == ARRAY_TYPE)
18098 return (uses_deducible_template_parms (TREE_TYPE (type))
18099 || deducible_array_bound (TYPE_DOMAIN (type)));
18100
18101 /* T type ::*
18102 type T::*
18103 T T::*
18104 T (type ::*)()
18105 type (T::*)()
18106 type (type ::*)(T)
18107 type (T::*)(T)
18108 T (type ::*)(T)
18109 T (T::*)()
18110 T (T::*)(T) */
18111 if (TYPE_PTRMEM_P (type))
18112 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18113 || (uses_deducible_template_parms
18114 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18115
18116 /* template-name <T> (where template-name refers to a class template)
18117 template-name <i> (where template-name refers to a class template) */
18118 if (CLASS_TYPE_P (type)
18119 && CLASSTYPE_TEMPLATE_INFO (type)
18120 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18121 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18122 (CLASSTYPE_TI_ARGS (type)));
18123
18124 /* type (T)
18125 T()
18126 T(T) */
18127 if (TREE_CODE (type) == FUNCTION_TYPE
18128 || TREE_CODE (type) == METHOD_TYPE)
18129 {
18130 if (uses_deducible_template_parms (TREE_TYPE (type)))
18131 return true;
18132 tree parm = TYPE_ARG_TYPES (type);
18133 if (TREE_CODE (type) == METHOD_TYPE)
18134 parm = TREE_CHAIN (parm);
18135 for (; parm; parm = TREE_CHAIN (parm))
18136 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18137 return true;
18138 }
18139
18140 return false;
18141 }
18142
18143 /* Subroutine of type_unification_real and unify_pack_expansion to
18144 handle unification of a single P/A pair. Parameters are as
18145 for those functions. */
18146
18147 static int
18148 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18149 int subr, unification_kind_t strict,
18150 bool explain_p)
18151 {
18152 tree arg_expr = NULL_TREE;
18153 int arg_strict;
18154
18155 if (arg == error_mark_node || parm == error_mark_node)
18156 return unify_invalid (explain_p);
18157 if (arg == unknown_type_node)
18158 /* We can't deduce anything from this, but we might get all the
18159 template args from other function args. */
18160 return unify_success (explain_p);
18161
18162 /* Implicit conversions (Clause 4) will be performed on a function
18163 argument to convert it to the type of the corresponding function
18164 parameter if the parameter type contains no template-parameters that
18165 participate in template argument deduction. */
18166 if (strict != DEDUCE_EXACT
18167 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18168 /* For function parameters with no deducible template parameters,
18169 just return. We'll check non-dependent conversions later. */
18170 return unify_success (explain_p);
18171
18172 switch (strict)
18173 {
18174 case DEDUCE_CALL:
18175 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18176 | UNIFY_ALLOW_MORE_CV_QUAL
18177 | UNIFY_ALLOW_DERIVED);
18178 break;
18179
18180 case DEDUCE_CONV:
18181 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18182 break;
18183
18184 case DEDUCE_EXACT:
18185 arg_strict = UNIFY_ALLOW_NONE;
18186 break;
18187
18188 default:
18189 gcc_unreachable ();
18190 }
18191
18192 /* We only do these transformations if this is the top-level
18193 parameter_type_list in a call or declaration matching; in other
18194 situations (nested function declarators, template argument lists) we
18195 won't be comparing a type to an expression, and we don't do any type
18196 adjustments. */
18197 if (!subr)
18198 {
18199 if (!TYPE_P (arg))
18200 {
18201 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18202 if (type_unknown_p (arg))
18203 {
18204 /* [temp.deduct.type] A template-argument can be
18205 deduced from a pointer to function or pointer
18206 to member function argument if the set of
18207 overloaded functions does not contain function
18208 templates and at most one of a set of
18209 overloaded functions provides a unique
18210 match. */
18211
18212 if (resolve_overloaded_unification
18213 (tparms, targs, parm, arg, strict,
18214 arg_strict, explain_p))
18215 return unify_success (explain_p);
18216 return unify_overload_resolution_failure (explain_p, arg);
18217 }
18218
18219 arg_expr = arg;
18220 arg = unlowered_expr_type (arg);
18221 if (arg == error_mark_node)
18222 return unify_invalid (explain_p);
18223 }
18224
18225 arg_strict |=
18226 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18227 }
18228 else
18229 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18230 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18231 return unify_template_argument_mismatch (explain_p, parm, arg);
18232
18233 /* For deduction from an init-list we need the actual list. */
18234 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18235 arg = arg_expr;
18236 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18237 }
18238
18239 /* Most parms like fn_type_unification.
18240
18241 If SUBR is 1, we're being called recursively (to unify the
18242 arguments of a function or method parameter of a function
18243 template).
18244
18245 CHECKS is a pointer to a vector of access checks encountered while
18246 substituting default template arguments. */
18247
18248 static int
18249 type_unification_real (tree tparms,
18250 tree targs,
18251 tree xparms,
18252 const tree *xargs,
18253 unsigned int xnargs,
18254 int subr,
18255 unification_kind_t strict,
18256 int flags,
18257 vec<deferred_access_check, va_gc> **checks,
18258 bool explain_p)
18259 {
18260 tree parm, arg;
18261 int i;
18262 int ntparms = TREE_VEC_LENGTH (tparms);
18263 int saw_undeduced = 0;
18264 tree parms;
18265 const tree *args;
18266 unsigned int nargs;
18267 unsigned int ia;
18268
18269 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18270 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18271 gcc_assert (ntparms > 0);
18272
18273 /* Reset the number of non-defaulted template arguments contained
18274 in TARGS. */
18275 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18276
18277 again:
18278 parms = xparms;
18279 args = xargs;
18280 nargs = xnargs;
18281
18282 ia = 0;
18283 while (parms && parms != void_list_node
18284 && ia < nargs)
18285 {
18286 parm = TREE_VALUE (parms);
18287
18288 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18289 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18290 /* For a function parameter pack that occurs at the end of the
18291 parameter-declaration-list, the type A of each remaining
18292 argument of the call is compared with the type P of the
18293 declarator-id of the function parameter pack. */
18294 break;
18295
18296 parms = TREE_CHAIN (parms);
18297
18298 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18299 /* For a function parameter pack that does not occur at the
18300 end of the parameter-declaration-list, the type of the
18301 parameter pack is a non-deduced context. */
18302 continue;
18303
18304 arg = args[ia];
18305 ++ia;
18306
18307 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18308 explain_p))
18309 return 1;
18310 }
18311
18312 if (parms
18313 && parms != void_list_node
18314 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18315 {
18316 /* Unify the remaining arguments with the pack expansion type. */
18317 tree argvec;
18318 tree parmvec = make_tree_vec (1);
18319
18320 /* Allocate a TREE_VEC and copy in all of the arguments */
18321 argvec = make_tree_vec (nargs - ia);
18322 for (i = 0; ia < nargs; ++ia, ++i)
18323 TREE_VEC_ELT (argvec, i) = args[ia];
18324
18325 /* Copy the parameter into parmvec. */
18326 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18327 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18328 /*subr=*/subr, explain_p))
18329 return 1;
18330
18331 /* Advance to the end of the list of parameters. */
18332 parms = TREE_CHAIN (parms);
18333 }
18334
18335 /* Fail if we've reached the end of the parm list, and more args
18336 are present, and the parm list isn't variadic. */
18337 if (ia < nargs && parms == void_list_node)
18338 return unify_too_many_arguments (explain_p, nargs, ia);
18339 /* Fail if parms are left and they don't have default values and
18340 they aren't all deduced as empty packs (c++/57397). This is
18341 consistent with sufficient_parms_p. */
18342 if (parms && parms != void_list_node
18343 && TREE_PURPOSE (parms) == NULL_TREE)
18344 {
18345 unsigned int count = nargs;
18346 tree p = parms;
18347 bool type_pack_p;
18348 do
18349 {
18350 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18351 if (!type_pack_p)
18352 count++;
18353 p = TREE_CHAIN (p);
18354 }
18355 while (p && p != void_list_node);
18356 if (count != nargs)
18357 return unify_too_few_arguments (explain_p, ia, count,
18358 type_pack_p);
18359 }
18360
18361 if (!subr)
18362 {
18363 tsubst_flags_t complain = (explain_p
18364 ? tf_warning_or_error
18365 : tf_none);
18366
18367 for (i = 0; i < ntparms; i++)
18368 {
18369 tree targ = TREE_VEC_ELT (targs, i);
18370 tree tparm = TREE_VEC_ELT (tparms, i);
18371
18372 /* Clear the "incomplete" flags on all argument packs now so that
18373 substituting them into later default arguments works. */
18374 if (targ && ARGUMENT_PACK_P (targ))
18375 {
18376 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18377 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18378 }
18379
18380 if (targ || tparm == error_mark_node)
18381 continue;
18382 tparm = TREE_VALUE (tparm);
18383
18384 /* If this is an undeduced nontype parameter that depends on
18385 a type parameter, try another pass; its type may have been
18386 deduced from a later argument than the one from which
18387 this parameter can be deduced. */
18388 if (TREE_CODE (tparm) == PARM_DECL
18389 && uses_template_parms (TREE_TYPE (tparm))
18390 && saw_undeduced < 2)
18391 {
18392 saw_undeduced = 1;
18393 continue;
18394 }
18395
18396 /* Core issue #226 (C++0x) [temp.deduct]:
18397
18398 If a template argument has not been deduced, its
18399 default template argument, if any, is used.
18400
18401 When we are in C++98 mode, TREE_PURPOSE will either
18402 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18403 to explicitly check cxx_dialect here. */
18404 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18405 /* OK, there is a default argument. Wait until after the
18406 conversion check to do substitution. */
18407 continue;
18408
18409 /* If the type parameter is a parameter pack, then it will
18410 be deduced to an empty parameter pack. */
18411 if (template_parameter_pack_p (tparm))
18412 {
18413 tree arg;
18414
18415 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18416 {
18417 arg = make_node (NONTYPE_ARGUMENT_PACK);
18418 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18419 TREE_CONSTANT (arg) = 1;
18420 }
18421 else
18422 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18423
18424 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18425
18426 TREE_VEC_ELT (targs, i) = arg;
18427 continue;
18428 }
18429
18430 return unify_parameter_deduction_failure (explain_p, tparm);
18431 }
18432
18433 /* DR 1391: All parameters have args, now check non-dependent parms for
18434 convertibility. */
18435 if (saw_undeduced < 2)
18436 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18437 parms && parms != void_list_node && ia < nargs; )
18438 {
18439 parm = TREE_VALUE (parms);
18440
18441 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18442 && (!TREE_CHAIN (parms)
18443 || TREE_CHAIN (parms) == void_list_node))
18444 /* For a function parameter pack that occurs at the end of the
18445 parameter-declaration-list, the type A of each remaining
18446 argument of the call is compared with the type P of the
18447 declarator-id of the function parameter pack. */
18448 break;
18449
18450 parms = TREE_CHAIN (parms);
18451
18452 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18453 /* For a function parameter pack that does not occur at the
18454 end of the parameter-declaration-list, the type of the
18455 parameter pack is a non-deduced context. */
18456 continue;
18457
18458 arg = args[ia];
18459 ++ia;
18460
18461 if (uses_template_parms (parm))
18462 continue;
18463 if (check_non_deducible_conversion (parm, arg, strict, flags,
18464 explain_p))
18465 return 1;
18466 }
18467
18468 /* Now substitute into the default template arguments. */
18469 for (i = 0; i < ntparms; i++)
18470 {
18471 tree targ = TREE_VEC_ELT (targs, i);
18472 tree tparm = TREE_VEC_ELT (tparms, i);
18473
18474 if (targ || tparm == error_mark_node)
18475 continue;
18476 tree parm = TREE_VALUE (tparm);
18477
18478 if (TREE_CODE (parm) == PARM_DECL
18479 && uses_template_parms (TREE_TYPE (parm))
18480 && saw_undeduced < 2)
18481 continue;
18482
18483 tree arg = TREE_PURPOSE (tparm);
18484 reopen_deferring_access_checks (*checks);
18485 location_t save_loc = input_location;
18486 if (DECL_P (parm))
18487 input_location = DECL_SOURCE_LOCATION (parm);
18488 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18489 arg = convert_template_argument (parm, arg, targs, complain,
18490 i, NULL_TREE);
18491 input_location = save_loc;
18492 *checks = get_deferred_access_checks ();
18493 pop_deferring_access_checks ();
18494 if (arg == error_mark_node)
18495 return 1;
18496 else
18497 {
18498 TREE_VEC_ELT (targs, i) = arg;
18499 /* The position of the first default template argument,
18500 is also the number of non-defaulted arguments in TARGS.
18501 Record that. */
18502 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18503 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18504 continue;
18505 }
18506 }
18507
18508 if (saw_undeduced++ == 1)
18509 goto again;
18510 }
18511
18512 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18513 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18514
18515 return unify_success (explain_p);
18516 }
18517
18518 /* Subroutine of type_unification_real. Args are like the variables
18519 at the call site. ARG is an overloaded function (or template-id);
18520 we try deducing template args from each of the overloads, and if
18521 only one succeeds, we go with that. Modifies TARGS and returns
18522 true on success. */
18523
18524 static bool
18525 resolve_overloaded_unification (tree tparms,
18526 tree targs,
18527 tree parm,
18528 tree arg,
18529 unification_kind_t strict,
18530 int sub_strict,
18531 bool explain_p)
18532 {
18533 tree tempargs = copy_node (targs);
18534 int good = 0;
18535 tree goodfn = NULL_TREE;
18536 bool addr_p;
18537
18538 if (TREE_CODE (arg) == ADDR_EXPR)
18539 {
18540 arg = TREE_OPERAND (arg, 0);
18541 addr_p = true;
18542 }
18543 else
18544 addr_p = false;
18545
18546 if (TREE_CODE (arg) == COMPONENT_REF)
18547 /* Handle `&x' where `x' is some static or non-static member
18548 function name. */
18549 arg = TREE_OPERAND (arg, 1);
18550
18551 if (TREE_CODE (arg) == OFFSET_REF)
18552 arg = TREE_OPERAND (arg, 1);
18553
18554 /* Strip baselink information. */
18555 if (BASELINK_P (arg))
18556 arg = BASELINK_FUNCTIONS (arg);
18557
18558 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18559 {
18560 /* If we got some explicit template args, we need to plug them into
18561 the affected templates before we try to unify, in case the
18562 explicit args will completely resolve the templates in question. */
18563
18564 int ok = 0;
18565 tree expl_subargs = TREE_OPERAND (arg, 1);
18566 arg = TREE_OPERAND (arg, 0);
18567
18568 for (; arg; arg = OVL_NEXT (arg))
18569 {
18570 tree fn = OVL_CURRENT (arg);
18571 tree subargs, elem;
18572
18573 if (TREE_CODE (fn) != TEMPLATE_DECL)
18574 continue;
18575
18576 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18577 expl_subargs, NULL_TREE, tf_none,
18578 /*require_all_args=*/true,
18579 /*use_default_args=*/true);
18580 if (subargs != error_mark_node
18581 && !any_dependent_template_arguments_p (subargs))
18582 {
18583 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18584 if (try_one_overload (tparms, targs, tempargs, parm,
18585 elem, strict, sub_strict, addr_p, explain_p)
18586 && (!goodfn || !same_type_p (goodfn, elem)))
18587 {
18588 goodfn = elem;
18589 ++good;
18590 }
18591 }
18592 else if (subargs)
18593 ++ok;
18594 }
18595 /* If no templates (or more than one) are fully resolved by the
18596 explicit arguments, this template-id is a non-deduced context; it
18597 could still be OK if we deduce all template arguments for the
18598 enclosing call through other arguments. */
18599 if (good != 1)
18600 good = ok;
18601 }
18602 else if (TREE_CODE (arg) != OVERLOAD
18603 && TREE_CODE (arg) != FUNCTION_DECL)
18604 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18605 -- but the deduction does not succeed because the expression is
18606 not just the function on its own. */
18607 return false;
18608 else
18609 for (; arg; arg = OVL_NEXT (arg))
18610 if (try_one_overload (tparms, targs, tempargs, parm,
18611 TREE_TYPE (OVL_CURRENT (arg)),
18612 strict, sub_strict, addr_p, explain_p)
18613 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18614 {
18615 goodfn = OVL_CURRENT (arg);
18616 ++good;
18617 }
18618
18619 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18620 to function or pointer to member function argument if the set of
18621 overloaded functions does not contain function templates and at most
18622 one of a set of overloaded functions provides a unique match.
18623
18624 So if we found multiple possibilities, we return success but don't
18625 deduce anything. */
18626
18627 if (good == 1)
18628 {
18629 int i = TREE_VEC_LENGTH (targs);
18630 for (; i--; )
18631 if (TREE_VEC_ELT (tempargs, i))
18632 {
18633 tree old = TREE_VEC_ELT (targs, i);
18634 tree new_ = TREE_VEC_ELT (tempargs, i);
18635 if (new_ && old && ARGUMENT_PACK_P (old)
18636 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18637 /* Don't forget explicit template arguments in a pack. */
18638 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18639 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18640 TREE_VEC_ELT (targs, i) = new_;
18641 }
18642 }
18643 if (good)
18644 return true;
18645
18646 return false;
18647 }
18648
18649 /* Core DR 115: In contexts where deduction is done and fails, or in
18650 contexts where deduction is not done, if a template argument list is
18651 specified and it, along with any default template arguments, identifies
18652 a single function template specialization, then the template-id is an
18653 lvalue for the function template specialization. */
18654
18655 tree
18656 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
18657 {
18658 tree expr, offset, baselink;
18659 bool addr;
18660
18661 if (!type_unknown_p (orig_expr))
18662 return orig_expr;
18663
18664 expr = orig_expr;
18665 addr = false;
18666 offset = NULL_TREE;
18667 baselink = NULL_TREE;
18668
18669 if (TREE_CODE (expr) == ADDR_EXPR)
18670 {
18671 expr = TREE_OPERAND (expr, 0);
18672 addr = true;
18673 }
18674 if (TREE_CODE (expr) == OFFSET_REF)
18675 {
18676 offset = expr;
18677 expr = TREE_OPERAND (expr, 1);
18678 }
18679 if (BASELINK_P (expr))
18680 {
18681 baselink = expr;
18682 expr = BASELINK_FUNCTIONS (expr);
18683 }
18684
18685 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18686 {
18687 int good = 0;
18688 tree goodfn = NULL_TREE;
18689
18690 /* If we got some explicit template args, we need to plug them into
18691 the affected templates before we try to unify, in case the
18692 explicit args will completely resolve the templates in question. */
18693
18694 tree expl_subargs = TREE_OPERAND (expr, 1);
18695 tree arg = TREE_OPERAND (expr, 0);
18696 tree badfn = NULL_TREE;
18697 tree badargs = NULL_TREE;
18698
18699 for (; arg; arg = OVL_NEXT (arg))
18700 {
18701 tree fn = OVL_CURRENT (arg);
18702 tree subargs, elem;
18703
18704 if (TREE_CODE (fn) != TEMPLATE_DECL)
18705 continue;
18706
18707 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18708 expl_subargs, NULL_TREE, tf_none,
18709 /*require_all_args=*/true,
18710 /*use_default_args=*/true);
18711 if (subargs != error_mark_node
18712 && !any_dependent_template_arguments_p (subargs))
18713 {
18714 elem = instantiate_template (fn, subargs, tf_none);
18715 if (elem == error_mark_node)
18716 {
18717 badfn = fn;
18718 badargs = subargs;
18719 }
18720 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18721 {
18722 goodfn = elem;
18723 ++good;
18724 }
18725 }
18726 }
18727 if (good == 1)
18728 {
18729 mark_used (goodfn);
18730 expr = goodfn;
18731 if (baselink)
18732 expr = build_baselink (BASELINK_BINFO (baselink),
18733 BASELINK_ACCESS_BINFO (baselink),
18734 expr, BASELINK_OPTYPE (baselink));
18735 if (offset)
18736 {
18737 tree base
18738 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18739 expr = build_offset_ref (base, expr, addr, complain);
18740 }
18741 if (addr)
18742 expr = cp_build_addr_expr (expr, complain);
18743 return expr;
18744 }
18745 else if (good == 0 && badargs && (complain & tf_error))
18746 /* There were no good options and at least one bad one, so let the
18747 user know what the problem is. */
18748 instantiate_template (badfn, badargs, complain);
18749 }
18750 return orig_expr;
18751 }
18752
18753 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18754 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18755 different overloads deduce different arguments for a given parm.
18756 ADDR_P is true if the expression for which deduction is being
18757 performed was of the form "& fn" rather than simply "fn".
18758
18759 Returns 1 on success. */
18760
18761 static int
18762 try_one_overload (tree tparms,
18763 tree orig_targs,
18764 tree targs,
18765 tree parm,
18766 tree arg,
18767 unification_kind_t strict,
18768 int sub_strict,
18769 bool addr_p,
18770 bool explain_p)
18771 {
18772 int nargs;
18773 tree tempargs;
18774 int i;
18775
18776 if (arg == error_mark_node)
18777 return 0;
18778
18779 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18780 to function or pointer to member function argument if the set of
18781 overloaded functions does not contain function templates and at most
18782 one of a set of overloaded functions provides a unique match.
18783
18784 So if this is a template, just return success. */
18785
18786 if (uses_template_parms (arg))
18787 return 1;
18788
18789 if (TREE_CODE (arg) == METHOD_TYPE)
18790 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18791 else if (addr_p)
18792 arg = build_pointer_type (arg);
18793
18794 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18795
18796 /* We don't copy orig_targs for this because if we have already deduced
18797 some template args from previous args, unify would complain when we
18798 try to deduce a template parameter for the same argument, even though
18799 there isn't really a conflict. */
18800 nargs = TREE_VEC_LENGTH (targs);
18801 tempargs = make_tree_vec (nargs);
18802
18803 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18804 return 0;
18805
18806 /* First make sure we didn't deduce anything that conflicts with
18807 explicitly specified args. */
18808 for (i = nargs; i--; )
18809 {
18810 tree elt = TREE_VEC_ELT (tempargs, i);
18811 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18812
18813 if (!elt)
18814 /*NOP*/;
18815 else if (uses_template_parms (elt))
18816 /* Since we're unifying against ourselves, we will fill in
18817 template args used in the function parm list with our own
18818 template parms. Discard them. */
18819 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18820 else if (oldelt && ARGUMENT_PACK_P (oldelt))
18821 {
18822 /* Check that the argument at each index of the deduced argument pack
18823 is equivalent to the corresponding explicitly specified argument.
18824 We may have deduced more arguments than were explicitly specified,
18825 and that's OK. */
18826 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt));
18827 gcc_assert (ARGUMENT_PACK_ARGS (oldelt)
18828 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt));
18829
18830 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
18831 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
18832
18833 if (TREE_VEC_LENGTH (deduced_pack)
18834 < TREE_VEC_LENGTH (explicit_pack))
18835 return 0;
18836
18837 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
18838 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
18839 TREE_VEC_ELT (deduced_pack, j)))
18840 return 0;
18841 }
18842 else if (oldelt && !template_args_equal (oldelt, elt))
18843 return 0;
18844 }
18845
18846 for (i = nargs; i--; )
18847 {
18848 tree elt = TREE_VEC_ELT (tempargs, i);
18849
18850 if (elt)
18851 TREE_VEC_ELT (targs, i) = elt;
18852 }
18853
18854 return 1;
18855 }
18856
18857 /* PARM is a template class (perhaps with unbound template
18858 parameters). ARG is a fully instantiated type. If ARG can be
18859 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18860 TARGS are as for unify. */
18861
18862 static tree
18863 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18864 bool explain_p)
18865 {
18866 tree copy_of_targs;
18867
18868 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18869 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18870 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18871 return NULL_TREE;
18872
18873 /* We need to make a new template argument vector for the call to
18874 unify. If we used TARGS, we'd clutter it up with the result of
18875 the attempted unification, even if this class didn't work out.
18876 We also don't want to commit ourselves to all the unifications
18877 we've already done, since unification is supposed to be done on
18878 an argument-by-argument basis. In other words, consider the
18879 following pathological case:
18880
18881 template <int I, int J, int K>
18882 struct S {};
18883
18884 template <int I, int J>
18885 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18886
18887 template <int I, int J, int K>
18888 void f(S<I, J, K>, S<I, I, I>);
18889
18890 void g() {
18891 S<0, 0, 0> s0;
18892 S<0, 1, 2> s2;
18893
18894 f(s0, s2);
18895 }
18896
18897 Now, by the time we consider the unification involving `s2', we
18898 already know that we must have `f<0, 0, 0>'. But, even though
18899 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18900 because there are two ways to unify base classes of S<0, 1, 2>
18901 with S<I, I, I>. If we kept the already deduced knowledge, we
18902 would reject the possibility I=1. */
18903 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18904
18905 /* If unification failed, we're done. */
18906 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18907 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18908 return NULL_TREE;
18909
18910 return arg;
18911 }
18912
18913 /* Given a template type PARM and a class type ARG, find the unique
18914 base type in ARG that is an instance of PARM. We do not examine
18915 ARG itself; only its base-classes. If there is not exactly one
18916 appropriate base class, return NULL_TREE. PARM may be the type of
18917 a partial specialization, as well as a plain template type. Used
18918 by unify. */
18919
18920 static enum template_base_result
18921 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18922 bool explain_p, tree *result)
18923 {
18924 tree rval = NULL_TREE;
18925 tree binfo;
18926
18927 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18928
18929 binfo = TYPE_BINFO (complete_type (arg));
18930 if (!binfo)
18931 {
18932 /* The type could not be completed. */
18933 *result = NULL_TREE;
18934 return tbr_incomplete_type;
18935 }
18936
18937 /* Walk in inheritance graph order. The search order is not
18938 important, and this avoids multiple walks of virtual bases. */
18939 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18940 {
18941 tree r = try_class_unification (tparms, targs, parm,
18942 BINFO_TYPE (binfo), explain_p);
18943
18944 if (r)
18945 {
18946 /* If there is more than one satisfactory baseclass, then:
18947
18948 [temp.deduct.call]
18949
18950 If they yield more than one possible deduced A, the type
18951 deduction fails.
18952
18953 applies. */
18954 if (rval && !same_type_p (r, rval))
18955 {
18956 *result = NULL_TREE;
18957 return tbr_ambiguous_baseclass;
18958 }
18959
18960 rval = r;
18961 }
18962 }
18963
18964 *result = rval;
18965 return tbr_success;
18966 }
18967
18968 /* Returns the level of DECL, which declares a template parameter. */
18969
18970 static int
18971 template_decl_level (tree decl)
18972 {
18973 switch (TREE_CODE (decl))
18974 {
18975 case TYPE_DECL:
18976 case TEMPLATE_DECL:
18977 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18978
18979 case PARM_DECL:
18980 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18981
18982 default:
18983 gcc_unreachable ();
18984 }
18985 return 0;
18986 }
18987
18988 /* Decide whether ARG can be unified with PARM, considering only the
18989 cv-qualifiers of each type, given STRICT as documented for unify.
18990 Returns nonzero iff the unification is OK on that basis. */
18991
18992 static int
18993 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18994 {
18995 int arg_quals = cp_type_quals (arg);
18996 int parm_quals = cp_type_quals (parm);
18997
18998 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18999 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19000 {
19001 /* Although a CVR qualifier is ignored when being applied to a
19002 substituted template parameter ([8.3.2]/1 for example), that
19003 does not allow us to unify "const T" with "int&" because both
19004 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19005 It is ok when we're allowing additional CV qualifiers
19006 at the outer level [14.8.2.1]/3,1st bullet. */
19007 if ((TREE_CODE (arg) == REFERENCE_TYPE
19008 || TREE_CODE (arg) == FUNCTION_TYPE
19009 || TREE_CODE (arg) == METHOD_TYPE)
19010 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
19011 return 0;
19012
19013 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
19014 && (parm_quals & TYPE_QUAL_RESTRICT))
19015 return 0;
19016 }
19017
19018 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19019 && (arg_quals & parm_quals) != parm_quals)
19020 return 0;
19021
19022 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
19023 && (parm_quals & arg_quals) != arg_quals)
19024 return 0;
19025
19026 return 1;
19027 }
19028
19029 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19030 void
19031 template_parm_level_and_index (tree parm, int* level, int* index)
19032 {
19033 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19034 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19035 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19036 {
19037 *index = TEMPLATE_TYPE_IDX (parm);
19038 *level = TEMPLATE_TYPE_LEVEL (parm);
19039 }
19040 else
19041 {
19042 *index = TEMPLATE_PARM_IDX (parm);
19043 *level = TEMPLATE_PARM_LEVEL (parm);
19044 }
19045 }
19046
19047 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19048 do { \
19049 if (unify (TP, TA, P, A, S, EP)) \
19050 return 1; \
19051 } while (0);
19052
19053 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19054 expansion at the end of PACKED_PARMS. Returns 0 if the type
19055 deduction succeeds, 1 otherwise. STRICT is the same as in
19056 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
19057 call argument list. We'll need to adjust the arguments to make them
19058 types. SUBR tells us if this is from a recursive call to
19059 type_unification_real, or for comparing two template argument
19060 lists. */
19061
19062 static int
19063 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
19064 tree packed_args, unification_kind_t strict,
19065 bool subr, bool explain_p)
19066 {
19067 tree parm
19068 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
19069 tree pattern = PACK_EXPANSION_PATTERN (parm);
19070 tree pack, packs = NULL_TREE;
19071 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
19072
19073 packed_args = expand_template_argument_pack (packed_args);
19074
19075 int len = TREE_VEC_LENGTH (packed_args);
19076
19077 /* Determine the parameter packs we will be deducing from the
19078 pattern, and record their current deductions. */
19079 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19080 pack; pack = TREE_CHAIN (pack))
19081 {
19082 tree parm_pack = TREE_VALUE (pack);
19083 int idx, level;
19084
19085 /* Determine the index and level of this parameter pack. */
19086 template_parm_level_and_index (parm_pack, &level, &idx);
19087
19088 /* Keep track of the parameter packs and their corresponding
19089 argument packs. */
19090 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19091 TREE_TYPE (packs) = make_tree_vec (len - start);
19092 }
19093
19094 /* Loop through all of the arguments that have not yet been
19095 unified and unify each with the pattern. */
19096 for (i = start; i < len; i++)
19097 {
19098 tree parm;
19099 bool any_explicit = false;
19100 tree arg = TREE_VEC_ELT (packed_args, i);
19101
19102 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19103 or the element of its argument pack at the current index if
19104 this argument was explicitly specified. */
19105 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19106 {
19107 int idx, level;
19108 tree arg, pargs;
19109 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19110
19111 arg = NULL_TREE;
19112 if (TREE_VALUE (pack)
19113 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19114 && (i - start < TREE_VEC_LENGTH (pargs)))
19115 {
19116 any_explicit = true;
19117 arg = TREE_VEC_ELT (pargs, i - start);
19118 }
19119 TMPL_ARG (targs, level, idx) = arg;
19120 }
19121
19122 /* If we had explicit template arguments, substitute them into the
19123 pattern before deduction. */
19124 if (any_explicit)
19125 {
19126 /* Some arguments might still be unspecified or dependent. */
19127 bool dependent;
19128 ++processing_template_decl;
19129 dependent = any_dependent_template_arguments_p (targs);
19130 if (!dependent)
19131 --processing_template_decl;
19132 parm = tsubst (pattern, targs,
19133 explain_p ? tf_warning_or_error : tf_none,
19134 NULL_TREE);
19135 if (dependent)
19136 --processing_template_decl;
19137 if (parm == error_mark_node)
19138 return 1;
19139 }
19140 else
19141 parm = pattern;
19142
19143 /* Unify the pattern with the current argument. */
19144 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19145 explain_p))
19146 return 1;
19147
19148 /* For each parameter pack, collect the deduced value. */
19149 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19150 {
19151 int idx, level;
19152 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19153
19154 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19155 TMPL_ARG (targs, level, idx);
19156 }
19157 }
19158
19159 /* Verify that the results of unification with the parameter packs
19160 produce results consistent with what we've seen before, and make
19161 the deduced argument packs available. */
19162 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19163 {
19164 tree old_pack = TREE_VALUE (pack);
19165 tree new_args = TREE_TYPE (pack);
19166 int i, len = TREE_VEC_LENGTH (new_args);
19167 int idx, level;
19168 bool nondeduced_p = false;
19169
19170 /* By default keep the original deduced argument pack.
19171 If necessary, more specific code is going to update the
19172 resulting deduced argument later down in this function. */
19173 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19174 TMPL_ARG (targs, level, idx) = old_pack;
19175
19176 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19177 actually deduce anything. */
19178 for (i = 0; i < len && !nondeduced_p; ++i)
19179 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19180 nondeduced_p = true;
19181 if (nondeduced_p)
19182 continue;
19183
19184 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19185 {
19186 /* If we had fewer function args than explicit template args,
19187 just use the explicits. */
19188 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19189 int explicit_len = TREE_VEC_LENGTH (explicit_args);
19190 if (len < explicit_len)
19191 new_args = explicit_args;
19192 }
19193
19194 if (!old_pack)
19195 {
19196 tree result;
19197 /* Build the deduced *_ARGUMENT_PACK. */
19198 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
19199 {
19200 result = make_node (NONTYPE_ARGUMENT_PACK);
19201 TREE_TYPE (result) =
19202 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
19203 TREE_CONSTANT (result) = 1;
19204 }
19205 else
19206 result = cxx_make_type (TYPE_ARGUMENT_PACK);
19207
19208 SET_ARGUMENT_PACK_ARGS (result, new_args);
19209
19210 /* Note the deduced argument packs for this parameter
19211 pack. */
19212 TMPL_ARG (targs, level, idx) = result;
19213 }
19214 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
19215 && (ARGUMENT_PACK_ARGS (old_pack)
19216 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
19217 {
19218 /* We only had the explicitly-provided arguments before, but
19219 now we have a complete set of arguments. */
19220 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19221
19222 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
19223 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
19224 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
19225 }
19226 else
19227 {
19228 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
19229 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
19230
19231 if (!comp_template_args (old_args, new_args,
19232 &bad_old_arg, &bad_new_arg))
19233 /* Inconsistent unification of this parameter pack. */
19234 return unify_parameter_pack_inconsistent (explain_p,
19235 bad_old_arg,
19236 bad_new_arg);
19237 }
19238 }
19239
19240 return unify_success (explain_p);
19241 }
19242
19243 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19244 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19245 parameters and return value are as for unify. */
19246
19247 static int
19248 unify_array_domain (tree tparms, tree targs,
19249 tree parm_dom, tree arg_dom,
19250 bool explain_p)
19251 {
19252 tree parm_max;
19253 tree arg_max;
19254 bool parm_cst;
19255 bool arg_cst;
19256
19257 /* Our representation of array types uses "N - 1" as the
19258 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19259 not an integer constant. We cannot unify arbitrarily
19260 complex expressions, so we eliminate the MINUS_EXPRs
19261 here. */
19262 parm_max = TYPE_MAX_VALUE (parm_dom);
19263 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19264 if (!parm_cst)
19265 {
19266 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19267 parm_max = TREE_OPERAND (parm_max, 0);
19268 }
19269 arg_max = TYPE_MAX_VALUE (arg_dom);
19270 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19271 if (!arg_cst)
19272 {
19273 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19274 trying to unify the type of a variable with the type
19275 of a template parameter. For example:
19276
19277 template <unsigned int N>
19278 void f (char (&) [N]);
19279 int g();
19280 void h(int i) {
19281 char a[g(i)];
19282 f(a);
19283 }
19284
19285 Here, the type of the ARG will be "int [g(i)]", and
19286 may be a SAVE_EXPR, etc. */
19287 if (TREE_CODE (arg_max) != MINUS_EXPR)
19288 return unify_vla_arg (explain_p, arg_dom);
19289 arg_max = TREE_OPERAND (arg_max, 0);
19290 }
19291
19292 /* If only one of the bounds used a MINUS_EXPR, compensate
19293 by adding one to the other bound. */
19294 if (parm_cst && !arg_cst)
19295 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19296 integer_type_node,
19297 parm_max,
19298 integer_one_node);
19299 else if (arg_cst && !parm_cst)
19300 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19301 integer_type_node,
19302 arg_max,
19303 integer_one_node);
19304
19305 return unify (tparms, targs, parm_max, arg_max,
19306 UNIFY_ALLOW_INTEGER, explain_p);
19307 }
19308
19309 /* Deduce the value of template parameters. TPARMS is the (innermost)
19310 set of template parameters to a template. TARGS is the bindings
19311 for those template parameters, as determined thus far; TARGS may
19312 include template arguments for outer levels of template parameters
19313 as well. PARM is a parameter to a template function, or a
19314 subcomponent of that parameter; ARG is the corresponding argument.
19315 This function attempts to match PARM with ARG in a manner
19316 consistent with the existing assignments in TARGS. If more values
19317 are deduced, then TARGS is updated.
19318
19319 Returns 0 if the type deduction succeeds, 1 otherwise. The
19320 parameter STRICT is a bitwise or of the following flags:
19321
19322 UNIFY_ALLOW_NONE:
19323 Require an exact match between PARM and ARG.
19324 UNIFY_ALLOW_MORE_CV_QUAL:
19325 Allow the deduced ARG to be more cv-qualified (by qualification
19326 conversion) than ARG.
19327 UNIFY_ALLOW_LESS_CV_QUAL:
19328 Allow the deduced ARG to be less cv-qualified than ARG.
19329 UNIFY_ALLOW_DERIVED:
19330 Allow the deduced ARG to be a template base class of ARG,
19331 or a pointer to a template base class of the type pointed to by
19332 ARG.
19333 UNIFY_ALLOW_INTEGER:
19334 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19335 case for more information.
19336 UNIFY_ALLOW_OUTER_LEVEL:
19337 This is the outermost level of a deduction. Used to determine validity
19338 of qualification conversions. A valid qualification conversion must
19339 have const qualified pointers leading up to the inner type which
19340 requires additional CV quals, except at the outer level, where const
19341 is not required [conv.qual]. It would be normal to set this flag in
19342 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19343 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19344 This is the outermost level of a deduction, and PARM can be more CV
19345 qualified at this point.
19346 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19347 This is the outermost level of a deduction, and PARM can be less CV
19348 qualified at this point. */
19349
19350 static int
19351 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19352 bool explain_p)
19353 {
19354 int idx;
19355 tree targ;
19356 tree tparm;
19357 int strict_in = strict;
19358
19359 /* I don't think this will do the right thing with respect to types.
19360 But the only case I've seen it in so far has been array bounds, where
19361 signedness is the only information lost, and I think that will be
19362 okay. */
19363 while (TREE_CODE (parm) == NOP_EXPR)
19364 parm = TREE_OPERAND (parm, 0);
19365
19366 if (arg == error_mark_node)
19367 return unify_invalid (explain_p);
19368 if (arg == unknown_type_node
19369 || arg == init_list_type_node)
19370 /* We can't deduce anything from this, but we might get all the
19371 template args from other function args. */
19372 return unify_success (explain_p);
19373
19374 /* If PARM uses template parameters, then we can't bail out here,
19375 even if ARG == PARM, since we won't record unifications for the
19376 template parameters. We might need them if we're trying to
19377 figure out which of two things is more specialized. */
19378 if (arg == parm && !uses_template_parms (parm))
19379 return unify_success (explain_p);
19380
19381 /* Handle init lists early, so the rest of the function can assume
19382 we're dealing with a type. */
19383 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19384 {
19385 tree elt, elttype;
19386 unsigned i;
19387 tree orig_parm = parm;
19388
19389 /* Replace T with std::initializer_list<T> for deduction. */
19390 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19391 && flag_deduce_init_list)
19392 parm = listify (parm);
19393
19394 if (!is_std_init_list (parm)
19395 && TREE_CODE (parm) != ARRAY_TYPE)
19396 /* We can only deduce from an initializer list argument if the
19397 parameter is std::initializer_list or an array; otherwise this
19398 is a non-deduced context. */
19399 return unify_success (explain_p);
19400
19401 if (TREE_CODE (parm) == ARRAY_TYPE)
19402 elttype = TREE_TYPE (parm);
19403 else
19404 {
19405 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19406 /* Deduction is defined in terms of a single type, so just punt
19407 on the (bizarre) std::initializer_list<T...>. */
19408 if (PACK_EXPANSION_P (elttype))
19409 return unify_success (explain_p);
19410 }
19411
19412 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19413 {
19414 int elt_strict = strict;
19415
19416 if (elt == error_mark_node)
19417 return unify_invalid (explain_p);
19418
19419 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19420 {
19421 tree type = TREE_TYPE (elt);
19422 if (type == error_mark_node)
19423 return unify_invalid (explain_p);
19424 /* It should only be possible to get here for a call. */
19425 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19426 elt_strict |= maybe_adjust_types_for_deduction
19427 (DEDUCE_CALL, &elttype, &type, elt);
19428 elt = type;
19429 }
19430
19431 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19432 explain_p);
19433 }
19434
19435 if (TREE_CODE (parm) == ARRAY_TYPE
19436 && deducible_array_bound (TYPE_DOMAIN (parm)))
19437 {
19438 /* Also deduce from the length of the initializer list. */
19439 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19440 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19441 if (idx == error_mark_node)
19442 return unify_invalid (explain_p);
19443 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19444 idx, explain_p);
19445 }
19446
19447 /* If the std::initializer_list<T> deduction worked, replace the
19448 deduced A with std::initializer_list<A>. */
19449 if (orig_parm != parm)
19450 {
19451 idx = TEMPLATE_TYPE_IDX (orig_parm);
19452 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19453 targ = listify (targ);
19454 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19455 }
19456 return unify_success (explain_p);
19457 }
19458
19459 /* Immediately reject some pairs that won't unify because of
19460 cv-qualification mismatches. */
19461 if (TREE_CODE (arg) == TREE_CODE (parm)
19462 && TYPE_P (arg)
19463 /* It is the elements of the array which hold the cv quals of an array
19464 type, and the elements might be template type parms. We'll check
19465 when we recurse. */
19466 && TREE_CODE (arg) != ARRAY_TYPE
19467 /* We check the cv-qualifiers when unifying with template type
19468 parameters below. We want to allow ARG `const T' to unify with
19469 PARM `T' for example, when computing which of two templates
19470 is more specialized, for example. */
19471 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19472 && !check_cv_quals_for_unify (strict_in, arg, parm))
19473 return unify_cv_qual_mismatch (explain_p, parm, arg);
19474
19475 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19476 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19477 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19478 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19479 strict &= ~UNIFY_ALLOW_DERIVED;
19480 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19481 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19482
19483 switch (TREE_CODE (parm))
19484 {
19485 case TYPENAME_TYPE:
19486 case SCOPE_REF:
19487 case UNBOUND_CLASS_TEMPLATE:
19488 /* In a type which contains a nested-name-specifier, template
19489 argument values cannot be deduced for template parameters used
19490 within the nested-name-specifier. */
19491 return unify_success (explain_p);
19492
19493 case TEMPLATE_TYPE_PARM:
19494 case TEMPLATE_TEMPLATE_PARM:
19495 case BOUND_TEMPLATE_TEMPLATE_PARM:
19496 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19497 if (error_operand_p (tparm))
19498 return unify_invalid (explain_p);
19499
19500 if (TEMPLATE_TYPE_LEVEL (parm)
19501 != template_decl_level (tparm))
19502 /* The PARM is not one we're trying to unify. Just check
19503 to see if it matches ARG. */
19504 {
19505 if (TREE_CODE (arg) == TREE_CODE (parm)
19506 && (is_auto (parm) ? is_auto (arg)
19507 : same_type_p (parm, arg)))
19508 return unify_success (explain_p);
19509 else
19510 return unify_type_mismatch (explain_p, parm, arg);
19511 }
19512 idx = TEMPLATE_TYPE_IDX (parm);
19513 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19514 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19515 if (error_operand_p (tparm))
19516 return unify_invalid (explain_p);
19517
19518 /* Check for mixed types and values. */
19519 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19520 && TREE_CODE (tparm) != TYPE_DECL)
19521 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19522 && TREE_CODE (tparm) != TEMPLATE_DECL))
19523 gcc_unreachable ();
19524
19525 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19526 {
19527 /* ARG must be constructed from a template class or a template
19528 template parameter. */
19529 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19530 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19531 return unify_template_deduction_failure (explain_p, parm, arg);
19532 {
19533 tree parmvec = TYPE_TI_ARGS (parm);
19534 /* An alias template name is never deduced. */
19535 if (TYPE_ALIAS_P (arg))
19536 arg = strip_typedefs (arg);
19537 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19538 tree full_argvec = add_to_template_args (targs, argvec);
19539 tree parm_parms
19540 = DECL_INNERMOST_TEMPLATE_PARMS
19541 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19542 int i, len;
19543 int parm_variadic_p = 0;
19544
19545 /* The resolution to DR150 makes clear that default
19546 arguments for an N-argument may not be used to bind T
19547 to a template template parameter with fewer than N
19548 parameters. It is not safe to permit the binding of
19549 default arguments as an extension, as that may change
19550 the meaning of a conforming program. Consider:
19551
19552 struct Dense { static const unsigned int dim = 1; };
19553
19554 template <template <typename> class View,
19555 typename Block>
19556 void operator+(float, View<Block> const&);
19557
19558 template <typename Block,
19559 unsigned int Dim = Block::dim>
19560 struct Lvalue_proxy { operator float() const; };
19561
19562 void
19563 test_1d (void) {
19564 Lvalue_proxy<Dense> p;
19565 float b;
19566 b + p;
19567 }
19568
19569 Here, if Lvalue_proxy is permitted to bind to View, then
19570 the global operator+ will be used; if they are not, the
19571 Lvalue_proxy will be converted to float. */
19572 if (coerce_template_parms (parm_parms,
19573 full_argvec,
19574 TYPE_TI_TEMPLATE (parm),
19575 (explain_p
19576 ? tf_warning_or_error
19577 : tf_none),
19578 /*require_all_args=*/true,
19579 /*use_default_args=*/false)
19580 == error_mark_node)
19581 return 1;
19582
19583 /* Deduce arguments T, i from TT<T> or TT<i>.
19584 We check each element of PARMVEC and ARGVEC individually
19585 rather than the whole TREE_VEC since they can have
19586 different number of elements. */
19587
19588 parmvec = expand_template_argument_pack (parmvec);
19589 argvec = expand_template_argument_pack (argvec);
19590
19591 len = TREE_VEC_LENGTH (parmvec);
19592
19593 /* Check if the parameters end in a pack, making them
19594 variadic. */
19595 if (len > 0
19596 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19597 parm_variadic_p = 1;
19598
19599 for (i = 0; i < len - parm_variadic_p; ++i)
19600 /* If the template argument list of P contains a pack
19601 expansion that is not the last template argument, the
19602 entire template argument list is a non-deduced
19603 context. */
19604 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19605 return unify_success (explain_p);
19606
19607 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19608 return unify_too_few_arguments (explain_p,
19609 TREE_VEC_LENGTH (argvec), len);
19610
19611 for (i = 0; i < len - parm_variadic_p; ++i)
19612 {
19613 RECUR_AND_CHECK_FAILURE (tparms, targs,
19614 TREE_VEC_ELT (parmvec, i),
19615 TREE_VEC_ELT (argvec, i),
19616 UNIFY_ALLOW_NONE, explain_p);
19617 }
19618
19619 if (parm_variadic_p
19620 && unify_pack_expansion (tparms, targs,
19621 parmvec, argvec,
19622 DEDUCE_EXACT,
19623 /*subr=*/true, explain_p))
19624 return 1;
19625 }
19626 arg = TYPE_TI_TEMPLATE (arg);
19627
19628 /* Fall through to deduce template name. */
19629 }
19630
19631 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19632 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19633 {
19634 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19635
19636 /* Simple cases: Value already set, does match or doesn't. */
19637 if (targ != NULL_TREE && template_args_equal (targ, arg))
19638 return unify_success (explain_p);
19639 else if (targ)
19640 return unify_inconsistency (explain_p, parm, targ, arg);
19641 }
19642 else
19643 {
19644 /* If PARM is `const T' and ARG is only `int', we don't have
19645 a match unless we are allowing additional qualification.
19646 If ARG is `const int' and PARM is just `T' that's OK;
19647 that binds `const int' to `T'. */
19648 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19649 arg, parm))
19650 return unify_cv_qual_mismatch (explain_p, parm, arg);
19651
19652 /* Consider the case where ARG is `const volatile int' and
19653 PARM is `const T'. Then, T should be `volatile int'. */
19654 arg = cp_build_qualified_type_real
19655 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19656 if (arg == error_mark_node)
19657 return unify_invalid (explain_p);
19658
19659 /* Simple cases: Value already set, does match or doesn't. */
19660 if (targ != NULL_TREE && same_type_p (targ, arg))
19661 return unify_success (explain_p);
19662 else if (targ)
19663 return unify_inconsistency (explain_p, parm, targ, arg);
19664
19665 /* Make sure that ARG is not a variable-sized array. (Note
19666 that were talking about variable-sized arrays (like
19667 `int[n]'), rather than arrays of unknown size (like
19668 `int[]').) We'll get very confused by such a type since
19669 the bound of the array is not constant, and therefore
19670 not mangleable. Besides, such types are not allowed in
19671 ISO C++, so we can do as we please here. We do allow
19672 them for 'auto' deduction, since that isn't ABI-exposed. */
19673 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19674 return unify_vla_arg (explain_p, arg);
19675
19676 /* Strip typedefs as in convert_template_argument. */
19677 arg = canonicalize_type_argument (arg, tf_none);
19678 }
19679
19680 /* If ARG is a parameter pack or an expansion, we cannot unify
19681 against it unless PARM is also a parameter pack. */
19682 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19683 && !template_parameter_pack_p (parm))
19684 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19685
19686 /* If the argument deduction results is a METHOD_TYPE,
19687 then there is a problem.
19688 METHOD_TYPE doesn't map to any real C++ type the result of
19689 the deduction can not be of that type. */
19690 if (TREE_CODE (arg) == METHOD_TYPE)
19691 return unify_method_type_error (explain_p, arg);
19692
19693 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19694 return unify_success (explain_p);
19695
19696 case TEMPLATE_PARM_INDEX:
19697 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19698 if (error_operand_p (tparm))
19699 return unify_invalid (explain_p);
19700
19701 if (TEMPLATE_PARM_LEVEL (parm)
19702 != template_decl_level (tparm))
19703 {
19704 /* The PARM is not one we're trying to unify. Just check
19705 to see if it matches ARG. */
19706 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19707 && cp_tree_equal (parm, arg));
19708 if (result)
19709 unify_expression_unequal (explain_p, parm, arg);
19710 return result;
19711 }
19712
19713 idx = TEMPLATE_PARM_IDX (parm);
19714 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19715
19716 if (targ)
19717 {
19718 int x = !cp_tree_equal (targ, arg);
19719 if (x)
19720 unify_inconsistency (explain_p, parm, targ, arg);
19721 return x;
19722 }
19723
19724 /* [temp.deduct.type] If, in the declaration of a function template
19725 with a non-type template-parameter, the non-type
19726 template-parameter is used in an expression in the function
19727 parameter-list and, if the corresponding template-argument is
19728 deduced, the template-argument type shall match the type of the
19729 template-parameter exactly, except that a template-argument
19730 deduced from an array bound may be of any integral type.
19731 The non-type parameter might use already deduced type parameters. */
19732 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19733 if (!TREE_TYPE (arg))
19734 /* Template-parameter dependent expression. Just accept it for now.
19735 It will later be processed in convert_template_argument. */
19736 ;
19737 else if (same_type_p (TREE_TYPE (arg), tparm))
19738 /* OK */;
19739 else if ((strict & UNIFY_ALLOW_INTEGER)
19740 && CP_INTEGRAL_TYPE_P (tparm))
19741 /* Convert the ARG to the type of PARM; the deduced non-type
19742 template argument must exactly match the types of the
19743 corresponding parameter. */
19744 arg = fold (build_nop (tparm, arg));
19745 else if (uses_template_parms (tparm))
19746 /* We haven't deduced the type of this parameter yet. Try again
19747 later. */
19748 return unify_success (explain_p);
19749 else
19750 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19751
19752 /* If ARG is a parameter pack or an expansion, we cannot unify
19753 against it unless PARM is also a parameter pack. */
19754 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19755 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19756 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19757
19758 {
19759 bool removed_attr = false;
19760 arg = strip_typedefs_expr (arg, &removed_attr);
19761 }
19762 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19763 return unify_success (explain_p);
19764
19765 case PTRMEM_CST:
19766 {
19767 /* A pointer-to-member constant can be unified only with
19768 another constant. */
19769 if (TREE_CODE (arg) != PTRMEM_CST)
19770 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19771
19772 /* Just unify the class member. It would be useless (and possibly
19773 wrong, depending on the strict flags) to unify also
19774 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19775 arg refer to the same variable, even if through different
19776 classes. For instance:
19777
19778 struct A { int x; };
19779 struct B : A { };
19780
19781 Unification of &A::x and &B::x must succeed. */
19782 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19783 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19784 }
19785
19786 case POINTER_TYPE:
19787 {
19788 if (!TYPE_PTR_P (arg))
19789 return unify_type_mismatch (explain_p, parm, arg);
19790
19791 /* [temp.deduct.call]
19792
19793 A can be another pointer or pointer to member type that can
19794 be converted to the deduced A via a qualification
19795 conversion (_conv.qual_).
19796
19797 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19798 This will allow for additional cv-qualification of the
19799 pointed-to types if appropriate. */
19800
19801 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19802 /* The derived-to-base conversion only persists through one
19803 level of pointers. */
19804 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19805
19806 return unify (tparms, targs, TREE_TYPE (parm),
19807 TREE_TYPE (arg), strict, explain_p);
19808 }
19809
19810 case REFERENCE_TYPE:
19811 if (TREE_CODE (arg) != REFERENCE_TYPE)
19812 return unify_type_mismatch (explain_p, parm, arg);
19813 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19814 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19815
19816 case ARRAY_TYPE:
19817 if (TREE_CODE (arg) != ARRAY_TYPE)
19818 return unify_type_mismatch (explain_p, parm, arg);
19819 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19820 != (TYPE_DOMAIN (arg) == NULL_TREE))
19821 return unify_type_mismatch (explain_p, parm, arg);
19822 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19823 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19824 if (TYPE_DOMAIN (parm) != NULL_TREE)
19825 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19826 TYPE_DOMAIN (arg), explain_p);
19827 return unify_success (explain_p);
19828
19829 case REAL_TYPE:
19830 case COMPLEX_TYPE:
19831 case VECTOR_TYPE:
19832 case INTEGER_TYPE:
19833 case BOOLEAN_TYPE:
19834 case ENUMERAL_TYPE:
19835 case VOID_TYPE:
19836 case NULLPTR_TYPE:
19837 if (TREE_CODE (arg) != TREE_CODE (parm))
19838 return unify_type_mismatch (explain_p, parm, arg);
19839
19840 /* We have already checked cv-qualification at the top of the
19841 function. */
19842 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19843 return unify_type_mismatch (explain_p, parm, arg);
19844
19845 /* As far as unification is concerned, this wins. Later checks
19846 will invalidate it if necessary. */
19847 return unify_success (explain_p);
19848
19849 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19850 /* Type INTEGER_CST can come from ordinary constant template args. */
19851 case INTEGER_CST:
19852 while (TREE_CODE (arg) == NOP_EXPR)
19853 arg = TREE_OPERAND (arg, 0);
19854
19855 if (TREE_CODE (arg) != INTEGER_CST)
19856 return unify_template_argument_mismatch (explain_p, parm, arg);
19857 return (tree_int_cst_equal (parm, arg)
19858 ? unify_success (explain_p)
19859 : unify_template_argument_mismatch (explain_p, parm, arg));
19860
19861 case TREE_VEC:
19862 {
19863 int i, len, argslen;
19864 int parm_variadic_p = 0;
19865
19866 if (TREE_CODE (arg) != TREE_VEC)
19867 return unify_template_argument_mismatch (explain_p, parm, arg);
19868
19869 len = TREE_VEC_LENGTH (parm);
19870 argslen = TREE_VEC_LENGTH (arg);
19871
19872 /* Check for pack expansions in the parameters. */
19873 for (i = 0; i < len; ++i)
19874 {
19875 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19876 {
19877 if (i == len - 1)
19878 /* We can unify against something with a trailing
19879 parameter pack. */
19880 parm_variadic_p = 1;
19881 else
19882 /* [temp.deduct.type]/9: If the template argument list of
19883 P contains a pack expansion that is not the last
19884 template argument, the entire template argument list
19885 is a non-deduced context. */
19886 return unify_success (explain_p);
19887 }
19888 }
19889
19890 /* If we don't have enough arguments to satisfy the parameters
19891 (not counting the pack expression at the end), or we have
19892 too many arguments for a parameter list that doesn't end in
19893 a pack expression, we can't unify. */
19894 if (parm_variadic_p
19895 ? argslen < len - parm_variadic_p
19896 : argslen != len)
19897 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19898
19899 /* Unify all of the parameters that precede the (optional)
19900 pack expression. */
19901 for (i = 0; i < len - parm_variadic_p; ++i)
19902 {
19903 RECUR_AND_CHECK_FAILURE (tparms, targs,
19904 TREE_VEC_ELT (parm, i),
19905 TREE_VEC_ELT (arg, i),
19906 UNIFY_ALLOW_NONE, explain_p);
19907 }
19908 if (parm_variadic_p)
19909 return unify_pack_expansion (tparms, targs, parm, arg,
19910 DEDUCE_EXACT,
19911 /*subr=*/true, explain_p);
19912 return unify_success (explain_p);
19913 }
19914
19915 case RECORD_TYPE:
19916 case UNION_TYPE:
19917 if (TREE_CODE (arg) != TREE_CODE (parm))
19918 return unify_type_mismatch (explain_p, parm, arg);
19919
19920 if (TYPE_PTRMEMFUNC_P (parm))
19921 {
19922 if (!TYPE_PTRMEMFUNC_P (arg))
19923 return unify_type_mismatch (explain_p, parm, arg);
19924
19925 return unify (tparms, targs,
19926 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19927 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19928 strict, explain_p);
19929 }
19930 else if (TYPE_PTRMEMFUNC_P (arg))
19931 return unify_type_mismatch (explain_p, parm, arg);
19932
19933 if (CLASSTYPE_TEMPLATE_INFO (parm))
19934 {
19935 tree t = NULL_TREE;
19936
19937 if (strict_in & UNIFY_ALLOW_DERIVED)
19938 {
19939 /* First, we try to unify the PARM and ARG directly. */
19940 t = try_class_unification (tparms, targs,
19941 parm, arg, explain_p);
19942
19943 if (!t)
19944 {
19945 /* Fallback to the special case allowed in
19946 [temp.deduct.call]:
19947
19948 If P is a class, and P has the form
19949 template-id, then A can be a derived class of
19950 the deduced A. Likewise, if P is a pointer to
19951 a class of the form template-id, A can be a
19952 pointer to a derived class pointed to by the
19953 deduced A. */
19954 enum template_base_result r;
19955 r = get_template_base (tparms, targs, parm, arg,
19956 explain_p, &t);
19957
19958 if (!t)
19959 {
19960 /* Don't give the derived diagnostic if we're
19961 already dealing with the same template. */
19962 bool same_template
19963 = (CLASSTYPE_TEMPLATE_INFO (arg)
19964 && (CLASSTYPE_TI_TEMPLATE (parm)
19965 == CLASSTYPE_TI_TEMPLATE (arg)));
19966 return unify_no_common_base (explain_p && !same_template,
19967 r, parm, arg);
19968 }
19969 }
19970 }
19971 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19972 && (CLASSTYPE_TI_TEMPLATE (parm)
19973 == CLASSTYPE_TI_TEMPLATE (arg)))
19974 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19975 Then, we should unify `int' and `U'. */
19976 t = arg;
19977 else
19978 /* There's no chance of unification succeeding. */
19979 return unify_type_mismatch (explain_p, parm, arg);
19980
19981 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19982 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19983 }
19984 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19985 return unify_type_mismatch (explain_p, parm, arg);
19986 return unify_success (explain_p);
19987
19988 case METHOD_TYPE:
19989 case FUNCTION_TYPE:
19990 {
19991 unsigned int nargs;
19992 tree *args;
19993 tree a;
19994 unsigned int i;
19995
19996 if (TREE_CODE (arg) != TREE_CODE (parm))
19997 return unify_type_mismatch (explain_p, parm, arg);
19998
19999 /* CV qualifications for methods can never be deduced, they must
20000 match exactly. We need to check them explicitly here,
20001 because type_unification_real treats them as any other
20002 cv-qualified parameter. */
20003 if (TREE_CODE (parm) == METHOD_TYPE
20004 && (!check_cv_quals_for_unify
20005 (UNIFY_ALLOW_NONE,
20006 class_of_this_parm (arg),
20007 class_of_this_parm (parm))))
20008 return unify_cv_qual_mismatch (explain_p, parm, arg);
20009
20010 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
20011 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
20012
20013 nargs = list_length (TYPE_ARG_TYPES (arg));
20014 args = XALLOCAVEC (tree, nargs);
20015 for (a = TYPE_ARG_TYPES (arg), i = 0;
20016 a != NULL_TREE && a != void_list_node;
20017 a = TREE_CHAIN (a), ++i)
20018 args[i] = TREE_VALUE (a);
20019 nargs = i;
20020
20021 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
20022 args, nargs, 1, DEDUCE_EXACT,
20023 LOOKUP_NORMAL, NULL, explain_p);
20024 }
20025
20026 case OFFSET_TYPE:
20027 /* Unify a pointer to member with a pointer to member function, which
20028 deduces the type of the member as a function type. */
20029 if (TYPE_PTRMEMFUNC_P (arg))
20030 {
20031 /* Check top-level cv qualifiers */
20032 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
20033 return unify_cv_qual_mismatch (explain_p, parm, arg);
20034
20035 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20036 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
20037 UNIFY_ALLOW_NONE, explain_p);
20038
20039 /* Determine the type of the function we are unifying against. */
20040 tree fntype = static_fn_type (arg);
20041
20042 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
20043 }
20044
20045 if (TREE_CODE (arg) != OFFSET_TYPE)
20046 return unify_type_mismatch (explain_p, parm, arg);
20047 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20048 TYPE_OFFSET_BASETYPE (arg),
20049 UNIFY_ALLOW_NONE, explain_p);
20050 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20051 strict, explain_p);
20052
20053 case CONST_DECL:
20054 if (DECL_TEMPLATE_PARM_P (parm))
20055 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
20056 if (arg != scalar_constant_value (parm))
20057 return unify_template_argument_mismatch (explain_p, parm, arg);
20058 return unify_success (explain_p);
20059
20060 case FIELD_DECL:
20061 case TEMPLATE_DECL:
20062 /* Matched cases are handled by the ARG == PARM test above. */
20063 return unify_template_argument_mismatch (explain_p, parm, arg);
20064
20065 case VAR_DECL:
20066 /* We might get a variable as a non-type template argument in parm if the
20067 corresponding parameter is type-dependent. Make any necessary
20068 adjustments based on whether arg is a reference. */
20069 if (CONSTANT_CLASS_P (arg))
20070 parm = fold_non_dependent_expr (parm);
20071 else if (REFERENCE_REF_P (arg))
20072 {
20073 tree sub = TREE_OPERAND (arg, 0);
20074 STRIP_NOPS (sub);
20075 if (TREE_CODE (sub) == ADDR_EXPR)
20076 arg = TREE_OPERAND (sub, 0);
20077 }
20078 /* Now use the normal expression code to check whether they match. */
20079 goto expr;
20080
20081 case TYPE_ARGUMENT_PACK:
20082 case NONTYPE_ARGUMENT_PACK:
20083 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20084 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20085
20086 case TYPEOF_TYPE:
20087 case DECLTYPE_TYPE:
20088 case UNDERLYING_TYPE:
20089 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20090 or UNDERLYING_TYPE nodes. */
20091 return unify_success (explain_p);
20092
20093 case ERROR_MARK:
20094 /* Unification fails if we hit an error node. */
20095 return unify_invalid (explain_p);
20096
20097 case INDIRECT_REF:
20098 if (REFERENCE_REF_P (parm))
20099 {
20100 if (REFERENCE_REF_P (arg))
20101 arg = TREE_OPERAND (arg, 0);
20102 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20103 strict, explain_p);
20104 }
20105 /* FALLTHRU */
20106
20107 default:
20108 /* An unresolved overload is a nondeduced context. */
20109 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20110 return unify_success (explain_p);
20111 gcc_assert (EXPR_P (parm));
20112 expr:
20113 /* We must be looking at an expression. This can happen with
20114 something like:
20115
20116 template <int I>
20117 void foo(S<I>, S<I + 2>);
20118
20119 This is a "nondeduced context":
20120
20121 [deduct.type]
20122
20123 The nondeduced contexts are:
20124
20125 --A type that is a template-id in which one or more of
20126 the template-arguments is an expression that references
20127 a template-parameter.
20128
20129 In these cases, we assume deduction succeeded, but don't
20130 actually infer any unifications. */
20131
20132 if (!uses_template_parms (parm)
20133 && !template_args_equal (parm, arg))
20134 return unify_expression_unequal (explain_p, parm, arg);
20135 else
20136 return unify_success (explain_p);
20137 }
20138 }
20139 #undef RECUR_AND_CHECK_FAILURE
20140 \f
20141 /* Note that DECL can be defined in this translation unit, if
20142 required. */
20143
20144 static void
20145 mark_definable (tree decl)
20146 {
20147 tree clone;
20148 DECL_NOT_REALLY_EXTERN (decl) = 1;
20149 FOR_EACH_CLONE (clone, decl)
20150 DECL_NOT_REALLY_EXTERN (clone) = 1;
20151 }
20152
20153 /* Called if RESULT is explicitly instantiated, or is a member of an
20154 explicitly instantiated class. */
20155
20156 void
20157 mark_decl_instantiated (tree result, int extern_p)
20158 {
20159 SET_DECL_EXPLICIT_INSTANTIATION (result);
20160
20161 /* If this entity has already been written out, it's too late to
20162 make any modifications. */
20163 if (TREE_ASM_WRITTEN (result))
20164 return;
20165
20166 /* For anonymous namespace we don't need to do anything. */
20167 if (decl_anon_ns_mem_p (result))
20168 {
20169 gcc_assert (!TREE_PUBLIC (result));
20170 return;
20171 }
20172
20173 if (TREE_CODE (result) != FUNCTION_DECL)
20174 /* The TREE_PUBLIC flag for function declarations will have been
20175 set correctly by tsubst. */
20176 TREE_PUBLIC (result) = 1;
20177
20178 /* This might have been set by an earlier implicit instantiation. */
20179 DECL_COMDAT (result) = 0;
20180
20181 if (extern_p)
20182 DECL_NOT_REALLY_EXTERN (result) = 0;
20183 else
20184 {
20185 mark_definable (result);
20186 mark_needed (result);
20187 /* Always make artificials weak. */
20188 if (DECL_ARTIFICIAL (result) && flag_weak)
20189 comdat_linkage (result);
20190 /* For WIN32 we also want to put explicit instantiations in
20191 linkonce sections. */
20192 else if (TREE_PUBLIC (result))
20193 maybe_make_one_only (result);
20194 }
20195
20196 /* If EXTERN_P, then this function will not be emitted -- unless
20197 followed by an explicit instantiation, at which point its linkage
20198 will be adjusted. If !EXTERN_P, then this function will be
20199 emitted here. In neither circumstance do we want
20200 import_export_decl to adjust the linkage. */
20201 DECL_INTERFACE_KNOWN (result) = 1;
20202 }
20203
20204 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
20205 important template arguments. If any are missing, we check whether
20206 they're important by using error_mark_node for substituting into any
20207 args that were used for partial ordering (the ones between ARGS and END)
20208 and seeing if it bubbles up. */
20209
20210 static bool
20211 check_undeduced_parms (tree targs, tree args, tree end)
20212 {
20213 bool found = false;
20214 int i;
20215 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
20216 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
20217 {
20218 found = true;
20219 TREE_VEC_ELT (targs, i) = error_mark_node;
20220 }
20221 if (found)
20222 {
20223 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
20224 if (substed == error_mark_node)
20225 return true;
20226 }
20227 return false;
20228 }
20229
20230 /* Given two function templates PAT1 and PAT2, return:
20231
20232 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20233 -1 if PAT2 is more specialized than PAT1.
20234 0 if neither is more specialized.
20235
20236 LEN indicates the number of parameters we should consider
20237 (defaulted parameters should not be considered).
20238
20239 The 1998 std underspecified function template partial ordering, and
20240 DR214 addresses the issue. We take pairs of arguments, one from
20241 each of the templates, and deduce them against each other. One of
20242 the templates will be more specialized if all the *other*
20243 template's arguments deduce against its arguments and at least one
20244 of its arguments *does* *not* deduce against the other template's
20245 corresponding argument. Deduction is done as for class templates.
20246 The arguments used in deduction have reference and top level cv
20247 qualifiers removed. Iff both arguments were originally reference
20248 types *and* deduction succeeds in both directions, an lvalue reference
20249 wins against an rvalue reference and otherwise the template
20250 with the more cv-qualified argument wins for that pairing (if
20251 neither is more cv-qualified, they both are equal). Unlike regular
20252 deduction, after all the arguments have been deduced in this way,
20253 we do *not* verify the deduced template argument values can be
20254 substituted into non-deduced contexts.
20255
20256 The logic can be a bit confusing here, because we look at deduce1 and
20257 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20258 can find template arguments for pat1 to make arg1 look like arg2, that
20259 means that arg2 is at least as specialized as arg1. */
20260
20261 int
20262 more_specialized_fn (tree pat1, tree pat2, int len)
20263 {
20264 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20265 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20266 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20267 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20268 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20269 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20270 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20271 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20272 tree origs1, origs2;
20273 bool lose1 = false;
20274 bool lose2 = false;
20275
20276 /* Remove the this parameter from non-static member functions. If
20277 one is a non-static member function and the other is not a static
20278 member function, remove the first parameter from that function
20279 also. This situation occurs for operator functions where we
20280 locate both a member function (with this pointer) and non-member
20281 operator (with explicit first operand). */
20282 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20283 {
20284 len--; /* LEN is the number of significant arguments for DECL1 */
20285 args1 = TREE_CHAIN (args1);
20286 if (!DECL_STATIC_FUNCTION_P (decl2))
20287 args2 = TREE_CHAIN (args2);
20288 }
20289 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20290 {
20291 args2 = TREE_CHAIN (args2);
20292 if (!DECL_STATIC_FUNCTION_P (decl1))
20293 {
20294 len--;
20295 args1 = TREE_CHAIN (args1);
20296 }
20297 }
20298
20299 /* If only one is a conversion operator, they are unordered. */
20300 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20301 return 0;
20302
20303 /* Consider the return type for a conversion function */
20304 if (DECL_CONV_FN_P (decl1))
20305 {
20306 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20307 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20308 len++;
20309 }
20310
20311 processing_template_decl++;
20312
20313 origs1 = args1;
20314 origs2 = args2;
20315
20316 while (len--
20317 /* Stop when an ellipsis is seen. */
20318 && args1 != NULL_TREE && args2 != NULL_TREE)
20319 {
20320 tree arg1 = TREE_VALUE (args1);
20321 tree arg2 = TREE_VALUE (args2);
20322 int deduce1, deduce2;
20323 int quals1 = -1;
20324 int quals2 = -1;
20325 int ref1 = 0;
20326 int ref2 = 0;
20327
20328 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20329 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20330 {
20331 /* When both arguments are pack expansions, we need only
20332 unify the patterns themselves. */
20333 arg1 = PACK_EXPANSION_PATTERN (arg1);
20334 arg2 = PACK_EXPANSION_PATTERN (arg2);
20335
20336 /* This is the last comparison we need to do. */
20337 len = 0;
20338 }
20339
20340 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20341 {
20342 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20343 arg1 = TREE_TYPE (arg1);
20344 quals1 = cp_type_quals (arg1);
20345 }
20346
20347 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20348 {
20349 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20350 arg2 = TREE_TYPE (arg2);
20351 quals2 = cp_type_quals (arg2);
20352 }
20353
20354 arg1 = TYPE_MAIN_VARIANT (arg1);
20355 arg2 = TYPE_MAIN_VARIANT (arg2);
20356
20357 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20358 {
20359 int i, len2 = remaining_arguments (args2);
20360 tree parmvec = make_tree_vec (1);
20361 tree argvec = make_tree_vec (len2);
20362 tree ta = args2;
20363
20364 /* Setup the parameter vector, which contains only ARG1. */
20365 TREE_VEC_ELT (parmvec, 0) = arg1;
20366
20367 /* Setup the argument vector, which contains the remaining
20368 arguments. */
20369 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20370 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20371
20372 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20373 argvec, DEDUCE_EXACT,
20374 /*subr=*/true, /*explain_p=*/false)
20375 == 0);
20376
20377 /* We cannot deduce in the other direction, because ARG1 is
20378 a pack expansion but ARG2 is not. */
20379 deduce2 = 0;
20380 }
20381 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20382 {
20383 int i, len1 = remaining_arguments (args1);
20384 tree parmvec = make_tree_vec (1);
20385 tree argvec = make_tree_vec (len1);
20386 tree ta = args1;
20387
20388 /* Setup the parameter vector, which contains only ARG1. */
20389 TREE_VEC_ELT (parmvec, 0) = arg2;
20390
20391 /* Setup the argument vector, which contains the remaining
20392 arguments. */
20393 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20394 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20395
20396 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20397 argvec, DEDUCE_EXACT,
20398 /*subr=*/true, /*explain_p=*/false)
20399 == 0);
20400
20401 /* We cannot deduce in the other direction, because ARG2 is
20402 a pack expansion but ARG1 is not.*/
20403 deduce1 = 0;
20404 }
20405
20406 else
20407 {
20408 /* The normal case, where neither argument is a pack
20409 expansion. */
20410 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20411 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20412 == 0);
20413 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20414 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20415 == 0);
20416 }
20417
20418 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20419 arg2, then arg2 is not as specialized as arg1. */
20420 if (!deduce1)
20421 lose2 = true;
20422 if (!deduce2)
20423 lose1 = true;
20424
20425 /* "If, for a given type, deduction succeeds in both directions
20426 (i.e., the types are identical after the transformations above)
20427 and both P and A were reference types (before being replaced with
20428 the type referred to above):
20429 - if the type from the argument template was an lvalue reference and
20430 the type from the parameter template was not, the argument type is
20431 considered to be more specialized than the other; otherwise,
20432 - if the type from the argument template is more cv-qualified
20433 than the type from the parameter template (as described above),
20434 the argument type is considered to be more specialized than the other;
20435 otherwise,
20436 - neither type is more specialized than the other." */
20437
20438 if (deduce1 && deduce2)
20439 {
20440 if (ref1 && ref2 && ref1 != ref2)
20441 {
20442 if (ref1 > ref2)
20443 lose1 = true;
20444 else
20445 lose2 = true;
20446 }
20447 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20448 {
20449 if ((quals1 & quals2) == quals2)
20450 lose2 = true;
20451 if ((quals1 & quals2) == quals1)
20452 lose1 = true;
20453 }
20454 }
20455
20456 if (lose1 && lose2)
20457 /* We've failed to deduce something in either direction.
20458 These must be unordered. */
20459 break;
20460
20461 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20462 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20463 /* We have already processed all of the arguments in our
20464 handing of the pack expansion type. */
20465 len = 0;
20466
20467 args1 = TREE_CHAIN (args1);
20468 args2 = TREE_CHAIN (args2);
20469 }
20470
20471 /* "In most cases, all template parameters must have values in order for
20472 deduction to succeed, but for partial ordering purposes a template
20473 parameter may remain without a value provided it is not used in the
20474 types being used for partial ordering."
20475
20476 Thus, if we are missing any of the targs1 we need to substitute into
20477 origs1, then pat2 is not as specialized as pat1. This can happen when
20478 there is a nondeduced context. */
20479 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20480 lose2 = true;
20481 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20482 lose1 = true;
20483
20484 processing_template_decl--;
20485
20486 /* If both deductions succeed, the partial ordering selects the more
20487 constrained template. */
20488 if (!lose1 && !lose2)
20489 {
20490 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20491 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20492 lose1 = !subsumes_constraints (c1, c2);
20493 lose2 = !subsumes_constraints (c2, c1);
20494 }
20495
20496 /* All things being equal, if the next argument is a pack expansion
20497 for one function but not for the other, prefer the
20498 non-variadic function. FIXME this is bogus; see c++/41958. */
20499 if (lose1 == lose2
20500 && args1 && TREE_VALUE (args1)
20501 && args2 && TREE_VALUE (args2))
20502 {
20503 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20504 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20505 }
20506
20507 if (lose1 == lose2)
20508 return 0;
20509 else if (!lose1)
20510 return 1;
20511 else
20512 return -1;
20513 }
20514
20515 /* Determine which of two partial specializations of TMPL is more
20516 specialized.
20517
20518 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20519 to the first partial specialization. The TREE_PURPOSE is the
20520 innermost set of template parameters for the partial
20521 specialization. PAT2 is similar, but for the second template.
20522
20523 Return 1 if the first partial specialization is more specialized;
20524 -1 if the second is more specialized; 0 if neither is more
20525 specialized.
20526
20527 See [temp.class.order] for information about determining which of
20528 two templates is more specialized. */
20529
20530 static int
20531 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20532 {
20533 tree targs;
20534 int winner = 0;
20535 bool any_deductions = false;
20536
20537 tree tmpl1 = TREE_VALUE (pat1);
20538 tree tmpl2 = TREE_VALUE (pat2);
20539 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20540 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20541 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20542 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20543
20544 /* Just like what happens for functions, if we are ordering between
20545 different template specializations, we may encounter dependent
20546 types in the arguments, and we need our dependency check functions
20547 to behave correctly. */
20548 ++processing_template_decl;
20549 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20550 if (targs)
20551 {
20552 --winner;
20553 any_deductions = true;
20554 }
20555
20556 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20557 if (targs)
20558 {
20559 ++winner;
20560 any_deductions = true;
20561 }
20562 --processing_template_decl;
20563
20564 /* If both deductions succeed, the partial ordering selects the more
20565 constrained template. */
20566 if (!winner && any_deductions)
20567 return more_constrained (tmpl1, tmpl2);
20568
20569 /* In the case of a tie where at least one of the templates
20570 has a parameter pack at the end, the template with the most
20571 non-packed parameters wins. */
20572 if (winner == 0
20573 && any_deductions
20574 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20575 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20576 {
20577 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20578 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20579 int len1 = TREE_VEC_LENGTH (args1);
20580 int len2 = TREE_VEC_LENGTH (args2);
20581
20582 /* We don't count the pack expansion at the end. */
20583 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20584 --len1;
20585 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20586 --len2;
20587
20588 if (len1 > len2)
20589 return 1;
20590 else if (len1 < len2)
20591 return -1;
20592 }
20593
20594 return winner;
20595 }
20596
20597 /* Return the template arguments that will produce the function signature
20598 DECL from the function template FN, with the explicit template
20599 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20600 also match. Return NULL_TREE if no satisfactory arguments could be
20601 found. */
20602
20603 static tree
20604 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20605 {
20606 int ntparms = DECL_NTPARMS (fn);
20607 tree targs = make_tree_vec (ntparms);
20608 tree decl_type = TREE_TYPE (decl);
20609 tree decl_arg_types;
20610 tree *args;
20611 unsigned int nargs, ix;
20612 tree arg;
20613
20614 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20615
20616 /* Never do unification on the 'this' parameter. */
20617 decl_arg_types = skip_artificial_parms_for (decl,
20618 TYPE_ARG_TYPES (decl_type));
20619
20620 nargs = list_length (decl_arg_types);
20621 args = XALLOCAVEC (tree, nargs);
20622 for (arg = decl_arg_types, ix = 0;
20623 arg != NULL_TREE && arg != void_list_node;
20624 arg = TREE_CHAIN (arg), ++ix)
20625 args[ix] = TREE_VALUE (arg);
20626
20627 if (fn_type_unification (fn, explicit_args, targs,
20628 args, ix,
20629 (check_rettype || DECL_CONV_FN_P (fn)
20630 ? TREE_TYPE (decl_type) : NULL_TREE),
20631 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20632 /*decltype*/false)
20633 == error_mark_node)
20634 return NULL_TREE;
20635
20636 return targs;
20637 }
20638
20639 /* Return the innermost template arguments that, when applied to a partial
20640 specialization of TMPL whose innermost template parameters are
20641 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20642 ARGS.
20643
20644 For example, suppose we have:
20645
20646 template <class T, class U> struct S {};
20647 template <class T> struct S<T*, int> {};
20648
20649 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20650 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20651 int}. The resulting vector will be {double}, indicating that `T'
20652 is bound to `double'. */
20653
20654 static tree
20655 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20656 {
20657 int i, ntparms = TREE_VEC_LENGTH (tparms);
20658 tree deduced_args;
20659 tree innermost_deduced_args;
20660
20661 innermost_deduced_args = make_tree_vec (ntparms);
20662 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20663 {
20664 deduced_args = copy_node (args);
20665 SET_TMPL_ARGS_LEVEL (deduced_args,
20666 TMPL_ARGS_DEPTH (deduced_args),
20667 innermost_deduced_args);
20668 }
20669 else
20670 deduced_args = innermost_deduced_args;
20671
20672 if (unify (tparms, deduced_args,
20673 INNERMOST_TEMPLATE_ARGS (spec_args),
20674 INNERMOST_TEMPLATE_ARGS (args),
20675 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20676 return NULL_TREE;
20677
20678 for (i = 0; i < ntparms; ++i)
20679 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20680 return NULL_TREE;
20681
20682 /* Verify that nondeduced template arguments agree with the type
20683 obtained from argument deduction.
20684
20685 For example:
20686
20687 struct A { typedef int X; };
20688 template <class T, class U> struct C {};
20689 template <class T> struct C<T, typename T::X> {};
20690
20691 Then with the instantiation `C<A, int>', we can deduce that
20692 `T' is `A' but unify () does not check whether `typename T::X'
20693 is `int'. */
20694 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20695 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20696 spec_args, tmpl,
20697 tf_none, false, false);
20698 if (spec_args == error_mark_node
20699 /* We only need to check the innermost arguments; the other
20700 arguments will always agree. */
20701 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20702 INNERMOST_TEMPLATE_ARGS (args)))
20703 return NULL_TREE;
20704
20705 /* Now that we have bindings for all of the template arguments,
20706 ensure that the arguments deduced for the template template
20707 parameters have compatible template parameter lists. See the use
20708 of template_template_parm_bindings_ok_p in fn_type_unification
20709 for more information. */
20710 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20711 return NULL_TREE;
20712
20713 return deduced_args;
20714 }
20715
20716 // Compare two function templates T1 and T2 by deducing bindings
20717 // from one against the other. If both deductions succeed, compare
20718 // constraints to see which is more constrained.
20719 static int
20720 more_specialized_inst (tree t1, tree t2)
20721 {
20722 int fate = 0;
20723 int count = 0;
20724
20725 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20726 {
20727 --fate;
20728 ++count;
20729 }
20730
20731 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20732 {
20733 ++fate;
20734 ++count;
20735 }
20736
20737 // If both deductions succeed, then one may be more constrained.
20738 if (count == 2 && fate == 0)
20739 fate = more_constrained (t1, t2);
20740
20741 return fate;
20742 }
20743
20744 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20745 Return the TREE_LIST node with the most specialized template, if
20746 any. If there is no most specialized template, the error_mark_node
20747 is returned.
20748
20749 Note that this function does not look at, or modify, the
20750 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20751 returned is one of the elements of INSTANTIATIONS, callers may
20752 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20753 and retrieve it from the value returned. */
20754
20755 tree
20756 most_specialized_instantiation (tree templates)
20757 {
20758 tree fn, champ;
20759
20760 ++processing_template_decl;
20761
20762 champ = templates;
20763 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20764 {
20765 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20766 if (fate == -1)
20767 champ = fn;
20768 else if (!fate)
20769 {
20770 /* Equally specialized, move to next function. If there
20771 is no next function, nothing's most specialized. */
20772 fn = TREE_CHAIN (fn);
20773 champ = fn;
20774 if (!fn)
20775 break;
20776 }
20777 }
20778
20779 if (champ)
20780 /* Now verify that champ is better than everything earlier in the
20781 instantiation list. */
20782 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20783 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20784 {
20785 champ = NULL_TREE;
20786 break;
20787 }
20788 }
20789
20790 processing_template_decl--;
20791
20792 if (!champ)
20793 return error_mark_node;
20794
20795 return champ;
20796 }
20797
20798 /* If DECL is a specialization of some template, return the most
20799 general such template. Otherwise, returns NULL_TREE.
20800
20801 For example, given:
20802
20803 template <class T> struct S { template <class U> void f(U); };
20804
20805 if TMPL is `template <class U> void S<int>::f(U)' this will return
20806 the full template. This function will not trace past partial
20807 specializations, however. For example, given in addition:
20808
20809 template <class T> struct S<T*> { template <class U> void f(U); };
20810
20811 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20812 `template <class T> template <class U> S<T*>::f(U)'. */
20813
20814 tree
20815 most_general_template (tree decl)
20816 {
20817 if (TREE_CODE (decl) != TEMPLATE_DECL)
20818 {
20819 if (tree tinfo = get_template_info (decl))
20820 decl = TI_TEMPLATE (tinfo);
20821 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20822 template friend, or a FIELD_DECL for a capture pack. */
20823 if (TREE_CODE (decl) != TEMPLATE_DECL)
20824 return NULL_TREE;
20825 }
20826
20827 /* Look for more and more general templates. */
20828 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20829 {
20830 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20831 (See cp-tree.h for details.) */
20832 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20833 break;
20834
20835 if (CLASS_TYPE_P (TREE_TYPE (decl))
20836 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20837 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20838 break;
20839
20840 /* Stop if we run into an explicitly specialized class template. */
20841 if (!DECL_NAMESPACE_SCOPE_P (decl)
20842 && DECL_CONTEXT (decl)
20843 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20844 break;
20845
20846 decl = DECL_TI_TEMPLATE (decl);
20847 }
20848
20849 return decl;
20850 }
20851
20852 /* True iff the TEMPLATE_DECL tmpl is a partial specialization. */
20853
20854 static bool
20855 partial_specialization_p (tree tmpl)
20856 {
20857 /* Any specialization has DECL_TEMPLATE_SPECIALIZATION. */
20858 if (!DECL_TEMPLATE_SPECIALIZATION (tmpl))
20859 return false;
20860 tree t = DECL_TI_TEMPLATE (tmpl);
20861 /* A specialization that fully specializes one of the containing classes is
20862 not a partial specialization. */
20863 return (list_length (DECL_TEMPLATE_PARMS (tmpl))
20864 == list_length (DECL_TEMPLATE_PARMS (t)));
20865 }
20866
20867 /* If TMPL is a partial specialization, return the arguments for its primary
20868 template. */
20869
20870 static tree
20871 impartial_args (tree tmpl, tree args)
20872 {
20873 if (!partial_specialization_p (tmpl))
20874 return args;
20875
20876 /* If TMPL is a partial specialization, we need to substitute to get
20877 the args for the primary template. */
20878 return tsubst_template_args (DECL_TI_ARGS (tmpl), args,
20879 tf_warning_or_error, tmpl);
20880 }
20881
20882 /* Return the most specialized of the template partial specializations
20883 which can produce TARGET, a specialization of some class or variable
20884 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20885 a TEMPLATE_DECL node corresponding to the partial specialization, while
20886 the TREE_PURPOSE is the set of template arguments that must be
20887 substituted into the template pattern in order to generate TARGET.
20888
20889 If the choice of partial specialization is ambiguous, a diagnostic
20890 is issued, and the error_mark_node is returned. If there are no
20891 partial specializations matching TARGET, then NULL_TREE is
20892 returned, indicating that the primary template should be used. */
20893
20894 static tree
20895 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20896 {
20897 tree list = NULL_TREE;
20898 tree t;
20899 tree champ;
20900 int fate;
20901 bool ambiguous_p;
20902 tree outer_args = NULL_TREE;
20903 tree tmpl, args;
20904
20905 if (TYPE_P (target))
20906 {
20907 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20908 tmpl = TI_TEMPLATE (tinfo);
20909 args = TI_ARGS (tinfo);
20910 }
20911 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20912 {
20913 tmpl = TREE_OPERAND (target, 0);
20914 args = TREE_OPERAND (target, 1);
20915 }
20916 else if (VAR_P (target))
20917 {
20918 tree tinfo = DECL_TEMPLATE_INFO (target);
20919 tmpl = TI_TEMPLATE (tinfo);
20920 args = TI_ARGS (tinfo);
20921 }
20922 else
20923 gcc_unreachable ();
20924
20925 tree main_tmpl = most_general_template (tmpl);
20926
20927 /* For determining which partial specialization to use, only the
20928 innermost args are interesting. */
20929 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20930 {
20931 outer_args = strip_innermost_template_args (args, 1);
20932 args = INNERMOST_TEMPLATE_ARGS (args);
20933 }
20934
20935 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20936 {
20937 tree partial_spec_args;
20938 tree spec_args;
20939 tree spec_tmpl = TREE_VALUE (t);
20940
20941 partial_spec_args = TREE_PURPOSE (t);
20942
20943 ++processing_template_decl;
20944
20945 if (outer_args)
20946 {
20947 /* Discard the outer levels of args, and then substitute in the
20948 template args from the enclosing class. */
20949 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20950 partial_spec_args = tsubst_template_args
20951 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20952
20953 /* And the same for the partial specialization TEMPLATE_DECL. */
20954 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20955 }
20956
20957 partial_spec_args =
20958 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20959 partial_spec_args,
20960 tmpl, tf_none,
20961 /*require_all_args=*/true,
20962 /*use_default_args=*/true);
20963
20964 --processing_template_decl;
20965
20966 if (partial_spec_args == error_mark_node)
20967 return error_mark_node;
20968 if (spec_tmpl == error_mark_node)
20969 return error_mark_node;
20970
20971 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20972 spec_args = get_partial_spec_bindings (tmpl, parms,
20973 partial_spec_args,
20974 args);
20975 if (spec_args)
20976 {
20977 if (outer_args)
20978 spec_args = add_to_template_args (outer_args, spec_args);
20979
20980 /* Keep the candidate only if the constraints are satisfied,
20981 or if we're not compiling with concepts. */
20982 if (!flag_concepts
20983 || constraints_satisfied_p (spec_tmpl, spec_args))
20984 {
20985 list = tree_cons (spec_args, TREE_VALUE (t), list);
20986 TREE_TYPE (list) = TREE_TYPE (t);
20987 }
20988 }
20989 }
20990
20991 if (! list)
20992 return NULL_TREE;
20993
20994 ambiguous_p = false;
20995 t = list;
20996 champ = t;
20997 t = TREE_CHAIN (t);
20998 for (; t; t = TREE_CHAIN (t))
20999 {
21000 fate = more_specialized_partial_spec (tmpl, champ, t);
21001 if (fate == 1)
21002 ;
21003 else
21004 {
21005 if (fate == 0)
21006 {
21007 t = TREE_CHAIN (t);
21008 if (! t)
21009 {
21010 ambiguous_p = true;
21011 break;
21012 }
21013 }
21014 champ = t;
21015 }
21016 }
21017
21018 if (!ambiguous_p)
21019 for (t = list; t && t != champ; t = TREE_CHAIN (t))
21020 {
21021 fate = more_specialized_partial_spec (tmpl, champ, t);
21022 if (fate != 1)
21023 {
21024 ambiguous_p = true;
21025 break;
21026 }
21027 }
21028
21029 if (ambiguous_p)
21030 {
21031 const char *str;
21032 char *spaces = NULL;
21033 if (!(complain & tf_error))
21034 return error_mark_node;
21035 if (TYPE_P (target))
21036 error ("ambiguous template instantiation for %q#T", target);
21037 else
21038 error ("ambiguous template instantiation for %q#D", target);
21039 str = ngettext ("candidate is:", "candidates are:", list_length (list));
21040 for (t = list; t; t = TREE_CHAIN (t))
21041 {
21042 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
21043 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
21044 "%s %#S", spaces ? spaces : str, subst);
21045 spaces = spaces ? spaces : get_spaces (str);
21046 }
21047 free (spaces);
21048 return error_mark_node;
21049 }
21050
21051 return champ;
21052 }
21053
21054 /* Explicitly instantiate DECL. */
21055
21056 void
21057 do_decl_instantiation (tree decl, tree storage)
21058 {
21059 tree result = NULL_TREE;
21060 int extern_p = 0;
21061
21062 if (!decl || decl == error_mark_node)
21063 /* An error occurred, for which grokdeclarator has already issued
21064 an appropriate message. */
21065 return;
21066 else if (! DECL_LANG_SPECIFIC (decl))
21067 {
21068 error ("explicit instantiation of non-template %q#D", decl);
21069 return;
21070 }
21071
21072 bool var_templ = (DECL_TEMPLATE_INFO (decl)
21073 && variable_template_p (DECL_TI_TEMPLATE (decl)));
21074
21075 if (VAR_P (decl) && !var_templ)
21076 {
21077 /* There is an asymmetry here in the way VAR_DECLs and
21078 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21079 the latter, the DECL we get back will be marked as a
21080 template instantiation, and the appropriate
21081 DECL_TEMPLATE_INFO will be set up. This does not happen for
21082 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21083 should handle VAR_DECLs as it currently handles
21084 FUNCTION_DECLs. */
21085 if (!DECL_CLASS_SCOPE_P (decl))
21086 {
21087 error ("%qD is not a static data member of a class template", decl);
21088 return;
21089 }
21090 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21091 if (!result || !VAR_P (result))
21092 {
21093 error ("no matching template for %qD found", decl);
21094 return;
21095 }
21096 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21097 {
21098 error ("type %qT for explicit instantiation %qD does not match "
21099 "declared type %qT", TREE_TYPE (result), decl,
21100 TREE_TYPE (decl));
21101 return;
21102 }
21103 }
21104 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21105 {
21106 error ("explicit instantiation of %q#D", decl);
21107 return;
21108 }
21109 else
21110 result = decl;
21111
21112 /* Check for various error cases. Note that if the explicit
21113 instantiation is valid the RESULT will currently be marked as an
21114 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21115 until we get here. */
21116
21117 if (DECL_TEMPLATE_SPECIALIZATION (result))
21118 {
21119 /* DR 259 [temp.spec].
21120
21121 Both an explicit instantiation and a declaration of an explicit
21122 specialization shall not appear in a program unless the explicit
21123 instantiation follows a declaration of the explicit specialization.
21124
21125 For a given set of template parameters, if an explicit
21126 instantiation of a template appears after a declaration of an
21127 explicit specialization for that template, the explicit
21128 instantiation has no effect. */
21129 return;
21130 }
21131 else if (DECL_EXPLICIT_INSTANTIATION (result))
21132 {
21133 /* [temp.spec]
21134
21135 No program shall explicitly instantiate any template more
21136 than once.
21137
21138 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21139 the first instantiation was `extern' and the second is not,
21140 and EXTERN_P for the opposite case. */
21141 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21142 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21143 /* If an "extern" explicit instantiation follows an ordinary
21144 explicit instantiation, the template is instantiated. */
21145 if (extern_p)
21146 return;
21147 }
21148 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21149 {
21150 error ("no matching template for %qD found", result);
21151 return;
21152 }
21153 else if (!DECL_TEMPLATE_INFO (result))
21154 {
21155 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21156 return;
21157 }
21158
21159 if (storage == NULL_TREE)
21160 ;
21161 else if (storage == ridpointers[(int) RID_EXTERN])
21162 {
21163 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21164 pedwarn (input_location, OPT_Wpedantic,
21165 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21166 "instantiations");
21167 extern_p = 1;
21168 }
21169 else
21170 error ("storage class %qD applied to template instantiation", storage);
21171
21172 check_explicit_instantiation_namespace (result);
21173 mark_decl_instantiated (result, extern_p);
21174 if (! extern_p)
21175 instantiate_decl (result, /*defer_ok=*/1,
21176 /*expl_inst_class_mem_p=*/false);
21177 }
21178
21179 static void
21180 mark_class_instantiated (tree t, int extern_p)
21181 {
21182 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21183 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21184 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21185 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21186 if (! extern_p)
21187 {
21188 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21189 rest_of_type_compilation (t, 1);
21190 }
21191 }
21192
21193 /* Called from do_type_instantiation through binding_table_foreach to
21194 do recursive instantiation for the type bound in ENTRY. */
21195 static void
21196 bt_instantiate_type_proc (binding_entry entry, void *data)
21197 {
21198 tree storage = *(tree *) data;
21199
21200 if (MAYBE_CLASS_TYPE_P (entry->type)
21201 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21202 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21203 }
21204
21205 /* Called from do_type_instantiation to instantiate a member
21206 (a member function or a static member variable) of an
21207 explicitly instantiated class template. */
21208 static void
21209 instantiate_class_member (tree decl, int extern_p)
21210 {
21211 mark_decl_instantiated (decl, extern_p);
21212 if (! extern_p)
21213 instantiate_decl (decl, /*defer_ok=*/1,
21214 /*expl_inst_class_mem_p=*/true);
21215 }
21216
21217 /* Perform an explicit instantiation of template class T. STORAGE, if
21218 non-null, is the RID for extern, inline or static. COMPLAIN is
21219 nonzero if this is called from the parser, zero if called recursively,
21220 since the standard is unclear (as detailed below). */
21221
21222 void
21223 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
21224 {
21225 int extern_p = 0;
21226 int nomem_p = 0;
21227 int static_p = 0;
21228 int previous_instantiation_extern_p = 0;
21229
21230 if (TREE_CODE (t) == TYPE_DECL)
21231 t = TREE_TYPE (t);
21232
21233 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
21234 {
21235 tree tmpl =
21236 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
21237 if (tmpl)
21238 error ("explicit instantiation of non-class template %qD", tmpl);
21239 else
21240 error ("explicit instantiation of non-template type %qT", t);
21241 return;
21242 }
21243
21244 complete_type (t);
21245
21246 if (!COMPLETE_TYPE_P (t))
21247 {
21248 if (complain & tf_error)
21249 error ("explicit instantiation of %q#T before definition of template",
21250 t);
21251 return;
21252 }
21253
21254 if (storage != NULL_TREE)
21255 {
21256 if (!in_system_header_at (input_location))
21257 {
21258 if (storage == ridpointers[(int) RID_EXTERN])
21259 {
21260 if (cxx_dialect == cxx98)
21261 pedwarn (input_location, OPT_Wpedantic,
21262 "ISO C++ 1998 forbids the use of %<extern%> on "
21263 "explicit instantiations");
21264 }
21265 else
21266 pedwarn (input_location, OPT_Wpedantic,
21267 "ISO C++ forbids the use of %qE"
21268 " on explicit instantiations", storage);
21269 }
21270
21271 if (storage == ridpointers[(int) RID_INLINE])
21272 nomem_p = 1;
21273 else if (storage == ridpointers[(int) RID_EXTERN])
21274 extern_p = 1;
21275 else if (storage == ridpointers[(int) RID_STATIC])
21276 static_p = 1;
21277 else
21278 {
21279 error ("storage class %qD applied to template instantiation",
21280 storage);
21281 extern_p = 0;
21282 }
21283 }
21284
21285 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21286 {
21287 /* DR 259 [temp.spec].
21288
21289 Both an explicit instantiation and a declaration of an explicit
21290 specialization shall not appear in a program unless the explicit
21291 instantiation follows a declaration of the explicit specialization.
21292
21293 For a given set of template parameters, if an explicit
21294 instantiation of a template appears after a declaration of an
21295 explicit specialization for that template, the explicit
21296 instantiation has no effect. */
21297 return;
21298 }
21299 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21300 {
21301 /* [temp.spec]
21302
21303 No program shall explicitly instantiate any template more
21304 than once.
21305
21306 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21307 instantiation was `extern'. If EXTERN_P then the second is.
21308 These cases are OK. */
21309 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21310
21311 if (!previous_instantiation_extern_p && !extern_p
21312 && (complain & tf_error))
21313 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21314
21315 /* If we've already instantiated the template, just return now. */
21316 if (!CLASSTYPE_INTERFACE_ONLY (t))
21317 return;
21318 }
21319
21320 check_explicit_instantiation_namespace (TYPE_NAME (t));
21321 mark_class_instantiated (t, extern_p);
21322
21323 if (nomem_p)
21324 return;
21325
21326 {
21327 tree tmp;
21328
21329 /* In contrast to implicit instantiation, where only the
21330 declarations, and not the definitions, of members are
21331 instantiated, we have here:
21332
21333 [temp.explicit]
21334
21335 The explicit instantiation of a class template specialization
21336 implies the instantiation of all of its members not
21337 previously explicitly specialized in the translation unit
21338 containing the explicit instantiation.
21339
21340 Of course, we can't instantiate member template classes, since
21341 we don't have any arguments for them. Note that the standard
21342 is unclear on whether the instantiation of the members are
21343 *explicit* instantiations or not. However, the most natural
21344 interpretation is that it should be an explicit instantiation. */
21345
21346 if (! static_p)
21347 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21348 if (TREE_CODE (tmp) == FUNCTION_DECL
21349 && DECL_TEMPLATE_INSTANTIATION (tmp))
21350 instantiate_class_member (tmp, extern_p);
21351
21352 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21353 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21354 instantiate_class_member (tmp, extern_p);
21355
21356 if (CLASSTYPE_NESTED_UTDS (t))
21357 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21358 bt_instantiate_type_proc, &storage);
21359 }
21360 }
21361
21362 /* Given a function DECL, which is a specialization of TMPL, modify
21363 DECL to be a re-instantiation of TMPL with the same template
21364 arguments. TMPL should be the template into which tsubst'ing
21365 should occur for DECL, not the most general template.
21366
21367 One reason for doing this is a scenario like this:
21368
21369 template <class T>
21370 void f(const T&, int i);
21371
21372 void g() { f(3, 7); }
21373
21374 template <class T>
21375 void f(const T& t, const int i) { }
21376
21377 Note that when the template is first instantiated, with
21378 instantiate_template, the resulting DECL will have no name for the
21379 first parameter, and the wrong type for the second. So, when we go
21380 to instantiate the DECL, we regenerate it. */
21381
21382 static void
21383 regenerate_decl_from_template (tree decl, tree tmpl)
21384 {
21385 /* The arguments used to instantiate DECL, from the most general
21386 template. */
21387 tree args;
21388 tree code_pattern;
21389
21390 args = DECL_TI_ARGS (decl);
21391 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21392
21393 /* Make sure that we can see identifiers, and compute access
21394 correctly. */
21395 push_access_scope (decl);
21396
21397 if (TREE_CODE (decl) == FUNCTION_DECL)
21398 {
21399 tree decl_parm;
21400 tree pattern_parm;
21401 tree specs;
21402 int args_depth;
21403 int parms_depth;
21404
21405 args_depth = TMPL_ARGS_DEPTH (args);
21406 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21407 if (args_depth > parms_depth)
21408 args = get_innermost_template_args (args, parms_depth);
21409
21410 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21411 args, tf_error, NULL_TREE,
21412 /*defer_ok*/false);
21413 if (specs && specs != error_mark_node)
21414 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21415 specs);
21416
21417 /* Merge parameter declarations. */
21418 decl_parm = skip_artificial_parms_for (decl,
21419 DECL_ARGUMENTS (decl));
21420 pattern_parm
21421 = skip_artificial_parms_for (code_pattern,
21422 DECL_ARGUMENTS (code_pattern));
21423 while (decl_parm && !DECL_PACK_P (pattern_parm))
21424 {
21425 tree parm_type;
21426 tree attributes;
21427
21428 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21429 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21430 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21431 NULL_TREE);
21432 parm_type = type_decays_to (parm_type);
21433 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21434 TREE_TYPE (decl_parm) = parm_type;
21435 attributes = DECL_ATTRIBUTES (pattern_parm);
21436 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21437 {
21438 DECL_ATTRIBUTES (decl_parm) = attributes;
21439 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21440 }
21441 decl_parm = DECL_CHAIN (decl_parm);
21442 pattern_parm = DECL_CHAIN (pattern_parm);
21443 }
21444 /* Merge any parameters that match with the function parameter
21445 pack. */
21446 if (pattern_parm && DECL_PACK_P (pattern_parm))
21447 {
21448 int i, len;
21449 tree expanded_types;
21450 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21451 the parameters in this function parameter pack. */
21452 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21453 args, tf_error, NULL_TREE);
21454 len = TREE_VEC_LENGTH (expanded_types);
21455 for (i = 0; i < len; i++)
21456 {
21457 tree parm_type;
21458 tree attributes;
21459
21460 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21461 /* Rename the parameter to include the index. */
21462 DECL_NAME (decl_parm) =
21463 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21464 parm_type = TREE_VEC_ELT (expanded_types, i);
21465 parm_type = type_decays_to (parm_type);
21466 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21467 TREE_TYPE (decl_parm) = parm_type;
21468 attributes = DECL_ATTRIBUTES (pattern_parm);
21469 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21470 {
21471 DECL_ATTRIBUTES (decl_parm) = attributes;
21472 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21473 }
21474 decl_parm = DECL_CHAIN (decl_parm);
21475 }
21476 }
21477 /* Merge additional specifiers from the CODE_PATTERN. */
21478 if (DECL_DECLARED_INLINE_P (code_pattern)
21479 && !DECL_DECLARED_INLINE_P (decl))
21480 DECL_DECLARED_INLINE_P (decl) = 1;
21481 }
21482 else if (VAR_P (decl))
21483 {
21484 DECL_INITIAL (decl) =
21485 tsubst_expr (DECL_INITIAL (code_pattern), args,
21486 tf_error, DECL_TI_TEMPLATE (decl),
21487 /*integral_constant_expression_p=*/false);
21488 if (VAR_HAD_UNKNOWN_BOUND (decl))
21489 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21490 tf_error, DECL_TI_TEMPLATE (decl));
21491 }
21492 else
21493 gcc_unreachable ();
21494
21495 pop_access_scope (decl);
21496 }
21497
21498 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21499 substituted to get DECL. */
21500
21501 tree
21502 template_for_substitution (tree decl)
21503 {
21504 tree tmpl = DECL_TI_TEMPLATE (decl);
21505
21506 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21507 for the instantiation. This is not always the most general
21508 template. Consider, for example:
21509
21510 template <class T>
21511 struct S { template <class U> void f();
21512 template <> void f<int>(); };
21513
21514 and an instantiation of S<double>::f<int>. We want TD to be the
21515 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21516 while (/* An instantiation cannot have a definition, so we need a
21517 more general template. */
21518 DECL_TEMPLATE_INSTANTIATION (tmpl)
21519 /* We must also deal with friend templates. Given:
21520
21521 template <class T> struct S {
21522 template <class U> friend void f() {};
21523 };
21524
21525 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21526 so far as the language is concerned, but that's still
21527 where we get the pattern for the instantiation from. On
21528 other hand, if the definition comes outside the class, say:
21529
21530 template <class T> struct S {
21531 template <class U> friend void f();
21532 };
21533 template <class U> friend void f() {}
21534
21535 we don't need to look any further. That's what the check for
21536 DECL_INITIAL is for. */
21537 || (TREE_CODE (decl) == FUNCTION_DECL
21538 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21539 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21540 {
21541 /* The present template, TD, should not be a definition. If it
21542 were a definition, we should be using it! Note that we
21543 cannot restructure the loop to just keep going until we find
21544 a template with a definition, since that might go too far if
21545 a specialization was declared, but not defined. */
21546
21547 /* Fetch the more general template. */
21548 tmpl = DECL_TI_TEMPLATE (tmpl);
21549 }
21550
21551 return tmpl;
21552 }
21553
21554 /* Returns true if we need to instantiate this template instance even if we
21555 know we aren't going to emit it. */
21556
21557 bool
21558 always_instantiate_p (tree decl)
21559 {
21560 /* We always instantiate inline functions so that we can inline them. An
21561 explicit instantiation declaration prohibits implicit instantiation of
21562 non-inline functions. With high levels of optimization, we would
21563 normally inline non-inline functions -- but we're not allowed to do
21564 that for "extern template" functions. Therefore, we check
21565 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21566 return ((TREE_CODE (decl) == FUNCTION_DECL
21567 && (DECL_DECLARED_INLINE_P (decl)
21568 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21569 /* And we need to instantiate static data members so that
21570 their initializers are available in integral constant
21571 expressions. */
21572 || (VAR_P (decl)
21573 && decl_maybe_constant_var_p (decl)));
21574 }
21575
21576 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21577 instantiate it now, modifying TREE_TYPE (fn). */
21578
21579 void
21580 maybe_instantiate_noexcept (tree fn)
21581 {
21582 tree fntype, spec, noex, clone;
21583
21584 /* Don't instantiate a noexcept-specification from template context. */
21585 if (processing_template_decl)
21586 return;
21587
21588 if (DECL_CLONED_FUNCTION_P (fn))
21589 fn = DECL_CLONED_FUNCTION (fn);
21590 fntype = TREE_TYPE (fn);
21591 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21592
21593 if (!spec || !TREE_PURPOSE (spec))
21594 return;
21595
21596 noex = TREE_PURPOSE (spec);
21597
21598 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21599 {
21600 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21601 spec = get_defaulted_eh_spec (fn);
21602 else if (push_tinst_level (fn))
21603 {
21604 push_access_scope (fn);
21605 push_deferring_access_checks (dk_no_deferred);
21606 input_location = DECL_SOURCE_LOCATION (fn);
21607 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21608 DEFERRED_NOEXCEPT_ARGS (noex),
21609 tf_warning_or_error, fn,
21610 /*function_p=*/false,
21611 /*integral_constant_expression_p=*/true);
21612 pop_deferring_access_checks ();
21613 pop_access_scope (fn);
21614 pop_tinst_level ();
21615 spec = build_noexcept_spec (noex, tf_warning_or_error);
21616 if (spec == error_mark_node)
21617 spec = noexcept_false_spec;
21618 }
21619 else
21620 spec = noexcept_false_spec;
21621
21622 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21623 }
21624
21625 FOR_EACH_CLONE (clone, fn)
21626 {
21627 if (TREE_TYPE (clone) == fntype)
21628 TREE_TYPE (clone) = TREE_TYPE (fn);
21629 else
21630 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21631 }
21632 }
21633
21634 /* Produce the definition of D, a _DECL generated from a template. If
21635 DEFER_OK is nonzero, then we don't have to actually do the
21636 instantiation now; we just have to do it sometime. Normally it is
21637 an error if this is an explicit instantiation but D is undefined.
21638 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21639 explicitly instantiated class template. */
21640
21641 tree
21642 instantiate_decl (tree d, int defer_ok,
21643 bool expl_inst_class_mem_p)
21644 {
21645 tree tmpl = DECL_TI_TEMPLATE (d);
21646 tree gen_args;
21647 tree args;
21648 tree td;
21649 tree code_pattern;
21650 tree spec;
21651 tree gen_tmpl;
21652 bool pattern_defined;
21653 location_t saved_loc = input_location;
21654 int saved_unevaluated_operand = cp_unevaluated_operand;
21655 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21656 bool external_p;
21657 bool deleted_p;
21658 tree fn_context;
21659 bool nested = false;
21660
21661 /* This function should only be used to instantiate templates for
21662 functions and static member variables. */
21663 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21664
21665 /* A concept is never instantiated. */
21666 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21667
21668 /* Variables are never deferred; if instantiation is required, they
21669 are instantiated right away. That allows for better code in the
21670 case that an expression refers to the value of the variable --
21671 if the variable has a constant value the referring expression can
21672 take advantage of that fact. */
21673 if (VAR_P (d)
21674 || DECL_DECLARED_CONSTEXPR_P (d))
21675 defer_ok = 0;
21676
21677 /* Don't instantiate cloned functions. Instead, instantiate the
21678 functions they cloned. */
21679 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21680 d = DECL_CLONED_FUNCTION (d);
21681
21682 if (DECL_TEMPLATE_INSTANTIATED (d)
21683 || (TREE_CODE (d) == FUNCTION_DECL
21684 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21685 || DECL_TEMPLATE_SPECIALIZATION (d))
21686 /* D has already been instantiated or explicitly specialized, so
21687 there's nothing for us to do here.
21688
21689 It might seem reasonable to check whether or not D is an explicit
21690 instantiation, and, if so, stop here. But when an explicit
21691 instantiation is deferred until the end of the compilation,
21692 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21693 the instantiation. */
21694 return d;
21695
21696 /* Check to see whether we know that this template will be
21697 instantiated in some other file, as with "extern template"
21698 extension. */
21699 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21700
21701 /* In general, we do not instantiate such templates. */
21702 if (external_p && !always_instantiate_p (d))
21703 return d;
21704
21705 gen_tmpl = most_general_template (tmpl);
21706 gen_args = impartial_args (tmpl, DECL_TI_ARGS (d));
21707
21708 if (tmpl != gen_tmpl)
21709 /* We should already have the extra args. */
21710 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21711 == TMPL_ARGS_DEPTH (gen_args));
21712 /* And what's in the hash table should match D. */
21713 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21714 || spec == NULL_TREE);
21715
21716 /* This needs to happen before any tsubsting. */
21717 if (! push_tinst_level (d))
21718 return d;
21719
21720 timevar_push (TV_TEMPLATE_INST);
21721
21722 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21723 for the instantiation. */
21724 td = template_for_substitution (d);
21725 code_pattern = DECL_TEMPLATE_RESULT (td);
21726
21727 /* We should never be trying to instantiate a member of a class
21728 template or partial specialization. */
21729 gcc_assert (d != code_pattern);
21730
21731 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21732 || DECL_TEMPLATE_SPECIALIZATION (td))
21733 /* In the case of a friend template whose definition is provided
21734 outside the class, we may have too many arguments. Drop the
21735 ones we don't need. The same is true for specializations. */
21736 args = get_innermost_template_args
21737 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21738 else
21739 args = gen_args;
21740
21741 if (TREE_CODE (d) == FUNCTION_DECL)
21742 {
21743 deleted_p = DECL_DELETED_FN (code_pattern);
21744 pattern_defined = ((DECL_SAVED_TREE (code_pattern) != NULL_TREE
21745 && DECL_INITIAL (code_pattern) != error_mark_node)
21746 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21747 || deleted_p);
21748 }
21749 else
21750 {
21751 deleted_p = false;
21752 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21753 }
21754
21755 /* We may be in the middle of deferred access check. Disable it now. */
21756 push_deferring_access_checks (dk_no_deferred);
21757
21758 /* Unless an explicit instantiation directive has already determined
21759 the linkage of D, remember that a definition is available for
21760 this entity. */
21761 if (pattern_defined
21762 && !DECL_INTERFACE_KNOWN (d)
21763 && !DECL_NOT_REALLY_EXTERN (d))
21764 mark_definable (d);
21765
21766 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21767 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21768 input_location = DECL_SOURCE_LOCATION (d);
21769
21770 /* If D is a member of an explicitly instantiated class template,
21771 and no definition is available, treat it like an implicit
21772 instantiation. */
21773 if (!pattern_defined && expl_inst_class_mem_p
21774 && DECL_EXPLICIT_INSTANTIATION (d))
21775 {
21776 /* Leave linkage flags alone on instantiations with anonymous
21777 visibility. */
21778 if (TREE_PUBLIC (d))
21779 {
21780 DECL_NOT_REALLY_EXTERN (d) = 0;
21781 DECL_INTERFACE_KNOWN (d) = 0;
21782 }
21783 SET_DECL_IMPLICIT_INSTANTIATION (d);
21784 }
21785
21786 /* Defer all other templates, unless we have been explicitly
21787 forbidden from doing so. */
21788 if (/* If there is no definition, we cannot instantiate the
21789 template. */
21790 ! pattern_defined
21791 /* If it's OK to postpone instantiation, do so. */
21792 || defer_ok
21793 /* If this is a static data member that will be defined
21794 elsewhere, we don't want to instantiate the entire data
21795 member, but we do want to instantiate the initializer so that
21796 we can substitute that elsewhere. */
21797 || (external_p && VAR_P (d))
21798 /* Handle here a deleted function too, avoid generating
21799 its body (c++/61080). */
21800 || deleted_p)
21801 {
21802 /* The definition of the static data member is now required so
21803 we must substitute the initializer. */
21804 if (VAR_P (d)
21805 && !DECL_INITIAL (d)
21806 && DECL_INITIAL (code_pattern))
21807 {
21808 tree ns;
21809 tree init;
21810 bool const_init = false;
21811 bool enter_context = DECL_CLASS_SCOPE_P (d);
21812
21813 ns = decl_namespace_context (d);
21814 push_nested_namespace (ns);
21815 if (enter_context)
21816 push_nested_class (DECL_CONTEXT (d));
21817 init = tsubst_expr (DECL_INITIAL (code_pattern),
21818 args,
21819 tf_warning_or_error, NULL_TREE,
21820 /*integral_constant_expression_p=*/false);
21821 /* If instantiating the initializer involved instantiating this
21822 again, don't call cp_finish_decl twice. */
21823 if (!DECL_INITIAL (d))
21824 {
21825 /* Make sure the initializer is still constant, in case of
21826 circular dependency (template/instantiate6.C). */
21827 const_init
21828 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21829 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21830 /*asmspec_tree=*/NULL_TREE,
21831 LOOKUP_ONLYCONVERTING);
21832 }
21833 if (enter_context)
21834 pop_nested_class ();
21835 pop_nested_namespace (ns);
21836 }
21837
21838 /* We restore the source position here because it's used by
21839 add_pending_template. */
21840 input_location = saved_loc;
21841
21842 if (at_eof && !pattern_defined
21843 && DECL_EXPLICIT_INSTANTIATION (d)
21844 && DECL_NOT_REALLY_EXTERN (d))
21845 /* [temp.explicit]
21846
21847 The definition of a non-exported function template, a
21848 non-exported member function template, or a non-exported
21849 member function or static data member of a class template
21850 shall be present in every translation unit in which it is
21851 explicitly instantiated. */
21852 permerror (input_location, "explicit instantiation of %qD "
21853 "but no definition available", d);
21854
21855 /* If we're in unevaluated context, we just wanted to get the
21856 constant value; this isn't an odr use, so don't queue
21857 a full instantiation. */
21858 if (cp_unevaluated_operand != 0)
21859 goto out;
21860 /* ??? Historically, we have instantiated inline functions, even
21861 when marked as "extern template". */
21862 if (!(external_p && VAR_P (d)))
21863 add_pending_template (d);
21864 goto out;
21865 }
21866 /* Tell the repository that D is available in this translation unit
21867 -- and see if it is supposed to be instantiated here. */
21868 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21869 {
21870 /* In a PCH file, despite the fact that the repository hasn't
21871 requested instantiation in the PCH it is still possible that
21872 an instantiation will be required in a file that includes the
21873 PCH. */
21874 if (pch_file)
21875 add_pending_template (d);
21876 /* Instantiate inline functions so that the inliner can do its
21877 job, even though we'll not be emitting a copy of this
21878 function. */
21879 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21880 goto out;
21881 }
21882
21883 fn_context = decl_function_context (d);
21884 nested = (current_function_decl != NULL_TREE);
21885 vec<tree> omp_privatization_save;
21886 if (nested)
21887 save_omp_privatization_clauses (omp_privatization_save);
21888
21889 if (!fn_context)
21890 push_to_top_level ();
21891 else
21892 {
21893 if (nested)
21894 push_function_context ();
21895 cp_unevaluated_operand = 0;
21896 c_inhibit_evaluation_warnings = 0;
21897 }
21898
21899 /* Mark D as instantiated so that recursive calls to
21900 instantiate_decl do not try to instantiate it again. */
21901 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21902
21903 /* Regenerate the declaration in case the template has been modified
21904 by a subsequent redeclaration. */
21905 regenerate_decl_from_template (d, td);
21906
21907 /* We already set the file and line above. Reset them now in case
21908 they changed as a result of calling regenerate_decl_from_template. */
21909 input_location = DECL_SOURCE_LOCATION (d);
21910
21911 if (VAR_P (d))
21912 {
21913 tree init;
21914 bool const_init = false;
21915
21916 /* Clear out DECL_RTL; whatever was there before may not be right
21917 since we've reset the type of the declaration. */
21918 SET_DECL_RTL (d, NULL);
21919 DECL_IN_AGGR_P (d) = 0;
21920
21921 /* The initializer is placed in DECL_INITIAL by
21922 regenerate_decl_from_template so we don't need to
21923 push/pop_access_scope again here. Pull it out so that
21924 cp_finish_decl can process it. */
21925 init = DECL_INITIAL (d);
21926 DECL_INITIAL (d) = NULL_TREE;
21927 DECL_INITIALIZED_P (d) = 0;
21928
21929 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21930 initializer. That function will defer actual emission until
21931 we have a chance to determine linkage. */
21932 DECL_EXTERNAL (d) = 0;
21933
21934 /* Enter the scope of D so that access-checking works correctly. */
21935 bool enter_context = DECL_CLASS_SCOPE_P (d);
21936 if (enter_context)
21937 push_nested_class (DECL_CONTEXT (d));
21938
21939 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21940 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21941
21942 if (enter_context)
21943 pop_nested_class ();
21944
21945 if (variable_template_p (gen_tmpl))
21946 note_variable_template_instantiation (d);
21947 }
21948 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21949 synthesize_method (d);
21950 else if (TREE_CODE (d) == FUNCTION_DECL)
21951 {
21952 hash_map<tree, tree> *saved_local_specializations;
21953 tree subst_decl;
21954 tree tmpl_parm;
21955 tree spec_parm;
21956 tree block = NULL_TREE;
21957
21958 /* Save away the current list, in case we are instantiating one
21959 template from within the body of another. */
21960 saved_local_specializations = local_specializations;
21961
21962 /* Set up the list of local specializations. */
21963 local_specializations = new hash_map<tree, tree>;
21964
21965 /* Set up context. */
21966 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21967 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21968 block = push_stmt_list ();
21969 else
21970 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21971
21972 /* Some typedefs referenced from within the template code need to be
21973 access checked at template instantiation time, i.e now. These
21974 types were added to the template at parsing time. Let's get those
21975 and perform the access checks then. */
21976 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21977 gen_args);
21978
21979 /* Create substitution entries for the parameters. */
21980 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21981 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21982 spec_parm = DECL_ARGUMENTS (d);
21983 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21984 {
21985 register_local_specialization (spec_parm, tmpl_parm);
21986 spec_parm = skip_artificial_parms_for (d, spec_parm);
21987 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21988 }
21989 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21990 {
21991 if (!DECL_PACK_P (tmpl_parm))
21992 {
21993 register_local_specialization (spec_parm, tmpl_parm);
21994 spec_parm = DECL_CHAIN (spec_parm);
21995 }
21996 else
21997 {
21998 /* Register the (value) argument pack as a specialization of
21999 TMPL_PARM, then move on. */
22000 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
22001 register_local_specialization (argpack, tmpl_parm);
22002 }
22003 }
22004 gcc_assert (!spec_parm);
22005
22006 /* Substitute into the body of the function. */
22007 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22008 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
22009 tf_warning_or_error, tmpl);
22010 else
22011 {
22012 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
22013 tf_warning_or_error, tmpl,
22014 /*integral_constant_expression_p=*/false);
22015
22016 /* Set the current input_location to the end of the function
22017 so that finish_function knows where we are. */
22018 input_location
22019 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
22020
22021 /* Remember if we saw an infinite loop in the template. */
22022 current_function_infinite_loop
22023 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
22024 }
22025
22026 /* We don't need the local specializations any more. */
22027 delete local_specializations;
22028 local_specializations = saved_local_specializations;
22029
22030 /* Finish the function. */
22031 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22032 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22033 DECL_SAVED_TREE (d) = pop_stmt_list (block);
22034 else
22035 {
22036 d = finish_function (0);
22037 expand_or_defer_fn (d);
22038 }
22039
22040 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22041 cp_check_omp_declare_reduction (d);
22042 }
22043
22044 /* We're not deferring instantiation any more. */
22045 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
22046
22047 if (!fn_context)
22048 pop_from_top_level ();
22049 else if (nested)
22050 pop_function_context ();
22051
22052 out:
22053 input_location = saved_loc;
22054 cp_unevaluated_operand = saved_unevaluated_operand;
22055 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
22056 pop_deferring_access_checks ();
22057 pop_tinst_level ();
22058 if (nested)
22059 restore_omp_privatization_clauses (omp_privatization_save);
22060
22061 timevar_pop (TV_TEMPLATE_INST);
22062
22063 return d;
22064 }
22065
22066 /* Run through the list of templates that we wish we could
22067 instantiate, and instantiate any we can. RETRIES is the
22068 number of times we retry pending template instantiation. */
22069
22070 void
22071 instantiate_pending_templates (int retries)
22072 {
22073 int reconsider;
22074 location_t saved_loc = input_location;
22075
22076 /* Instantiating templates may trigger vtable generation. This in turn
22077 may require further template instantiations. We place a limit here
22078 to avoid infinite loop. */
22079 if (pending_templates && retries >= max_tinst_depth)
22080 {
22081 tree decl = pending_templates->tinst->decl;
22082
22083 fatal_error (input_location,
22084 "template instantiation depth exceeds maximum of %d"
22085 " instantiating %q+D, possibly from virtual table generation"
22086 " (use -ftemplate-depth= to increase the maximum)",
22087 max_tinst_depth, decl);
22088 if (TREE_CODE (decl) == FUNCTION_DECL)
22089 /* Pretend that we defined it. */
22090 DECL_INITIAL (decl) = error_mark_node;
22091 return;
22092 }
22093
22094 do
22095 {
22096 struct pending_template **t = &pending_templates;
22097 struct pending_template *last = NULL;
22098 reconsider = 0;
22099 while (*t)
22100 {
22101 tree instantiation = reopen_tinst_level ((*t)->tinst);
22102 bool complete = false;
22103
22104 if (TYPE_P (instantiation))
22105 {
22106 tree fn;
22107
22108 if (!COMPLETE_TYPE_P (instantiation))
22109 {
22110 instantiate_class_template (instantiation);
22111 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22112 for (fn = TYPE_METHODS (instantiation);
22113 fn;
22114 fn = TREE_CHAIN (fn))
22115 if (! DECL_ARTIFICIAL (fn))
22116 instantiate_decl (fn,
22117 /*defer_ok=*/0,
22118 /*expl_inst_class_mem_p=*/false);
22119 if (COMPLETE_TYPE_P (instantiation))
22120 reconsider = 1;
22121 }
22122
22123 complete = COMPLETE_TYPE_P (instantiation);
22124 }
22125 else
22126 {
22127 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22128 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22129 {
22130 instantiation
22131 = instantiate_decl (instantiation,
22132 /*defer_ok=*/0,
22133 /*expl_inst_class_mem_p=*/false);
22134 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22135 reconsider = 1;
22136 }
22137
22138 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22139 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22140 }
22141
22142 if (complete)
22143 /* If INSTANTIATION has been instantiated, then we don't
22144 need to consider it again in the future. */
22145 *t = (*t)->next;
22146 else
22147 {
22148 last = *t;
22149 t = &(*t)->next;
22150 }
22151 tinst_depth = 0;
22152 current_tinst_level = NULL;
22153 }
22154 last_pending_template = last;
22155 }
22156 while (reconsider);
22157
22158 input_location = saved_loc;
22159 }
22160
22161 /* Substitute ARGVEC into T, which is a list of initializers for
22162 either base class or a non-static data member. The TREE_PURPOSEs
22163 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22164 instantiate_decl. */
22165
22166 static tree
22167 tsubst_initializer_list (tree t, tree argvec)
22168 {
22169 tree inits = NULL_TREE;
22170
22171 for (; t; t = TREE_CHAIN (t))
22172 {
22173 tree decl;
22174 tree init;
22175 tree expanded_bases = NULL_TREE;
22176 tree expanded_arguments = NULL_TREE;
22177 int i, len = 1;
22178
22179 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22180 {
22181 tree expr;
22182 tree arg;
22183
22184 /* Expand the base class expansion type into separate base
22185 classes. */
22186 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22187 tf_warning_or_error,
22188 NULL_TREE);
22189 if (expanded_bases == error_mark_node)
22190 continue;
22191
22192 /* We'll be building separate TREE_LISTs of arguments for
22193 each base. */
22194 len = TREE_VEC_LENGTH (expanded_bases);
22195 expanded_arguments = make_tree_vec (len);
22196 for (i = 0; i < len; i++)
22197 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
22198
22199 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22200 expand each argument in the TREE_VALUE of t. */
22201 expr = make_node (EXPR_PACK_EXPANSION);
22202 PACK_EXPANSION_LOCAL_P (expr) = true;
22203 PACK_EXPANSION_PARAMETER_PACKS (expr) =
22204 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
22205
22206 if (TREE_VALUE (t) == void_type_node)
22207 /* VOID_TYPE_NODE is used to indicate
22208 value-initialization. */
22209 {
22210 for (i = 0; i < len; i++)
22211 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
22212 }
22213 else
22214 {
22215 /* Substitute parameter packs into each argument in the
22216 TREE_LIST. */
22217 in_base_initializer = 1;
22218 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
22219 {
22220 tree expanded_exprs;
22221
22222 /* Expand the argument. */
22223 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
22224 expanded_exprs
22225 = tsubst_pack_expansion (expr, argvec,
22226 tf_warning_or_error,
22227 NULL_TREE);
22228 if (expanded_exprs == error_mark_node)
22229 continue;
22230
22231 /* Prepend each of the expanded expressions to the
22232 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
22233 for (i = 0; i < len; i++)
22234 {
22235 TREE_VEC_ELT (expanded_arguments, i) =
22236 tree_cons (NULL_TREE,
22237 TREE_VEC_ELT (expanded_exprs, i),
22238 TREE_VEC_ELT (expanded_arguments, i));
22239 }
22240 }
22241 in_base_initializer = 0;
22242
22243 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22244 since we built them backwards. */
22245 for (i = 0; i < len; i++)
22246 {
22247 TREE_VEC_ELT (expanded_arguments, i) =
22248 nreverse (TREE_VEC_ELT (expanded_arguments, i));
22249 }
22250 }
22251 }
22252
22253 for (i = 0; i < len; ++i)
22254 {
22255 if (expanded_bases)
22256 {
22257 decl = TREE_VEC_ELT (expanded_bases, i);
22258 decl = expand_member_init (decl);
22259 init = TREE_VEC_ELT (expanded_arguments, i);
22260 }
22261 else
22262 {
22263 tree tmp;
22264 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
22265 tf_warning_or_error, NULL_TREE);
22266
22267 decl = expand_member_init (decl);
22268 if (decl && !DECL_P (decl))
22269 in_base_initializer = 1;
22270
22271 init = TREE_VALUE (t);
22272 tmp = init;
22273 if (init != void_type_node)
22274 init = tsubst_expr (init, argvec,
22275 tf_warning_or_error, NULL_TREE,
22276 /*integral_constant_expression_p=*/false);
22277 if (init == NULL_TREE && tmp != NULL_TREE)
22278 /* If we had an initializer but it instantiated to nothing,
22279 value-initialize the object. This will only occur when
22280 the initializer was a pack expansion where the parameter
22281 packs used in that expansion were of length zero. */
22282 init = void_type_node;
22283 in_base_initializer = 0;
22284 }
22285
22286 if (decl)
22287 {
22288 init = build_tree_list (decl, init);
22289 TREE_CHAIN (init) = inits;
22290 inits = init;
22291 }
22292 }
22293 }
22294 return inits;
22295 }
22296
22297 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22298
22299 static void
22300 set_current_access_from_decl (tree decl)
22301 {
22302 if (TREE_PRIVATE (decl))
22303 current_access_specifier = access_private_node;
22304 else if (TREE_PROTECTED (decl))
22305 current_access_specifier = access_protected_node;
22306 else
22307 current_access_specifier = access_public_node;
22308 }
22309
22310 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22311 is the instantiation (which should have been created with
22312 start_enum) and ARGS are the template arguments to use. */
22313
22314 static void
22315 tsubst_enum (tree tag, tree newtag, tree args)
22316 {
22317 tree e;
22318
22319 if (SCOPED_ENUM_P (newtag))
22320 begin_scope (sk_scoped_enum, newtag);
22321
22322 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22323 {
22324 tree value;
22325 tree decl;
22326
22327 decl = TREE_VALUE (e);
22328 /* Note that in a template enum, the TREE_VALUE is the
22329 CONST_DECL, not the corresponding INTEGER_CST. */
22330 value = tsubst_expr (DECL_INITIAL (decl),
22331 args, tf_warning_or_error, NULL_TREE,
22332 /*integral_constant_expression_p=*/true);
22333
22334 /* Give this enumeration constant the correct access. */
22335 set_current_access_from_decl (decl);
22336
22337 /* Actually build the enumerator itself. Here we're assuming that
22338 enumerators can't have dependent attributes. */
22339 build_enumerator (DECL_NAME (decl), value, newtag,
22340 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22341 }
22342
22343 if (SCOPED_ENUM_P (newtag))
22344 finish_scope ();
22345
22346 finish_enum_value_list (newtag);
22347 finish_enum (newtag);
22348
22349 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22350 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22351 }
22352
22353 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22354 its type -- but without substituting the innermost set of template
22355 arguments. So, innermost set of template parameters will appear in
22356 the type. */
22357
22358 tree
22359 get_mostly_instantiated_function_type (tree decl)
22360 {
22361 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22362 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22363 }
22364
22365 /* Return truthvalue if we're processing a template different from
22366 the last one involved in diagnostics. */
22367 bool
22368 problematic_instantiation_changed (void)
22369 {
22370 return current_tinst_level != last_error_tinst_level;
22371 }
22372
22373 /* Remember current template involved in diagnostics. */
22374 void
22375 record_last_problematic_instantiation (void)
22376 {
22377 last_error_tinst_level = current_tinst_level;
22378 }
22379
22380 struct tinst_level *
22381 current_instantiation (void)
22382 {
22383 return current_tinst_level;
22384 }
22385
22386 /* Return TRUE if current_function_decl is being instantiated, false
22387 otherwise. */
22388
22389 bool
22390 instantiating_current_function_p (void)
22391 {
22392 return (current_instantiation ()
22393 && current_instantiation ()->decl == current_function_decl);
22394 }
22395
22396 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22397 type. Return zero for ok, nonzero for disallowed. Issue error and
22398 warning messages under control of COMPLAIN. */
22399
22400 static int
22401 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22402 {
22403 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22404 return 0;
22405 else if (POINTER_TYPE_P (type))
22406 return 0;
22407 else if (TYPE_PTRMEM_P (type))
22408 return 0;
22409 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22410 return 0;
22411 else if (TREE_CODE (type) == TYPENAME_TYPE)
22412 return 0;
22413 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22414 return 0;
22415 else if (TREE_CODE (type) == NULLPTR_TYPE)
22416 return 0;
22417 /* A bound template template parm could later be instantiated to have a valid
22418 nontype parm type via an alias template. */
22419 else if (cxx_dialect >= cxx11
22420 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22421 return 0;
22422
22423 if (complain & tf_error)
22424 {
22425 if (type == error_mark_node)
22426 inform (input_location, "invalid template non-type parameter");
22427 else
22428 error ("%q#T is not a valid type for a template non-type parameter",
22429 type);
22430 }
22431 return 1;
22432 }
22433
22434 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22435 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22436
22437 static bool
22438 dependent_type_p_r (tree type)
22439 {
22440 tree scope;
22441
22442 /* [temp.dep.type]
22443
22444 A type is dependent if it is:
22445
22446 -- a template parameter. Template template parameters are types
22447 for us (since TYPE_P holds true for them) so we handle
22448 them here. */
22449 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22450 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22451 return true;
22452 /* -- a qualified-id with a nested-name-specifier which contains a
22453 class-name that names a dependent type or whose unqualified-id
22454 names a dependent type. */
22455 if (TREE_CODE (type) == TYPENAME_TYPE)
22456 return true;
22457
22458 /* An alias template specialization can be dependent even if the
22459 resulting type is not. */
22460 if (dependent_alias_template_spec_p (type))
22461 return true;
22462
22463 /* -- a cv-qualified type where the cv-unqualified type is
22464 dependent.
22465 No code is necessary for this bullet; the code below handles
22466 cv-qualified types, and we don't want to strip aliases with
22467 TYPE_MAIN_VARIANT because of DR 1558. */
22468 /* -- a compound type constructed from any dependent type. */
22469 if (TYPE_PTRMEM_P (type))
22470 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22471 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22472 (type)));
22473 else if (TYPE_PTR_P (type)
22474 || TREE_CODE (type) == REFERENCE_TYPE)
22475 return dependent_type_p (TREE_TYPE (type));
22476 else if (TREE_CODE (type) == FUNCTION_TYPE
22477 || TREE_CODE (type) == METHOD_TYPE)
22478 {
22479 tree arg_type;
22480
22481 if (dependent_type_p (TREE_TYPE (type)))
22482 return true;
22483 for (arg_type = TYPE_ARG_TYPES (type);
22484 arg_type;
22485 arg_type = TREE_CHAIN (arg_type))
22486 if (dependent_type_p (TREE_VALUE (arg_type)))
22487 return true;
22488 return false;
22489 }
22490 /* -- an array type constructed from any dependent type or whose
22491 size is specified by a constant expression that is
22492 value-dependent.
22493
22494 We checked for type- and value-dependence of the bounds in
22495 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22496 if (TREE_CODE (type) == ARRAY_TYPE)
22497 {
22498 if (TYPE_DOMAIN (type)
22499 && dependent_type_p (TYPE_DOMAIN (type)))
22500 return true;
22501 return dependent_type_p (TREE_TYPE (type));
22502 }
22503
22504 /* -- a template-id in which either the template name is a template
22505 parameter ... */
22506 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22507 return true;
22508 /* ... or any of the template arguments is a dependent type or
22509 an expression that is type-dependent or value-dependent. */
22510 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22511 && (any_dependent_template_arguments_p
22512 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22513 return true;
22514
22515 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22516 dependent; if the argument of the `typeof' expression is not
22517 type-dependent, then it should already been have resolved. */
22518 if (TREE_CODE (type) == TYPEOF_TYPE
22519 || TREE_CODE (type) == DECLTYPE_TYPE
22520 || TREE_CODE (type) == UNDERLYING_TYPE)
22521 return true;
22522
22523 /* A template argument pack is dependent if any of its packed
22524 arguments are. */
22525 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22526 {
22527 tree args = ARGUMENT_PACK_ARGS (type);
22528 int i, len = TREE_VEC_LENGTH (args);
22529 for (i = 0; i < len; ++i)
22530 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22531 return true;
22532 }
22533
22534 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22535 be template parameters. */
22536 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22537 return true;
22538
22539 /* The standard does not specifically mention types that are local
22540 to template functions or local classes, but they should be
22541 considered dependent too. For example:
22542
22543 template <int I> void f() {
22544 enum E { a = I };
22545 S<sizeof (E)> s;
22546 }
22547
22548 The size of `E' cannot be known until the value of `I' has been
22549 determined. Therefore, `E' must be considered dependent. */
22550 scope = TYPE_CONTEXT (type);
22551 if (scope && TYPE_P (scope))
22552 return dependent_type_p (scope);
22553 /* Don't use type_dependent_expression_p here, as it can lead
22554 to infinite recursion trying to determine whether a lambda
22555 nested in a lambda is dependent (c++/47687). */
22556 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22557 && DECL_LANG_SPECIFIC (scope)
22558 && DECL_TEMPLATE_INFO (scope)
22559 && (any_dependent_template_arguments_p
22560 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22561 return true;
22562
22563 /* Other types are non-dependent. */
22564 return false;
22565 }
22566
22567 /* Returns TRUE if TYPE is dependent, in the sense of
22568 [temp.dep.type]. Note that a NULL type is considered dependent. */
22569
22570 bool
22571 dependent_type_p (tree type)
22572 {
22573 /* If there are no template parameters in scope, then there can't be
22574 any dependent types. */
22575 if (!processing_template_decl)
22576 {
22577 /* If we are not processing a template, then nobody should be
22578 providing us with a dependent type. */
22579 gcc_assert (type);
22580 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22581 return false;
22582 }
22583
22584 /* If the type is NULL, we have not computed a type for the entity
22585 in question; in that case, the type is dependent. */
22586 if (!type)
22587 return true;
22588
22589 /* Erroneous types can be considered non-dependent. */
22590 if (type == error_mark_node)
22591 return false;
22592
22593 /* If we have not already computed the appropriate value for TYPE,
22594 do so now. */
22595 if (!TYPE_DEPENDENT_P_VALID (type))
22596 {
22597 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22598 TYPE_DEPENDENT_P_VALID (type) = 1;
22599 }
22600
22601 return TYPE_DEPENDENT_P (type);
22602 }
22603
22604 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22605 lookup. In other words, a dependent type that is not the current
22606 instantiation. */
22607
22608 bool
22609 dependent_scope_p (tree scope)
22610 {
22611 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22612 && !currently_open_class (scope));
22613 }
22614
22615 /* T is a SCOPE_REF; return whether we need to consider it
22616 instantiation-dependent so that we can check access at instantiation
22617 time even though we know which member it resolves to. */
22618
22619 static bool
22620 instantiation_dependent_scope_ref_p (tree t)
22621 {
22622 if (DECL_P (TREE_OPERAND (t, 1))
22623 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22624 && accessible_in_template_p (TREE_OPERAND (t, 0),
22625 TREE_OPERAND (t, 1)))
22626 return false;
22627 else
22628 return true;
22629 }
22630
22631 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22632 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22633 expression. */
22634
22635 /* Note that this predicate is not appropriate for general expressions;
22636 only constant expressions (that satisfy potential_constant_expression)
22637 can be tested for value dependence. */
22638
22639 bool
22640 value_dependent_expression_p (tree expression)
22641 {
22642 if (!processing_template_decl)
22643 return false;
22644
22645 /* A name declared with a dependent type. */
22646 if (DECL_P (expression) && type_dependent_expression_p (expression))
22647 return true;
22648
22649 switch (TREE_CODE (expression))
22650 {
22651 case BASELINK:
22652 /* A dependent member function of the current instantiation. */
22653 return dependent_type_p (BINFO_TYPE (BASELINK_BINFO (expression)));
22654
22655 case FUNCTION_DECL:
22656 /* A dependent member function of the current instantiation. */
22657 if (DECL_CLASS_SCOPE_P (expression)
22658 && dependent_type_p (DECL_CONTEXT (expression)))
22659 return true;
22660 break;
22661
22662 case IDENTIFIER_NODE:
22663 /* A name that has not been looked up -- must be dependent. */
22664 return true;
22665
22666 case TEMPLATE_PARM_INDEX:
22667 /* A non-type template parm. */
22668 return true;
22669
22670 case CONST_DECL:
22671 /* A non-type template parm. */
22672 if (DECL_TEMPLATE_PARM_P (expression))
22673 return true;
22674 return value_dependent_expression_p (DECL_INITIAL (expression));
22675
22676 case VAR_DECL:
22677 /* A constant with literal type and is initialized
22678 with an expression that is value-dependent.
22679
22680 Note that a non-dependent parenthesized initializer will have
22681 already been replaced with its constant value, so if we see
22682 a TREE_LIST it must be dependent. */
22683 if (DECL_INITIAL (expression)
22684 && decl_constant_var_p (expression)
22685 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22686 /* cp_finish_decl doesn't fold reference initializers. */
22687 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22688 || type_dependent_expression_p (DECL_INITIAL (expression))
22689 || value_dependent_expression_p (DECL_INITIAL (expression))))
22690 return true;
22691 return false;
22692
22693 case DYNAMIC_CAST_EXPR:
22694 case STATIC_CAST_EXPR:
22695 case CONST_CAST_EXPR:
22696 case REINTERPRET_CAST_EXPR:
22697 case CAST_EXPR:
22698 /* These expressions are value-dependent if the type to which
22699 the cast occurs is dependent or the expression being casted
22700 is value-dependent. */
22701 {
22702 tree type = TREE_TYPE (expression);
22703
22704 if (dependent_type_p (type))
22705 return true;
22706
22707 /* A functional cast has a list of operands. */
22708 expression = TREE_OPERAND (expression, 0);
22709 if (!expression)
22710 {
22711 /* If there are no operands, it must be an expression such
22712 as "int()". This should not happen for aggregate types
22713 because it would form non-constant expressions. */
22714 gcc_assert (cxx_dialect >= cxx11
22715 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22716
22717 return false;
22718 }
22719
22720 if (TREE_CODE (expression) == TREE_LIST)
22721 return any_value_dependent_elements_p (expression);
22722
22723 return value_dependent_expression_p (expression);
22724 }
22725
22726 case SIZEOF_EXPR:
22727 if (SIZEOF_EXPR_TYPE_P (expression))
22728 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22729 /* FALLTHRU */
22730 case ALIGNOF_EXPR:
22731 case TYPEID_EXPR:
22732 /* A `sizeof' expression is value-dependent if the operand is
22733 type-dependent or is a pack expansion. */
22734 expression = TREE_OPERAND (expression, 0);
22735 if (PACK_EXPANSION_P (expression))
22736 return true;
22737 else if (TYPE_P (expression))
22738 return dependent_type_p (expression);
22739 return instantiation_dependent_uneval_expression_p (expression);
22740
22741 case AT_ENCODE_EXPR:
22742 /* An 'encode' expression is value-dependent if the operand is
22743 type-dependent. */
22744 expression = TREE_OPERAND (expression, 0);
22745 return dependent_type_p (expression);
22746
22747 case NOEXCEPT_EXPR:
22748 expression = TREE_OPERAND (expression, 0);
22749 return instantiation_dependent_uneval_expression_p (expression);
22750
22751 case SCOPE_REF:
22752 /* All instantiation-dependent expressions should also be considered
22753 value-dependent. */
22754 return instantiation_dependent_scope_ref_p (expression);
22755
22756 case COMPONENT_REF:
22757 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22758 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22759
22760 case NONTYPE_ARGUMENT_PACK:
22761 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22762 is value-dependent. */
22763 {
22764 tree values = ARGUMENT_PACK_ARGS (expression);
22765 int i, len = TREE_VEC_LENGTH (values);
22766
22767 for (i = 0; i < len; ++i)
22768 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22769 return true;
22770
22771 return false;
22772 }
22773
22774 case TRAIT_EXPR:
22775 {
22776 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22777 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22778 || (type2 ? dependent_type_p (type2) : false));
22779 }
22780
22781 case MODOP_EXPR:
22782 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22783 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22784
22785 case ARRAY_REF:
22786 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22787 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22788
22789 case ADDR_EXPR:
22790 {
22791 tree op = TREE_OPERAND (expression, 0);
22792 return (value_dependent_expression_p (op)
22793 || has_value_dependent_address (op));
22794 }
22795
22796 case REQUIRES_EXPR:
22797 /* Treat all requires-expressions as value-dependent so
22798 we don't try to fold them. */
22799 return true;
22800
22801 case TYPE_REQ:
22802 return dependent_type_p (TREE_OPERAND (expression, 0));
22803
22804 case CALL_EXPR:
22805 {
22806 if (value_dependent_expression_p (CALL_EXPR_FN (expression)))
22807 return true;
22808 tree fn = get_callee_fndecl (expression);
22809 int i, nargs;
22810 nargs = call_expr_nargs (expression);
22811 for (i = 0; i < nargs; ++i)
22812 {
22813 tree op = CALL_EXPR_ARG (expression, i);
22814 /* In a call to a constexpr member function, look through the
22815 implicit ADDR_EXPR on the object argument so that it doesn't
22816 cause the call to be considered value-dependent. We also
22817 look through it in potential_constant_expression. */
22818 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22819 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22820 && TREE_CODE (op) == ADDR_EXPR)
22821 op = TREE_OPERAND (op, 0);
22822 if (value_dependent_expression_p (op))
22823 return true;
22824 }
22825 return false;
22826 }
22827
22828 case TEMPLATE_ID_EXPR:
22829 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22830 type-dependent. */
22831 return type_dependent_expression_p (expression)
22832 || variable_concept_p (TREE_OPERAND (expression, 0));
22833
22834 case CONSTRUCTOR:
22835 {
22836 unsigned ix;
22837 tree val;
22838 if (dependent_type_p (TREE_TYPE (expression)))
22839 return true;
22840 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22841 if (value_dependent_expression_p (val))
22842 return true;
22843 return false;
22844 }
22845
22846 case STMT_EXPR:
22847 /* Treat a GNU statement expression as dependent to avoid crashing
22848 under instantiate_non_dependent_expr; it can't be constant. */
22849 return true;
22850
22851 default:
22852 /* A constant expression is value-dependent if any subexpression is
22853 value-dependent. */
22854 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22855 {
22856 case tcc_reference:
22857 case tcc_unary:
22858 case tcc_comparison:
22859 case tcc_binary:
22860 case tcc_expression:
22861 case tcc_vl_exp:
22862 {
22863 int i, len = cp_tree_operand_length (expression);
22864
22865 for (i = 0; i < len; i++)
22866 {
22867 tree t = TREE_OPERAND (expression, i);
22868
22869 /* In some cases, some of the operands may be missing.l
22870 (For example, in the case of PREDECREMENT_EXPR, the
22871 amount to increment by may be missing.) That doesn't
22872 make the expression dependent. */
22873 if (t && value_dependent_expression_p (t))
22874 return true;
22875 }
22876 }
22877 break;
22878 default:
22879 break;
22880 }
22881 break;
22882 }
22883
22884 /* The expression is not value-dependent. */
22885 return false;
22886 }
22887
22888 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22889 [temp.dep.expr]. Note that an expression with no type is
22890 considered dependent. Other parts of the compiler arrange for an
22891 expression with type-dependent subexpressions to have no type, so
22892 this function doesn't have to be fully recursive. */
22893
22894 bool
22895 type_dependent_expression_p (tree expression)
22896 {
22897 if (!processing_template_decl)
22898 return false;
22899
22900 if (expression == NULL_TREE || expression == error_mark_node)
22901 return false;
22902
22903 /* An unresolved name is always dependent. */
22904 if (identifier_p (expression)
22905 || TREE_CODE (expression) == USING_DECL
22906 || TREE_CODE (expression) == WILDCARD_DECL)
22907 return true;
22908
22909 /* A fold expression is type-dependent. */
22910 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22911 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22912 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22913 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22914 return true;
22915
22916 /* Some expression forms are never type-dependent. */
22917 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22918 || TREE_CODE (expression) == SIZEOF_EXPR
22919 || TREE_CODE (expression) == ALIGNOF_EXPR
22920 || TREE_CODE (expression) == AT_ENCODE_EXPR
22921 || TREE_CODE (expression) == NOEXCEPT_EXPR
22922 || TREE_CODE (expression) == TRAIT_EXPR
22923 || TREE_CODE (expression) == TYPEID_EXPR
22924 || TREE_CODE (expression) == DELETE_EXPR
22925 || TREE_CODE (expression) == VEC_DELETE_EXPR
22926 || TREE_CODE (expression) == THROW_EXPR
22927 || TREE_CODE (expression) == REQUIRES_EXPR)
22928 return false;
22929
22930 /* The types of these expressions depends only on the type to which
22931 the cast occurs. */
22932 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22933 || TREE_CODE (expression) == STATIC_CAST_EXPR
22934 || TREE_CODE (expression) == CONST_CAST_EXPR
22935 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22936 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22937 || TREE_CODE (expression) == CAST_EXPR)
22938 return dependent_type_p (TREE_TYPE (expression));
22939
22940 /* The types of these expressions depends only on the type created
22941 by the expression. */
22942 if (TREE_CODE (expression) == NEW_EXPR
22943 || TREE_CODE (expression) == VEC_NEW_EXPR)
22944 {
22945 /* For NEW_EXPR tree nodes created inside a template, either
22946 the object type itself or a TREE_LIST may appear as the
22947 operand 1. */
22948 tree type = TREE_OPERAND (expression, 1);
22949 if (TREE_CODE (type) == TREE_LIST)
22950 /* This is an array type. We need to check array dimensions
22951 as well. */
22952 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22953 || value_dependent_expression_p
22954 (TREE_OPERAND (TREE_VALUE (type), 1));
22955 else
22956 return dependent_type_p (type);
22957 }
22958
22959 if (TREE_CODE (expression) == SCOPE_REF)
22960 {
22961 tree scope = TREE_OPERAND (expression, 0);
22962 tree name = TREE_OPERAND (expression, 1);
22963
22964 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22965 contains an identifier associated by name lookup with one or more
22966 declarations declared with a dependent type, or...a
22967 nested-name-specifier or qualified-id that names a member of an
22968 unknown specialization. */
22969 return (type_dependent_expression_p (name)
22970 || dependent_scope_p (scope));
22971 }
22972
22973 if (TREE_CODE (expression) == TEMPLATE_DECL
22974 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22975 return false;
22976
22977 if (TREE_CODE (expression) == STMT_EXPR)
22978 expression = stmt_expr_value_expr (expression);
22979
22980 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22981 {
22982 tree elt;
22983 unsigned i;
22984
22985 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22986 {
22987 if (type_dependent_expression_p (elt))
22988 return true;
22989 }
22990 return false;
22991 }
22992
22993 /* A static data member of the current instantiation with incomplete
22994 array type is type-dependent, as the definition and specializations
22995 can have different bounds. */
22996 if (VAR_P (expression)
22997 && DECL_CLASS_SCOPE_P (expression)
22998 && dependent_type_p (DECL_CONTEXT (expression))
22999 && VAR_HAD_UNKNOWN_BOUND (expression))
23000 return true;
23001
23002 /* An array of unknown bound depending on a variadic parameter, eg:
23003
23004 template<typename... Args>
23005 void foo (Args... args)
23006 {
23007 int arr[] = { args... };
23008 }
23009
23010 template<int... vals>
23011 void bar ()
23012 {
23013 int arr[] = { vals... };
23014 }
23015
23016 If the array has no length and has an initializer, it must be that
23017 we couldn't determine its length in cp_complete_array_type because
23018 it is dependent. */
23019 if (VAR_P (expression)
23020 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
23021 && !TYPE_DOMAIN (TREE_TYPE (expression))
23022 && DECL_INITIAL (expression))
23023 return true;
23024
23025 /* A function or variable template-id is type-dependent if it has any
23026 dependent template arguments. Note that we only consider the innermost
23027 template arguments here, since those are the ones that come from the
23028 template-id; the template arguments for the enclosing class do not make it
23029 type-dependent, they only make a member function value-dependent. */
23030 if (VAR_OR_FUNCTION_DECL_P (expression)
23031 && DECL_LANG_SPECIFIC (expression)
23032 && DECL_TEMPLATE_INFO (expression)
23033 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (expression))
23034 && (any_dependent_template_arguments_p
23035 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
23036 return true;
23037
23038 /* Always dependent, on the number of arguments if nothing else. */
23039 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
23040 return true;
23041
23042 if (TREE_TYPE (expression) == unknown_type_node)
23043 {
23044 if (TREE_CODE (expression) == ADDR_EXPR)
23045 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
23046 if (TREE_CODE (expression) == COMPONENT_REF
23047 || TREE_CODE (expression) == OFFSET_REF)
23048 {
23049 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
23050 return true;
23051 expression = TREE_OPERAND (expression, 1);
23052 if (identifier_p (expression))
23053 return false;
23054 }
23055 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23056 if (TREE_CODE (expression) == SCOPE_REF)
23057 return false;
23058
23059 if (BASELINK_P (expression))
23060 {
23061 if (BASELINK_OPTYPE (expression)
23062 && dependent_type_p (BASELINK_OPTYPE (expression)))
23063 return true;
23064 expression = BASELINK_FUNCTIONS (expression);
23065 }
23066
23067 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
23068 {
23069 if (any_dependent_template_arguments_p
23070 (TREE_OPERAND (expression, 1)))
23071 return true;
23072 expression = TREE_OPERAND (expression, 0);
23073 if (identifier_p (expression))
23074 return true;
23075 }
23076
23077 gcc_assert (TREE_CODE (expression) == OVERLOAD
23078 || TREE_CODE (expression) == FUNCTION_DECL);
23079
23080 while (expression)
23081 {
23082 if (type_dependent_expression_p (OVL_CURRENT (expression)))
23083 return true;
23084 expression = OVL_NEXT (expression);
23085 }
23086 return false;
23087 }
23088
23089 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23090
23091 return (dependent_type_p (TREE_TYPE (expression)));
23092 }
23093
23094 /* [temp.dep.expr]/5: A class member access expression (5.2.5) is
23095 type-dependent if the expression refers to a member of the current
23096 instantiation and the type of the referenced member is dependent, or the
23097 class member access expression refers to a member of an unknown
23098 specialization.
23099
23100 This function returns true if the OBJECT in such a class member access
23101 expression is of an unknown specialization. */
23102
23103 bool
23104 type_dependent_object_expression_p (tree object)
23105 {
23106 tree scope = TREE_TYPE (object);
23107 return (!scope || dependent_scope_p (scope));
23108 }
23109
23110 /* walk_tree callback function for instantiation_dependent_expression_p,
23111 below. Returns non-zero if a dependent subexpression is found. */
23112
23113 static tree
23114 instantiation_dependent_r (tree *tp, int *walk_subtrees,
23115 void * /*data*/)
23116 {
23117 if (TYPE_P (*tp))
23118 {
23119 /* We don't have to worry about decltype currently because decltype
23120 of an instantiation-dependent expr is a dependent type. This
23121 might change depending on the resolution of DR 1172. */
23122 *walk_subtrees = false;
23123 return NULL_TREE;
23124 }
23125 enum tree_code code = TREE_CODE (*tp);
23126 switch (code)
23127 {
23128 /* Don't treat an argument list as dependent just because it has no
23129 TREE_TYPE. */
23130 case TREE_LIST:
23131 case TREE_VEC:
23132 return NULL_TREE;
23133
23134 case TEMPLATE_PARM_INDEX:
23135 return *tp;
23136
23137 /* Handle expressions with type operands. */
23138 case SIZEOF_EXPR:
23139 case ALIGNOF_EXPR:
23140 case TYPEID_EXPR:
23141 case AT_ENCODE_EXPR:
23142 {
23143 tree op = TREE_OPERAND (*tp, 0);
23144 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23145 op = TREE_TYPE (op);
23146 if (TYPE_P (op))
23147 {
23148 if (dependent_type_p (op))
23149 return *tp;
23150 else
23151 {
23152 *walk_subtrees = false;
23153 return NULL_TREE;
23154 }
23155 }
23156 break;
23157 }
23158
23159 case COMPONENT_REF:
23160 if (identifier_p (TREE_OPERAND (*tp, 1)))
23161 /* In a template, finish_class_member_access_expr creates a
23162 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23163 type-dependent, so that we can check access control at
23164 instantiation time (PR 42277). See also Core issue 1273. */
23165 return *tp;
23166 break;
23167
23168 case SCOPE_REF:
23169 if (instantiation_dependent_scope_ref_p (*tp))
23170 return *tp;
23171 else
23172 break;
23173
23174 /* Treat statement-expressions as dependent. */
23175 case BIND_EXPR:
23176 return *tp;
23177
23178 /* Treat requires-expressions as dependent. */
23179 case REQUIRES_EXPR:
23180 return *tp;
23181
23182 case CALL_EXPR:
23183 /* Treat calls to function concepts as dependent. */
23184 if (function_concept_check_p (*tp))
23185 return *tp;
23186 break;
23187
23188 case TEMPLATE_ID_EXPR:
23189 /* And variable concepts. */
23190 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
23191 return *tp;
23192 break;
23193
23194 default:
23195 break;
23196 }
23197
23198 if (type_dependent_expression_p (*tp))
23199 return *tp;
23200 else
23201 return NULL_TREE;
23202 }
23203
23204 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
23205 sense defined by the ABI:
23206
23207 "An expression is instantiation-dependent if it is type-dependent
23208 or value-dependent, or it has a subexpression that is type-dependent
23209 or value-dependent."
23210
23211 Except don't actually check value-dependence for unevaluated expressions,
23212 because in sizeof(i) we don't care about the value of i. Checking
23213 type-dependence will in turn check value-dependence of array bounds/template
23214 arguments as needed. */
23215
23216 bool
23217 instantiation_dependent_uneval_expression_p (tree expression)
23218 {
23219 tree result;
23220
23221 if (!processing_template_decl)
23222 return false;
23223
23224 if (expression == error_mark_node)
23225 return false;
23226
23227 result = cp_walk_tree_without_duplicates (&expression,
23228 instantiation_dependent_r, NULL);
23229 return result != NULL_TREE;
23230 }
23231
23232 /* As above, but also check value-dependence of the expression as a whole. */
23233
23234 bool
23235 instantiation_dependent_expression_p (tree expression)
23236 {
23237 return (instantiation_dependent_uneval_expression_p (expression)
23238 || value_dependent_expression_p (expression));
23239 }
23240
23241 /* Like type_dependent_expression_p, but it also works while not processing
23242 a template definition, i.e. during substitution or mangling. */
23243
23244 bool
23245 type_dependent_expression_p_push (tree expr)
23246 {
23247 bool b;
23248 ++processing_template_decl;
23249 b = type_dependent_expression_p (expr);
23250 --processing_template_decl;
23251 return b;
23252 }
23253
23254 /* Returns TRUE if ARGS contains a type-dependent expression. */
23255
23256 bool
23257 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
23258 {
23259 unsigned int i;
23260 tree arg;
23261
23262 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
23263 {
23264 if (type_dependent_expression_p (arg))
23265 return true;
23266 }
23267 return false;
23268 }
23269
23270 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23271 expressions) contains any type-dependent expressions. */
23272
23273 bool
23274 any_type_dependent_elements_p (const_tree list)
23275 {
23276 for (; list; list = TREE_CHAIN (list))
23277 if (type_dependent_expression_p (TREE_VALUE (list)))
23278 return true;
23279
23280 return false;
23281 }
23282
23283 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23284 expressions) contains any value-dependent expressions. */
23285
23286 bool
23287 any_value_dependent_elements_p (const_tree list)
23288 {
23289 for (; list; list = TREE_CHAIN (list))
23290 if (value_dependent_expression_p (TREE_VALUE (list)))
23291 return true;
23292
23293 return false;
23294 }
23295
23296 /* Returns TRUE if the ARG (a template argument) is dependent. */
23297
23298 bool
23299 dependent_template_arg_p (tree arg)
23300 {
23301 if (!processing_template_decl)
23302 return false;
23303
23304 /* Assume a template argument that was wrongly written by the user
23305 is dependent. This is consistent with what
23306 any_dependent_template_arguments_p [that calls this function]
23307 does. */
23308 if (!arg || arg == error_mark_node)
23309 return true;
23310
23311 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23312 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23313
23314 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23315 return true;
23316 if (TREE_CODE (arg) == TEMPLATE_DECL)
23317 {
23318 if (DECL_TEMPLATE_PARM_P (arg))
23319 return true;
23320 /* A member template of a dependent class is not necessarily
23321 type-dependent, but it is a dependent template argument because it
23322 will be a member of an unknown specialization to that template. */
23323 tree scope = CP_DECL_CONTEXT (arg);
23324 return TYPE_P (scope) && dependent_type_p (scope);
23325 }
23326 else if (ARGUMENT_PACK_P (arg))
23327 {
23328 tree args = ARGUMENT_PACK_ARGS (arg);
23329 int i, len = TREE_VEC_LENGTH (args);
23330 for (i = 0; i < len; ++i)
23331 {
23332 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23333 return true;
23334 }
23335
23336 return false;
23337 }
23338 else if (TYPE_P (arg))
23339 return dependent_type_p (arg);
23340 else
23341 return (type_dependent_expression_p (arg)
23342 || value_dependent_expression_p (arg));
23343 }
23344
23345 /* Returns true if ARGS (a collection of template arguments) contains
23346 any types that require structural equality testing. */
23347
23348 bool
23349 any_template_arguments_need_structural_equality_p (tree args)
23350 {
23351 int i;
23352 int j;
23353
23354 if (!args)
23355 return false;
23356 if (args == error_mark_node)
23357 return true;
23358
23359 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23360 {
23361 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23362 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23363 {
23364 tree arg = TREE_VEC_ELT (level, j);
23365 tree packed_args = NULL_TREE;
23366 int k, len = 1;
23367
23368 if (ARGUMENT_PACK_P (arg))
23369 {
23370 /* Look inside the argument pack. */
23371 packed_args = ARGUMENT_PACK_ARGS (arg);
23372 len = TREE_VEC_LENGTH (packed_args);
23373 }
23374
23375 for (k = 0; k < len; ++k)
23376 {
23377 if (packed_args)
23378 arg = TREE_VEC_ELT (packed_args, k);
23379
23380 if (error_operand_p (arg))
23381 return true;
23382 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23383 continue;
23384 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23385 return true;
23386 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23387 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23388 return true;
23389 }
23390 }
23391 }
23392
23393 return false;
23394 }
23395
23396 /* Returns true if ARGS (a collection of template arguments) contains
23397 any dependent arguments. */
23398
23399 bool
23400 any_dependent_template_arguments_p (const_tree args)
23401 {
23402 int i;
23403 int j;
23404
23405 if (!args)
23406 return false;
23407 if (args == error_mark_node)
23408 return true;
23409
23410 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23411 {
23412 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23413 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23414 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23415 return true;
23416 }
23417
23418 return false;
23419 }
23420
23421 /* Returns TRUE if the template TMPL is type-dependent. */
23422
23423 bool
23424 dependent_template_p (tree tmpl)
23425 {
23426 if (TREE_CODE (tmpl) == OVERLOAD)
23427 {
23428 while (tmpl)
23429 {
23430 if (dependent_template_p (OVL_CURRENT (tmpl)))
23431 return true;
23432 tmpl = OVL_NEXT (tmpl);
23433 }
23434 return false;
23435 }
23436
23437 /* Template template parameters are dependent. */
23438 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23439 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23440 return true;
23441 /* So are names that have not been looked up. */
23442 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23443 return true;
23444 return false;
23445 }
23446
23447 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23448
23449 bool
23450 dependent_template_id_p (tree tmpl, tree args)
23451 {
23452 return (dependent_template_p (tmpl)
23453 || any_dependent_template_arguments_p (args));
23454 }
23455
23456 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23457 are dependent. */
23458
23459 bool
23460 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23461 {
23462 int i;
23463
23464 if (!processing_template_decl)
23465 return false;
23466
23467 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23468 {
23469 tree decl = TREE_VEC_ELT (declv, i);
23470 tree init = TREE_VEC_ELT (initv, i);
23471 tree cond = TREE_VEC_ELT (condv, i);
23472 tree incr = TREE_VEC_ELT (incrv, i);
23473
23474 if (type_dependent_expression_p (decl)
23475 || TREE_CODE (decl) == SCOPE_REF)
23476 return true;
23477
23478 if (init && type_dependent_expression_p (init))
23479 return true;
23480
23481 if (type_dependent_expression_p (cond))
23482 return true;
23483
23484 if (COMPARISON_CLASS_P (cond)
23485 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23486 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23487 return true;
23488
23489 if (TREE_CODE (incr) == MODOP_EXPR)
23490 {
23491 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23492 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23493 return true;
23494 }
23495 else if (type_dependent_expression_p (incr))
23496 return true;
23497 else if (TREE_CODE (incr) == MODIFY_EXPR)
23498 {
23499 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23500 return true;
23501 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23502 {
23503 tree t = TREE_OPERAND (incr, 1);
23504 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23505 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23506 return true;
23507 }
23508 }
23509 }
23510
23511 return false;
23512 }
23513
23514 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23515 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23516 no such TYPE can be found. Note that this function peers inside
23517 uninstantiated templates and therefore should be used only in
23518 extremely limited situations. ONLY_CURRENT_P restricts this
23519 peering to the currently open classes hierarchy (which is required
23520 when comparing types). */
23521
23522 tree
23523 resolve_typename_type (tree type, bool only_current_p)
23524 {
23525 tree scope;
23526 tree name;
23527 tree decl;
23528 int quals;
23529 tree pushed_scope;
23530 tree result;
23531
23532 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23533
23534 scope = TYPE_CONTEXT (type);
23535 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23536 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23537 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23538 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23539 identifier of the TYPENAME_TYPE anymore.
23540 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23541 TYPENAME_TYPE instead, we avoid messing up with a possible
23542 typedef variant case. */
23543 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23544
23545 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23546 it first before we can figure out what NAME refers to. */
23547 if (TREE_CODE (scope) == TYPENAME_TYPE)
23548 {
23549 if (TYPENAME_IS_RESOLVING_P (scope))
23550 /* Given a class template A with a dependent base with nested type C,
23551 typedef typename A::C::C C will land us here, as trying to resolve
23552 the initial A::C leads to the local C typedef, which leads back to
23553 A::C::C. So we break the recursion now. */
23554 return type;
23555 else
23556 scope = resolve_typename_type (scope, only_current_p);
23557 }
23558 /* If we don't know what SCOPE refers to, then we cannot resolve the
23559 TYPENAME_TYPE. */
23560 if (TREE_CODE (scope) == TYPENAME_TYPE)
23561 return type;
23562 /* If the SCOPE is a template type parameter, we have no way of
23563 resolving the name. */
23564 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23565 return type;
23566 /* If the SCOPE is not the current instantiation, there's no reason
23567 to look inside it. */
23568 if (only_current_p && !currently_open_class (scope))
23569 return type;
23570 /* If this is a typedef, we don't want to look inside (c++/11987). */
23571 if (typedef_variant_p (type))
23572 return type;
23573 /* If SCOPE isn't the template itself, it will not have a valid
23574 TYPE_FIELDS list. */
23575 if (CLASS_TYPE_P (scope)
23576 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23577 /* scope is either the template itself or a compatible instantiation
23578 like X<T>, so look up the name in the original template. */
23579 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23580 else
23581 /* scope is a partial instantiation, so we can't do the lookup or we
23582 will lose the template arguments. */
23583 return type;
23584 /* Enter the SCOPE so that name lookup will be resolved as if we
23585 were in the class definition. In particular, SCOPE will no
23586 longer be considered a dependent type. */
23587 pushed_scope = push_scope (scope);
23588 /* Look up the declaration. */
23589 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23590 tf_warning_or_error);
23591
23592 result = NULL_TREE;
23593
23594 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23595 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23596 if (!decl)
23597 /*nop*/;
23598 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23599 && TREE_CODE (decl) == TYPE_DECL)
23600 {
23601 result = TREE_TYPE (decl);
23602 if (result == error_mark_node)
23603 result = NULL_TREE;
23604 }
23605 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23606 && DECL_CLASS_TEMPLATE_P (decl))
23607 {
23608 tree tmpl;
23609 tree args;
23610 /* Obtain the template and the arguments. */
23611 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23612 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23613 /* Instantiate the template. */
23614 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23615 /*entering_scope=*/0,
23616 tf_error | tf_user);
23617 if (result == error_mark_node)
23618 result = NULL_TREE;
23619 }
23620
23621 /* Leave the SCOPE. */
23622 if (pushed_scope)
23623 pop_scope (pushed_scope);
23624
23625 /* If we failed to resolve it, return the original typename. */
23626 if (!result)
23627 return type;
23628
23629 /* If lookup found a typename type, resolve that too. */
23630 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23631 {
23632 /* Ill-formed programs can cause infinite recursion here, so we
23633 must catch that. */
23634 TYPENAME_IS_RESOLVING_P (result) = 1;
23635 result = resolve_typename_type (result, only_current_p);
23636 TYPENAME_IS_RESOLVING_P (result) = 0;
23637 }
23638
23639 /* Qualify the resulting type. */
23640 quals = cp_type_quals (type);
23641 if (quals)
23642 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23643
23644 return result;
23645 }
23646
23647 /* EXPR is an expression which is not type-dependent. Return a proxy
23648 for EXPR that can be used to compute the types of larger
23649 expressions containing EXPR. */
23650
23651 tree
23652 build_non_dependent_expr (tree expr)
23653 {
23654 tree inner_expr;
23655
23656 /* When checking, try to get a constant value for all non-dependent
23657 expressions in order to expose bugs in *_dependent_expression_p
23658 and constexpr. This can affect code generation, see PR70704, so
23659 only do this for -fchecking=2. */
23660 if (flag_checking > 1
23661 && cxx_dialect >= cxx11
23662 /* Don't do this during nsdmi parsing as it can lead to
23663 unexpected recursive instantiations. */
23664 && !parsing_nsdmi ())
23665 fold_non_dependent_expr (expr);
23666
23667 /* Preserve OVERLOADs; the functions must be available to resolve
23668 types. */
23669 inner_expr = expr;
23670 if (TREE_CODE (inner_expr) == STMT_EXPR)
23671 inner_expr = stmt_expr_value_expr (inner_expr);
23672 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23673 inner_expr = TREE_OPERAND (inner_expr, 0);
23674 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23675 inner_expr = TREE_OPERAND (inner_expr, 1);
23676 if (is_overloaded_fn (inner_expr)
23677 || TREE_CODE (inner_expr) == OFFSET_REF)
23678 return expr;
23679 /* There is no need to return a proxy for a variable. */
23680 if (VAR_P (expr))
23681 return expr;
23682 /* Preserve string constants; conversions from string constants to
23683 "char *" are allowed, even though normally a "const char *"
23684 cannot be used to initialize a "char *". */
23685 if (TREE_CODE (expr) == STRING_CST)
23686 return expr;
23687 /* Preserve void and arithmetic constants, as an optimization -- there is no
23688 reason to create a new node. */
23689 if (TREE_CODE (expr) == VOID_CST
23690 || TREE_CODE (expr) == INTEGER_CST
23691 || TREE_CODE (expr) == REAL_CST)
23692 return expr;
23693 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23694 There is at least one place where we want to know that a
23695 particular expression is a throw-expression: when checking a ?:
23696 expression, there are special rules if the second or third
23697 argument is a throw-expression. */
23698 if (TREE_CODE (expr) == THROW_EXPR)
23699 return expr;
23700
23701 /* Don't wrap an initializer list, we need to be able to look inside. */
23702 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23703 return expr;
23704
23705 /* Don't wrap a dummy object, we need to be able to test for it. */
23706 if (is_dummy_object (expr))
23707 return expr;
23708
23709 if (TREE_CODE (expr) == COND_EXPR)
23710 return build3 (COND_EXPR,
23711 TREE_TYPE (expr),
23712 TREE_OPERAND (expr, 0),
23713 (TREE_OPERAND (expr, 1)
23714 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23715 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23716 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23717 if (TREE_CODE (expr) == COMPOUND_EXPR
23718 && !COMPOUND_EXPR_OVERLOADED (expr))
23719 return build2 (COMPOUND_EXPR,
23720 TREE_TYPE (expr),
23721 TREE_OPERAND (expr, 0),
23722 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23723
23724 /* If the type is unknown, it can't really be non-dependent */
23725 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23726
23727 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23728 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23729 }
23730
23731 /* ARGS is a vector of expressions as arguments to a function call.
23732 Replace the arguments with equivalent non-dependent expressions.
23733 This modifies ARGS in place. */
23734
23735 void
23736 make_args_non_dependent (vec<tree, va_gc> *args)
23737 {
23738 unsigned int ix;
23739 tree arg;
23740
23741 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23742 {
23743 tree newarg = build_non_dependent_expr (arg);
23744 if (newarg != arg)
23745 (*args)[ix] = newarg;
23746 }
23747 }
23748
23749 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23750 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23751 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23752
23753 static tree
23754 make_auto_1 (tree name, bool set_canonical)
23755 {
23756 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23757 TYPE_NAME (au) = build_decl (input_location,
23758 TYPE_DECL, name, au);
23759 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23760 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23761 (0, processing_template_decl + 1, processing_template_decl + 1,
23762 TYPE_NAME (au), NULL_TREE);
23763 if (set_canonical)
23764 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23765 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23766 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23767
23768 return au;
23769 }
23770
23771 tree
23772 make_decltype_auto (void)
23773 {
23774 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23775 }
23776
23777 tree
23778 make_auto (void)
23779 {
23780 return make_auto_1 (get_identifier ("auto"), true);
23781 }
23782
23783 /* Make a "constrained auto" type-specifier. This is an
23784 auto type with constraints that must be associated after
23785 deduction. The constraint is formed from the given
23786 CONC and its optional sequence of arguments, which are
23787 non-null if written as partial-concept-id. */
23788
23789 tree
23790 make_constrained_auto (tree con, tree args)
23791 {
23792 tree type = make_auto_1 (get_identifier ("auto"), false);
23793
23794 /* Build the constraint. */
23795 tree tmpl = DECL_TI_TEMPLATE (con);
23796 tree expr;
23797 if (VAR_P (con))
23798 expr = build_concept_check (tmpl, type, args);
23799 else
23800 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
23801
23802 tree constr = make_predicate_constraint (expr);
23803 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
23804
23805 /* Our canonical type depends on the constraint. */
23806 TYPE_CANONICAL (type) = canonical_type_parameter (type);
23807
23808 /* Attach the constraint to the type declaration. */
23809 tree decl = TYPE_NAME (type);
23810 return decl;
23811 }
23812
23813 /* Given type ARG, return std::initializer_list<ARG>. */
23814
23815 static tree
23816 listify (tree arg)
23817 {
23818 tree std_init_list = namespace_binding
23819 (get_identifier ("initializer_list"), std_node);
23820 tree argvec;
23821 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23822 {
23823 error ("deducing from brace-enclosed initializer list requires "
23824 "#include <initializer_list>");
23825 return error_mark_node;
23826 }
23827 argvec = make_tree_vec (1);
23828 TREE_VEC_ELT (argvec, 0) = arg;
23829 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23830 NULL_TREE, 0, tf_warning_or_error);
23831 }
23832
23833 /* Replace auto in TYPE with std::initializer_list<auto>. */
23834
23835 static tree
23836 listify_autos (tree type, tree auto_node)
23837 {
23838 tree init_auto = listify (auto_node);
23839 tree argvec = make_tree_vec (1);
23840 TREE_VEC_ELT (argvec, 0) = init_auto;
23841 if (processing_template_decl)
23842 argvec = add_to_template_args (current_template_args (), argvec);
23843 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23844 }
23845
23846 /* Hash traits for hashing possibly constrained 'auto'
23847 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23848
23849 struct auto_hash : default_hash_traits<tree>
23850 {
23851 static inline hashval_t hash (tree);
23852 static inline bool equal (tree, tree);
23853 };
23854
23855 /* Hash the 'auto' T. */
23856
23857 inline hashval_t
23858 auto_hash::hash (tree t)
23859 {
23860 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23861 /* Matching constrained-type-specifiers denote the same template
23862 parameter, so hash the constraint. */
23863 return hash_placeholder_constraint (c);
23864 else
23865 /* But unconstrained autos are all separate, so just hash the pointer. */
23866 return iterative_hash_object (t, 0);
23867 }
23868
23869 /* Compare two 'auto's. */
23870
23871 inline bool
23872 auto_hash::equal (tree t1, tree t2)
23873 {
23874 if (t1 == t2)
23875 return true;
23876
23877 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23878 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23879
23880 /* Two unconstrained autos are distinct. */
23881 if (!c1 || !c2)
23882 return false;
23883
23884 return equivalent_placeholder_constraints (c1, c2);
23885 }
23886
23887 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23888 constrained) auto, add it to the vector. */
23889
23890 static int
23891 extract_autos_r (tree t, void *data)
23892 {
23893 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23894 if (is_auto_or_concept (t))
23895 {
23896 /* All the autos were built with index 0; fix that up now. */
23897 tree *p = hash.find_slot (t, INSERT);
23898 unsigned idx;
23899 if (*p)
23900 /* If this is a repeated constrained-type-specifier, use the index we
23901 chose before. */
23902 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23903 else
23904 {
23905 /* Otherwise this is new, so use the current count. */
23906 *p = t;
23907 idx = hash.elements () - 1;
23908 }
23909 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23910 }
23911
23912 /* Always keep walking. */
23913 return 0;
23914 }
23915
23916 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23917 says they can appear anywhere in the type. */
23918
23919 static tree
23920 extract_autos (tree type)
23921 {
23922 hash_set<tree> visited;
23923 hash_table<auto_hash> hash (2);
23924
23925 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23926
23927 tree tree_vec = make_tree_vec (hash.elements());
23928 for (hash_table<auto_hash>::iterator iter = hash.begin();
23929 iter != hash.end(); ++iter)
23930 {
23931 tree elt = *iter;
23932 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23933 TREE_VEC_ELT (tree_vec, i)
23934 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23935 }
23936
23937 return tree_vec;
23938 }
23939
23940 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23941 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23942
23943 tree
23944 do_auto_deduction (tree type, tree init, tree auto_node)
23945 {
23946 return do_auto_deduction (type, init, auto_node,
23947 tf_warning_or_error,
23948 adc_unspecified);
23949 }
23950
23951 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23952 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23953 The CONTEXT determines the context in which auto deduction is performed
23954 and is used to control error diagnostics. */
23955
23956 tree
23957 do_auto_deduction (tree type, tree init, tree auto_node,
23958 tsubst_flags_t complain, auto_deduction_context context)
23959 {
23960 tree targs;
23961
23962 if (init == error_mark_node)
23963 return error_mark_node;
23964
23965 if (type_dependent_expression_p (init))
23966 /* Defining a subset of type-dependent expressions that we can deduce
23967 from ahead of time isn't worth the trouble. */
23968 return type;
23969
23970 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23971 with either a new invented type template parameter U or, if the
23972 initializer is a braced-init-list (8.5.4), with
23973 std::initializer_list<U>. */
23974 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23975 {
23976 if (!DIRECT_LIST_INIT_P (init))
23977 type = listify_autos (type, auto_node);
23978 else if (CONSTRUCTOR_NELTS (init) == 1)
23979 init = CONSTRUCTOR_ELT (init, 0)->value;
23980 else
23981 {
23982 if (complain & tf_warning_or_error)
23983 {
23984 if (permerror (input_location, "direct-list-initialization of "
23985 "%<auto%> requires exactly one element"))
23986 inform (input_location,
23987 "for deduction to %<std::initializer_list%>, use copy-"
23988 "list-initialization (i.e. add %<=%> before the %<{%>)");
23989 }
23990 type = listify_autos (type, auto_node);
23991 }
23992 }
23993
23994 if (type == error_mark_node)
23995 return error_mark_node;
23996
23997 init = resolve_nondeduced_context (init, complain);
23998
23999 if (AUTO_IS_DECLTYPE (auto_node))
24000 {
24001 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
24002 && !REF_PARENTHESIZED_P (init)));
24003 targs = make_tree_vec (1);
24004 TREE_VEC_ELT (targs, 0)
24005 = finish_decltype_type (init, id, tf_warning_or_error);
24006 if (type != auto_node)
24007 {
24008 if (complain & tf_error)
24009 error ("%qT as type rather than plain %<decltype(auto)%>", type);
24010 return error_mark_node;
24011 }
24012 }
24013 else
24014 {
24015 tree parms = build_tree_list (NULL_TREE, type);
24016 tree tparms;
24017
24018 if (flag_concepts)
24019 tparms = extract_autos (type);
24020 else
24021 {
24022 tparms = make_tree_vec (1);
24023 TREE_VEC_ELT (tparms, 0)
24024 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
24025 }
24026
24027 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
24028 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
24029 DEDUCE_CALL, LOOKUP_NORMAL,
24030 NULL, /*explain_p=*/false);
24031 if (val > 0)
24032 {
24033 if (processing_template_decl)
24034 /* Try again at instantiation time. */
24035 return type;
24036 if (type && type != error_mark_node
24037 && (complain & tf_error))
24038 /* If type is error_mark_node a diagnostic must have been
24039 emitted by now. Also, having a mention to '<type error>'
24040 in the diagnostic is not really useful to the user. */
24041 {
24042 if (cfun && auto_node == current_function_auto_return_pattern
24043 && LAMBDA_FUNCTION_P (current_function_decl))
24044 error ("unable to deduce lambda return type from %qE", init);
24045 else
24046 error ("unable to deduce %qT from %qE", type, init);
24047 type_unification_real (tparms, targs, parms, &init, 1, 0,
24048 DEDUCE_CALL, LOOKUP_NORMAL,
24049 NULL, /*explain_p=*/true);
24050 }
24051 return error_mark_node;
24052 }
24053 }
24054
24055 /* Check any placeholder constraints against the deduced type. */
24056 if (flag_concepts && !processing_template_decl)
24057 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
24058 {
24059 /* Use the deduced type to check the associated constraints. */
24060 if (!constraints_satisfied_p (constr, targs))
24061 {
24062 if (complain & tf_warning_or_error)
24063 {
24064 switch (context)
24065 {
24066 case adc_unspecified:
24067 error("placeholder constraints not satisfied");
24068 break;
24069 case adc_variable_type:
24070 error ("deduced initializer does not satisfy "
24071 "placeholder constraints");
24072 break;
24073 case adc_return_type:
24074 error ("deduced return type does not satisfy "
24075 "placeholder constraints");
24076 break;
24077 case adc_requirement:
24078 error ("deduced expression type does not saatisy "
24079 "placeholder constraints");
24080 break;
24081 }
24082 diagnose_constraints (input_location, constr, targs);
24083 }
24084 return error_mark_node;
24085 }
24086 }
24087
24088 if (processing_template_decl)
24089 targs = add_to_template_args (current_template_args (), targs);
24090 return tsubst (type, targs, complain, NULL_TREE);
24091 }
24092
24093 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
24094 result. */
24095
24096 tree
24097 splice_late_return_type (tree type, tree late_return_type)
24098 {
24099 if (is_auto (type))
24100 {
24101 if (late_return_type)
24102 return late_return_type;
24103
24104 tree idx = get_template_parm_index (type);
24105 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
24106 /* In an abbreviated function template we didn't know we were dealing
24107 with a function template when we saw the auto return type, so update
24108 it to have the correct level. */
24109 return make_auto_1 (TYPE_IDENTIFIER (type), true);
24110 }
24111 return type;
24112 }
24113
24114 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
24115 'decltype(auto)'. */
24116
24117 bool
24118 is_auto (const_tree type)
24119 {
24120 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
24121 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
24122 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
24123 return true;
24124 else
24125 return false;
24126 }
24127
24128 /* for_each_template_parm callback for type_uses_auto. */
24129
24130 int
24131 is_auto_r (tree tp, void */*data*/)
24132 {
24133 return is_auto_or_concept (tp);
24134 }
24135
24136 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
24137 a use of `auto'. Returns NULL_TREE otherwise. */
24138
24139 tree
24140 type_uses_auto (tree type)
24141 {
24142 if (type == NULL_TREE)
24143 return NULL_TREE;
24144 else if (flag_concepts)
24145 {
24146 /* The Concepts TS allows multiple autos in one type-specifier; just
24147 return the first one we find, do_auto_deduction will collect all of
24148 them. */
24149 if (uses_template_parms (type))
24150 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
24151 /*visited*/NULL, /*nondeduced*/true);
24152 else
24153 return NULL_TREE;
24154 }
24155 else
24156 return find_type_usage (type, is_auto);
24157 }
24158
24159 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
24160 'decltype(auto)' or a concept. */
24161
24162 bool
24163 is_auto_or_concept (const_tree type)
24164 {
24165 return is_auto (type); // or concept
24166 }
24167
24168 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
24169 a concept identifier) iff TYPE contains a use of a generic type. Returns
24170 NULL_TREE otherwise. */
24171
24172 tree
24173 type_uses_auto_or_concept (tree type)
24174 {
24175 return find_type_usage (type, is_auto_or_concept);
24176 }
24177
24178
24179 /* For a given template T, return the vector of typedefs referenced
24180 in T for which access check is needed at T instantiation time.
24181 T is either a FUNCTION_DECL or a RECORD_TYPE.
24182 Those typedefs were added to T by the function
24183 append_type_to_template_for_access_check. */
24184
24185 vec<qualified_typedef_usage_t, va_gc> *
24186 get_types_needing_access_check (tree t)
24187 {
24188 tree ti;
24189 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
24190
24191 if (!t || t == error_mark_node)
24192 return NULL;
24193
24194 if (!(ti = get_template_info (t)))
24195 return NULL;
24196
24197 if (CLASS_TYPE_P (t)
24198 || TREE_CODE (t) == FUNCTION_DECL)
24199 {
24200 if (!TI_TEMPLATE (ti))
24201 return NULL;
24202
24203 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
24204 }
24205
24206 return result;
24207 }
24208
24209 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
24210 tied to T. That list of typedefs will be access checked at
24211 T instantiation time.
24212 T is either a FUNCTION_DECL or a RECORD_TYPE.
24213 TYPE_DECL is a TYPE_DECL node representing a typedef.
24214 SCOPE is the scope through which TYPE_DECL is accessed.
24215 LOCATION is the location of the usage point of TYPE_DECL.
24216
24217 This function is a subroutine of
24218 append_type_to_template_for_access_check. */
24219
24220 static void
24221 append_type_to_template_for_access_check_1 (tree t,
24222 tree type_decl,
24223 tree scope,
24224 location_t location)
24225 {
24226 qualified_typedef_usage_t typedef_usage;
24227 tree ti;
24228
24229 if (!t || t == error_mark_node)
24230 return;
24231
24232 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
24233 || CLASS_TYPE_P (t))
24234 && type_decl
24235 && TREE_CODE (type_decl) == TYPE_DECL
24236 && scope);
24237
24238 if (!(ti = get_template_info (t)))
24239 return;
24240
24241 gcc_assert (TI_TEMPLATE (ti));
24242
24243 typedef_usage.typedef_decl = type_decl;
24244 typedef_usage.context = scope;
24245 typedef_usage.locus = location;
24246
24247 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
24248 }
24249
24250 /* Append TYPE_DECL to the template TEMPL.
24251 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
24252 At TEMPL instanciation time, TYPE_DECL will be checked to see
24253 if it can be accessed through SCOPE.
24254 LOCATION is the location of the usage point of TYPE_DECL.
24255
24256 e.g. consider the following code snippet:
24257
24258 class C
24259 {
24260 typedef int myint;
24261 };
24262
24263 template<class U> struct S
24264 {
24265 C::myint mi; // <-- usage point of the typedef C::myint
24266 };
24267
24268 S<char> s;
24269
24270 At S<char> instantiation time, we need to check the access of C::myint
24271 In other words, we need to check the access of the myint typedef through
24272 the C scope. For that purpose, this function will add the myint typedef
24273 and the scope C through which its being accessed to a list of typedefs
24274 tied to the template S. That list will be walked at template instantiation
24275 time and access check performed on each typedefs it contains.
24276 Note that this particular code snippet should yield an error because
24277 myint is private to C. */
24278
24279 void
24280 append_type_to_template_for_access_check (tree templ,
24281 tree type_decl,
24282 tree scope,
24283 location_t location)
24284 {
24285 qualified_typedef_usage_t *iter;
24286 unsigned i;
24287
24288 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
24289
24290 /* Make sure we don't append the type to the template twice. */
24291 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
24292 if (iter->typedef_decl == type_decl && scope == iter->context)
24293 return;
24294
24295 append_type_to_template_for_access_check_1 (templ, type_decl,
24296 scope, location);
24297 }
24298
24299 /* Convert the generic type parameters in PARM that match the types given in the
24300 range [START_IDX, END_IDX) from the current_template_parms into generic type
24301 packs. */
24302
24303 tree
24304 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
24305 {
24306 tree current = current_template_parms;
24307 int depth = TMPL_PARMS_DEPTH (current);
24308 current = INNERMOST_TEMPLATE_PARMS (current);
24309 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
24310
24311 for (int i = 0; i < start_idx; ++i)
24312 TREE_VEC_ELT (replacement, i)
24313 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24314
24315 for (int i = start_idx; i < end_idx; ++i)
24316 {
24317 /* Create a distinct parameter pack type from the current parm and add it
24318 to the replacement args to tsubst below into the generic function
24319 parameter. */
24320
24321 tree o = TREE_TYPE (TREE_VALUE
24322 (TREE_VEC_ELT (current, i)));
24323 tree t = copy_type (o);
24324 TEMPLATE_TYPE_PARM_INDEX (t)
24325 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
24326 o, 0, 0, tf_none);
24327 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
24328 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
24329 TYPE_MAIN_VARIANT (t) = t;
24330 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
24331 TYPE_CANONICAL (t) = canonical_type_parameter (t);
24332 TREE_VEC_ELT (replacement, i) = t;
24333 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24334 }
24335
24336 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24337 TREE_VEC_ELT (replacement, i)
24338 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24339
24340 /* If there are more levels then build up the replacement with the outer
24341 template parms. */
24342 if (depth > 1)
24343 replacement = add_to_template_args (template_parms_to_args
24344 (TREE_CHAIN (current_template_parms)),
24345 replacement);
24346
24347 return tsubst (parm, replacement, tf_none, NULL_TREE);
24348 }
24349
24350 /* Entries in the decl_constraint hash table. */
24351 struct GTY((for_user)) constr_entry
24352 {
24353 tree decl;
24354 tree ci;
24355 };
24356
24357 /* Hashing function and equality for constraint entries. */
24358 struct constr_hasher : ggc_ptr_hash<constr_entry>
24359 {
24360 static hashval_t hash (constr_entry *e)
24361 {
24362 return (hashval_t)DECL_UID (e->decl);
24363 }
24364
24365 static bool equal (constr_entry *e1, constr_entry *e2)
24366 {
24367 return e1->decl == e2->decl;
24368 }
24369 };
24370
24371 /* A mapping from declarations to constraint information. Note that
24372 both templates and their underlying declarations are mapped to the
24373 same constraint information.
24374
24375 FIXME: This is defined in pt.c because garbage collection
24376 code is not being generated for constraint.cc. */
24377
24378 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24379
24380 /* Returns true iff cinfo contains a valid set of constraints.
24381 This is the case when the associated requirements have been
24382 successfully decomposed into lists of atomic constraints.
24383 That is, when the saved assumptions are not error_mark_node. */
24384
24385 bool
24386 valid_constraints_p (tree cinfo)
24387 {
24388 gcc_assert (cinfo);
24389 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
24390 }
24391
24392 /* Returns the template constraints of declaration T. If T is not
24393 constrained, return NULL_TREE. Note that T must be non-null. */
24394
24395 tree
24396 get_constraints (tree t)
24397 {
24398 gcc_assert (DECL_P (t));
24399 if (TREE_CODE (t) == TEMPLATE_DECL)
24400 t = DECL_TEMPLATE_RESULT (t);
24401 constr_entry elt = { t, NULL_TREE };
24402 constr_entry* found = decl_constraints->find (&elt);
24403 if (found)
24404 return found->ci;
24405 else
24406 return NULL_TREE;
24407 }
24408
24409 /* Associate the given constraint information CI with the declaration
24410 T. If T is a template, then the constraints are associated with
24411 its underlying declaration. Don't build associations if CI is
24412 NULL_TREE. */
24413
24414 void
24415 set_constraints (tree t, tree ci)
24416 {
24417 if (!ci)
24418 return;
24419 gcc_assert (t);
24420 if (TREE_CODE (t) == TEMPLATE_DECL)
24421 t = DECL_TEMPLATE_RESULT (t);
24422 gcc_assert (!get_constraints (t));
24423 constr_entry elt = {t, ci};
24424 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24425 constr_entry* entry = ggc_alloc<constr_entry> ();
24426 *entry = elt;
24427 *slot = entry;
24428 }
24429
24430 /* Remove the associated constraints of the declaration T. */
24431
24432 void
24433 remove_constraints (tree t)
24434 {
24435 gcc_assert (DECL_P (t));
24436 if (TREE_CODE (t) == TEMPLATE_DECL)
24437 t = DECL_TEMPLATE_RESULT (t);
24438
24439 constr_entry elt = {t, NULL_TREE};
24440 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24441 if (slot)
24442 decl_constraints->clear_slot (slot);
24443 }
24444
24445 /* Set up the hash table for constraint association. */
24446
24447 void
24448 init_constraint_processing (void)
24449 {
24450 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24451 }
24452
24453 /* Set up the hash tables for template instantiations. */
24454
24455 void
24456 init_template_processing (void)
24457 {
24458 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24459 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24460 }
24461
24462 /* Print stats about the template hash tables for -fstats. */
24463
24464 void
24465 print_template_statistics (void)
24466 {
24467 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24468 "%f collisions\n", (long) decl_specializations->size (),
24469 (long) decl_specializations->elements (),
24470 decl_specializations->collisions ());
24471 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24472 "%f collisions\n", (long) type_specializations->size (),
24473 (long) type_specializations->elements (),
24474 type_specializations->collisions ());
24475 }
24476
24477 #include "gt-cp-pt.h"