]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/pt.c
PR c++/91644 - ICE with constinit in function template.
[thirdparty/gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2019 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 #include "gcc-rich-location.h"
44 #include "selftest.h"
45
46 /* The type of functions taking a tree, and some additional data, and
47 returning an int. */
48 typedef int (*tree_fn_t) (tree, void*);
49
50 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
51 instantiations have been deferred, either because their definitions
52 were not yet available, or because we were putting off doing the work. */
53 struct GTY ((chain_next ("%h.next"))) pending_template
54 {
55 struct pending_template *next;
56 struct tinst_level *tinst;
57 };
58
59 static GTY(()) struct pending_template *pending_templates;
60 static GTY(()) struct pending_template *last_pending_template;
61
62 int processing_template_parmlist;
63 static int template_header_count;
64
65 static GTY(()) tree saved_trees;
66 static vec<int> inline_parm_levels;
67
68 static GTY(()) struct tinst_level *current_tinst_level;
69
70 static GTY(()) vec<tree, va_gc> *saved_access_scope;
71
72 /* Live only within one (recursive) call to tsubst_expr. We use
73 this to pass the statement expression node from the STMT_EXPR
74 to the EXPR_STMT that is its result. */
75 static tree cur_stmt_expr;
76
77 // -------------------------------------------------------------------------- //
78 // Local Specialization Stack
79 //
80 // Implementation of the RAII helper for creating new local
81 // specializations.
82 local_specialization_stack::local_specialization_stack (lss_policy policy)
83 : saved (local_specializations)
84 {
85 if (policy == lss_blank || !saved)
86 local_specializations = new hash_map<tree, tree>;
87 else
88 local_specializations = new hash_map<tree, tree>(*saved);
89 }
90
91 local_specialization_stack::~local_specialization_stack ()
92 {
93 delete local_specializations;
94 local_specializations = saved;
95 }
96
97 /* True if we've recursed into fn_type_unification too many times. */
98 static bool excessive_deduction_depth;
99
100 struct GTY((for_user)) spec_entry
101 {
102 tree tmpl;
103 tree args;
104 tree spec;
105 };
106
107 struct spec_hasher : ggc_ptr_hash<spec_entry>
108 {
109 static hashval_t hash (spec_entry *);
110 static bool equal (spec_entry *, spec_entry *);
111 };
112
113 static GTY (()) hash_table<spec_hasher> *decl_specializations;
114
115 static GTY (()) hash_table<spec_hasher> *type_specializations;
116
117 /* Contains canonical template parameter types. The vector is indexed by
118 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
119 TREE_LIST, whose TREE_VALUEs contain the canonical template
120 parameters of various types and levels. */
121 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
122
123 #define UNIFY_ALLOW_NONE 0
124 #define UNIFY_ALLOW_MORE_CV_QUAL 1
125 #define UNIFY_ALLOW_LESS_CV_QUAL 2
126 #define UNIFY_ALLOW_DERIVED 4
127 #define UNIFY_ALLOW_INTEGER 8
128 #define UNIFY_ALLOW_OUTER_LEVEL 16
129 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
130 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
131
132 enum template_base_result {
133 tbr_incomplete_type,
134 tbr_ambiguous_baseclass,
135 tbr_success
136 };
137
138 static void push_access_scope (tree);
139 static void pop_access_scope (tree);
140 static bool resolve_overloaded_unification (tree, tree, tree, tree,
141 unification_kind_t, int,
142 bool);
143 static int try_one_overload (tree, tree, tree, tree, tree,
144 unification_kind_t, int, bool, bool);
145 static int unify (tree, tree, tree, tree, int, bool);
146 static void add_pending_template (tree);
147 static tree reopen_tinst_level (struct tinst_level *);
148 static tree tsubst_initializer_list (tree, tree);
149 static tree get_partial_spec_bindings (tree, tree, tree);
150 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
151 bool, bool);
152 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
153 bool, bool);
154 static void tsubst_enum (tree, tree, tree);
155 static tree add_to_template_args (tree, tree);
156 static tree add_outermost_template_args (tree, tree);
157 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
158 static int check_non_deducible_conversion (tree, tree, int, int,
159 struct conversion **, bool);
160 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
161 tree);
162 static int type_unification_real (tree, tree, tree, const tree *,
163 unsigned int, int, unification_kind_t,
164 vec<deferred_access_check, va_gc> **,
165 bool);
166 static void note_template_header (int);
167 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
168 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
169 static tree convert_template_argument (tree, tree, tree,
170 tsubst_flags_t, int, tree);
171 static tree for_each_template_parm (tree, tree_fn_t, void*,
172 hash_set<tree> *, bool, tree_fn_t = NULL);
173 static tree expand_template_argument_pack (tree);
174 static tree build_template_parm_index (int, int, int, tree, tree);
175 static bool inline_needs_template_parms (tree, bool);
176 static void push_inline_template_parms_recursive (tree, int);
177 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
178 static int mark_template_parm (tree, void *);
179 static int template_parm_this_level_p (tree, void *);
180 static tree tsubst_friend_function (tree, tree);
181 static tree tsubst_friend_class (tree, tree);
182 static int can_complete_type_without_circularity (tree);
183 static tree get_bindings (tree, tree, tree, bool);
184 static int template_decl_level (tree);
185 static int check_cv_quals_for_unify (int, tree, tree);
186 static void template_parm_level_and_index (tree, int*, int*);
187 static int unify_pack_expansion (tree, tree, tree,
188 tree, unification_kind_t, bool, bool);
189 static tree copy_template_args (tree);
190 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
191 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
192 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
193 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
194 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
195 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
196 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
197 static bool check_specialization_scope (void);
198 static tree process_partial_specialization (tree);
199 static void set_current_access_from_decl (tree);
200 static enum template_base_result get_template_base (tree, tree, tree, tree,
201 bool , tree *);
202 static tree try_class_unification (tree, tree, tree, tree, bool);
203 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
204 tree, tree);
205 static bool template_template_parm_bindings_ok_p (tree, tree);
206 static void tsubst_default_arguments (tree, tsubst_flags_t);
207 static tree for_each_template_parm_r (tree *, int *, void *);
208 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
209 static void copy_default_args_to_explicit_spec (tree);
210 static bool invalid_nontype_parm_type_p (tree, tsubst_flags_t);
211 static bool dependent_template_arg_p (tree);
212 static bool any_template_arguments_need_structural_equality_p (tree);
213 static bool dependent_type_p_r (tree);
214 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
215 static tree tsubst_decl (tree, tree, tsubst_flags_t);
216 static void perform_typedefs_access_check (tree tmpl, tree targs);
217 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
218 location_t);
219 static tree listify (tree);
220 static tree listify_autos (tree, tree);
221 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
222 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
223 static bool complex_alias_template_p (const_tree tmpl);
224 static tree tsubst_attributes (tree, tree, tsubst_flags_t, tree);
225 static tree canonicalize_expr_argument (tree, tsubst_flags_t);
226 static tree make_argument_pack (tree);
227 static void register_parameter_specializations (tree, tree);
228 static tree enclosing_instantiation_of (tree tctx);
229
230 /* Make the current scope suitable for access checking when we are
231 processing T. T can be FUNCTION_DECL for instantiated function
232 template, VAR_DECL for static member variable, or TYPE_DECL for
233 alias template (needed by instantiate_decl). */
234
235 static void
236 push_access_scope (tree t)
237 {
238 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
239 || TREE_CODE (t) == TYPE_DECL);
240
241 if (DECL_FRIEND_CONTEXT (t))
242 push_nested_class (DECL_FRIEND_CONTEXT (t));
243 else if (DECL_CLASS_SCOPE_P (t))
244 push_nested_class (DECL_CONTEXT (t));
245 else
246 push_to_top_level ();
247
248 if (TREE_CODE (t) == FUNCTION_DECL)
249 {
250 vec_safe_push (saved_access_scope, current_function_decl);
251 current_function_decl = t;
252 }
253 }
254
255 /* Restore the scope set up by push_access_scope. T is the node we
256 are processing. */
257
258 static void
259 pop_access_scope (tree t)
260 {
261 if (TREE_CODE (t) == FUNCTION_DECL)
262 current_function_decl = saved_access_scope->pop();
263
264 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
265 pop_nested_class ();
266 else
267 pop_from_top_level ();
268 }
269
270 /* Do any processing required when DECL (a member template
271 declaration) is finished. Returns the TEMPLATE_DECL corresponding
272 to DECL, unless it is a specialization, in which case the DECL
273 itself is returned. */
274
275 tree
276 finish_member_template_decl (tree decl)
277 {
278 if (decl == error_mark_node)
279 return error_mark_node;
280
281 gcc_assert (DECL_P (decl));
282
283 if (TREE_CODE (decl) == TYPE_DECL)
284 {
285 tree type;
286
287 type = TREE_TYPE (decl);
288 if (type == error_mark_node)
289 return error_mark_node;
290 if (MAYBE_CLASS_TYPE_P (type)
291 && CLASSTYPE_TEMPLATE_INFO (type)
292 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
293 {
294 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
295 check_member_template (tmpl);
296 return tmpl;
297 }
298 return NULL_TREE;
299 }
300 else if (TREE_CODE (decl) == FIELD_DECL)
301 error ("data member %qD cannot be a member template", decl);
302 else if (DECL_TEMPLATE_INFO (decl))
303 {
304 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
305 {
306 check_member_template (DECL_TI_TEMPLATE (decl));
307 return DECL_TI_TEMPLATE (decl);
308 }
309 else
310 return decl;
311 }
312 else
313 error ("invalid member template declaration %qD", decl);
314
315 return error_mark_node;
316 }
317
318 /* Create a template info node. */
319
320 tree
321 build_template_info (tree template_decl, tree template_args)
322 {
323 tree result = make_node (TEMPLATE_INFO);
324 TI_TEMPLATE (result) = template_decl;
325 TI_ARGS (result) = template_args;
326 return result;
327 }
328
329 /* Return the template info node corresponding to T, whatever T is. */
330
331 tree
332 get_template_info (const_tree t)
333 {
334 tree tinfo = NULL_TREE;
335
336 if (!t || t == error_mark_node)
337 return NULL;
338
339 if (TREE_CODE (t) == NAMESPACE_DECL
340 || TREE_CODE (t) == PARM_DECL)
341 return NULL;
342
343 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
344 tinfo = DECL_TEMPLATE_INFO (t);
345
346 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
347 t = TREE_TYPE (t);
348
349 if (OVERLOAD_TYPE_P (t))
350 tinfo = TYPE_TEMPLATE_INFO (t);
351 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
352 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
353
354 return tinfo;
355 }
356
357 /* Returns the template nesting level of the indicated class TYPE.
358
359 For example, in:
360 template <class T>
361 struct A
362 {
363 template <class U>
364 struct B {};
365 };
366
367 A<T>::B<U> has depth two, while A<T> has depth one.
368 Both A<T>::B<int> and A<int>::B<U> have depth one, if
369 they are instantiations, not specializations.
370
371 This function is guaranteed to return 0 if passed NULL_TREE so
372 that, for example, `template_class_depth (current_class_type)' is
373 always safe. */
374
375 int
376 template_class_depth (tree type)
377 {
378 int depth;
379
380 for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
381 {
382 tree tinfo = get_template_info (type);
383
384 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
385 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
386 ++depth;
387
388 if (DECL_P (type))
389 type = CP_DECL_CONTEXT (type);
390 else if (LAMBDA_TYPE_P (type))
391 type = LAMBDA_TYPE_EXTRA_SCOPE (type);
392 else
393 type = CP_TYPE_CONTEXT (type);
394 }
395
396 return depth;
397 }
398
399 /* Return TRUE if NODE instantiates a template that has arguments of
400 its own, be it directly a primary template or indirectly through a
401 partial specializations. */
402 static bool
403 instantiates_primary_template_p (tree node)
404 {
405 tree tinfo = get_template_info (node);
406 if (!tinfo)
407 return false;
408
409 tree tmpl = TI_TEMPLATE (tinfo);
410 if (PRIMARY_TEMPLATE_P (tmpl))
411 return true;
412
413 if (!DECL_TEMPLATE_SPECIALIZATION (tmpl))
414 return false;
415
416 /* So now we know we have a specialization, but it could be a full
417 or a partial specialization. To tell which, compare the depth of
418 its template arguments with those of its context. */
419
420 tree ctxt = DECL_CONTEXT (tmpl);
421 tree ctinfo = get_template_info (ctxt);
422 if (!ctinfo)
423 return true;
424
425 return (TMPL_ARGS_DEPTH (TI_ARGS (tinfo))
426 > TMPL_ARGS_DEPTH (TI_ARGS (ctinfo)));
427 }
428
429 /* Subroutine of maybe_begin_member_template_processing.
430 Returns true if processing DECL needs us to push template parms. */
431
432 static bool
433 inline_needs_template_parms (tree decl, bool nsdmi)
434 {
435 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
436 return false;
437
438 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
439 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
440 }
441
442 /* Subroutine of maybe_begin_member_template_processing.
443 Push the template parms in PARMS, starting from LEVELS steps into the
444 chain, and ending at the beginning, since template parms are listed
445 innermost first. */
446
447 static void
448 push_inline_template_parms_recursive (tree parmlist, int levels)
449 {
450 tree parms = TREE_VALUE (parmlist);
451 int i;
452
453 if (levels > 1)
454 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
455
456 ++processing_template_decl;
457 current_template_parms
458 = tree_cons (size_int (processing_template_decl),
459 parms, current_template_parms);
460 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
461
462 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
463 NULL);
464 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
465 {
466 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
467
468 if (error_operand_p (parm))
469 continue;
470
471 gcc_assert (DECL_P (parm));
472
473 switch (TREE_CODE (parm))
474 {
475 case TYPE_DECL:
476 case TEMPLATE_DECL:
477 pushdecl (parm);
478 break;
479
480 case PARM_DECL:
481 /* Push the CONST_DECL. */
482 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
483 break;
484
485 default:
486 gcc_unreachable ();
487 }
488 }
489 }
490
491 /* Restore the template parameter context for a member template, a
492 friend template defined in a class definition, or a non-template
493 member of template class. */
494
495 void
496 maybe_begin_member_template_processing (tree decl)
497 {
498 tree parms;
499 int levels = 0;
500 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
501
502 if (nsdmi)
503 {
504 tree ctx = DECL_CONTEXT (decl);
505 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
506 /* Disregard full specializations (c++/60999). */
507 && uses_template_parms (ctx)
508 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
509 }
510
511 if (inline_needs_template_parms (decl, nsdmi))
512 {
513 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
514 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
515
516 if (DECL_TEMPLATE_SPECIALIZATION (decl))
517 {
518 --levels;
519 parms = TREE_CHAIN (parms);
520 }
521
522 push_inline_template_parms_recursive (parms, levels);
523 }
524
525 /* Remember how many levels of template parameters we pushed so that
526 we can pop them later. */
527 inline_parm_levels.safe_push (levels);
528 }
529
530 /* Undo the effects of maybe_begin_member_template_processing. */
531
532 void
533 maybe_end_member_template_processing (void)
534 {
535 int i;
536 int last;
537
538 if (inline_parm_levels.length () == 0)
539 return;
540
541 last = inline_parm_levels.pop ();
542 for (i = 0; i < last; ++i)
543 {
544 --processing_template_decl;
545 current_template_parms = TREE_CHAIN (current_template_parms);
546 poplevel (0, 0, 0);
547 }
548 }
549
550 /* Return a new template argument vector which contains all of ARGS,
551 but has as its innermost set of arguments the EXTRA_ARGS. */
552
553 static tree
554 add_to_template_args (tree args, tree extra_args)
555 {
556 tree new_args;
557 int extra_depth;
558 int i;
559 int j;
560
561 if (args == NULL_TREE || extra_args == error_mark_node)
562 return extra_args;
563
564 extra_depth = TMPL_ARGS_DEPTH (extra_args);
565 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
566
567 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
568 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
569
570 for (j = 1; j <= extra_depth; ++j, ++i)
571 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
572
573 return new_args;
574 }
575
576 /* Like add_to_template_args, but only the outermost ARGS are added to
577 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
578 (EXTRA_ARGS) levels are added. This function is used to combine
579 the template arguments from a partial instantiation with the
580 template arguments used to attain the full instantiation from the
581 partial instantiation. */
582
583 static tree
584 add_outermost_template_args (tree args, tree extra_args)
585 {
586 tree new_args;
587
588 /* If there are more levels of EXTRA_ARGS than there are ARGS,
589 something very fishy is going on. */
590 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
591
592 /* If *all* the new arguments will be the EXTRA_ARGS, just return
593 them. */
594 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
595 return extra_args;
596
597 /* For the moment, we make ARGS look like it contains fewer levels. */
598 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
599
600 new_args = add_to_template_args (args, extra_args);
601
602 /* Now, we restore ARGS to its full dimensions. */
603 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
604
605 return new_args;
606 }
607
608 /* Return the N levels of innermost template arguments from the ARGS. */
609
610 tree
611 get_innermost_template_args (tree args, int n)
612 {
613 tree new_args;
614 int extra_levels;
615 int i;
616
617 gcc_assert (n >= 0);
618
619 /* If N is 1, just return the innermost set of template arguments. */
620 if (n == 1)
621 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
622
623 /* If we're not removing anything, just return the arguments we were
624 given. */
625 extra_levels = TMPL_ARGS_DEPTH (args) - n;
626 gcc_assert (extra_levels >= 0);
627 if (extra_levels == 0)
628 return args;
629
630 /* Make a new set of arguments, not containing the outer arguments. */
631 new_args = make_tree_vec (n);
632 for (i = 1; i <= n; ++i)
633 SET_TMPL_ARGS_LEVEL (new_args, i,
634 TMPL_ARGS_LEVEL (args, i + extra_levels));
635
636 return new_args;
637 }
638
639 /* The inverse of get_innermost_template_args: Return all but the innermost
640 EXTRA_LEVELS levels of template arguments from the ARGS. */
641
642 static tree
643 strip_innermost_template_args (tree args, int extra_levels)
644 {
645 tree new_args;
646 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
647 int i;
648
649 gcc_assert (n >= 0);
650
651 /* If N is 1, just return the outermost set of template arguments. */
652 if (n == 1)
653 return TMPL_ARGS_LEVEL (args, 1);
654
655 /* If we're not removing anything, just return the arguments we were
656 given. */
657 gcc_assert (extra_levels >= 0);
658 if (extra_levels == 0)
659 return args;
660
661 /* Make a new set of arguments, not containing the inner arguments. */
662 new_args = make_tree_vec (n);
663 for (i = 1; i <= n; ++i)
664 SET_TMPL_ARGS_LEVEL (new_args, i,
665 TMPL_ARGS_LEVEL (args, i));
666
667 return new_args;
668 }
669
670 /* We've got a template header coming up; push to a new level for storing
671 the parms. */
672
673 void
674 begin_template_parm_list (void)
675 {
676 /* We use a non-tag-transparent scope here, which causes pushtag to
677 put tags in this scope, rather than in the enclosing class or
678 namespace scope. This is the right thing, since we want
679 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
680 global template class, push_template_decl handles putting the
681 TEMPLATE_DECL into top-level scope. For a nested template class,
682 e.g.:
683
684 template <class T> struct S1 {
685 template <class T> struct S2 {};
686 };
687
688 pushtag contains special code to insert the TEMPLATE_DECL for S2
689 at the right scope. */
690 begin_scope (sk_template_parms, NULL);
691 ++processing_template_decl;
692 ++processing_template_parmlist;
693 note_template_header (0);
694
695 /* Add a dummy parameter level while we process the parameter list. */
696 current_template_parms
697 = tree_cons (size_int (processing_template_decl),
698 make_tree_vec (0),
699 current_template_parms);
700 }
701
702 /* This routine is called when a specialization is declared. If it is
703 invalid to declare a specialization here, an error is reported and
704 false is returned, otherwise this routine will return true. */
705
706 static bool
707 check_specialization_scope (void)
708 {
709 tree scope = current_scope ();
710
711 /* [temp.expl.spec]
712
713 An explicit specialization shall be declared in the namespace of
714 which the template is a member, or, for member templates, in the
715 namespace of which the enclosing class or enclosing class
716 template is a member. An explicit specialization of a member
717 function, member class or static data member of a class template
718 shall be declared in the namespace of which the class template
719 is a member. */
720 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
721 {
722 error ("explicit specialization in non-namespace scope %qD", scope);
723 return false;
724 }
725
726 /* [temp.expl.spec]
727
728 In an explicit specialization declaration for a member of a class
729 template or a member template that appears in namespace scope,
730 the member template and some of its enclosing class templates may
731 remain unspecialized, except that the declaration shall not
732 explicitly specialize a class member template if its enclosing
733 class templates are not explicitly specialized as well. */
734 if (current_template_parms)
735 {
736 error ("enclosing class templates are not explicitly specialized");
737 return false;
738 }
739
740 return true;
741 }
742
743 /* We've just seen template <>. */
744
745 bool
746 begin_specialization (void)
747 {
748 begin_scope (sk_template_spec, NULL);
749 note_template_header (1);
750 return check_specialization_scope ();
751 }
752
753 /* Called at then end of processing a declaration preceded by
754 template<>. */
755
756 void
757 end_specialization (void)
758 {
759 finish_scope ();
760 reset_specialization ();
761 }
762
763 /* Any template <>'s that we have seen thus far are not referring to a
764 function specialization. */
765
766 void
767 reset_specialization (void)
768 {
769 processing_specialization = 0;
770 template_header_count = 0;
771 }
772
773 /* We've just seen a template header. If SPECIALIZATION is nonzero,
774 it was of the form template <>. */
775
776 static void
777 note_template_header (int specialization)
778 {
779 processing_specialization = specialization;
780 template_header_count++;
781 }
782
783 /* We're beginning an explicit instantiation. */
784
785 void
786 begin_explicit_instantiation (void)
787 {
788 gcc_assert (!processing_explicit_instantiation);
789 processing_explicit_instantiation = true;
790 }
791
792
793 void
794 end_explicit_instantiation (void)
795 {
796 gcc_assert (processing_explicit_instantiation);
797 processing_explicit_instantiation = false;
798 }
799
800 /* An explicit specialization or partial specialization of TMPL is being
801 declared. Check that the namespace in which the specialization is
802 occurring is permissible. Returns false iff it is invalid to
803 specialize TMPL in the current namespace. */
804
805 static bool
806 check_specialization_namespace (tree tmpl)
807 {
808 tree tpl_ns = decl_namespace_context (tmpl);
809
810 /* [tmpl.expl.spec]
811
812 An explicit specialization shall be declared in a namespace enclosing the
813 specialized template. An explicit specialization whose declarator-id is
814 not qualified shall be declared in the nearest enclosing namespace of the
815 template, or, if the namespace is inline (7.3.1), any namespace from its
816 enclosing namespace set. */
817 if (current_scope() != DECL_CONTEXT (tmpl)
818 && !at_namespace_scope_p ())
819 {
820 error ("specialization of %qD must appear at namespace scope", tmpl);
821 return false;
822 }
823
824 if (is_nested_namespace (current_namespace, tpl_ns, cxx_dialect < cxx11))
825 /* Same or enclosing namespace. */
826 return true;
827 else
828 {
829 auto_diagnostic_group d;
830 if (permerror (input_location,
831 "specialization of %qD in different namespace", tmpl))
832 inform (DECL_SOURCE_LOCATION (tmpl),
833 " from definition of %q#D", tmpl);
834 return false;
835 }
836 }
837
838 /* SPEC is an explicit instantiation. Check that it is valid to
839 perform this explicit instantiation in the current namespace. */
840
841 static void
842 check_explicit_instantiation_namespace (tree spec)
843 {
844 tree ns;
845
846 /* DR 275: An explicit instantiation shall appear in an enclosing
847 namespace of its template. */
848 ns = decl_namespace_context (spec);
849 if (!is_nested_namespace (current_namespace, ns))
850 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
851 "(which does not enclose namespace %qD)",
852 spec, current_namespace, ns);
853 }
854
855 // Returns the type of a template specialization only if that
856 // specialization needs to be defined. Otherwise (e.g., if the type has
857 // already been defined), the function returns NULL_TREE.
858 static tree
859 maybe_new_partial_specialization (tree type)
860 {
861 // An implicit instantiation of an incomplete type implies
862 // the definition of a new class template.
863 //
864 // template<typename T>
865 // struct S;
866 //
867 // template<typename T>
868 // struct S<T*>;
869 //
870 // Here, S<T*> is an implicit instantiation of S whose type
871 // is incomplete.
872 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
873 return type;
874
875 // It can also be the case that TYPE is a completed specialization.
876 // Continuing the previous example, suppose we also declare:
877 //
878 // template<typename T>
879 // requires Integral<T>
880 // struct S<T*>;
881 //
882 // Here, S<T*> refers to the specialization S<T*> defined
883 // above. However, we need to differentiate definitions because
884 // we intend to define a new partial specialization. In this case,
885 // we rely on the fact that the constraints are different for
886 // this declaration than that above.
887 //
888 // Note that we also get here for injected class names and
889 // late-parsed template definitions. We must ensure that we
890 // do not create new type declarations for those cases.
891 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
892 {
893 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
894 tree args = CLASSTYPE_TI_ARGS (type);
895
896 // If there are no template parameters, this cannot be a new
897 // partial template specializtion?
898 if (!current_template_parms)
899 return NULL_TREE;
900
901 // The injected-class-name is not a new partial specialization.
902 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
903 return NULL_TREE;
904
905 // If the constraints are not the same as those of the primary
906 // then, we can probably create a new specialization.
907 tree type_constr = current_template_constraints ();
908
909 if (type == TREE_TYPE (tmpl))
910 {
911 tree main_constr = get_constraints (tmpl);
912 if (equivalent_constraints (type_constr, main_constr))
913 return NULL_TREE;
914 }
915
916 // Also, if there's a pre-existing specialization with matching
917 // constraints, then this also isn't new.
918 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
919 while (specs)
920 {
921 tree spec_tmpl = TREE_VALUE (specs);
922 tree spec_args = TREE_PURPOSE (specs);
923 tree spec_constr = get_constraints (spec_tmpl);
924 if (comp_template_args (args, spec_args)
925 && equivalent_constraints (type_constr, spec_constr))
926 return NULL_TREE;
927 specs = TREE_CHAIN (specs);
928 }
929
930 // Create a new type node (and corresponding type decl)
931 // for the newly declared specialization.
932 tree t = make_class_type (TREE_CODE (type));
933 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
934 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
935
936 /* We only need a separate type node for storing the definition of this
937 partial specialization; uses of S<T*> are unconstrained, so all are
938 equivalent. So keep TYPE_CANONICAL the same. */
939 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
940
941 // Build the corresponding type decl.
942 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
943 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
944 DECL_SOURCE_LOCATION (d) = input_location;
945
946 return t;
947 }
948
949 return NULL_TREE;
950 }
951
952 /* The TYPE is being declared. If it is a template type, that means it
953 is a partial specialization. Do appropriate error-checking. */
954
955 tree
956 maybe_process_partial_specialization (tree type)
957 {
958 tree context;
959
960 if (type == error_mark_node)
961 return error_mark_node;
962
963 /* A lambda that appears in specialization context is not itself a
964 specialization. */
965 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
966 return type;
967
968 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
969 {
970 error ("name of class shadows template template parameter %qD",
971 TYPE_NAME (type));
972 return error_mark_node;
973 }
974
975 context = TYPE_CONTEXT (type);
976
977 if (TYPE_ALIAS_P (type))
978 {
979 tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (type);
980
981 if (tinfo && DECL_ALIAS_TEMPLATE_P (TI_TEMPLATE (tinfo)))
982 error ("specialization of alias template %qD",
983 TI_TEMPLATE (tinfo));
984 else
985 error ("explicit specialization of non-template %qT", type);
986 return error_mark_node;
987 }
988 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
989 {
990 /* This is for ordinary explicit specialization and partial
991 specialization of a template class such as:
992
993 template <> class C<int>;
994
995 or:
996
997 template <class T> class C<T*>;
998
999 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
1000
1001 if (tree t = maybe_new_partial_specialization (type))
1002 {
1003 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
1004 && !at_namespace_scope_p ())
1005 return error_mark_node;
1006 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
1007 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
1008 if (processing_template_decl)
1009 {
1010 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
1011 if (decl == error_mark_node)
1012 return error_mark_node;
1013 return TREE_TYPE (decl);
1014 }
1015 }
1016 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
1017 error ("specialization of %qT after instantiation", type);
1018 else if (errorcount && !processing_specialization
1019 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
1020 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
1021 /* Trying to define a specialization either without a template<> header
1022 or in an inappropriate place. We've already given an error, so just
1023 bail now so we don't actually define the specialization. */
1024 return error_mark_node;
1025 }
1026 else if (CLASS_TYPE_P (type)
1027 && !CLASSTYPE_USE_TEMPLATE (type)
1028 && CLASSTYPE_TEMPLATE_INFO (type)
1029 && context && CLASS_TYPE_P (context)
1030 && CLASSTYPE_TEMPLATE_INFO (context))
1031 {
1032 /* This is for an explicit specialization of member class
1033 template according to [temp.expl.spec/18]:
1034
1035 template <> template <class U> class C<int>::D;
1036
1037 The context `C<int>' must be an implicit instantiation.
1038 Otherwise this is just a member class template declared
1039 earlier like:
1040
1041 template <> class C<int> { template <class U> class D; };
1042 template <> template <class U> class C<int>::D;
1043
1044 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1045 while in the second case, `C<int>::D' is a primary template
1046 and `C<T>::D' may not exist. */
1047
1048 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1049 && !COMPLETE_TYPE_P (type))
1050 {
1051 tree t;
1052 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1053
1054 if (current_namespace
1055 != decl_namespace_context (tmpl))
1056 {
1057 if (permerror (input_location,
1058 "specialization of %qD in different namespace",
1059 type))
1060 inform (DECL_SOURCE_LOCATION (tmpl),
1061 "from definition of %q#D", tmpl);
1062 }
1063
1064 /* Check for invalid specialization after instantiation:
1065
1066 template <> template <> class C<int>::D<int>;
1067 template <> template <class U> class C<int>::D; */
1068
1069 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1070 t; t = TREE_CHAIN (t))
1071 {
1072 tree inst = TREE_VALUE (t);
1073 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1074 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1075 {
1076 /* We already have a full specialization of this partial
1077 instantiation, or a full specialization has been
1078 looked up but not instantiated. Reassign it to the
1079 new member specialization template. */
1080 spec_entry elt;
1081 spec_entry *entry;
1082
1083 elt.tmpl = most_general_template (tmpl);
1084 elt.args = CLASSTYPE_TI_ARGS (inst);
1085 elt.spec = inst;
1086
1087 type_specializations->remove_elt (&elt);
1088
1089 elt.tmpl = tmpl;
1090 CLASSTYPE_TI_ARGS (inst)
1091 = elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1092
1093 spec_entry **slot
1094 = type_specializations->find_slot (&elt, INSERT);
1095 entry = ggc_alloc<spec_entry> ();
1096 *entry = elt;
1097 *slot = entry;
1098 }
1099 else
1100 /* But if we've had an implicit instantiation, that's a
1101 problem ([temp.expl.spec]/6). */
1102 error ("specialization %qT after instantiation %qT",
1103 type, inst);
1104 }
1105
1106 /* Mark TYPE as a specialization. And as a result, we only
1107 have one level of template argument for the innermost
1108 class template. */
1109 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1110 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1111 CLASSTYPE_TI_ARGS (type)
1112 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1113 }
1114 }
1115 else if (processing_specialization)
1116 {
1117 /* Someday C++0x may allow for enum template specialization. */
1118 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1119 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1120 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1121 "of %qD not allowed by ISO C++", type);
1122 else
1123 {
1124 error ("explicit specialization of non-template %qT", type);
1125 return error_mark_node;
1126 }
1127 }
1128
1129 return type;
1130 }
1131
1132 /* Returns nonzero if we can optimize the retrieval of specializations
1133 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1134 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1135
1136 static inline bool
1137 optimize_specialization_lookup_p (tree tmpl)
1138 {
1139 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1140 && DECL_CLASS_SCOPE_P (tmpl)
1141 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1142 parameter. */
1143 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1144 /* The optimized lookup depends on the fact that the
1145 template arguments for the member function template apply
1146 purely to the containing class, which is not true if the
1147 containing class is an explicit or partial
1148 specialization. */
1149 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1150 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1151 && !DECL_CONV_FN_P (tmpl)
1152 /* It is possible to have a template that is not a member
1153 template and is not a member of a template class:
1154
1155 template <typename T>
1156 struct S { friend A::f(); };
1157
1158 Here, the friend function is a template, but the context does
1159 not have template information. The optimized lookup relies
1160 on having ARGS be the template arguments for both the class
1161 and the function template. */
1162 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1163 }
1164
1165 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1166 gone through coerce_template_parms by now. */
1167
1168 static void
1169 verify_unstripped_args_1 (tree inner)
1170 {
1171 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1172 {
1173 tree arg = TREE_VEC_ELT (inner, i);
1174 if (TREE_CODE (arg) == TEMPLATE_DECL)
1175 /* OK */;
1176 else if (TYPE_P (arg))
1177 gcc_assert (strip_typedefs (arg, NULL) == arg);
1178 else if (ARGUMENT_PACK_P (arg))
1179 verify_unstripped_args_1 (ARGUMENT_PACK_ARGS (arg));
1180 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1181 /* Allow typedefs on the type of a non-type argument, since a
1182 parameter can have them. */;
1183 else
1184 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1185 }
1186 }
1187
1188 static void
1189 verify_unstripped_args (tree args)
1190 {
1191 ++processing_template_decl;
1192 if (!any_dependent_template_arguments_p (args))
1193 verify_unstripped_args_1 (INNERMOST_TEMPLATE_ARGS (args));
1194 --processing_template_decl;
1195 }
1196
1197 /* Retrieve the specialization (in the sense of [temp.spec] - a
1198 specialization is either an instantiation or an explicit
1199 specialization) of TMPL for the given template ARGS. If there is
1200 no such specialization, return NULL_TREE. The ARGS are a vector of
1201 arguments, or a vector of vectors of arguments, in the case of
1202 templates with more than one level of parameters.
1203
1204 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1205 then we search for a partial specialization matching ARGS. This
1206 parameter is ignored if TMPL is not a class template.
1207
1208 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1209 result is a NONTYPE_ARGUMENT_PACK. */
1210
1211 static tree
1212 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1213 {
1214 if (tmpl == NULL_TREE)
1215 return NULL_TREE;
1216
1217 if (args == error_mark_node)
1218 return NULL_TREE;
1219
1220 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1221 || TREE_CODE (tmpl) == FIELD_DECL);
1222
1223 /* There should be as many levels of arguments as there are
1224 levels of parameters. */
1225 gcc_assert (TMPL_ARGS_DEPTH (args)
1226 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1227 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1228 : template_class_depth (DECL_CONTEXT (tmpl))));
1229
1230 if (flag_checking)
1231 verify_unstripped_args (args);
1232
1233 /* Lambda functions in templates aren't instantiated normally, but through
1234 tsubst_lambda_expr. */
1235 if (lambda_fn_in_template_p (tmpl))
1236 return NULL_TREE;
1237
1238 if (optimize_specialization_lookup_p (tmpl))
1239 {
1240 /* The template arguments actually apply to the containing
1241 class. Find the class specialization with those
1242 arguments. */
1243 tree class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1244 tree class_specialization
1245 = retrieve_specialization (class_template, args, 0);
1246 if (!class_specialization)
1247 return NULL_TREE;
1248
1249 /* Find the instance of TMPL. */
1250 tree fns = get_class_binding (class_specialization, DECL_NAME (tmpl));
1251 for (ovl_iterator iter (fns); iter; ++iter)
1252 {
1253 tree fn = *iter;
1254 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1255 /* using-declarations can add base methods to the method vec,
1256 and we don't want those here. */
1257 && DECL_CONTEXT (fn) == class_specialization)
1258 return fn;
1259 }
1260 return NULL_TREE;
1261 }
1262 else
1263 {
1264 spec_entry *found;
1265 spec_entry elt;
1266 hash_table<spec_hasher> *specializations;
1267
1268 elt.tmpl = tmpl;
1269 elt.args = args;
1270 elt.spec = NULL_TREE;
1271
1272 if (DECL_CLASS_TEMPLATE_P (tmpl))
1273 specializations = type_specializations;
1274 else
1275 specializations = decl_specializations;
1276
1277 if (hash == 0)
1278 hash = spec_hasher::hash (&elt);
1279 found = specializations->find_with_hash (&elt, hash);
1280 if (found)
1281 return found->spec;
1282 }
1283
1284 return NULL_TREE;
1285 }
1286
1287 /* Like retrieve_specialization, but for local declarations. */
1288
1289 tree
1290 retrieve_local_specialization (tree tmpl)
1291 {
1292 if (local_specializations == NULL)
1293 return NULL_TREE;
1294
1295 tree *slot = local_specializations->get (tmpl);
1296 return slot ? *slot : NULL_TREE;
1297 }
1298
1299 /* Returns nonzero iff DECL is a specialization of TMPL. */
1300
1301 int
1302 is_specialization_of (tree decl, tree tmpl)
1303 {
1304 tree t;
1305
1306 if (TREE_CODE (decl) == FUNCTION_DECL)
1307 {
1308 for (t = decl;
1309 t != NULL_TREE;
1310 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1311 if (t == tmpl)
1312 return 1;
1313 }
1314 else
1315 {
1316 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1317
1318 for (t = TREE_TYPE (decl);
1319 t != NULL_TREE;
1320 t = CLASSTYPE_USE_TEMPLATE (t)
1321 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1322 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1323 return 1;
1324 }
1325
1326 return 0;
1327 }
1328
1329 /* Returns nonzero iff DECL is a specialization of friend declaration
1330 FRIEND_DECL according to [temp.friend]. */
1331
1332 bool
1333 is_specialization_of_friend (tree decl, tree friend_decl)
1334 {
1335 bool need_template = true;
1336 int template_depth;
1337
1338 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1339 || TREE_CODE (decl) == TYPE_DECL);
1340
1341 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1342 of a template class, we want to check if DECL is a specialization
1343 if this. */
1344 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1345 && DECL_TEMPLATE_INFO (friend_decl)
1346 && !DECL_USE_TEMPLATE (friend_decl))
1347 {
1348 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1349 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1350 need_template = false;
1351 }
1352 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1353 && !PRIMARY_TEMPLATE_P (friend_decl))
1354 need_template = false;
1355
1356 /* There is nothing to do if this is not a template friend. */
1357 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1358 return false;
1359
1360 if (is_specialization_of (decl, friend_decl))
1361 return true;
1362
1363 /* [temp.friend/6]
1364 A member of a class template may be declared to be a friend of a
1365 non-template class. In this case, the corresponding member of
1366 every specialization of the class template is a friend of the
1367 class granting friendship.
1368
1369 For example, given a template friend declaration
1370
1371 template <class T> friend void A<T>::f();
1372
1373 the member function below is considered a friend
1374
1375 template <> struct A<int> {
1376 void f();
1377 };
1378
1379 For this type of template friend, TEMPLATE_DEPTH below will be
1380 nonzero. To determine if DECL is a friend of FRIEND, we first
1381 check if the enclosing class is a specialization of another. */
1382
1383 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1384 if (template_depth
1385 && DECL_CLASS_SCOPE_P (decl)
1386 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1387 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1388 {
1389 /* Next, we check the members themselves. In order to handle
1390 a few tricky cases, such as when FRIEND_DECL's are
1391
1392 template <class T> friend void A<T>::g(T t);
1393 template <class T> template <T t> friend void A<T>::h();
1394
1395 and DECL's are
1396
1397 void A<int>::g(int);
1398 template <int> void A<int>::h();
1399
1400 we need to figure out ARGS, the template arguments from
1401 the context of DECL. This is required for template substitution
1402 of `T' in the function parameter of `g' and template parameter
1403 of `h' in the above examples. Here ARGS corresponds to `int'. */
1404
1405 tree context = DECL_CONTEXT (decl);
1406 tree args = NULL_TREE;
1407 int current_depth = 0;
1408
1409 while (current_depth < template_depth)
1410 {
1411 if (CLASSTYPE_TEMPLATE_INFO (context))
1412 {
1413 if (current_depth == 0)
1414 args = TYPE_TI_ARGS (context);
1415 else
1416 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1417 current_depth++;
1418 }
1419 context = TYPE_CONTEXT (context);
1420 }
1421
1422 if (TREE_CODE (decl) == FUNCTION_DECL)
1423 {
1424 bool is_template;
1425 tree friend_type;
1426 tree decl_type;
1427 tree friend_args_type;
1428 tree decl_args_type;
1429
1430 /* Make sure that both DECL and FRIEND_DECL are templates or
1431 non-templates. */
1432 is_template = DECL_TEMPLATE_INFO (decl)
1433 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1434 if (need_template ^ is_template)
1435 return false;
1436 else if (is_template)
1437 {
1438 /* If both are templates, check template parameter list. */
1439 tree friend_parms
1440 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1441 args, tf_none);
1442 if (!comp_template_parms
1443 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1444 friend_parms))
1445 return false;
1446
1447 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1448 }
1449 else
1450 decl_type = TREE_TYPE (decl);
1451
1452 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1453 tf_none, NULL_TREE);
1454 if (friend_type == error_mark_node)
1455 return false;
1456
1457 /* Check if return types match. */
1458 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1459 return false;
1460
1461 /* Check if function parameter types match, ignoring the
1462 `this' parameter. */
1463 friend_args_type = TYPE_ARG_TYPES (friend_type);
1464 decl_args_type = TYPE_ARG_TYPES (decl_type);
1465 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1466 friend_args_type = TREE_CHAIN (friend_args_type);
1467 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1468 decl_args_type = TREE_CHAIN (decl_args_type);
1469
1470 return compparms (decl_args_type, friend_args_type);
1471 }
1472 else
1473 {
1474 /* DECL is a TYPE_DECL */
1475 bool is_template;
1476 tree decl_type = TREE_TYPE (decl);
1477
1478 /* Make sure that both DECL and FRIEND_DECL are templates or
1479 non-templates. */
1480 is_template
1481 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1482 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1483
1484 if (need_template ^ is_template)
1485 return false;
1486 else if (is_template)
1487 {
1488 tree friend_parms;
1489 /* If both are templates, check the name of the two
1490 TEMPLATE_DECL's first because is_friend didn't. */
1491 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1492 != DECL_NAME (friend_decl))
1493 return false;
1494
1495 /* Now check template parameter list. */
1496 friend_parms
1497 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1498 args, tf_none);
1499 return comp_template_parms
1500 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1501 friend_parms);
1502 }
1503 else
1504 return (DECL_NAME (decl)
1505 == DECL_NAME (friend_decl));
1506 }
1507 }
1508 return false;
1509 }
1510
1511 /* Register the specialization SPEC as a specialization of TMPL with
1512 the indicated ARGS. IS_FRIEND indicates whether the specialization
1513 is actually just a friend declaration. ATTRLIST is the list of
1514 attributes that the specialization is declared with or NULL when
1515 it isn't. Returns SPEC, or an equivalent prior declaration, if
1516 available.
1517
1518 We also store instantiations of field packs in the hash table, even
1519 though they are not themselves templates, to make lookup easier. */
1520
1521 static tree
1522 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1523 hashval_t hash)
1524 {
1525 tree fn;
1526 spec_entry **slot = NULL;
1527 spec_entry elt;
1528
1529 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1530 || (TREE_CODE (tmpl) == FIELD_DECL
1531 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1532
1533 if (TREE_CODE (spec) == FUNCTION_DECL
1534 && uses_template_parms (DECL_TI_ARGS (spec)))
1535 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1536 register it; we want the corresponding TEMPLATE_DECL instead.
1537 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1538 the more obvious `uses_template_parms (spec)' to avoid problems
1539 with default function arguments. In particular, given
1540 something like this:
1541
1542 template <class T> void f(T t1, T t = T())
1543
1544 the default argument expression is not substituted for in an
1545 instantiation unless and until it is actually needed. */
1546 return spec;
1547
1548 if (optimize_specialization_lookup_p (tmpl))
1549 /* We don't put these specializations in the hash table, but we might
1550 want to give an error about a mismatch. */
1551 fn = retrieve_specialization (tmpl, args, 0);
1552 else
1553 {
1554 elt.tmpl = tmpl;
1555 elt.args = args;
1556 elt.spec = spec;
1557
1558 if (hash == 0)
1559 hash = spec_hasher::hash (&elt);
1560
1561 slot =
1562 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1563 if (*slot)
1564 fn = ((spec_entry *) *slot)->spec;
1565 else
1566 fn = NULL_TREE;
1567 }
1568
1569 /* We can sometimes try to re-register a specialization that we've
1570 already got. In particular, regenerate_decl_from_template calls
1571 duplicate_decls which will update the specialization list. But,
1572 we'll still get called again here anyhow. It's more convenient
1573 to simply allow this than to try to prevent it. */
1574 if (fn == spec)
1575 return spec;
1576 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1577 {
1578 if (DECL_TEMPLATE_INSTANTIATION (fn))
1579 {
1580 if (DECL_ODR_USED (fn)
1581 || DECL_EXPLICIT_INSTANTIATION (fn))
1582 {
1583 error ("specialization of %qD after instantiation",
1584 fn);
1585 return error_mark_node;
1586 }
1587 else
1588 {
1589 tree clone;
1590 /* This situation should occur only if the first
1591 specialization is an implicit instantiation, the
1592 second is an explicit specialization, and the
1593 implicit instantiation has not yet been used. That
1594 situation can occur if we have implicitly
1595 instantiated a member function and then specialized
1596 it later.
1597
1598 We can also wind up here if a friend declaration that
1599 looked like an instantiation turns out to be a
1600 specialization:
1601
1602 template <class T> void foo(T);
1603 class S { friend void foo<>(int) };
1604 template <> void foo(int);
1605
1606 We transform the existing DECL in place so that any
1607 pointers to it become pointers to the updated
1608 declaration.
1609
1610 If there was a definition for the template, but not
1611 for the specialization, we want this to look as if
1612 there were no definition, and vice versa. */
1613 DECL_INITIAL (fn) = NULL_TREE;
1614 duplicate_decls (spec, fn, is_friend);
1615 /* The call to duplicate_decls will have applied
1616 [temp.expl.spec]:
1617
1618 An explicit specialization of a function template
1619 is inline only if it is explicitly declared to be,
1620 and independently of whether its function template
1621 is.
1622
1623 to the primary function; now copy the inline bits to
1624 the various clones. */
1625 FOR_EACH_CLONE (clone, fn)
1626 {
1627 DECL_DECLARED_INLINE_P (clone)
1628 = DECL_DECLARED_INLINE_P (fn);
1629 DECL_SOURCE_LOCATION (clone)
1630 = DECL_SOURCE_LOCATION (fn);
1631 DECL_DELETED_FN (clone)
1632 = DECL_DELETED_FN (fn);
1633 }
1634 check_specialization_namespace (tmpl);
1635
1636 return fn;
1637 }
1638 }
1639 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1640 {
1641 tree dd = duplicate_decls (spec, fn, is_friend);
1642 if (dd == error_mark_node)
1643 /* We've already complained in duplicate_decls. */
1644 return error_mark_node;
1645
1646 if (dd == NULL_TREE && DECL_INITIAL (spec))
1647 /* Dup decl failed, but this is a new definition. Set the
1648 line number so any errors match this new
1649 definition. */
1650 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1651
1652 return fn;
1653 }
1654 }
1655 else if (fn)
1656 return duplicate_decls (spec, fn, is_friend);
1657
1658 /* A specialization must be declared in the same namespace as the
1659 template it is specializing. */
1660 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1661 && !check_specialization_namespace (tmpl))
1662 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1663
1664 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1665 {
1666 spec_entry *entry = ggc_alloc<spec_entry> ();
1667 gcc_assert (tmpl && args && spec);
1668 *entry = elt;
1669 *slot = entry;
1670 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1671 && PRIMARY_TEMPLATE_P (tmpl)
1672 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1673 || variable_template_p (tmpl))
1674 /* If TMPL is a forward declaration of a template function, keep a list
1675 of all specializations in case we need to reassign them to a friend
1676 template later in tsubst_friend_function.
1677
1678 Also keep a list of all variable template instantiations so that
1679 process_partial_specialization can check whether a later partial
1680 specialization would have used it. */
1681 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1682 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1683 }
1684
1685 return spec;
1686 }
1687
1688 /* Returns true iff two spec_entry nodes are equivalent. */
1689
1690 int comparing_specializations;
1691
1692 bool
1693 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1694 {
1695 int equal;
1696
1697 ++comparing_specializations;
1698 equal = (e1->tmpl == e2->tmpl
1699 && comp_template_args (e1->args, e2->args));
1700 if (equal && flag_concepts
1701 /* tmpl could be a FIELD_DECL for a capture pack. */
1702 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1703 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1704 && uses_template_parms (e1->args))
1705 {
1706 /* Partial specializations of a variable template can be distinguished by
1707 constraints. */
1708 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1709 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1710 equal = equivalent_constraints (c1, c2);
1711 }
1712 --comparing_specializations;
1713
1714 return equal;
1715 }
1716
1717 /* Returns a hash for a template TMPL and template arguments ARGS. */
1718
1719 static hashval_t
1720 hash_tmpl_and_args (tree tmpl, tree args)
1721 {
1722 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1723 return iterative_hash_template_arg (args, val);
1724 }
1725
1726 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1727 ignoring SPEC. */
1728
1729 hashval_t
1730 spec_hasher::hash (spec_entry *e)
1731 {
1732 return hash_tmpl_and_args (e->tmpl, e->args);
1733 }
1734
1735 /* Recursively calculate a hash value for a template argument ARG, for use
1736 in the hash tables of template specializations. */
1737
1738 hashval_t
1739 iterative_hash_template_arg (tree arg, hashval_t val)
1740 {
1741 unsigned HOST_WIDE_INT i;
1742 enum tree_code code;
1743 char tclass;
1744
1745 if (arg == NULL_TREE)
1746 return iterative_hash_object (arg, val);
1747
1748 if (!TYPE_P (arg))
1749 STRIP_NOPS (arg);
1750
1751 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1752 gcc_unreachable ();
1753
1754 code = TREE_CODE (arg);
1755 tclass = TREE_CODE_CLASS (code);
1756
1757 val = iterative_hash_object (code, val);
1758
1759 switch (code)
1760 {
1761 case ERROR_MARK:
1762 return val;
1763
1764 case IDENTIFIER_NODE:
1765 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1766
1767 case TREE_VEC:
1768 {
1769 int i, len = TREE_VEC_LENGTH (arg);
1770 for (i = 0; i < len; ++i)
1771 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1772 return val;
1773 }
1774
1775 case TYPE_PACK_EXPANSION:
1776 case EXPR_PACK_EXPANSION:
1777 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1778 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1779
1780 case TYPE_ARGUMENT_PACK:
1781 case NONTYPE_ARGUMENT_PACK:
1782 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1783
1784 case TREE_LIST:
1785 for (; arg; arg = TREE_CHAIN (arg))
1786 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1787 return val;
1788
1789 case OVERLOAD:
1790 for (lkp_iterator iter (arg); iter; ++iter)
1791 val = iterative_hash_template_arg (*iter, val);
1792 return val;
1793
1794 case CONSTRUCTOR:
1795 {
1796 tree field, value;
1797 iterative_hash_template_arg (TREE_TYPE (arg), val);
1798 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1799 {
1800 val = iterative_hash_template_arg (field, val);
1801 val = iterative_hash_template_arg (value, val);
1802 }
1803 return val;
1804 }
1805
1806 case PARM_DECL:
1807 if (!DECL_ARTIFICIAL (arg))
1808 {
1809 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1810 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1811 }
1812 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1813
1814 case TARGET_EXPR:
1815 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1816
1817 case PTRMEM_CST:
1818 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1819 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1820
1821 case TEMPLATE_PARM_INDEX:
1822 val = iterative_hash_template_arg
1823 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1824 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1825 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1826
1827 case TRAIT_EXPR:
1828 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1829 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1830 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1831
1832 case BASELINK:
1833 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1834 val);
1835 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1836 val);
1837
1838 case MODOP_EXPR:
1839 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1840 code = TREE_CODE (TREE_OPERAND (arg, 1));
1841 val = iterative_hash_object (code, val);
1842 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1843
1844 case LAMBDA_EXPR:
1845 /* [temp.over.link] Two lambda-expressions are never considered
1846 equivalent.
1847
1848 So just hash the closure type. */
1849 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1850
1851 case CAST_EXPR:
1852 case IMPLICIT_CONV_EXPR:
1853 case STATIC_CAST_EXPR:
1854 case REINTERPRET_CAST_EXPR:
1855 case CONST_CAST_EXPR:
1856 case DYNAMIC_CAST_EXPR:
1857 case NEW_EXPR:
1858 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1859 /* Now hash operands as usual. */
1860 break;
1861
1862 case CALL_EXPR:
1863 {
1864 tree fn = CALL_EXPR_FN (arg);
1865 if (tree name = dependent_name (fn))
1866 {
1867 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
1868 val = iterative_hash_template_arg (TREE_OPERAND (fn, 1), val);
1869 fn = name;
1870 }
1871 val = iterative_hash_template_arg (fn, val);
1872 call_expr_arg_iterator ai;
1873 for (tree x = first_call_expr_arg (arg, &ai); x;
1874 x = next_call_expr_arg (&ai))
1875 val = iterative_hash_template_arg (x, val);
1876 return val;
1877 }
1878
1879 default:
1880 break;
1881 }
1882
1883 switch (tclass)
1884 {
1885 case tcc_type:
1886 if (alias_template_specialization_p (arg))
1887 {
1888 // We want an alias specialization that survived strip_typedefs
1889 // to hash differently from its TYPE_CANONICAL, to avoid hash
1890 // collisions that compare as different in template_args_equal.
1891 // These could be dependent specializations that strip_typedefs
1892 // left alone, or untouched specializations because
1893 // coerce_template_parms returns the unconverted template
1894 // arguments if it sees incomplete argument packs.
1895 tree ti = TYPE_ALIAS_TEMPLATE_INFO (arg);
1896 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1897 }
1898 if (TYPE_CANONICAL (arg))
1899 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1900 val);
1901 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1902 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1903 /* Otherwise just compare the types during lookup. */
1904 return val;
1905
1906 case tcc_declaration:
1907 case tcc_constant:
1908 return iterative_hash_expr (arg, val);
1909
1910 default:
1911 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1912 {
1913 unsigned n = cp_tree_operand_length (arg);
1914 for (i = 0; i < n; ++i)
1915 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1916 return val;
1917 }
1918 }
1919 gcc_unreachable ();
1920 return 0;
1921 }
1922
1923 /* Unregister the specialization SPEC as a specialization of TMPL.
1924 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1925 if the SPEC was listed as a specialization of TMPL.
1926
1927 Note that SPEC has been ggc_freed, so we can't look inside it. */
1928
1929 bool
1930 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1931 {
1932 spec_entry *entry;
1933 spec_entry elt;
1934
1935 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1936 elt.args = TI_ARGS (tinfo);
1937 elt.spec = NULL_TREE;
1938
1939 entry = decl_specializations->find (&elt);
1940 if (entry != NULL)
1941 {
1942 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1943 gcc_assert (new_spec != NULL_TREE);
1944 entry->spec = new_spec;
1945 return 1;
1946 }
1947
1948 return 0;
1949 }
1950
1951 /* Like register_specialization, but for local declarations. We are
1952 registering SPEC, an instantiation of TMPL. */
1953
1954 void
1955 register_local_specialization (tree spec, tree tmpl)
1956 {
1957 gcc_assert (tmpl != spec);
1958 local_specializations->put (tmpl, spec);
1959 }
1960
1961 /* TYPE is a class type. Returns true if TYPE is an explicitly
1962 specialized class. */
1963
1964 bool
1965 explicit_class_specialization_p (tree type)
1966 {
1967 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1968 return false;
1969 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1970 }
1971
1972 /* Print the list of functions at FNS, going through all the overloads
1973 for each element of the list. Alternatively, FNS cannot be a
1974 TREE_LIST, in which case it will be printed together with all the
1975 overloads.
1976
1977 MORE and *STR should respectively be FALSE and NULL when the function
1978 is called from the outside. They are used internally on recursive
1979 calls. print_candidates manages the two parameters and leaves NULL
1980 in *STR when it ends. */
1981
1982 static void
1983 print_candidates_1 (tree fns, char **str, bool more = false)
1984 {
1985 if (TREE_CODE (fns) == TREE_LIST)
1986 for (; fns; fns = TREE_CHAIN (fns))
1987 print_candidates_1 (TREE_VALUE (fns), str, more || TREE_CHAIN (fns));
1988 else
1989 for (lkp_iterator iter (fns); iter;)
1990 {
1991 tree cand = *iter;
1992 ++iter;
1993
1994 const char *pfx = *str;
1995 if (!pfx)
1996 {
1997 if (more || iter)
1998 pfx = _("candidates are:");
1999 else
2000 pfx = _("candidate is:");
2001 *str = get_spaces (pfx);
2002 }
2003 inform (DECL_SOURCE_LOCATION (cand), "%s %#qD", pfx, cand);
2004 }
2005 }
2006
2007 /* Print the list of candidate FNS in an error message. FNS can also
2008 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
2009
2010 void
2011 print_candidates (tree fns)
2012 {
2013 char *str = NULL;
2014 print_candidates_1 (fns, &str);
2015 free (str);
2016 }
2017
2018 /* Get a (possibly) constrained template declaration for the
2019 purpose of ordering candidates. */
2020 static tree
2021 get_template_for_ordering (tree list)
2022 {
2023 gcc_assert (TREE_CODE (list) == TREE_LIST);
2024 tree f = TREE_VALUE (list);
2025 if (tree ti = DECL_TEMPLATE_INFO (f))
2026 return TI_TEMPLATE (ti);
2027 return f;
2028 }
2029
2030 /* Among candidates having the same signature, return the
2031 most constrained or NULL_TREE if there is no best candidate.
2032 If the signatures of candidates vary (e.g., template
2033 specialization vs. member function), then there can be no
2034 most constrained.
2035
2036 Note that we don't compare constraints on the functions
2037 themselves, but rather those of their templates. */
2038 static tree
2039 most_constrained_function (tree candidates)
2040 {
2041 // Try to find the best candidate in a first pass.
2042 tree champ = candidates;
2043 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
2044 {
2045 int winner = more_constrained (get_template_for_ordering (champ),
2046 get_template_for_ordering (c));
2047 if (winner == -1)
2048 champ = c; // The candidate is more constrained
2049 else if (winner == 0)
2050 return NULL_TREE; // Neither is more constrained
2051 }
2052
2053 // Verify that the champ is better than previous candidates.
2054 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2055 if (!more_constrained (get_template_for_ordering (champ),
2056 get_template_for_ordering (c)))
2057 return NULL_TREE;
2058 }
2059
2060 return champ;
2061 }
2062
2063
2064 /* Returns the template (one of the functions given by TEMPLATE_ID)
2065 which can be specialized to match the indicated DECL with the
2066 explicit template args given in TEMPLATE_ID. The DECL may be
2067 NULL_TREE if none is available. In that case, the functions in
2068 TEMPLATE_ID are non-members.
2069
2070 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2071 specialization of a member template.
2072
2073 The TEMPLATE_COUNT is the number of references to qualifying
2074 template classes that appeared in the name of the function. See
2075 check_explicit_specialization for a more accurate description.
2076
2077 TSK indicates what kind of template declaration (if any) is being
2078 declared. TSK_TEMPLATE indicates that the declaration given by
2079 DECL, though a FUNCTION_DECL, has template parameters, and is
2080 therefore a template function.
2081
2082 The template args (those explicitly specified and those deduced)
2083 are output in a newly created vector *TARGS_OUT.
2084
2085 If it is impossible to determine the result, an error message is
2086 issued. The error_mark_node is returned to indicate failure. */
2087
2088 static tree
2089 determine_specialization (tree template_id,
2090 tree decl,
2091 tree* targs_out,
2092 int need_member_template,
2093 int template_count,
2094 tmpl_spec_kind tsk)
2095 {
2096 tree fns;
2097 tree targs;
2098 tree explicit_targs;
2099 tree candidates = NULL_TREE;
2100
2101 /* A TREE_LIST of templates of which DECL may be a specialization.
2102 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2103 corresponding TREE_PURPOSE is the set of template arguments that,
2104 when used to instantiate the template, would produce a function
2105 with the signature of DECL. */
2106 tree templates = NULL_TREE;
2107 int header_count;
2108 cp_binding_level *b;
2109
2110 *targs_out = NULL_TREE;
2111
2112 if (template_id == error_mark_node || decl == error_mark_node)
2113 return error_mark_node;
2114
2115 /* We shouldn't be specializing a member template of an
2116 unspecialized class template; we already gave an error in
2117 check_specialization_scope, now avoid crashing. */
2118 if (!VAR_P (decl)
2119 && template_count && DECL_CLASS_SCOPE_P (decl)
2120 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2121 {
2122 gcc_assert (errorcount);
2123 return error_mark_node;
2124 }
2125
2126 fns = TREE_OPERAND (template_id, 0);
2127 explicit_targs = TREE_OPERAND (template_id, 1);
2128
2129 if (fns == error_mark_node)
2130 return error_mark_node;
2131
2132 /* Check for baselinks. */
2133 if (BASELINK_P (fns))
2134 fns = BASELINK_FUNCTIONS (fns);
2135
2136 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2137 {
2138 error ("%qD is not a function template", fns);
2139 return error_mark_node;
2140 }
2141 else if (VAR_P (decl) && !variable_template_p (fns))
2142 {
2143 error ("%qD is not a variable template", fns);
2144 return error_mark_node;
2145 }
2146
2147 /* Count the number of template headers specified for this
2148 specialization. */
2149 header_count = 0;
2150 for (b = current_binding_level;
2151 b->kind == sk_template_parms;
2152 b = b->level_chain)
2153 ++header_count;
2154
2155 tree orig_fns = fns;
2156
2157 if (variable_template_p (fns))
2158 {
2159 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2160 targs = coerce_template_parms (parms, explicit_targs, fns,
2161 tf_warning_or_error,
2162 /*req_all*/true, /*use_defarg*/true);
2163 if (targs != error_mark_node)
2164 templates = tree_cons (targs, fns, templates);
2165 }
2166 else for (lkp_iterator iter (fns); iter; ++iter)
2167 {
2168 tree fn = *iter;
2169
2170 if (TREE_CODE (fn) == TEMPLATE_DECL)
2171 {
2172 tree decl_arg_types;
2173 tree fn_arg_types;
2174 tree insttype;
2175
2176 /* In case of explicit specialization, we need to check if
2177 the number of template headers appearing in the specialization
2178 is correct. This is usually done in check_explicit_specialization,
2179 but the check done there cannot be exhaustive when specializing
2180 member functions. Consider the following code:
2181
2182 template <> void A<int>::f(int);
2183 template <> template <> void A<int>::f(int);
2184
2185 Assuming that A<int> is not itself an explicit specialization
2186 already, the first line specializes "f" which is a non-template
2187 member function, whilst the second line specializes "f" which
2188 is a template member function. So both lines are syntactically
2189 correct, and check_explicit_specialization does not reject
2190 them.
2191
2192 Here, we can do better, as we are matching the specialization
2193 against the declarations. We count the number of template
2194 headers, and we check if they match TEMPLATE_COUNT + 1
2195 (TEMPLATE_COUNT is the number of qualifying template classes,
2196 plus there must be another header for the member template
2197 itself).
2198
2199 Notice that if header_count is zero, this is not a
2200 specialization but rather a template instantiation, so there
2201 is no check we can perform here. */
2202 if (header_count && header_count != template_count + 1)
2203 continue;
2204
2205 /* Check that the number of template arguments at the
2206 innermost level for DECL is the same as for FN. */
2207 if (current_binding_level->kind == sk_template_parms
2208 && !current_binding_level->explicit_spec_p
2209 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2210 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2211 (current_template_parms))))
2212 continue;
2213
2214 /* DECL might be a specialization of FN. */
2215 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2216 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2217
2218 /* For a non-static member function, we need to make sure
2219 that the const qualification is the same. Since
2220 get_bindings does not try to merge the "this" parameter,
2221 we must do the comparison explicitly. */
2222 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
2223 {
2224 if (!same_type_p (TREE_VALUE (fn_arg_types),
2225 TREE_VALUE (decl_arg_types)))
2226 continue;
2227
2228 /* And the ref-qualification. */
2229 if (type_memfn_rqual (TREE_TYPE (decl))
2230 != type_memfn_rqual (TREE_TYPE (fn)))
2231 continue;
2232 }
2233
2234 /* Skip the "this" parameter and, for constructors of
2235 classes with virtual bases, the VTT parameter. A
2236 full specialization of a constructor will have a VTT
2237 parameter, but a template never will. */
2238 decl_arg_types
2239 = skip_artificial_parms_for (decl, decl_arg_types);
2240 fn_arg_types
2241 = skip_artificial_parms_for (fn, fn_arg_types);
2242
2243 /* Function templates cannot be specializations; there are
2244 no partial specializations of functions. Therefore, if
2245 the type of DECL does not match FN, there is no
2246 match.
2247
2248 Note that it should never be the case that we have both
2249 candidates added here, and for regular member functions
2250 below. */
2251 if (tsk == tsk_template)
2252 {
2253 if (compparms (fn_arg_types, decl_arg_types))
2254 candidates = tree_cons (NULL_TREE, fn, candidates);
2255 continue;
2256 }
2257
2258 /* See whether this function might be a specialization of this
2259 template. Suppress access control because we might be trying
2260 to make this specialization a friend, and we have already done
2261 access control for the declaration of the specialization. */
2262 push_deferring_access_checks (dk_no_check);
2263 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2264 pop_deferring_access_checks ();
2265
2266 if (!targs)
2267 /* We cannot deduce template arguments that when used to
2268 specialize TMPL will produce DECL. */
2269 continue;
2270
2271 if (uses_template_parms (targs))
2272 /* We deduced something involving 'auto', which isn't a valid
2273 template argument. */
2274 continue;
2275
2276 /* Remove, from the set of candidates, all those functions
2277 whose constraints are not satisfied. */
2278 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2279 continue;
2280
2281 // Then, try to form the new function type.
2282 insttype = tsubst (TREE_TYPE (fn), targs, tf_fndecl_type, NULL_TREE);
2283 if (insttype == error_mark_node)
2284 continue;
2285 fn_arg_types
2286 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2287 if (!compparms (fn_arg_types, decl_arg_types))
2288 continue;
2289
2290 /* Save this template, and the arguments deduced. */
2291 templates = tree_cons (targs, fn, templates);
2292 }
2293 else if (need_member_template)
2294 /* FN is an ordinary member function, and we need a
2295 specialization of a member template. */
2296 ;
2297 else if (TREE_CODE (fn) != FUNCTION_DECL)
2298 /* We can get IDENTIFIER_NODEs here in certain erroneous
2299 cases. */
2300 ;
2301 else if (!DECL_FUNCTION_MEMBER_P (fn))
2302 /* This is just an ordinary non-member function. Nothing can
2303 be a specialization of that. */
2304 ;
2305 else if (DECL_ARTIFICIAL (fn))
2306 /* Cannot specialize functions that are created implicitly. */
2307 ;
2308 else
2309 {
2310 tree decl_arg_types;
2311
2312 /* This is an ordinary member function. However, since
2313 we're here, we can assume its enclosing class is a
2314 template class. For example,
2315
2316 template <typename T> struct S { void f(); };
2317 template <> void S<int>::f() {}
2318
2319 Here, S<int>::f is a non-template, but S<int> is a
2320 template class. If FN has the same type as DECL, we
2321 might be in business. */
2322
2323 if (!DECL_TEMPLATE_INFO (fn))
2324 /* Its enclosing class is an explicit specialization
2325 of a template class. This is not a candidate. */
2326 continue;
2327
2328 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2329 TREE_TYPE (TREE_TYPE (fn))))
2330 /* The return types differ. */
2331 continue;
2332
2333 /* Adjust the type of DECL in case FN is a static member. */
2334 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2335 if (DECL_STATIC_FUNCTION_P (fn)
2336 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2337 decl_arg_types = TREE_CHAIN (decl_arg_types);
2338
2339 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2340 decl_arg_types))
2341 continue;
2342
2343 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2344 && (type_memfn_rqual (TREE_TYPE (decl))
2345 != type_memfn_rqual (TREE_TYPE (fn))))
2346 continue;
2347
2348 // If the deduced arguments do not satisfy the constraints,
2349 // this is not a candidate.
2350 if (flag_concepts && !constraints_satisfied_p (fn))
2351 continue;
2352
2353 // Add the candidate.
2354 candidates = tree_cons (NULL_TREE, fn, candidates);
2355 }
2356 }
2357
2358 if (templates && TREE_CHAIN (templates))
2359 {
2360 /* We have:
2361
2362 [temp.expl.spec]
2363
2364 It is possible for a specialization with a given function
2365 signature to be instantiated from more than one function
2366 template. In such cases, explicit specification of the
2367 template arguments must be used to uniquely identify the
2368 function template specialization being specialized.
2369
2370 Note that here, there's no suggestion that we're supposed to
2371 determine which of the candidate templates is most
2372 specialized. However, we, also have:
2373
2374 [temp.func.order]
2375
2376 Partial ordering of overloaded function template
2377 declarations is used in the following contexts to select
2378 the function template to which a function template
2379 specialization refers:
2380
2381 -- when an explicit specialization refers to a function
2382 template.
2383
2384 So, we do use the partial ordering rules, at least for now.
2385 This extension can only serve to make invalid programs valid,
2386 so it's safe. And, there is strong anecdotal evidence that
2387 the committee intended the partial ordering rules to apply;
2388 the EDG front end has that behavior, and John Spicer claims
2389 that the committee simply forgot to delete the wording in
2390 [temp.expl.spec]. */
2391 tree tmpl = most_specialized_instantiation (templates);
2392 if (tmpl != error_mark_node)
2393 {
2394 templates = tmpl;
2395 TREE_CHAIN (templates) = NULL_TREE;
2396 }
2397 }
2398
2399 // Concepts allows multiple declarations of member functions
2400 // with the same signature. Like above, we need to rely on
2401 // on the partial ordering of those candidates to determine which
2402 // is the best.
2403 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2404 {
2405 if (tree cand = most_constrained_function (candidates))
2406 {
2407 candidates = cand;
2408 TREE_CHAIN (cand) = NULL_TREE;
2409 }
2410 }
2411
2412 if (templates == NULL_TREE && candidates == NULL_TREE)
2413 {
2414 error ("template-id %qD for %q+D does not match any template "
2415 "declaration", template_id, decl);
2416 if (header_count && header_count != template_count + 1)
2417 inform (input_location, "saw %d %<template<>%>, need %d for "
2418 "specializing a member function template",
2419 header_count, template_count + 1);
2420 else
2421 print_candidates (orig_fns);
2422 return error_mark_node;
2423 }
2424 else if ((templates && TREE_CHAIN (templates))
2425 || (candidates && TREE_CHAIN (candidates))
2426 || (templates && candidates))
2427 {
2428 error ("ambiguous template specialization %qD for %q+D",
2429 template_id, decl);
2430 candidates = chainon (candidates, templates);
2431 print_candidates (candidates);
2432 return error_mark_node;
2433 }
2434
2435 /* We have one, and exactly one, match. */
2436 if (candidates)
2437 {
2438 tree fn = TREE_VALUE (candidates);
2439 *targs_out = copy_node (DECL_TI_ARGS (fn));
2440
2441 // Propagate the candidate's constraints to the declaration.
2442 set_constraints (decl, get_constraints (fn));
2443
2444 /* DECL is a re-declaration or partial instantiation of a template
2445 function. */
2446 if (TREE_CODE (fn) == TEMPLATE_DECL)
2447 return fn;
2448 /* It was a specialization of an ordinary member function in a
2449 template class. */
2450 return DECL_TI_TEMPLATE (fn);
2451 }
2452
2453 /* It was a specialization of a template. */
2454 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2455 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2456 {
2457 *targs_out = copy_node (targs);
2458 SET_TMPL_ARGS_LEVEL (*targs_out,
2459 TMPL_ARGS_DEPTH (*targs_out),
2460 TREE_PURPOSE (templates));
2461 }
2462 else
2463 *targs_out = TREE_PURPOSE (templates);
2464 return TREE_VALUE (templates);
2465 }
2466
2467 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2468 but with the default argument values filled in from those in the
2469 TMPL_TYPES. */
2470
2471 static tree
2472 copy_default_args_to_explicit_spec_1 (tree spec_types,
2473 tree tmpl_types)
2474 {
2475 tree new_spec_types;
2476
2477 if (!spec_types)
2478 return NULL_TREE;
2479
2480 if (spec_types == void_list_node)
2481 return void_list_node;
2482
2483 /* Substitute into the rest of the list. */
2484 new_spec_types =
2485 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2486 TREE_CHAIN (tmpl_types));
2487
2488 /* Add the default argument for this parameter. */
2489 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2490 TREE_VALUE (spec_types),
2491 new_spec_types);
2492 }
2493
2494 /* DECL is an explicit specialization. Replicate default arguments
2495 from the template it specializes. (That way, code like:
2496
2497 template <class T> void f(T = 3);
2498 template <> void f(double);
2499 void g () { f (); }
2500
2501 works, as required.) An alternative approach would be to look up
2502 the correct default arguments at the call-site, but this approach
2503 is consistent with how implicit instantiations are handled. */
2504
2505 static void
2506 copy_default_args_to_explicit_spec (tree decl)
2507 {
2508 tree tmpl;
2509 tree spec_types;
2510 tree tmpl_types;
2511 tree new_spec_types;
2512 tree old_type;
2513 tree new_type;
2514 tree t;
2515 tree object_type = NULL_TREE;
2516 tree in_charge = NULL_TREE;
2517 tree vtt = NULL_TREE;
2518
2519 /* See if there's anything we need to do. */
2520 tmpl = DECL_TI_TEMPLATE (decl);
2521 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2522 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2523 if (TREE_PURPOSE (t))
2524 break;
2525 if (!t)
2526 return;
2527
2528 old_type = TREE_TYPE (decl);
2529 spec_types = TYPE_ARG_TYPES (old_type);
2530
2531 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2532 {
2533 /* Remove the this pointer, but remember the object's type for
2534 CV quals. */
2535 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2536 spec_types = TREE_CHAIN (spec_types);
2537 tmpl_types = TREE_CHAIN (tmpl_types);
2538
2539 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2540 {
2541 /* DECL may contain more parameters than TMPL due to the extra
2542 in-charge parameter in constructors and destructors. */
2543 in_charge = spec_types;
2544 spec_types = TREE_CHAIN (spec_types);
2545 }
2546 if (DECL_HAS_VTT_PARM_P (decl))
2547 {
2548 vtt = spec_types;
2549 spec_types = TREE_CHAIN (spec_types);
2550 }
2551 }
2552
2553 /* Compute the merged default arguments. */
2554 new_spec_types =
2555 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2556
2557 /* Compute the new FUNCTION_TYPE. */
2558 if (object_type)
2559 {
2560 if (vtt)
2561 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2562 TREE_VALUE (vtt),
2563 new_spec_types);
2564
2565 if (in_charge)
2566 /* Put the in-charge parameter back. */
2567 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2568 TREE_VALUE (in_charge),
2569 new_spec_types);
2570
2571 new_type = build_method_type_directly (object_type,
2572 TREE_TYPE (old_type),
2573 new_spec_types);
2574 }
2575 else
2576 new_type = build_function_type (TREE_TYPE (old_type),
2577 new_spec_types);
2578 new_type = cp_build_type_attribute_variant (new_type,
2579 TYPE_ATTRIBUTES (old_type));
2580 new_type = cxx_copy_lang_qualifiers (new_type, old_type);
2581
2582 TREE_TYPE (decl) = new_type;
2583 }
2584
2585 /* Return the number of template headers we expect to see for a definition
2586 or specialization of CTYPE or one of its non-template members. */
2587
2588 int
2589 num_template_headers_for_class (tree ctype)
2590 {
2591 int num_templates = 0;
2592
2593 while (ctype && CLASS_TYPE_P (ctype))
2594 {
2595 /* You're supposed to have one `template <...>' for every
2596 template class, but you don't need one for a full
2597 specialization. For example:
2598
2599 template <class T> struct S{};
2600 template <> struct S<int> { void f(); };
2601 void S<int>::f () {}
2602
2603 is correct; there shouldn't be a `template <>' for the
2604 definition of `S<int>::f'. */
2605 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2606 /* If CTYPE does not have template information of any
2607 kind, then it is not a template, nor is it nested
2608 within a template. */
2609 break;
2610 if (explicit_class_specialization_p (ctype))
2611 break;
2612 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2613 ++num_templates;
2614
2615 ctype = TYPE_CONTEXT (ctype);
2616 }
2617
2618 return num_templates;
2619 }
2620
2621 /* Do a simple sanity check on the template headers that precede the
2622 variable declaration DECL. */
2623
2624 void
2625 check_template_variable (tree decl)
2626 {
2627 tree ctx = CP_DECL_CONTEXT (decl);
2628 int wanted = num_template_headers_for_class (ctx);
2629 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2630 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2631 {
2632 if (cxx_dialect < cxx14)
2633 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2634 "variable templates only available with "
2635 "%<-std=c++14%> or %<-std=gnu++14%>");
2636
2637 // Namespace-scope variable templates should have a template header.
2638 ++wanted;
2639 }
2640 if (template_header_count > wanted)
2641 {
2642 auto_diagnostic_group d;
2643 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2644 "too many template headers for %qD "
2645 "(should be %d)",
2646 decl, wanted);
2647 if (warned && CLASS_TYPE_P (ctx)
2648 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2649 inform (DECL_SOURCE_LOCATION (decl),
2650 "members of an explicitly specialized class are defined "
2651 "without a template header");
2652 }
2653 }
2654
2655 /* An explicit specialization whose declarator-id or class-head-name is not
2656 qualified shall be declared in the nearest enclosing namespace of the
2657 template, or, if the namespace is inline (7.3.1), any namespace from its
2658 enclosing namespace set.
2659
2660 If the name declared in the explicit instantiation is an unqualified name,
2661 the explicit instantiation shall appear in the namespace where its template
2662 is declared or, if that namespace is inline (7.3.1), any namespace from its
2663 enclosing namespace set. */
2664
2665 void
2666 check_unqualified_spec_or_inst (tree t, location_t loc)
2667 {
2668 tree tmpl = most_general_template (t);
2669 if (DECL_NAMESPACE_SCOPE_P (tmpl)
2670 && !is_nested_namespace (current_namespace,
2671 CP_DECL_CONTEXT (tmpl), true))
2672 {
2673 if (processing_specialization)
2674 permerror (loc, "explicit specialization of %qD outside its "
2675 "namespace must use a nested-name-specifier", tmpl);
2676 else if (processing_explicit_instantiation
2677 && cxx_dialect >= cxx11)
2678 /* This was allowed in C++98, so only pedwarn. */
2679 pedwarn (loc, OPT_Wpedantic, "explicit instantiation of %qD "
2680 "outside its namespace must use a nested-name-"
2681 "specifier", tmpl);
2682 }
2683 }
2684
2685 /* Warn for a template specialization SPEC that is missing some of a set
2686 of function or type attributes that the template TEMPL is declared with.
2687 ATTRLIST is a list of additional attributes that SPEC should be taken
2688 to ultimately be declared with. */
2689
2690 static void
2691 warn_spec_missing_attributes (tree tmpl, tree spec, tree attrlist)
2692 {
2693 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
2694 tmpl = DECL_TEMPLATE_RESULT (tmpl);
2695
2696 /* Avoid warning if the difference between the primary and
2697 the specialization is not in one of the attributes below. */
2698 const char* const blacklist[] = {
2699 "alloc_align", "alloc_size", "assume_aligned", "format",
2700 "format_arg", "malloc", "nonnull", NULL
2701 };
2702
2703 /* Put together a list of the black listed attributes that the primary
2704 template is declared with that the specialization is not, in case
2705 it's not apparent from the most recent declaration of the primary. */
2706 pretty_printer str;
2707 unsigned nattrs = decls_mismatched_attributes (tmpl, spec, attrlist,
2708 blacklist, &str);
2709
2710 if (!nattrs)
2711 return;
2712
2713 auto_diagnostic_group d;
2714 if (warning_at (DECL_SOURCE_LOCATION (spec), OPT_Wmissing_attributes,
2715 "explicit specialization %q#D may be missing attributes",
2716 spec))
2717 inform (DECL_SOURCE_LOCATION (tmpl),
2718 nattrs > 1
2719 ? G_("missing primary template attributes %s")
2720 : G_("missing primary template attribute %s"),
2721 pp_formatted_text (&str));
2722 }
2723
2724 /* Check to see if the function just declared, as indicated in
2725 DECLARATOR, and in DECL, is a specialization of a function
2726 template. We may also discover that the declaration is an explicit
2727 instantiation at this point.
2728
2729 Returns DECL, or an equivalent declaration that should be used
2730 instead if all goes well. Issues an error message if something is
2731 amiss. Returns error_mark_node if the error is not easily
2732 recoverable.
2733
2734 FLAGS is a bitmask consisting of the following flags:
2735
2736 2: The function has a definition.
2737 4: The function is a friend.
2738
2739 The TEMPLATE_COUNT is the number of references to qualifying
2740 template classes that appeared in the name of the function. For
2741 example, in
2742
2743 template <class T> struct S { void f(); };
2744 void S<int>::f();
2745
2746 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2747 classes are not counted in the TEMPLATE_COUNT, so that in
2748
2749 template <class T> struct S {};
2750 template <> struct S<int> { void f(); }
2751 template <> void S<int>::f();
2752
2753 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2754 invalid; there should be no template <>.)
2755
2756 If the function is a specialization, it is marked as such via
2757 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2758 is set up correctly, and it is added to the list of specializations
2759 for that template. */
2760
2761 tree
2762 check_explicit_specialization (tree declarator,
2763 tree decl,
2764 int template_count,
2765 int flags,
2766 tree attrlist)
2767 {
2768 int have_def = flags & 2;
2769 int is_friend = flags & 4;
2770 bool is_concept = flags & 8;
2771 int specialization = 0;
2772 int explicit_instantiation = 0;
2773 int member_specialization = 0;
2774 tree ctype = DECL_CLASS_CONTEXT (decl);
2775 tree dname = DECL_NAME (decl);
2776 tmpl_spec_kind tsk;
2777
2778 if (is_friend)
2779 {
2780 if (!processing_specialization)
2781 tsk = tsk_none;
2782 else
2783 tsk = tsk_excessive_parms;
2784 }
2785 else
2786 tsk = current_tmpl_spec_kind (template_count);
2787
2788 switch (tsk)
2789 {
2790 case tsk_none:
2791 if (processing_specialization && !VAR_P (decl))
2792 {
2793 specialization = 1;
2794 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2795 }
2796 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2797 {
2798 if (is_friend)
2799 /* This could be something like:
2800
2801 template <class T> void f(T);
2802 class S { friend void f<>(int); } */
2803 specialization = 1;
2804 else
2805 {
2806 /* This case handles bogus declarations like template <>
2807 template <class T> void f<int>(); */
2808
2809 error ("template-id %qD in declaration of primary template",
2810 declarator);
2811 return decl;
2812 }
2813 }
2814 break;
2815
2816 case tsk_invalid_member_spec:
2817 /* The error has already been reported in
2818 check_specialization_scope. */
2819 return error_mark_node;
2820
2821 case tsk_invalid_expl_inst:
2822 error ("template parameter list used in explicit instantiation");
2823
2824 /* Fall through. */
2825
2826 case tsk_expl_inst:
2827 if (have_def)
2828 error ("definition provided for explicit instantiation");
2829
2830 explicit_instantiation = 1;
2831 break;
2832
2833 case tsk_excessive_parms:
2834 case tsk_insufficient_parms:
2835 if (tsk == tsk_excessive_parms)
2836 error ("too many template parameter lists in declaration of %qD",
2837 decl);
2838 else if (template_header_count)
2839 error("too few template parameter lists in declaration of %qD", decl);
2840 else
2841 error("explicit specialization of %qD must be introduced by "
2842 "%<template <>%>", decl);
2843
2844 /* Fall through. */
2845 case tsk_expl_spec:
2846 if (is_concept)
2847 error ("explicit specialization declared %<concept%>");
2848
2849 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2850 /* In cases like template<> constexpr bool v = true;
2851 We'll give an error in check_template_variable. */
2852 break;
2853
2854 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2855 if (ctype)
2856 member_specialization = 1;
2857 else
2858 specialization = 1;
2859 break;
2860
2861 case tsk_template:
2862 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2863 {
2864 /* This case handles bogus declarations like template <>
2865 template <class T> void f<int>(); */
2866
2867 if (!uses_template_parms (TREE_OPERAND (declarator, 1)))
2868 error ("template-id %qD in declaration of primary template",
2869 declarator);
2870 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2871 {
2872 /* Partial specialization of variable template. */
2873 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2874 specialization = 1;
2875 goto ok;
2876 }
2877 else if (cxx_dialect < cxx14)
2878 error ("non-type partial specialization %qD "
2879 "is not allowed", declarator);
2880 else
2881 error ("non-class, non-variable partial specialization %qD "
2882 "is not allowed", declarator);
2883 return decl;
2884 ok:;
2885 }
2886
2887 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2888 /* This is a specialization of a member template, without
2889 specialization the containing class. Something like:
2890
2891 template <class T> struct S {
2892 template <class U> void f (U);
2893 };
2894 template <> template <class U> void S<int>::f(U) {}
2895
2896 That's a specialization -- but of the entire template. */
2897 specialization = 1;
2898 break;
2899
2900 default:
2901 gcc_unreachable ();
2902 }
2903
2904 if ((specialization || member_specialization)
2905 /* This doesn't apply to variable templates. */
2906 && FUNC_OR_METHOD_TYPE_P (TREE_TYPE (decl)))
2907 {
2908 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2909 for (; t; t = TREE_CHAIN (t))
2910 if (TREE_PURPOSE (t))
2911 {
2912 permerror (input_location,
2913 "default argument specified in explicit specialization");
2914 break;
2915 }
2916 }
2917
2918 if (specialization || member_specialization || explicit_instantiation)
2919 {
2920 tree tmpl = NULL_TREE;
2921 tree targs = NULL_TREE;
2922 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2923
2924 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2925 if (!was_template_id)
2926 {
2927 tree fns;
2928
2929 gcc_assert (identifier_p (declarator));
2930 if (ctype)
2931 fns = dname;
2932 else
2933 {
2934 /* If there is no class context, the explicit instantiation
2935 must be at namespace scope. */
2936 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2937
2938 /* Find the namespace binding, using the declaration
2939 context. */
2940 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2941 false, true);
2942 if (fns == error_mark_node)
2943 /* If lookup fails, look for a friend declaration so we can
2944 give a better diagnostic. */
2945 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2946 /*type*/false, /*complain*/true,
2947 /*hidden*/true);
2948
2949 if (fns == error_mark_node || !is_overloaded_fn (fns))
2950 {
2951 error ("%qD is not a template function", dname);
2952 fns = error_mark_node;
2953 }
2954 }
2955
2956 declarator = lookup_template_function (fns, NULL_TREE);
2957 }
2958
2959 if (declarator == error_mark_node)
2960 return error_mark_node;
2961
2962 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2963 {
2964 if (!explicit_instantiation)
2965 /* A specialization in class scope. This is invalid,
2966 but the error will already have been flagged by
2967 check_specialization_scope. */
2968 return error_mark_node;
2969 else
2970 {
2971 /* It's not valid to write an explicit instantiation in
2972 class scope, e.g.:
2973
2974 class C { template void f(); }
2975
2976 This case is caught by the parser. However, on
2977 something like:
2978
2979 template class C { void f(); };
2980
2981 (which is invalid) we can get here. The error will be
2982 issued later. */
2983 ;
2984 }
2985
2986 return decl;
2987 }
2988 else if (ctype != NULL_TREE
2989 && (identifier_p (TREE_OPERAND (declarator, 0))))
2990 {
2991 // We'll match variable templates in start_decl.
2992 if (VAR_P (decl))
2993 return decl;
2994
2995 /* Find the list of functions in ctype that have the same
2996 name as the declared function. */
2997 tree name = TREE_OPERAND (declarator, 0);
2998
2999 if (constructor_name_p (name, ctype))
3000 {
3001 if (DECL_CONSTRUCTOR_P (decl)
3002 ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
3003 : !CLASSTYPE_DESTRUCTOR (ctype))
3004 {
3005 /* From [temp.expl.spec]:
3006
3007 If such an explicit specialization for the member
3008 of a class template names an implicitly-declared
3009 special member function (clause _special_), the
3010 program is ill-formed.
3011
3012 Similar language is found in [temp.explicit]. */
3013 error ("specialization of implicitly-declared special member function");
3014 return error_mark_node;
3015 }
3016
3017 name = DECL_NAME (decl);
3018 }
3019
3020 /* For a type-conversion operator, We might be looking for
3021 `operator int' which will be a specialization of
3022 `operator T'. Grab all the conversion operators, and
3023 then select from them. */
3024 tree fns = get_class_binding (ctype, IDENTIFIER_CONV_OP_P (name)
3025 ? conv_op_identifier : name);
3026
3027 if (fns == NULL_TREE)
3028 {
3029 error ("no member function %qD declared in %qT", name, ctype);
3030 return error_mark_node;
3031 }
3032 else
3033 TREE_OPERAND (declarator, 0) = fns;
3034 }
3035
3036 /* Figure out what exactly is being specialized at this point.
3037 Note that for an explicit instantiation, even one for a
3038 member function, we cannot tell a priori whether the
3039 instantiation is for a member template, or just a member
3040 function of a template class. Even if a member template is
3041 being instantiated, the member template arguments may be
3042 elided if they can be deduced from the rest of the
3043 declaration. */
3044 tmpl = determine_specialization (declarator, decl,
3045 &targs,
3046 member_specialization,
3047 template_count,
3048 tsk);
3049
3050 if (!tmpl || tmpl == error_mark_node)
3051 /* We couldn't figure out what this declaration was
3052 specializing. */
3053 return error_mark_node;
3054 else
3055 {
3056 if (TREE_CODE (decl) == FUNCTION_DECL
3057 && DECL_HIDDEN_FRIEND_P (tmpl))
3058 {
3059 auto_diagnostic_group d;
3060 if (pedwarn (DECL_SOURCE_LOCATION (decl), 0,
3061 "friend declaration %qD is not visible to "
3062 "explicit specialization", tmpl))
3063 inform (DECL_SOURCE_LOCATION (tmpl),
3064 "friend declaration here");
3065 }
3066 else if (!ctype && !is_friend
3067 && CP_DECL_CONTEXT (decl) == current_namespace)
3068 check_unqualified_spec_or_inst (tmpl, DECL_SOURCE_LOCATION (decl));
3069
3070 tree gen_tmpl = most_general_template (tmpl);
3071
3072 if (explicit_instantiation)
3073 {
3074 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
3075 is done by do_decl_instantiation later. */
3076
3077 int arg_depth = TMPL_ARGS_DEPTH (targs);
3078 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
3079
3080 if (arg_depth > parm_depth)
3081 {
3082 /* If TMPL is not the most general template (for
3083 example, if TMPL is a friend template that is
3084 injected into namespace scope), then there will
3085 be too many levels of TARGS. Remove some of them
3086 here. */
3087 int i;
3088 tree new_targs;
3089
3090 new_targs = make_tree_vec (parm_depth);
3091 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
3092 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
3093 = TREE_VEC_ELT (targs, i);
3094 targs = new_targs;
3095 }
3096
3097 return instantiate_template (tmpl, targs, tf_error);
3098 }
3099
3100 /* If we thought that the DECL was a member function, but it
3101 turns out to be specializing a static member function,
3102 make DECL a static member function as well. */
3103 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
3104 && DECL_STATIC_FUNCTION_P (tmpl)
3105 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
3106 revert_static_member_fn (decl);
3107
3108 /* If this is a specialization of a member template of a
3109 template class, we want to return the TEMPLATE_DECL, not
3110 the specialization of it. */
3111 if (tsk == tsk_template && !was_template_id)
3112 {
3113 tree result = DECL_TEMPLATE_RESULT (tmpl);
3114 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3115 DECL_INITIAL (result) = NULL_TREE;
3116 if (have_def)
3117 {
3118 tree parm;
3119 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3120 DECL_SOURCE_LOCATION (result)
3121 = DECL_SOURCE_LOCATION (decl);
3122 /* We want to use the argument list specified in the
3123 definition, not in the original declaration. */
3124 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3125 for (parm = DECL_ARGUMENTS (result); parm;
3126 parm = DECL_CHAIN (parm))
3127 DECL_CONTEXT (parm) = result;
3128 }
3129 return register_specialization (tmpl, gen_tmpl, targs,
3130 is_friend, 0);
3131 }
3132
3133 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3134 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3135
3136 if (was_template_id)
3137 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3138
3139 /* Inherit default function arguments from the template
3140 DECL is specializing. */
3141 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3142 copy_default_args_to_explicit_spec (decl);
3143
3144 /* This specialization has the same protection as the
3145 template it specializes. */
3146 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3147 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3148
3149 /* 7.1.1-1 [dcl.stc]
3150
3151 A storage-class-specifier shall not be specified in an
3152 explicit specialization...
3153
3154 The parser rejects these, so unless action is taken here,
3155 explicit function specializations will always appear with
3156 global linkage.
3157
3158 The action recommended by the C++ CWG in response to C++
3159 defect report 605 is to make the storage class and linkage
3160 of the explicit specialization match the templated function:
3161
3162 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3163 */
3164 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3165 {
3166 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3167 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3168
3169 /* A concept cannot be specialized. */
3170 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3171 {
3172 error ("explicit specialization of function concept %qD",
3173 gen_tmpl);
3174 return error_mark_node;
3175 }
3176
3177 /* This specialization has the same linkage and visibility as
3178 the function template it specializes. */
3179 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3180 if (! TREE_PUBLIC (decl))
3181 {
3182 DECL_INTERFACE_KNOWN (decl) = 1;
3183 DECL_NOT_REALLY_EXTERN (decl) = 1;
3184 }
3185 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3186 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3187 {
3188 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3189 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3190 }
3191 }
3192
3193 /* If DECL is a friend declaration, declared using an
3194 unqualified name, the namespace associated with DECL may
3195 have been set incorrectly. For example, in:
3196
3197 template <typename T> void f(T);
3198 namespace N {
3199 struct S { friend void f<int>(int); }
3200 }
3201
3202 we will have set the DECL_CONTEXT for the friend
3203 declaration to N, rather than to the global namespace. */
3204 if (DECL_NAMESPACE_SCOPE_P (decl))
3205 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3206
3207 if (is_friend && !have_def)
3208 /* This is not really a declaration of a specialization.
3209 It's just the name of an instantiation. But, it's not
3210 a request for an instantiation, either. */
3211 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3212 else if (TREE_CODE (decl) == FUNCTION_DECL)
3213 /* A specialization is not necessarily COMDAT. */
3214 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3215 && DECL_DECLARED_INLINE_P (decl));
3216 else if (VAR_P (decl))
3217 DECL_COMDAT (decl) = false;
3218
3219 /* If this is a full specialization, register it so that we can find
3220 it again. Partial specializations will be registered in
3221 process_partial_specialization. */
3222 if (!processing_template_decl)
3223 {
3224 warn_spec_missing_attributes (gen_tmpl, decl, attrlist);
3225
3226 decl = register_specialization (decl, gen_tmpl, targs,
3227 is_friend, 0);
3228 }
3229
3230
3231 /* A 'structor should already have clones. */
3232 gcc_assert (decl == error_mark_node
3233 || variable_template_p (tmpl)
3234 || !(DECL_CONSTRUCTOR_P (decl)
3235 || DECL_DESTRUCTOR_P (decl))
3236 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3237 }
3238 }
3239
3240 return decl;
3241 }
3242
3243 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3244 parameters. These are represented in the same format used for
3245 DECL_TEMPLATE_PARMS. */
3246
3247 int
3248 comp_template_parms (const_tree parms1, const_tree parms2)
3249 {
3250 const_tree p1;
3251 const_tree p2;
3252
3253 if (parms1 == parms2)
3254 return 1;
3255
3256 for (p1 = parms1, p2 = parms2;
3257 p1 != NULL_TREE && p2 != NULL_TREE;
3258 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3259 {
3260 tree t1 = TREE_VALUE (p1);
3261 tree t2 = TREE_VALUE (p2);
3262 int i;
3263
3264 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3265 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3266
3267 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3268 return 0;
3269
3270 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3271 {
3272 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3273 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3274
3275 /* If either of the template parameters are invalid, assume
3276 they match for the sake of error recovery. */
3277 if (error_operand_p (parm1) || error_operand_p (parm2))
3278 return 1;
3279
3280 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3281 return 0;
3282
3283 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3284 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3285 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3286 continue;
3287 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3288 return 0;
3289 }
3290 }
3291
3292 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3293 /* One set of parameters has more parameters lists than the
3294 other. */
3295 return 0;
3296
3297 return 1;
3298 }
3299
3300 /* Determine whether PARM is a parameter pack. */
3301
3302 bool
3303 template_parameter_pack_p (const_tree parm)
3304 {
3305 /* Determine if we have a non-type template parameter pack. */
3306 if (TREE_CODE (parm) == PARM_DECL)
3307 return (DECL_TEMPLATE_PARM_P (parm)
3308 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3309 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3310 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3311
3312 /* If this is a list of template parameters, we could get a
3313 TYPE_DECL or a TEMPLATE_DECL. */
3314 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3315 parm = TREE_TYPE (parm);
3316
3317 /* Otherwise it must be a type template parameter. */
3318 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3319 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3320 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3321 }
3322
3323 /* Determine if T is a function parameter pack. */
3324
3325 bool
3326 function_parameter_pack_p (const_tree t)
3327 {
3328 if (t && TREE_CODE (t) == PARM_DECL)
3329 return DECL_PACK_P (t);
3330 return false;
3331 }
3332
3333 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3334 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3335
3336 tree
3337 get_function_template_decl (const_tree primary_func_tmpl_inst)
3338 {
3339 if (! primary_func_tmpl_inst
3340 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3341 || ! primary_template_specialization_p (primary_func_tmpl_inst))
3342 return NULL;
3343
3344 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3345 }
3346
3347 /* Return true iff the function parameter PARAM_DECL was expanded
3348 from the function parameter pack PACK. */
3349
3350 bool
3351 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3352 {
3353 if (DECL_ARTIFICIAL (param_decl)
3354 || !function_parameter_pack_p (pack))
3355 return false;
3356
3357 /* The parameter pack and its pack arguments have the same
3358 DECL_PARM_INDEX. */
3359 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3360 }
3361
3362 /* Determine whether ARGS describes a variadic template args list,
3363 i.e., one that is terminated by a template argument pack. */
3364
3365 static bool
3366 template_args_variadic_p (tree args)
3367 {
3368 int nargs;
3369 tree last_parm;
3370
3371 if (args == NULL_TREE)
3372 return false;
3373
3374 args = INNERMOST_TEMPLATE_ARGS (args);
3375 nargs = TREE_VEC_LENGTH (args);
3376
3377 if (nargs == 0)
3378 return false;
3379
3380 last_parm = TREE_VEC_ELT (args, nargs - 1);
3381
3382 return ARGUMENT_PACK_P (last_parm);
3383 }
3384
3385 /* Generate a new name for the parameter pack name NAME (an
3386 IDENTIFIER_NODE) that incorporates its */
3387
3388 static tree
3389 make_ith_pack_parameter_name (tree name, int i)
3390 {
3391 /* Munge the name to include the parameter index. */
3392 #define NUMBUF_LEN 128
3393 char numbuf[NUMBUF_LEN];
3394 char* newname;
3395 int newname_len;
3396
3397 if (name == NULL_TREE)
3398 return name;
3399 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3400 newname_len = IDENTIFIER_LENGTH (name)
3401 + strlen (numbuf) + 2;
3402 newname = (char*)alloca (newname_len);
3403 snprintf (newname, newname_len,
3404 "%s#%i", IDENTIFIER_POINTER (name), i);
3405 return get_identifier (newname);
3406 }
3407
3408 /* Return true if T is a primary function, class or alias template
3409 specialization, not including the template pattern. */
3410
3411 bool
3412 primary_template_specialization_p (const_tree t)
3413 {
3414 if (!t)
3415 return false;
3416
3417 if (TREE_CODE (t) == FUNCTION_DECL || VAR_P (t))
3418 return (DECL_LANG_SPECIFIC (t)
3419 && DECL_USE_TEMPLATE (t)
3420 && DECL_TEMPLATE_INFO (t)
3421 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t)));
3422 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3423 return (CLASSTYPE_TEMPLATE_INFO (t)
3424 && CLASSTYPE_USE_TEMPLATE (t)
3425 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)));
3426 else if (alias_template_specialization_p (t))
3427 return true;
3428 return false;
3429 }
3430
3431 /* Return true if PARM is a template template parameter. */
3432
3433 bool
3434 template_template_parameter_p (const_tree parm)
3435 {
3436 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3437 }
3438
3439 /* Return true iff PARM is a DECL representing a type template
3440 parameter. */
3441
3442 bool
3443 template_type_parameter_p (const_tree parm)
3444 {
3445 return (parm
3446 && (TREE_CODE (parm) == TYPE_DECL
3447 || TREE_CODE (parm) == TEMPLATE_DECL)
3448 && DECL_TEMPLATE_PARM_P (parm));
3449 }
3450
3451 /* Return the template parameters of T if T is a
3452 primary template instantiation, NULL otherwise. */
3453
3454 tree
3455 get_primary_template_innermost_parameters (const_tree t)
3456 {
3457 tree parms = NULL, template_info = NULL;
3458
3459 if ((template_info = get_template_info (t))
3460 && primary_template_specialization_p (t))
3461 parms = INNERMOST_TEMPLATE_PARMS
3462 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3463
3464 return parms;
3465 }
3466
3467 /* Return the template parameters of the LEVELth level from the full list
3468 of template parameters PARMS. */
3469
3470 tree
3471 get_template_parms_at_level (tree parms, int level)
3472 {
3473 tree p;
3474 if (!parms
3475 || TREE_CODE (parms) != TREE_LIST
3476 || level > TMPL_PARMS_DEPTH (parms))
3477 return NULL_TREE;
3478
3479 for (p = parms; p; p = TREE_CHAIN (p))
3480 if (TMPL_PARMS_DEPTH (p) == level)
3481 return p;
3482
3483 return NULL_TREE;
3484 }
3485
3486 /* Returns the template arguments of T if T is a template instantiation,
3487 NULL otherwise. */
3488
3489 tree
3490 get_template_innermost_arguments (const_tree t)
3491 {
3492 tree args = NULL, template_info = NULL;
3493
3494 if ((template_info = get_template_info (t))
3495 && TI_ARGS (template_info))
3496 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3497
3498 return args;
3499 }
3500
3501 /* Return the argument pack elements of T if T is a template argument pack,
3502 NULL otherwise. */
3503
3504 tree
3505 get_template_argument_pack_elems (const_tree t)
3506 {
3507 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3508 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3509 return NULL;
3510
3511 return ARGUMENT_PACK_ARGS (t);
3512 }
3513
3514 /* In an ARGUMENT_PACK_SELECT, the actual underlying argument that the
3515 ARGUMENT_PACK_SELECT represents. */
3516
3517 static tree
3518 argument_pack_select_arg (tree t)
3519 {
3520 tree args = ARGUMENT_PACK_ARGS (ARGUMENT_PACK_SELECT_FROM_PACK (t));
3521 tree arg = TREE_VEC_ELT (args, ARGUMENT_PACK_SELECT_INDEX (t));
3522
3523 /* If the selected argument is an expansion E, that most likely means we were
3524 called from gen_elem_of_pack_expansion_instantiation during the
3525 substituting of an argument pack (of which the Ith element is a pack
3526 expansion, where I is ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
3527 In this case, the Ith element resulting from this substituting is going to
3528 be a pack expansion, which pattern is the pattern of E. Let's return the
3529 pattern of E, and gen_elem_of_pack_expansion_instantiation will build the
3530 resulting pack expansion from it. */
3531 if (PACK_EXPANSION_P (arg))
3532 {
3533 /* Make sure we aren't throwing away arg info. */
3534 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
3535 arg = PACK_EXPANSION_PATTERN (arg);
3536 }
3537
3538 return arg;
3539 }
3540
3541
3542 /* True iff FN is a function representing a built-in variadic parameter
3543 pack. */
3544
3545 bool
3546 builtin_pack_fn_p (tree fn)
3547 {
3548 if (!fn
3549 || TREE_CODE (fn) != FUNCTION_DECL
3550 || !DECL_IS_BUILTIN (fn))
3551 return false;
3552
3553 if (id_equal (DECL_NAME (fn), "__integer_pack"))
3554 return true;
3555
3556 return false;
3557 }
3558
3559 /* True iff CALL is a call to a function representing a built-in variadic
3560 parameter pack. */
3561
3562 static bool
3563 builtin_pack_call_p (tree call)
3564 {
3565 if (TREE_CODE (call) != CALL_EXPR)
3566 return false;
3567 return builtin_pack_fn_p (CALL_EXPR_FN (call));
3568 }
3569
3570 /* Return a TREE_VEC for the expansion of __integer_pack(HI). */
3571
3572 static tree
3573 expand_integer_pack (tree call, tree args, tsubst_flags_t complain,
3574 tree in_decl)
3575 {
3576 tree ohi = CALL_EXPR_ARG (call, 0);
3577 tree hi = tsubst_copy_and_build (ohi, args, complain, in_decl,
3578 false/*fn*/, true/*int_cst*/);
3579
3580 if (value_dependent_expression_p (hi))
3581 {
3582 if (hi != ohi)
3583 {
3584 call = copy_node (call);
3585 CALL_EXPR_ARG (call, 0) = hi;
3586 }
3587 tree ex = make_pack_expansion (call, complain);
3588 tree vec = make_tree_vec (1);
3589 TREE_VEC_ELT (vec, 0) = ex;
3590 return vec;
3591 }
3592 else
3593 {
3594 hi = cxx_constant_value (hi);
3595 int len = valid_constant_size_p (hi) ? tree_to_shwi (hi) : -1;
3596
3597 /* Calculate the largest value of len that won't make the size of the vec
3598 overflow an int. The compiler will exceed resource limits long before
3599 this, but it seems a decent place to diagnose. */
3600 int max = ((INT_MAX - sizeof (tree_vec)) / sizeof (tree)) + 1;
3601
3602 if (len < 0 || len > max)
3603 {
3604 if ((complain & tf_error)
3605 && hi != error_mark_node)
3606 error ("argument to %<__integer_pack%> must be between 0 and %d",
3607 max);
3608 return error_mark_node;
3609 }
3610
3611 tree vec = make_tree_vec (len);
3612
3613 for (int i = 0; i < len; ++i)
3614 TREE_VEC_ELT (vec, i) = size_int (i);
3615
3616 return vec;
3617 }
3618 }
3619
3620 /* Return a TREE_VEC for the expansion of built-in template parameter pack
3621 CALL. */
3622
3623 static tree
3624 expand_builtin_pack_call (tree call, tree args, tsubst_flags_t complain,
3625 tree in_decl)
3626 {
3627 if (!builtin_pack_call_p (call))
3628 return NULL_TREE;
3629
3630 tree fn = CALL_EXPR_FN (call);
3631
3632 if (id_equal (DECL_NAME (fn), "__integer_pack"))
3633 return expand_integer_pack (call, args, complain, in_decl);
3634
3635 return NULL_TREE;
3636 }
3637
3638 /* Structure used to track the progress of find_parameter_packs_r. */
3639 struct find_parameter_pack_data
3640 {
3641 /* TREE_LIST that will contain all of the parameter packs found by
3642 the traversal. */
3643 tree* parameter_packs;
3644
3645 /* Set of AST nodes that have been visited by the traversal. */
3646 hash_set<tree> *visited;
3647
3648 /* True iff we're making a type pack expansion. */
3649 bool type_pack_expansion_p;
3650 };
3651
3652 /* Identifies all of the argument packs that occur in a template
3653 argument and appends them to the TREE_LIST inside DATA, which is a
3654 find_parameter_pack_data structure. This is a subroutine of
3655 make_pack_expansion and uses_parameter_packs. */
3656 static tree
3657 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3658 {
3659 tree t = *tp;
3660 struct find_parameter_pack_data* ppd =
3661 (struct find_parameter_pack_data*)data;
3662 bool parameter_pack_p = false;
3663
3664 /* Handle type aliases/typedefs. */
3665 if (TYPE_ALIAS_P (t))
3666 {
3667 if (tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t))
3668 cp_walk_tree (&TI_ARGS (tinfo),
3669 &find_parameter_packs_r,
3670 ppd, ppd->visited);
3671 *walk_subtrees = 0;
3672 return NULL_TREE;
3673 }
3674
3675 /* Identify whether this is a parameter pack or not. */
3676 switch (TREE_CODE (t))
3677 {
3678 case TEMPLATE_PARM_INDEX:
3679 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3680 parameter_pack_p = true;
3681 break;
3682
3683 case TEMPLATE_TYPE_PARM:
3684 t = TYPE_MAIN_VARIANT (t);
3685 /* FALLTHRU */
3686 case TEMPLATE_TEMPLATE_PARM:
3687 /* If the placeholder appears in the decl-specifier-seq of a function
3688 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3689 is a pack expansion, the invented template parameter is a template
3690 parameter pack. */
3691 if (ppd->type_pack_expansion_p && is_auto (t))
3692 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3693 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3694 parameter_pack_p = true;
3695 break;
3696
3697 case FIELD_DECL:
3698 case PARM_DECL:
3699 if (DECL_PACK_P (t))
3700 {
3701 /* We don't want to walk into the type of a PARM_DECL,
3702 because we don't want to see the type parameter pack. */
3703 *walk_subtrees = 0;
3704 parameter_pack_p = true;
3705 }
3706 break;
3707
3708 case VAR_DECL:
3709 if (DECL_PACK_P (t))
3710 {
3711 /* We don't want to walk into the type of a variadic capture proxy,
3712 because we don't want to see the type parameter pack. */
3713 *walk_subtrees = 0;
3714 parameter_pack_p = true;
3715 }
3716 else if (variable_template_specialization_p (t))
3717 {
3718 cp_walk_tree (&DECL_TI_ARGS (t),
3719 find_parameter_packs_r,
3720 ppd, ppd->visited);
3721 *walk_subtrees = 0;
3722 }
3723 break;
3724
3725 case CALL_EXPR:
3726 if (builtin_pack_call_p (t))
3727 parameter_pack_p = true;
3728 break;
3729
3730 case BASES:
3731 parameter_pack_p = true;
3732 break;
3733 default:
3734 /* Not a parameter pack. */
3735 break;
3736 }
3737
3738 if (parameter_pack_p)
3739 {
3740 /* Add this parameter pack to the list. */
3741 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3742 }
3743
3744 if (TYPE_P (t))
3745 cp_walk_tree (&TYPE_CONTEXT (t),
3746 &find_parameter_packs_r, ppd, ppd->visited);
3747
3748 /* This switch statement will return immediately if we don't find a
3749 parameter pack. */
3750 switch (TREE_CODE (t))
3751 {
3752 case TEMPLATE_PARM_INDEX:
3753 return NULL_TREE;
3754
3755 case BOUND_TEMPLATE_TEMPLATE_PARM:
3756 /* Check the template itself. */
3757 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3758 &find_parameter_packs_r, ppd, ppd->visited);
3759 /* Check the template arguments. */
3760 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3761 ppd->visited);
3762 *walk_subtrees = 0;
3763 return NULL_TREE;
3764
3765 case TEMPLATE_TYPE_PARM:
3766 case TEMPLATE_TEMPLATE_PARM:
3767 return NULL_TREE;
3768
3769 case PARM_DECL:
3770 return NULL_TREE;
3771
3772 case DECL_EXPR:
3773 /* Ignore the declaration of a capture proxy for a parameter pack. */
3774 if (is_capture_proxy (DECL_EXPR_DECL (t)))
3775 *walk_subtrees = 0;
3776 return NULL_TREE;
3777
3778 case RECORD_TYPE:
3779 if (TYPE_PTRMEMFUNC_P (t))
3780 return NULL_TREE;
3781 /* Fall through. */
3782
3783 case UNION_TYPE:
3784 case ENUMERAL_TYPE:
3785 if (TYPE_TEMPLATE_INFO (t))
3786 cp_walk_tree (&TYPE_TI_ARGS (t),
3787 &find_parameter_packs_r, ppd, ppd->visited);
3788
3789 *walk_subtrees = 0;
3790 return NULL_TREE;
3791
3792 case TEMPLATE_DECL:
3793 if (!DECL_TEMPLATE_TEMPLATE_PARM_P (t))
3794 return NULL_TREE;
3795 gcc_fallthrough();
3796
3797 case CONSTRUCTOR:
3798 cp_walk_tree (&TREE_TYPE (t),
3799 &find_parameter_packs_r, ppd, ppd->visited);
3800 return NULL_TREE;
3801
3802 case TYPENAME_TYPE:
3803 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3804 ppd, ppd->visited);
3805 *walk_subtrees = 0;
3806 return NULL_TREE;
3807
3808 case TYPE_PACK_EXPANSION:
3809 case EXPR_PACK_EXPANSION:
3810 *walk_subtrees = 0;
3811 return NULL_TREE;
3812
3813 case INTEGER_TYPE:
3814 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3815 ppd, ppd->visited);
3816 *walk_subtrees = 0;
3817 return NULL_TREE;
3818
3819 case IDENTIFIER_NODE:
3820 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3821 ppd->visited);
3822 *walk_subtrees = 0;
3823 return NULL_TREE;
3824
3825 case LAMBDA_EXPR:
3826 {
3827 /* Look at explicit captures. */
3828 for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (t);
3829 cap; cap = TREE_CHAIN (cap))
3830 cp_walk_tree (&TREE_VALUE (cap), &find_parameter_packs_r, ppd,
3831 ppd->visited);
3832 /* Since we defer implicit capture, look in the parms and body. */
3833 tree fn = lambda_function (t);
3834 cp_walk_tree (&TREE_TYPE (fn), &find_parameter_packs_r, ppd,
3835 ppd->visited);
3836 cp_walk_tree (&DECL_SAVED_TREE (fn), &find_parameter_packs_r, ppd,
3837 ppd->visited);
3838 *walk_subtrees = 0;
3839 return NULL_TREE;
3840 }
3841
3842 case DECLTYPE_TYPE:
3843 {
3844 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3845 type_pack_expansion_p to false so that any placeholders
3846 within the expression don't get marked as parameter packs. */
3847 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3848 ppd->type_pack_expansion_p = false;
3849 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3850 ppd, ppd->visited);
3851 ppd->type_pack_expansion_p = type_pack_expansion_p;
3852 *walk_subtrees = 0;
3853 return NULL_TREE;
3854 }
3855
3856 case IF_STMT:
3857 cp_walk_tree (&IF_COND (t), &find_parameter_packs_r,
3858 ppd, ppd->visited);
3859 cp_walk_tree (&THEN_CLAUSE (t), &find_parameter_packs_r,
3860 ppd, ppd->visited);
3861 cp_walk_tree (&ELSE_CLAUSE (t), &find_parameter_packs_r,
3862 ppd, ppd->visited);
3863 /* Don't walk into IF_STMT_EXTRA_ARGS. */
3864 *walk_subtrees = 0;
3865 return NULL_TREE;
3866
3867 default:
3868 return NULL_TREE;
3869 }
3870
3871 return NULL_TREE;
3872 }
3873
3874 /* Determines if the expression or type T uses any parameter packs. */
3875 tree
3876 uses_parameter_packs (tree t)
3877 {
3878 tree parameter_packs = NULL_TREE;
3879 struct find_parameter_pack_data ppd;
3880 ppd.parameter_packs = &parameter_packs;
3881 ppd.visited = new hash_set<tree>;
3882 ppd.type_pack_expansion_p = false;
3883 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3884 delete ppd.visited;
3885 return parameter_packs;
3886 }
3887
3888 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3889 representation a base-class initializer into a parameter pack
3890 expansion. If all goes well, the resulting node will be an
3891 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3892 respectively. */
3893 tree
3894 make_pack_expansion (tree arg, tsubst_flags_t complain)
3895 {
3896 tree result;
3897 tree parameter_packs = NULL_TREE;
3898 bool for_types = false;
3899 struct find_parameter_pack_data ppd;
3900
3901 if (!arg || arg == error_mark_node)
3902 return arg;
3903
3904 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3905 {
3906 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3907 class initializer. In this case, the TREE_PURPOSE will be a
3908 _TYPE node (representing the base class expansion we're
3909 initializing) and the TREE_VALUE will be a TREE_LIST
3910 containing the initialization arguments.
3911
3912 The resulting expansion looks somewhat different from most
3913 expansions. Rather than returning just one _EXPANSION, we
3914 return a TREE_LIST whose TREE_PURPOSE is a
3915 TYPE_PACK_EXPANSION containing the bases that will be
3916 initialized. The TREE_VALUE will be identical to the
3917 original TREE_VALUE, which is a list of arguments that will
3918 be passed to each base. We do not introduce any new pack
3919 expansion nodes into the TREE_VALUE (although it is possible
3920 that some already exist), because the TREE_PURPOSE and
3921 TREE_VALUE all need to be expanded together with the same
3922 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3923 resulting TREE_PURPOSE will mention the parameter packs in
3924 both the bases and the arguments to the bases. */
3925 tree purpose;
3926 tree value;
3927 tree parameter_packs = NULL_TREE;
3928
3929 /* Determine which parameter packs will be used by the base
3930 class expansion. */
3931 ppd.visited = new hash_set<tree>;
3932 ppd.parameter_packs = &parameter_packs;
3933 ppd.type_pack_expansion_p = false;
3934 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3935 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3936 &ppd, ppd.visited);
3937
3938 if (parameter_packs == NULL_TREE)
3939 {
3940 if (complain & tf_error)
3941 error ("base initializer expansion %qT contains no parameter packs",
3942 arg);
3943 delete ppd.visited;
3944 return error_mark_node;
3945 }
3946
3947 if (TREE_VALUE (arg) != void_type_node)
3948 {
3949 /* Collect the sets of parameter packs used in each of the
3950 initialization arguments. */
3951 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3952 {
3953 /* Determine which parameter packs will be expanded in this
3954 argument. */
3955 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3956 &ppd, ppd.visited);
3957 }
3958 }
3959
3960 delete ppd.visited;
3961
3962 /* Create the pack expansion type for the base type. */
3963 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3964 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3965 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3966 PACK_EXPANSION_LOCAL_P (purpose) = at_function_scope_p ();
3967
3968 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3969 they will rarely be compared to anything. */
3970 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3971
3972 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3973 }
3974
3975 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3976 for_types = true;
3977
3978 /* Build the PACK_EXPANSION_* node. */
3979 result = for_types
3980 ? cxx_make_type (TYPE_PACK_EXPANSION)
3981 : make_node (EXPR_PACK_EXPANSION);
3982 SET_PACK_EXPANSION_PATTERN (result, arg);
3983 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3984 {
3985 /* Propagate type and const-expression information. */
3986 TREE_TYPE (result) = TREE_TYPE (arg);
3987 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3988 /* Mark this read now, since the expansion might be length 0. */
3989 mark_exp_read (arg);
3990 }
3991 else
3992 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3993 they will rarely be compared to anything. */
3994 SET_TYPE_STRUCTURAL_EQUALITY (result);
3995
3996 /* Determine which parameter packs will be expanded. */
3997 ppd.parameter_packs = &parameter_packs;
3998 ppd.visited = new hash_set<tree>;
3999 ppd.type_pack_expansion_p = TYPE_P (arg);
4000 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
4001 delete ppd.visited;
4002
4003 /* Make sure we found some parameter packs. */
4004 if (parameter_packs == NULL_TREE)
4005 {
4006 if (complain & tf_error)
4007 {
4008 if (TYPE_P (arg))
4009 error ("expansion pattern %qT contains no parameter packs", arg);
4010 else
4011 error ("expansion pattern %qE contains no parameter packs", arg);
4012 }
4013 return error_mark_node;
4014 }
4015 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
4016
4017 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
4018
4019 return result;
4020 }
4021
4022 /* Checks T for any "bare" parameter packs, which have not yet been
4023 expanded, and issues an error if any are found. This operation can
4024 only be done on full expressions or types (e.g., an expression
4025 statement, "if" condition, etc.), because we could have expressions like:
4026
4027 foo(f(g(h(args)))...)
4028
4029 where "args" is a parameter pack. check_for_bare_parameter_packs
4030 should not be called for the subexpressions args, h(args),
4031 g(h(args)), or f(g(h(args))), because we would produce erroneous
4032 error messages.
4033
4034 Returns TRUE and emits an error if there were bare parameter packs,
4035 returns FALSE otherwise. */
4036 bool
4037 check_for_bare_parameter_packs (tree t, location_t loc /* = UNKNOWN_LOCATION */)
4038 {
4039 tree parameter_packs = NULL_TREE;
4040 struct find_parameter_pack_data ppd;
4041
4042 if (!processing_template_decl || !t || t == error_mark_node)
4043 return false;
4044
4045 /* A lambda might use a parameter pack from the containing context. */
4046 if (current_class_type && LAMBDA_TYPE_P (current_class_type)
4047 && CLASSTYPE_TEMPLATE_INFO (current_class_type))
4048 return false;
4049
4050 if (TREE_CODE (t) == TYPE_DECL)
4051 t = TREE_TYPE (t);
4052
4053 ppd.parameter_packs = &parameter_packs;
4054 ppd.visited = new hash_set<tree>;
4055 ppd.type_pack_expansion_p = false;
4056 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
4057 delete ppd.visited;
4058
4059 if (parameter_packs)
4060 {
4061 if (loc == UNKNOWN_LOCATION)
4062 loc = cp_expr_loc_or_input_loc (t);
4063 error_at (loc, "parameter packs not expanded with %<...%>:");
4064 while (parameter_packs)
4065 {
4066 tree pack = TREE_VALUE (parameter_packs);
4067 tree name = NULL_TREE;
4068
4069 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
4070 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
4071 name = TYPE_NAME (pack);
4072 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
4073 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
4074 else if (TREE_CODE (pack) == CALL_EXPR)
4075 name = DECL_NAME (CALL_EXPR_FN (pack));
4076 else
4077 name = DECL_NAME (pack);
4078
4079 if (name)
4080 inform (loc, " %qD", name);
4081 else
4082 inform (loc, " %s", "<anonymous>");
4083
4084 parameter_packs = TREE_CHAIN (parameter_packs);
4085 }
4086
4087 return true;
4088 }
4089
4090 return false;
4091 }
4092
4093 /* Expand any parameter packs that occur in the template arguments in
4094 ARGS. */
4095 tree
4096 expand_template_argument_pack (tree args)
4097 {
4098 if (args == error_mark_node)
4099 return error_mark_node;
4100
4101 tree result_args = NULL_TREE;
4102 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
4103 int num_result_args = -1;
4104 int non_default_args_count = -1;
4105
4106 /* First, determine if we need to expand anything, and the number of
4107 slots we'll need. */
4108 for (in_arg = 0; in_arg < nargs; ++in_arg)
4109 {
4110 tree arg = TREE_VEC_ELT (args, in_arg);
4111 if (arg == NULL_TREE)
4112 return args;
4113 if (ARGUMENT_PACK_P (arg))
4114 {
4115 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
4116 if (num_result_args < 0)
4117 num_result_args = in_arg + num_packed;
4118 else
4119 num_result_args += num_packed;
4120 }
4121 else
4122 {
4123 if (num_result_args >= 0)
4124 num_result_args++;
4125 }
4126 }
4127
4128 /* If no expansion is necessary, we're done. */
4129 if (num_result_args < 0)
4130 return args;
4131
4132 /* Expand arguments. */
4133 result_args = make_tree_vec (num_result_args);
4134 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
4135 non_default_args_count =
4136 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
4137 for (in_arg = 0; in_arg < nargs; ++in_arg)
4138 {
4139 tree arg = TREE_VEC_ELT (args, in_arg);
4140 if (ARGUMENT_PACK_P (arg))
4141 {
4142 tree packed = ARGUMENT_PACK_ARGS (arg);
4143 int i, num_packed = TREE_VEC_LENGTH (packed);
4144 for (i = 0; i < num_packed; ++i, ++out_arg)
4145 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
4146 if (non_default_args_count > 0)
4147 non_default_args_count += num_packed - 1;
4148 }
4149 else
4150 {
4151 TREE_VEC_ELT (result_args, out_arg) = arg;
4152 ++out_arg;
4153 }
4154 }
4155 if (non_default_args_count >= 0)
4156 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
4157 return result_args;
4158 }
4159
4160 /* Checks if DECL shadows a template parameter.
4161
4162 [temp.local]: A template-parameter shall not be redeclared within its
4163 scope (including nested scopes).
4164
4165 Emits an error and returns TRUE if the DECL shadows a parameter,
4166 returns FALSE otherwise. */
4167
4168 bool
4169 check_template_shadow (tree decl)
4170 {
4171 tree olddecl;
4172
4173 /* If we're not in a template, we can't possibly shadow a template
4174 parameter. */
4175 if (!current_template_parms)
4176 return true;
4177
4178 /* Figure out what we're shadowing. */
4179 decl = OVL_FIRST (decl);
4180 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
4181
4182 /* If there's no previous binding for this name, we're not shadowing
4183 anything, let alone a template parameter. */
4184 if (!olddecl)
4185 return true;
4186
4187 /* If we're not shadowing a template parameter, we're done. Note
4188 that OLDDECL might be an OVERLOAD (or perhaps even an
4189 ERROR_MARK), so we can't just blithely assume it to be a _DECL
4190 node. */
4191 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
4192 return true;
4193
4194 /* We check for decl != olddecl to avoid bogus errors for using a
4195 name inside a class. We check TPFI to avoid duplicate errors for
4196 inline member templates. */
4197 if (decl == olddecl
4198 || (DECL_TEMPLATE_PARM_P (decl)
4199 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
4200 return true;
4201
4202 /* Don't complain about the injected class name, as we've already
4203 complained about the class itself. */
4204 if (DECL_SELF_REFERENCE_P (decl))
4205 return false;
4206
4207 if (DECL_TEMPLATE_PARM_P (decl))
4208 error ("declaration of template parameter %q+D shadows "
4209 "template parameter", decl);
4210 else
4211 error ("declaration of %q+#D shadows template parameter", decl);
4212 inform (DECL_SOURCE_LOCATION (olddecl),
4213 "template parameter %qD declared here", olddecl);
4214 return false;
4215 }
4216
4217 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
4218 ORIG_LEVEL, DECL, and TYPE. */
4219
4220 static tree
4221 build_template_parm_index (int index,
4222 int level,
4223 int orig_level,
4224 tree decl,
4225 tree type)
4226 {
4227 tree t = make_node (TEMPLATE_PARM_INDEX);
4228 TEMPLATE_PARM_IDX (t) = index;
4229 TEMPLATE_PARM_LEVEL (t) = level;
4230 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
4231 TEMPLATE_PARM_DECL (t) = decl;
4232 TREE_TYPE (t) = type;
4233 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
4234 TREE_READONLY (t) = TREE_READONLY (decl);
4235
4236 return t;
4237 }
4238
4239 /* Find the canonical type parameter for the given template type
4240 parameter. Returns the canonical type parameter, which may be TYPE
4241 if no such parameter existed. */
4242
4243 static tree
4244 canonical_type_parameter (tree type)
4245 {
4246 tree list;
4247 int idx = TEMPLATE_TYPE_IDX (type);
4248 if (!canonical_template_parms)
4249 vec_alloc (canonical_template_parms, idx + 1);
4250
4251 if (canonical_template_parms->length () <= (unsigned) idx)
4252 vec_safe_grow_cleared (canonical_template_parms, idx + 1);
4253
4254 list = (*canonical_template_parms)[idx];
4255 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
4256 list = TREE_CHAIN (list);
4257
4258 if (list)
4259 return TREE_VALUE (list);
4260 else
4261 {
4262 (*canonical_template_parms)[idx]
4263 = tree_cons (NULL_TREE, type, (*canonical_template_parms)[idx]);
4264 return type;
4265 }
4266 }
4267
4268 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
4269 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
4270 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
4271 new one is created. */
4272
4273 static tree
4274 reduce_template_parm_level (tree index, tree type, int levels, tree args,
4275 tsubst_flags_t complain)
4276 {
4277 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
4278 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
4279 != TEMPLATE_PARM_LEVEL (index) - levels)
4280 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
4281 {
4282 tree orig_decl = TEMPLATE_PARM_DECL (index);
4283 tree decl, t;
4284
4285 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
4286 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
4287 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
4288 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
4289 DECL_ARTIFICIAL (decl) = 1;
4290 SET_DECL_TEMPLATE_PARM_P (decl);
4291
4292 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
4293 TEMPLATE_PARM_LEVEL (index) - levels,
4294 TEMPLATE_PARM_ORIG_LEVEL (index),
4295 decl, type);
4296 TEMPLATE_PARM_DESCENDANTS (index) = t;
4297 TEMPLATE_PARM_PARAMETER_PACK (t)
4298 = TEMPLATE_PARM_PARAMETER_PACK (index);
4299
4300 /* Template template parameters need this. */
4301 if (TREE_CODE (decl) == TEMPLATE_DECL)
4302 {
4303 DECL_TEMPLATE_RESULT (decl)
4304 = build_decl (DECL_SOURCE_LOCATION (decl),
4305 TYPE_DECL, DECL_NAME (decl), type);
4306 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
4307 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
4308 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
4309 }
4310 }
4311
4312 return TEMPLATE_PARM_DESCENDANTS (index);
4313 }
4314
4315 /* Process information from new template parameter PARM and append it
4316 to the LIST being built. This new parameter is a non-type
4317 parameter iff IS_NON_TYPE is true. This new parameter is a
4318 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4319 is in PARM_LOC. */
4320
4321 tree
4322 process_template_parm (tree list, location_t parm_loc, tree parm,
4323 bool is_non_type, bool is_parameter_pack)
4324 {
4325 tree decl = 0;
4326 int idx = 0;
4327
4328 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4329 tree defval = TREE_PURPOSE (parm);
4330 tree constr = TREE_TYPE (parm);
4331
4332 if (list)
4333 {
4334 tree p = tree_last (list);
4335
4336 if (p && TREE_VALUE (p) != error_mark_node)
4337 {
4338 p = TREE_VALUE (p);
4339 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4340 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4341 else
4342 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4343 }
4344
4345 ++idx;
4346 }
4347
4348 if (is_non_type)
4349 {
4350 parm = TREE_VALUE (parm);
4351
4352 SET_DECL_TEMPLATE_PARM_P (parm);
4353
4354 if (TREE_TYPE (parm) != error_mark_node)
4355 {
4356 /* [temp.param]
4357
4358 The top-level cv-qualifiers on the template-parameter are
4359 ignored when determining its type. */
4360 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4361 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4362 TREE_TYPE (parm) = error_mark_node;
4363 else if (uses_parameter_packs (TREE_TYPE (parm))
4364 && !is_parameter_pack
4365 /* If we're in a nested template parameter list, the template
4366 template parameter could be a parameter pack. */
4367 && processing_template_parmlist == 1)
4368 {
4369 /* This template parameter is not a parameter pack, but it
4370 should be. Complain about "bare" parameter packs. */
4371 check_for_bare_parameter_packs (TREE_TYPE (parm));
4372
4373 /* Recover by calling this a parameter pack. */
4374 is_parameter_pack = true;
4375 }
4376 }
4377
4378 /* A template parameter is not modifiable. */
4379 TREE_CONSTANT (parm) = 1;
4380 TREE_READONLY (parm) = 1;
4381 decl = build_decl (parm_loc,
4382 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4383 TREE_CONSTANT (decl) = 1;
4384 TREE_READONLY (decl) = 1;
4385 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4386 = build_template_parm_index (idx, processing_template_decl,
4387 processing_template_decl,
4388 decl, TREE_TYPE (parm));
4389
4390 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4391 = is_parameter_pack;
4392 }
4393 else
4394 {
4395 tree t;
4396 parm = TREE_VALUE (TREE_VALUE (parm));
4397
4398 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4399 {
4400 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4401 /* This is for distinguishing between real templates and template
4402 template parameters */
4403 TREE_TYPE (parm) = t;
4404 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4405 decl = parm;
4406 }
4407 else
4408 {
4409 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4410 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4411 decl = build_decl (parm_loc,
4412 TYPE_DECL, parm, t);
4413 }
4414
4415 TYPE_NAME (t) = decl;
4416 TYPE_STUB_DECL (t) = decl;
4417 parm = decl;
4418 TEMPLATE_TYPE_PARM_INDEX (t)
4419 = build_template_parm_index (idx, processing_template_decl,
4420 processing_template_decl,
4421 decl, TREE_TYPE (parm));
4422 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4423 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4424 }
4425 DECL_ARTIFICIAL (decl) = 1;
4426 SET_DECL_TEMPLATE_PARM_P (decl);
4427
4428 /* Build requirements for the type/template parameter.
4429 This must be done after SET_DECL_TEMPLATE_PARM_P or
4430 process_template_parm could fail. */
4431 tree reqs = finish_shorthand_constraint (parm, constr);
4432
4433 decl = pushdecl (decl);
4434 if (!is_non_type)
4435 parm = decl;
4436
4437 /* Build the parameter node linking the parameter declaration,
4438 its default argument (if any), and its constraints (if any). */
4439 parm = build_tree_list (defval, parm);
4440 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4441
4442 return chainon (list, parm);
4443 }
4444
4445 /* The end of a template parameter list has been reached. Process the
4446 tree list into a parameter vector, converting each parameter into a more
4447 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4448 as PARM_DECLs. */
4449
4450 tree
4451 end_template_parm_list (tree parms)
4452 {
4453 int nparms;
4454 tree parm, next;
4455 tree saved_parmlist = make_tree_vec (list_length (parms));
4456
4457 /* Pop the dummy parameter level and add the real one. */
4458 current_template_parms = TREE_CHAIN (current_template_parms);
4459
4460 current_template_parms
4461 = tree_cons (size_int (processing_template_decl),
4462 saved_parmlist, current_template_parms);
4463
4464 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4465 {
4466 next = TREE_CHAIN (parm);
4467 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4468 TREE_CHAIN (parm) = NULL_TREE;
4469 }
4470
4471 --processing_template_parmlist;
4472
4473 return saved_parmlist;
4474 }
4475
4476 // Explicitly indicate the end of the template parameter list. We assume
4477 // that the current template parameters have been constructed and/or
4478 // managed explicitly, as when creating new template template parameters
4479 // from a shorthand constraint.
4480 void
4481 end_template_parm_list ()
4482 {
4483 --processing_template_parmlist;
4484 }
4485
4486 /* end_template_decl is called after a template declaration is seen. */
4487
4488 void
4489 end_template_decl (void)
4490 {
4491 reset_specialization ();
4492
4493 if (! processing_template_decl)
4494 return;
4495
4496 /* This matches the pushlevel in begin_template_parm_list. */
4497 finish_scope ();
4498
4499 --processing_template_decl;
4500 current_template_parms = TREE_CHAIN (current_template_parms);
4501 }
4502
4503 /* Takes a TREE_LIST representing a template parameter and convert it
4504 into an argument suitable to be passed to the type substitution
4505 functions. Note that If the TREE_LIST contains an error_mark
4506 node, the returned argument is error_mark_node. */
4507
4508 tree
4509 template_parm_to_arg (tree t)
4510 {
4511
4512 if (t == NULL_TREE
4513 || TREE_CODE (t) != TREE_LIST)
4514 return t;
4515
4516 if (error_operand_p (TREE_VALUE (t)))
4517 return error_mark_node;
4518
4519 t = TREE_VALUE (t);
4520
4521 if (TREE_CODE (t) == TYPE_DECL
4522 || TREE_CODE (t) == TEMPLATE_DECL)
4523 {
4524 t = TREE_TYPE (t);
4525
4526 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4527 {
4528 /* Turn this argument into a TYPE_ARGUMENT_PACK
4529 with a single element, which expands T. */
4530 tree vec = make_tree_vec (1);
4531 if (CHECKING_P)
4532 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4533
4534 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4535
4536 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4537 SET_ARGUMENT_PACK_ARGS (t, vec);
4538 }
4539 }
4540 else
4541 {
4542 t = DECL_INITIAL (t);
4543
4544 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4545 {
4546 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4547 with a single element, which expands T. */
4548 tree vec = make_tree_vec (1);
4549 if (CHECKING_P)
4550 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4551
4552 t = convert_from_reference (t);
4553 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4554
4555 t = make_node (NONTYPE_ARGUMENT_PACK);
4556 SET_ARGUMENT_PACK_ARGS (t, vec);
4557 }
4558 else
4559 t = convert_from_reference (t);
4560 }
4561 return t;
4562 }
4563
4564 /* Given a single level of template parameters (a TREE_VEC), return it
4565 as a set of template arguments. */
4566
4567 static tree
4568 template_parms_level_to_args (tree parms)
4569 {
4570 tree a = copy_node (parms);
4571 TREE_TYPE (a) = NULL_TREE;
4572 for (int i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4573 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4574
4575 if (CHECKING_P)
4576 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4577
4578 return a;
4579 }
4580
4581 /* Given a set of template parameters, return them as a set of template
4582 arguments. The template parameters are represented as a TREE_VEC, in
4583 the form documented in cp-tree.h for template arguments. */
4584
4585 static tree
4586 template_parms_to_args (tree parms)
4587 {
4588 tree header;
4589 tree args = NULL_TREE;
4590 int length = TMPL_PARMS_DEPTH (parms);
4591 int l = length;
4592
4593 /* If there is only one level of template parameters, we do not
4594 create a TREE_VEC of TREE_VECs. Instead, we return a single
4595 TREE_VEC containing the arguments. */
4596 if (length > 1)
4597 args = make_tree_vec (length);
4598
4599 for (header = parms; header; header = TREE_CHAIN (header))
4600 {
4601 tree a = template_parms_level_to_args (TREE_VALUE (header));
4602
4603 if (length > 1)
4604 TREE_VEC_ELT (args, --l) = a;
4605 else
4606 args = a;
4607 }
4608
4609 return args;
4610 }
4611
4612 /* Within the declaration of a template, return the currently active
4613 template parameters as an argument TREE_VEC. */
4614
4615 static tree
4616 current_template_args (void)
4617 {
4618 return template_parms_to_args (current_template_parms);
4619 }
4620
4621 /* Update the declared TYPE by doing any lookups which were thought to be
4622 dependent, but are not now that we know the SCOPE of the declarator. */
4623
4624 tree
4625 maybe_update_decl_type (tree orig_type, tree scope)
4626 {
4627 tree type = orig_type;
4628
4629 if (type == NULL_TREE)
4630 return type;
4631
4632 if (TREE_CODE (orig_type) == TYPE_DECL)
4633 type = TREE_TYPE (type);
4634
4635 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4636 && dependent_type_p (type)
4637 /* Don't bother building up the args in this case. */
4638 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4639 {
4640 /* tsubst in the args corresponding to the template parameters,
4641 including auto if present. Most things will be unchanged, but
4642 make_typename_type and tsubst_qualified_id will resolve
4643 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4644 tree args = current_template_args ();
4645 tree auto_node = type_uses_auto (type);
4646 tree pushed;
4647 if (auto_node)
4648 {
4649 tree auto_vec = make_tree_vec (1);
4650 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4651 args = add_to_template_args (args, auto_vec);
4652 }
4653 pushed = push_scope (scope);
4654 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4655 if (pushed)
4656 pop_scope (scope);
4657 }
4658
4659 if (type == error_mark_node)
4660 return orig_type;
4661
4662 if (TREE_CODE (orig_type) == TYPE_DECL)
4663 {
4664 if (same_type_p (type, TREE_TYPE (orig_type)))
4665 type = orig_type;
4666 else
4667 type = TYPE_NAME (type);
4668 }
4669 return type;
4670 }
4671
4672 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4673 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4674 the new template is a member template. */
4675
4676 static tree
4677 build_template_decl (tree decl, tree parms, bool member_template_p)
4678 {
4679 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4680 SET_DECL_LANGUAGE (tmpl, DECL_LANGUAGE (decl));
4681 DECL_TEMPLATE_PARMS (tmpl) = parms;
4682 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4683 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4684 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4685
4686 return tmpl;
4687 }
4688
4689 struct template_parm_data
4690 {
4691 /* The level of the template parameters we are currently
4692 processing. */
4693 int level;
4694
4695 /* The index of the specialization argument we are currently
4696 processing. */
4697 int current_arg;
4698
4699 /* An array whose size is the number of template parameters. The
4700 elements are nonzero if the parameter has been used in any one
4701 of the arguments processed so far. */
4702 int* parms;
4703
4704 /* An array whose size is the number of template arguments. The
4705 elements are nonzero if the argument makes use of template
4706 parameters of this level. */
4707 int* arg_uses_template_parms;
4708 };
4709
4710 /* Subroutine of push_template_decl used to see if each template
4711 parameter in a partial specialization is used in the explicit
4712 argument list. If T is of the LEVEL given in DATA (which is
4713 treated as a template_parm_data*), then DATA->PARMS is marked
4714 appropriately. */
4715
4716 static int
4717 mark_template_parm (tree t, void* data)
4718 {
4719 int level;
4720 int idx;
4721 struct template_parm_data* tpd = (struct template_parm_data*) data;
4722
4723 template_parm_level_and_index (t, &level, &idx);
4724
4725 if (level == tpd->level)
4726 {
4727 tpd->parms[idx] = 1;
4728 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4729 }
4730
4731 /* In C++17 the type of a non-type argument is a deduced context. */
4732 if (cxx_dialect >= cxx17
4733 && TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4734 for_each_template_parm (TREE_TYPE (t),
4735 &mark_template_parm,
4736 data,
4737 NULL,
4738 /*include_nondeduced_p=*/false);
4739
4740 /* Return zero so that for_each_template_parm will continue the
4741 traversal of the tree; we want to mark *every* template parm. */
4742 return 0;
4743 }
4744
4745 /* Process the partial specialization DECL. */
4746
4747 static tree
4748 process_partial_specialization (tree decl)
4749 {
4750 tree type = TREE_TYPE (decl);
4751 tree tinfo = get_template_info (decl);
4752 tree maintmpl = TI_TEMPLATE (tinfo);
4753 tree specargs = TI_ARGS (tinfo);
4754 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4755 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4756 tree inner_parms;
4757 tree inst;
4758 int nargs = TREE_VEC_LENGTH (inner_args);
4759 int ntparms;
4760 int i;
4761 bool did_error_intro = false;
4762 struct template_parm_data tpd;
4763 struct template_parm_data tpd2;
4764
4765 gcc_assert (current_template_parms);
4766
4767 /* A concept cannot be specialized. */
4768 if (flag_concepts && variable_concept_p (maintmpl))
4769 {
4770 error ("specialization of variable concept %q#D", maintmpl);
4771 return error_mark_node;
4772 }
4773
4774 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4775 ntparms = TREE_VEC_LENGTH (inner_parms);
4776
4777 /* We check that each of the template parameters given in the
4778 partial specialization is used in the argument list to the
4779 specialization. For example:
4780
4781 template <class T> struct S;
4782 template <class T> struct S<T*>;
4783
4784 The second declaration is OK because `T*' uses the template
4785 parameter T, whereas
4786
4787 template <class T> struct S<int>;
4788
4789 is no good. Even trickier is:
4790
4791 template <class T>
4792 struct S1
4793 {
4794 template <class U>
4795 struct S2;
4796 template <class U>
4797 struct S2<T>;
4798 };
4799
4800 The S2<T> declaration is actually invalid; it is a
4801 full-specialization. Of course,
4802
4803 template <class U>
4804 struct S2<T (*)(U)>;
4805
4806 or some such would have been OK. */
4807 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4808 tpd.parms = XALLOCAVEC (int, ntparms);
4809 memset (tpd.parms, 0, sizeof (int) * ntparms);
4810
4811 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4812 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4813 for (i = 0; i < nargs; ++i)
4814 {
4815 tpd.current_arg = i;
4816 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4817 &mark_template_parm,
4818 &tpd,
4819 NULL,
4820 /*include_nondeduced_p=*/false);
4821 }
4822 for (i = 0; i < ntparms; ++i)
4823 if (tpd.parms[i] == 0)
4824 {
4825 /* One of the template parms was not used in a deduced context in the
4826 specialization. */
4827 if (!did_error_intro)
4828 {
4829 error ("template parameters not deducible in "
4830 "partial specialization:");
4831 did_error_intro = true;
4832 }
4833
4834 inform (input_location, " %qD",
4835 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4836 }
4837
4838 if (did_error_intro)
4839 return error_mark_node;
4840
4841 /* [temp.class.spec]
4842
4843 The argument list of the specialization shall not be identical to
4844 the implicit argument list of the primary template. */
4845 tree main_args
4846 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4847 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4848 && (!flag_concepts
4849 || !strictly_subsumes (current_template_constraints (),
4850 get_constraints (maintmpl))))
4851 {
4852 if (!flag_concepts)
4853 error ("partial specialization %q+D does not specialize "
4854 "any template arguments; to define the primary template, "
4855 "remove the template argument list", decl);
4856 else
4857 error ("partial specialization %q+D does not specialize any "
4858 "template arguments and is not more constrained than "
4859 "the primary template; to define the primary template, "
4860 "remove the template argument list", decl);
4861 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4862 }
4863
4864 /* A partial specialization that replaces multiple parameters of the
4865 primary template with a pack expansion is less specialized for those
4866 parameters. */
4867 if (nargs < DECL_NTPARMS (maintmpl))
4868 {
4869 error ("partial specialization is not more specialized than the "
4870 "primary template because it replaces multiple parameters "
4871 "with a pack expansion");
4872 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4873 /* Avoid crash in process_partial_specialization. */
4874 return decl;
4875 }
4876
4877 /* If we aren't in a dependent class, we can actually try deduction. */
4878 else if (tpd.level == 1
4879 /* FIXME we should be able to handle a partial specialization of a
4880 partial instantiation, but currently we can't (c++/41727). */
4881 && TMPL_ARGS_DEPTH (specargs) == 1
4882 && !get_partial_spec_bindings (maintmpl, maintmpl, specargs))
4883 {
4884 auto_diagnostic_group d;
4885 if (permerror (input_location, "partial specialization %qD is not "
4886 "more specialized than", decl))
4887 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template %qD",
4888 maintmpl);
4889 }
4890
4891 /* [temp.class.spec]
4892
4893 A partially specialized non-type argument expression shall not
4894 involve template parameters of the partial specialization except
4895 when the argument expression is a simple identifier.
4896
4897 The type of a template parameter corresponding to a specialized
4898 non-type argument shall not be dependent on a parameter of the
4899 specialization.
4900
4901 Also, we verify that pack expansions only occur at the
4902 end of the argument list. */
4903 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4904 tpd2.parms = 0;
4905 for (i = 0; i < nargs; ++i)
4906 {
4907 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4908 tree arg = TREE_VEC_ELT (inner_args, i);
4909 tree packed_args = NULL_TREE;
4910 int j, len = 1;
4911
4912 if (ARGUMENT_PACK_P (arg))
4913 {
4914 /* Extract the arguments from the argument pack. We'll be
4915 iterating over these in the following loop. */
4916 packed_args = ARGUMENT_PACK_ARGS (arg);
4917 len = TREE_VEC_LENGTH (packed_args);
4918 }
4919
4920 for (j = 0; j < len; j++)
4921 {
4922 if (packed_args)
4923 /* Get the Jth argument in the parameter pack. */
4924 arg = TREE_VEC_ELT (packed_args, j);
4925
4926 if (PACK_EXPANSION_P (arg))
4927 {
4928 /* Pack expansions must come at the end of the
4929 argument list. */
4930 if ((packed_args && j < len - 1)
4931 || (!packed_args && i < nargs - 1))
4932 {
4933 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4934 error ("parameter pack argument %qE must be at the "
4935 "end of the template argument list", arg);
4936 else
4937 error ("parameter pack argument %qT must be at the "
4938 "end of the template argument list", arg);
4939 }
4940 }
4941
4942 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4943 /* We only care about the pattern. */
4944 arg = PACK_EXPANSION_PATTERN (arg);
4945
4946 if (/* These first two lines are the `non-type' bit. */
4947 !TYPE_P (arg)
4948 && TREE_CODE (arg) != TEMPLATE_DECL
4949 /* This next two lines are the `argument expression is not just a
4950 simple identifier' condition and also the `specialized
4951 non-type argument' bit. */
4952 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4953 && !((REFERENCE_REF_P (arg)
4954 || TREE_CODE (arg) == VIEW_CONVERT_EXPR)
4955 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4956 {
4957 if ((!packed_args && tpd.arg_uses_template_parms[i])
4958 || (packed_args && uses_template_parms (arg)))
4959 error ("template argument %qE involves template parameter(s)",
4960 arg);
4961 else
4962 {
4963 /* Look at the corresponding template parameter,
4964 marking which template parameters its type depends
4965 upon. */
4966 tree type = TREE_TYPE (parm);
4967
4968 if (!tpd2.parms)
4969 {
4970 /* We haven't yet initialized TPD2. Do so now. */
4971 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4972 /* The number of parameters here is the number in the
4973 main template, which, as checked in the assertion
4974 above, is NARGS. */
4975 tpd2.parms = XALLOCAVEC (int, nargs);
4976 tpd2.level =
4977 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4978 }
4979
4980 /* Mark the template parameters. But this time, we're
4981 looking for the template parameters of the main
4982 template, not in the specialization. */
4983 tpd2.current_arg = i;
4984 tpd2.arg_uses_template_parms[i] = 0;
4985 memset (tpd2.parms, 0, sizeof (int) * nargs);
4986 for_each_template_parm (type,
4987 &mark_template_parm,
4988 &tpd2,
4989 NULL,
4990 /*include_nondeduced_p=*/false);
4991
4992 if (tpd2.arg_uses_template_parms [i])
4993 {
4994 /* The type depended on some template parameters.
4995 If they are fully specialized in the
4996 specialization, that's OK. */
4997 int j;
4998 int count = 0;
4999 for (j = 0; j < nargs; ++j)
5000 if (tpd2.parms[j] != 0
5001 && tpd.arg_uses_template_parms [j])
5002 ++count;
5003 if (count != 0)
5004 error_n (input_location, count,
5005 "type %qT of template argument %qE depends "
5006 "on a template parameter",
5007 "type %qT of template argument %qE depends "
5008 "on template parameters",
5009 type,
5010 arg);
5011 }
5012 }
5013 }
5014 }
5015 }
5016
5017 /* We should only get here once. */
5018 if (TREE_CODE (decl) == TYPE_DECL)
5019 gcc_assert (!COMPLETE_TYPE_P (type));
5020
5021 // Build the template decl.
5022 tree tmpl = build_template_decl (decl, current_template_parms,
5023 DECL_MEMBER_TEMPLATE_P (maintmpl));
5024 TREE_TYPE (tmpl) = type;
5025 DECL_TEMPLATE_RESULT (tmpl) = decl;
5026 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5027 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
5028 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
5029
5030 /* Give template template parms a DECL_CONTEXT of the template
5031 for which they are a parameter. */
5032 for (i = 0; i < ntparms; ++i)
5033 {
5034 tree parm = TREE_VALUE (TREE_VEC_ELT (inner_parms, i));
5035 if (TREE_CODE (parm) == TEMPLATE_DECL)
5036 DECL_CONTEXT (parm) = tmpl;
5037 }
5038
5039 if (VAR_P (decl))
5040 /* We didn't register this in check_explicit_specialization so we could
5041 wait until the constraints were set. */
5042 decl = register_specialization (decl, maintmpl, specargs, false, 0);
5043 else
5044 associate_classtype_constraints (type);
5045
5046 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
5047 = tree_cons (specargs, tmpl,
5048 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
5049 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
5050
5051 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
5052 inst = TREE_CHAIN (inst))
5053 {
5054 tree instance = TREE_VALUE (inst);
5055 if (TYPE_P (instance)
5056 ? (COMPLETE_TYPE_P (instance)
5057 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
5058 : DECL_TEMPLATE_INSTANTIATION (instance))
5059 {
5060 tree spec = most_specialized_partial_spec (instance, tf_none);
5061 tree inst_decl = (DECL_P (instance)
5062 ? instance : TYPE_NAME (instance));
5063 if (!spec)
5064 /* OK */;
5065 else if (spec == error_mark_node)
5066 permerror (input_location,
5067 "declaration of %qD ambiguates earlier template "
5068 "instantiation for %qD", decl, inst_decl);
5069 else if (TREE_VALUE (spec) == tmpl)
5070 permerror (input_location,
5071 "partial specialization of %qD after instantiation "
5072 "of %qD", decl, inst_decl);
5073 }
5074 }
5075
5076 return decl;
5077 }
5078
5079 /* PARM is a template parameter of some form; return the corresponding
5080 TEMPLATE_PARM_INDEX. */
5081
5082 static tree
5083 get_template_parm_index (tree parm)
5084 {
5085 if (TREE_CODE (parm) == PARM_DECL
5086 || TREE_CODE (parm) == CONST_DECL)
5087 parm = DECL_INITIAL (parm);
5088 else if (TREE_CODE (parm) == TYPE_DECL
5089 || TREE_CODE (parm) == TEMPLATE_DECL)
5090 parm = TREE_TYPE (parm);
5091 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
5092 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
5093 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
5094 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
5095 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
5096 return parm;
5097 }
5098
5099 /* Subroutine of fixed_parameter_pack_p below. Look for any template
5100 parameter packs used by the template parameter PARM. */
5101
5102 static void
5103 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
5104 {
5105 /* A type parm can't refer to another parm. */
5106 if (TREE_CODE (parm) == TYPE_DECL || parm == error_mark_node)
5107 return;
5108 else if (TREE_CODE (parm) == PARM_DECL)
5109 {
5110 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
5111 ppd, ppd->visited);
5112 return;
5113 }
5114
5115 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
5116
5117 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
5118 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
5119 {
5120 tree p = TREE_VALUE (TREE_VEC_ELT (vec, i));
5121 if (template_parameter_pack_p (p))
5122 /* Any packs in the type are expanded by this parameter. */;
5123 else
5124 fixed_parameter_pack_p_1 (p, ppd);
5125 }
5126 }
5127
5128 /* PARM is a template parameter pack. Return any parameter packs used in
5129 its type or the type of any of its template parameters. If there are
5130 any such packs, it will be instantiated into a fixed template parameter
5131 list by partial instantiation rather than be fully deduced. */
5132
5133 tree
5134 fixed_parameter_pack_p (tree parm)
5135 {
5136 /* This can only be true in a member template. */
5137 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
5138 return NULL_TREE;
5139 /* This can only be true for a parameter pack. */
5140 if (!template_parameter_pack_p (parm))
5141 return NULL_TREE;
5142 /* A type parm can't refer to another parm. */
5143 if (TREE_CODE (parm) == TYPE_DECL)
5144 return NULL_TREE;
5145
5146 tree parameter_packs = NULL_TREE;
5147 struct find_parameter_pack_data ppd;
5148 ppd.parameter_packs = &parameter_packs;
5149 ppd.visited = new hash_set<tree>;
5150 ppd.type_pack_expansion_p = false;
5151
5152 fixed_parameter_pack_p_1 (parm, &ppd);
5153
5154 delete ppd.visited;
5155 return parameter_packs;
5156 }
5157
5158 /* Check that a template declaration's use of default arguments and
5159 parameter packs is not invalid. Here, PARMS are the template
5160 parameters. IS_PRIMARY is true if DECL is the thing declared by
5161 a primary template. IS_PARTIAL is true if DECL is a partial
5162 specialization.
5163
5164 IS_FRIEND_DECL is nonzero if DECL is either a non-defining friend
5165 function template declaration or a friend class template
5166 declaration. In the function case, 1 indicates a declaration, 2
5167 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
5168 emitted for extraneous default arguments.
5169
5170 Returns TRUE if there were no errors found, FALSE otherwise. */
5171
5172 bool
5173 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
5174 bool is_partial, int is_friend_decl)
5175 {
5176 const char *msg;
5177 int last_level_to_check;
5178 tree parm_level;
5179 bool no_errors = true;
5180
5181 /* [temp.param]
5182
5183 A default template-argument shall not be specified in a
5184 function template declaration or a function template definition, nor
5185 in the template-parameter-list of the definition of a member of a
5186 class template. */
5187
5188 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
5189 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
5190 /* You can't have a function template declaration in a local
5191 scope, nor you can you define a member of a class template in a
5192 local scope. */
5193 return true;
5194
5195 if ((TREE_CODE (decl) == TYPE_DECL
5196 && TREE_TYPE (decl)
5197 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5198 || (TREE_CODE (decl) == FUNCTION_DECL
5199 && LAMBDA_FUNCTION_P (decl)))
5200 /* A lambda doesn't have an explicit declaration; don't complain
5201 about the parms of the enclosing class. */
5202 return true;
5203
5204 if (current_class_type
5205 && !TYPE_BEING_DEFINED (current_class_type)
5206 && DECL_LANG_SPECIFIC (decl)
5207 && DECL_DECLARES_FUNCTION_P (decl)
5208 /* If this is either a friend defined in the scope of the class
5209 or a member function. */
5210 && (DECL_FUNCTION_MEMBER_P (decl)
5211 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
5212 : DECL_FRIEND_CONTEXT (decl)
5213 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
5214 : false)
5215 /* And, if it was a member function, it really was defined in
5216 the scope of the class. */
5217 && (!DECL_FUNCTION_MEMBER_P (decl)
5218 || DECL_INITIALIZED_IN_CLASS_P (decl)))
5219 /* We already checked these parameters when the template was
5220 declared, so there's no need to do it again now. This function
5221 was defined in class scope, but we're processing its body now
5222 that the class is complete. */
5223 return true;
5224
5225 /* Core issue 226 (C++0x only): the following only applies to class
5226 templates. */
5227 if (is_primary
5228 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
5229 {
5230 /* [temp.param]
5231
5232 If a template-parameter has a default template-argument, all
5233 subsequent template-parameters shall have a default
5234 template-argument supplied. */
5235 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
5236 {
5237 tree inner_parms = TREE_VALUE (parm_level);
5238 int ntparms = TREE_VEC_LENGTH (inner_parms);
5239 int seen_def_arg_p = 0;
5240 int i;
5241
5242 for (i = 0; i < ntparms; ++i)
5243 {
5244 tree parm = TREE_VEC_ELT (inner_parms, i);
5245
5246 if (parm == error_mark_node)
5247 continue;
5248
5249 if (TREE_PURPOSE (parm))
5250 seen_def_arg_p = 1;
5251 else if (seen_def_arg_p
5252 && !template_parameter_pack_p (TREE_VALUE (parm)))
5253 {
5254 error ("no default argument for %qD", TREE_VALUE (parm));
5255 /* For better subsequent error-recovery, we indicate that
5256 there should have been a default argument. */
5257 TREE_PURPOSE (parm) = error_mark_node;
5258 no_errors = false;
5259 }
5260 else if (!is_partial
5261 && !is_friend_decl
5262 /* Don't complain about an enclosing partial
5263 specialization. */
5264 && parm_level == parms
5265 && TREE_CODE (decl) == TYPE_DECL
5266 && i < ntparms - 1
5267 && template_parameter_pack_p (TREE_VALUE (parm))
5268 /* A fixed parameter pack will be partially
5269 instantiated into a fixed length list. */
5270 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
5271 {
5272 /* A primary class template can only have one
5273 parameter pack, at the end of the template
5274 parameter list. */
5275
5276 error ("parameter pack %q+D must be at the end of the"
5277 " template parameter list", TREE_VALUE (parm));
5278
5279 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
5280 = error_mark_node;
5281 no_errors = false;
5282 }
5283 }
5284 }
5285 }
5286
5287 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
5288 || is_partial
5289 || !is_primary
5290 || is_friend_decl)
5291 /* For an ordinary class template, default template arguments are
5292 allowed at the innermost level, e.g.:
5293 template <class T = int>
5294 struct S {};
5295 but, in a partial specialization, they're not allowed even
5296 there, as we have in [temp.class.spec]:
5297
5298 The template parameter list of a specialization shall not
5299 contain default template argument values.
5300
5301 So, for a partial specialization, or for a function template
5302 (in C++98/C++03), we look at all of them. */
5303 ;
5304 else
5305 /* But, for a primary class template that is not a partial
5306 specialization we look at all template parameters except the
5307 innermost ones. */
5308 parms = TREE_CHAIN (parms);
5309
5310 /* Figure out what error message to issue. */
5311 if (is_friend_decl == 2)
5312 msg = G_("default template arguments may not be used in function template "
5313 "friend re-declaration");
5314 else if (is_friend_decl)
5315 msg = G_("default template arguments may not be used in template "
5316 "friend declarations");
5317 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
5318 msg = G_("default template arguments may not be used in function templates "
5319 "without %<-std=c++11%> or %<-std=gnu++11%>");
5320 else if (is_partial)
5321 msg = G_("default template arguments may not be used in "
5322 "partial specializations");
5323 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
5324 msg = G_("default argument for template parameter for class enclosing %qD");
5325 else
5326 /* Per [temp.param]/9, "A default template-argument shall not be
5327 specified in the template-parameter-lists of the definition of
5328 a member of a class template that appears outside of the member's
5329 class.", thus if we aren't handling a member of a class template
5330 there is no need to examine the parameters. */
5331 return true;
5332
5333 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
5334 /* If we're inside a class definition, there's no need to
5335 examine the parameters to the class itself. On the one
5336 hand, they will be checked when the class is defined, and,
5337 on the other, default arguments are valid in things like:
5338 template <class T = double>
5339 struct S { template <class U> void f(U); };
5340 Here the default argument for `S' has no bearing on the
5341 declaration of `f'. */
5342 last_level_to_check = template_class_depth (current_class_type) + 1;
5343 else
5344 /* Check everything. */
5345 last_level_to_check = 0;
5346
5347 for (parm_level = parms;
5348 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
5349 parm_level = TREE_CHAIN (parm_level))
5350 {
5351 tree inner_parms = TREE_VALUE (parm_level);
5352 int i;
5353 int ntparms;
5354
5355 ntparms = TREE_VEC_LENGTH (inner_parms);
5356 for (i = 0; i < ntparms; ++i)
5357 {
5358 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
5359 continue;
5360
5361 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
5362 {
5363 if (msg)
5364 {
5365 no_errors = false;
5366 if (is_friend_decl == 2)
5367 return no_errors;
5368
5369 error (msg, decl);
5370 msg = 0;
5371 }
5372
5373 /* Clear out the default argument so that we are not
5374 confused later. */
5375 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5376 }
5377 }
5378
5379 /* At this point, if we're still interested in issuing messages,
5380 they must apply to classes surrounding the object declared. */
5381 if (msg)
5382 msg = G_("default argument for template parameter for class "
5383 "enclosing %qD");
5384 }
5385
5386 return no_errors;
5387 }
5388
5389 /* Worker for push_template_decl_real, called via
5390 for_each_template_parm. DATA is really an int, indicating the
5391 level of the parameters we are interested in. If T is a template
5392 parameter of that level, return nonzero. */
5393
5394 static int
5395 template_parm_this_level_p (tree t, void* data)
5396 {
5397 int this_level = *(int *)data;
5398 int level;
5399
5400 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5401 level = TEMPLATE_PARM_LEVEL (t);
5402 else
5403 level = TEMPLATE_TYPE_LEVEL (t);
5404 return level == this_level;
5405 }
5406
5407 /* Worker for uses_outer_template_parms, called via for_each_template_parm.
5408 DATA is really an int, indicating the innermost outer level of parameters.
5409 If T is a template parameter of that level or further out, return
5410 nonzero. */
5411
5412 static int
5413 template_parm_outer_level (tree t, void *data)
5414 {
5415 int this_level = *(int *)data;
5416 int level;
5417
5418 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5419 level = TEMPLATE_PARM_LEVEL (t);
5420 else
5421 level = TEMPLATE_TYPE_LEVEL (t);
5422 return level <= this_level;
5423 }
5424
5425 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5426 parameters given by current_template_args, or reuses a
5427 previously existing one, if appropriate. Returns the DECL, or an
5428 equivalent one, if it is replaced via a call to duplicate_decls.
5429
5430 If IS_FRIEND is true, DECL is a friend declaration. */
5431
5432 tree
5433 push_template_decl_real (tree decl, bool is_friend)
5434 {
5435 tree tmpl;
5436 tree args;
5437 tree info;
5438 tree ctx;
5439 bool is_primary;
5440 bool is_partial;
5441 int new_template_p = 0;
5442 /* True if the template is a member template, in the sense of
5443 [temp.mem]. */
5444 bool member_template_p = false;
5445
5446 if (decl == error_mark_node || !current_template_parms)
5447 return error_mark_node;
5448
5449 /* See if this is a partial specialization. */
5450 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5451 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5452 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5453 || (VAR_P (decl)
5454 && DECL_LANG_SPECIFIC (decl)
5455 && DECL_TEMPLATE_SPECIALIZATION (decl)
5456 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5457
5458 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5459 is_friend = true;
5460
5461 if (is_friend)
5462 /* For a friend, we want the context of the friend, not
5463 the type of which it is a friend. */
5464 ctx = CP_DECL_CONTEXT (decl);
5465 else if (CP_DECL_CONTEXT (decl)
5466 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5467 /* In the case of a virtual function, we want the class in which
5468 it is defined. */
5469 ctx = CP_DECL_CONTEXT (decl);
5470 else
5471 /* Otherwise, if we're currently defining some class, the DECL
5472 is assumed to be a member of the class. */
5473 ctx = current_scope ();
5474
5475 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5476 ctx = NULL_TREE;
5477
5478 if (!DECL_CONTEXT (decl))
5479 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5480
5481 /* See if this is a primary template. */
5482 if (is_friend && ctx
5483 && uses_template_parms_level (ctx, processing_template_decl))
5484 /* A friend template that specifies a class context, i.e.
5485 template <typename T> friend void A<T>::f();
5486 is not primary. */
5487 is_primary = false;
5488 else if (TREE_CODE (decl) == TYPE_DECL
5489 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5490 is_primary = false;
5491 else
5492 is_primary = template_parm_scope_p ();
5493
5494 if (is_primary)
5495 {
5496 warning (OPT_Wtemplates, "template %qD declared", decl);
5497
5498 if (DECL_CLASS_SCOPE_P (decl))
5499 member_template_p = true;
5500 if (TREE_CODE (decl) == TYPE_DECL
5501 && IDENTIFIER_ANON_P (DECL_NAME (decl)))
5502 {
5503 error ("template class without a name");
5504 return error_mark_node;
5505 }
5506 else if (TREE_CODE (decl) == FUNCTION_DECL)
5507 {
5508 if (member_template_p)
5509 {
5510 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5511 error ("member template %qD may not have virt-specifiers", decl);
5512 }
5513 if (DECL_DESTRUCTOR_P (decl))
5514 {
5515 /* [temp.mem]
5516
5517 A destructor shall not be a member template. */
5518 error ("destructor %qD declared as member template", decl);
5519 return error_mark_node;
5520 }
5521 if (IDENTIFIER_NEWDEL_OP_P (DECL_NAME (decl))
5522 && (!prototype_p (TREE_TYPE (decl))
5523 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5524 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5525 || (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5526 == void_list_node)))
5527 {
5528 /* [basic.stc.dynamic.allocation]
5529
5530 An allocation function can be a function
5531 template. ... Template allocation functions shall
5532 have two or more parameters. */
5533 error ("invalid template declaration of %qD", decl);
5534 return error_mark_node;
5535 }
5536 }
5537 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5538 && CLASS_TYPE_P (TREE_TYPE (decl)))
5539 {
5540 /* Class template, set TEMPLATE_TYPE_PARM_FOR_CLASS. */
5541 tree parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
5542 for (int i = 0; i < TREE_VEC_LENGTH (parms); ++i)
5543 {
5544 tree t = TREE_VALUE (TREE_VEC_ELT (parms, i));
5545 if (TREE_CODE (t) == TYPE_DECL)
5546 t = TREE_TYPE (t);
5547 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
5548 TEMPLATE_TYPE_PARM_FOR_CLASS (t) = true;
5549 }
5550 }
5551 else if (TREE_CODE (decl) == TYPE_DECL
5552 && TYPE_DECL_ALIAS_P (decl))
5553 /* alias-declaration */
5554 gcc_assert (!DECL_ARTIFICIAL (decl));
5555 else if (VAR_P (decl))
5556 /* C++14 variable template. */;
5557 else
5558 {
5559 error ("template declaration of %q#D", decl);
5560 return error_mark_node;
5561 }
5562 }
5563
5564 /* Check to see that the rules regarding the use of default
5565 arguments are not being violated. We check args for a friend
5566 functions when we know whether it's a definition, introducing
5567 declaration or re-declaration. */
5568 if (!is_friend || TREE_CODE (decl) != FUNCTION_DECL)
5569 check_default_tmpl_args (decl, current_template_parms,
5570 is_primary, is_partial, is_friend);
5571
5572 /* Ensure that there are no parameter packs in the type of this
5573 declaration that have not been expanded. */
5574 if (TREE_CODE (decl) == FUNCTION_DECL)
5575 {
5576 /* Check each of the arguments individually to see if there are
5577 any bare parameter packs. */
5578 tree type = TREE_TYPE (decl);
5579 tree arg = DECL_ARGUMENTS (decl);
5580 tree argtype = TYPE_ARG_TYPES (type);
5581
5582 while (arg && argtype)
5583 {
5584 if (!DECL_PACK_P (arg)
5585 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5586 {
5587 /* This is a PARM_DECL that contains unexpanded parameter
5588 packs. We have already complained about this in the
5589 check_for_bare_parameter_packs call, so just replace
5590 these types with ERROR_MARK_NODE. */
5591 TREE_TYPE (arg) = error_mark_node;
5592 TREE_VALUE (argtype) = error_mark_node;
5593 }
5594
5595 arg = DECL_CHAIN (arg);
5596 argtype = TREE_CHAIN (argtype);
5597 }
5598
5599 /* Check for bare parameter packs in the return type and the
5600 exception specifiers. */
5601 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5602 /* Errors were already issued, set return type to int
5603 as the frontend doesn't expect error_mark_node as
5604 the return type. */
5605 TREE_TYPE (type) = integer_type_node;
5606 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5607 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5608 }
5609 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5610 && TYPE_DECL_ALIAS_P (decl))
5611 ? DECL_ORIGINAL_TYPE (decl)
5612 : TREE_TYPE (decl)))
5613 {
5614 TREE_TYPE (decl) = error_mark_node;
5615 return error_mark_node;
5616 }
5617
5618 if (is_partial)
5619 return process_partial_specialization (decl);
5620
5621 args = current_template_args ();
5622
5623 if (!ctx
5624 || TREE_CODE (ctx) == FUNCTION_DECL
5625 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5626 || (TREE_CODE (decl) == TYPE_DECL
5627 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5628 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5629 {
5630 if (DECL_LANG_SPECIFIC (decl)
5631 && DECL_TEMPLATE_INFO (decl)
5632 && DECL_TI_TEMPLATE (decl))
5633 tmpl = DECL_TI_TEMPLATE (decl);
5634 /* If DECL is a TYPE_DECL for a class-template, then there won't
5635 be DECL_LANG_SPECIFIC. The information equivalent to
5636 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5637 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5638 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5639 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5640 {
5641 /* Since a template declaration already existed for this
5642 class-type, we must be redeclaring it here. Make sure
5643 that the redeclaration is valid. */
5644 redeclare_class_template (TREE_TYPE (decl),
5645 current_template_parms,
5646 current_template_constraints ());
5647 /* We don't need to create a new TEMPLATE_DECL; just use the
5648 one we already had. */
5649 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5650 }
5651 else
5652 {
5653 tmpl = build_template_decl (decl, current_template_parms,
5654 member_template_p);
5655 new_template_p = 1;
5656
5657 if (DECL_LANG_SPECIFIC (decl)
5658 && DECL_TEMPLATE_SPECIALIZATION (decl))
5659 {
5660 /* A specialization of a member template of a template
5661 class. */
5662 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5663 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5664 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5665 }
5666 }
5667 }
5668 else
5669 {
5670 tree a, t, current, parms;
5671 int i;
5672 tree tinfo = get_template_info (decl);
5673
5674 if (!tinfo)
5675 {
5676 error ("template definition of non-template %q#D", decl);
5677 return error_mark_node;
5678 }
5679
5680 tmpl = TI_TEMPLATE (tinfo);
5681
5682 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5683 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5684 && DECL_TEMPLATE_SPECIALIZATION (decl)
5685 && DECL_MEMBER_TEMPLATE_P (tmpl))
5686 {
5687 tree new_tmpl;
5688
5689 /* The declaration is a specialization of a member
5690 template, declared outside the class. Therefore, the
5691 innermost template arguments will be NULL, so we
5692 replace them with the arguments determined by the
5693 earlier call to check_explicit_specialization. */
5694 args = DECL_TI_ARGS (decl);
5695
5696 new_tmpl
5697 = build_template_decl (decl, current_template_parms,
5698 member_template_p);
5699 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5700 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5701 DECL_TI_TEMPLATE (decl) = new_tmpl;
5702 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5703 DECL_TEMPLATE_INFO (new_tmpl)
5704 = build_template_info (tmpl, args);
5705
5706 register_specialization (new_tmpl,
5707 most_general_template (tmpl),
5708 args,
5709 is_friend, 0);
5710 return decl;
5711 }
5712
5713 /* Make sure the template headers we got make sense. */
5714
5715 parms = DECL_TEMPLATE_PARMS (tmpl);
5716 i = TMPL_PARMS_DEPTH (parms);
5717 if (TMPL_ARGS_DEPTH (args) != i)
5718 {
5719 error ("expected %d levels of template parms for %q#D, got %d",
5720 i, decl, TMPL_ARGS_DEPTH (args));
5721 DECL_INTERFACE_KNOWN (decl) = 1;
5722 return error_mark_node;
5723 }
5724 else
5725 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5726 {
5727 a = TMPL_ARGS_LEVEL (args, i);
5728 t = INNERMOST_TEMPLATE_PARMS (parms);
5729
5730 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5731 {
5732 if (current == decl)
5733 error ("got %d template parameters for %q#D",
5734 TREE_VEC_LENGTH (a), decl);
5735 else
5736 error ("got %d template parameters for %q#T",
5737 TREE_VEC_LENGTH (a), current);
5738 error (" but %d required", TREE_VEC_LENGTH (t));
5739 /* Avoid crash in import_export_decl. */
5740 DECL_INTERFACE_KNOWN (decl) = 1;
5741 return error_mark_node;
5742 }
5743
5744 if (current == decl)
5745 current = ctx;
5746 else if (current == NULL_TREE)
5747 /* Can happen in erroneous input. */
5748 break;
5749 else
5750 current = get_containing_scope (current);
5751 }
5752
5753 /* Check that the parms are used in the appropriate qualifying scopes
5754 in the declarator. */
5755 if (!comp_template_args
5756 (TI_ARGS (tinfo),
5757 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5758 {
5759 error ("template arguments to %qD do not match original "
5760 "template %qD", decl, DECL_TEMPLATE_RESULT (tmpl));
5761 if (!uses_template_parms (TI_ARGS (tinfo)))
5762 inform (input_location, "use %<template<>%> for"
5763 " an explicit specialization");
5764 /* Avoid crash in import_export_decl. */
5765 DECL_INTERFACE_KNOWN (decl) = 1;
5766 return error_mark_node;
5767 }
5768 }
5769
5770 DECL_TEMPLATE_RESULT (tmpl) = decl;
5771 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5772
5773 /* Push template declarations for global functions and types. Note
5774 that we do not try to push a global template friend declared in a
5775 template class; such a thing may well depend on the template
5776 parameters of the class. */
5777 if (new_template_p && !ctx
5778 && !(is_friend && template_class_depth (current_class_type) > 0))
5779 {
5780 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5781 if (tmpl == error_mark_node)
5782 return error_mark_node;
5783
5784 /* Hide template friend classes that haven't been declared yet. */
5785 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5786 {
5787 DECL_ANTICIPATED (tmpl) = 1;
5788 DECL_FRIEND_P (tmpl) = 1;
5789 }
5790 }
5791
5792 if (is_primary)
5793 {
5794 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5795
5796 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5797
5798 /* Give template template parms a DECL_CONTEXT of the template
5799 for which they are a parameter. */
5800 parms = INNERMOST_TEMPLATE_PARMS (parms);
5801 for (int i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5802 {
5803 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5804 if (TREE_CODE (parm) == TEMPLATE_DECL)
5805 DECL_CONTEXT (parm) = tmpl;
5806 }
5807
5808 if (TREE_CODE (decl) == TYPE_DECL
5809 && TYPE_DECL_ALIAS_P (decl)
5810 && complex_alias_template_p (tmpl))
5811 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5812 }
5813
5814 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5815 back to its most general template. If TMPL is a specialization,
5816 ARGS may only have the innermost set of arguments. Add the missing
5817 argument levels if necessary. */
5818 if (DECL_TEMPLATE_INFO (tmpl))
5819 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5820
5821 info = build_template_info (tmpl, args);
5822
5823 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5824 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5825 else
5826 {
5827 if (is_primary)
5828 retrofit_lang_decl (decl);
5829 if (DECL_LANG_SPECIFIC (decl))
5830 DECL_TEMPLATE_INFO (decl) = info;
5831 }
5832
5833 if (flag_implicit_templates
5834 && !is_friend
5835 && TREE_PUBLIC (decl)
5836 && VAR_OR_FUNCTION_DECL_P (decl))
5837 /* Set DECL_COMDAT on template instantiations; if we force
5838 them to be emitted by explicit instantiation or -frepo,
5839 mark_needed will tell cgraph to do the right thing. */
5840 DECL_COMDAT (decl) = true;
5841
5842 return DECL_TEMPLATE_RESULT (tmpl);
5843 }
5844
5845 tree
5846 push_template_decl (tree decl)
5847 {
5848 return push_template_decl_real (decl, false);
5849 }
5850
5851 /* FN is an inheriting constructor that inherits from the constructor
5852 template INHERITED; turn FN into a constructor template with a matching
5853 template header. */
5854
5855 tree
5856 add_inherited_template_parms (tree fn, tree inherited)
5857 {
5858 tree inner_parms
5859 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5860 inner_parms = copy_node (inner_parms);
5861 tree parms
5862 = tree_cons (size_int (processing_template_decl + 1),
5863 inner_parms, current_template_parms);
5864 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5865 tree args = template_parms_to_args (parms);
5866 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5867 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5868 DECL_TEMPLATE_RESULT (tmpl) = fn;
5869 DECL_ARTIFICIAL (tmpl) = true;
5870 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5871 return tmpl;
5872 }
5873
5874 /* Called when a class template TYPE is redeclared with the indicated
5875 template PARMS, e.g.:
5876
5877 template <class T> struct S;
5878 template <class T> struct S {}; */
5879
5880 bool
5881 redeclare_class_template (tree type, tree parms, tree cons)
5882 {
5883 tree tmpl;
5884 tree tmpl_parms;
5885 int i;
5886
5887 if (!TYPE_TEMPLATE_INFO (type))
5888 {
5889 error ("%qT is not a template type", type);
5890 return false;
5891 }
5892
5893 tmpl = TYPE_TI_TEMPLATE (type);
5894 if (!PRIMARY_TEMPLATE_P (tmpl))
5895 /* The type is nested in some template class. Nothing to worry
5896 about here; there are no new template parameters for the nested
5897 type. */
5898 return true;
5899
5900 if (!parms)
5901 {
5902 error ("template specifiers not specified in declaration of %qD",
5903 tmpl);
5904 return false;
5905 }
5906
5907 parms = INNERMOST_TEMPLATE_PARMS (parms);
5908 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5909
5910 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5911 {
5912 error_n (input_location, TREE_VEC_LENGTH (parms),
5913 "redeclared with %d template parameter",
5914 "redeclared with %d template parameters",
5915 TREE_VEC_LENGTH (parms));
5916 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5917 "previous declaration %qD used %d template parameter",
5918 "previous declaration %qD used %d template parameters",
5919 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5920 return false;
5921 }
5922
5923 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5924 {
5925 tree tmpl_parm;
5926 tree parm;
5927 tree tmpl_default;
5928 tree parm_default;
5929
5930 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5931 || TREE_VEC_ELT (parms, i) == error_mark_node)
5932 continue;
5933
5934 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5935 if (error_operand_p (tmpl_parm))
5936 return false;
5937
5938 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5939 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5940 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5941
5942 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5943 TEMPLATE_DECL. */
5944 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5945 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5946 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5947 || (TREE_CODE (tmpl_parm) != PARM_DECL
5948 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5949 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5950 || (TREE_CODE (tmpl_parm) == PARM_DECL
5951 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5952 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5953 {
5954 error ("template parameter %q+#D", tmpl_parm);
5955 error ("redeclared here as %q#D", parm);
5956 return false;
5957 }
5958
5959 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5960 {
5961 /* We have in [temp.param]:
5962
5963 A template-parameter may not be given default arguments
5964 by two different declarations in the same scope. */
5965 error_at (input_location, "redefinition of default argument for %q#D", parm);
5966 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5967 "original definition appeared here");
5968 return false;
5969 }
5970
5971 if (parm_default != NULL_TREE)
5972 /* Update the previous template parameters (which are the ones
5973 that will really count) with the new default value. */
5974 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5975 else if (tmpl_default != NULL_TREE)
5976 /* Update the new parameters, too; they'll be used as the
5977 parameters for any members. */
5978 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5979
5980 /* Give each template template parm in this redeclaration a
5981 DECL_CONTEXT of the template for which they are a parameter. */
5982 if (TREE_CODE (parm) == TEMPLATE_DECL)
5983 {
5984 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5985 DECL_CONTEXT (parm) = tmpl;
5986 }
5987
5988 if (TREE_CODE (parm) == TYPE_DECL)
5989 TEMPLATE_TYPE_PARM_FOR_CLASS (TREE_TYPE (parm)) = true;
5990 }
5991
5992 // Cannot redeclare a class template with a different set of constraints.
5993 if (!equivalent_constraints (get_constraints (tmpl), cons))
5994 {
5995 error_at (input_location, "redeclaration %q#D with different "
5996 "constraints", tmpl);
5997 inform (DECL_SOURCE_LOCATION (tmpl),
5998 "original declaration appeared here");
5999 }
6000
6001 return true;
6002 }
6003
6004 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
6005 to be used when the caller has already checked
6006 (processing_template_decl
6007 && !instantiation_dependent_expression_p (expr)
6008 && potential_constant_expression (expr))
6009 and cleared processing_template_decl. */
6010
6011 tree
6012 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
6013 {
6014 return tsubst_copy_and_build (expr,
6015 /*args=*/NULL_TREE,
6016 complain,
6017 /*in_decl=*/NULL_TREE,
6018 /*function_p=*/false,
6019 /*integral_constant_expression_p=*/true);
6020 }
6021
6022 /* Simplify EXPR if it is a non-dependent expression. Returns the
6023 (possibly simplified) expression. */
6024
6025 tree
6026 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
6027 {
6028 if (expr == NULL_TREE)
6029 return NULL_TREE;
6030
6031 /* If we're in a template, but EXPR isn't value dependent, simplify
6032 it. We're supposed to treat:
6033
6034 template <typename T> void f(T[1 + 1]);
6035 template <typename T> void f(T[2]);
6036
6037 as two declarations of the same function, for example. */
6038 if (processing_template_decl
6039 && is_nondependent_constant_expression (expr))
6040 {
6041 processing_template_decl_sentinel s;
6042 expr = instantiate_non_dependent_expr_internal (expr, complain);
6043 }
6044 return expr;
6045 }
6046
6047 tree
6048 instantiate_non_dependent_expr (tree expr)
6049 {
6050 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
6051 }
6052
6053 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
6054 an uninstantiated expression. */
6055
6056 tree
6057 instantiate_non_dependent_or_null (tree expr)
6058 {
6059 if (expr == NULL_TREE)
6060 return NULL_TREE;
6061 if (processing_template_decl)
6062 {
6063 if (!is_nondependent_constant_expression (expr))
6064 expr = NULL_TREE;
6065 else
6066 {
6067 processing_template_decl_sentinel s;
6068 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
6069 }
6070 }
6071 return expr;
6072 }
6073
6074 /* True iff T is a specialization of a variable template. */
6075
6076 bool
6077 variable_template_specialization_p (tree t)
6078 {
6079 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
6080 return false;
6081 tree tmpl = DECL_TI_TEMPLATE (t);
6082 return variable_template_p (tmpl);
6083 }
6084
6085 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
6086 template declaration, or a TYPE_DECL for an alias declaration. */
6087
6088 bool
6089 alias_type_or_template_p (tree t)
6090 {
6091 if (t == NULL_TREE)
6092 return false;
6093 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
6094 || (TYPE_P (t)
6095 && TYPE_NAME (t)
6096 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
6097 || DECL_ALIAS_TEMPLATE_P (t));
6098 }
6099
6100 /* Return TRUE iff T is a specialization of an alias template. */
6101
6102 bool
6103 alias_template_specialization_p (const_tree t)
6104 {
6105 /* It's an alias template specialization if it's an alias and its
6106 TYPE_NAME is a specialization of a primary template. */
6107 if (TYPE_ALIAS_P (t))
6108 if (tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t))
6109 return PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo));
6110
6111 return false;
6112 }
6113
6114 /* An alias template is complex from a SFINAE perspective if a template-id
6115 using that alias can be ill-formed when the expansion is not, as with
6116 the void_t template. We determine this by checking whether the
6117 expansion for the alias template uses all its template parameters. */
6118
6119 struct uses_all_template_parms_data
6120 {
6121 int level;
6122 bool *seen;
6123 };
6124
6125 static int
6126 uses_all_template_parms_r (tree t, void *data_)
6127 {
6128 struct uses_all_template_parms_data &data
6129 = *(struct uses_all_template_parms_data*)data_;
6130 tree idx = get_template_parm_index (t);
6131
6132 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
6133 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
6134 return 0;
6135 }
6136
6137 static bool
6138 complex_alias_template_p (const_tree tmpl)
6139 {
6140 struct uses_all_template_parms_data data;
6141 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
6142 tree parms = DECL_TEMPLATE_PARMS (tmpl);
6143 data.level = TMPL_PARMS_DEPTH (parms);
6144 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
6145 data.seen = XALLOCAVEC (bool, len);
6146 for (int i = 0; i < len; ++i)
6147 data.seen[i] = false;
6148
6149 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
6150 for (int i = 0; i < len; ++i)
6151 if (!data.seen[i])
6152 return true;
6153 return false;
6154 }
6155
6156 /* Return TRUE iff T is a specialization of a complex alias template with
6157 dependent template-arguments. */
6158
6159 bool
6160 dependent_alias_template_spec_p (const_tree t)
6161 {
6162 if (!alias_template_specialization_p (t))
6163 return false;
6164
6165 tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t);
6166 if (!TEMPLATE_DECL_COMPLEX_ALIAS_P (TI_TEMPLATE (tinfo)))
6167 return false;
6168
6169 tree args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo));
6170 if (!any_dependent_template_arguments_p (args))
6171 return false;
6172
6173 return true;
6174 }
6175
6176 /* Return the number of innermost template parameters in TMPL. */
6177
6178 static int
6179 num_innermost_template_parms (tree tmpl)
6180 {
6181 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
6182 return TREE_VEC_LENGTH (parms);
6183 }
6184
6185 /* Return either TMPL or another template that it is equivalent to under DR
6186 1286: An alias that just changes the name of a template is equivalent to
6187 the other template. */
6188
6189 static tree
6190 get_underlying_template (tree tmpl)
6191 {
6192 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
6193 while (DECL_ALIAS_TEMPLATE_P (tmpl))
6194 {
6195 /* Determine if the alias is equivalent to an underlying template. */
6196 tree orig_type = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
6197 tree tinfo = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (orig_type);
6198 if (!tinfo)
6199 break;
6200
6201 tree underlying = TI_TEMPLATE (tinfo);
6202 if (!PRIMARY_TEMPLATE_P (underlying)
6203 || (num_innermost_template_parms (tmpl)
6204 != num_innermost_template_parms (underlying)))
6205 break;
6206
6207 tree alias_args = INNERMOST_TEMPLATE_ARGS
6208 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
6209 if (!comp_template_args (TI_ARGS (tinfo), alias_args))
6210 break;
6211
6212 /* Alias is equivalent. Strip it and repeat. */
6213 tmpl = underlying;
6214 }
6215
6216 return tmpl;
6217 }
6218
6219 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
6220 must be a reference-to-function or a pointer-to-function type, as specified
6221 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
6222 and check that the resulting function has external linkage. */
6223
6224 static tree
6225 convert_nontype_argument_function (tree type, tree expr,
6226 tsubst_flags_t complain)
6227 {
6228 tree fns = expr;
6229 tree fn, fn_no_ptr;
6230 linkage_kind linkage;
6231
6232 fn = instantiate_type (type, fns, tf_none);
6233 if (fn == error_mark_node)
6234 return error_mark_node;
6235
6236 if (value_dependent_expression_p (fn))
6237 goto accept;
6238
6239 fn_no_ptr = strip_fnptr_conv (fn);
6240 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
6241 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
6242 if (BASELINK_P (fn_no_ptr))
6243 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
6244
6245 /* [temp.arg.nontype]/1
6246
6247 A template-argument for a non-type, non-template template-parameter
6248 shall be one of:
6249 [...]
6250 -- the address of an object or function with external [C++11: or
6251 internal] linkage. */
6252
6253 STRIP_ANY_LOCATION_WRAPPER (fn_no_ptr);
6254 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
6255 {
6256 if (complain & tf_error)
6257 {
6258 error ("%qE is not a valid template argument for type %qT",
6259 expr, type);
6260 if (TYPE_PTR_P (type))
6261 inform (input_location, "it must be the address of a function "
6262 "with external linkage");
6263 else
6264 inform (input_location, "it must be the name of a function with "
6265 "external linkage");
6266 }
6267 return NULL_TREE;
6268 }
6269
6270 linkage = decl_linkage (fn_no_ptr);
6271 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
6272 {
6273 if (complain & tf_error)
6274 {
6275 if (cxx_dialect >= cxx11)
6276 error ("%qE is not a valid template argument for type %qT "
6277 "because %qD has no linkage",
6278 expr, type, fn_no_ptr);
6279 else
6280 error ("%qE is not a valid template argument for type %qT "
6281 "because %qD does not have external linkage",
6282 expr, type, fn_no_ptr);
6283 }
6284 return NULL_TREE;
6285 }
6286
6287 accept:
6288 if (TYPE_REF_P (type))
6289 {
6290 if (REFERENCE_REF_P (fn))
6291 fn = TREE_OPERAND (fn, 0);
6292 else
6293 fn = build_address (fn);
6294 }
6295 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (fn)))
6296 fn = build_nop (type, fn);
6297
6298 return fn;
6299 }
6300
6301 /* Subroutine of convert_nontype_argument.
6302 Check if EXPR of type TYPE is a valid pointer-to-member constant.
6303 Emit an error otherwise. */
6304
6305 static bool
6306 check_valid_ptrmem_cst_expr (tree type, tree expr,
6307 tsubst_flags_t complain)
6308 {
6309 location_t loc = cp_expr_loc_or_input_loc (expr);
6310 tree orig_expr = expr;
6311 STRIP_NOPS (expr);
6312 if (null_ptr_cst_p (expr))
6313 return true;
6314 if (TREE_CODE (expr) == PTRMEM_CST
6315 && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
6316 PTRMEM_CST_CLASS (expr)))
6317 return true;
6318 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
6319 return true;
6320 if (processing_template_decl
6321 && TREE_CODE (expr) == ADDR_EXPR
6322 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
6323 return true;
6324 if (complain & tf_error)
6325 {
6326 error_at (loc, "%qE is not a valid template argument for type %qT",
6327 orig_expr, type);
6328 if (TREE_CODE (expr) != PTRMEM_CST)
6329 inform (loc, "it must be a pointer-to-member of the form %<&X::Y%>");
6330 else
6331 inform (loc, "because it is a member of %qT", PTRMEM_CST_CLASS (expr));
6332 }
6333 return false;
6334 }
6335
6336 /* Returns TRUE iff the address of OP is value-dependent.
6337
6338 14.6.2.4 [temp.dep.temp]:
6339 A non-integral non-type template-argument is dependent if its type is
6340 dependent or it has either of the following forms
6341 qualified-id
6342 & qualified-id
6343 and contains a nested-name-specifier which specifies a class-name that
6344 names a dependent type.
6345
6346 We generalize this to just say that the address of a member of a
6347 dependent class is value-dependent; the above doesn't cover the
6348 address of a static data member named with an unqualified-id. */
6349
6350 static bool
6351 has_value_dependent_address (tree op)
6352 {
6353 /* We could use get_inner_reference here, but there's no need;
6354 this is only relevant for template non-type arguments, which
6355 can only be expressed as &id-expression. */
6356 if (DECL_P (op))
6357 {
6358 tree ctx = CP_DECL_CONTEXT (op);
6359 if (TYPE_P (ctx) && dependent_type_p (ctx))
6360 return true;
6361 }
6362
6363 return false;
6364 }
6365
6366 /* The next set of functions are used for providing helpful explanatory
6367 diagnostics for failed overload resolution. Their messages should be
6368 indented by two spaces for consistency with the messages in
6369 call.c */
6370
6371 static int
6372 unify_success (bool /*explain_p*/)
6373 {
6374 return 0;
6375 }
6376
6377 /* Other failure functions should call this one, to provide a single function
6378 for setting a breakpoint on. */
6379
6380 static int
6381 unify_invalid (bool /*explain_p*/)
6382 {
6383 return 1;
6384 }
6385
6386 static int
6387 unify_parameter_deduction_failure (bool explain_p, tree parm)
6388 {
6389 if (explain_p)
6390 inform (input_location,
6391 " couldn%'t deduce template parameter %qD", parm);
6392 return unify_invalid (explain_p);
6393 }
6394
6395 static int
6396 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
6397 {
6398 if (explain_p)
6399 inform (input_location,
6400 " types %qT and %qT have incompatible cv-qualifiers",
6401 parm, arg);
6402 return unify_invalid (explain_p);
6403 }
6404
6405 static int
6406 unify_type_mismatch (bool explain_p, tree parm, tree arg)
6407 {
6408 if (explain_p)
6409 inform (input_location, " mismatched types %qT and %qT", parm, arg);
6410 return unify_invalid (explain_p);
6411 }
6412
6413 static int
6414 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6415 {
6416 if (explain_p)
6417 inform (input_location,
6418 " template parameter %qD is not a parameter pack, but "
6419 "argument %qD is",
6420 parm, arg);
6421 return unify_invalid (explain_p);
6422 }
6423
6424 static int
6425 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6426 {
6427 if (explain_p)
6428 inform (input_location,
6429 " template argument %qE does not match "
6430 "pointer-to-member constant %qE",
6431 arg, parm);
6432 return unify_invalid (explain_p);
6433 }
6434
6435 static int
6436 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6437 {
6438 if (explain_p)
6439 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6440 return unify_invalid (explain_p);
6441 }
6442
6443 static int
6444 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6445 {
6446 if (explain_p)
6447 inform (input_location,
6448 " inconsistent parameter pack deduction with %qT and %qT",
6449 old_arg, new_arg);
6450 return unify_invalid (explain_p);
6451 }
6452
6453 static int
6454 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6455 {
6456 if (explain_p)
6457 {
6458 if (TYPE_P (parm))
6459 inform (input_location,
6460 " deduced conflicting types for parameter %qT (%qT and %qT)",
6461 parm, first, second);
6462 else
6463 inform (input_location,
6464 " deduced conflicting values for non-type parameter "
6465 "%qE (%qE and %qE)", parm, first, second);
6466 }
6467 return unify_invalid (explain_p);
6468 }
6469
6470 static int
6471 unify_vla_arg (bool explain_p, tree arg)
6472 {
6473 if (explain_p)
6474 inform (input_location,
6475 " variable-sized array type %qT is not "
6476 "a valid template argument",
6477 arg);
6478 return unify_invalid (explain_p);
6479 }
6480
6481 static int
6482 unify_method_type_error (bool explain_p, tree arg)
6483 {
6484 if (explain_p)
6485 inform (input_location,
6486 " member function type %qT is not a valid template argument",
6487 arg);
6488 return unify_invalid (explain_p);
6489 }
6490
6491 static int
6492 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6493 {
6494 if (explain_p)
6495 {
6496 if (least_p)
6497 inform_n (input_location, wanted,
6498 " candidate expects at least %d argument, %d provided",
6499 " candidate expects at least %d arguments, %d provided",
6500 wanted, have);
6501 else
6502 inform_n (input_location, wanted,
6503 " candidate expects %d argument, %d provided",
6504 " candidate expects %d arguments, %d provided",
6505 wanted, have);
6506 }
6507 return unify_invalid (explain_p);
6508 }
6509
6510 static int
6511 unify_too_many_arguments (bool explain_p, int have, int wanted)
6512 {
6513 return unify_arity (explain_p, have, wanted);
6514 }
6515
6516 static int
6517 unify_too_few_arguments (bool explain_p, int have, int wanted,
6518 bool least_p = false)
6519 {
6520 return unify_arity (explain_p, have, wanted, least_p);
6521 }
6522
6523 static int
6524 unify_arg_conversion (bool explain_p, tree to_type,
6525 tree from_type, tree arg)
6526 {
6527 if (explain_p)
6528 inform (cp_expr_loc_or_input_loc (arg),
6529 " cannot convert %qE (type %qT) to type %qT",
6530 arg, from_type, to_type);
6531 return unify_invalid (explain_p);
6532 }
6533
6534 static int
6535 unify_no_common_base (bool explain_p, enum template_base_result r,
6536 tree parm, tree arg)
6537 {
6538 if (explain_p)
6539 switch (r)
6540 {
6541 case tbr_ambiguous_baseclass:
6542 inform (input_location, " %qT is an ambiguous base class of %qT",
6543 parm, arg);
6544 break;
6545 default:
6546 inform (input_location, " %qT is not derived from %qT", arg, parm);
6547 break;
6548 }
6549 return unify_invalid (explain_p);
6550 }
6551
6552 static int
6553 unify_inconsistent_template_template_parameters (bool explain_p)
6554 {
6555 if (explain_p)
6556 inform (input_location,
6557 " template parameters of a template template argument are "
6558 "inconsistent with other deduced template arguments");
6559 return unify_invalid (explain_p);
6560 }
6561
6562 static int
6563 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6564 {
6565 if (explain_p)
6566 inform (input_location,
6567 " cannot deduce a template for %qT from non-template type %qT",
6568 parm, arg);
6569 return unify_invalid (explain_p);
6570 }
6571
6572 static int
6573 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6574 {
6575 if (explain_p)
6576 inform (input_location,
6577 " template argument %qE does not match %qE", arg, parm);
6578 return unify_invalid (explain_p);
6579 }
6580
6581 /* True if T is a C++20 template parameter object to store the argument for a
6582 template parameter of class type. */
6583
6584 bool
6585 template_parm_object_p (const_tree t)
6586 {
6587 return (TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t) && DECL_NAME (t)
6588 && !strncmp (IDENTIFIER_POINTER (DECL_NAME (t)), "_ZTA", 4));
6589 }
6590
6591 /* Subroutine of convert_nontype_argument, to check whether EXPR, as an
6592 argument for TYPE, points to an unsuitable object. */
6593
6594 static bool
6595 invalid_tparm_referent_p (tree type, tree expr, tsubst_flags_t complain)
6596 {
6597 switch (TREE_CODE (expr))
6598 {
6599 CASE_CONVERT:
6600 return invalid_tparm_referent_p (type, TREE_OPERAND (expr, 0),
6601 complain);
6602
6603 case TARGET_EXPR:
6604 return invalid_tparm_referent_p (type, TARGET_EXPR_INITIAL (expr),
6605 complain);
6606
6607 case CONSTRUCTOR:
6608 {
6609 unsigned i; tree elt;
6610 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), i, elt)
6611 if (invalid_tparm_referent_p (TREE_TYPE (elt), elt, complain))
6612 return true;
6613 }
6614 break;
6615
6616 case ADDR_EXPR:
6617 {
6618 tree decl = TREE_OPERAND (expr, 0);
6619
6620 if (!VAR_P (decl))
6621 {
6622 if (complain & tf_error)
6623 error ("%qE is not a valid template argument of type %qT "
6624 "because %qE is not a variable", expr, type, decl);
6625 return true;
6626 }
6627 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6628 {
6629 if (complain & tf_error)
6630 error ("%qE is not a valid template argument of type %qT "
6631 "in C++98 because %qD does not have external linkage",
6632 expr, type, decl);
6633 return true;
6634 }
6635 else if ((cxx_dialect >= cxx11 && cxx_dialect < cxx17)
6636 && decl_linkage (decl) == lk_none)
6637 {
6638 if (complain & tf_error)
6639 error ("%qE is not a valid template argument of type %qT "
6640 "because %qD has no linkage", expr, type, decl);
6641 return true;
6642 }
6643 /* C++17: For a non-type template-parameter of reference or pointer
6644 type, the value of the constant expression shall not refer to (or
6645 for a pointer type, shall not be the address of):
6646 * a subobject (4.5),
6647 * a temporary object (15.2),
6648 * a string literal (5.13.5),
6649 * the result of a typeid expression (8.2.8), or
6650 * a predefined __func__ variable (11.4.1). */
6651 else if (DECL_ARTIFICIAL (decl))
6652 {
6653 if (complain & tf_error)
6654 error ("the address of %qD is not a valid template argument",
6655 decl);
6656 return true;
6657 }
6658 else if (!same_type_ignoring_top_level_qualifiers_p
6659 (strip_array_types (TREE_TYPE (type)),
6660 strip_array_types (TREE_TYPE (decl))))
6661 {
6662 if (complain & tf_error)
6663 error ("the address of the %qT subobject of %qD is not a "
6664 "valid template argument", TREE_TYPE (type), decl);
6665 return true;
6666 }
6667 else if (!TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
6668 {
6669 if (complain & tf_error)
6670 error ("the address of %qD is not a valid template argument "
6671 "because it does not have static storage duration",
6672 decl);
6673 return true;
6674 }
6675 }
6676 break;
6677
6678 default:
6679 if (!INDIRECT_TYPE_P (type))
6680 /* We're only concerned about pointers and references here. */;
6681 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6682 /* Null pointer values are OK in C++11. */;
6683 else
6684 {
6685 if (VAR_P (expr))
6686 {
6687 if (complain & tf_error)
6688 error ("%qD is not a valid template argument "
6689 "because %qD is a variable, not the address of "
6690 "a variable", expr, expr);
6691 return true;
6692 }
6693 else
6694 {
6695 if (complain & tf_error)
6696 error ("%qE is not a valid template argument for %qT "
6697 "because it is not the address of a variable",
6698 expr, type);
6699 return true;
6700 }
6701 }
6702 }
6703 return false;
6704
6705 }
6706
6707 /* Return a VAR_DECL for the C++20 template parameter object corresponding to
6708 template argument EXPR. */
6709
6710 static tree
6711 get_template_parm_object (tree expr, tsubst_flags_t complain)
6712 {
6713 if (TREE_CODE (expr) == TARGET_EXPR)
6714 expr = TARGET_EXPR_INITIAL (expr);
6715
6716 if (!TREE_CONSTANT (expr))
6717 {
6718 if ((complain & tf_error)
6719 && require_rvalue_constant_expression (expr))
6720 cxx_constant_value (expr);
6721 return error_mark_node;
6722 }
6723 if (invalid_tparm_referent_p (TREE_TYPE (expr), expr, complain))
6724 return error_mark_node;
6725
6726 tree name = mangle_template_parm_object (expr);
6727 tree decl = get_global_binding (name);
6728 if (decl)
6729 return decl;
6730
6731 tree type = cp_build_qualified_type (TREE_TYPE (expr), TYPE_QUAL_CONST);
6732 decl = create_temporary_var (type);
6733 TREE_STATIC (decl) = true;
6734 DECL_DECLARED_CONSTEXPR_P (decl) = true;
6735 TREE_READONLY (decl) = true;
6736 DECL_NAME (decl) = name;
6737 SET_DECL_ASSEMBLER_NAME (decl, name);
6738 DECL_CONTEXT (decl) = global_namespace;
6739 comdat_linkage (decl);
6740 pushdecl_top_level_and_finish (decl, expr);
6741 return decl;
6742 }
6743
6744 /* Attempt to convert the non-type template parameter EXPR to the
6745 indicated TYPE. If the conversion is successful, return the
6746 converted value. If the conversion is unsuccessful, return
6747 NULL_TREE if we issued an error message, or error_mark_node if we
6748 did not. We issue error messages for out-and-out bad template
6749 parameters, but not simply because the conversion failed, since we
6750 might be just trying to do argument deduction. Both TYPE and EXPR
6751 must be non-dependent.
6752
6753 The conversion follows the special rules described in
6754 [temp.arg.nontype], and it is much more strict than an implicit
6755 conversion.
6756
6757 This function is called twice for each template argument (see
6758 lookup_template_class for a more accurate description of this
6759 problem). This means that we need to handle expressions which
6760 are not valid in a C++ source, but can be created from the
6761 first call (for instance, casts to perform conversions). These
6762 hacks can go away after we fix the double coercion problem. */
6763
6764 static tree
6765 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6766 {
6767 tree expr_type;
6768 location_t loc = cp_expr_loc_or_input_loc (expr);
6769
6770 /* Detect immediately string literals as invalid non-type argument.
6771 This special-case is not needed for correctness (we would easily
6772 catch this later), but only to provide better diagnostic for this
6773 common user mistake. As suggested by DR 100, we do not mention
6774 linkage issues in the diagnostic as this is not the point. */
6775 if (TREE_CODE (expr) == STRING_CST && !CLASS_TYPE_P (type))
6776 {
6777 if (complain & tf_error)
6778 error ("%qE is not a valid template argument for type %qT "
6779 "because string literals can never be used in this context",
6780 expr, type);
6781 return NULL_TREE;
6782 }
6783
6784 /* Add the ADDR_EXPR now for the benefit of
6785 value_dependent_expression_p. */
6786 if (TYPE_PTROBV_P (type)
6787 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6788 {
6789 expr = decay_conversion (expr, complain);
6790 if (expr == error_mark_node)
6791 return error_mark_node;
6792 }
6793
6794 /* If we are in a template, EXPR may be non-dependent, but still
6795 have a syntactic, rather than semantic, form. For example, EXPR
6796 might be a SCOPE_REF, rather than the VAR_DECL to which the
6797 SCOPE_REF refers. Preserving the qualifying scope is necessary
6798 so that access checking can be performed when the template is
6799 instantiated -- but here we need the resolved form so that we can
6800 convert the argument. */
6801 bool non_dep = false;
6802 if (TYPE_REF_OBJ_P (type)
6803 && has_value_dependent_address (expr))
6804 /* If we want the address and it's value-dependent, don't fold. */;
6805 else if (processing_template_decl
6806 && is_nondependent_constant_expression (expr))
6807 non_dep = true;
6808 if (error_operand_p (expr))
6809 return error_mark_node;
6810 expr_type = TREE_TYPE (expr);
6811
6812 /* If the argument is non-dependent, perform any conversions in
6813 non-dependent context as well. */
6814 processing_template_decl_sentinel s (non_dep);
6815 if (non_dep)
6816 expr = instantiate_non_dependent_expr_internal (expr, complain);
6817
6818 if (value_dependent_expression_p (expr))
6819 expr = canonicalize_expr_argument (expr, complain);
6820
6821 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6822 to a non-type argument of "nullptr". */
6823 if (NULLPTR_TYPE_P (expr_type) && TYPE_PTR_OR_PTRMEM_P (type))
6824 expr = fold_simple (convert (type, expr));
6825
6826 /* In C++11, integral or enumeration non-type template arguments can be
6827 arbitrary constant expressions. Pointer and pointer to
6828 member arguments can be general constant expressions that evaluate
6829 to a null value, but otherwise still need to be of a specific form. */
6830 if (cxx_dialect >= cxx11)
6831 {
6832 if (TREE_CODE (expr) == PTRMEM_CST && TYPE_PTRMEM_P (type))
6833 /* A PTRMEM_CST is already constant, and a valid template
6834 argument for a parameter of pointer to member type, we just want
6835 to leave it in that form rather than lower it to a
6836 CONSTRUCTOR. */;
6837 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
6838 || cxx_dialect >= cxx17)
6839 {
6840 /* Calling build_converted_constant_expr might create a call to
6841 a conversion function with a value-dependent argument, which
6842 could invoke taking the address of a temporary representing
6843 the result of the conversion. */
6844 if (COMPOUND_LITERAL_P (expr)
6845 && CONSTRUCTOR_IS_DEPENDENT (expr)
6846 && MAYBE_CLASS_TYPE_P (expr_type)
6847 && TYPE_HAS_CONVERSION (expr_type))
6848 {
6849 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
6850 IMPLICIT_CONV_EXPR_NONTYPE_ARG (expr) = true;
6851 return expr;
6852 }
6853 /* C++17: A template-argument for a non-type template-parameter shall
6854 be a converted constant expression (8.20) of the type of the
6855 template-parameter. */
6856 expr = build_converted_constant_expr (type, expr, complain);
6857 if (expr == error_mark_node)
6858 /* Make sure we return NULL_TREE only if we have really issued
6859 an error, as described above. */
6860 return (complain & tf_error) ? NULL_TREE : error_mark_node;
6861 expr = maybe_constant_value (expr, NULL_TREE,
6862 /*manifestly_const_eval=*/true);
6863 expr = convert_from_reference (expr);
6864 }
6865 else if (TYPE_PTR_OR_PTRMEM_P (type))
6866 {
6867 tree folded = maybe_constant_value (expr, NULL_TREE,
6868 /*manifestly_const_eval=*/true);
6869 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6870 : null_member_pointer_value_p (folded))
6871 expr = folded;
6872 }
6873 }
6874
6875 if (TYPE_REF_P (type))
6876 expr = mark_lvalue_use (expr);
6877 else
6878 expr = mark_rvalue_use (expr);
6879
6880 /* HACK: Due to double coercion, we can get a
6881 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6882 which is the tree that we built on the first call (see
6883 below when coercing to reference to object or to reference to
6884 function). We just strip everything and get to the arg.
6885 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6886 for examples. */
6887 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6888 {
6889 tree probe_type, probe = expr;
6890 if (REFERENCE_REF_P (probe))
6891 probe = TREE_OPERAND (probe, 0);
6892 probe_type = TREE_TYPE (probe);
6893 if (TREE_CODE (probe) == NOP_EXPR)
6894 {
6895 /* ??? Maybe we could use convert_from_reference here, but we
6896 would need to relax its constraints because the NOP_EXPR
6897 could actually change the type to something more cv-qualified,
6898 and this is not folded by convert_from_reference. */
6899 tree addr = TREE_OPERAND (probe, 0);
6900 if (TYPE_REF_P (probe_type)
6901 && TREE_CODE (addr) == ADDR_EXPR
6902 && TYPE_PTR_P (TREE_TYPE (addr))
6903 && (same_type_ignoring_top_level_qualifiers_p
6904 (TREE_TYPE (probe_type),
6905 TREE_TYPE (TREE_TYPE (addr)))))
6906 {
6907 expr = TREE_OPERAND (addr, 0);
6908 expr_type = TREE_TYPE (probe_type);
6909 }
6910 }
6911 }
6912
6913 /* [temp.arg.nontype]/5, bullet 1
6914
6915 For a non-type template-parameter of integral or enumeration type,
6916 integral promotions (_conv.prom_) and integral conversions
6917 (_conv.integral_) are applied. */
6918 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6919 {
6920 if (cxx_dialect < cxx11)
6921 {
6922 tree t = build_converted_constant_expr (type, expr, complain);
6923 t = maybe_constant_value (t);
6924 if (t != error_mark_node)
6925 expr = t;
6926 }
6927
6928 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6929 return error_mark_node;
6930
6931 /* Notice that there are constant expressions like '4 % 0' which
6932 do not fold into integer constants. */
6933 if (TREE_CODE (expr) != INTEGER_CST
6934 && !value_dependent_expression_p (expr))
6935 {
6936 if (complain & tf_error)
6937 {
6938 int errs = errorcount, warns = warningcount + werrorcount;
6939 if (!require_potential_constant_expression (expr))
6940 expr = error_mark_node;
6941 else
6942 expr = cxx_constant_value (expr);
6943 if (errorcount > errs || warningcount + werrorcount > warns)
6944 inform (loc, "in template argument for type %qT", type);
6945 if (expr == error_mark_node)
6946 return NULL_TREE;
6947 /* else cxx_constant_value complained but gave us
6948 a real constant, so go ahead. */
6949 if (TREE_CODE (expr) != INTEGER_CST)
6950 {
6951 /* Some assemble time constant expressions like
6952 (intptr_t)&&lab1 - (intptr_t)&&lab2 or
6953 4 + (intptr_t)&&var satisfy reduced_constant_expression_p
6954 as we can emit them into .rodata initializers of
6955 variables, yet they can't fold into an INTEGER_CST at
6956 compile time. Refuse them here. */
6957 gcc_checking_assert (reduced_constant_expression_p (expr));
6958 error_at (loc, "template argument %qE for type %qT not "
6959 "a constant integer", expr, type);
6960 return NULL_TREE;
6961 }
6962 }
6963 else
6964 return NULL_TREE;
6965 }
6966
6967 /* Avoid typedef problems. */
6968 if (TREE_TYPE (expr) != type)
6969 expr = fold_convert (type, expr);
6970 }
6971 /* [temp.arg.nontype]/5, bullet 2
6972
6973 For a non-type template-parameter of type pointer to object,
6974 qualification conversions (_conv.qual_) and the array-to-pointer
6975 conversion (_conv.array_) are applied. */
6976 else if (TYPE_PTROBV_P (type))
6977 {
6978 tree decayed = expr;
6979
6980 /* Look through any NOP_EXPRs around an ADDR_EXPR, whether they come from
6981 decay_conversion or an explicit cast. If it's a problematic cast,
6982 we'll complain about it below. */
6983 if (TREE_CODE (expr) == NOP_EXPR)
6984 {
6985 tree probe = expr;
6986 STRIP_NOPS (probe);
6987 if (TREE_CODE (probe) == ADDR_EXPR
6988 && TYPE_PTR_P (TREE_TYPE (probe)))
6989 {
6990 expr = probe;
6991 expr_type = TREE_TYPE (expr);
6992 }
6993 }
6994
6995 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6996
6997 A template-argument for a non-type, non-template template-parameter
6998 shall be one of: [...]
6999
7000 -- the name of a non-type template-parameter;
7001 -- the address of an object or function with external linkage, [...]
7002 expressed as "& id-expression" where the & is optional if the name
7003 refers to a function or array, or if the corresponding
7004 template-parameter is a reference.
7005
7006 Here, we do not care about functions, as they are invalid anyway
7007 for a parameter of type pointer-to-object. */
7008
7009 if (value_dependent_expression_p (expr))
7010 /* Non-type template parameters are OK. */
7011 ;
7012 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
7013 /* Null pointer values are OK in C++11. */;
7014 else if (TREE_CODE (expr) != ADDR_EXPR
7015 && !INDIRECT_TYPE_P (expr_type))
7016 /* Other values, like integer constants, might be valid
7017 non-type arguments of some other type. */
7018 return error_mark_node;
7019 else if (invalid_tparm_referent_p (type, expr, complain))
7020 return NULL_TREE;
7021
7022 expr = decayed;
7023
7024 expr = perform_qualification_conversions (type, expr);
7025 if (expr == error_mark_node)
7026 return error_mark_node;
7027 }
7028 /* [temp.arg.nontype]/5, bullet 3
7029
7030 For a non-type template-parameter of type reference to object, no
7031 conversions apply. The type referred to by the reference may be more
7032 cv-qualified than the (otherwise identical) type of the
7033 template-argument. The template-parameter is bound directly to the
7034 template-argument, which must be an lvalue. */
7035 else if (TYPE_REF_OBJ_P (type))
7036 {
7037 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
7038 expr_type))
7039 return error_mark_node;
7040
7041 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
7042 {
7043 if (complain & tf_error)
7044 error ("%qE is not a valid template argument for type %qT "
7045 "because of conflicts in cv-qualification", expr, type);
7046 return NULL_TREE;
7047 }
7048
7049 if (!lvalue_p (expr))
7050 {
7051 if (complain & tf_error)
7052 error ("%qE is not a valid template argument for type %qT "
7053 "because it is not an lvalue", expr, type);
7054 return NULL_TREE;
7055 }
7056
7057 /* [temp.arg.nontype]/1
7058
7059 A template-argument for a non-type, non-template template-parameter
7060 shall be one of: [...]
7061
7062 -- the address of an object or function with external linkage. */
7063 if (INDIRECT_REF_P (expr)
7064 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
7065 {
7066 expr = TREE_OPERAND (expr, 0);
7067 if (DECL_P (expr))
7068 {
7069 if (complain & tf_error)
7070 error ("%q#D is not a valid template argument for type %qT "
7071 "because a reference variable does not have a constant "
7072 "address", expr, type);
7073 return NULL_TREE;
7074 }
7075 }
7076
7077 if (TYPE_REF_OBJ_P (TREE_TYPE (expr))
7078 && value_dependent_expression_p (expr))
7079 /* OK, dependent reference. We don't want to ask whether a DECL is
7080 itself value-dependent, since what we want here is its address. */;
7081 else
7082 {
7083 expr = build_address (expr);
7084
7085 if (invalid_tparm_referent_p (type, expr, complain))
7086 return NULL_TREE;
7087 }
7088
7089 if (!same_type_p (type, TREE_TYPE (expr)))
7090 expr = build_nop (type, expr);
7091 }
7092 /* [temp.arg.nontype]/5, bullet 4
7093
7094 For a non-type template-parameter of type pointer to function, only
7095 the function-to-pointer conversion (_conv.func_) is applied. If the
7096 template-argument represents a set of overloaded functions (or a
7097 pointer to such), the matching function is selected from the set
7098 (_over.over_). */
7099 else if (TYPE_PTRFN_P (type))
7100 {
7101 /* If the argument is a template-id, we might not have enough
7102 context information to decay the pointer. */
7103 if (!type_unknown_p (expr_type))
7104 {
7105 expr = decay_conversion (expr, complain);
7106 if (expr == error_mark_node)
7107 return error_mark_node;
7108 }
7109
7110 if (cxx_dialect >= cxx11 && integer_zerop (expr))
7111 /* Null pointer values are OK in C++11. */
7112 return perform_qualification_conversions (type, expr);
7113
7114 expr = convert_nontype_argument_function (type, expr, complain);
7115 if (!expr || expr == error_mark_node)
7116 return expr;
7117 }
7118 /* [temp.arg.nontype]/5, bullet 5
7119
7120 For a non-type template-parameter of type reference to function, no
7121 conversions apply. If the template-argument represents a set of
7122 overloaded functions, the matching function is selected from the set
7123 (_over.over_). */
7124 else if (TYPE_REFFN_P (type))
7125 {
7126 if (TREE_CODE (expr) == ADDR_EXPR)
7127 {
7128 if (complain & tf_error)
7129 {
7130 error ("%qE is not a valid template argument for type %qT "
7131 "because it is a pointer", expr, type);
7132 inform (input_location, "try using %qE instead",
7133 TREE_OPERAND (expr, 0));
7134 }
7135 return NULL_TREE;
7136 }
7137
7138 expr = convert_nontype_argument_function (type, expr, complain);
7139 if (!expr || expr == error_mark_node)
7140 return expr;
7141 }
7142 /* [temp.arg.nontype]/5, bullet 6
7143
7144 For a non-type template-parameter of type pointer to member function,
7145 no conversions apply. If the template-argument represents a set of
7146 overloaded member functions, the matching member function is selected
7147 from the set (_over.over_). */
7148 else if (TYPE_PTRMEMFUNC_P (type))
7149 {
7150 expr = instantiate_type (type, expr, tf_none);
7151 if (expr == error_mark_node)
7152 return error_mark_node;
7153
7154 /* [temp.arg.nontype] bullet 1 says the pointer to member
7155 expression must be a pointer-to-member constant. */
7156 if (!value_dependent_expression_p (expr)
7157 && !check_valid_ptrmem_cst_expr (type, expr, complain))
7158 return NULL_TREE;
7159
7160 /* Repeated conversion can't deal with a conversion that turns PTRMEM_CST
7161 into a CONSTRUCTOR, so build up a new PTRMEM_CST instead. */
7162 if (fnptr_conv_p (type, TREE_TYPE (expr)))
7163 expr = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
7164 }
7165 /* [temp.arg.nontype]/5, bullet 7
7166
7167 For a non-type template-parameter of type pointer to data member,
7168 qualification conversions (_conv.qual_) are applied. */
7169 else if (TYPE_PTRDATAMEM_P (type))
7170 {
7171 /* [temp.arg.nontype] bullet 1 says the pointer to member
7172 expression must be a pointer-to-member constant. */
7173 if (!value_dependent_expression_p (expr)
7174 && !check_valid_ptrmem_cst_expr (type, expr, complain))
7175 return NULL_TREE;
7176
7177 expr = perform_qualification_conversions (type, expr);
7178 if (expr == error_mark_node)
7179 return expr;
7180 }
7181 else if (NULLPTR_TYPE_P (type))
7182 {
7183 if (!NULLPTR_TYPE_P (TREE_TYPE (expr)))
7184 {
7185 if (complain & tf_error)
7186 error ("%qE is not a valid template argument for type %qT "
7187 "because it is of type %qT", expr, type, TREE_TYPE (expr));
7188 return NULL_TREE;
7189 }
7190 return expr;
7191 }
7192 else if (CLASS_TYPE_P (type))
7193 {
7194 /* Replace the argument with a reference to the corresponding template
7195 parameter object. */
7196 if (!value_dependent_expression_p (expr))
7197 expr = get_template_parm_object (expr, complain);
7198 if (expr == error_mark_node)
7199 return NULL_TREE;
7200 }
7201 /* A template non-type parameter must be one of the above. */
7202 else
7203 gcc_unreachable ();
7204
7205 /* Sanity check: did we actually convert the argument to the
7206 right type? */
7207 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7208 (type, TREE_TYPE (expr)));
7209 return convert_from_reference (expr);
7210 }
7211
7212 /* Subroutine of coerce_template_template_parms, which returns 1 if
7213 PARM_PARM and ARG_PARM match using the rule for the template
7214 parameters of template template parameters. Both PARM and ARG are
7215 template parameters; the rest of the arguments are the same as for
7216 coerce_template_template_parms.
7217 */
7218 static int
7219 coerce_template_template_parm (tree parm,
7220 tree arg,
7221 tsubst_flags_t complain,
7222 tree in_decl,
7223 tree outer_args)
7224 {
7225 if (arg == NULL_TREE || error_operand_p (arg)
7226 || parm == NULL_TREE || error_operand_p (parm))
7227 return 0;
7228
7229 if (TREE_CODE (arg) != TREE_CODE (parm))
7230 return 0;
7231
7232 switch (TREE_CODE (parm))
7233 {
7234 case TEMPLATE_DECL:
7235 /* We encounter instantiations of templates like
7236 template <template <template <class> class> class TT>
7237 class C; */
7238 {
7239 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7240 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7241
7242 if (!coerce_template_template_parms
7243 (parmparm, argparm, complain, in_decl, outer_args))
7244 return 0;
7245 }
7246 /* Fall through. */
7247
7248 case TYPE_DECL:
7249 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
7250 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
7251 /* Argument is a parameter pack but parameter is not. */
7252 return 0;
7253 break;
7254
7255 case PARM_DECL:
7256 /* The tsubst call is used to handle cases such as
7257
7258 template <int> class C {};
7259 template <class T, template <T> class TT> class D {};
7260 D<int, C> d;
7261
7262 i.e. the parameter list of TT depends on earlier parameters. */
7263 if (!uses_template_parms (TREE_TYPE (arg)))
7264 {
7265 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
7266 if (!uses_template_parms (t)
7267 && !same_type_p (t, TREE_TYPE (arg)))
7268 return 0;
7269 }
7270
7271 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
7272 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
7273 /* Argument is a parameter pack but parameter is not. */
7274 return 0;
7275
7276 break;
7277
7278 default:
7279 gcc_unreachable ();
7280 }
7281
7282 return 1;
7283 }
7284
7285 /* Coerce template argument list ARGLIST for use with template
7286 template-parameter TEMPL. */
7287
7288 static tree
7289 coerce_template_args_for_ttp (tree templ, tree arglist,
7290 tsubst_flags_t complain)
7291 {
7292 /* Consider an example where a template template parameter declared as
7293
7294 template <class T, class U = std::allocator<T> > class TT
7295
7296 The template parameter level of T and U are one level larger than
7297 of TT. To proper process the default argument of U, say when an
7298 instantiation `TT<int>' is seen, we need to build the full
7299 arguments containing {int} as the innermost level. Outer levels,
7300 available when not appearing as default template argument, can be
7301 obtained from the arguments of the enclosing template.
7302
7303 Suppose that TT is later substituted with std::vector. The above
7304 instantiation is `TT<int, std::allocator<T> >' with TT at
7305 level 1, and T at level 2, while the template arguments at level 1
7306 becomes {std::vector} and the inner level 2 is {int}. */
7307
7308 tree outer = DECL_CONTEXT (templ);
7309 if (outer)
7310 {
7311 if (DECL_TEMPLATE_SPECIALIZATION (outer))
7312 /* We want arguments for the partial specialization, not arguments for
7313 the primary template. */
7314 outer = template_parms_to_args (DECL_TEMPLATE_PARMS (outer));
7315 else
7316 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7317 }
7318 else if (current_template_parms)
7319 {
7320 /* This is an argument of the current template, so we haven't set
7321 DECL_CONTEXT yet. */
7322 tree relevant_template_parms;
7323
7324 /* Parameter levels that are greater than the level of the given
7325 template template parm are irrelevant. */
7326 relevant_template_parms = current_template_parms;
7327 while (TMPL_PARMS_DEPTH (relevant_template_parms)
7328 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
7329 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
7330
7331 outer = template_parms_to_args (relevant_template_parms);
7332 }
7333
7334 if (outer)
7335 arglist = add_to_template_args (outer, arglist);
7336
7337 tree parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7338 return coerce_template_parms (parmlist, arglist, templ,
7339 complain,
7340 /*require_all_args=*/true,
7341 /*use_default_args=*/true);
7342 }
7343
7344 /* A cache of template template parameters with match-all default
7345 arguments. */
7346 static GTY((deletable)) hash_map<tree,tree> *defaulted_ttp_cache;
7347 static void
7348 store_defaulted_ttp (tree v, tree t)
7349 {
7350 if (!defaulted_ttp_cache)
7351 defaulted_ttp_cache = hash_map<tree,tree>::create_ggc (13);
7352 defaulted_ttp_cache->put (v, t);
7353 }
7354 static tree
7355 lookup_defaulted_ttp (tree v)
7356 {
7357 if (defaulted_ttp_cache)
7358 if (tree *p = defaulted_ttp_cache->get (v))
7359 return *p;
7360 return NULL_TREE;
7361 }
7362
7363 /* T is a bound template template-parameter. Copy its arguments into default
7364 arguments of the template template-parameter's template parameters. */
7365
7366 static tree
7367 add_defaults_to_ttp (tree otmpl)
7368 {
7369 if (tree c = lookup_defaulted_ttp (otmpl))
7370 return c;
7371
7372 tree ntmpl = copy_node (otmpl);
7373
7374 tree ntype = copy_node (TREE_TYPE (otmpl));
7375 TYPE_STUB_DECL (ntype) = TYPE_NAME (ntype) = ntmpl;
7376 TYPE_MAIN_VARIANT (ntype) = ntype;
7377 TYPE_POINTER_TO (ntype) = TYPE_REFERENCE_TO (ntype) = NULL_TREE;
7378 TYPE_NAME (ntype) = ntmpl;
7379 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
7380
7381 tree idx = TEMPLATE_TYPE_PARM_INDEX (ntype)
7382 = copy_node (TEMPLATE_TYPE_PARM_INDEX (ntype));
7383 TEMPLATE_PARM_DECL (idx) = ntmpl;
7384 TREE_TYPE (ntmpl) = TREE_TYPE (idx) = ntype;
7385
7386 tree oparms = DECL_TEMPLATE_PARMS (otmpl);
7387 tree parms = DECL_TEMPLATE_PARMS (ntmpl) = copy_node (oparms);
7388 TREE_CHAIN (parms) = TREE_CHAIN (oparms);
7389 tree vec = TREE_VALUE (parms) = copy_node (TREE_VALUE (parms));
7390 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
7391 {
7392 tree o = TREE_VEC_ELT (vec, i);
7393 if (!template_parameter_pack_p (TREE_VALUE (o)))
7394 {
7395 tree n = TREE_VEC_ELT (vec, i) = copy_node (o);
7396 TREE_PURPOSE (n) = any_targ_node;
7397 }
7398 }
7399
7400 store_defaulted_ttp (otmpl, ntmpl);
7401 return ntmpl;
7402 }
7403
7404 /* ARG is a bound potential template template-argument, and PARGS is a list
7405 of arguments for the corresponding template template-parameter. Adjust
7406 PARGS as appropriate for application to ARG's template, and if ARG is a
7407 BOUND_TEMPLATE_TEMPLATE_PARM, possibly adjust it to add default template
7408 arguments to the template template parameter. */
7409
7410 static tree
7411 coerce_ttp_args_for_tta (tree& arg, tree pargs, tsubst_flags_t complain)
7412 {
7413 ++processing_template_decl;
7414 tree arg_tmpl = TYPE_TI_TEMPLATE (arg);
7415 if (DECL_TEMPLATE_TEMPLATE_PARM_P (arg_tmpl))
7416 {
7417 /* When comparing two template template-parameters in partial ordering,
7418 rewrite the one currently being used as an argument to have default
7419 arguments for all parameters. */
7420 arg_tmpl = add_defaults_to_ttp (arg_tmpl);
7421 pargs = coerce_template_args_for_ttp (arg_tmpl, pargs, complain);
7422 if (pargs != error_mark_node)
7423 arg = bind_template_template_parm (TREE_TYPE (arg_tmpl),
7424 TYPE_TI_ARGS (arg));
7425 }
7426 else
7427 {
7428 tree aparms
7429 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (arg_tmpl));
7430 pargs = coerce_template_parms (aparms, pargs, arg_tmpl, complain,
7431 /*require_all*/true,
7432 /*use_default*/true);
7433 }
7434 --processing_template_decl;
7435 return pargs;
7436 }
7437
7438 /* Subroutine of unify for the case when PARM is a
7439 BOUND_TEMPLATE_TEMPLATE_PARM. */
7440
7441 static int
7442 unify_bound_ttp_args (tree tparms, tree targs, tree parm, tree& arg,
7443 bool explain_p)
7444 {
7445 tree parmvec = TYPE_TI_ARGS (parm);
7446 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
7447
7448 /* The template template parm might be variadic and the argument
7449 not, so flatten both argument lists. */
7450 parmvec = expand_template_argument_pack (parmvec);
7451 argvec = expand_template_argument_pack (argvec);
7452
7453 if (flag_new_ttp)
7454 {
7455 /* In keeping with P0522R0, adjust P's template arguments
7456 to apply to A's template; then flatten it again. */
7457 tree nparmvec = coerce_ttp_args_for_tta (arg, parmvec, tf_none);
7458 nparmvec = expand_template_argument_pack (nparmvec);
7459
7460 if (unify (tparms, targs, nparmvec, argvec,
7461 UNIFY_ALLOW_NONE, explain_p))
7462 return 1;
7463
7464 /* If the P0522 adjustment eliminated a pack expansion, deduce
7465 empty packs. */
7466 if (flag_new_ttp
7467 && TREE_VEC_LENGTH (nparmvec) < TREE_VEC_LENGTH (parmvec)
7468 && unify_pack_expansion (tparms, targs, parmvec, argvec,
7469 DEDUCE_EXACT, /*sub*/true, explain_p))
7470 return 1;
7471 }
7472 else
7473 {
7474 /* Deduce arguments T, i from TT<T> or TT<i>.
7475 We check each element of PARMVEC and ARGVEC individually
7476 rather than the whole TREE_VEC since they can have
7477 different number of elements, which is allowed under N2555. */
7478
7479 int len = TREE_VEC_LENGTH (parmvec);
7480
7481 /* Check if the parameters end in a pack, making them
7482 variadic. */
7483 int parm_variadic_p = 0;
7484 if (len > 0
7485 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
7486 parm_variadic_p = 1;
7487
7488 for (int i = 0; i < len - parm_variadic_p; ++i)
7489 /* If the template argument list of P contains a pack
7490 expansion that is not the last template argument, the
7491 entire template argument list is a non-deduced
7492 context. */
7493 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
7494 return unify_success (explain_p);
7495
7496 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
7497 return unify_too_few_arguments (explain_p,
7498 TREE_VEC_LENGTH (argvec), len);
7499
7500 for (int i = 0; i < len - parm_variadic_p; ++i)
7501 if (unify (tparms, targs,
7502 TREE_VEC_ELT (parmvec, i),
7503 TREE_VEC_ELT (argvec, i),
7504 UNIFY_ALLOW_NONE, explain_p))
7505 return 1;
7506
7507 if (parm_variadic_p
7508 && unify_pack_expansion (tparms, targs,
7509 parmvec, argvec,
7510 DEDUCE_EXACT,
7511 /*subr=*/true, explain_p))
7512 return 1;
7513 }
7514
7515 return 0;
7516 }
7517
7518 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
7519 template template parameters. Both PARM_PARMS and ARG_PARMS are
7520 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
7521 or PARM_DECL.
7522
7523 Consider the example:
7524 template <class T> class A;
7525 template<template <class U> class TT> class B;
7526
7527 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
7528 the parameters to A, and OUTER_ARGS contains A. */
7529
7530 static int
7531 coerce_template_template_parms (tree parm_parms,
7532 tree arg_parms,
7533 tsubst_flags_t complain,
7534 tree in_decl,
7535 tree outer_args)
7536 {
7537 int nparms, nargs, i;
7538 tree parm, arg;
7539 int variadic_p = 0;
7540
7541 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
7542 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
7543
7544 nparms = TREE_VEC_LENGTH (parm_parms);
7545 nargs = TREE_VEC_LENGTH (arg_parms);
7546
7547 if (flag_new_ttp)
7548 {
7549 /* P0522R0: A template template-parameter P is at least as specialized as
7550 a template template-argument A if, given the following rewrite to two
7551 function templates, the function template corresponding to P is at
7552 least as specialized as the function template corresponding to A
7553 according to the partial ordering rules for function templates
7554 ([temp.func.order]). Given an invented class template X with the
7555 template parameter list of A (including default arguments):
7556
7557 * Each of the two function templates has the same template parameters,
7558 respectively, as P or A.
7559
7560 * Each function template has a single function parameter whose type is
7561 a specialization of X with template arguments corresponding to the
7562 template parameters from the respective function template where, for
7563 each template parameter PP in the template parameter list of the
7564 function template, a corresponding template argument AA is formed. If
7565 PP declares a parameter pack, then AA is the pack expansion
7566 PP... ([temp.variadic]); otherwise, AA is the id-expression PP.
7567
7568 If the rewrite produces an invalid type, then P is not at least as
7569 specialized as A. */
7570
7571 /* So coerce P's args to apply to A's parms, and then deduce between A's
7572 args and the converted args. If that succeeds, A is at least as
7573 specialized as P, so they match.*/
7574 tree pargs = template_parms_level_to_args (parm_parms);
7575 pargs = add_outermost_template_args (outer_args, pargs);
7576 ++processing_template_decl;
7577 pargs = coerce_template_parms (arg_parms, pargs, NULL_TREE, tf_none,
7578 /*require_all*/true, /*use_default*/true);
7579 --processing_template_decl;
7580 if (pargs != error_mark_node)
7581 {
7582 tree targs = make_tree_vec (nargs);
7583 tree aargs = template_parms_level_to_args (arg_parms);
7584 if (!unify (arg_parms, targs, aargs, pargs, UNIFY_ALLOW_NONE,
7585 /*explain*/false))
7586 return 1;
7587 }
7588 }
7589
7590 /* Determine whether we have a parameter pack at the end of the
7591 template template parameter's template parameter list. */
7592 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
7593 {
7594 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
7595
7596 if (error_operand_p (parm))
7597 return 0;
7598
7599 switch (TREE_CODE (parm))
7600 {
7601 case TEMPLATE_DECL:
7602 case TYPE_DECL:
7603 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
7604 variadic_p = 1;
7605 break;
7606
7607 case PARM_DECL:
7608 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
7609 variadic_p = 1;
7610 break;
7611
7612 default:
7613 gcc_unreachable ();
7614 }
7615 }
7616
7617 if (nargs != nparms
7618 && !(variadic_p && nargs >= nparms - 1))
7619 return 0;
7620
7621 /* Check all of the template parameters except the parameter pack at
7622 the end (if any). */
7623 for (i = 0; i < nparms - variadic_p; ++i)
7624 {
7625 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
7626 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
7627 continue;
7628
7629 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
7630 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
7631
7632 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
7633 outer_args))
7634 return 0;
7635
7636 }
7637
7638 if (variadic_p)
7639 {
7640 /* Check each of the template parameters in the template
7641 argument against the template parameter pack at the end of
7642 the template template parameter. */
7643 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
7644 return 0;
7645
7646 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
7647
7648 for (; i < nargs; ++i)
7649 {
7650 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
7651 continue;
7652
7653 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
7654
7655 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
7656 outer_args))
7657 return 0;
7658 }
7659 }
7660
7661 return 1;
7662 }
7663
7664 /* Verifies that the deduced template arguments (in TARGS) for the
7665 template template parameters (in TPARMS) represent valid bindings,
7666 by comparing the template parameter list of each template argument
7667 to the template parameter list of its corresponding template
7668 template parameter, in accordance with DR150. This
7669 routine can only be called after all template arguments have been
7670 deduced. It will return TRUE if all of the template template
7671 parameter bindings are okay, FALSE otherwise. */
7672 bool
7673 template_template_parm_bindings_ok_p (tree tparms, tree targs)
7674 {
7675 int i, ntparms = TREE_VEC_LENGTH (tparms);
7676 bool ret = true;
7677
7678 /* We're dealing with template parms in this process. */
7679 ++processing_template_decl;
7680
7681 targs = INNERMOST_TEMPLATE_ARGS (targs);
7682
7683 for (i = 0; i < ntparms; ++i)
7684 {
7685 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
7686 tree targ = TREE_VEC_ELT (targs, i);
7687
7688 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
7689 {
7690 tree packed_args = NULL_TREE;
7691 int idx, len = 1;
7692
7693 if (ARGUMENT_PACK_P (targ))
7694 {
7695 /* Look inside the argument pack. */
7696 packed_args = ARGUMENT_PACK_ARGS (targ);
7697 len = TREE_VEC_LENGTH (packed_args);
7698 }
7699
7700 for (idx = 0; idx < len; ++idx)
7701 {
7702 tree targ_parms = NULL_TREE;
7703
7704 if (packed_args)
7705 /* Extract the next argument from the argument
7706 pack. */
7707 targ = TREE_VEC_ELT (packed_args, idx);
7708
7709 if (PACK_EXPANSION_P (targ))
7710 /* Look at the pattern of the pack expansion. */
7711 targ = PACK_EXPANSION_PATTERN (targ);
7712
7713 /* Extract the template parameters from the template
7714 argument. */
7715 if (TREE_CODE (targ) == TEMPLATE_DECL)
7716 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
7717 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
7718 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
7719
7720 /* Verify that we can coerce the template template
7721 parameters from the template argument to the template
7722 parameter. This requires an exact match. */
7723 if (targ_parms
7724 && !coerce_template_template_parms
7725 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
7726 targ_parms,
7727 tf_none,
7728 tparm,
7729 targs))
7730 {
7731 ret = false;
7732 goto out;
7733 }
7734 }
7735 }
7736 }
7737
7738 out:
7739
7740 --processing_template_decl;
7741 return ret;
7742 }
7743
7744 /* Since type attributes aren't mangled, we need to strip them from
7745 template type arguments. */
7746
7747 static tree
7748 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
7749 {
7750 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
7751 return arg;
7752 bool removed_attributes = false;
7753 tree canon = strip_typedefs (arg, &removed_attributes);
7754 if (removed_attributes
7755 && (complain & tf_warning))
7756 warning (OPT_Wignored_attributes,
7757 "ignoring attributes on template argument %qT", arg);
7758 return canon;
7759 }
7760
7761 /* And from inside dependent non-type arguments like sizeof(Type). */
7762
7763 static tree
7764 canonicalize_expr_argument (tree arg, tsubst_flags_t complain)
7765 {
7766 if (!arg || arg == error_mark_node)
7767 return arg;
7768 bool removed_attributes = false;
7769 tree canon = strip_typedefs_expr (arg, &removed_attributes);
7770 if (removed_attributes
7771 && (complain & tf_warning))
7772 warning (OPT_Wignored_attributes,
7773 "ignoring attributes in template argument %qE", arg);
7774 return canon;
7775 }
7776
7777 // A template declaration can be substituted for a constrained
7778 // template template parameter only when the argument is more
7779 // constrained than the parameter.
7780 static bool
7781 is_compatible_template_arg (tree parm, tree arg)
7782 {
7783 tree parm_cons = get_constraints (parm);
7784
7785 /* For now, allow constrained template template arguments
7786 and unconstrained template template parameters. */
7787 if (parm_cons == NULL_TREE)
7788 return true;
7789
7790 tree arg_cons = get_constraints (arg);
7791
7792 // If the template parameter is constrained, we need to rewrite its
7793 // constraints in terms of the ARG's template parameters. This ensures
7794 // that all of the template parameter types will have the same depth.
7795 //
7796 // Note that this is only valid when coerce_template_template_parm is
7797 // true for the innermost template parameters of PARM and ARG. In other
7798 // words, because coercion is successful, this conversion will be valid.
7799 if (parm_cons)
7800 {
7801 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
7802 parm_cons = tsubst_constraint_info (parm_cons,
7803 INNERMOST_TEMPLATE_ARGS (args),
7804 tf_none, NULL_TREE);
7805 if (parm_cons == error_mark_node)
7806 return false;
7807 }
7808
7809 return subsumes (parm_cons, arg_cons);
7810 }
7811
7812 // Convert a placeholder argument into a binding to the original
7813 // parameter. The original parameter is saved as the TREE_TYPE of
7814 // ARG.
7815 static inline tree
7816 convert_wildcard_argument (tree parm, tree arg)
7817 {
7818 TREE_TYPE (arg) = parm;
7819 return arg;
7820 }
7821
7822 /* We can't fully resolve ARG given as a non-type template argument to TYPE,
7823 because one of them is dependent. But we need to represent the
7824 conversion for the benefit of cp_tree_equal. */
7825
7826 static tree
7827 maybe_convert_nontype_argument (tree type, tree arg)
7828 {
7829 /* Auto parms get no conversion. */
7830 if (type_uses_auto (type))
7831 return arg;
7832 /* We don't need or want to add this conversion now if we're going to use the
7833 argument for deduction. */
7834 if (value_dependent_expression_p (arg))
7835 return arg;
7836
7837 type = cv_unqualified (type);
7838 tree argtype = TREE_TYPE (arg);
7839 if (same_type_p (type, argtype))
7840 return arg;
7841
7842 arg = build1 (IMPLICIT_CONV_EXPR, type, arg);
7843 IMPLICIT_CONV_EXPR_NONTYPE_ARG (arg) = true;
7844 return arg;
7845 }
7846
7847 /* Convert the indicated template ARG as necessary to match the
7848 indicated template PARM. Returns the converted ARG, or
7849 error_mark_node if the conversion was unsuccessful. Error and
7850 warning messages are issued under control of COMPLAIN. This
7851 conversion is for the Ith parameter in the parameter list. ARGS is
7852 the full set of template arguments deduced so far. */
7853
7854 static tree
7855 convert_template_argument (tree parm,
7856 tree arg,
7857 tree args,
7858 tsubst_flags_t complain,
7859 int i,
7860 tree in_decl)
7861 {
7862 tree orig_arg;
7863 tree val;
7864 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7865
7866 if (parm == error_mark_node || error_operand_p (arg))
7867 return error_mark_node;
7868
7869 /* Trivially convert placeholders. */
7870 if (TREE_CODE (arg) == WILDCARD_DECL)
7871 return convert_wildcard_argument (parm, arg);
7872
7873 if (arg == any_targ_node)
7874 return arg;
7875
7876 if (TREE_CODE (arg) == TREE_LIST
7877 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7878 {
7879 /* The template argument was the name of some
7880 member function. That's usually
7881 invalid, but static members are OK. In any
7882 case, grab the underlying fields/functions
7883 and issue an error later if required. */
7884 TREE_TYPE (arg) = unknown_type_node;
7885 }
7886
7887 orig_arg = arg;
7888
7889 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7890 requires_type = (TREE_CODE (parm) == TYPE_DECL
7891 || requires_tmpl_type);
7892
7893 /* When determining whether an argument pack expansion is a template,
7894 look at the pattern. */
7895 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7896 arg = PACK_EXPANSION_PATTERN (arg);
7897
7898 /* Deal with an injected-class-name used as a template template arg. */
7899 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7900 {
7901 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7902 if (TREE_CODE (t) == TEMPLATE_DECL)
7903 {
7904 if (cxx_dialect >= cxx11)
7905 /* OK under DR 1004. */;
7906 else if (complain & tf_warning_or_error)
7907 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7908 " used as template template argument", TYPE_NAME (arg));
7909 else if (flag_pedantic_errors)
7910 t = arg;
7911
7912 arg = t;
7913 }
7914 }
7915
7916 is_tmpl_type =
7917 ((TREE_CODE (arg) == TEMPLATE_DECL
7918 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7919 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7920 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7921 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7922
7923 if (is_tmpl_type
7924 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7925 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7926 arg = TYPE_STUB_DECL (arg);
7927
7928 is_type = TYPE_P (arg) || is_tmpl_type;
7929
7930 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7931 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7932 {
7933 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7934 {
7935 if (complain & tf_error)
7936 error ("invalid use of destructor %qE as a type", orig_arg);
7937 return error_mark_node;
7938 }
7939
7940 permerror (input_location,
7941 "to refer to a type member of a template parameter, "
7942 "use %<typename %E%>", orig_arg);
7943
7944 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7945 TREE_OPERAND (arg, 1),
7946 typename_type,
7947 complain);
7948 arg = orig_arg;
7949 is_type = 1;
7950 }
7951 if (is_type != requires_type)
7952 {
7953 if (in_decl)
7954 {
7955 if (complain & tf_error)
7956 {
7957 error ("type/value mismatch at argument %d in template "
7958 "parameter list for %qD",
7959 i + 1, in_decl);
7960 if (is_type)
7961 {
7962 /* The template argument is a type, but we're expecting
7963 an expression. */
7964 inform (input_location,
7965 " expected a constant of type %qT, got %qT",
7966 TREE_TYPE (parm),
7967 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7968 /* [temp.arg]/2: "In a template-argument, an ambiguity
7969 between a type-id and an expression is resolved to a
7970 type-id, regardless of the form of the corresponding
7971 template-parameter." So give the user a clue. */
7972 if (TREE_CODE (arg) == FUNCTION_TYPE)
7973 inform (input_location, " ambiguous template argument "
7974 "for non-type template parameter is treated as "
7975 "function type");
7976 }
7977 else if (requires_tmpl_type)
7978 inform (input_location,
7979 " expected a class template, got %qE", orig_arg);
7980 else
7981 inform (input_location,
7982 " expected a type, got %qE", orig_arg);
7983 }
7984 }
7985 return error_mark_node;
7986 }
7987 if (is_tmpl_type ^ requires_tmpl_type)
7988 {
7989 if (in_decl && (complain & tf_error))
7990 {
7991 error ("type/value mismatch at argument %d in template "
7992 "parameter list for %qD",
7993 i + 1, in_decl);
7994 if (is_tmpl_type)
7995 inform (input_location,
7996 " expected a type, got %qT", DECL_NAME (arg));
7997 else
7998 inform (input_location,
7999 " expected a class template, got %qT", orig_arg);
8000 }
8001 return error_mark_node;
8002 }
8003
8004 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
8005 /* We already did the appropriate conversion when packing args. */
8006 val = orig_arg;
8007 else if (is_type)
8008 {
8009 if (requires_tmpl_type)
8010 {
8011 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
8012 /* The number of argument required is not known yet.
8013 Just accept it for now. */
8014 val = orig_arg;
8015 else
8016 {
8017 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
8018 tree argparm;
8019
8020 /* Strip alias templates that are equivalent to another
8021 template. */
8022 arg = get_underlying_template (arg);
8023 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
8024
8025 if (coerce_template_template_parms (parmparm, argparm,
8026 complain, in_decl,
8027 args))
8028 {
8029 val = arg;
8030
8031 /* TEMPLATE_TEMPLATE_PARM node is preferred over
8032 TEMPLATE_DECL. */
8033 if (val != error_mark_node)
8034 {
8035 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
8036 val = TREE_TYPE (val);
8037 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
8038 val = make_pack_expansion (val, complain);
8039 }
8040 }
8041 else
8042 {
8043 if (in_decl && (complain & tf_error))
8044 {
8045 error ("type/value mismatch at argument %d in "
8046 "template parameter list for %qD",
8047 i + 1, in_decl);
8048 inform (input_location,
8049 " expected a template of type %qD, got %qT",
8050 parm, orig_arg);
8051 }
8052
8053 val = error_mark_node;
8054 }
8055
8056 // Check that the constraints are compatible before allowing the
8057 // substitution.
8058 if (val != error_mark_node)
8059 if (!is_compatible_template_arg (parm, arg))
8060 {
8061 if (in_decl && (complain & tf_error))
8062 {
8063 error ("constraint mismatch at argument %d in "
8064 "template parameter list for %qD",
8065 i + 1, in_decl);
8066 inform (input_location, " expected %qD but got %qD",
8067 parm, arg);
8068 }
8069 val = error_mark_node;
8070 }
8071 }
8072 }
8073 else
8074 val = orig_arg;
8075 /* We only form one instance of each template specialization.
8076 Therefore, if we use a non-canonical variant (i.e., a
8077 typedef), any future messages referring to the type will use
8078 the typedef, which is confusing if those future uses do not
8079 themselves also use the typedef. */
8080 if (TYPE_P (val))
8081 val = canonicalize_type_argument (val, complain);
8082 }
8083 else
8084 {
8085 tree t = TREE_TYPE (parm);
8086
8087 if (TEMPLATE_PARM_LEVEL (get_template_parm_index (parm))
8088 > TMPL_ARGS_DEPTH (args))
8089 /* We don't have enough levels of args to do any substitution. This
8090 can happen in the context of -fnew-ttp-matching. */;
8091 else if (tree a = type_uses_auto (t))
8092 {
8093 t = do_auto_deduction (t, arg, a, complain, adc_unify, args);
8094 if (t == error_mark_node)
8095 return error_mark_node;
8096 }
8097 else
8098 t = tsubst (t, args, complain, in_decl);
8099
8100 if (invalid_nontype_parm_type_p (t, complain))
8101 return error_mark_node;
8102
8103 if (t != TREE_TYPE (parm))
8104 t = canonicalize_type_argument (t, complain);
8105
8106 if (!type_dependent_expression_p (orig_arg)
8107 && !uses_template_parms (t))
8108 /* We used to call digest_init here. However, digest_init
8109 will report errors, which we don't want when complain
8110 is zero. More importantly, digest_init will try too
8111 hard to convert things: for example, `0' should not be
8112 converted to pointer type at this point according to
8113 the standard. Accepting this is not merely an
8114 extension, since deciding whether or not these
8115 conversions can occur is part of determining which
8116 function template to call, or whether a given explicit
8117 argument specification is valid. */
8118 val = convert_nontype_argument (t, orig_arg, complain);
8119 else
8120 {
8121 val = canonicalize_expr_argument (orig_arg, complain);
8122 val = maybe_convert_nontype_argument (t, val);
8123 }
8124
8125
8126 if (val == NULL_TREE)
8127 val = error_mark_node;
8128 else if (val == error_mark_node && (complain & tf_error))
8129 error ("could not convert template argument %qE from %qT to %qT",
8130 orig_arg, TREE_TYPE (orig_arg), t);
8131
8132 if (INDIRECT_REF_P (val))
8133 {
8134 /* Reject template arguments that are references to built-in
8135 functions with no library fallbacks. */
8136 const_tree inner = TREE_OPERAND (val, 0);
8137 const_tree innertype = TREE_TYPE (inner);
8138 if (innertype
8139 && TYPE_REF_P (innertype)
8140 && TREE_CODE (TREE_TYPE (innertype)) == FUNCTION_TYPE
8141 && TREE_OPERAND_LENGTH (inner) > 0
8142 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
8143 return error_mark_node;
8144 }
8145
8146 if (TREE_CODE (val) == SCOPE_REF)
8147 {
8148 /* Strip typedefs from the SCOPE_REF. */
8149 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
8150 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
8151 complain);
8152 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
8153 QUALIFIED_NAME_IS_TEMPLATE (val));
8154 }
8155 }
8156
8157 return val;
8158 }
8159
8160 /* Coerces the remaining template arguments in INNER_ARGS (from
8161 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
8162 Returns the coerced argument pack. PARM_IDX is the position of this
8163 parameter in the template parameter list. ARGS is the original
8164 template argument list. */
8165 static tree
8166 coerce_template_parameter_pack (tree parms,
8167 int parm_idx,
8168 tree args,
8169 tree inner_args,
8170 int arg_idx,
8171 tree new_args,
8172 int* lost,
8173 tree in_decl,
8174 tsubst_flags_t complain)
8175 {
8176 tree parm = TREE_VEC_ELT (parms, parm_idx);
8177 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
8178 tree packed_args;
8179 tree argument_pack;
8180 tree packed_parms = NULL_TREE;
8181
8182 if (arg_idx > nargs)
8183 arg_idx = nargs;
8184
8185 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
8186 {
8187 /* When the template parameter is a non-type template parameter pack
8188 or template template parameter pack whose type or template
8189 parameters use parameter packs, we know exactly how many arguments
8190 we are looking for. Build a vector of the instantiated decls for
8191 these template parameters in PACKED_PARMS. */
8192 /* We can't use make_pack_expansion here because it would interpret a
8193 _DECL as a use rather than a declaration. */
8194 tree decl = TREE_VALUE (parm);
8195 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
8196 SET_PACK_EXPANSION_PATTERN (exp, decl);
8197 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
8198 SET_TYPE_STRUCTURAL_EQUALITY (exp);
8199
8200 TREE_VEC_LENGTH (args)--;
8201 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
8202 TREE_VEC_LENGTH (args)++;
8203
8204 if (packed_parms == error_mark_node)
8205 return error_mark_node;
8206
8207 /* If we're doing a partial instantiation of a member template,
8208 verify that all of the types used for the non-type
8209 template parameter pack are, in fact, valid for non-type
8210 template parameters. */
8211 if (arg_idx < nargs
8212 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
8213 {
8214 int j, len = TREE_VEC_LENGTH (packed_parms);
8215 for (j = 0; j < len; ++j)
8216 {
8217 tree t = TREE_VEC_ELT (packed_parms, j);
8218 if (TREE_CODE (t) == PARM_DECL
8219 && invalid_nontype_parm_type_p (TREE_TYPE (t), complain))
8220 return error_mark_node;
8221 }
8222 /* We don't know how many args we have yet, just
8223 use the unconverted ones for now. */
8224 return NULL_TREE;
8225 }
8226
8227 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
8228 }
8229 /* Check if we have a placeholder pack, which indicates we're
8230 in the context of a introduction list. In that case we want
8231 to match this pack to the single placeholder. */
8232 else if (arg_idx < nargs
8233 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
8234 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
8235 {
8236 nargs = arg_idx + 1;
8237 packed_args = make_tree_vec (1);
8238 }
8239 else
8240 packed_args = make_tree_vec (nargs - arg_idx);
8241
8242 /* Convert the remaining arguments, which will be a part of the
8243 parameter pack "parm". */
8244 int first_pack_arg = arg_idx;
8245 for (; arg_idx < nargs; ++arg_idx)
8246 {
8247 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
8248 tree actual_parm = TREE_VALUE (parm);
8249 int pack_idx = arg_idx - first_pack_arg;
8250
8251 if (packed_parms)
8252 {
8253 /* Once we've packed as many args as we have types, stop. */
8254 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
8255 break;
8256 else if (PACK_EXPANSION_P (arg))
8257 /* We don't know how many args we have yet, just
8258 use the unconverted ones for now. */
8259 return NULL_TREE;
8260 else
8261 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
8262 }
8263
8264 if (arg == error_mark_node)
8265 {
8266 if (complain & tf_error)
8267 error ("template argument %d is invalid", arg_idx + 1);
8268 }
8269 else
8270 arg = convert_template_argument (actual_parm,
8271 arg, new_args, complain, parm_idx,
8272 in_decl);
8273 if (arg == error_mark_node)
8274 (*lost)++;
8275 TREE_VEC_ELT (packed_args, pack_idx) = arg;
8276 }
8277
8278 if (arg_idx - first_pack_arg < TREE_VEC_LENGTH (packed_args)
8279 && TREE_VEC_LENGTH (packed_args) > 0)
8280 {
8281 if (complain & tf_error)
8282 error ("wrong number of template arguments (%d, should be %d)",
8283 arg_idx - first_pack_arg, TREE_VEC_LENGTH (packed_args));
8284 return error_mark_node;
8285 }
8286
8287 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
8288 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
8289 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
8290 else
8291 {
8292 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
8293 TREE_CONSTANT (argument_pack) = 1;
8294 }
8295
8296 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
8297 if (CHECKING_P)
8298 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
8299 TREE_VEC_LENGTH (packed_args));
8300 return argument_pack;
8301 }
8302
8303 /* Returns the number of pack expansions in the template argument vector
8304 ARGS. */
8305
8306 static int
8307 pack_expansion_args_count (tree args)
8308 {
8309 int i;
8310 int count = 0;
8311 if (args)
8312 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
8313 {
8314 tree elt = TREE_VEC_ELT (args, i);
8315 if (elt && PACK_EXPANSION_P (elt))
8316 ++count;
8317 }
8318 return count;
8319 }
8320
8321 /* Convert all template arguments to their appropriate types, and
8322 return a vector containing the innermost resulting template
8323 arguments. If any error occurs, return error_mark_node. Error and
8324 warning messages are issued under control of COMPLAIN.
8325
8326 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
8327 for arguments not specified in ARGS. Otherwise, if
8328 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
8329 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
8330 USE_DEFAULT_ARGS is false, then all arguments must be specified in
8331 ARGS. */
8332
8333 static tree
8334 coerce_template_parms (tree parms,
8335 tree args,
8336 tree in_decl,
8337 tsubst_flags_t complain,
8338 bool require_all_args,
8339 bool use_default_args)
8340 {
8341 int nparms, nargs, parm_idx, arg_idx, lost = 0;
8342 tree orig_inner_args;
8343 tree inner_args;
8344 tree new_args;
8345 tree new_inner_args;
8346
8347 /* When used as a boolean value, indicates whether this is a
8348 variadic template parameter list. Since it's an int, we can also
8349 subtract it from nparms to get the number of non-variadic
8350 parameters. */
8351 int variadic_p = 0;
8352 int variadic_args_p = 0;
8353 int post_variadic_parms = 0;
8354
8355 /* Adjustment to nparms for fixed parameter packs. */
8356 int fixed_pack_adjust = 0;
8357 int fixed_packs = 0;
8358 int missing = 0;
8359
8360 /* Likewise for parameters with default arguments. */
8361 int default_p = 0;
8362
8363 if (args == error_mark_node)
8364 return error_mark_node;
8365
8366 nparms = TREE_VEC_LENGTH (parms);
8367
8368 /* Determine if there are any parameter packs or default arguments. */
8369 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
8370 {
8371 tree parm = TREE_VEC_ELT (parms, parm_idx);
8372 if (variadic_p)
8373 ++post_variadic_parms;
8374 if (template_parameter_pack_p (TREE_VALUE (parm)))
8375 ++variadic_p;
8376 if (TREE_PURPOSE (parm))
8377 ++default_p;
8378 }
8379
8380 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
8381 /* If there are no parameters that follow a parameter pack, we need to
8382 expand any argument packs so that we can deduce a parameter pack from
8383 some non-packed args followed by an argument pack, as in variadic85.C.
8384 If there are such parameters, we need to leave argument packs intact
8385 so the arguments are assigned properly. This can happen when dealing
8386 with a nested class inside a partial specialization of a class
8387 template, as in variadic92.C, or when deducing a template parameter pack
8388 from a sub-declarator, as in variadic114.C. */
8389 if (!post_variadic_parms)
8390 inner_args = expand_template_argument_pack (inner_args);
8391
8392 /* Count any pack expansion args. */
8393 variadic_args_p = pack_expansion_args_count (inner_args);
8394
8395 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
8396 if ((nargs - variadic_args_p > nparms && !variadic_p)
8397 || (nargs < nparms - variadic_p
8398 && require_all_args
8399 && !variadic_args_p
8400 && (!use_default_args
8401 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
8402 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
8403 {
8404 bad_nargs:
8405 if (complain & tf_error)
8406 {
8407 if (variadic_p || default_p)
8408 {
8409 nparms -= variadic_p + default_p;
8410 error ("wrong number of template arguments "
8411 "(%d, should be at least %d)", nargs, nparms);
8412 }
8413 else
8414 error ("wrong number of template arguments "
8415 "(%d, should be %d)", nargs, nparms);
8416
8417 if (in_decl)
8418 inform (DECL_SOURCE_LOCATION (in_decl),
8419 "provided for %qD", in_decl);
8420 }
8421
8422 return error_mark_node;
8423 }
8424 /* We can't pass a pack expansion to a non-pack parameter of an alias
8425 template (DR 1430). */
8426 else if (in_decl
8427 && (DECL_ALIAS_TEMPLATE_P (in_decl)
8428 || concept_template_p (in_decl))
8429 && variadic_args_p
8430 && nargs - variadic_args_p < nparms - variadic_p)
8431 {
8432 if (complain & tf_error)
8433 {
8434 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
8435 {
8436 tree arg = TREE_VEC_ELT (inner_args, i);
8437 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
8438
8439 if (PACK_EXPANSION_P (arg)
8440 && !template_parameter_pack_p (parm))
8441 {
8442 if (DECL_ALIAS_TEMPLATE_P (in_decl))
8443 error_at (location_of (arg),
8444 "pack expansion argument for non-pack parameter "
8445 "%qD of alias template %qD", parm, in_decl);
8446 else
8447 error_at (location_of (arg),
8448 "pack expansion argument for non-pack parameter "
8449 "%qD of concept %qD", parm, in_decl);
8450 inform (DECL_SOURCE_LOCATION (parm), "declared here");
8451 goto found;
8452 }
8453 }
8454 gcc_unreachable ();
8455 found:;
8456 }
8457 return error_mark_node;
8458 }
8459
8460 /* We need to evaluate the template arguments, even though this
8461 template-id may be nested within a "sizeof". */
8462 cp_evaluated ev;
8463
8464 new_inner_args = make_tree_vec (nparms);
8465 new_args = add_outermost_template_args (args, new_inner_args);
8466 int pack_adjust = 0;
8467 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
8468 {
8469 tree arg;
8470 tree parm;
8471
8472 /* Get the Ith template parameter. */
8473 parm = TREE_VEC_ELT (parms, parm_idx);
8474
8475 if (parm == error_mark_node)
8476 {
8477 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
8478 continue;
8479 }
8480
8481 /* Calculate the next argument. */
8482 if (arg_idx < nargs)
8483 arg = TREE_VEC_ELT (inner_args, arg_idx);
8484 else
8485 arg = NULL_TREE;
8486
8487 if (template_parameter_pack_p (TREE_VALUE (parm))
8488 && (arg || require_all_args || !(complain & tf_partial))
8489 && !(arg && ARGUMENT_PACK_P (arg)))
8490 {
8491 /* Some arguments will be placed in the
8492 template parameter pack PARM. */
8493 arg = coerce_template_parameter_pack (parms, parm_idx, args,
8494 inner_args, arg_idx,
8495 new_args, &lost,
8496 in_decl, complain);
8497
8498 if (arg == NULL_TREE)
8499 {
8500 /* We don't know how many args we have yet, just use the
8501 unconverted (and still packed) ones for now. */
8502 new_inner_args = orig_inner_args;
8503 arg_idx = nargs;
8504 break;
8505 }
8506
8507 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
8508
8509 /* Store this argument. */
8510 if (arg == error_mark_node)
8511 {
8512 lost++;
8513 /* We are done with all of the arguments. */
8514 arg_idx = nargs;
8515 break;
8516 }
8517 else
8518 {
8519 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
8520 arg_idx += pack_adjust;
8521 if (fixed_parameter_pack_p (TREE_VALUE (parm)))
8522 {
8523 ++fixed_packs;
8524 fixed_pack_adjust += pack_adjust;
8525 }
8526 }
8527
8528 continue;
8529 }
8530 else if (arg)
8531 {
8532 if (PACK_EXPANSION_P (arg))
8533 {
8534 /* "If every valid specialization of a variadic template
8535 requires an empty template parameter pack, the template is
8536 ill-formed, no diagnostic required." So check that the
8537 pattern works with this parameter. */
8538 tree pattern = PACK_EXPANSION_PATTERN (arg);
8539 tree conv = convert_template_argument (TREE_VALUE (parm),
8540 pattern, new_args,
8541 complain, parm_idx,
8542 in_decl);
8543 if (conv == error_mark_node)
8544 {
8545 if (complain & tf_error)
8546 inform (input_location, "so any instantiation with a "
8547 "non-empty parameter pack would be ill-formed");
8548 ++lost;
8549 }
8550 else if (TYPE_P (conv) && !TYPE_P (pattern))
8551 /* Recover from missing typename. */
8552 TREE_VEC_ELT (inner_args, arg_idx)
8553 = make_pack_expansion (conv, complain);
8554
8555 /* We don't know how many args we have yet, just
8556 use the unconverted ones for now. */
8557 new_inner_args = inner_args;
8558 arg_idx = nargs;
8559 break;
8560 }
8561 }
8562 else if (require_all_args)
8563 {
8564 /* There must be a default arg in this case. */
8565 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
8566 complain, in_decl);
8567 /* The position of the first default template argument,
8568 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
8569 Record that. */
8570 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
8571 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
8572 arg_idx - pack_adjust);
8573 }
8574 else
8575 break;
8576
8577 if (arg == error_mark_node)
8578 {
8579 if (complain & tf_error)
8580 error ("template argument %d is invalid", arg_idx + 1);
8581 }
8582 else if (!arg)
8583 {
8584 /* This can occur if there was an error in the template
8585 parameter list itself (which we would already have
8586 reported) that we are trying to recover from, e.g., a class
8587 template with a parameter list such as
8588 template<typename..., typename> (cpp0x/variadic150.C). */
8589 ++lost;
8590
8591 /* This can also happen with a fixed parameter pack (71834). */
8592 if (arg_idx >= nargs)
8593 ++missing;
8594 }
8595 else
8596 arg = convert_template_argument (TREE_VALUE (parm),
8597 arg, new_args, complain,
8598 parm_idx, in_decl);
8599
8600 if (arg == error_mark_node)
8601 lost++;
8602 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
8603 }
8604
8605 if (missing || arg_idx < nargs - variadic_args_p)
8606 {
8607 /* If we had fixed parameter packs, we didn't know how many arguments we
8608 actually needed earlier; now we do. */
8609 nparms += fixed_pack_adjust;
8610 variadic_p -= fixed_packs;
8611 goto bad_nargs;
8612 }
8613
8614 if (arg_idx < nargs)
8615 {
8616 /* We had some pack expansion arguments that will only work if the packs
8617 are empty, but wait until instantiation time to complain.
8618 See variadic-ttp3.C. */
8619 int len = nparms + (nargs - arg_idx);
8620 tree args = make_tree_vec (len);
8621 int i = 0;
8622 for (; i < nparms; ++i)
8623 TREE_VEC_ELT (args, i) = TREE_VEC_ELT (new_inner_args, i);
8624 for (; i < len; ++i, ++arg_idx)
8625 TREE_VEC_ELT (args, i) = TREE_VEC_ELT (inner_args,
8626 arg_idx - pack_adjust);
8627 new_inner_args = args;
8628 }
8629
8630 if (lost)
8631 {
8632 gcc_assert (!(complain & tf_error) || seen_error ());
8633 return error_mark_node;
8634 }
8635
8636 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
8637 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
8638 TREE_VEC_LENGTH (new_inner_args));
8639
8640 return new_inner_args;
8641 }
8642
8643 /* Convert all template arguments to their appropriate types, and
8644 return a vector containing the innermost resulting template
8645 arguments. If any error occurs, return error_mark_node. Error and
8646 warning messages are not issued.
8647
8648 Note that no function argument deduction is performed, and default
8649 arguments are used to fill in unspecified arguments. */
8650 tree
8651 coerce_template_parms (tree parms, tree args, tree in_decl)
8652 {
8653 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
8654 }
8655
8656 /* Convert all template arguments to their appropriate type, and
8657 instantiate default arguments as needed. This returns a vector
8658 containing the innermost resulting template arguments, or
8659 error_mark_node if unsuccessful. */
8660 tree
8661 coerce_template_parms (tree parms, tree args, tree in_decl,
8662 tsubst_flags_t complain)
8663 {
8664 return coerce_template_parms (parms, args, in_decl, complain, true, true);
8665 }
8666
8667 /* Like coerce_template_parms. If PARMS represents all template
8668 parameters levels, this function returns a vector of vectors
8669 representing all the resulting argument levels. Note that in this
8670 case, only the innermost arguments are coerced because the
8671 outermost ones are supposed to have been coerced already.
8672
8673 Otherwise, if PARMS represents only (the innermost) vector of
8674 parameters, this function returns a vector containing just the
8675 innermost resulting arguments. */
8676
8677 static tree
8678 coerce_innermost_template_parms (tree parms,
8679 tree args,
8680 tree in_decl,
8681 tsubst_flags_t complain,
8682 bool require_all_args,
8683 bool use_default_args)
8684 {
8685 int parms_depth = TMPL_PARMS_DEPTH (parms);
8686 int args_depth = TMPL_ARGS_DEPTH (args);
8687 tree coerced_args;
8688
8689 if (parms_depth > 1)
8690 {
8691 coerced_args = make_tree_vec (parms_depth);
8692 tree level;
8693 int cur_depth;
8694
8695 for (level = parms, cur_depth = parms_depth;
8696 parms_depth > 0 && level != NULL_TREE;
8697 level = TREE_CHAIN (level), --cur_depth)
8698 {
8699 tree l;
8700 if (cur_depth == args_depth)
8701 l = coerce_template_parms (TREE_VALUE (level),
8702 args, in_decl, complain,
8703 require_all_args,
8704 use_default_args);
8705 else
8706 l = TMPL_ARGS_LEVEL (args, cur_depth);
8707
8708 if (l == error_mark_node)
8709 return error_mark_node;
8710
8711 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
8712 }
8713 }
8714 else
8715 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
8716 args, in_decl, complain,
8717 require_all_args,
8718 use_default_args);
8719 return coerced_args;
8720 }
8721
8722 /* Returns 1 if template args OT and NT are equivalent. */
8723
8724 int
8725 template_args_equal (tree ot, tree nt, bool partial_order /* = false */)
8726 {
8727 if (nt == ot)
8728 return 1;
8729 if (nt == NULL_TREE || ot == NULL_TREE)
8730 return false;
8731 if (nt == any_targ_node || ot == any_targ_node)
8732 return true;
8733
8734 if (TREE_CODE (nt) == TREE_VEC)
8735 /* For member templates */
8736 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
8737 else if (PACK_EXPANSION_P (ot))
8738 return (PACK_EXPANSION_P (nt)
8739 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
8740 PACK_EXPANSION_PATTERN (nt))
8741 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
8742 PACK_EXPANSION_EXTRA_ARGS (nt)));
8743 else if (ARGUMENT_PACK_P (ot))
8744 {
8745 int i, len;
8746 tree opack, npack;
8747
8748 if (!ARGUMENT_PACK_P (nt))
8749 return 0;
8750
8751 opack = ARGUMENT_PACK_ARGS (ot);
8752 npack = ARGUMENT_PACK_ARGS (nt);
8753 len = TREE_VEC_LENGTH (opack);
8754 if (TREE_VEC_LENGTH (npack) != len)
8755 return 0;
8756 for (i = 0; i < len; ++i)
8757 if (!template_args_equal (TREE_VEC_ELT (opack, i),
8758 TREE_VEC_ELT (npack, i)))
8759 return 0;
8760 return 1;
8761 }
8762 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
8763 gcc_unreachable ();
8764 else if (TYPE_P (nt))
8765 {
8766 if (!TYPE_P (ot))
8767 return false;
8768 /* Don't treat an alias template specialization with dependent
8769 arguments as equivalent to its underlying type when used as a
8770 template argument; we need them to be distinct so that we
8771 substitute into the specialization arguments at instantiation
8772 time. And aliases can't be equivalent without being ==, so
8773 we don't need to look any deeper.
8774
8775 During partial ordering, however, we need to treat them normally so
8776 that we can order uses of the same alias with different
8777 cv-qualification (79960). */
8778 if (!partial_order
8779 && (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot)))
8780 return false;
8781 else
8782 return same_type_p (ot, nt);
8783 }
8784 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
8785 return 0;
8786 else
8787 {
8788 /* Try to treat a template non-type argument that has been converted
8789 to the parameter type as equivalent to one that hasn't yet. */
8790 for (enum tree_code code1 = TREE_CODE (ot);
8791 CONVERT_EXPR_CODE_P (code1)
8792 || code1 == NON_LVALUE_EXPR;
8793 code1 = TREE_CODE (ot))
8794 ot = TREE_OPERAND (ot, 0);
8795 for (enum tree_code code2 = TREE_CODE (nt);
8796 CONVERT_EXPR_CODE_P (code2)
8797 || code2 == NON_LVALUE_EXPR;
8798 code2 = TREE_CODE (nt))
8799 nt = TREE_OPERAND (nt, 0);
8800
8801 return cp_tree_equal (ot, nt);
8802 }
8803 }
8804
8805 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
8806 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
8807 NEWARG_PTR with the offending arguments if they are non-NULL. */
8808
8809 int
8810 comp_template_args (tree oldargs, tree newargs,
8811 tree *oldarg_ptr, tree *newarg_ptr,
8812 bool partial_order)
8813 {
8814 int i;
8815
8816 if (oldargs == newargs)
8817 return 1;
8818
8819 if (!oldargs || !newargs)
8820 return 0;
8821
8822 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
8823 return 0;
8824
8825 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
8826 {
8827 tree nt = TREE_VEC_ELT (newargs, i);
8828 tree ot = TREE_VEC_ELT (oldargs, i);
8829
8830 if (! template_args_equal (ot, nt, partial_order))
8831 {
8832 if (oldarg_ptr != NULL)
8833 *oldarg_ptr = ot;
8834 if (newarg_ptr != NULL)
8835 *newarg_ptr = nt;
8836 return 0;
8837 }
8838 }
8839 return 1;
8840 }
8841
8842 inline bool
8843 comp_template_args_porder (tree oargs, tree nargs)
8844 {
8845 return comp_template_args (oargs, nargs, NULL, NULL, true);
8846 }
8847
8848 /* Implement a freelist interface for objects of type T.
8849
8850 Head is a separate object, rather than a regular member, so that we
8851 can define it as a GTY deletable pointer, which is highly
8852 desirable. A data member could be declared that way, but then the
8853 containing object would implicitly get GTY((user)), which would
8854 prevent us from instantiating freelists as global objects.
8855 Although this way we can create freelist global objects, they're
8856 such thin wrappers that instantiating temporaries at every use
8857 loses nothing and saves permanent storage for the freelist object.
8858
8859 Member functions next, anew, poison and reinit have default
8860 implementations that work for most of the types we're interested
8861 in, but if they don't work for some type, they should be explicitly
8862 specialized. See the comments before them for requirements, and
8863 the example specializations for the tree_list_freelist. */
8864 template <typename T>
8865 class freelist
8866 {
8867 /* Return the next object in a chain. We could just do type
8868 punning, but if we access the object with its underlying type, we
8869 avoid strict-aliasing trouble. This needs only work between
8870 poison and reinit. */
8871 static T *&next (T *obj) { return obj->next; }
8872
8873 /* Return a newly allocated, uninitialized or minimally-initialized
8874 object of type T. Any initialization performed by anew should
8875 either remain across the life of the object and the execution of
8876 poison, or be redone by reinit. */
8877 static T *anew () { return ggc_alloc<T> (); }
8878
8879 /* Optionally scribble all over the bits holding the object, so that
8880 they become (mostly?) uninitialized memory. This is called while
8881 preparing to make the object part of the free list. */
8882 static void poison (T *obj) {
8883 T *p ATTRIBUTE_UNUSED = obj;
8884 T **q ATTRIBUTE_UNUSED = &next (obj);
8885
8886 #ifdef ENABLE_GC_CHECKING
8887 /* Poison the data, to indicate the data is garbage. */
8888 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (p, sizeof (*p)));
8889 memset (p, 0xa5, sizeof (*p));
8890 #endif
8891 /* Let valgrind know the object is free. */
8892 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_NOACCESS (p, sizeof (*p)));
8893
8894 /* Let valgrind know the next portion of the object is available,
8895 but uninitialized. */
8896 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (q, sizeof (*q)));
8897 }
8898
8899 /* Bring an object that underwent at least one lifecycle after anew
8900 and before the most recent free and poison, back to a usable
8901 state, reinitializing whatever is needed for it to be
8902 functionally equivalent to an object just allocated and returned
8903 by anew. This may poison or clear the next field, used by
8904 freelist housekeeping after poison was called. */
8905 static void reinit (T *obj) {
8906 T **q ATTRIBUTE_UNUSED = &next (obj);
8907
8908 #ifdef ENABLE_GC_CHECKING
8909 memset (q, 0xa5, sizeof (*q));
8910 #endif
8911 /* Let valgrind know the entire object is available, but
8912 uninitialized. */
8913 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (obj, sizeof (*obj)));
8914 }
8915
8916 /* Reference a GTY-deletable pointer that points to the first object
8917 in the free list proper. */
8918 T *&head;
8919 public:
8920 /* Construct a freelist object chaining objects off of HEAD. */
8921 freelist (T *&head) : head(head) {}
8922
8923 /* Add OBJ to the free object list. The former head becomes OBJ's
8924 successor. */
8925 void free (T *obj)
8926 {
8927 poison (obj);
8928 next (obj) = head;
8929 head = obj;
8930 }
8931
8932 /* Take an object from the free list, if one is available, or
8933 allocate a new one. Objects taken from the free list should be
8934 regarded as filled with garbage, except for bits that are
8935 configured to be preserved across free and alloc. */
8936 T *alloc ()
8937 {
8938 if (head)
8939 {
8940 T *obj = head;
8941 head = next (head);
8942 reinit (obj);
8943 return obj;
8944 }
8945 else
8946 return anew ();
8947 }
8948 };
8949
8950 /* Explicitly specialize the interfaces for freelist<tree_node>: we
8951 want to allocate a TREE_LIST using the usual interface, and ensure
8952 TREE_CHAIN remains functional. Alas, we have to duplicate a bit of
8953 build_tree_list logic in reinit, so this could go out of sync. */
8954 template <>
8955 inline tree &
8956 freelist<tree_node>::next (tree obj)
8957 {
8958 return TREE_CHAIN (obj);
8959 }
8960 template <>
8961 inline tree
8962 freelist<tree_node>::anew ()
8963 {
8964 return build_tree_list (NULL, NULL);
8965 }
8966 template <>
8967 inline void
8968 freelist<tree_node>::poison (tree obj ATTRIBUTE_UNUSED)
8969 {
8970 int size ATTRIBUTE_UNUSED = sizeof (tree_list);
8971 tree p ATTRIBUTE_UNUSED = obj;
8972 tree_base *b ATTRIBUTE_UNUSED = &obj->base;
8973 tree *q ATTRIBUTE_UNUSED = &next (obj);
8974
8975 #ifdef ENABLE_GC_CHECKING
8976 gcc_checking_assert (TREE_CODE (obj) == TREE_LIST);
8977
8978 /* Poison the data, to indicate the data is garbage. */
8979 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (p, size));
8980 memset (p, 0xa5, size);
8981 #endif
8982 /* Let valgrind know the object is free. */
8983 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_NOACCESS (p, size));
8984 /* But we still want to use the TREE_CODE and TREE_CHAIN parts. */
8985 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_DEFINED (b, sizeof (*b)));
8986 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (q, sizeof (*q)));
8987
8988 #ifdef ENABLE_GC_CHECKING
8989 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (b, sizeof (*b)));
8990 /* Keep TREE_CHAIN functional. */
8991 TREE_SET_CODE (obj, TREE_LIST);
8992 #else
8993 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_DEFINED (b, sizeof (*b)));
8994 #endif
8995 }
8996 template <>
8997 inline void
8998 freelist<tree_node>::reinit (tree obj ATTRIBUTE_UNUSED)
8999 {
9000 tree_base *b ATTRIBUTE_UNUSED = &obj->base;
9001
9002 #ifdef ENABLE_GC_CHECKING
9003 gcc_checking_assert (TREE_CODE (obj) == TREE_LIST);
9004 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (obj, sizeof (tree_list)));
9005 memset (obj, 0, sizeof (tree_list));
9006 #endif
9007
9008 /* Let valgrind know the entire object is available, but
9009 uninitialized. */
9010 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (obj, sizeof (tree_list)));
9011
9012 #ifdef ENABLE_GC_CHECKING
9013 TREE_SET_CODE (obj, TREE_LIST);
9014 #else
9015 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_DEFINED (b, sizeof (*b)));
9016 #endif
9017 }
9018
9019 /* Point to the first object in the TREE_LIST freelist. */
9020 static GTY((deletable)) tree tree_list_freelist_head;
9021 /* Return the/an actual TREE_LIST freelist. */
9022 static inline freelist<tree_node>
9023 tree_list_freelist ()
9024 {
9025 return tree_list_freelist_head;
9026 }
9027
9028 /* Point to the first object in the tinst_level freelist. */
9029 static GTY((deletable)) tinst_level *tinst_level_freelist_head;
9030 /* Return the/an actual tinst_level freelist. */
9031 static inline freelist<tinst_level>
9032 tinst_level_freelist ()
9033 {
9034 return tinst_level_freelist_head;
9035 }
9036
9037 /* Point to the first object in the pending_template freelist. */
9038 static GTY((deletable)) pending_template *pending_template_freelist_head;
9039 /* Return the/an actual pending_template freelist. */
9040 static inline freelist<pending_template>
9041 pending_template_freelist ()
9042 {
9043 return pending_template_freelist_head;
9044 }
9045
9046 /* Build the TREE_LIST object out of a split list, store it
9047 permanently, and return it. */
9048 tree
9049 tinst_level::to_list ()
9050 {
9051 gcc_assert (split_list_p ());
9052 tree ret = tree_list_freelist ().alloc ();
9053 TREE_PURPOSE (ret) = tldcl;
9054 TREE_VALUE (ret) = targs;
9055 tldcl = ret;
9056 targs = NULL;
9057 gcc_assert (tree_list_p ());
9058 return ret;
9059 }
9060
9061 const unsigned short tinst_level::refcount_infinity;
9062
9063 /* Increment OBJ's refcount unless it is already infinite. */
9064 static tinst_level *
9065 inc_refcount_use (tinst_level *obj)
9066 {
9067 if (obj && obj->refcount != tinst_level::refcount_infinity)
9068 ++obj->refcount;
9069 return obj;
9070 }
9071
9072 /* Release storage for OBJ and node, if it's a TREE_LIST. */
9073 void
9074 tinst_level::free (tinst_level *obj)
9075 {
9076 if (obj->tree_list_p ())
9077 tree_list_freelist ().free (obj->get_node ());
9078 tinst_level_freelist ().free (obj);
9079 }
9080
9081 /* Decrement OBJ's refcount if not infinite. If it reaches zero, release
9082 OBJ's DECL and OBJ, and start over with the tinst_level object that
9083 used to be referenced by OBJ's NEXT. */
9084 static void
9085 dec_refcount_use (tinst_level *obj)
9086 {
9087 while (obj
9088 && obj->refcount != tinst_level::refcount_infinity
9089 && !--obj->refcount)
9090 {
9091 tinst_level *next = obj->next;
9092 tinst_level::free (obj);
9093 obj = next;
9094 }
9095 }
9096
9097 /* Modify PTR so that it points to OBJ, adjusting the refcounts of OBJ
9098 and of the former PTR. Omitting the second argument is equivalent
9099 to passing (T*)NULL; this is allowed because passing the
9100 zero-valued integral constant NULL confuses type deduction and/or
9101 overload resolution. */
9102 template <typename T>
9103 static void
9104 set_refcount_ptr (T *& ptr, T *obj = NULL)
9105 {
9106 T *save = ptr;
9107 ptr = inc_refcount_use (obj);
9108 dec_refcount_use (save);
9109 }
9110
9111 static void
9112 add_pending_template (tree d)
9113 {
9114 tree ti = (TYPE_P (d)
9115 ? CLASSTYPE_TEMPLATE_INFO (d)
9116 : DECL_TEMPLATE_INFO (d));
9117 struct pending_template *pt;
9118 int level;
9119
9120 if (TI_PENDING_TEMPLATE_FLAG (ti))
9121 return;
9122
9123 /* We are called both from instantiate_decl, where we've already had a
9124 tinst_level pushed, and instantiate_template, where we haven't.
9125 Compensate. */
9126 gcc_assert (TREE_CODE (d) != TREE_LIST);
9127 level = !current_tinst_level
9128 || current_tinst_level->maybe_get_node () != d;
9129
9130 if (level)
9131 push_tinst_level (d);
9132
9133 pt = pending_template_freelist ().alloc ();
9134 pt->next = NULL;
9135 pt->tinst = NULL;
9136 set_refcount_ptr (pt->tinst, current_tinst_level);
9137 if (last_pending_template)
9138 last_pending_template->next = pt;
9139 else
9140 pending_templates = pt;
9141
9142 last_pending_template = pt;
9143
9144 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
9145
9146 if (level)
9147 pop_tinst_level ();
9148 }
9149
9150
9151 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
9152 ARGLIST. Valid choices for FNS are given in the cp-tree.def
9153 documentation for TEMPLATE_ID_EXPR. */
9154
9155 tree
9156 lookup_template_function (tree fns, tree arglist)
9157 {
9158 if (fns == error_mark_node || arglist == error_mark_node)
9159 return error_mark_node;
9160
9161 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
9162
9163 if (!is_overloaded_fn (fns) && !identifier_p (fns))
9164 {
9165 error ("%q#D is not a function template", fns);
9166 return error_mark_node;
9167 }
9168
9169 if (BASELINK_P (fns))
9170 {
9171 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
9172 unknown_type_node,
9173 BASELINK_FUNCTIONS (fns),
9174 arglist);
9175 return fns;
9176 }
9177
9178 return build2 (TEMPLATE_ID_EXPR, unknown_type_node, fns, arglist);
9179 }
9180
9181 /* Within the scope of a template class S<T>, the name S gets bound
9182 (in build_self_reference) to a TYPE_DECL for the class, not a
9183 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
9184 or one of its enclosing classes, and that type is a template,
9185 return the associated TEMPLATE_DECL. Otherwise, the original
9186 DECL is returned.
9187
9188 Also handle the case when DECL is a TREE_LIST of ambiguous
9189 injected-class-names from different bases. */
9190
9191 tree
9192 maybe_get_template_decl_from_type_decl (tree decl)
9193 {
9194 if (decl == NULL_TREE)
9195 return decl;
9196
9197 /* DR 176: A lookup that finds an injected-class-name (10.2
9198 [class.member.lookup]) can result in an ambiguity in certain cases
9199 (for example, if it is found in more than one base class). If all of
9200 the injected-class-names that are found refer to specializations of
9201 the same class template, and if the name is followed by a
9202 template-argument-list, the reference refers to the class template
9203 itself and not a specialization thereof, and is not ambiguous. */
9204 if (TREE_CODE (decl) == TREE_LIST)
9205 {
9206 tree t, tmpl = NULL_TREE;
9207 for (t = decl; t; t = TREE_CHAIN (t))
9208 {
9209 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
9210 if (!tmpl)
9211 tmpl = elt;
9212 else if (tmpl != elt)
9213 break;
9214 }
9215 if (tmpl && t == NULL_TREE)
9216 return tmpl;
9217 else
9218 return decl;
9219 }
9220
9221 return (decl != NULL_TREE
9222 && DECL_SELF_REFERENCE_P (decl)
9223 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
9224 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
9225 }
9226
9227 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
9228 parameters, find the desired type.
9229
9230 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
9231
9232 IN_DECL, if non-NULL, is the template declaration we are trying to
9233 instantiate.
9234
9235 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
9236 the class we are looking up.
9237
9238 Issue error and warning messages under control of COMPLAIN.
9239
9240 If the template class is really a local class in a template
9241 function, then the FUNCTION_CONTEXT is the function in which it is
9242 being instantiated.
9243
9244 ??? Note that this function is currently called *twice* for each
9245 template-id: the first time from the parser, while creating the
9246 incomplete type (finish_template_type), and the second type during the
9247 real instantiation (instantiate_template_class). This is surely something
9248 that we want to avoid. It also causes some problems with argument
9249 coercion (see convert_nontype_argument for more information on this). */
9250
9251 static tree
9252 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
9253 int entering_scope, tsubst_flags_t complain)
9254 {
9255 tree templ = NULL_TREE, parmlist;
9256 tree t;
9257 spec_entry **slot;
9258 spec_entry *entry;
9259 spec_entry elt;
9260 hashval_t hash;
9261
9262 if (identifier_p (d1))
9263 {
9264 tree value = innermost_non_namespace_value (d1);
9265 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
9266 templ = value;
9267 else
9268 {
9269 if (context)
9270 push_decl_namespace (context);
9271 templ = lookup_name (d1);
9272 templ = maybe_get_template_decl_from_type_decl (templ);
9273 if (context)
9274 pop_decl_namespace ();
9275 }
9276 if (templ)
9277 context = DECL_CONTEXT (templ);
9278 }
9279 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
9280 {
9281 tree type = TREE_TYPE (d1);
9282
9283 /* If we are declaring a constructor, say A<T>::A<T>, we will get
9284 an implicit typename for the second A. Deal with it. */
9285 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
9286 type = TREE_TYPE (type);
9287
9288 if (CLASSTYPE_TEMPLATE_INFO (type))
9289 {
9290 templ = CLASSTYPE_TI_TEMPLATE (type);
9291 d1 = DECL_NAME (templ);
9292 }
9293 }
9294 else if (TREE_CODE (d1) == ENUMERAL_TYPE
9295 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
9296 {
9297 templ = TYPE_TI_TEMPLATE (d1);
9298 d1 = DECL_NAME (templ);
9299 }
9300 else if (DECL_TYPE_TEMPLATE_P (d1))
9301 {
9302 templ = d1;
9303 d1 = DECL_NAME (templ);
9304 context = DECL_CONTEXT (templ);
9305 }
9306 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
9307 {
9308 templ = d1;
9309 d1 = DECL_NAME (templ);
9310 }
9311
9312 /* Issue an error message if we didn't find a template. */
9313 if (! templ)
9314 {
9315 if (complain & tf_error)
9316 error ("%qT is not a template", d1);
9317 return error_mark_node;
9318 }
9319
9320 if (TREE_CODE (templ) != TEMPLATE_DECL
9321 /* Make sure it's a user visible template, if it was named by
9322 the user. */
9323 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
9324 && !PRIMARY_TEMPLATE_P (templ)))
9325 {
9326 if (complain & tf_error)
9327 {
9328 error ("non-template type %qT used as a template", d1);
9329 if (in_decl)
9330 error ("for template declaration %q+D", in_decl);
9331 }
9332 return error_mark_node;
9333 }
9334
9335 complain &= ~tf_user;
9336
9337 /* An alias that just changes the name of a template is equivalent to the
9338 other template, so if any of the arguments are pack expansions, strip
9339 the alias to avoid problems with a pack expansion passed to a non-pack
9340 alias template parameter (DR 1430). */
9341 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
9342 templ = get_underlying_template (templ);
9343
9344 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
9345 {
9346 tree parm;
9347 tree arglist2 = coerce_template_args_for_ttp (templ, arglist, complain);
9348 if (arglist2 == error_mark_node
9349 || (!uses_template_parms (arglist2)
9350 && check_instantiated_args (templ, arglist2, complain)))
9351 return error_mark_node;
9352
9353 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
9354 return parm;
9355 }
9356 else
9357 {
9358 tree template_type = TREE_TYPE (templ);
9359 tree gen_tmpl;
9360 tree type_decl;
9361 tree found = NULL_TREE;
9362 int arg_depth;
9363 int parm_depth;
9364 int is_dependent_type;
9365 int use_partial_inst_tmpl = false;
9366
9367 if (template_type == error_mark_node)
9368 /* An error occurred while building the template TEMPL, and a
9369 diagnostic has most certainly been emitted for that
9370 already. Let's propagate that error. */
9371 return error_mark_node;
9372
9373 gen_tmpl = most_general_template (templ);
9374 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
9375 parm_depth = TMPL_PARMS_DEPTH (parmlist);
9376 arg_depth = TMPL_ARGS_DEPTH (arglist);
9377
9378 if (arg_depth == 1 && parm_depth > 1)
9379 {
9380 /* We've been given an incomplete set of template arguments.
9381 For example, given:
9382
9383 template <class T> struct S1 {
9384 template <class U> struct S2 {};
9385 template <class U> struct S2<U*> {};
9386 };
9387
9388 we will be called with an ARGLIST of `U*', but the
9389 TEMPLATE will be `template <class T> template
9390 <class U> struct S1<T>::S2'. We must fill in the missing
9391 arguments. */
9392 tree ti = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (TREE_TYPE (templ));
9393 arglist = add_outermost_template_args (TI_ARGS (ti), arglist);
9394 arg_depth = TMPL_ARGS_DEPTH (arglist);
9395 }
9396
9397 /* Now we should have enough arguments. */
9398 gcc_assert (parm_depth == arg_depth);
9399
9400 /* From here on, we're only interested in the most general
9401 template. */
9402
9403 /* Calculate the BOUND_ARGS. These will be the args that are
9404 actually tsubst'd into the definition to create the
9405 instantiation. */
9406 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
9407 complain,
9408 /*require_all_args=*/true,
9409 /*use_default_args=*/true);
9410
9411 if (arglist == error_mark_node)
9412 /* We were unable to bind the arguments. */
9413 return error_mark_node;
9414
9415 /* In the scope of a template class, explicit references to the
9416 template class refer to the type of the template, not any
9417 instantiation of it. For example, in:
9418
9419 template <class T> class C { void f(C<T>); }
9420
9421 the `C<T>' is just the same as `C'. Outside of the
9422 class, however, such a reference is an instantiation. */
9423 if (entering_scope
9424 || !PRIMARY_TEMPLATE_P (gen_tmpl)
9425 || currently_open_class (template_type))
9426 {
9427 tree tinfo = TYPE_TEMPLATE_INFO (template_type);
9428
9429 if (tinfo && comp_template_args (TI_ARGS (tinfo), arglist))
9430 return template_type;
9431 }
9432
9433 /* If we already have this specialization, return it. */
9434 elt.tmpl = gen_tmpl;
9435 elt.args = arglist;
9436 elt.spec = NULL_TREE;
9437 hash = spec_hasher::hash (&elt);
9438 entry = type_specializations->find_with_hash (&elt, hash);
9439
9440 if (entry)
9441 return entry->spec;
9442
9443 /* If the the template's constraints are not satisfied,
9444 then we cannot form a valid type.
9445
9446 Note that the check is deferred until after the hash
9447 lookup. This prevents redundant checks on previously
9448 instantiated specializations. */
9449 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
9450 {
9451 if (complain & tf_error)
9452 {
9453 auto_diagnostic_group d;
9454 error ("template constraint failure");
9455 diagnose_constraints (input_location, gen_tmpl, arglist);
9456 }
9457 return error_mark_node;
9458 }
9459
9460 is_dependent_type = uses_template_parms (arglist);
9461
9462 /* If the deduced arguments are invalid, then the binding
9463 failed. */
9464 if (!is_dependent_type
9465 && check_instantiated_args (gen_tmpl,
9466 INNERMOST_TEMPLATE_ARGS (arglist),
9467 complain))
9468 return error_mark_node;
9469
9470 if (!is_dependent_type
9471 && !PRIMARY_TEMPLATE_P (gen_tmpl)
9472 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
9473 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
9474 {
9475 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
9476 DECL_NAME (gen_tmpl),
9477 /*tag_scope=*/ts_global);
9478 return found;
9479 }
9480
9481 context = DECL_CONTEXT (gen_tmpl);
9482 if (context && TYPE_P (context))
9483 {
9484 context = tsubst_aggr_type (context, arglist, complain, in_decl, true);
9485 context = complete_type (context);
9486 }
9487 else
9488 context = tsubst (context, arglist, complain, in_decl);
9489
9490 if (context == error_mark_node)
9491 return error_mark_node;
9492
9493 if (!context)
9494 context = global_namespace;
9495
9496 /* Create the type. */
9497 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
9498 {
9499 /* The user referred to a specialization of an alias
9500 template represented by GEN_TMPL.
9501
9502 [temp.alias]/2 says:
9503
9504 When a template-id refers to the specialization of an
9505 alias template, it is equivalent to the associated
9506 type obtained by substitution of its
9507 template-arguments for the template-parameters in the
9508 type-id of the alias template. */
9509
9510 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
9511 /* Note that the call above (by indirectly calling
9512 register_specialization in tsubst_decl) registers the
9513 TYPE_DECL representing the specialization of the alias
9514 template. So next time someone substitutes ARGLIST for
9515 the template parms into the alias template (GEN_TMPL),
9516 she'll get that TYPE_DECL back. */
9517
9518 if (t == error_mark_node)
9519 return t;
9520 }
9521 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
9522 {
9523 if (!is_dependent_type)
9524 {
9525 set_current_access_from_decl (TYPE_NAME (template_type));
9526 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
9527 tsubst (ENUM_UNDERLYING_TYPE (template_type),
9528 arglist, complain, in_decl),
9529 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
9530 arglist, complain, in_decl),
9531 SCOPED_ENUM_P (template_type), NULL);
9532
9533 if (t == error_mark_node)
9534 return t;
9535 }
9536 else
9537 {
9538 /* We don't want to call start_enum for this type, since
9539 the values for the enumeration constants may involve
9540 template parameters. And, no one should be interested
9541 in the enumeration constants for such a type. */
9542 t = cxx_make_type (ENUMERAL_TYPE);
9543 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
9544 }
9545 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
9546 ENUM_FIXED_UNDERLYING_TYPE_P (t)
9547 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
9548 }
9549 else if (CLASS_TYPE_P (template_type))
9550 {
9551 /* Lambda closures are regenerated in tsubst_lambda_expr, not
9552 instantiated here. */
9553 gcc_assert (!LAMBDA_TYPE_P (template_type));
9554
9555 t = make_class_type (TREE_CODE (template_type));
9556 CLASSTYPE_DECLARED_CLASS (t)
9557 = CLASSTYPE_DECLARED_CLASS (template_type);
9558 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
9559
9560 /* A local class. Make sure the decl gets registered properly. */
9561 if (context == current_function_decl)
9562 if (pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current)
9563 == error_mark_node)
9564 return error_mark_node;
9565
9566 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
9567 /* This instantiation is another name for the primary
9568 template type. Set the TYPE_CANONICAL field
9569 appropriately. */
9570 TYPE_CANONICAL (t) = template_type;
9571 else if (any_template_arguments_need_structural_equality_p (arglist))
9572 /* Some of the template arguments require structural
9573 equality testing, so this template class requires
9574 structural equality testing. */
9575 SET_TYPE_STRUCTURAL_EQUALITY (t);
9576 }
9577 else
9578 gcc_unreachable ();
9579
9580 /* If we called start_enum or pushtag above, this information
9581 will already be set up. */
9582 if (!TYPE_NAME (t))
9583 {
9584 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
9585
9586 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
9587 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
9588 DECL_SOURCE_LOCATION (type_decl)
9589 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
9590 }
9591 else
9592 type_decl = TYPE_NAME (t);
9593
9594 if (CLASS_TYPE_P (template_type))
9595 {
9596 TREE_PRIVATE (type_decl)
9597 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
9598 TREE_PROTECTED (type_decl)
9599 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
9600 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
9601 {
9602 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
9603 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
9604 }
9605 }
9606
9607 if (OVERLOAD_TYPE_P (t)
9608 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
9609 {
9610 static const char *tags[] = {"abi_tag", "may_alias"};
9611
9612 for (unsigned ix = 0; ix != 2; ix++)
9613 {
9614 tree attributes
9615 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
9616
9617 if (attributes)
9618 TYPE_ATTRIBUTES (t)
9619 = tree_cons (TREE_PURPOSE (attributes),
9620 TREE_VALUE (attributes),
9621 TYPE_ATTRIBUTES (t));
9622 }
9623 }
9624
9625 /* Let's consider the explicit specialization of a member
9626 of a class template specialization that is implicitly instantiated,
9627 e.g.:
9628 template<class T>
9629 struct S
9630 {
9631 template<class U> struct M {}; //#0
9632 };
9633
9634 template<>
9635 template<>
9636 struct S<int>::M<char> //#1
9637 {
9638 int i;
9639 };
9640 [temp.expl.spec]/4 says this is valid.
9641
9642 In this case, when we write:
9643 S<int>::M<char> m;
9644
9645 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
9646 the one of #0.
9647
9648 When we encounter #1, we want to store the partial instantiation
9649 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
9650
9651 For all cases other than this "explicit specialization of member of a
9652 class template", we just want to store the most general template into
9653 the CLASSTYPE_TI_TEMPLATE of M.
9654
9655 This case of "explicit specialization of member of a class template"
9656 only happens when:
9657 1/ the enclosing class is an instantiation of, and therefore not
9658 the same as, the context of the most general template, and
9659 2/ we aren't looking at the partial instantiation itself, i.e.
9660 the innermost arguments are not the same as the innermost parms of
9661 the most general template.
9662
9663 So it's only when 1/ and 2/ happens that we want to use the partial
9664 instantiation of the member template in lieu of its most general
9665 template. */
9666
9667 if (PRIMARY_TEMPLATE_P (gen_tmpl)
9668 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
9669 /* the enclosing class must be an instantiation... */
9670 && CLASS_TYPE_P (context)
9671 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
9672 {
9673 TREE_VEC_LENGTH (arglist)--;
9674 ++processing_template_decl;
9675 tree tinfo = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (TREE_TYPE (gen_tmpl));
9676 tree partial_inst_args =
9677 tsubst (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo)),
9678 arglist, complain, NULL_TREE);
9679 --processing_template_decl;
9680 TREE_VEC_LENGTH (arglist)++;
9681 if (partial_inst_args == error_mark_node)
9682 return error_mark_node;
9683 use_partial_inst_tmpl =
9684 /*...and we must not be looking at the partial instantiation
9685 itself. */
9686 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
9687 partial_inst_args);
9688 }
9689
9690 if (!use_partial_inst_tmpl)
9691 /* This case is easy; there are no member templates involved. */
9692 found = gen_tmpl;
9693 else
9694 {
9695 /* This is a full instantiation of a member template. Find
9696 the partial instantiation of which this is an instance. */
9697
9698 /* Temporarily reduce by one the number of levels in the ARGLIST
9699 so as to avoid comparing the last set of arguments. */
9700 TREE_VEC_LENGTH (arglist)--;
9701 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
9702 TREE_VEC_LENGTH (arglist)++;
9703 /* FOUND is either a proper class type, or an alias
9704 template specialization. In the later case, it's a
9705 TYPE_DECL, resulting from the substituting of arguments
9706 for parameters in the TYPE_DECL of the alias template
9707 done earlier. So be careful while getting the template
9708 of FOUND. */
9709 found = (TREE_CODE (found) == TEMPLATE_DECL
9710 ? found
9711 : (TREE_CODE (found) == TYPE_DECL
9712 ? DECL_TI_TEMPLATE (found)
9713 : CLASSTYPE_TI_TEMPLATE (found)));
9714
9715 if (DECL_CLASS_TEMPLATE_P (found)
9716 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (found)))
9717 {
9718 /* If this partial instantiation is specialized, we want to
9719 use it for hash table lookup. */
9720 elt.tmpl = found;
9721 elt.args = arglist = INNERMOST_TEMPLATE_ARGS (arglist);
9722 hash = spec_hasher::hash (&elt);
9723 }
9724 }
9725
9726 // Build template info for the new specialization.
9727 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
9728
9729 elt.spec = t;
9730 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
9731 gcc_checking_assert (*slot == NULL);
9732 entry = ggc_alloc<spec_entry> ();
9733 *entry = elt;
9734 *slot = entry;
9735
9736 /* Note this use of the partial instantiation so we can check it
9737 later in maybe_process_partial_specialization. */
9738 DECL_TEMPLATE_INSTANTIATIONS (found)
9739 = tree_cons (arglist, t,
9740 DECL_TEMPLATE_INSTANTIATIONS (found));
9741
9742 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
9743 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
9744 /* Now that the type has been registered on the instantiations
9745 list, we set up the enumerators. Because the enumeration
9746 constants may involve the enumeration type itself, we make
9747 sure to register the type first, and then create the
9748 constants. That way, doing tsubst_expr for the enumeration
9749 constants won't result in recursive calls here; we'll find
9750 the instantiation and exit above. */
9751 tsubst_enum (template_type, t, arglist);
9752
9753 if (CLASS_TYPE_P (template_type) && is_dependent_type)
9754 /* If the type makes use of template parameters, the
9755 code that generates debugging information will crash. */
9756 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
9757
9758 /* Possibly limit visibility based on template args. */
9759 TREE_PUBLIC (type_decl) = 1;
9760 determine_visibility (type_decl);
9761
9762 inherit_targ_abi_tags (t);
9763
9764 return t;
9765 }
9766 }
9767
9768 /* Wrapper for lookup_template_class_1. */
9769
9770 tree
9771 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
9772 int entering_scope, tsubst_flags_t complain)
9773 {
9774 tree ret;
9775 timevar_push (TV_TEMPLATE_INST);
9776 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
9777 entering_scope, complain);
9778 timevar_pop (TV_TEMPLATE_INST);
9779 return ret;
9780 }
9781
9782 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
9783
9784 tree
9785 lookup_template_variable (tree templ, tree arglist)
9786 {
9787 /* The type of the expression is NULL_TREE since the template-id could refer
9788 to an explicit or partial specialization. */
9789 tree type = NULL_TREE;
9790 if (flag_concepts && variable_concept_p (templ))
9791 /* Except that concepts are always bool. */
9792 type = boolean_type_node;
9793 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
9794 }
9795
9796 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
9797
9798 tree
9799 finish_template_variable (tree var, tsubst_flags_t complain)
9800 {
9801 tree templ = TREE_OPERAND (var, 0);
9802 tree arglist = TREE_OPERAND (var, 1);
9803
9804 /* We never want to return a VAR_DECL for a variable concept, since they
9805 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
9806 bool concept_p = flag_concepts && variable_concept_p (templ);
9807 if (concept_p && processing_template_decl)
9808 return var;
9809
9810 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
9811 arglist = add_outermost_template_args (tmpl_args, arglist);
9812
9813 templ = most_general_template (templ);
9814 tree parms = DECL_TEMPLATE_PARMS (templ);
9815 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
9816 /*req_all*/true,
9817 /*use_default*/true);
9818
9819 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
9820 {
9821 if (complain & tf_error)
9822 {
9823 auto_diagnostic_group d;
9824 error ("use of invalid variable template %qE", var);
9825 diagnose_constraints (location_of (var), templ, arglist);
9826 }
9827 return error_mark_node;
9828 }
9829
9830 /* If a template-id refers to a specialization of a variable
9831 concept, then the expression is true if and only if the
9832 concept's constraints are satisfied by the given template
9833 arguments.
9834
9835 NOTE: This is an extension of Concepts Lite TS that
9836 allows constraints to be used in expressions. */
9837 if (concept_p)
9838 {
9839 tree decl = DECL_TEMPLATE_RESULT (templ);
9840 return evaluate_variable_concept (decl, arglist);
9841 }
9842
9843 return instantiate_template (templ, arglist, complain);
9844 }
9845
9846 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
9847 TARGS template args, and instantiate it if it's not dependent. */
9848
9849 tree
9850 lookup_and_finish_template_variable (tree templ, tree targs,
9851 tsubst_flags_t complain)
9852 {
9853 templ = lookup_template_variable (templ, targs);
9854 if (!any_dependent_template_arguments_p (targs))
9855 {
9856 templ = finish_template_variable (templ, complain);
9857 mark_used (templ);
9858 }
9859
9860 return convert_from_reference (templ);
9861 }
9862
9863 \f
9864 struct pair_fn_data
9865 {
9866 tree_fn_t fn;
9867 tree_fn_t any_fn;
9868 void *data;
9869 /* True when we should also visit template parameters that occur in
9870 non-deduced contexts. */
9871 bool include_nondeduced_p;
9872 hash_set<tree> *visited;
9873 };
9874
9875 /* Called from for_each_template_parm via walk_tree. */
9876
9877 static tree
9878 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
9879 {
9880 tree t = *tp;
9881 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
9882 tree_fn_t fn = pfd->fn;
9883 void *data = pfd->data;
9884 tree result = NULL_TREE;
9885
9886 #define WALK_SUBTREE(NODE) \
9887 do \
9888 { \
9889 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
9890 pfd->include_nondeduced_p, \
9891 pfd->any_fn); \
9892 if (result) goto out; \
9893 } \
9894 while (0)
9895
9896 if (pfd->any_fn && (*pfd->any_fn)(t, data))
9897 return t;
9898
9899 if (TYPE_P (t)
9900 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
9901 WALK_SUBTREE (TYPE_CONTEXT (t));
9902
9903 switch (TREE_CODE (t))
9904 {
9905 case RECORD_TYPE:
9906 if (TYPE_PTRMEMFUNC_P (t))
9907 break;
9908 /* Fall through. */
9909
9910 case UNION_TYPE:
9911 case ENUMERAL_TYPE:
9912 if (!TYPE_TEMPLATE_INFO (t))
9913 *walk_subtrees = 0;
9914 else
9915 WALK_SUBTREE (TYPE_TI_ARGS (t));
9916 break;
9917
9918 case INTEGER_TYPE:
9919 WALK_SUBTREE (TYPE_MIN_VALUE (t));
9920 WALK_SUBTREE (TYPE_MAX_VALUE (t));
9921 break;
9922
9923 case METHOD_TYPE:
9924 /* Since we're not going to walk subtrees, we have to do this
9925 explicitly here. */
9926 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
9927 /* Fall through. */
9928
9929 case FUNCTION_TYPE:
9930 /* Check the return type. */
9931 WALK_SUBTREE (TREE_TYPE (t));
9932
9933 /* Check the parameter types. Since default arguments are not
9934 instantiated until they are needed, the TYPE_ARG_TYPES may
9935 contain expressions that involve template parameters. But,
9936 no-one should be looking at them yet. And, once they're
9937 instantiated, they don't contain template parameters, so
9938 there's no point in looking at them then, either. */
9939 {
9940 tree parm;
9941
9942 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
9943 WALK_SUBTREE (TREE_VALUE (parm));
9944
9945 /* Since we've already handled the TYPE_ARG_TYPES, we don't
9946 want walk_tree walking into them itself. */
9947 *walk_subtrees = 0;
9948 }
9949
9950 if (flag_noexcept_type)
9951 {
9952 tree spec = TYPE_RAISES_EXCEPTIONS (t);
9953 if (spec)
9954 WALK_SUBTREE (TREE_PURPOSE (spec));
9955 }
9956 break;
9957
9958 case TYPEOF_TYPE:
9959 case DECLTYPE_TYPE:
9960 case UNDERLYING_TYPE:
9961 if (pfd->include_nondeduced_p
9962 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
9963 pfd->visited,
9964 pfd->include_nondeduced_p,
9965 pfd->any_fn))
9966 return error_mark_node;
9967 *walk_subtrees = false;
9968 break;
9969
9970 case FUNCTION_DECL:
9971 case VAR_DECL:
9972 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
9973 WALK_SUBTREE (DECL_TI_ARGS (t));
9974 /* Fall through. */
9975
9976 case PARM_DECL:
9977 case CONST_DECL:
9978 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
9979 WALK_SUBTREE (DECL_INITIAL (t));
9980 if (DECL_CONTEXT (t)
9981 && pfd->include_nondeduced_p)
9982 WALK_SUBTREE (DECL_CONTEXT (t));
9983 break;
9984
9985 case BOUND_TEMPLATE_TEMPLATE_PARM:
9986 /* Record template parameters such as `T' inside `TT<T>'. */
9987 WALK_SUBTREE (TYPE_TI_ARGS (t));
9988 /* Fall through. */
9989
9990 case TEMPLATE_TEMPLATE_PARM:
9991 case TEMPLATE_TYPE_PARM:
9992 case TEMPLATE_PARM_INDEX:
9993 if (fn && (*fn)(t, data))
9994 return t;
9995 else if (!fn)
9996 return t;
9997 break;
9998
9999 case TEMPLATE_DECL:
10000 /* A template template parameter is encountered. */
10001 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10002 WALK_SUBTREE (TREE_TYPE (t));
10003
10004 /* Already substituted template template parameter */
10005 *walk_subtrees = 0;
10006 break;
10007
10008 case TYPENAME_TYPE:
10009 /* A template-id in a TYPENAME_TYPE might be a deduced context after
10010 partial instantiation. */
10011 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
10012 break;
10013
10014 case CONSTRUCTOR:
10015 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
10016 && pfd->include_nondeduced_p)
10017 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
10018 break;
10019
10020 case INDIRECT_REF:
10021 case COMPONENT_REF:
10022 /* If there's no type, then this thing must be some expression
10023 involving template parameters. */
10024 if (!fn && !TREE_TYPE (t))
10025 return error_mark_node;
10026 break;
10027
10028 case MODOP_EXPR:
10029 case CAST_EXPR:
10030 case IMPLICIT_CONV_EXPR:
10031 case REINTERPRET_CAST_EXPR:
10032 case CONST_CAST_EXPR:
10033 case STATIC_CAST_EXPR:
10034 case DYNAMIC_CAST_EXPR:
10035 case ARROW_EXPR:
10036 case DOTSTAR_EXPR:
10037 case TYPEID_EXPR:
10038 case PSEUDO_DTOR_EXPR:
10039 if (!fn)
10040 return error_mark_node;
10041 break;
10042
10043 default:
10044 break;
10045 }
10046
10047 #undef WALK_SUBTREE
10048
10049 /* We didn't find any template parameters we liked. */
10050 out:
10051 return result;
10052 }
10053
10054 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
10055 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
10056 call FN with the parameter and the DATA.
10057 If FN returns nonzero, the iteration is terminated, and
10058 for_each_template_parm returns 1. Otherwise, the iteration
10059 continues. If FN never returns a nonzero value, the value
10060 returned by for_each_template_parm is 0. If FN is NULL, it is
10061 considered to be the function which always returns 1.
10062
10063 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
10064 parameters that occur in non-deduced contexts. When false, only
10065 visits those template parameters that can be deduced. */
10066
10067 static tree
10068 for_each_template_parm (tree t, tree_fn_t fn, void* data,
10069 hash_set<tree> *visited,
10070 bool include_nondeduced_p,
10071 tree_fn_t any_fn)
10072 {
10073 struct pair_fn_data pfd;
10074 tree result;
10075
10076 /* Set up. */
10077 pfd.fn = fn;
10078 pfd.any_fn = any_fn;
10079 pfd.data = data;
10080 pfd.include_nondeduced_p = include_nondeduced_p;
10081
10082 /* Walk the tree. (Conceptually, we would like to walk without
10083 duplicates, but for_each_template_parm_r recursively calls
10084 for_each_template_parm, so we would need to reorganize a fair
10085 bit to use walk_tree_without_duplicates, so we keep our own
10086 visited list.) */
10087 if (visited)
10088 pfd.visited = visited;
10089 else
10090 pfd.visited = new hash_set<tree>;
10091 result = cp_walk_tree (&t,
10092 for_each_template_parm_r,
10093 &pfd,
10094 pfd.visited);
10095
10096 /* Clean up. */
10097 if (!visited)
10098 {
10099 delete pfd.visited;
10100 pfd.visited = 0;
10101 }
10102
10103 return result;
10104 }
10105
10106 /* Returns true if T depends on any template parameter. */
10107
10108 int
10109 uses_template_parms (tree t)
10110 {
10111 if (t == NULL_TREE)
10112 return false;
10113
10114 bool dependent_p;
10115 int saved_processing_template_decl;
10116
10117 saved_processing_template_decl = processing_template_decl;
10118 if (!saved_processing_template_decl)
10119 processing_template_decl = 1;
10120 if (TYPE_P (t))
10121 dependent_p = dependent_type_p (t);
10122 else if (TREE_CODE (t) == TREE_VEC)
10123 dependent_p = any_dependent_template_arguments_p (t);
10124 else if (TREE_CODE (t) == TREE_LIST)
10125 dependent_p = (uses_template_parms (TREE_VALUE (t))
10126 || uses_template_parms (TREE_CHAIN (t)));
10127 else if (TREE_CODE (t) == TYPE_DECL)
10128 dependent_p = dependent_type_p (TREE_TYPE (t));
10129 else if (DECL_P (t)
10130 || EXPR_P (t)
10131 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
10132 || TREE_CODE (t) == OVERLOAD
10133 || BASELINK_P (t)
10134 || identifier_p (t)
10135 || TREE_CODE (t) == TRAIT_EXPR
10136 || TREE_CODE (t) == CONSTRUCTOR
10137 || CONSTANT_CLASS_P (t))
10138 dependent_p = (type_dependent_expression_p (t)
10139 || value_dependent_expression_p (t));
10140 else
10141 {
10142 gcc_assert (t == error_mark_node);
10143 dependent_p = false;
10144 }
10145
10146 processing_template_decl = saved_processing_template_decl;
10147
10148 return dependent_p;
10149 }
10150
10151 /* Returns true iff current_function_decl is an incompletely instantiated
10152 template. Useful instead of processing_template_decl because the latter
10153 is set to 0 during instantiate_non_dependent_expr. */
10154
10155 bool
10156 in_template_function (void)
10157 {
10158 tree fn = current_function_decl;
10159 bool ret;
10160 ++processing_template_decl;
10161 ret = (fn && DECL_LANG_SPECIFIC (fn)
10162 && DECL_TEMPLATE_INFO (fn)
10163 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
10164 --processing_template_decl;
10165 return ret;
10166 }
10167
10168 /* Returns true if T depends on any template parameter with level LEVEL. */
10169
10170 bool
10171 uses_template_parms_level (tree t, int level)
10172 {
10173 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
10174 /*include_nondeduced_p=*/true);
10175 }
10176
10177 /* Returns true if the signature of DECL depends on any template parameter from
10178 its enclosing class. */
10179
10180 bool
10181 uses_outer_template_parms (tree decl)
10182 {
10183 int depth = template_class_depth (CP_DECL_CONTEXT (decl));
10184 if (depth == 0)
10185 return false;
10186 if (for_each_template_parm (TREE_TYPE (decl), template_parm_outer_level,
10187 &depth, NULL, /*include_nondeduced_p=*/true))
10188 return true;
10189 if (PRIMARY_TEMPLATE_P (decl)
10190 && for_each_template_parm (INNERMOST_TEMPLATE_PARMS
10191 (DECL_TEMPLATE_PARMS (decl)),
10192 template_parm_outer_level,
10193 &depth, NULL, /*include_nondeduced_p=*/true))
10194 return true;
10195 tree ci = get_constraints (decl);
10196 if (ci)
10197 ci = CI_ASSOCIATED_CONSTRAINTS (ci);
10198 if (ci && for_each_template_parm (ci, template_parm_outer_level,
10199 &depth, NULL, /*nondeduced*/true))
10200 return true;
10201 return false;
10202 }
10203
10204 /* Returns TRUE iff INST is an instantiation we don't need to do in an
10205 ill-formed translation unit, i.e. a variable or function that isn't
10206 usable in a constant expression. */
10207
10208 static inline bool
10209 neglectable_inst_p (tree d)
10210 {
10211 return (d && DECL_P (d)
10212 && !undeduced_auto_decl (d)
10213 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
10214 : decl_maybe_constant_var_p (d)));
10215 }
10216
10217 /* Returns TRUE iff we should refuse to instantiate DECL because it's
10218 neglectable and instantiated from within an erroneous instantiation. */
10219
10220 static bool
10221 limit_bad_template_recursion (tree decl)
10222 {
10223 struct tinst_level *lev = current_tinst_level;
10224 int errs = errorcount + sorrycount;
10225 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
10226 return false;
10227
10228 for (; lev; lev = lev->next)
10229 if (neglectable_inst_p (lev->maybe_get_node ()))
10230 break;
10231
10232 return (lev && errs > lev->errors);
10233 }
10234
10235 static int tinst_depth;
10236 extern int max_tinst_depth;
10237 int depth_reached;
10238
10239 static GTY(()) struct tinst_level *last_error_tinst_level;
10240
10241 /* We're starting to instantiate D; record the template instantiation context
10242 at LOC for diagnostics and to restore it later. */
10243
10244 static bool
10245 push_tinst_level_loc (tree tldcl, tree targs, location_t loc)
10246 {
10247 struct tinst_level *new_level;
10248
10249 if (tinst_depth >= max_tinst_depth)
10250 {
10251 /* Tell error.c not to try to instantiate any templates. */
10252 at_eof = 2;
10253 fatal_error (input_location,
10254 "template instantiation depth exceeds maximum of %d"
10255 " (use %<-ftemplate-depth=%> to increase the maximum)",
10256 max_tinst_depth);
10257 return false;
10258 }
10259
10260 /* If the current instantiation caused problems, don't let it instantiate
10261 anything else. Do allow deduction substitution and decls usable in
10262 constant expressions. */
10263 if (!targs && limit_bad_template_recursion (tldcl))
10264 return false;
10265
10266 /* When not -quiet, dump template instantiations other than functions, since
10267 announce_function will take care of those. */
10268 if (!quiet_flag && !targs
10269 && TREE_CODE (tldcl) != TREE_LIST
10270 && TREE_CODE (tldcl) != FUNCTION_DECL)
10271 fprintf (stderr, " %s", decl_as_string (tldcl, TFF_DECL_SPECIFIERS));
10272
10273 new_level = tinst_level_freelist ().alloc ();
10274 new_level->tldcl = tldcl;
10275 new_level->targs = targs;
10276 new_level->locus = loc;
10277 new_level->errors = errorcount + sorrycount;
10278 new_level->next = NULL;
10279 new_level->refcount = 0;
10280 set_refcount_ptr (new_level->next, current_tinst_level);
10281 set_refcount_ptr (current_tinst_level, new_level);
10282
10283 ++tinst_depth;
10284 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
10285 depth_reached = tinst_depth;
10286
10287 return true;
10288 }
10289
10290 /* We're starting substitution of TMPL<ARGS>; record the template
10291 substitution context for diagnostics and to restore it later. */
10292
10293 static bool
10294 push_tinst_level (tree tmpl, tree args)
10295 {
10296 return push_tinst_level_loc (tmpl, args, input_location);
10297 }
10298
10299 /* We're starting to instantiate D; record INPUT_LOCATION and the
10300 template instantiation context for diagnostics and to restore it
10301 later. */
10302
10303 bool
10304 push_tinst_level (tree d)
10305 {
10306 return push_tinst_level_loc (d, input_location);
10307 }
10308
10309 /* Likewise, but record LOC as the program location. */
10310
10311 bool
10312 push_tinst_level_loc (tree d, location_t loc)
10313 {
10314 gcc_assert (TREE_CODE (d) != TREE_LIST);
10315 return push_tinst_level_loc (d, NULL, loc);
10316 }
10317
10318 /* We're done instantiating this template; return to the instantiation
10319 context. */
10320
10321 void
10322 pop_tinst_level (void)
10323 {
10324 /* Restore the filename and line number stashed away when we started
10325 this instantiation. */
10326 input_location = current_tinst_level->locus;
10327 set_refcount_ptr (current_tinst_level, current_tinst_level->next);
10328 --tinst_depth;
10329 }
10330
10331 /* We're instantiating a deferred template; restore the template
10332 instantiation context in which the instantiation was requested, which
10333 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
10334
10335 static tree
10336 reopen_tinst_level (struct tinst_level *level)
10337 {
10338 struct tinst_level *t;
10339
10340 tinst_depth = 0;
10341 for (t = level; t; t = t->next)
10342 ++tinst_depth;
10343
10344 set_refcount_ptr (current_tinst_level, level);
10345 pop_tinst_level ();
10346 if (current_tinst_level)
10347 current_tinst_level->errors = errorcount+sorrycount;
10348 return level->maybe_get_node ();
10349 }
10350
10351 /* Returns the TINST_LEVEL which gives the original instantiation
10352 context. */
10353
10354 struct tinst_level *
10355 outermost_tinst_level (void)
10356 {
10357 struct tinst_level *level = current_tinst_level;
10358 if (level)
10359 while (level->next)
10360 level = level->next;
10361 return level;
10362 }
10363
10364 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
10365 vector of template arguments, as for tsubst.
10366
10367 Returns an appropriate tsubst'd friend declaration. */
10368
10369 static tree
10370 tsubst_friend_function (tree decl, tree args)
10371 {
10372 tree new_friend;
10373
10374 if (TREE_CODE (decl) == FUNCTION_DECL
10375 && DECL_TEMPLATE_INSTANTIATION (decl)
10376 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
10377 /* This was a friend declared with an explicit template
10378 argument list, e.g.:
10379
10380 friend void f<>(T);
10381
10382 to indicate that f was a template instantiation, not a new
10383 function declaration. Now, we have to figure out what
10384 instantiation of what template. */
10385 {
10386 tree template_id, arglist, fns;
10387 tree new_args;
10388 tree tmpl;
10389 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
10390
10391 /* Friend functions are looked up in the containing namespace scope.
10392 We must enter that scope, to avoid finding member functions of the
10393 current class with same name. */
10394 push_nested_namespace (ns);
10395 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
10396 tf_warning_or_error, NULL_TREE,
10397 /*integral_constant_expression_p=*/false);
10398 pop_nested_namespace (ns);
10399 arglist = tsubst (DECL_TI_ARGS (decl), args,
10400 tf_warning_or_error, NULL_TREE);
10401 template_id = lookup_template_function (fns, arglist);
10402
10403 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
10404 tmpl = determine_specialization (template_id, new_friend,
10405 &new_args,
10406 /*need_member_template=*/0,
10407 TREE_VEC_LENGTH (args),
10408 tsk_none);
10409 return instantiate_template (tmpl, new_args, tf_error);
10410 }
10411
10412 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
10413
10414 /* The NEW_FRIEND will look like an instantiation, to the
10415 compiler, but is not an instantiation from the point of view of
10416 the language. For example, we might have had:
10417
10418 template <class T> struct S {
10419 template <class U> friend void f(T, U);
10420 };
10421
10422 Then, in S<int>, template <class U> void f(int, U) is not an
10423 instantiation of anything. */
10424 if (new_friend == error_mark_node)
10425 return error_mark_node;
10426
10427 DECL_USE_TEMPLATE (new_friend) = 0;
10428 if (TREE_CODE (decl) == TEMPLATE_DECL)
10429 {
10430 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
10431 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
10432 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
10433 }
10434
10435 /* The mangled name for the NEW_FRIEND is incorrect. The function
10436 is not a template instantiation and should not be mangled like
10437 one. Therefore, we forget the mangling here; we'll recompute it
10438 later if we need it. */
10439 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
10440 {
10441 SET_DECL_RTL (new_friend, NULL);
10442 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
10443 }
10444
10445 if (DECL_NAMESPACE_SCOPE_P (new_friend))
10446 {
10447 tree old_decl;
10448 tree new_friend_template_info;
10449 tree new_friend_result_template_info;
10450 tree ns;
10451 int new_friend_is_defn;
10452
10453 /* We must save some information from NEW_FRIEND before calling
10454 duplicate decls since that function will free NEW_FRIEND if
10455 possible. */
10456 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
10457 new_friend_is_defn =
10458 (DECL_INITIAL (DECL_TEMPLATE_RESULT
10459 (template_for_substitution (new_friend)))
10460 != NULL_TREE);
10461 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
10462 {
10463 /* This declaration is a `primary' template. */
10464 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
10465
10466 new_friend_result_template_info
10467 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
10468 }
10469 else
10470 new_friend_result_template_info = NULL_TREE;
10471
10472 /* Inside pushdecl_namespace_level, we will push into the
10473 current namespace. However, the friend function should go
10474 into the namespace of the template. */
10475 ns = decl_namespace_context (new_friend);
10476 push_nested_namespace (ns);
10477 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
10478 pop_nested_namespace (ns);
10479
10480 if (old_decl == error_mark_node)
10481 return error_mark_node;
10482
10483 if (old_decl != new_friend)
10484 {
10485 /* This new friend declaration matched an existing
10486 declaration. For example, given:
10487
10488 template <class T> void f(T);
10489 template <class U> class C {
10490 template <class T> friend void f(T) {}
10491 };
10492
10493 the friend declaration actually provides the definition
10494 of `f', once C has been instantiated for some type. So,
10495 old_decl will be the out-of-class template declaration,
10496 while new_friend is the in-class definition.
10497
10498 But, if `f' was called before this point, the
10499 instantiation of `f' will have DECL_TI_ARGS corresponding
10500 to `T' but not to `U', references to which might appear
10501 in the definition of `f'. Previously, the most general
10502 template for an instantiation of `f' was the out-of-class
10503 version; now it is the in-class version. Therefore, we
10504 run through all specialization of `f', adding to their
10505 DECL_TI_ARGS appropriately. In particular, they need a
10506 new set of outer arguments, corresponding to the
10507 arguments for this class instantiation.
10508
10509 The same situation can arise with something like this:
10510
10511 friend void f(int);
10512 template <class T> class C {
10513 friend void f(T) {}
10514 };
10515
10516 when `C<int>' is instantiated. Now, `f(int)' is defined
10517 in the class. */
10518
10519 if (!new_friend_is_defn)
10520 /* On the other hand, if the in-class declaration does
10521 *not* provide a definition, then we don't want to alter
10522 existing definitions. We can just leave everything
10523 alone. */
10524 ;
10525 else
10526 {
10527 tree new_template = TI_TEMPLATE (new_friend_template_info);
10528 tree new_args = TI_ARGS (new_friend_template_info);
10529
10530 /* Overwrite whatever template info was there before, if
10531 any, with the new template information pertaining to
10532 the declaration. */
10533 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
10534
10535 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
10536 {
10537 /* We should have called reregister_specialization in
10538 duplicate_decls. */
10539 gcc_assert (retrieve_specialization (new_template,
10540 new_args, 0)
10541 == old_decl);
10542
10543 /* Instantiate it if the global has already been used. */
10544 if (DECL_ODR_USED (old_decl))
10545 instantiate_decl (old_decl, /*defer_ok=*/true,
10546 /*expl_inst_class_mem_p=*/false);
10547 }
10548 else
10549 {
10550 tree t;
10551
10552 /* Indicate that the old function template is a partial
10553 instantiation. */
10554 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
10555 = new_friend_result_template_info;
10556
10557 gcc_assert (new_template
10558 == most_general_template (new_template));
10559 gcc_assert (new_template != old_decl);
10560
10561 /* Reassign any specializations already in the hash table
10562 to the new more general template, and add the
10563 additional template args. */
10564 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
10565 t != NULL_TREE;
10566 t = TREE_CHAIN (t))
10567 {
10568 tree spec = TREE_VALUE (t);
10569 spec_entry elt;
10570
10571 elt.tmpl = old_decl;
10572 elt.args = DECL_TI_ARGS (spec);
10573 elt.spec = NULL_TREE;
10574
10575 decl_specializations->remove_elt (&elt);
10576
10577 DECL_TI_ARGS (spec)
10578 = add_outermost_template_args (new_args,
10579 DECL_TI_ARGS (spec));
10580
10581 register_specialization
10582 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
10583
10584 }
10585 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
10586 }
10587 }
10588
10589 /* The information from NEW_FRIEND has been merged into OLD_DECL
10590 by duplicate_decls. */
10591 new_friend = old_decl;
10592 }
10593 }
10594 else
10595 {
10596 tree context = DECL_CONTEXT (new_friend);
10597 bool dependent_p;
10598
10599 /* In the code
10600 template <class T> class C {
10601 template <class U> friend void C1<U>::f (); // case 1
10602 friend void C2<T>::f (); // case 2
10603 };
10604 we only need to make sure CONTEXT is a complete type for
10605 case 2. To distinguish between the two cases, we note that
10606 CONTEXT of case 1 remains dependent type after tsubst while
10607 this isn't true for case 2. */
10608 ++processing_template_decl;
10609 dependent_p = dependent_type_p (context);
10610 --processing_template_decl;
10611
10612 if (!dependent_p
10613 && !complete_type_or_else (context, NULL_TREE))
10614 return error_mark_node;
10615
10616 if (COMPLETE_TYPE_P (context))
10617 {
10618 tree fn = new_friend;
10619 /* do_friend adds the TEMPLATE_DECL for any member friend
10620 template even if it isn't a member template, i.e.
10621 template <class T> friend A<T>::f();
10622 Look through it in that case. */
10623 if (TREE_CODE (fn) == TEMPLATE_DECL
10624 && !PRIMARY_TEMPLATE_P (fn))
10625 fn = DECL_TEMPLATE_RESULT (fn);
10626 /* Check to see that the declaration is really present, and,
10627 possibly obtain an improved declaration. */
10628 fn = check_classfn (context, fn, NULL_TREE);
10629
10630 if (fn)
10631 new_friend = fn;
10632 }
10633 }
10634
10635 return new_friend;
10636 }
10637
10638 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
10639 template arguments, as for tsubst.
10640
10641 Returns an appropriate tsubst'd friend type or error_mark_node on
10642 failure. */
10643
10644 static tree
10645 tsubst_friend_class (tree friend_tmpl, tree args)
10646 {
10647 tree tmpl;
10648
10649 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
10650 {
10651 tmpl = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
10652 return TREE_TYPE (tmpl);
10653 }
10654
10655 tree context = CP_DECL_CONTEXT (friend_tmpl);
10656 if (TREE_CODE (context) == NAMESPACE_DECL)
10657 push_nested_namespace (context);
10658 else
10659 {
10660 context = tsubst (context, args, tf_error, NULL_TREE);
10661 push_nested_class (context);
10662 }
10663
10664 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), /*prefer_type=*/false,
10665 /*non_class=*/false, /*block_p=*/false,
10666 /*namespaces_only=*/false, LOOKUP_HIDDEN);
10667
10668 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
10669 {
10670 /* The friend template has already been declared. Just
10671 check to see that the declarations match, and install any new
10672 default parameters. We must tsubst the default parameters,
10673 of course. We only need the innermost template parameters
10674 because that is all that redeclare_class_template will look
10675 at. */
10676 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
10677 > TMPL_ARGS_DEPTH (args))
10678 {
10679 tree parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
10680 args, tf_warning_or_error);
10681 location_t saved_input_location = input_location;
10682 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
10683 tree cons = get_constraints (tmpl);
10684 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
10685 input_location = saved_input_location;
10686 }
10687 }
10688 else
10689 {
10690 /* The friend template has not already been declared. In this
10691 case, the instantiation of the template class will cause the
10692 injection of this template into the namespace scope. */
10693 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
10694
10695 if (tmpl != error_mark_node)
10696 {
10697 /* The new TMPL is not an instantiation of anything, so we
10698 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE
10699 for the new type because that is supposed to be the
10700 corresponding template decl, i.e., TMPL. */
10701 DECL_USE_TEMPLATE (tmpl) = 0;
10702 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
10703 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
10704 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
10705 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
10706
10707 /* It is hidden. */
10708 retrofit_lang_decl (DECL_TEMPLATE_RESULT (tmpl));
10709 DECL_ANTICIPATED (tmpl)
10710 = DECL_ANTICIPATED (DECL_TEMPLATE_RESULT (tmpl)) = true;
10711
10712 /* Inject this template into the enclosing namspace scope. */
10713 tmpl = pushdecl_namespace_level (tmpl, true);
10714 }
10715 }
10716
10717 if (TREE_CODE (context) == NAMESPACE_DECL)
10718 pop_nested_namespace (context);
10719 else
10720 pop_nested_class ();
10721
10722 return TREE_TYPE (tmpl);
10723 }
10724
10725 /* Returns zero if TYPE cannot be completed later due to circularity.
10726 Otherwise returns one. */
10727
10728 static int
10729 can_complete_type_without_circularity (tree type)
10730 {
10731 if (type == NULL_TREE || type == error_mark_node)
10732 return 0;
10733 else if (COMPLETE_TYPE_P (type))
10734 return 1;
10735 else if (TREE_CODE (type) == ARRAY_TYPE)
10736 return can_complete_type_without_circularity (TREE_TYPE (type));
10737 else if (CLASS_TYPE_P (type)
10738 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
10739 return 0;
10740 else
10741 return 1;
10742 }
10743
10744 static tree tsubst_omp_clauses (tree, enum c_omp_region_type, tree,
10745 tsubst_flags_t, tree);
10746
10747 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
10748 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
10749
10750 static tree
10751 tsubst_attribute (tree t, tree *decl_p, tree args,
10752 tsubst_flags_t complain, tree in_decl)
10753 {
10754 gcc_assert (ATTR_IS_DEPENDENT (t));
10755
10756 tree val = TREE_VALUE (t);
10757 if (val == NULL_TREE)
10758 /* Nothing to do. */;
10759 else if ((flag_openmp || flag_openmp_simd)
10760 && is_attribute_p ("omp declare simd",
10761 get_attribute_name (t)))
10762 {
10763 tree clauses = TREE_VALUE (val);
10764 clauses = tsubst_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD, args,
10765 complain, in_decl);
10766 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
10767 clauses = finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
10768 tree parms = DECL_ARGUMENTS (*decl_p);
10769 clauses
10770 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
10771 if (clauses)
10772 val = build_tree_list (NULL_TREE, clauses);
10773 else
10774 val = NULL_TREE;
10775 }
10776 /* If the first attribute argument is an identifier, don't
10777 pass it through tsubst. Attributes like mode, format,
10778 cleanup and several target specific attributes expect it
10779 unmodified. */
10780 else if (attribute_takes_identifier_p (get_attribute_name (t)))
10781 {
10782 tree chain
10783 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
10784 /*integral_constant_expression_p=*/false);
10785 if (chain != TREE_CHAIN (val))
10786 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
10787 }
10788 else if (PACK_EXPANSION_P (val))
10789 {
10790 /* An attribute pack expansion. */
10791 tree purp = TREE_PURPOSE (t);
10792 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
10793 if (pack == error_mark_node)
10794 return error_mark_node;
10795 int len = TREE_VEC_LENGTH (pack);
10796 tree list = NULL_TREE;
10797 tree *q = &list;
10798 for (int i = 0; i < len; ++i)
10799 {
10800 tree elt = TREE_VEC_ELT (pack, i);
10801 *q = build_tree_list (purp, elt);
10802 q = &TREE_CHAIN (*q);
10803 }
10804 return list;
10805 }
10806 else
10807 val = tsubst_expr (val, args, complain, in_decl,
10808 /*integral_constant_expression_p=*/false);
10809
10810 if (val != TREE_VALUE (t))
10811 return build_tree_list (TREE_PURPOSE (t), val);
10812 return t;
10813 }
10814
10815 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
10816 unchanged or a new TREE_LIST chain. */
10817
10818 static tree
10819 tsubst_attributes (tree attributes, tree args,
10820 tsubst_flags_t complain, tree in_decl)
10821 {
10822 tree last_dep = NULL_TREE;
10823
10824 for (tree t = attributes; t; t = TREE_CHAIN (t))
10825 if (ATTR_IS_DEPENDENT (t))
10826 {
10827 last_dep = t;
10828 attributes = copy_list (attributes);
10829 break;
10830 }
10831
10832 if (last_dep)
10833 for (tree *p = &attributes; *p; )
10834 {
10835 tree t = *p;
10836 if (ATTR_IS_DEPENDENT (t))
10837 {
10838 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
10839 if (subst != t)
10840 {
10841 *p = subst;
10842 while (*p)
10843 p = &TREE_CHAIN (*p);
10844 *p = TREE_CHAIN (t);
10845 continue;
10846 }
10847 }
10848 p = &TREE_CHAIN (*p);
10849 }
10850
10851 return attributes;
10852 }
10853
10854 /* Apply any attributes which had to be deferred until instantiation
10855 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
10856 ARGS, COMPLAIN, IN_DECL are as tsubst. */
10857
10858 static void
10859 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
10860 tree args, tsubst_flags_t complain, tree in_decl)
10861 {
10862 tree last_dep = NULL_TREE;
10863 tree t;
10864 tree *p;
10865
10866 if (attributes == NULL_TREE)
10867 return;
10868
10869 if (DECL_P (*decl_p))
10870 {
10871 if (TREE_TYPE (*decl_p) == error_mark_node)
10872 return;
10873 p = &DECL_ATTRIBUTES (*decl_p);
10874 /* DECL_ATTRIBUTES comes from copy_node in tsubst_decl, and is identical
10875 to our attributes parameter. */
10876 gcc_assert (*p == attributes);
10877 }
10878 else
10879 {
10880 p = &TYPE_ATTRIBUTES (*decl_p);
10881 /* TYPE_ATTRIBUTES was set up (with abi_tag and may_alias) in
10882 lookup_template_class_1, and should be preserved. */
10883 gcc_assert (*p != attributes);
10884 while (*p)
10885 p = &TREE_CHAIN (*p);
10886 }
10887
10888 for (t = attributes; t; t = TREE_CHAIN (t))
10889 if (ATTR_IS_DEPENDENT (t))
10890 {
10891 last_dep = t;
10892 attributes = copy_list (attributes);
10893 break;
10894 }
10895
10896 *p = attributes;
10897 if (last_dep)
10898 {
10899 tree late_attrs = NULL_TREE;
10900 tree *q = &late_attrs;
10901
10902 for (; *p; )
10903 {
10904 t = *p;
10905 if (ATTR_IS_DEPENDENT (t))
10906 {
10907 *p = TREE_CHAIN (t);
10908 TREE_CHAIN (t) = NULL_TREE;
10909 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
10910 while (*q)
10911 q = &TREE_CHAIN (*q);
10912 }
10913 else
10914 p = &TREE_CHAIN (t);
10915 }
10916
10917 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
10918 }
10919 }
10920
10921 /* Perform (or defer) access check for typedefs that were referenced
10922 from within the template TMPL code.
10923 This is a subroutine of instantiate_decl and instantiate_class_template.
10924 TMPL is the template to consider and TARGS is the list of arguments of
10925 that template. */
10926
10927 static void
10928 perform_typedefs_access_check (tree tmpl, tree targs)
10929 {
10930 location_t saved_location;
10931 unsigned i;
10932 qualified_typedef_usage_t *iter;
10933
10934 if (!tmpl
10935 || (!CLASS_TYPE_P (tmpl)
10936 && TREE_CODE (tmpl) != FUNCTION_DECL))
10937 return;
10938
10939 saved_location = input_location;
10940 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
10941 {
10942 tree type_decl = iter->typedef_decl;
10943 tree type_scope = iter->context;
10944
10945 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
10946 continue;
10947
10948 if (uses_template_parms (type_decl))
10949 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
10950 if (uses_template_parms (type_scope))
10951 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
10952
10953 /* Make access check error messages point to the location
10954 of the use of the typedef. */
10955 input_location = iter->locus;
10956 perform_or_defer_access_check (TYPE_BINFO (type_scope),
10957 type_decl, type_decl,
10958 tf_warning_or_error);
10959 }
10960 input_location = saved_location;
10961 }
10962
10963 static tree
10964 instantiate_class_template_1 (tree type)
10965 {
10966 tree templ, args, pattern, t, member;
10967 tree typedecl;
10968 tree pbinfo;
10969 tree base_list;
10970 unsigned int saved_maximum_field_alignment;
10971 tree fn_context;
10972
10973 if (type == error_mark_node)
10974 return error_mark_node;
10975
10976 if (COMPLETE_OR_OPEN_TYPE_P (type)
10977 || uses_template_parms (type))
10978 return type;
10979
10980 /* Figure out which template is being instantiated. */
10981 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
10982 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
10983
10984 /* Mark the type as in the process of being defined. */
10985 TYPE_BEING_DEFINED (type) = 1;
10986
10987 /* We may be in the middle of deferred access check. Disable
10988 it now. */
10989 deferring_access_check_sentinel acs (dk_no_deferred);
10990
10991 /* Determine what specialization of the original template to
10992 instantiate. */
10993 t = most_specialized_partial_spec (type, tf_warning_or_error);
10994 if (t == error_mark_node)
10995 return error_mark_node;
10996 else if (t)
10997 {
10998 /* This TYPE is actually an instantiation of a partial
10999 specialization. We replace the innermost set of ARGS with
11000 the arguments appropriate for substitution. For example,
11001 given:
11002
11003 template <class T> struct S {};
11004 template <class T> struct S<T*> {};
11005
11006 and supposing that we are instantiating S<int*>, ARGS will
11007 presently be {int*} -- but we need {int}. */
11008 pattern = TREE_TYPE (t);
11009 args = TREE_PURPOSE (t);
11010 }
11011 else
11012 {
11013 pattern = TREE_TYPE (templ);
11014 args = CLASSTYPE_TI_ARGS (type);
11015 }
11016
11017 /* If the template we're instantiating is incomplete, then clearly
11018 there's nothing we can do. */
11019 if (!COMPLETE_TYPE_P (pattern))
11020 {
11021 /* We can try again later. */
11022 TYPE_BEING_DEFINED (type) = 0;
11023 return type;
11024 }
11025
11026 /* If we've recursively instantiated too many templates, stop. */
11027 if (! push_tinst_level (type))
11028 return type;
11029
11030 int saved_unevaluated_operand = cp_unevaluated_operand;
11031 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11032
11033 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
11034 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
11035 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
11036 fn_context = error_mark_node;
11037 if (!fn_context)
11038 push_to_top_level ();
11039 else
11040 {
11041 cp_unevaluated_operand = 0;
11042 c_inhibit_evaluation_warnings = 0;
11043 }
11044 /* Use #pragma pack from the template context. */
11045 saved_maximum_field_alignment = maximum_field_alignment;
11046 maximum_field_alignment = TYPE_PRECISION (pattern);
11047
11048 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
11049
11050 /* Set the input location to the most specialized template definition.
11051 This is needed if tsubsting causes an error. */
11052 typedecl = TYPE_MAIN_DECL (pattern);
11053 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
11054 DECL_SOURCE_LOCATION (typedecl);
11055
11056 TYPE_PACKED (type) = TYPE_PACKED (pattern);
11057 SET_TYPE_ALIGN (type, TYPE_ALIGN (pattern));
11058 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
11059 CLASSTYPE_NON_AGGREGATE (type) = CLASSTYPE_NON_AGGREGATE (pattern);
11060 if (ANON_AGGR_TYPE_P (pattern))
11061 SET_ANON_AGGR_TYPE_P (type);
11062 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
11063 {
11064 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
11065 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
11066 /* Adjust visibility for template arguments. */
11067 determine_visibility (TYPE_MAIN_DECL (type));
11068 }
11069 if (CLASS_TYPE_P (type))
11070 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
11071
11072 pbinfo = TYPE_BINFO (pattern);
11073
11074 /* We should never instantiate a nested class before its enclosing
11075 class; we need to look up the nested class by name before we can
11076 instantiate it, and that lookup should instantiate the enclosing
11077 class. */
11078 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
11079 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
11080
11081 base_list = NULL_TREE;
11082 if (BINFO_N_BASE_BINFOS (pbinfo))
11083 {
11084 tree pbase_binfo;
11085 tree pushed_scope;
11086 int i;
11087
11088 /* We must enter the scope containing the type, as that is where
11089 the accessibility of types named in dependent bases are
11090 looked up from. */
11091 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
11092
11093 /* Substitute into each of the bases to determine the actual
11094 basetypes. */
11095 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
11096 {
11097 tree base;
11098 tree access = BINFO_BASE_ACCESS (pbinfo, i);
11099 tree expanded_bases = NULL_TREE;
11100 int idx, len = 1;
11101
11102 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
11103 {
11104 expanded_bases =
11105 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
11106 args, tf_error, NULL_TREE);
11107 if (expanded_bases == error_mark_node)
11108 continue;
11109
11110 len = TREE_VEC_LENGTH (expanded_bases);
11111 }
11112
11113 for (idx = 0; idx < len; idx++)
11114 {
11115 if (expanded_bases)
11116 /* Extract the already-expanded base class. */
11117 base = TREE_VEC_ELT (expanded_bases, idx);
11118 else
11119 /* Substitute to figure out the base class. */
11120 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
11121 NULL_TREE);
11122
11123 if (base == error_mark_node)
11124 continue;
11125
11126 base_list = tree_cons (access, base, base_list);
11127 if (BINFO_VIRTUAL_P (pbase_binfo))
11128 TREE_TYPE (base_list) = integer_type_node;
11129 }
11130 }
11131
11132 /* The list is now in reverse order; correct that. */
11133 base_list = nreverse (base_list);
11134
11135 if (pushed_scope)
11136 pop_scope (pushed_scope);
11137 }
11138 /* Now call xref_basetypes to set up all the base-class
11139 information. */
11140 xref_basetypes (type, base_list);
11141
11142 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
11143 (int) ATTR_FLAG_TYPE_IN_PLACE,
11144 args, tf_error, NULL_TREE);
11145 fixup_attribute_variants (type);
11146
11147 /* Now that our base classes are set up, enter the scope of the
11148 class, so that name lookups into base classes, etc. will work
11149 correctly. This is precisely analogous to what we do in
11150 begin_class_definition when defining an ordinary non-template
11151 class, except we also need to push the enclosing classes. */
11152 push_nested_class (type);
11153
11154 /* Now members are processed in the order of declaration. */
11155 for (member = CLASSTYPE_DECL_LIST (pattern);
11156 member; member = TREE_CHAIN (member))
11157 {
11158 tree t = TREE_VALUE (member);
11159
11160 if (TREE_PURPOSE (member))
11161 {
11162 if (TYPE_P (t))
11163 {
11164 if (LAMBDA_TYPE_P (t))
11165 /* A closure type for a lambda in an NSDMI or default argument.
11166 Ignore it; it will be regenerated when needed. */
11167 continue;
11168
11169 /* Build new CLASSTYPE_NESTED_UTDS. */
11170
11171 tree newtag;
11172 bool class_template_p;
11173
11174 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
11175 && TYPE_LANG_SPECIFIC (t)
11176 && CLASSTYPE_IS_TEMPLATE (t));
11177 /* If the member is a class template, then -- even after
11178 substitution -- there may be dependent types in the
11179 template argument list for the class. We increment
11180 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
11181 that function will assume that no types are dependent
11182 when outside of a template. */
11183 if (class_template_p)
11184 ++processing_template_decl;
11185 newtag = tsubst (t, args, tf_error, NULL_TREE);
11186 if (class_template_p)
11187 --processing_template_decl;
11188 if (newtag == error_mark_node)
11189 continue;
11190
11191 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
11192 {
11193 tree name = TYPE_IDENTIFIER (t);
11194
11195 if (class_template_p)
11196 /* Unfortunately, lookup_template_class sets
11197 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
11198 instantiation (i.e., for the type of a member
11199 template class nested within a template class.)
11200 This behavior is required for
11201 maybe_process_partial_specialization to work
11202 correctly, but is not accurate in this case;
11203 the TAG is not an instantiation of anything.
11204 (The corresponding TEMPLATE_DECL is an
11205 instantiation, but the TYPE is not.) */
11206 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
11207
11208 /* Now, we call pushtag to put this NEWTAG into the scope of
11209 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
11210 pushtag calling push_template_decl. We don't have to do
11211 this for enums because it will already have been done in
11212 tsubst_enum. */
11213 if (name)
11214 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
11215 pushtag (name, newtag, /*tag_scope=*/ts_current);
11216 }
11217 }
11218 else if (DECL_DECLARES_FUNCTION_P (t))
11219 {
11220 tree r;
11221
11222 if (TREE_CODE (t) == TEMPLATE_DECL)
11223 ++processing_template_decl;
11224 r = tsubst (t, args, tf_error, NULL_TREE);
11225 if (TREE_CODE (t) == TEMPLATE_DECL)
11226 --processing_template_decl;
11227 set_current_access_from_decl (r);
11228 finish_member_declaration (r);
11229 /* Instantiate members marked with attribute used. */
11230 if (r != error_mark_node && DECL_PRESERVE_P (r))
11231 mark_used (r);
11232 if (TREE_CODE (r) == FUNCTION_DECL
11233 && DECL_OMP_DECLARE_REDUCTION_P (r))
11234 cp_check_omp_declare_reduction (r);
11235 }
11236 else if ((DECL_CLASS_TEMPLATE_P (t) || DECL_IMPLICIT_TYPEDEF_P (t))
11237 && LAMBDA_TYPE_P (TREE_TYPE (t)))
11238 /* A closure type for a lambda in an NSDMI or default argument.
11239 Ignore it; it will be regenerated when needed. */;
11240 else
11241 {
11242 /* Build new TYPE_FIELDS. */
11243 if (TREE_CODE (t) == STATIC_ASSERT)
11244 {
11245 tree condition;
11246
11247 ++c_inhibit_evaluation_warnings;
11248 condition =
11249 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
11250 tf_warning_or_error, NULL_TREE,
11251 /*integral_constant_expression_p=*/true);
11252 --c_inhibit_evaluation_warnings;
11253
11254 finish_static_assert (condition,
11255 STATIC_ASSERT_MESSAGE (t),
11256 STATIC_ASSERT_SOURCE_LOCATION (t),
11257 /*member_p=*/true);
11258 }
11259 else if (TREE_CODE (t) != CONST_DECL)
11260 {
11261 tree r;
11262 tree vec = NULL_TREE;
11263 int len = 1;
11264
11265 /* The file and line for this declaration, to
11266 assist in error message reporting. Since we
11267 called push_tinst_level above, we don't need to
11268 restore these. */
11269 input_location = DECL_SOURCE_LOCATION (t);
11270
11271 if (TREE_CODE (t) == TEMPLATE_DECL)
11272 ++processing_template_decl;
11273 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
11274 if (TREE_CODE (t) == TEMPLATE_DECL)
11275 --processing_template_decl;
11276
11277 if (TREE_CODE (r) == TREE_VEC)
11278 {
11279 /* A capture pack became multiple fields. */
11280 vec = r;
11281 len = TREE_VEC_LENGTH (vec);
11282 }
11283
11284 for (int i = 0; i < len; ++i)
11285 {
11286 if (vec)
11287 r = TREE_VEC_ELT (vec, i);
11288 if (VAR_P (r))
11289 {
11290 /* In [temp.inst]:
11291
11292 [t]he initialization (and any associated
11293 side-effects) of a static data member does
11294 not occur unless the static data member is
11295 itself used in a way that requires the
11296 definition of the static data member to
11297 exist.
11298
11299 Therefore, we do not substitute into the
11300 initialized for the static data member here. */
11301 finish_static_data_member_decl
11302 (r,
11303 /*init=*/NULL_TREE,
11304 /*init_const_expr_p=*/false,
11305 /*asmspec_tree=*/NULL_TREE,
11306 /*flags=*/0);
11307 /* Instantiate members marked with attribute used. */
11308 if (r != error_mark_node && DECL_PRESERVE_P (r))
11309 mark_used (r);
11310 }
11311 else if (TREE_CODE (r) == FIELD_DECL)
11312 {
11313 /* Determine whether R has a valid type and can be
11314 completed later. If R is invalid, then its type
11315 is replaced by error_mark_node. */
11316 tree rtype = TREE_TYPE (r);
11317 if (can_complete_type_without_circularity (rtype))
11318 complete_type (rtype);
11319
11320 if (!complete_or_array_type_p (rtype))
11321 {
11322 /* If R's type couldn't be completed and
11323 it isn't a flexible array member (whose
11324 type is incomplete by definition) give
11325 an error. */
11326 cxx_incomplete_type_error (r, rtype);
11327 TREE_TYPE (r) = error_mark_node;
11328 }
11329 else if (TREE_CODE (rtype) == ARRAY_TYPE
11330 && TYPE_DOMAIN (rtype) == NULL_TREE
11331 && (TREE_CODE (type) == UNION_TYPE
11332 || TREE_CODE (type) == QUAL_UNION_TYPE))
11333 {
11334 error ("flexible array member %qD in union", r);
11335 TREE_TYPE (r) = error_mark_node;
11336 }
11337 }
11338
11339 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
11340 such a thing will already have been added to the field
11341 list by tsubst_enum in finish_member_declaration in the
11342 CLASSTYPE_NESTED_UTDS case above. */
11343 if (!(TREE_CODE (r) == TYPE_DECL
11344 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
11345 && DECL_ARTIFICIAL (r)))
11346 {
11347 set_current_access_from_decl (r);
11348 finish_member_declaration (r);
11349 }
11350 }
11351 }
11352 }
11353 }
11354 else
11355 {
11356 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
11357 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11358 {
11359 /* Build new CLASSTYPE_FRIEND_CLASSES. */
11360
11361 tree friend_type = t;
11362 bool adjust_processing_template_decl = false;
11363
11364 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
11365 {
11366 /* template <class T> friend class C; */
11367 friend_type = tsubst_friend_class (friend_type, args);
11368 adjust_processing_template_decl = true;
11369 }
11370 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
11371 {
11372 /* template <class T> friend class C::D; */
11373 friend_type = tsubst (friend_type, args,
11374 tf_warning_or_error, NULL_TREE);
11375 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
11376 friend_type = TREE_TYPE (friend_type);
11377 adjust_processing_template_decl = true;
11378 }
11379 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
11380 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
11381 {
11382 /* This could be either
11383
11384 friend class T::C;
11385
11386 when dependent_type_p is false or
11387
11388 template <class U> friend class T::C;
11389
11390 otherwise. */
11391 /* Bump processing_template_decl in case this is something like
11392 template <class T> friend struct A<T>::B. */
11393 ++processing_template_decl;
11394 friend_type = tsubst (friend_type, args,
11395 tf_warning_or_error, NULL_TREE);
11396 if (dependent_type_p (friend_type))
11397 adjust_processing_template_decl = true;
11398 --processing_template_decl;
11399 }
11400 else if (TREE_CODE (friend_type) != BOUND_TEMPLATE_TEMPLATE_PARM
11401 && !CLASSTYPE_USE_TEMPLATE (friend_type)
11402 && TYPE_HIDDEN_P (friend_type))
11403 {
11404 /* friend class C;
11405
11406 where C hasn't been declared yet. Let's lookup name
11407 from namespace scope directly, bypassing any name that
11408 come from dependent base class. */
11409 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
11410
11411 /* The call to xref_tag_from_type does injection for friend
11412 classes. */
11413 push_nested_namespace (ns);
11414 friend_type =
11415 xref_tag_from_type (friend_type, NULL_TREE,
11416 /*tag_scope=*/ts_current);
11417 pop_nested_namespace (ns);
11418 }
11419 else if (uses_template_parms (friend_type))
11420 /* friend class C<T>; */
11421 friend_type = tsubst (friend_type, args,
11422 tf_warning_or_error, NULL_TREE);
11423 /* Otherwise it's
11424
11425 friend class C;
11426
11427 where C is already declared or
11428
11429 friend class C<int>;
11430
11431 We don't have to do anything in these cases. */
11432
11433 if (adjust_processing_template_decl)
11434 /* Trick make_friend_class into realizing that the friend
11435 we're adding is a template, not an ordinary class. It's
11436 important that we use make_friend_class since it will
11437 perform some error-checking and output cross-reference
11438 information. */
11439 ++processing_template_decl;
11440
11441 if (friend_type != error_mark_node)
11442 make_friend_class (type, friend_type, /*complain=*/false);
11443
11444 if (adjust_processing_template_decl)
11445 --processing_template_decl;
11446 }
11447 else
11448 {
11449 /* Build new DECL_FRIENDLIST. */
11450 tree r;
11451
11452 /* The file and line for this declaration, to
11453 assist in error message reporting. Since we
11454 called push_tinst_level above, we don't need to
11455 restore these. */
11456 input_location = DECL_SOURCE_LOCATION (t);
11457
11458 if (TREE_CODE (t) == TEMPLATE_DECL)
11459 {
11460 ++processing_template_decl;
11461 push_deferring_access_checks (dk_no_check);
11462 }
11463
11464 r = tsubst_friend_function (t, args);
11465 add_friend (type, r, /*complain=*/false);
11466 if (TREE_CODE (t) == TEMPLATE_DECL)
11467 {
11468 pop_deferring_access_checks ();
11469 --processing_template_decl;
11470 }
11471 }
11472 }
11473 }
11474
11475 if (fn_context)
11476 {
11477 /* Restore these before substituting into the lambda capture
11478 initializers. */
11479 cp_unevaluated_operand = saved_unevaluated_operand;
11480 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11481 }
11482
11483 /* Set the file and line number information to whatever is given for
11484 the class itself. This puts error messages involving generated
11485 implicit functions at a predictable point, and the same point
11486 that would be used for non-template classes. */
11487 input_location = DECL_SOURCE_LOCATION (typedecl);
11488
11489 unreverse_member_declarations (type);
11490 finish_struct_1 (type);
11491 TYPE_BEING_DEFINED (type) = 0;
11492
11493 /* We don't instantiate default arguments for member functions. 14.7.1:
11494
11495 The implicit instantiation of a class template specialization causes
11496 the implicit instantiation of the declarations, but not of the
11497 definitions or default arguments, of the class member functions,
11498 member classes, static data members and member templates.... */
11499
11500 /* Some typedefs referenced from within the template code need to be access
11501 checked at template instantiation time, i.e now. These types were
11502 added to the template at parsing time. Let's get those and perform
11503 the access checks then. */
11504 perform_typedefs_access_check (pattern, args);
11505 perform_deferred_access_checks (tf_warning_or_error);
11506 pop_nested_class ();
11507 maximum_field_alignment = saved_maximum_field_alignment;
11508 if (!fn_context)
11509 pop_from_top_level ();
11510 pop_tinst_level ();
11511
11512 /* The vtable for a template class can be emitted in any translation
11513 unit in which the class is instantiated. When there is no key
11514 method, however, finish_struct_1 will already have added TYPE to
11515 the keyed_classes. */
11516 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
11517 vec_safe_push (keyed_classes, type);
11518
11519 return type;
11520 }
11521
11522 /* Wrapper for instantiate_class_template_1. */
11523
11524 tree
11525 instantiate_class_template (tree type)
11526 {
11527 tree ret;
11528 timevar_push (TV_TEMPLATE_INST);
11529 ret = instantiate_class_template_1 (type);
11530 timevar_pop (TV_TEMPLATE_INST);
11531 return ret;
11532 }
11533
11534 static tree
11535 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11536 {
11537 tree r;
11538
11539 if (!t)
11540 r = t;
11541 else if (TYPE_P (t))
11542 r = tsubst (t, args, complain, in_decl);
11543 else
11544 {
11545 if (!(complain & tf_warning))
11546 ++c_inhibit_evaluation_warnings;
11547 r = tsubst_expr (t, args, complain, in_decl,
11548 /*integral_constant_expression_p=*/true);
11549 if (!(complain & tf_warning))
11550 --c_inhibit_evaluation_warnings;
11551 }
11552 return r;
11553 }
11554
11555 /* Given a function parameter pack TMPL_PARM and some function parameters
11556 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
11557 and set *SPEC_P to point at the next point in the list. */
11558
11559 tree
11560 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
11561 {
11562 /* Collect all of the extra "packed" parameters into an
11563 argument pack. */
11564 tree parmvec;
11565 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
11566 tree spec_parm = *spec_p;
11567 int i, len;
11568
11569 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
11570 if (tmpl_parm
11571 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
11572 break;
11573
11574 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
11575 parmvec = make_tree_vec (len);
11576 spec_parm = *spec_p;
11577 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
11578 {
11579 tree elt = spec_parm;
11580 if (DECL_PACK_P (elt))
11581 elt = make_pack_expansion (elt);
11582 TREE_VEC_ELT (parmvec, i) = elt;
11583 }
11584
11585 /* Build the argument packs. */
11586 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
11587 *spec_p = spec_parm;
11588
11589 return argpack;
11590 }
11591
11592 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
11593 NONTYPE_ARGUMENT_PACK. */
11594
11595 static tree
11596 make_fnparm_pack (tree spec_parm)
11597 {
11598 return extract_fnparm_pack (NULL_TREE, &spec_parm);
11599 }
11600
11601 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
11602 pack expansion with no extra args, 2 if it has extra args, or 0
11603 if it is not a pack expansion. */
11604
11605 static int
11606 argument_pack_element_is_expansion_p (tree arg_pack, int i)
11607 {
11608 if (TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
11609 /* We're being called before this happens in tsubst_pack_expansion. */
11610 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
11611 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
11612 if (i >= TREE_VEC_LENGTH (vec))
11613 return 0;
11614 tree elt = TREE_VEC_ELT (vec, i);
11615 if (DECL_P (elt))
11616 /* A decl pack is itself an expansion. */
11617 elt = TREE_TYPE (elt);
11618 if (!PACK_EXPANSION_P (elt))
11619 return 0;
11620 if (PACK_EXPANSION_EXTRA_ARGS (elt))
11621 return 2;
11622 return 1;
11623 }
11624
11625
11626 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
11627
11628 static tree
11629 make_argument_pack_select (tree arg_pack, unsigned index)
11630 {
11631 tree aps = make_node (ARGUMENT_PACK_SELECT);
11632
11633 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
11634 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
11635
11636 return aps;
11637 }
11638
11639 /* This is a subroutine of tsubst_pack_expansion.
11640
11641 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
11642 mechanism to store the (non complete list of) arguments of the
11643 substitution and return a non substituted pack expansion, in order
11644 to wait for when we have enough arguments to really perform the
11645 substitution. */
11646
11647 static bool
11648 use_pack_expansion_extra_args_p (tree parm_packs,
11649 int arg_pack_len,
11650 bool has_empty_arg)
11651 {
11652 /* If one pack has an expansion and another pack has a normal
11653 argument or if one pack has an empty argument and an another
11654 one hasn't then tsubst_pack_expansion cannot perform the
11655 substitution and need to fall back on the
11656 PACK_EXPANSION_EXTRA mechanism. */
11657 if (parm_packs == NULL_TREE)
11658 return false;
11659 else if (has_empty_arg)
11660 return true;
11661
11662 bool has_expansion_arg = false;
11663 for (int i = 0 ; i < arg_pack_len; ++i)
11664 {
11665 bool has_non_expansion_arg = false;
11666 for (tree parm_pack = parm_packs;
11667 parm_pack;
11668 parm_pack = TREE_CHAIN (parm_pack))
11669 {
11670 tree arg = TREE_VALUE (parm_pack);
11671
11672 int exp = argument_pack_element_is_expansion_p (arg, i);
11673 if (exp == 2)
11674 /* We can't substitute a pack expansion with extra args into
11675 our pattern. */
11676 return true;
11677 else if (exp)
11678 has_expansion_arg = true;
11679 else
11680 has_non_expansion_arg = true;
11681 }
11682
11683 if (has_expansion_arg && has_non_expansion_arg)
11684 return true;
11685 }
11686 return false;
11687 }
11688
11689 /* [temp.variadic]/6 says that:
11690
11691 The instantiation of a pack expansion [...]
11692 produces a list E1,E2, ..., En, where N is the number of elements
11693 in the pack expansion parameters.
11694
11695 This subroutine of tsubst_pack_expansion produces one of these Ei.
11696
11697 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
11698 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
11699 PATTERN, and each TREE_VALUE is its corresponding argument pack.
11700 INDEX is the index 'i' of the element Ei to produce. ARGS,
11701 COMPLAIN, and IN_DECL are the same parameters as for the
11702 tsubst_pack_expansion function.
11703
11704 The function returns the resulting Ei upon successful completion,
11705 or error_mark_node.
11706
11707 Note that this function possibly modifies the ARGS parameter, so
11708 it's the responsibility of the caller to restore it. */
11709
11710 static tree
11711 gen_elem_of_pack_expansion_instantiation (tree pattern,
11712 tree parm_packs,
11713 unsigned index,
11714 tree args /* This parm gets
11715 modified. */,
11716 tsubst_flags_t complain,
11717 tree in_decl)
11718 {
11719 tree t;
11720 bool ith_elem_is_expansion = false;
11721
11722 /* For each parameter pack, change the substitution of the parameter
11723 pack to the ith argument in its argument pack, then expand the
11724 pattern. */
11725 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
11726 {
11727 tree parm = TREE_PURPOSE (pack);
11728 tree arg_pack = TREE_VALUE (pack);
11729 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
11730
11731 ith_elem_is_expansion |=
11732 argument_pack_element_is_expansion_p (arg_pack, index);
11733
11734 /* Select the Ith argument from the pack. */
11735 if (TREE_CODE (parm) == PARM_DECL
11736 || VAR_P (parm)
11737 || TREE_CODE (parm) == FIELD_DECL)
11738 {
11739 if (index == 0)
11740 {
11741 aps = make_argument_pack_select (arg_pack, index);
11742 if (!mark_used (parm, complain) && !(complain & tf_error))
11743 return error_mark_node;
11744 register_local_specialization (aps, parm);
11745 }
11746 else
11747 aps = retrieve_local_specialization (parm);
11748 }
11749 else
11750 {
11751 int idx, level;
11752 template_parm_level_and_index (parm, &level, &idx);
11753
11754 if (index == 0)
11755 {
11756 aps = make_argument_pack_select (arg_pack, index);
11757 /* Update the corresponding argument. */
11758 TMPL_ARG (args, level, idx) = aps;
11759 }
11760 else
11761 /* Re-use the ARGUMENT_PACK_SELECT. */
11762 aps = TMPL_ARG (args, level, idx);
11763 }
11764 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
11765 }
11766
11767 /* Substitute into the PATTERN with the (possibly altered)
11768 arguments. */
11769 if (pattern == in_decl)
11770 /* Expanding a fixed parameter pack from
11771 coerce_template_parameter_pack. */
11772 t = tsubst_decl (pattern, args, complain);
11773 else if (pattern == error_mark_node)
11774 t = error_mark_node;
11775 else if (constraint_p (pattern))
11776 {
11777 if (processing_template_decl)
11778 t = tsubst_constraint (pattern, args, complain, in_decl);
11779 else
11780 t = (constraints_satisfied_p (pattern, args)
11781 ? boolean_true_node : boolean_false_node);
11782 }
11783 else if (!TYPE_P (pattern))
11784 t = tsubst_expr (pattern, args, complain, in_decl,
11785 /*integral_constant_expression_p=*/false);
11786 else
11787 t = tsubst (pattern, args, complain, in_decl);
11788
11789 /* If the Ith argument pack element is a pack expansion, then
11790 the Ith element resulting from the substituting is going to
11791 be a pack expansion as well. */
11792 if (ith_elem_is_expansion)
11793 t = make_pack_expansion (t, complain);
11794
11795 return t;
11796 }
11797
11798 /* When the unexpanded parameter pack in a fold expression expands to an empty
11799 sequence, the value of the expression is as follows; the program is
11800 ill-formed if the operator is not listed in this table.
11801
11802 && true
11803 || false
11804 , void() */
11805
11806 tree
11807 expand_empty_fold (tree t, tsubst_flags_t complain)
11808 {
11809 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
11810 if (!FOLD_EXPR_MODIFY_P (t))
11811 switch (code)
11812 {
11813 case TRUTH_ANDIF_EXPR:
11814 return boolean_true_node;
11815 case TRUTH_ORIF_EXPR:
11816 return boolean_false_node;
11817 case COMPOUND_EXPR:
11818 return void_node;
11819 default:
11820 break;
11821 }
11822
11823 if (complain & tf_error)
11824 error_at (location_of (t),
11825 "fold of empty expansion over %O", code);
11826 return error_mark_node;
11827 }
11828
11829 /* Given a fold-expression T and a current LEFT and RIGHT operand,
11830 form an expression that combines the two terms using the
11831 operator of T. */
11832
11833 static tree
11834 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
11835 {
11836 tree op = FOLD_EXPR_OP (t);
11837 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
11838
11839 // Handle compound assignment operators.
11840 if (FOLD_EXPR_MODIFY_P (t))
11841 return build_x_modify_expr (input_location, left, code, right, complain);
11842
11843 switch (code)
11844 {
11845 case COMPOUND_EXPR:
11846 return build_x_compound_expr (input_location, left, right, complain);
11847 default:
11848 return build_x_binary_op (input_location, code,
11849 left, TREE_CODE (left),
11850 right, TREE_CODE (right),
11851 /*overload=*/NULL,
11852 complain);
11853 }
11854 }
11855
11856 /* Substitute ARGS into the pack of a fold expression T. */
11857
11858 static inline tree
11859 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11860 {
11861 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
11862 }
11863
11864 /* Substitute ARGS into the pack of a fold expression T. */
11865
11866 static inline tree
11867 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11868 {
11869 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
11870 }
11871
11872 /* Expand a PACK of arguments into a grouped as left fold.
11873 Given a pack containing elements A0, A1, ..., An and an
11874 operator @, this builds the expression:
11875
11876 ((A0 @ A1) @ A2) ... @ An
11877
11878 Note that PACK must not be empty.
11879
11880 The operator is defined by the original fold expression T. */
11881
11882 static tree
11883 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
11884 {
11885 tree left = TREE_VEC_ELT (pack, 0);
11886 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
11887 {
11888 tree right = TREE_VEC_ELT (pack, i);
11889 left = fold_expression (t, left, right, complain);
11890 }
11891 return left;
11892 }
11893
11894 /* Substitute into a unary left fold expression. */
11895
11896 static tree
11897 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
11898 tree in_decl)
11899 {
11900 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11901 if (pack == error_mark_node)
11902 return error_mark_node;
11903 if (PACK_EXPANSION_P (pack))
11904 {
11905 tree r = copy_node (t);
11906 FOLD_EXPR_PACK (r) = pack;
11907 return r;
11908 }
11909 if (TREE_VEC_LENGTH (pack) == 0)
11910 return expand_empty_fold (t, complain);
11911 else
11912 return expand_left_fold (t, pack, complain);
11913 }
11914
11915 /* Substitute into a binary left fold expression.
11916
11917 Do ths by building a single (non-empty) vector of argumnts and
11918 building the expression from those elements. */
11919
11920 static tree
11921 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
11922 tree in_decl)
11923 {
11924 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11925 if (pack == error_mark_node)
11926 return error_mark_node;
11927 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
11928 if (init == error_mark_node)
11929 return error_mark_node;
11930
11931 if (PACK_EXPANSION_P (pack))
11932 {
11933 tree r = copy_node (t);
11934 FOLD_EXPR_PACK (r) = pack;
11935 FOLD_EXPR_INIT (r) = init;
11936 return r;
11937 }
11938
11939 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
11940 TREE_VEC_ELT (vec, 0) = init;
11941 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
11942 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
11943
11944 return expand_left_fold (t, vec, complain);
11945 }
11946
11947 /* Expand a PACK of arguments into a grouped as right fold.
11948 Given a pack containing elementns A0, A1, ..., and an
11949 operator @, this builds the expression:
11950
11951 A0@ ... (An-2 @ (An-1 @ An))
11952
11953 Note that PACK must not be empty.
11954
11955 The operator is defined by the original fold expression T. */
11956
11957 tree
11958 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
11959 {
11960 // Build the expression.
11961 int n = TREE_VEC_LENGTH (pack);
11962 tree right = TREE_VEC_ELT (pack, n - 1);
11963 for (--n; n != 0; --n)
11964 {
11965 tree left = TREE_VEC_ELT (pack, n - 1);
11966 right = fold_expression (t, left, right, complain);
11967 }
11968 return right;
11969 }
11970
11971 /* Substitute into a unary right fold expression. */
11972
11973 static tree
11974 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
11975 tree in_decl)
11976 {
11977 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11978 if (pack == error_mark_node)
11979 return error_mark_node;
11980 if (PACK_EXPANSION_P (pack))
11981 {
11982 tree r = copy_node (t);
11983 FOLD_EXPR_PACK (r) = pack;
11984 return r;
11985 }
11986 if (TREE_VEC_LENGTH (pack) == 0)
11987 return expand_empty_fold (t, complain);
11988 else
11989 return expand_right_fold (t, pack, complain);
11990 }
11991
11992 /* Substitute into a binary right fold expression.
11993
11994 Do ths by building a single (non-empty) vector of arguments and
11995 building the expression from those elements. */
11996
11997 static tree
11998 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
11999 tree in_decl)
12000 {
12001 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
12002 if (pack == error_mark_node)
12003 return error_mark_node;
12004 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
12005 if (init == error_mark_node)
12006 return error_mark_node;
12007
12008 if (PACK_EXPANSION_P (pack))
12009 {
12010 tree r = copy_node (t);
12011 FOLD_EXPR_PACK (r) = pack;
12012 FOLD_EXPR_INIT (r) = init;
12013 return r;
12014 }
12015
12016 int n = TREE_VEC_LENGTH (pack);
12017 tree vec = make_tree_vec (n + 1);
12018 for (int i = 0; i < n; ++i)
12019 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
12020 TREE_VEC_ELT (vec, n) = init;
12021
12022 return expand_right_fold (t, vec, complain);
12023 }
12024
12025 /* Walk through the pattern of a pack expansion, adding everything in
12026 local_specializations to a list. */
12027
12028 class el_data
12029 {
12030 public:
12031 hash_set<tree> internal;
12032 tree extra;
12033 tsubst_flags_t complain;
12034
12035 el_data (tsubst_flags_t c)
12036 : extra (NULL_TREE), complain (c) {}
12037 };
12038 static tree
12039 extract_locals_r (tree *tp, int */*walk_subtrees*/, void *data_)
12040 {
12041 el_data &data = *reinterpret_cast<el_data*>(data_);
12042 tree *extra = &data.extra;
12043 tsubst_flags_t complain = data.complain;
12044
12045 if (TYPE_P (*tp) && typedef_variant_p (*tp))
12046 /* Remember local typedefs (85214). */
12047 tp = &TYPE_NAME (*tp);
12048
12049 if (TREE_CODE (*tp) == DECL_EXPR)
12050 data.internal.add (DECL_EXPR_DECL (*tp));
12051 else if (tree spec = retrieve_local_specialization (*tp))
12052 {
12053 if (data.internal.contains (*tp))
12054 /* Don't mess with variables declared within the pattern. */
12055 return NULL_TREE;
12056 if (TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK)
12057 {
12058 /* Maybe pull out the PARM_DECL for a partial instantiation. */
12059 tree args = ARGUMENT_PACK_ARGS (spec);
12060 if (TREE_VEC_LENGTH (args) == 1)
12061 {
12062 tree elt = TREE_VEC_ELT (args, 0);
12063 if (PACK_EXPANSION_P (elt))
12064 elt = PACK_EXPANSION_PATTERN (elt);
12065 if (DECL_PACK_P (elt))
12066 spec = elt;
12067 }
12068 if (TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK)
12069 {
12070 /* Handle lambda capture here, since we aren't doing any
12071 substitution now, and so tsubst_copy won't call
12072 process_outer_var_ref. */
12073 tree args = ARGUMENT_PACK_ARGS (spec);
12074 int len = TREE_VEC_LENGTH (args);
12075 for (int i = 0; i < len; ++i)
12076 {
12077 tree arg = TREE_VEC_ELT (args, i);
12078 tree carg = arg;
12079 if (outer_automatic_var_p (arg))
12080 carg = process_outer_var_ref (arg, complain);
12081 if (carg != arg)
12082 {
12083 /* Make a new NONTYPE_ARGUMENT_PACK of the capture
12084 proxies. */
12085 if (i == 0)
12086 {
12087 spec = copy_node (spec);
12088 args = copy_node (args);
12089 SET_ARGUMENT_PACK_ARGS (spec, args);
12090 register_local_specialization (spec, *tp);
12091 }
12092 TREE_VEC_ELT (args, i) = carg;
12093 }
12094 }
12095 }
12096 }
12097 if (outer_automatic_var_p (spec))
12098 spec = process_outer_var_ref (spec, complain);
12099 *extra = tree_cons (*tp, spec, *extra);
12100 }
12101 return NULL_TREE;
12102 }
12103 static tree
12104 extract_local_specs (tree pattern, tsubst_flags_t complain)
12105 {
12106 el_data data (complain);
12107 cp_walk_tree_without_duplicates (&pattern, extract_locals_r, &data);
12108 return data.extra;
12109 }
12110
12111 /* Extract any uses of local_specializations from PATTERN and add them to ARGS
12112 for use in PACK_EXPANSION_EXTRA_ARGS. */
12113
12114 tree
12115 build_extra_args (tree pattern, tree args, tsubst_flags_t complain)
12116 {
12117 tree extra = args;
12118 if (local_specializations)
12119 if (tree locals = extract_local_specs (pattern, complain))
12120 extra = tree_cons (NULL_TREE, extra, locals);
12121 return extra;
12122 }
12123
12124 /* Apply any local specializations from PACK_EXPANSION_EXTRA_ARGS and add the
12125 normal template args to ARGS. */
12126
12127 tree
12128 add_extra_args (tree extra, tree args)
12129 {
12130 if (extra && TREE_CODE (extra) == TREE_LIST)
12131 {
12132 for (tree elt = TREE_CHAIN (extra); elt; elt = TREE_CHAIN (elt))
12133 {
12134 /* The partial instantiation involved local declarations collected in
12135 extract_local_specs; map from the general template to our local
12136 context. */
12137 tree gen = TREE_PURPOSE (elt);
12138 tree inst = TREE_VALUE (elt);
12139 if (DECL_P (inst))
12140 if (tree local = retrieve_local_specialization (inst))
12141 inst = local;
12142 /* else inst is already a full instantiation of the pack. */
12143 register_local_specialization (inst, gen);
12144 }
12145 gcc_assert (!TREE_PURPOSE (extra));
12146 extra = TREE_VALUE (extra);
12147 }
12148 return add_to_template_args (extra, args);
12149 }
12150
12151 /* Substitute ARGS into T, which is an pack expansion
12152 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
12153 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
12154 (if only a partial substitution could be performed) or
12155 ERROR_MARK_NODE if there was an error. */
12156 tree
12157 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
12158 tree in_decl)
12159 {
12160 tree pattern;
12161 tree pack, packs = NULL_TREE;
12162 bool unsubstituted_packs = false;
12163 bool unsubstituted_fn_pack = false;
12164 int i, len = -1;
12165 tree result;
12166 hash_map<tree, tree> *saved_local_specializations = NULL;
12167 bool need_local_specializations = false;
12168 int levels;
12169
12170 gcc_assert (PACK_EXPANSION_P (t));
12171 pattern = PACK_EXPANSION_PATTERN (t);
12172
12173 /* Add in any args remembered from an earlier partial instantiation. */
12174 args = add_extra_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
12175
12176 levels = TMPL_ARGS_DEPTH (args);
12177
12178 /* Determine the argument packs that will instantiate the parameter
12179 packs used in the expansion expression. While we're at it,
12180 compute the number of arguments to be expanded and make sure it
12181 is consistent. */
12182 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
12183 pack = TREE_CHAIN (pack))
12184 {
12185 tree parm_pack = TREE_VALUE (pack);
12186 tree arg_pack = NULL_TREE;
12187 tree orig_arg = NULL_TREE;
12188 int level = 0;
12189
12190 if (TREE_CODE (parm_pack) == BASES)
12191 {
12192 gcc_assert (parm_pack == pattern);
12193 if (BASES_DIRECT (parm_pack))
12194 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
12195 args, complain,
12196 in_decl, false),
12197 complain);
12198 else
12199 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
12200 args, complain, in_decl,
12201 false), complain);
12202 }
12203 else if (builtin_pack_call_p (parm_pack))
12204 {
12205 if (parm_pack != pattern)
12206 {
12207 if (complain & tf_error)
12208 sorry ("%qE is not the entire pattern of the pack expansion",
12209 parm_pack);
12210 return error_mark_node;
12211 }
12212 return expand_builtin_pack_call (parm_pack, args,
12213 complain, in_decl);
12214 }
12215 else if (TREE_CODE (parm_pack) == PARM_DECL)
12216 {
12217 /* We know we have correct local_specializations if this
12218 expansion is at function scope, or if we're dealing with a
12219 local parameter in a requires expression; for the latter,
12220 tsubst_requires_expr set it up appropriately. */
12221 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
12222 arg_pack = retrieve_local_specialization (parm_pack);
12223 else
12224 /* We can't rely on local_specializations for a parameter
12225 name used later in a function declaration (such as in a
12226 late-specified return type). Even if it exists, it might
12227 have the wrong value for a recursive call. */
12228 need_local_specializations = true;
12229
12230 if (!arg_pack)
12231 {
12232 /* This parameter pack was used in an unevaluated context. Just
12233 make a dummy decl, since it's only used for its type. */
12234 ++cp_unevaluated_operand;
12235 arg_pack = tsubst_decl (parm_pack, args, complain);
12236 --cp_unevaluated_operand;
12237 if (arg_pack && DECL_PACK_P (arg_pack))
12238 /* Partial instantiation of the parm_pack, we can't build
12239 up an argument pack yet. */
12240 arg_pack = NULL_TREE;
12241 else
12242 arg_pack = make_fnparm_pack (arg_pack);
12243 }
12244 else if (argument_pack_element_is_expansion_p (arg_pack, 0))
12245 /* This argument pack isn't fully instantiated yet. We set this
12246 flag rather than clear arg_pack because we do want to do the
12247 optimization below, and we don't want to substitute directly
12248 into the pattern (as that would expose a NONTYPE_ARGUMENT_PACK
12249 where it isn't expected). */
12250 unsubstituted_fn_pack = true;
12251 }
12252 else if (is_capture_proxy (parm_pack))
12253 {
12254 arg_pack = retrieve_local_specialization (parm_pack);
12255 if (argument_pack_element_is_expansion_p (arg_pack, 0))
12256 unsubstituted_fn_pack = true;
12257 }
12258 else
12259 {
12260 int idx;
12261 template_parm_level_and_index (parm_pack, &level, &idx);
12262
12263 if (level <= levels)
12264 arg_pack = TMPL_ARG (args, level, idx);
12265 }
12266
12267 orig_arg = arg_pack;
12268 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
12269 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
12270
12271 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
12272 /* This can only happen if we forget to expand an argument
12273 pack somewhere else. Just return an error, silently. */
12274 {
12275 result = make_tree_vec (1);
12276 TREE_VEC_ELT (result, 0) = error_mark_node;
12277 return result;
12278 }
12279
12280 if (arg_pack)
12281 {
12282 int my_len =
12283 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
12284
12285 /* Don't bother trying to do a partial substitution with
12286 incomplete packs; we'll try again after deduction. */
12287 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
12288 return t;
12289
12290 if (len < 0)
12291 len = my_len;
12292 else if (len != my_len
12293 && !unsubstituted_fn_pack)
12294 {
12295 if (!(complain & tf_error))
12296 /* Fail quietly. */;
12297 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
12298 error ("mismatched argument pack lengths while expanding %qT",
12299 pattern);
12300 else
12301 error ("mismatched argument pack lengths while expanding %qE",
12302 pattern);
12303 return error_mark_node;
12304 }
12305
12306 /* Keep track of the parameter packs and their corresponding
12307 argument packs. */
12308 packs = tree_cons (parm_pack, arg_pack, packs);
12309 TREE_TYPE (packs) = orig_arg;
12310 }
12311 else
12312 {
12313 /* We can't substitute for this parameter pack. We use a flag as
12314 well as the missing_level counter because function parameter
12315 packs don't have a level. */
12316 gcc_assert (processing_template_decl || is_auto (parm_pack));
12317 unsubstituted_packs = true;
12318 }
12319 }
12320
12321 /* If the expansion is just T..., return the matching argument pack, unless
12322 we need to call convert_from_reference on all the elements. This is an
12323 important optimization; see c++/68422. */
12324 if (!unsubstituted_packs
12325 && TREE_PURPOSE (packs) == pattern)
12326 {
12327 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
12328
12329 /* If the argument pack is a single pack expansion, pull it out. */
12330 if (TREE_VEC_LENGTH (args) == 1
12331 && pack_expansion_args_count (args))
12332 return TREE_VEC_ELT (args, 0);
12333
12334 /* Types need no adjustment, nor does sizeof..., and if we still have
12335 some pack expansion args we won't do anything yet. */
12336 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
12337 || PACK_EXPANSION_SIZEOF_P (t)
12338 || pack_expansion_args_count (args))
12339 return args;
12340 /* Also optimize expression pack expansions if we can tell that the
12341 elements won't have reference type. */
12342 tree type = TREE_TYPE (pattern);
12343 if (type && !TYPE_REF_P (type)
12344 && !PACK_EXPANSION_P (type)
12345 && !WILDCARD_TYPE_P (type))
12346 return args;
12347 /* Otherwise use the normal path so we get convert_from_reference. */
12348 }
12349
12350 /* We cannot expand this expansion expression, because we don't have
12351 all of the argument packs we need. */
12352 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
12353 {
12354 /* We got some full packs, but we can't substitute them in until we
12355 have values for all the packs. So remember these until then. */
12356
12357 t = make_pack_expansion (pattern, complain);
12358 PACK_EXPANSION_EXTRA_ARGS (t)
12359 = build_extra_args (pattern, args, complain);
12360 return t;
12361 }
12362 else if (unsubstituted_packs)
12363 {
12364 /* There were no real arguments, we're just replacing a parameter
12365 pack with another version of itself. Substitute into the
12366 pattern and return a PACK_EXPANSION_*. The caller will need to
12367 deal with that. */
12368 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
12369 t = tsubst_expr (pattern, args, complain, in_decl,
12370 /*integral_constant_expression_p=*/false);
12371 else
12372 t = tsubst (pattern, args, complain, in_decl);
12373 t = make_pack_expansion (t, complain);
12374 return t;
12375 }
12376
12377 gcc_assert (len >= 0);
12378
12379 if (need_local_specializations)
12380 {
12381 /* We're in a late-specified return type, so create our own local
12382 specializations map; the current map is either NULL or (in the
12383 case of recursive unification) might have bindings that we don't
12384 want to use or alter. */
12385 saved_local_specializations = local_specializations;
12386 local_specializations = new hash_map<tree, tree>;
12387 }
12388
12389 /* For each argument in each argument pack, substitute into the
12390 pattern. */
12391 result = make_tree_vec (len);
12392 tree elem_args = copy_template_args (args);
12393 for (i = 0; i < len; ++i)
12394 {
12395 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
12396 i,
12397 elem_args, complain,
12398 in_decl);
12399 TREE_VEC_ELT (result, i) = t;
12400 if (t == error_mark_node)
12401 {
12402 result = error_mark_node;
12403 break;
12404 }
12405 }
12406
12407 /* Update ARGS to restore the substitution from parameter packs to
12408 their argument packs. */
12409 for (pack = packs; pack; pack = TREE_CHAIN (pack))
12410 {
12411 tree parm = TREE_PURPOSE (pack);
12412
12413 if (TREE_CODE (parm) == PARM_DECL
12414 || VAR_P (parm)
12415 || TREE_CODE (parm) == FIELD_DECL)
12416 register_local_specialization (TREE_TYPE (pack), parm);
12417 else
12418 {
12419 int idx, level;
12420
12421 if (TREE_VALUE (pack) == NULL_TREE)
12422 continue;
12423
12424 template_parm_level_and_index (parm, &level, &idx);
12425
12426 /* Update the corresponding argument. */
12427 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
12428 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
12429 TREE_TYPE (pack);
12430 else
12431 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
12432 }
12433 }
12434
12435 if (need_local_specializations)
12436 {
12437 delete local_specializations;
12438 local_specializations = saved_local_specializations;
12439 }
12440
12441 /* If the dependent pack arguments were such that we end up with only a
12442 single pack expansion again, there's no need to keep it in a TREE_VEC. */
12443 if (len == 1 && TREE_CODE (result) == TREE_VEC
12444 && PACK_EXPANSION_P (TREE_VEC_ELT (result, 0)))
12445 return TREE_VEC_ELT (result, 0);
12446
12447 return result;
12448 }
12449
12450 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
12451 TMPL. We do this using DECL_PARM_INDEX, which should work even with
12452 parameter packs; all parms generated from a function parameter pack will
12453 have the same DECL_PARM_INDEX. */
12454
12455 tree
12456 get_pattern_parm (tree parm, tree tmpl)
12457 {
12458 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
12459 tree patparm;
12460
12461 if (DECL_ARTIFICIAL (parm))
12462 {
12463 for (patparm = DECL_ARGUMENTS (pattern);
12464 patparm; patparm = DECL_CHAIN (patparm))
12465 if (DECL_ARTIFICIAL (patparm)
12466 && DECL_NAME (parm) == DECL_NAME (patparm))
12467 break;
12468 }
12469 else
12470 {
12471 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
12472 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
12473 gcc_assert (DECL_PARM_INDEX (patparm)
12474 == DECL_PARM_INDEX (parm));
12475 }
12476
12477 return patparm;
12478 }
12479
12480 /* Make an argument pack out of the TREE_VEC VEC. */
12481
12482 static tree
12483 make_argument_pack (tree vec)
12484 {
12485 tree pack;
12486 tree elt = TREE_VEC_ELT (vec, 0);
12487 if (TYPE_P (elt))
12488 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
12489 else
12490 {
12491 pack = make_node (NONTYPE_ARGUMENT_PACK);
12492 TREE_CONSTANT (pack) = 1;
12493 }
12494 SET_ARGUMENT_PACK_ARGS (pack, vec);
12495 return pack;
12496 }
12497
12498 /* Return an exact copy of template args T that can be modified
12499 independently. */
12500
12501 static tree
12502 copy_template_args (tree t)
12503 {
12504 if (t == error_mark_node)
12505 return t;
12506
12507 int len = TREE_VEC_LENGTH (t);
12508 tree new_vec = make_tree_vec (len);
12509
12510 for (int i = 0; i < len; ++i)
12511 {
12512 tree elt = TREE_VEC_ELT (t, i);
12513 if (elt && TREE_CODE (elt) == TREE_VEC)
12514 elt = copy_template_args (elt);
12515 TREE_VEC_ELT (new_vec, i) = elt;
12516 }
12517
12518 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
12519 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
12520
12521 return new_vec;
12522 }
12523
12524 /* Substitute ARGS into the vector or list of template arguments T. */
12525
12526 static tree
12527 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12528 {
12529 tree orig_t = t;
12530 int len, need_new = 0, i, expanded_len_adjust = 0, out;
12531 tree *elts;
12532
12533 if (t == error_mark_node)
12534 return error_mark_node;
12535
12536 len = TREE_VEC_LENGTH (t);
12537 elts = XALLOCAVEC (tree, len);
12538
12539 for (i = 0; i < len; i++)
12540 {
12541 tree orig_arg = TREE_VEC_ELT (t, i);
12542 tree new_arg;
12543
12544 if (TREE_CODE (orig_arg) == TREE_VEC)
12545 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
12546 else if (PACK_EXPANSION_P (orig_arg))
12547 {
12548 /* Substitute into an expansion expression. */
12549 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
12550
12551 if (TREE_CODE (new_arg) == TREE_VEC)
12552 /* Add to the expanded length adjustment the number of
12553 expanded arguments. We subtract one from this
12554 measurement, because the argument pack expression
12555 itself is already counted as 1 in
12556 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
12557 the argument pack is empty. */
12558 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
12559 }
12560 else if (ARGUMENT_PACK_P (orig_arg))
12561 {
12562 /* Substitute into each of the arguments. */
12563 new_arg = TYPE_P (orig_arg)
12564 ? cxx_make_type (TREE_CODE (orig_arg))
12565 : make_node (TREE_CODE (orig_arg));
12566
12567 tree pack_args = tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
12568 args, complain, in_decl);
12569 if (pack_args == error_mark_node)
12570 new_arg = error_mark_node;
12571 else
12572 SET_ARGUMENT_PACK_ARGS (new_arg, pack_args);
12573
12574 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK)
12575 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
12576 }
12577 else
12578 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
12579
12580 if (new_arg == error_mark_node)
12581 return error_mark_node;
12582
12583 elts[i] = new_arg;
12584 if (new_arg != orig_arg)
12585 need_new = 1;
12586 }
12587
12588 if (!need_new)
12589 return t;
12590
12591 /* Make space for the expanded arguments coming from template
12592 argument packs. */
12593 t = make_tree_vec (len + expanded_len_adjust);
12594 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
12595 arguments for a member template.
12596 In that case each TREE_VEC in ORIG_T represents a level of template
12597 arguments, and ORIG_T won't carry any non defaulted argument count.
12598 It will rather be the nested TREE_VECs that will carry one.
12599 In other words, ORIG_T carries a non defaulted argument count only
12600 if it doesn't contain any nested TREE_VEC. */
12601 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
12602 {
12603 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
12604 count += expanded_len_adjust;
12605 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
12606 }
12607 for (i = 0, out = 0; i < len; i++)
12608 {
12609 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
12610 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
12611 && TREE_CODE (elts[i]) == TREE_VEC)
12612 {
12613 int idx;
12614
12615 /* Now expand the template argument pack "in place". */
12616 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
12617 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
12618 }
12619 else
12620 {
12621 TREE_VEC_ELT (t, out) = elts[i];
12622 out++;
12623 }
12624 }
12625
12626 return t;
12627 }
12628
12629 /* Substitute ARGS into one level PARMS of template parameters. */
12630
12631 static tree
12632 tsubst_template_parms_level (tree parms, tree args, tsubst_flags_t complain)
12633 {
12634 if (parms == error_mark_node)
12635 return error_mark_node;
12636
12637 tree new_vec = make_tree_vec (TREE_VEC_LENGTH (parms));
12638
12639 for (int i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
12640 {
12641 tree tuple = TREE_VEC_ELT (parms, i);
12642
12643 if (tuple == error_mark_node)
12644 continue;
12645
12646 TREE_VEC_ELT (new_vec, i) =
12647 tsubst_template_parm (tuple, args, complain);
12648 }
12649
12650 return new_vec;
12651 }
12652
12653 /* Return the result of substituting ARGS into the template parameters
12654 given by PARMS. If there are m levels of ARGS and m + n levels of
12655 PARMS, then the result will contain n levels of PARMS. For
12656 example, if PARMS is `template <class T> template <class U>
12657 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
12658 result will be `template <int*, double, class V>'. */
12659
12660 static tree
12661 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
12662 {
12663 tree r = NULL_TREE;
12664 tree* new_parms;
12665
12666 /* When substituting into a template, we must set
12667 PROCESSING_TEMPLATE_DECL as the template parameters may be
12668 dependent if they are based on one-another, and the dependency
12669 predicates are short-circuit outside of templates. */
12670 ++processing_template_decl;
12671
12672 for (new_parms = &r;
12673 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
12674 new_parms = &(TREE_CHAIN (*new_parms)),
12675 parms = TREE_CHAIN (parms))
12676 {
12677 tree new_vec = tsubst_template_parms_level (TREE_VALUE (parms),
12678 args, complain);
12679 *new_parms =
12680 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
12681 - TMPL_ARGS_DEPTH (args)),
12682 new_vec, NULL_TREE);
12683 }
12684
12685 --processing_template_decl;
12686
12687 return r;
12688 }
12689
12690 /* Return the result of substituting ARGS into one template parameter
12691 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
12692 parameter and which TREE_PURPOSE is the default argument of the
12693 template parameter. */
12694
12695 static tree
12696 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
12697 {
12698 tree default_value, parm_decl;
12699
12700 if (args == NULL_TREE
12701 || t == NULL_TREE
12702 || t == error_mark_node)
12703 return t;
12704
12705 gcc_assert (TREE_CODE (t) == TREE_LIST);
12706
12707 default_value = TREE_PURPOSE (t);
12708 parm_decl = TREE_VALUE (t);
12709
12710 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
12711 if (TREE_CODE (parm_decl) == PARM_DECL
12712 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
12713 parm_decl = error_mark_node;
12714 default_value = tsubst_template_arg (default_value, args,
12715 complain, NULL_TREE);
12716
12717 return build_tree_list (default_value, parm_decl);
12718 }
12719
12720 /* Substitute the ARGS into the indicated aggregate (or enumeration)
12721 type T. If T is not an aggregate or enumeration type, it is
12722 handled as if by tsubst. IN_DECL is as for tsubst. If
12723 ENTERING_SCOPE is nonzero, T is the context for a template which
12724 we are presently tsubst'ing. Return the substituted value. */
12725
12726 static tree
12727 tsubst_aggr_type (tree t,
12728 tree args,
12729 tsubst_flags_t complain,
12730 tree in_decl,
12731 int entering_scope)
12732 {
12733 if (t == NULL_TREE)
12734 return NULL_TREE;
12735
12736 switch (TREE_CODE (t))
12737 {
12738 case RECORD_TYPE:
12739 if (TYPE_PTRMEMFUNC_P (t))
12740 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
12741
12742 /* Fall through. */
12743 case ENUMERAL_TYPE:
12744 case UNION_TYPE:
12745 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
12746 {
12747 tree argvec;
12748 tree context;
12749 tree r;
12750
12751 /* In "sizeof(X<I>)" we need to evaluate "I". */
12752 cp_evaluated ev;
12753
12754 /* First, determine the context for the type we are looking
12755 up. */
12756 context = TYPE_CONTEXT (t);
12757 if (context && TYPE_P (context))
12758 {
12759 context = tsubst_aggr_type (context, args, complain,
12760 in_decl, /*entering_scope=*/1);
12761 /* If context is a nested class inside a class template,
12762 it may still need to be instantiated (c++/33959). */
12763 context = complete_type (context);
12764 }
12765
12766 /* Then, figure out what arguments are appropriate for the
12767 type we are trying to find. For example, given:
12768
12769 template <class T> struct S;
12770 template <class T, class U> void f(T, U) { S<U> su; }
12771
12772 and supposing that we are instantiating f<int, double>,
12773 then our ARGS will be {int, double}, but, when looking up
12774 S we only want {double}. */
12775 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
12776 complain, in_decl);
12777 if (argvec == error_mark_node)
12778 r = error_mark_node;
12779 else
12780 {
12781 r = lookup_template_class (t, argvec, in_decl, context,
12782 entering_scope, complain);
12783 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
12784 }
12785
12786 return r;
12787 }
12788 else
12789 /* This is not a template type, so there's nothing to do. */
12790 return t;
12791
12792 default:
12793 return tsubst (t, args, complain, in_decl);
12794 }
12795 }
12796
12797 static GTY((cache)) tree_cache_map *defarg_inst;
12798
12799 /* Substitute into the default argument ARG (a default argument for
12800 FN), which has the indicated TYPE. */
12801
12802 tree
12803 tsubst_default_argument (tree fn, int parmnum, tree type, tree arg,
12804 tsubst_flags_t complain)
12805 {
12806 int errs = errorcount + sorrycount;
12807
12808 /* This can happen in invalid code. */
12809 if (TREE_CODE (arg) == DEFERRED_PARSE)
12810 return arg;
12811
12812 tree parm = FUNCTION_FIRST_USER_PARM (fn);
12813 parm = chain_index (parmnum, parm);
12814 tree parmtype = TREE_TYPE (parm);
12815 if (DECL_BY_REFERENCE (parm))
12816 parmtype = TREE_TYPE (parmtype);
12817 if (parmtype == error_mark_node)
12818 return error_mark_node;
12819
12820 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, parmtype));
12821
12822 tree *slot;
12823 if (defarg_inst && (slot = defarg_inst->get (parm)))
12824 return *slot;
12825
12826 /* This default argument came from a template. Instantiate the
12827 default argument here, not in tsubst. In the case of
12828 something like:
12829
12830 template <class T>
12831 struct S {
12832 static T t();
12833 void f(T = t());
12834 };
12835
12836 we must be careful to do name lookup in the scope of S<T>,
12837 rather than in the current class. */
12838 push_to_top_level ();
12839 push_access_scope (fn);
12840 push_deferring_access_checks (dk_no_deferred);
12841 start_lambda_scope (parm);
12842
12843 /* The default argument expression may cause implicitly defined
12844 member functions to be synthesized, which will result in garbage
12845 collection. We must treat this situation as if we were within
12846 the body of function so as to avoid collecting live data on the
12847 stack. */
12848 ++function_depth;
12849 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
12850 complain, NULL_TREE,
12851 /*integral_constant_expression_p=*/false);
12852 --function_depth;
12853
12854 finish_lambda_scope ();
12855
12856 /* Make sure the default argument is reasonable. */
12857 arg = check_default_argument (type, arg, complain);
12858
12859 if (errorcount+sorrycount > errs
12860 && (complain & tf_warning_or_error))
12861 inform (input_location,
12862 " when instantiating default argument for call to %qD", fn);
12863
12864 pop_deferring_access_checks ();
12865 pop_access_scope (fn);
12866 pop_from_top_level ();
12867
12868 if (arg != error_mark_node && !cp_unevaluated_operand)
12869 {
12870 if (!defarg_inst)
12871 defarg_inst = tree_cache_map::create_ggc (37);
12872 defarg_inst->put (parm, arg);
12873 }
12874
12875 return arg;
12876 }
12877
12878 /* Substitute into all the default arguments for FN. */
12879
12880 static void
12881 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
12882 {
12883 tree arg;
12884 tree tmpl_args;
12885
12886 tmpl_args = DECL_TI_ARGS (fn);
12887
12888 /* If this function is not yet instantiated, we certainly don't need
12889 its default arguments. */
12890 if (uses_template_parms (tmpl_args))
12891 return;
12892 /* Don't do this again for clones. */
12893 if (DECL_CLONED_FUNCTION_P (fn))
12894 return;
12895
12896 int i = 0;
12897 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
12898 arg;
12899 arg = TREE_CHAIN (arg), ++i)
12900 if (TREE_PURPOSE (arg))
12901 TREE_PURPOSE (arg) = tsubst_default_argument (fn, i,
12902 TREE_VALUE (arg),
12903 TREE_PURPOSE (arg),
12904 complain);
12905 }
12906
12907 /* Hash table mapping a FUNCTION_DECL to its dependent explicit-specifier. */
12908 static GTY((cache)) tree_cache_map *explicit_specifier_map;
12909
12910 /* Store a pair to EXPLICIT_SPECIFIER_MAP. */
12911
12912 void
12913 store_explicit_specifier (tree v, tree t)
12914 {
12915 if (!explicit_specifier_map)
12916 explicit_specifier_map = tree_cache_map::create_ggc (37);
12917 DECL_HAS_DEPENDENT_EXPLICIT_SPEC_P (v) = true;
12918 explicit_specifier_map->put (v, t);
12919 }
12920
12921 /* Lookup an element in EXPLICIT_SPECIFIER_MAP. */
12922
12923 static tree
12924 lookup_explicit_specifier (tree v)
12925 {
12926 return *explicit_specifier_map->get (v);
12927 }
12928
12929 /* Subroutine of tsubst_decl for the case when T is a FUNCTION_DECL. */
12930
12931 static tree
12932 tsubst_function_decl (tree t, tree args, tsubst_flags_t complain,
12933 tree lambda_fntype)
12934 {
12935 tree gen_tmpl, argvec;
12936 hashval_t hash = 0;
12937 tree in_decl = t;
12938
12939 /* Nobody should be tsubst'ing into non-template functions. */
12940 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
12941
12942 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
12943 {
12944 /* If T is not dependent, just return it. */
12945 if (!uses_template_parms (DECL_TI_ARGS (t))
12946 && !LAMBDA_FUNCTION_P (t))
12947 return t;
12948
12949 /* Calculate the most general template of which R is a
12950 specialization. */
12951 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
12952
12953 /* We're substituting a lambda function under tsubst_lambda_expr but not
12954 directly from it; find the matching function we're already inside.
12955 But don't do this if T is a generic lambda with a single level of
12956 template parms, as in that case we're doing a normal instantiation. */
12957 if (LAMBDA_FUNCTION_P (t) && !lambda_fntype
12958 && (!generic_lambda_fn_p (t)
12959 || TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl)) > 1))
12960 return enclosing_instantiation_of (t);
12961
12962 /* Calculate the complete set of arguments used to
12963 specialize R. */
12964 argvec = tsubst_template_args (DECL_TI_ARGS
12965 (DECL_TEMPLATE_RESULT
12966 (DECL_TI_TEMPLATE (t))),
12967 args, complain, in_decl);
12968 if (argvec == error_mark_node)
12969 return error_mark_node;
12970
12971 /* Check to see if we already have this specialization. */
12972 if (!lambda_fntype)
12973 {
12974 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12975 if (tree spec = retrieve_specialization (gen_tmpl, argvec, hash))
12976 return spec;
12977 }
12978
12979 /* We can see more levels of arguments than parameters if
12980 there was a specialization of a member template, like
12981 this:
12982
12983 template <class T> struct S { template <class U> void f(); }
12984 template <> template <class U> void S<int>::f(U);
12985
12986 Here, we'll be substituting into the specialization,
12987 because that's where we can find the code we actually
12988 want to generate, but we'll have enough arguments for
12989 the most general template.
12990
12991 We also deal with the peculiar case:
12992
12993 template <class T> struct S {
12994 template <class U> friend void f();
12995 };
12996 template <class U> void f() {}
12997 template S<int>;
12998 template void f<double>();
12999
13000 Here, the ARGS for the instantiation of will be {int,
13001 double}. But, we only need as many ARGS as there are
13002 levels of template parameters in CODE_PATTERN. We are
13003 careful not to get fooled into reducing the ARGS in
13004 situations like:
13005
13006 template <class T> struct S { template <class U> void f(U); }
13007 template <class T> template <> void S<T>::f(int) {}
13008
13009 which we can spot because the pattern will be a
13010 specialization in this case. */
13011 int args_depth = TMPL_ARGS_DEPTH (args);
13012 int parms_depth =
13013 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
13014
13015 if (args_depth > parms_depth && !DECL_TEMPLATE_SPECIALIZATION (t))
13016 args = get_innermost_template_args (args, parms_depth);
13017 }
13018 else
13019 {
13020 /* This special case arises when we have something like this:
13021
13022 template <class T> struct S {
13023 friend void f<int>(int, double);
13024 };
13025
13026 Here, the DECL_TI_TEMPLATE for the friend declaration
13027 will be an IDENTIFIER_NODE. We are being called from
13028 tsubst_friend_function, and we want only to create a
13029 new decl (R) with appropriate types so that we can call
13030 determine_specialization. */
13031 gen_tmpl = NULL_TREE;
13032 argvec = NULL_TREE;
13033 }
13034
13035 tree closure = (lambda_fntype ? TYPE_METHOD_BASETYPE (lambda_fntype)
13036 : NULL_TREE);
13037 tree ctx = closure ? closure : DECL_CONTEXT (t);
13038 bool member = ctx && TYPE_P (ctx);
13039
13040 if (member && !closure)
13041 ctx = tsubst_aggr_type (ctx, args,
13042 complain, t, /*entering_scope=*/1);
13043
13044 tree type = (lambda_fntype ? lambda_fntype
13045 : tsubst (TREE_TYPE (t), args,
13046 complain | tf_fndecl_type, in_decl));
13047 if (type == error_mark_node)
13048 return error_mark_node;
13049
13050 /* If we hit excessive deduction depth, the type is bogus even if
13051 it isn't error_mark_node, so don't build a decl. */
13052 if (excessive_deduction_depth)
13053 return error_mark_node;
13054
13055 /* We do NOT check for matching decls pushed separately at this
13056 point, as they may not represent instantiations of this
13057 template, and in any case are considered separate under the
13058 discrete model. */
13059 tree r = copy_decl (t);
13060 DECL_USE_TEMPLATE (r) = 0;
13061 TREE_TYPE (r) = type;
13062 /* Clear out the mangled name and RTL for the instantiation. */
13063 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
13064 SET_DECL_RTL (r, NULL);
13065 /* Leave DECL_INITIAL set on deleted instantiations. */
13066 if (!DECL_DELETED_FN (r))
13067 DECL_INITIAL (r) = NULL_TREE;
13068 DECL_CONTEXT (r) = ctx;
13069
13070 /* Handle explicit(dependent-expr). */
13071 if (DECL_HAS_DEPENDENT_EXPLICIT_SPEC_P (t))
13072 {
13073 tree spec = lookup_explicit_specifier (t);
13074 spec = tsubst_copy_and_build (spec, args, complain, in_decl,
13075 /*function_p=*/false,
13076 /*i_c_e_p=*/true);
13077 spec = build_explicit_specifier (spec, complain);
13078 DECL_NONCONVERTING_P (r) = (spec == boolean_true_node);
13079 }
13080
13081 /* OpenMP UDRs have the only argument a reference to the declared
13082 type. We want to diagnose if the declared type is a reference,
13083 which is invalid, but as references to references are usually
13084 quietly merged, diagnose it here. */
13085 if (DECL_OMP_DECLARE_REDUCTION_P (t))
13086 {
13087 tree argtype
13088 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
13089 argtype = tsubst (argtype, args, complain, in_decl);
13090 if (TYPE_REF_P (argtype))
13091 error_at (DECL_SOURCE_LOCATION (t),
13092 "reference type %qT in "
13093 "%<#pragma omp declare reduction%>", argtype);
13094 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
13095 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
13096 argtype);
13097 }
13098
13099 if (member && DECL_CONV_FN_P (r))
13100 /* Type-conversion operator. Reconstruct the name, in
13101 case it's the name of one of the template's parameters. */
13102 DECL_NAME (r) = make_conv_op_name (TREE_TYPE (type));
13103
13104 tree parms = DECL_ARGUMENTS (t);
13105 if (closure)
13106 parms = DECL_CHAIN (parms);
13107 parms = tsubst (parms, args, complain, t);
13108 for (tree parm = parms; parm; parm = DECL_CHAIN (parm))
13109 DECL_CONTEXT (parm) = r;
13110 if (closure)
13111 {
13112 tree tparm = build_this_parm (r, closure, type_memfn_quals (type));
13113 DECL_CHAIN (tparm) = parms;
13114 parms = tparm;
13115 }
13116 DECL_ARGUMENTS (r) = parms;
13117 DECL_RESULT (r) = NULL_TREE;
13118
13119 TREE_STATIC (r) = 0;
13120 TREE_PUBLIC (r) = TREE_PUBLIC (t);
13121 DECL_EXTERNAL (r) = 1;
13122 /* If this is an instantiation of a function with internal
13123 linkage, we already know what object file linkage will be
13124 assigned to the instantiation. */
13125 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
13126 DECL_DEFER_OUTPUT (r) = 0;
13127 DECL_CHAIN (r) = NULL_TREE;
13128 DECL_PENDING_INLINE_INFO (r) = 0;
13129 DECL_PENDING_INLINE_P (r) = 0;
13130 DECL_SAVED_TREE (r) = NULL_TREE;
13131 DECL_STRUCT_FUNCTION (r) = NULL;
13132 TREE_USED (r) = 0;
13133 /* We'll re-clone as appropriate in instantiate_template. */
13134 DECL_CLONED_FUNCTION (r) = NULL_TREE;
13135
13136 /* If we aren't complaining now, return on error before we register
13137 the specialization so that we'll complain eventually. */
13138 if ((complain & tf_error) == 0
13139 && IDENTIFIER_ANY_OP_P (DECL_NAME (r))
13140 && !grok_op_properties (r, /*complain=*/false))
13141 return error_mark_node;
13142
13143 /* When instantiating a constrained member, substitute
13144 into the constraints to create a new constraint. */
13145 if (tree ci = get_constraints (t))
13146 if (member)
13147 {
13148 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
13149 set_constraints (r, ci);
13150 }
13151
13152 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
13153 SET_DECL_FRIEND_CONTEXT (r,
13154 tsubst (DECL_FRIEND_CONTEXT (t),
13155 args, complain, in_decl));
13156
13157 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
13158 this in the special friend case mentioned above where
13159 GEN_TMPL is NULL. */
13160 if (gen_tmpl && !closure)
13161 {
13162 DECL_TEMPLATE_INFO (r)
13163 = build_template_info (gen_tmpl, argvec);
13164 SET_DECL_IMPLICIT_INSTANTIATION (r);
13165
13166 tree new_r
13167 = register_specialization (r, gen_tmpl, argvec, false, hash);
13168 if (new_r != r)
13169 /* We instantiated this while substituting into
13170 the type earlier (template/friend54.C). */
13171 return new_r;
13172
13173 /* We're not supposed to instantiate default arguments
13174 until they are called, for a template. But, for a
13175 declaration like:
13176
13177 template <class T> void f ()
13178 { extern void g(int i = T()); }
13179
13180 we should do the substitution when the template is
13181 instantiated. We handle the member function case in
13182 instantiate_class_template since the default arguments
13183 might refer to other members of the class. */
13184 if (!member
13185 && !PRIMARY_TEMPLATE_P (gen_tmpl)
13186 && !uses_template_parms (argvec))
13187 tsubst_default_arguments (r, complain);
13188 }
13189 else
13190 DECL_TEMPLATE_INFO (r) = NULL_TREE;
13191
13192 /* Copy the list of befriending classes. */
13193 for (tree *friends = &DECL_BEFRIENDING_CLASSES (r);
13194 *friends;
13195 friends = &TREE_CHAIN (*friends))
13196 {
13197 *friends = copy_node (*friends);
13198 TREE_VALUE (*friends)
13199 = tsubst (TREE_VALUE (*friends), args, complain, in_decl);
13200 }
13201
13202 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
13203 {
13204 maybe_retrofit_in_chrg (r);
13205 if (DECL_CONSTRUCTOR_P (r) && !grok_ctor_properties (ctx, r))
13206 return error_mark_node;
13207 /* If this is an instantiation of a member template, clone it.
13208 If it isn't, that'll be handled by
13209 clone_constructors_and_destructors. */
13210 if (PRIMARY_TEMPLATE_P (gen_tmpl))
13211 clone_function_decl (r, /*update_methods=*/false);
13212 }
13213 else if ((complain & tf_error) != 0
13214 && IDENTIFIER_ANY_OP_P (DECL_NAME (r))
13215 && !grok_op_properties (r, /*complain=*/true))
13216 return error_mark_node;
13217
13218 /* Possibly limit visibility based on template args. */
13219 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
13220 if (DECL_VISIBILITY_SPECIFIED (t))
13221 {
13222 DECL_VISIBILITY_SPECIFIED (r) = 0;
13223 DECL_ATTRIBUTES (r)
13224 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
13225 }
13226 determine_visibility (r);
13227 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
13228 && !processing_template_decl)
13229 defaulted_late_check (r);
13230
13231 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
13232 args, complain, in_decl);
13233 return r;
13234 }
13235
13236 /* Subroutine of tsubst_decl for the case when T is a TEMPLATE_DECL. */
13237
13238 static tree
13239 tsubst_template_decl (tree t, tree args, tsubst_flags_t complain,
13240 tree lambda_fntype)
13241 {
13242 /* We can get here when processing a member function template,
13243 member class template, or template template parameter. */
13244 tree decl = DECL_TEMPLATE_RESULT (t);
13245 tree in_decl = t;
13246 tree spec;
13247 tree tmpl_args;
13248 tree full_args;
13249 tree r;
13250 hashval_t hash = 0;
13251
13252 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13253 {
13254 /* Template template parameter is treated here. */
13255 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13256 if (new_type == error_mark_node)
13257 r = error_mark_node;
13258 /* If we get a real template back, return it. This can happen in
13259 the context of most_specialized_partial_spec. */
13260 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
13261 r = new_type;
13262 else
13263 /* The new TEMPLATE_DECL was built in
13264 reduce_template_parm_level. */
13265 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
13266 return r;
13267 }
13268
13269 if (!lambda_fntype)
13270 {
13271 /* We might already have an instance of this template.
13272 The ARGS are for the surrounding class type, so the
13273 full args contain the tsubst'd args for the context,
13274 plus the innermost args from the template decl. */
13275 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
13276 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
13277 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
13278 /* Because this is a template, the arguments will still be
13279 dependent, even after substitution. If
13280 PROCESSING_TEMPLATE_DECL is not set, the dependency
13281 predicates will short-circuit. */
13282 ++processing_template_decl;
13283 full_args = tsubst_template_args (tmpl_args, args,
13284 complain, in_decl);
13285 --processing_template_decl;
13286 if (full_args == error_mark_node)
13287 return error_mark_node;
13288
13289 /* If this is a default template template argument,
13290 tsubst might not have changed anything. */
13291 if (full_args == tmpl_args)
13292 return t;
13293
13294 hash = hash_tmpl_and_args (t, full_args);
13295 spec = retrieve_specialization (t, full_args, hash);
13296 if (spec != NULL_TREE)
13297 {
13298 if (TYPE_P (spec))
13299 /* Type partial instantiations are stored as the type by
13300 lookup_template_class_1, not here as the template. */
13301 spec = CLASSTYPE_TI_TEMPLATE (spec);
13302 return spec;
13303 }
13304 }
13305
13306 /* Make a new template decl. It will be similar to the
13307 original, but will record the current template arguments.
13308 We also create a new function declaration, which is just
13309 like the old one, but points to this new template, rather
13310 than the old one. */
13311 r = copy_decl (t);
13312 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
13313 DECL_CHAIN (r) = NULL_TREE;
13314
13315 // Build new template info linking to the original template decl.
13316 if (!lambda_fntype)
13317 {
13318 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
13319 SET_DECL_IMPLICIT_INSTANTIATION (r);
13320 }
13321 else
13322 DECL_TEMPLATE_INFO (r) = NULL_TREE;
13323
13324 /* The template parameters for this new template are all the
13325 template parameters for the old template, except the
13326 outermost level of parameters. */
13327 DECL_TEMPLATE_PARMS (r)
13328 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
13329 complain);
13330
13331 if (TREE_CODE (decl) == TYPE_DECL
13332 && !TYPE_DECL_ALIAS_P (decl))
13333 {
13334 tree new_type;
13335 ++processing_template_decl;
13336 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13337 --processing_template_decl;
13338 if (new_type == error_mark_node)
13339 return error_mark_node;
13340
13341 TREE_TYPE (r) = new_type;
13342 /* For a partial specialization, we need to keep pointing to
13343 the primary template. */
13344 if (!DECL_TEMPLATE_SPECIALIZATION (t))
13345 CLASSTYPE_TI_TEMPLATE (new_type) = r;
13346 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
13347 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
13348 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
13349 }
13350 else
13351 {
13352 tree new_decl;
13353 ++processing_template_decl;
13354 if (TREE_CODE (decl) == FUNCTION_DECL)
13355 new_decl = tsubst_function_decl (decl, args, complain, lambda_fntype);
13356 else
13357 new_decl = tsubst (decl, args, complain, in_decl);
13358 --processing_template_decl;
13359 if (new_decl == error_mark_node)
13360 return error_mark_node;
13361
13362 DECL_TEMPLATE_RESULT (r) = new_decl;
13363 TREE_TYPE (r) = TREE_TYPE (new_decl);
13364 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
13365 if (lambda_fntype)
13366 {
13367 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (r));
13368 DECL_TEMPLATE_INFO (new_decl) = build_template_info (r, args);
13369 }
13370 else
13371 {
13372 DECL_TI_TEMPLATE (new_decl) = r;
13373 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
13374 }
13375 }
13376
13377 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
13378 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
13379
13380 if (PRIMARY_TEMPLATE_P (t))
13381 DECL_PRIMARY_TEMPLATE (r) = r;
13382
13383 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl)
13384 && !lambda_fntype)
13385 /* Record this non-type partial instantiation. */
13386 register_specialization (r, t,
13387 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
13388 false, hash);
13389
13390 return r;
13391 }
13392
13393 /* True if FN is the op() for a lambda in an uninstantiated template. */
13394
13395 bool
13396 lambda_fn_in_template_p (tree fn)
13397 {
13398 if (!fn || !LAMBDA_FUNCTION_P (fn))
13399 return false;
13400 tree closure = DECL_CONTEXT (fn);
13401 return CLASSTYPE_TEMPLATE_INFO (closure) != NULL_TREE;
13402 }
13403
13404 /* True if FN is the substitution (via tsubst_lambda_expr) of a function for
13405 which the above is true. */
13406
13407 bool
13408 instantiated_lambda_fn_p (tree fn)
13409 {
13410 if (!fn || !LAMBDA_FUNCTION_P (fn))
13411 return false;
13412 tree closure = DECL_CONTEXT (fn);
13413 tree lam = CLASSTYPE_LAMBDA_EXPR (closure);
13414 return LAMBDA_EXPR_INSTANTIATED (lam);
13415 }
13416
13417 /* We're instantiating a variable from template function TCTX. Return the
13418 corresponding current enclosing scope. This gets complicated because lambda
13419 functions in templates are regenerated rather than instantiated, but generic
13420 lambda functions are subsequently instantiated. */
13421
13422 static tree
13423 enclosing_instantiation_of (tree otctx)
13424 {
13425 tree tctx = otctx;
13426 tree fn = current_function_decl;
13427 int lambda_count = 0;
13428
13429 for (; tctx && (lambda_fn_in_template_p (tctx)
13430 || instantiated_lambda_fn_p (tctx));
13431 tctx = decl_function_context (tctx))
13432 ++lambda_count;
13433 for (; fn; fn = decl_function_context (fn))
13434 {
13435 tree ofn = fn;
13436 int flambda_count = 0;
13437 for (; fn && instantiated_lambda_fn_p (fn);
13438 fn = decl_function_context (fn))
13439 ++flambda_count;
13440 if ((fn && DECL_TEMPLATE_INFO (fn))
13441 ? most_general_template (fn) != most_general_template (tctx)
13442 : fn != tctx)
13443 continue;
13444 if (flambda_count != lambda_count)
13445 {
13446 gcc_assert (flambda_count > lambda_count);
13447 for (; flambda_count > lambda_count; --flambda_count)
13448 ofn = decl_function_context (ofn);
13449 }
13450 gcc_assert (DECL_NAME (ofn) == DECL_NAME (otctx)
13451 || DECL_CONV_FN_P (ofn));
13452 return ofn;
13453 }
13454 gcc_unreachable ();
13455 }
13456
13457 /* Substitute the ARGS into the T, which is a _DECL. Return the
13458 result of the substitution. Issue error and warning messages under
13459 control of COMPLAIN. */
13460
13461 static tree
13462 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
13463 {
13464 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13465 location_t saved_loc;
13466 tree r = NULL_TREE;
13467 tree in_decl = t;
13468 hashval_t hash = 0;
13469
13470 /* Set the filename and linenumber to improve error-reporting. */
13471 saved_loc = input_location;
13472 input_location = DECL_SOURCE_LOCATION (t);
13473
13474 switch (TREE_CODE (t))
13475 {
13476 case TEMPLATE_DECL:
13477 r = tsubst_template_decl (t, args, complain, /*lambda*/NULL_TREE);
13478 break;
13479
13480 case FUNCTION_DECL:
13481 r = tsubst_function_decl (t, args, complain, /*lambda*/NULL_TREE);
13482 break;
13483
13484 case PARM_DECL:
13485 {
13486 tree type = NULL_TREE;
13487 int i, len = 1;
13488 tree expanded_types = NULL_TREE;
13489 tree prev_r = NULL_TREE;
13490 tree first_r = NULL_TREE;
13491
13492 if (DECL_PACK_P (t))
13493 {
13494 /* If there is a local specialization that isn't a
13495 parameter pack, it means that we're doing a "simple"
13496 substitution from inside tsubst_pack_expansion. Just
13497 return the local specialization (which will be a single
13498 parm). */
13499 tree spec = retrieve_local_specialization (t);
13500 if (spec
13501 && TREE_CODE (spec) == PARM_DECL
13502 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
13503 RETURN (spec);
13504
13505 /* Expand the TYPE_PACK_EXPANSION that provides the types for
13506 the parameters in this function parameter pack. */
13507 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
13508 complain, in_decl);
13509 if (TREE_CODE (expanded_types) == TREE_VEC)
13510 {
13511 len = TREE_VEC_LENGTH (expanded_types);
13512
13513 /* Zero-length parameter packs are boring. Just substitute
13514 into the chain. */
13515 if (len == 0)
13516 RETURN (tsubst (TREE_CHAIN (t), args, complain,
13517 TREE_CHAIN (t)));
13518 }
13519 else
13520 {
13521 /* All we did was update the type. Make a note of that. */
13522 type = expanded_types;
13523 expanded_types = NULL_TREE;
13524 }
13525 }
13526
13527 /* Loop through all of the parameters we'll build. When T is
13528 a function parameter pack, LEN is the number of expanded
13529 types in EXPANDED_TYPES; otherwise, LEN is 1. */
13530 r = NULL_TREE;
13531 for (i = 0; i < len; ++i)
13532 {
13533 prev_r = r;
13534 r = copy_node (t);
13535 if (DECL_TEMPLATE_PARM_P (t))
13536 SET_DECL_TEMPLATE_PARM_P (r);
13537
13538 if (expanded_types)
13539 /* We're on the Ith parameter of the function parameter
13540 pack. */
13541 {
13542 /* Get the Ith type. */
13543 type = TREE_VEC_ELT (expanded_types, i);
13544
13545 /* Rename the parameter to include the index. */
13546 DECL_NAME (r)
13547 = make_ith_pack_parameter_name (DECL_NAME (r), i);
13548 }
13549 else if (!type)
13550 /* We're dealing with a normal parameter. */
13551 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13552
13553 type = type_decays_to (type);
13554 TREE_TYPE (r) = type;
13555 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
13556
13557 if (DECL_INITIAL (r))
13558 {
13559 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
13560 DECL_INITIAL (r) = TREE_TYPE (r);
13561 else
13562 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
13563 complain, in_decl);
13564 }
13565
13566 DECL_CONTEXT (r) = NULL_TREE;
13567
13568 if (!DECL_TEMPLATE_PARM_P (r))
13569 DECL_ARG_TYPE (r) = type_passed_as (type);
13570
13571 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
13572 args, complain, in_decl);
13573
13574 /* Keep track of the first new parameter we
13575 generate. That's what will be returned to the
13576 caller. */
13577 if (!first_r)
13578 first_r = r;
13579
13580 /* Build a proper chain of parameters when substituting
13581 into a function parameter pack. */
13582 if (prev_r)
13583 DECL_CHAIN (prev_r) = r;
13584 }
13585
13586 /* If cp_unevaluated_operand is set, we're just looking for a
13587 single dummy parameter, so don't keep going. */
13588 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
13589 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
13590 complain, DECL_CHAIN (t));
13591
13592 /* FIRST_R contains the start of the chain we've built. */
13593 r = first_r;
13594 }
13595 break;
13596
13597 case FIELD_DECL:
13598 {
13599 tree type = NULL_TREE;
13600 tree vec = NULL_TREE;
13601 tree expanded_types = NULL_TREE;
13602 int len = 1;
13603
13604 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13605 {
13606 /* This field is a lambda capture pack. Return a TREE_VEC of
13607 the expanded fields to instantiate_class_template_1. */
13608 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
13609 complain, in_decl);
13610 if (TREE_CODE (expanded_types) == TREE_VEC)
13611 {
13612 len = TREE_VEC_LENGTH (expanded_types);
13613 vec = make_tree_vec (len);
13614 }
13615 else
13616 {
13617 /* All we did was update the type. Make a note of that. */
13618 type = expanded_types;
13619 expanded_types = NULL_TREE;
13620 }
13621 }
13622
13623 for (int i = 0; i < len; ++i)
13624 {
13625 r = copy_decl (t);
13626 if (expanded_types)
13627 {
13628 type = TREE_VEC_ELT (expanded_types, i);
13629 DECL_NAME (r)
13630 = make_ith_pack_parameter_name (DECL_NAME (r), i);
13631 }
13632 else if (!type)
13633 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13634
13635 if (type == error_mark_node)
13636 RETURN (error_mark_node);
13637 TREE_TYPE (r) = type;
13638 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
13639
13640 if (DECL_C_BIT_FIELD (r))
13641 /* For bit-fields, DECL_BIT_FIELD_REPRESENTATIVE gives the
13642 number of bits. */
13643 DECL_BIT_FIELD_REPRESENTATIVE (r)
13644 = tsubst_expr (DECL_BIT_FIELD_REPRESENTATIVE (t), args,
13645 complain, in_decl,
13646 /*integral_constant_expression_p=*/true);
13647 if (DECL_INITIAL (t))
13648 {
13649 /* Set up DECL_TEMPLATE_INFO so that we can get at the
13650 NSDMI in perform_member_init. Still set DECL_INITIAL
13651 so that we know there is one. */
13652 DECL_INITIAL (r) = void_node;
13653 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
13654 retrofit_lang_decl (r);
13655 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
13656 }
13657 /* We don't have to set DECL_CONTEXT here; it is set by
13658 finish_member_declaration. */
13659 DECL_CHAIN (r) = NULL_TREE;
13660
13661 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
13662 args, complain, in_decl);
13663
13664 if (vec)
13665 TREE_VEC_ELT (vec, i) = r;
13666 }
13667
13668 if (vec)
13669 r = vec;
13670 }
13671 break;
13672
13673 case USING_DECL:
13674 /* We reach here only for member using decls. We also need to check
13675 uses_template_parms because DECL_DEPENDENT_P is not set for a
13676 using-declaration that designates a member of the current
13677 instantiation (c++/53549). */
13678 if (DECL_DEPENDENT_P (t)
13679 || uses_template_parms (USING_DECL_SCOPE (t)))
13680 {
13681 tree scope = USING_DECL_SCOPE (t);
13682 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
13683 if (PACK_EXPANSION_P (scope))
13684 {
13685 tree vec = tsubst_pack_expansion (scope, args, complain, in_decl);
13686 int len = TREE_VEC_LENGTH (vec);
13687 r = make_tree_vec (len);
13688 for (int i = 0; i < len; ++i)
13689 {
13690 tree escope = TREE_VEC_ELT (vec, i);
13691 tree elt = do_class_using_decl (escope, name);
13692 if (!elt)
13693 {
13694 r = error_mark_node;
13695 break;
13696 }
13697 else
13698 {
13699 TREE_PROTECTED (elt) = TREE_PROTECTED (t);
13700 TREE_PRIVATE (elt) = TREE_PRIVATE (t);
13701 }
13702 TREE_VEC_ELT (r, i) = elt;
13703 }
13704 }
13705 else
13706 {
13707 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
13708 complain, in_decl);
13709 r = do_class_using_decl (inst_scope, name);
13710 if (!r)
13711 r = error_mark_node;
13712 else
13713 {
13714 TREE_PROTECTED (r) = TREE_PROTECTED (t);
13715 TREE_PRIVATE (r) = TREE_PRIVATE (t);
13716 }
13717 }
13718 }
13719 else
13720 {
13721 r = copy_node (t);
13722 DECL_CHAIN (r) = NULL_TREE;
13723 }
13724 break;
13725
13726 case TYPE_DECL:
13727 case VAR_DECL:
13728 {
13729 tree argvec = NULL_TREE;
13730 tree gen_tmpl = NULL_TREE;
13731 tree spec;
13732 tree tmpl = NULL_TREE;
13733 tree ctx;
13734 tree type = NULL_TREE;
13735 bool local_p;
13736
13737 if (TREE_TYPE (t) == error_mark_node)
13738 RETURN (error_mark_node);
13739
13740 if (TREE_CODE (t) == TYPE_DECL
13741 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
13742 {
13743 /* If this is the canonical decl, we don't have to
13744 mess with instantiations, and often we can't (for
13745 typename, template type parms and such). Note that
13746 TYPE_NAME is not correct for the above test if
13747 we've copied the type for a typedef. */
13748 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13749 if (type == error_mark_node)
13750 RETURN (error_mark_node);
13751 r = TYPE_NAME (type);
13752 break;
13753 }
13754
13755 /* Check to see if we already have the specialization we
13756 need. */
13757 spec = NULL_TREE;
13758 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
13759 {
13760 /* T is a static data member or namespace-scope entity.
13761 We have to substitute into namespace-scope variables
13762 (not just variable templates) because of cases like:
13763
13764 template <class T> void f() { extern T t; }
13765
13766 where the entity referenced is not known until
13767 instantiation time. */
13768 local_p = false;
13769 ctx = DECL_CONTEXT (t);
13770 if (DECL_CLASS_SCOPE_P (t))
13771 {
13772 ctx = tsubst_aggr_type (ctx, args,
13773 complain,
13774 in_decl, /*entering_scope=*/1);
13775 /* If CTX is unchanged, then T is in fact the
13776 specialization we want. That situation occurs when
13777 referencing a static data member within in its own
13778 class. We can use pointer equality, rather than
13779 same_type_p, because DECL_CONTEXT is always
13780 canonical... */
13781 if (ctx == DECL_CONTEXT (t)
13782 /* ... unless T is a member template; in which
13783 case our caller can be willing to create a
13784 specialization of that template represented
13785 by T. */
13786 && !(DECL_TI_TEMPLATE (t)
13787 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
13788 spec = t;
13789 }
13790
13791 if (!spec)
13792 {
13793 tmpl = DECL_TI_TEMPLATE (t);
13794 gen_tmpl = most_general_template (tmpl);
13795 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
13796 if (argvec != error_mark_node)
13797 argvec = (coerce_innermost_template_parms
13798 (DECL_TEMPLATE_PARMS (gen_tmpl),
13799 argvec, t, complain,
13800 /*all*/true, /*defarg*/true));
13801 if (argvec == error_mark_node)
13802 RETURN (error_mark_node);
13803 hash = hash_tmpl_and_args (gen_tmpl, argvec);
13804 spec = retrieve_specialization (gen_tmpl, argvec, hash);
13805 }
13806 }
13807 else
13808 {
13809 /* A local variable. */
13810 local_p = true;
13811 /* Subsequent calls to pushdecl will fill this in. */
13812 ctx = NULL_TREE;
13813 /* Unless this is a reference to a static variable from an
13814 enclosing function, in which case we need to fill it in now. */
13815 if (TREE_STATIC (t))
13816 {
13817 tree fn = enclosing_instantiation_of (DECL_CONTEXT (t));
13818 if (fn != current_function_decl)
13819 ctx = fn;
13820 }
13821 spec = retrieve_local_specialization (t);
13822 }
13823 /* If we already have the specialization we need, there is
13824 nothing more to do. */
13825 if (spec)
13826 {
13827 r = spec;
13828 break;
13829 }
13830
13831 /* Create a new node for the specialization we need. */
13832 if (type == NULL_TREE)
13833 {
13834 if (is_typedef_decl (t))
13835 type = DECL_ORIGINAL_TYPE (t);
13836 else
13837 type = TREE_TYPE (t);
13838 if (VAR_P (t)
13839 && VAR_HAD_UNKNOWN_BOUND (t)
13840 && type != error_mark_node)
13841 type = strip_array_domain (type);
13842 tree sub_args = args;
13843 if (tree auto_node = type_uses_auto (type))
13844 {
13845 /* Mask off any template args past the variable's context so we
13846 don't replace the auto with an unrelated argument. */
13847 int nouter = TEMPLATE_TYPE_LEVEL (auto_node) - 1;
13848 int extra = TMPL_ARGS_DEPTH (args) - nouter;
13849 if (extra > 0)
13850 /* This should never happen with the new lambda instantiation
13851 model, but keep the handling just in case. */
13852 gcc_assert (!CHECKING_P),
13853 sub_args = strip_innermost_template_args (args, extra);
13854 }
13855 type = tsubst (type, sub_args, complain, in_decl);
13856 /* Substituting the type might have recursively instantiated this
13857 same alias (c++/86171). */
13858 if (gen_tmpl && DECL_ALIAS_TEMPLATE_P (gen_tmpl)
13859 && (spec = retrieve_specialization (gen_tmpl, argvec, hash)))
13860 {
13861 r = spec;
13862 break;
13863 }
13864 }
13865 r = copy_decl (t);
13866 if (VAR_P (r))
13867 {
13868 DECL_INITIALIZED_P (r) = 0;
13869 DECL_TEMPLATE_INSTANTIATED (r) = 0;
13870 if (type == error_mark_node)
13871 RETURN (error_mark_node);
13872 if (TREE_CODE (type) == FUNCTION_TYPE)
13873 {
13874 /* It may seem that this case cannot occur, since:
13875
13876 typedef void f();
13877 void g() { f x; }
13878
13879 declares a function, not a variable. However:
13880
13881 typedef void f();
13882 template <typename T> void g() { T t; }
13883 template void g<f>();
13884
13885 is an attempt to declare a variable with function
13886 type. */
13887 error ("variable %qD has function type",
13888 /* R is not yet sufficiently initialized, so we
13889 just use its name. */
13890 DECL_NAME (r));
13891 RETURN (error_mark_node);
13892 }
13893 type = complete_type (type);
13894 /* Wait until cp_finish_decl to set this again, to handle
13895 circular dependency (template/instantiate6.C). */
13896 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
13897 type = check_var_type (DECL_NAME (r), type,
13898 DECL_SOURCE_LOCATION (r));
13899 if (DECL_HAS_VALUE_EXPR_P (t))
13900 {
13901 tree ve = DECL_VALUE_EXPR (t);
13902 ve = tsubst_expr (ve, args, complain, in_decl,
13903 /*constant_expression_p=*/false);
13904 if (REFERENCE_REF_P (ve))
13905 {
13906 gcc_assert (TYPE_REF_P (type));
13907 ve = TREE_OPERAND (ve, 0);
13908 }
13909 SET_DECL_VALUE_EXPR (r, ve);
13910 }
13911 if (CP_DECL_THREAD_LOCAL_P (r)
13912 && !processing_template_decl)
13913 set_decl_tls_model (r, decl_default_tls_model (r));
13914 }
13915 else if (DECL_SELF_REFERENCE_P (t))
13916 SET_DECL_SELF_REFERENCE_P (r);
13917 TREE_TYPE (r) = type;
13918 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
13919 DECL_CONTEXT (r) = ctx;
13920 /* Clear out the mangled name and RTL for the instantiation. */
13921 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
13922 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
13923 SET_DECL_RTL (r, NULL);
13924 /* The initializer must not be expanded until it is required;
13925 see [temp.inst]. */
13926 DECL_INITIAL (r) = NULL_TREE;
13927 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
13928 if (VAR_P (r))
13929 {
13930 if (DECL_LANG_SPECIFIC (r))
13931 SET_DECL_DEPENDENT_INIT_P (r, false);
13932
13933 SET_DECL_MODE (r, VOIDmode);
13934
13935 /* Possibly limit visibility based on template args. */
13936 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
13937 if (DECL_VISIBILITY_SPECIFIED (t))
13938 {
13939 DECL_VISIBILITY_SPECIFIED (r) = 0;
13940 DECL_ATTRIBUTES (r)
13941 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
13942 }
13943 determine_visibility (r);
13944 }
13945
13946 if (!local_p)
13947 {
13948 /* A static data member declaration is always marked
13949 external when it is declared in-class, even if an
13950 initializer is present. We mimic the non-template
13951 processing here. */
13952 DECL_EXTERNAL (r) = 1;
13953 if (DECL_NAMESPACE_SCOPE_P (t))
13954 DECL_NOT_REALLY_EXTERN (r) = 1;
13955
13956 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
13957 SET_DECL_IMPLICIT_INSTANTIATION (r);
13958 /* Remember whether we require constant initialization of
13959 a non-constant template variable. */
13960 TINFO_VAR_DECLARED_CONSTINIT (DECL_TEMPLATE_INFO (r))
13961 = TINFO_VAR_DECLARED_CONSTINIT (DECL_TEMPLATE_INFO (t));
13962 if (!error_operand_p (r) || (complain & tf_error))
13963 register_specialization (r, gen_tmpl, argvec, false, hash);
13964 }
13965 else
13966 {
13967 if (DECL_LANG_SPECIFIC (r))
13968 DECL_TEMPLATE_INFO (r) = NULL_TREE;
13969 if (!cp_unevaluated_operand)
13970 register_local_specialization (r, t);
13971 }
13972
13973 DECL_CHAIN (r) = NULL_TREE;
13974
13975 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
13976 /*flags=*/0,
13977 args, complain, in_decl);
13978
13979 /* Preserve a typedef that names a type. */
13980 if (is_typedef_decl (r) && type != error_mark_node)
13981 {
13982 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
13983 set_underlying_type (r);
13984 if (TYPE_DECL_ALIAS_P (r))
13985 /* An alias template specialization can be dependent
13986 even if its underlying type is not. */
13987 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
13988 }
13989
13990 layout_decl (r, 0);
13991 }
13992 break;
13993
13994 default:
13995 gcc_unreachable ();
13996 }
13997 #undef RETURN
13998
13999 out:
14000 /* Restore the file and line information. */
14001 input_location = saved_loc;
14002
14003 return r;
14004 }
14005
14006 /* Substitute into the ARG_TYPES of a function type.
14007 If END is a TREE_CHAIN, leave it and any following types
14008 un-substituted. */
14009
14010 static tree
14011 tsubst_arg_types (tree arg_types,
14012 tree args,
14013 tree end,
14014 tsubst_flags_t complain,
14015 tree in_decl)
14016 {
14017 tree remaining_arg_types;
14018 tree type = NULL_TREE;
14019 int i = 1;
14020 tree expanded_args = NULL_TREE;
14021 tree default_arg;
14022
14023 if (!arg_types || arg_types == void_list_node || arg_types == end)
14024 return arg_types;
14025
14026 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
14027 args, end, complain, in_decl);
14028 if (remaining_arg_types == error_mark_node)
14029 return error_mark_node;
14030
14031 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
14032 {
14033 /* For a pack expansion, perform substitution on the
14034 entire expression. Later on, we'll handle the arguments
14035 one-by-one. */
14036 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
14037 args, complain, in_decl);
14038
14039 if (TREE_CODE (expanded_args) == TREE_VEC)
14040 /* So that we'll spin through the parameters, one by one. */
14041 i = TREE_VEC_LENGTH (expanded_args);
14042 else
14043 {
14044 /* We only partially substituted into the parameter
14045 pack. Our type is TYPE_PACK_EXPANSION. */
14046 type = expanded_args;
14047 expanded_args = NULL_TREE;
14048 }
14049 }
14050
14051 while (i > 0) {
14052 --i;
14053
14054 if (expanded_args)
14055 type = TREE_VEC_ELT (expanded_args, i);
14056 else if (!type)
14057 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
14058
14059 if (type == error_mark_node)
14060 return error_mark_node;
14061 if (VOID_TYPE_P (type))
14062 {
14063 if (complain & tf_error)
14064 {
14065 error ("invalid parameter type %qT", type);
14066 if (in_decl)
14067 error ("in declaration %q+D", in_decl);
14068 }
14069 return error_mark_node;
14070 }
14071 /* DR 657. */
14072 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
14073 return error_mark_node;
14074
14075 /* Do array-to-pointer, function-to-pointer conversion, and ignore
14076 top-level qualifiers as required. */
14077 type = cv_unqualified (type_decays_to (type));
14078
14079 /* We do not substitute into default arguments here. The standard
14080 mandates that they be instantiated only when needed, which is
14081 done in build_over_call. */
14082 default_arg = TREE_PURPOSE (arg_types);
14083
14084 /* Except that we do substitute default arguments under tsubst_lambda_expr,
14085 since the new op() won't have any associated template arguments for us
14086 to refer to later. */
14087 if (lambda_fn_in_template_p (in_decl))
14088 default_arg = tsubst_copy_and_build (default_arg, args, complain, in_decl,
14089 false/*fn*/, false/*constexpr*/);
14090
14091 if (default_arg && TREE_CODE (default_arg) == DEFERRED_PARSE)
14092 {
14093 /* We've instantiated a template before its default arguments
14094 have been parsed. This can happen for a nested template
14095 class, and is not an error unless we require the default
14096 argument in a call of this function. */
14097 remaining_arg_types =
14098 tree_cons (default_arg, type, remaining_arg_types);
14099 vec_safe_push (DEFPARSE_INSTANTIATIONS (default_arg),
14100 remaining_arg_types);
14101 }
14102 else
14103 remaining_arg_types =
14104 hash_tree_cons (default_arg, type, remaining_arg_types);
14105 }
14106
14107 return remaining_arg_types;
14108 }
14109
14110 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
14111 *not* handle the exception-specification for FNTYPE, because the
14112 initial substitution of explicitly provided template parameters
14113 during argument deduction forbids substitution into the
14114 exception-specification:
14115
14116 [temp.deduct]
14117
14118 All references in the function type of the function template to the
14119 corresponding template parameters are replaced by the specified tem-
14120 plate argument values. If a substitution in a template parameter or
14121 in the function type of the function template results in an invalid
14122 type, type deduction fails. [Note: The equivalent substitution in
14123 exception specifications is done only when the function is instanti-
14124 ated, at which point a program is ill-formed if the substitution
14125 results in an invalid type.] */
14126
14127 static tree
14128 tsubst_function_type (tree t,
14129 tree args,
14130 tsubst_flags_t complain,
14131 tree in_decl)
14132 {
14133 tree return_type;
14134 tree arg_types = NULL_TREE;
14135 tree fntype;
14136
14137 /* The TYPE_CONTEXT is not used for function/method types. */
14138 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
14139
14140 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
14141 failure. */
14142 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
14143
14144 if (late_return_type_p)
14145 {
14146 /* Substitute the argument types. */
14147 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
14148 complain, in_decl);
14149 if (arg_types == error_mark_node)
14150 return error_mark_node;
14151
14152 tree save_ccp = current_class_ptr;
14153 tree save_ccr = current_class_ref;
14154 tree this_type = (TREE_CODE (t) == METHOD_TYPE
14155 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
14156 bool do_inject = this_type && CLASS_TYPE_P (this_type);
14157 if (do_inject)
14158 {
14159 /* DR 1207: 'this' is in scope in the trailing return type. */
14160 inject_this_parameter (this_type, cp_type_quals (this_type));
14161 }
14162
14163 /* Substitute the return type. */
14164 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14165
14166 if (do_inject)
14167 {
14168 current_class_ptr = save_ccp;
14169 current_class_ref = save_ccr;
14170 }
14171 }
14172 else
14173 /* Substitute the return type. */
14174 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14175
14176 if (return_type == error_mark_node)
14177 return error_mark_node;
14178 /* DR 486 clarifies that creation of a function type with an
14179 invalid return type is a deduction failure. */
14180 if (TREE_CODE (return_type) == ARRAY_TYPE
14181 || TREE_CODE (return_type) == FUNCTION_TYPE)
14182 {
14183 if (complain & tf_error)
14184 {
14185 if (TREE_CODE (return_type) == ARRAY_TYPE)
14186 error ("function returning an array");
14187 else
14188 error ("function returning a function");
14189 }
14190 return error_mark_node;
14191 }
14192 /* And DR 657. */
14193 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
14194 return error_mark_node;
14195
14196 if (!late_return_type_p)
14197 {
14198 /* Substitute the argument types. */
14199 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
14200 complain, in_decl);
14201 if (arg_types == error_mark_node)
14202 return error_mark_node;
14203 }
14204
14205 /* Construct a new type node and return it. */
14206 if (TREE_CODE (t) == FUNCTION_TYPE)
14207 {
14208 fntype = build_function_type (return_type, arg_types);
14209 fntype = apply_memfn_quals (fntype, type_memfn_quals (t));
14210 }
14211 else
14212 {
14213 tree r = TREE_TYPE (TREE_VALUE (arg_types));
14214 /* Don't pick up extra function qualifiers from the basetype. */
14215 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
14216 if (! MAYBE_CLASS_TYPE_P (r))
14217 {
14218 /* [temp.deduct]
14219
14220 Type deduction may fail for any of the following
14221 reasons:
14222
14223 -- Attempting to create "pointer to member of T" when T
14224 is not a class type. */
14225 if (complain & tf_error)
14226 error ("creating pointer to member function of non-class type %qT",
14227 r);
14228 return error_mark_node;
14229 }
14230
14231 fntype = build_method_type_directly (r, return_type,
14232 TREE_CHAIN (arg_types));
14233 }
14234 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
14235
14236 /* See comment above. */
14237 tree raises = NULL_TREE;
14238 cp_ref_qualifier rqual = type_memfn_rqual (t);
14239 fntype = build_cp_fntype_variant (fntype, rqual, raises, late_return_type_p);
14240
14241 return fntype;
14242 }
14243
14244 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
14245 ARGS into that specification, and return the substituted
14246 specification. If there is no specification, return NULL_TREE. */
14247
14248 static tree
14249 tsubst_exception_specification (tree fntype,
14250 tree args,
14251 tsubst_flags_t complain,
14252 tree in_decl,
14253 bool defer_ok)
14254 {
14255 tree specs;
14256 tree new_specs;
14257
14258 specs = TYPE_RAISES_EXCEPTIONS (fntype);
14259 new_specs = NULL_TREE;
14260 if (specs && TREE_PURPOSE (specs))
14261 {
14262 /* A noexcept-specifier. */
14263 tree expr = TREE_PURPOSE (specs);
14264 if (TREE_CODE (expr) == INTEGER_CST)
14265 new_specs = expr;
14266 else if (defer_ok)
14267 {
14268 /* Defer instantiation of noexcept-specifiers to avoid
14269 excessive instantiations (c++/49107). */
14270 new_specs = make_node (DEFERRED_NOEXCEPT);
14271 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
14272 {
14273 /* We already partially instantiated this member template,
14274 so combine the new args with the old. */
14275 DEFERRED_NOEXCEPT_PATTERN (new_specs)
14276 = DEFERRED_NOEXCEPT_PATTERN (expr);
14277 DEFERRED_NOEXCEPT_ARGS (new_specs)
14278 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
14279 }
14280 else
14281 {
14282 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
14283 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
14284 }
14285 }
14286 else
14287 {
14288 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
14289 {
14290 args = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr),
14291 args);
14292 expr = DEFERRED_NOEXCEPT_PATTERN (expr);
14293 }
14294 new_specs = tsubst_copy_and_build
14295 (expr, args, complain, in_decl, /*function_p=*/false,
14296 /*integral_constant_expression_p=*/true);
14297 }
14298 new_specs = build_noexcept_spec (new_specs, complain);
14299 }
14300 else if (specs)
14301 {
14302 if (! TREE_VALUE (specs))
14303 new_specs = specs;
14304 else
14305 while (specs)
14306 {
14307 tree spec;
14308 int i, len = 1;
14309 tree expanded_specs = NULL_TREE;
14310
14311 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
14312 {
14313 /* Expand the pack expansion type. */
14314 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
14315 args, complain,
14316 in_decl);
14317
14318 if (expanded_specs == error_mark_node)
14319 return error_mark_node;
14320 else if (TREE_CODE (expanded_specs) == TREE_VEC)
14321 len = TREE_VEC_LENGTH (expanded_specs);
14322 else
14323 {
14324 /* We're substituting into a member template, so
14325 we got a TYPE_PACK_EXPANSION back. Add that
14326 expansion and move on. */
14327 gcc_assert (TREE_CODE (expanded_specs)
14328 == TYPE_PACK_EXPANSION);
14329 new_specs = add_exception_specifier (new_specs,
14330 expanded_specs,
14331 complain);
14332 specs = TREE_CHAIN (specs);
14333 continue;
14334 }
14335 }
14336
14337 for (i = 0; i < len; ++i)
14338 {
14339 if (expanded_specs)
14340 spec = TREE_VEC_ELT (expanded_specs, i);
14341 else
14342 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
14343 if (spec == error_mark_node)
14344 return spec;
14345 new_specs = add_exception_specifier (new_specs, spec,
14346 complain);
14347 }
14348
14349 specs = TREE_CHAIN (specs);
14350 }
14351 }
14352 return new_specs;
14353 }
14354
14355 /* Take the tree structure T and replace template parameters used
14356 therein with the argument vector ARGS. IN_DECL is an associated
14357 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
14358 Issue error and warning messages under control of COMPLAIN. Note
14359 that we must be relatively non-tolerant of extensions here, in
14360 order to preserve conformance; if we allow substitutions that
14361 should not be allowed, we may allow argument deductions that should
14362 not succeed, and therefore report ambiguous overload situations
14363 where there are none. In theory, we could allow the substitution,
14364 but indicate that it should have failed, and allow our caller to
14365 make sure that the right thing happens, but we don't try to do this
14366 yet.
14367
14368 This function is used for dealing with types, decls and the like;
14369 for expressions, use tsubst_expr or tsubst_copy. */
14370
14371 tree
14372 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14373 {
14374 enum tree_code code;
14375 tree type, r = NULL_TREE;
14376
14377 if (t == NULL_TREE || t == error_mark_node
14378 || t == integer_type_node
14379 || t == void_type_node
14380 || t == char_type_node
14381 || t == unknown_type_node
14382 || TREE_CODE (t) == NAMESPACE_DECL
14383 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
14384 return t;
14385
14386 if (DECL_P (t))
14387 return tsubst_decl (t, args, complain);
14388
14389 if (args == NULL_TREE)
14390 return t;
14391
14392 code = TREE_CODE (t);
14393
14394 if (code == IDENTIFIER_NODE)
14395 type = IDENTIFIER_TYPE_VALUE (t);
14396 else
14397 type = TREE_TYPE (t);
14398
14399 gcc_assert (type != unknown_type_node);
14400
14401 /* Reuse typedefs. We need to do this to handle dependent attributes,
14402 such as attribute aligned. */
14403 if (TYPE_P (t)
14404 && typedef_variant_p (t))
14405 {
14406 tree decl = TYPE_NAME (t);
14407
14408 if (alias_template_specialization_p (t))
14409 {
14410 /* DECL represents an alias template and we want to
14411 instantiate it. */
14412 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
14413 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
14414 r = instantiate_alias_template (tmpl, gen_args, complain);
14415 }
14416 else if (DECL_CLASS_SCOPE_P (decl)
14417 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
14418 && uses_template_parms (DECL_CONTEXT (decl)))
14419 {
14420 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
14421 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
14422 r = retrieve_specialization (tmpl, gen_args, 0);
14423 }
14424 else if (DECL_FUNCTION_SCOPE_P (decl)
14425 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
14426 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
14427 r = retrieve_local_specialization (decl);
14428 else
14429 /* The typedef is from a non-template context. */
14430 return t;
14431
14432 if (r)
14433 {
14434 r = TREE_TYPE (r);
14435 r = cp_build_qualified_type_real
14436 (r, cp_type_quals (t) | cp_type_quals (r),
14437 complain | tf_ignore_bad_quals);
14438 return r;
14439 }
14440 else
14441 {
14442 /* We don't have an instantiation yet, so drop the typedef. */
14443 int quals = cp_type_quals (t);
14444 t = DECL_ORIGINAL_TYPE (decl);
14445 t = cp_build_qualified_type_real (t, quals,
14446 complain | tf_ignore_bad_quals);
14447 }
14448 }
14449
14450 bool fndecl_type = (complain & tf_fndecl_type);
14451 complain &= ~tf_fndecl_type;
14452
14453 if (type
14454 && code != TYPENAME_TYPE
14455 && code != TEMPLATE_TYPE_PARM
14456 && code != TEMPLATE_PARM_INDEX
14457 && code != IDENTIFIER_NODE
14458 && code != FUNCTION_TYPE
14459 && code != METHOD_TYPE)
14460 type = tsubst (type, args, complain, in_decl);
14461 if (type == error_mark_node)
14462 return error_mark_node;
14463
14464 switch (code)
14465 {
14466 case RECORD_TYPE:
14467 case UNION_TYPE:
14468 case ENUMERAL_TYPE:
14469 return tsubst_aggr_type (t, args, complain, in_decl,
14470 /*entering_scope=*/0);
14471
14472 case ERROR_MARK:
14473 case IDENTIFIER_NODE:
14474 case VOID_TYPE:
14475 case REAL_TYPE:
14476 case COMPLEX_TYPE:
14477 case VECTOR_TYPE:
14478 case BOOLEAN_TYPE:
14479 case NULLPTR_TYPE:
14480 case LANG_TYPE:
14481 return t;
14482
14483 case INTEGER_TYPE:
14484 if (t == integer_type_node)
14485 return t;
14486
14487 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
14488 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
14489 return t;
14490
14491 {
14492 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
14493
14494 max = tsubst_expr (omax, args, complain, in_decl,
14495 /*integral_constant_expression_p=*/false);
14496
14497 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
14498 needed. */
14499 if (TREE_CODE (max) == NOP_EXPR
14500 && TREE_SIDE_EFFECTS (omax)
14501 && !TREE_TYPE (max))
14502 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
14503
14504 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
14505 with TREE_SIDE_EFFECTS that indicates this is not an integral
14506 constant expression. */
14507 if (processing_template_decl
14508 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
14509 {
14510 gcc_assert (TREE_CODE (max) == NOP_EXPR);
14511 TREE_SIDE_EFFECTS (max) = 1;
14512 }
14513
14514 return compute_array_index_type (NULL_TREE, max, complain);
14515 }
14516
14517 case TEMPLATE_TYPE_PARM:
14518 case TEMPLATE_TEMPLATE_PARM:
14519 case BOUND_TEMPLATE_TEMPLATE_PARM:
14520 case TEMPLATE_PARM_INDEX:
14521 {
14522 int idx;
14523 int level;
14524 int levels;
14525 tree arg = NULL_TREE;
14526
14527 /* Early in template argument deduction substitution, we don't
14528 want to reduce the level of 'auto', or it will be confused
14529 with a normal template parm in subsequent deduction. */
14530 if (is_auto (t) && (complain & tf_partial))
14531 return t;
14532
14533 r = NULL_TREE;
14534
14535 gcc_assert (TREE_VEC_LENGTH (args) > 0);
14536 template_parm_level_and_index (t, &level, &idx);
14537
14538 levels = TMPL_ARGS_DEPTH (args);
14539 if (level <= levels
14540 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
14541 {
14542 arg = TMPL_ARG (args, level, idx);
14543
14544 /* See through ARGUMENT_PACK_SELECT arguments. */
14545 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
14546 arg = argument_pack_select_arg (arg);
14547 }
14548
14549 if (arg == error_mark_node)
14550 return error_mark_node;
14551 else if (arg != NULL_TREE)
14552 {
14553 if (ARGUMENT_PACK_P (arg))
14554 /* If ARG is an argument pack, we don't actually want to
14555 perform a substitution here, because substitutions
14556 for argument packs are only done
14557 element-by-element. We can get to this point when
14558 substituting the type of a non-type template
14559 parameter pack, when that type actually contains
14560 template parameter packs from an outer template, e.g.,
14561
14562 template<typename... Types> struct A {
14563 template<Types... Values> struct B { };
14564 }; */
14565 return t;
14566
14567 if (code == TEMPLATE_TYPE_PARM)
14568 {
14569 int quals;
14570 gcc_assert (TYPE_P (arg));
14571
14572 quals = cp_type_quals (arg) | cp_type_quals (t);
14573
14574 return cp_build_qualified_type_real
14575 (arg, quals, complain | tf_ignore_bad_quals);
14576 }
14577 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
14578 {
14579 /* We are processing a type constructed from a
14580 template template parameter. */
14581 tree argvec = tsubst (TYPE_TI_ARGS (t),
14582 args, complain, in_decl);
14583 if (argvec == error_mark_node)
14584 return error_mark_node;
14585
14586 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
14587 || TREE_CODE (arg) == TEMPLATE_DECL
14588 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
14589
14590 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
14591 /* Consider this code:
14592
14593 template <template <class> class Template>
14594 struct Internal {
14595 template <class Arg> using Bind = Template<Arg>;
14596 };
14597
14598 template <template <class> class Template, class Arg>
14599 using Instantiate = Template<Arg>; //#0
14600
14601 template <template <class> class Template,
14602 class Argument>
14603 using Bind =
14604 Instantiate<Internal<Template>::template Bind,
14605 Argument>; //#1
14606
14607 When #1 is parsed, the
14608 BOUND_TEMPLATE_TEMPLATE_PARM representing the
14609 parameter `Template' in #0 matches the
14610 UNBOUND_CLASS_TEMPLATE representing the argument
14611 `Internal<Template>::template Bind'; We then want
14612 to assemble the type `Bind<Argument>' that can't
14613 be fully created right now, because
14614 `Internal<Template>' not being complete, the Bind
14615 template cannot be looked up in that context. So
14616 we need to "store" `Bind<Argument>' for later
14617 when the context of Bind becomes complete. Let's
14618 store that in a TYPENAME_TYPE. */
14619 return make_typename_type (TYPE_CONTEXT (arg),
14620 build_nt (TEMPLATE_ID_EXPR,
14621 TYPE_IDENTIFIER (arg),
14622 argvec),
14623 typename_type,
14624 complain);
14625
14626 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
14627 are resolving nested-types in the signature of a
14628 member function templates. Otherwise ARG is a
14629 TEMPLATE_DECL and is the real template to be
14630 instantiated. */
14631 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
14632 arg = TYPE_NAME (arg);
14633
14634 r = lookup_template_class (arg,
14635 argvec, in_decl,
14636 DECL_CONTEXT (arg),
14637 /*entering_scope=*/0,
14638 complain);
14639 return cp_build_qualified_type_real
14640 (r, cp_type_quals (t) | cp_type_quals (r), complain);
14641 }
14642 else if (code == TEMPLATE_TEMPLATE_PARM)
14643 return arg;
14644 else
14645 /* TEMPLATE_PARM_INDEX. */
14646 return convert_from_reference (unshare_expr (arg));
14647 }
14648
14649 if (level == 1)
14650 /* This can happen during the attempted tsubst'ing in
14651 unify. This means that we don't yet have any information
14652 about the template parameter in question. */
14653 return t;
14654
14655 /* If we get here, we must have been looking at a parm for a
14656 more deeply nested template. Make a new version of this
14657 template parameter, but with a lower level. */
14658 switch (code)
14659 {
14660 case TEMPLATE_TYPE_PARM:
14661 case TEMPLATE_TEMPLATE_PARM:
14662 case BOUND_TEMPLATE_TEMPLATE_PARM:
14663 if (cp_type_quals (t))
14664 {
14665 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
14666 r = cp_build_qualified_type_real
14667 (r, cp_type_quals (t),
14668 complain | (code == TEMPLATE_TYPE_PARM
14669 ? tf_ignore_bad_quals : 0));
14670 }
14671 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
14672 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
14673 && (r = (TEMPLATE_PARM_DESCENDANTS
14674 (TEMPLATE_TYPE_PARM_INDEX (t))))
14675 && (r = TREE_TYPE (r))
14676 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
14677 /* Break infinite recursion when substituting the constraints
14678 of a constrained placeholder. */;
14679 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
14680 && !PLACEHOLDER_TYPE_CONSTRAINTS (t)
14681 && !CLASS_PLACEHOLDER_TEMPLATE (t)
14682 && (arg = TEMPLATE_TYPE_PARM_INDEX (t),
14683 r = TEMPLATE_PARM_DESCENDANTS (arg))
14684 && (TEMPLATE_PARM_LEVEL (r)
14685 == TEMPLATE_PARM_LEVEL (arg) - levels))
14686 /* Cache the simple case of lowering a type parameter. */
14687 r = TREE_TYPE (r);
14688 else
14689 {
14690 r = copy_type (t);
14691 TEMPLATE_TYPE_PARM_INDEX (r)
14692 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
14693 r, levels, args, complain);
14694 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
14695 TYPE_MAIN_VARIANT (r) = r;
14696 TYPE_POINTER_TO (r) = NULL_TREE;
14697 TYPE_REFERENCE_TO (r) = NULL_TREE;
14698
14699 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
14700 {
14701 /* Propagate constraints on placeholders. */
14702 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
14703 PLACEHOLDER_TYPE_CONSTRAINTS (r)
14704 = tsubst_constraint (constr, args, complain, in_decl);
14705 else if (tree pl = CLASS_PLACEHOLDER_TEMPLATE (t))
14706 {
14707 pl = tsubst_copy (pl, args, complain, in_decl);
14708 CLASS_PLACEHOLDER_TEMPLATE (r) = pl;
14709 }
14710 }
14711
14712 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
14713 /* We have reduced the level of the template
14714 template parameter, but not the levels of its
14715 template parameters, so canonical_type_parameter
14716 will not be able to find the canonical template
14717 template parameter for this level. Thus, we
14718 require structural equality checking to compare
14719 TEMPLATE_TEMPLATE_PARMs. */
14720 SET_TYPE_STRUCTURAL_EQUALITY (r);
14721 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
14722 SET_TYPE_STRUCTURAL_EQUALITY (r);
14723 else
14724 TYPE_CANONICAL (r) = canonical_type_parameter (r);
14725
14726 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
14727 {
14728 tree tinfo = TYPE_TEMPLATE_INFO (t);
14729 /* We might need to substitute into the types of non-type
14730 template parameters. */
14731 tree tmpl = tsubst (TI_TEMPLATE (tinfo), args,
14732 complain, in_decl);
14733 if (tmpl == error_mark_node)
14734 return error_mark_node;
14735 tree argvec = tsubst (TI_ARGS (tinfo), args,
14736 complain, in_decl);
14737 if (argvec == error_mark_node)
14738 return error_mark_node;
14739
14740 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
14741 = build_template_info (tmpl, argvec);
14742 }
14743 }
14744 break;
14745
14746 case TEMPLATE_PARM_INDEX:
14747 /* OK, now substitute the type of the non-type parameter. We
14748 couldn't do it earlier because it might be an auto parameter,
14749 and we wouldn't need to if we had an argument. */
14750 type = tsubst (type, args, complain, in_decl);
14751 if (type == error_mark_node)
14752 return error_mark_node;
14753 r = reduce_template_parm_level (t, type, levels, args, complain);
14754 break;
14755
14756 default:
14757 gcc_unreachable ();
14758 }
14759
14760 return r;
14761 }
14762
14763 case TREE_LIST:
14764 {
14765 tree purpose, value, chain;
14766
14767 if (t == void_list_node)
14768 return t;
14769
14770 purpose = TREE_PURPOSE (t);
14771 if (purpose)
14772 {
14773 purpose = tsubst (purpose, args, complain, in_decl);
14774 if (purpose == error_mark_node)
14775 return error_mark_node;
14776 }
14777 value = TREE_VALUE (t);
14778 if (value)
14779 {
14780 value = tsubst (value, args, complain, in_decl);
14781 if (value == error_mark_node)
14782 return error_mark_node;
14783 }
14784 chain = TREE_CHAIN (t);
14785 if (chain && chain != void_type_node)
14786 {
14787 chain = tsubst (chain, args, complain, in_decl);
14788 if (chain == error_mark_node)
14789 return error_mark_node;
14790 }
14791 if (purpose == TREE_PURPOSE (t)
14792 && value == TREE_VALUE (t)
14793 && chain == TREE_CHAIN (t))
14794 return t;
14795 return hash_tree_cons (purpose, value, chain);
14796 }
14797
14798 case TREE_BINFO:
14799 /* We should never be tsubsting a binfo. */
14800 gcc_unreachable ();
14801
14802 case TREE_VEC:
14803 /* A vector of template arguments. */
14804 gcc_assert (!type);
14805 return tsubst_template_args (t, args, complain, in_decl);
14806
14807 case POINTER_TYPE:
14808 case REFERENCE_TYPE:
14809 {
14810 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
14811 return t;
14812
14813 /* [temp.deduct]
14814
14815 Type deduction may fail for any of the following
14816 reasons:
14817
14818 -- Attempting to create a pointer to reference type.
14819 -- Attempting to create a reference to a reference type or
14820 a reference to void.
14821
14822 Core issue 106 says that creating a reference to a reference
14823 during instantiation is no longer a cause for failure. We
14824 only enforce this check in strict C++98 mode. */
14825 if ((TYPE_REF_P (type)
14826 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
14827 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
14828 {
14829 static location_t last_loc;
14830
14831 /* We keep track of the last time we issued this error
14832 message to avoid spewing a ton of messages during a
14833 single bad template instantiation. */
14834 if (complain & tf_error
14835 && last_loc != input_location)
14836 {
14837 if (VOID_TYPE_P (type))
14838 error ("forming reference to void");
14839 else if (code == POINTER_TYPE)
14840 error ("forming pointer to reference type %qT", type);
14841 else
14842 error ("forming reference to reference type %qT", type);
14843 last_loc = input_location;
14844 }
14845
14846 return error_mark_node;
14847 }
14848 else if (TREE_CODE (type) == FUNCTION_TYPE
14849 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
14850 || type_memfn_rqual (type) != REF_QUAL_NONE))
14851 {
14852 if (complain & tf_error)
14853 {
14854 if (code == POINTER_TYPE)
14855 error ("forming pointer to qualified function type %qT",
14856 type);
14857 else
14858 error ("forming reference to qualified function type %qT",
14859 type);
14860 }
14861 return error_mark_node;
14862 }
14863 else if (code == POINTER_TYPE)
14864 {
14865 r = build_pointer_type (type);
14866 if (TREE_CODE (type) == METHOD_TYPE)
14867 r = build_ptrmemfunc_type (r);
14868 }
14869 else if (TYPE_REF_P (type))
14870 /* In C++0x, during template argument substitution, when there is an
14871 attempt to create a reference to a reference type, reference
14872 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
14873
14874 "If a template-argument for a template-parameter T names a type
14875 that is a reference to a type A, an attempt to create the type
14876 'lvalue reference to cv T' creates the type 'lvalue reference to
14877 A,' while an attempt to create the type type rvalue reference to
14878 cv T' creates the type T"
14879 */
14880 r = cp_build_reference_type
14881 (TREE_TYPE (type),
14882 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
14883 else
14884 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
14885 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
14886
14887 if (r != error_mark_node)
14888 /* Will this ever be needed for TYPE_..._TO values? */
14889 layout_type (r);
14890
14891 return r;
14892 }
14893 case OFFSET_TYPE:
14894 {
14895 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
14896 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
14897 {
14898 /* [temp.deduct]
14899
14900 Type deduction may fail for any of the following
14901 reasons:
14902
14903 -- Attempting to create "pointer to member of T" when T
14904 is not a class type. */
14905 if (complain & tf_error)
14906 error ("creating pointer to member of non-class type %qT", r);
14907 return error_mark_node;
14908 }
14909 if (TYPE_REF_P (type))
14910 {
14911 if (complain & tf_error)
14912 error ("creating pointer to member reference type %qT", type);
14913 return error_mark_node;
14914 }
14915 if (VOID_TYPE_P (type))
14916 {
14917 if (complain & tf_error)
14918 error ("creating pointer to member of type void");
14919 return error_mark_node;
14920 }
14921 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
14922 if (TREE_CODE (type) == FUNCTION_TYPE)
14923 {
14924 /* The type of the implicit object parameter gets its
14925 cv-qualifiers from the FUNCTION_TYPE. */
14926 tree memptr;
14927 tree method_type
14928 = build_memfn_type (type, r, type_memfn_quals (type),
14929 type_memfn_rqual (type));
14930 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
14931 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
14932 complain);
14933 }
14934 else
14935 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
14936 cp_type_quals (t),
14937 complain);
14938 }
14939 case FUNCTION_TYPE:
14940 case METHOD_TYPE:
14941 {
14942 tree fntype;
14943 tree specs;
14944 fntype = tsubst_function_type (t, args, complain, in_decl);
14945 if (fntype == error_mark_node)
14946 return error_mark_node;
14947
14948 /* Substitute the exception specification. */
14949 specs = tsubst_exception_specification (t, args, complain, in_decl,
14950 /*defer_ok*/fndecl_type);
14951 if (specs == error_mark_node)
14952 return error_mark_node;
14953 if (specs)
14954 fntype = build_exception_variant (fntype, specs);
14955 return fntype;
14956 }
14957 case ARRAY_TYPE:
14958 {
14959 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
14960 if (domain == error_mark_node)
14961 return error_mark_node;
14962
14963 /* As an optimization, we avoid regenerating the array type if
14964 it will obviously be the same as T. */
14965 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
14966 return t;
14967
14968 /* These checks should match the ones in create_array_type_for_decl.
14969
14970 [temp.deduct]
14971
14972 The deduction may fail for any of the following reasons:
14973
14974 -- Attempting to create an array with an element type that
14975 is void, a function type, or a reference type, or [DR337]
14976 an abstract class type. */
14977 if (VOID_TYPE_P (type)
14978 || TREE_CODE (type) == FUNCTION_TYPE
14979 || (TREE_CODE (type) == ARRAY_TYPE
14980 && TYPE_DOMAIN (type) == NULL_TREE)
14981 || TYPE_REF_P (type))
14982 {
14983 if (complain & tf_error)
14984 error ("creating array of %qT", type);
14985 return error_mark_node;
14986 }
14987
14988 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
14989 return error_mark_node;
14990
14991 r = build_cplus_array_type (type, domain);
14992
14993 if (!valid_array_size_p (input_location, r, in_decl,
14994 (complain & tf_error)))
14995 return error_mark_node;
14996
14997 if (TYPE_USER_ALIGN (t))
14998 {
14999 SET_TYPE_ALIGN (r, TYPE_ALIGN (t));
15000 TYPE_USER_ALIGN (r) = 1;
15001 }
15002
15003 return r;
15004 }
15005
15006 case TYPENAME_TYPE:
15007 {
15008 tree ctx = TYPE_CONTEXT (t);
15009 if (TREE_CODE (ctx) == TYPE_PACK_EXPANSION)
15010 {
15011 ctx = tsubst_pack_expansion (ctx, args, complain, in_decl);
15012 if (ctx == error_mark_node
15013 || TREE_VEC_LENGTH (ctx) > 1)
15014 return error_mark_node;
15015 if (TREE_VEC_LENGTH (ctx) == 0)
15016 {
15017 if (complain & tf_error)
15018 error ("%qD is instantiated for an empty pack",
15019 TYPENAME_TYPE_FULLNAME (t));
15020 return error_mark_node;
15021 }
15022 ctx = TREE_VEC_ELT (ctx, 0);
15023 }
15024 else
15025 ctx = tsubst_aggr_type (ctx, args, complain, in_decl,
15026 /*entering_scope=*/1);
15027 if (ctx == error_mark_node)
15028 return error_mark_node;
15029
15030 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
15031 complain, in_decl);
15032 if (f == error_mark_node)
15033 return error_mark_node;
15034
15035 if (!MAYBE_CLASS_TYPE_P (ctx))
15036 {
15037 if (complain & tf_error)
15038 error ("%qT is not a class, struct, or union type", ctx);
15039 return error_mark_node;
15040 }
15041 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
15042 {
15043 /* Normally, make_typename_type does not require that the CTX
15044 have complete type in order to allow things like:
15045
15046 template <class T> struct S { typename S<T>::X Y; };
15047
15048 But, such constructs have already been resolved by this
15049 point, so here CTX really should have complete type, unless
15050 it's a partial instantiation. */
15051 ctx = complete_type (ctx);
15052 if (!COMPLETE_TYPE_P (ctx))
15053 {
15054 if (complain & tf_error)
15055 cxx_incomplete_type_error (NULL_TREE, ctx);
15056 return error_mark_node;
15057 }
15058 }
15059
15060 f = make_typename_type (ctx, f, typename_type,
15061 complain | tf_keep_type_decl);
15062 if (f == error_mark_node)
15063 return f;
15064 if (TREE_CODE (f) == TYPE_DECL)
15065 {
15066 complain |= tf_ignore_bad_quals;
15067 f = TREE_TYPE (f);
15068 }
15069
15070 if (TREE_CODE (f) != TYPENAME_TYPE)
15071 {
15072 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
15073 {
15074 if (complain & tf_error)
15075 error ("%qT resolves to %qT, which is not an enumeration type",
15076 t, f);
15077 else
15078 return error_mark_node;
15079 }
15080 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
15081 {
15082 if (complain & tf_error)
15083 error ("%qT resolves to %qT, which is is not a class type",
15084 t, f);
15085 else
15086 return error_mark_node;
15087 }
15088 }
15089
15090 return cp_build_qualified_type_real
15091 (f, cp_type_quals (f) | cp_type_quals (t), complain);
15092 }
15093
15094 case UNBOUND_CLASS_TEMPLATE:
15095 {
15096 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
15097 in_decl, /*entering_scope=*/1);
15098 tree name = TYPE_IDENTIFIER (t);
15099 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
15100
15101 if (ctx == error_mark_node || name == error_mark_node)
15102 return error_mark_node;
15103
15104 if (parm_list)
15105 parm_list = tsubst_template_parms (parm_list, args, complain);
15106 return make_unbound_class_template (ctx, name, parm_list, complain);
15107 }
15108
15109 case TYPEOF_TYPE:
15110 {
15111 tree type;
15112
15113 ++cp_unevaluated_operand;
15114 ++c_inhibit_evaluation_warnings;
15115
15116 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
15117 complain, in_decl,
15118 /*integral_constant_expression_p=*/false);
15119
15120 --cp_unevaluated_operand;
15121 --c_inhibit_evaluation_warnings;
15122
15123 type = finish_typeof (type);
15124 return cp_build_qualified_type_real (type,
15125 cp_type_quals (t)
15126 | cp_type_quals (type),
15127 complain);
15128 }
15129
15130 case DECLTYPE_TYPE:
15131 {
15132 tree type;
15133
15134 ++cp_unevaluated_operand;
15135 ++c_inhibit_evaluation_warnings;
15136
15137 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
15138 complain|tf_decltype, in_decl,
15139 /*function_p*/false,
15140 /*integral_constant_expression*/false);
15141
15142 --cp_unevaluated_operand;
15143 --c_inhibit_evaluation_warnings;
15144
15145 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
15146 type = lambda_capture_field_type (type,
15147 false /*explicit_init*/,
15148 DECLTYPE_FOR_REF_CAPTURE (t));
15149 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
15150 type = lambda_proxy_type (type);
15151 else
15152 {
15153 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
15154 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
15155 && EXPR_P (type))
15156 /* In a template ~id could be either a complement expression
15157 or an unqualified-id naming a destructor; if instantiating
15158 it produces an expression, it's not an id-expression or
15159 member access. */
15160 id = false;
15161 type = finish_decltype_type (type, id, complain);
15162 }
15163 return cp_build_qualified_type_real (type,
15164 cp_type_quals (t)
15165 | cp_type_quals (type),
15166 complain | tf_ignore_bad_quals);
15167 }
15168
15169 case UNDERLYING_TYPE:
15170 {
15171 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
15172 complain, in_decl);
15173 return finish_underlying_type (type);
15174 }
15175
15176 case TYPE_ARGUMENT_PACK:
15177 case NONTYPE_ARGUMENT_PACK:
15178 {
15179 tree r;
15180
15181 if (code == NONTYPE_ARGUMENT_PACK)
15182 r = make_node (code);
15183 else
15184 r = cxx_make_type (code);
15185
15186 tree pack_args = ARGUMENT_PACK_ARGS (t);
15187 pack_args = tsubst_template_args (pack_args, args, complain, in_decl);
15188 SET_ARGUMENT_PACK_ARGS (r, pack_args);
15189
15190 return r;
15191 }
15192
15193 case VOID_CST:
15194 case INTEGER_CST:
15195 case REAL_CST:
15196 case STRING_CST:
15197 case PLUS_EXPR:
15198 case MINUS_EXPR:
15199 case NEGATE_EXPR:
15200 case NOP_EXPR:
15201 case INDIRECT_REF:
15202 case ADDR_EXPR:
15203 case CALL_EXPR:
15204 case ARRAY_REF:
15205 case SCOPE_REF:
15206 /* We should use one of the expression tsubsts for these codes. */
15207 gcc_unreachable ();
15208
15209 default:
15210 sorry ("use of %qs in template", get_tree_code_name (code));
15211 return error_mark_node;
15212 }
15213 }
15214
15215 /* tsubst a BASELINK. OBJECT_TYPE, if non-NULL, is the type of the
15216 expression on the left-hand side of the "." or "->" operator. We
15217 only do the lookup if we had a dependent BASELINK. Otherwise we
15218 adjust it onto the instantiated heirarchy. */
15219
15220 static tree
15221 tsubst_baselink (tree baselink, tree object_type,
15222 tree args, tsubst_flags_t complain, tree in_decl)
15223 {
15224 bool qualified_p = BASELINK_QUALIFIED_P (baselink);
15225 tree qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
15226 qualifying_scope = tsubst (qualifying_scope, args, complain, in_decl);
15227
15228 tree optype = BASELINK_OPTYPE (baselink);
15229 optype = tsubst (optype, args, complain, in_decl);
15230
15231 tree template_args = NULL_TREE;
15232 bool template_id_p = false;
15233 tree fns = BASELINK_FUNCTIONS (baselink);
15234 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
15235 {
15236 template_id_p = true;
15237 template_args = TREE_OPERAND (fns, 1);
15238 fns = TREE_OPERAND (fns, 0);
15239 if (template_args)
15240 template_args = tsubst_template_args (template_args, args,
15241 complain, in_decl);
15242 }
15243
15244 tree binfo_type = BINFO_TYPE (BASELINK_BINFO (baselink));
15245 binfo_type = tsubst (binfo_type, args, complain, in_decl);
15246 bool dependent_p = binfo_type != BINFO_TYPE (BASELINK_BINFO (baselink));
15247
15248 if (dependent_p)
15249 {
15250 tree name = OVL_NAME (fns);
15251 if (IDENTIFIER_CONV_OP_P (name))
15252 name = make_conv_op_name (optype);
15253
15254 if (name == complete_dtor_identifier)
15255 /* Treat as-if non-dependent below. */
15256 dependent_p = false;
15257
15258 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
15259 if (!baselink)
15260 {
15261 if ((complain & tf_error)
15262 && constructor_name_p (name, qualifying_scope))
15263 error ("cannot call constructor %<%T::%D%> directly",
15264 qualifying_scope, name);
15265 return error_mark_node;
15266 }
15267
15268 if (BASELINK_P (baselink))
15269 fns = BASELINK_FUNCTIONS (baselink);
15270 }
15271 else
15272 /* We're going to overwrite pieces below, make a duplicate. */
15273 baselink = copy_node (baselink);
15274
15275 /* If lookup found a single function, mark it as used at this point.
15276 (If lookup found multiple functions the one selected later by
15277 overload resolution will be marked as used at that point.) */
15278 if (!template_id_p && !really_overloaded_fn (fns))
15279 {
15280 tree fn = OVL_FIRST (fns);
15281 bool ok = mark_used (fn, complain);
15282 if (!ok && !(complain & tf_error))
15283 return error_mark_node;
15284 if (ok && BASELINK_P (baselink))
15285 /* We might have instantiated an auto function. */
15286 TREE_TYPE (baselink) = TREE_TYPE (fn);
15287 }
15288
15289 if (BASELINK_P (baselink))
15290 {
15291 /* Add back the template arguments, if present. */
15292 if (template_id_p)
15293 BASELINK_FUNCTIONS (baselink)
15294 = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fns, template_args);
15295
15296 /* Update the conversion operator type. */
15297 BASELINK_OPTYPE (baselink) = optype;
15298 }
15299
15300 if (!object_type)
15301 object_type = current_class_type;
15302
15303 if (qualified_p || !dependent_p)
15304 {
15305 baselink = adjust_result_of_qualified_name_lookup (baselink,
15306 qualifying_scope,
15307 object_type);
15308 if (!qualified_p)
15309 /* We need to call adjust_result_of_qualified_name_lookup in case the
15310 destructor names a base class, but we unset BASELINK_QUALIFIED_P
15311 so that we still get virtual function binding. */
15312 BASELINK_QUALIFIED_P (baselink) = false;
15313 }
15314
15315 return baselink;
15316 }
15317
15318 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
15319 true if the qualified-id will be a postfix-expression in-and-of
15320 itself; false if more of the postfix-expression follows the
15321 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
15322 of "&". */
15323
15324 static tree
15325 tsubst_qualified_id (tree qualified_id, tree args,
15326 tsubst_flags_t complain, tree in_decl,
15327 bool done, bool address_p)
15328 {
15329 tree expr;
15330 tree scope;
15331 tree name;
15332 bool is_template;
15333 tree template_args;
15334 location_t loc = UNKNOWN_LOCATION;
15335
15336 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
15337
15338 /* Figure out what name to look up. */
15339 name = TREE_OPERAND (qualified_id, 1);
15340 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
15341 {
15342 is_template = true;
15343 loc = EXPR_LOCATION (name);
15344 template_args = TREE_OPERAND (name, 1);
15345 if (template_args)
15346 template_args = tsubst_template_args (template_args, args,
15347 complain, in_decl);
15348 if (template_args == error_mark_node)
15349 return error_mark_node;
15350 name = TREE_OPERAND (name, 0);
15351 }
15352 else
15353 {
15354 is_template = false;
15355 template_args = NULL_TREE;
15356 }
15357
15358 /* Substitute into the qualifying scope. When there are no ARGS, we
15359 are just trying to simplify a non-dependent expression. In that
15360 case the qualifying scope may be dependent, and, in any case,
15361 substituting will not help. */
15362 scope = TREE_OPERAND (qualified_id, 0);
15363 if (args)
15364 {
15365 scope = tsubst (scope, args, complain, in_decl);
15366 expr = tsubst_copy (name, args, complain, in_decl);
15367 }
15368 else
15369 expr = name;
15370
15371 if (dependent_scope_p (scope))
15372 {
15373 if (is_template)
15374 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
15375 tree r = build_qualified_name (NULL_TREE, scope, expr,
15376 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
15377 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (qualified_id);
15378 return r;
15379 }
15380
15381 if (!BASELINK_P (name) && !DECL_P (expr))
15382 {
15383 if (TREE_CODE (expr) == BIT_NOT_EXPR)
15384 {
15385 /* A BIT_NOT_EXPR is used to represent a destructor. */
15386 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
15387 {
15388 error ("qualifying type %qT does not match destructor name ~%qT",
15389 scope, TREE_OPERAND (expr, 0));
15390 expr = error_mark_node;
15391 }
15392 else
15393 expr = lookup_qualified_name (scope, complete_dtor_identifier,
15394 /*is_type_p=*/0, false);
15395 }
15396 else
15397 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
15398 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
15399 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
15400 {
15401 if (complain & tf_error)
15402 {
15403 error ("dependent-name %qE is parsed as a non-type, but "
15404 "instantiation yields a type", qualified_id);
15405 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
15406 }
15407 return error_mark_node;
15408 }
15409 }
15410
15411 if (DECL_P (expr))
15412 {
15413 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
15414 scope);
15415 /* Remember that there was a reference to this entity. */
15416 if (!mark_used (expr, complain) && !(complain & tf_error))
15417 return error_mark_node;
15418 }
15419
15420 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
15421 {
15422 if (complain & tf_error)
15423 qualified_name_lookup_error (scope,
15424 TREE_OPERAND (qualified_id, 1),
15425 expr, input_location);
15426 return error_mark_node;
15427 }
15428
15429 if (is_template)
15430 {
15431 /* We may be repeating a check already done during parsing, but
15432 if it was well-formed and passed then, it will pass again
15433 now, and if it didn't, we wouldn't have got here. The case
15434 we want to catch is when we couldn't tell then, and can now,
15435 namely when templ prior to substitution was an
15436 identifier. */
15437 if (flag_concepts && check_auto_in_tmpl_args (expr, template_args))
15438 return error_mark_node;
15439
15440 if (variable_template_p (expr))
15441 expr = lookup_and_finish_template_variable (expr, template_args,
15442 complain);
15443 else
15444 expr = lookup_template_function (expr, template_args);
15445 }
15446
15447 if (expr == error_mark_node && complain & tf_error)
15448 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
15449 expr, input_location);
15450 else if (TYPE_P (scope))
15451 {
15452 expr = (adjust_result_of_qualified_name_lookup
15453 (expr, scope, current_nonlambda_class_type ()));
15454 expr = (finish_qualified_id_expr
15455 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
15456 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
15457 /*template_arg_p=*/false, complain));
15458 }
15459
15460 /* Expressions do not generally have reference type. */
15461 if (TREE_CODE (expr) != SCOPE_REF
15462 /* However, if we're about to form a pointer-to-member, we just
15463 want the referenced member referenced. */
15464 && TREE_CODE (expr) != OFFSET_REF)
15465 expr = convert_from_reference (expr);
15466
15467 if (REF_PARENTHESIZED_P (qualified_id))
15468 expr = force_paren_expr (expr);
15469
15470 return expr;
15471 }
15472
15473 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
15474 initializer, DECL is the substituted VAR_DECL. Other arguments are as
15475 for tsubst. */
15476
15477 static tree
15478 tsubst_init (tree init, tree decl, tree args,
15479 tsubst_flags_t complain, tree in_decl)
15480 {
15481 if (!init)
15482 return NULL_TREE;
15483
15484 init = tsubst_expr (init, args, complain, in_decl, false);
15485
15486 tree type = TREE_TYPE (decl);
15487
15488 if (!init && type != error_mark_node)
15489 {
15490 if (tree auto_node = type_uses_auto (type))
15491 {
15492 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
15493 {
15494 if (complain & tf_error)
15495 error ("initializer for %q#D expands to an empty list "
15496 "of expressions", decl);
15497 return error_mark_node;
15498 }
15499 }
15500 else if (!dependent_type_p (type))
15501 {
15502 /* If we had an initializer but it
15503 instantiated to nothing,
15504 value-initialize the object. This will
15505 only occur when the initializer was a
15506 pack expansion where the parameter packs
15507 used in that expansion were of length
15508 zero. */
15509 init = build_value_init (type, complain);
15510 if (TREE_CODE (init) == AGGR_INIT_EXPR)
15511 init = get_target_expr_sfinae (init, complain);
15512 if (TREE_CODE (init) == TARGET_EXPR)
15513 TARGET_EXPR_DIRECT_INIT_P (init) = true;
15514 }
15515 }
15516
15517 return init;
15518 }
15519
15520 /* Like tsubst, but deals with expressions. This function just replaces
15521 template parms; to finish processing the resultant expression, use
15522 tsubst_copy_and_build or tsubst_expr. */
15523
15524 static tree
15525 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15526 {
15527 enum tree_code code;
15528 tree r;
15529
15530 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
15531 return t;
15532
15533 code = TREE_CODE (t);
15534
15535 switch (code)
15536 {
15537 case PARM_DECL:
15538 r = retrieve_local_specialization (t);
15539
15540 if (r == NULL_TREE)
15541 {
15542 /* We get here for a use of 'this' in an NSDMI. */
15543 if (DECL_NAME (t) == this_identifier && current_class_ptr)
15544 return current_class_ptr;
15545
15546 /* This can happen for a parameter name used later in a function
15547 declaration (such as in a late-specified return type). Just
15548 make a dummy decl, since it's only used for its type. */
15549 gcc_assert (cp_unevaluated_operand != 0);
15550 r = tsubst_decl (t, args, complain);
15551 /* Give it the template pattern as its context; its true context
15552 hasn't been instantiated yet and this is good enough for
15553 mangling. */
15554 DECL_CONTEXT (r) = DECL_CONTEXT (t);
15555 }
15556
15557 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
15558 r = argument_pack_select_arg (r);
15559 if (!mark_used (r, complain) && !(complain & tf_error))
15560 return error_mark_node;
15561 return r;
15562
15563 case CONST_DECL:
15564 {
15565 tree enum_type;
15566 tree v;
15567
15568 if (DECL_TEMPLATE_PARM_P (t))
15569 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
15570 /* There is no need to substitute into namespace-scope
15571 enumerators. */
15572 if (DECL_NAMESPACE_SCOPE_P (t))
15573 return t;
15574 /* If ARGS is NULL, then T is known to be non-dependent. */
15575 if (args == NULL_TREE)
15576 return scalar_constant_value (t);
15577
15578 /* Unfortunately, we cannot just call lookup_name here.
15579 Consider:
15580
15581 template <int I> int f() {
15582 enum E { a = I };
15583 struct S { void g() { E e = a; } };
15584 };
15585
15586 When we instantiate f<7>::S::g(), say, lookup_name is not
15587 clever enough to find f<7>::a. */
15588 enum_type
15589 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
15590 /*entering_scope=*/0);
15591
15592 for (v = TYPE_VALUES (enum_type);
15593 v != NULL_TREE;
15594 v = TREE_CHAIN (v))
15595 if (TREE_PURPOSE (v) == DECL_NAME (t))
15596 return TREE_VALUE (v);
15597
15598 /* We didn't find the name. That should never happen; if
15599 name-lookup found it during preliminary parsing, we
15600 should find it again here during instantiation. */
15601 gcc_unreachable ();
15602 }
15603 return t;
15604
15605 case FIELD_DECL:
15606 if (DECL_CONTEXT (t))
15607 {
15608 tree ctx;
15609
15610 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
15611 /*entering_scope=*/1);
15612 if (ctx != DECL_CONTEXT (t))
15613 {
15614 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
15615 if (!r)
15616 {
15617 if (complain & tf_error)
15618 error ("using invalid field %qD", t);
15619 return error_mark_node;
15620 }
15621 return r;
15622 }
15623 }
15624
15625 return t;
15626
15627 case VAR_DECL:
15628 case FUNCTION_DECL:
15629 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
15630 r = tsubst (t, args, complain, in_decl);
15631 else if (local_variable_p (t)
15632 && uses_template_parms (DECL_CONTEXT (t)))
15633 {
15634 r = retrieve_local_specialization (t);
15635 if (r == NULL_TREE)
15636 {
15637 /* First try name lookup to find the instantiation. */
15638 r = lookup_name (DECL_NAME (t));
15639 if (r)
15640 {
15641 if (!VAR_P (r))
15642 {
15643 /* During error-recovery we may find a non-variable,
15644 even an OVERLOAD: just bail out and avoid ICEs and
15645 duplicate diagnostics (c++/62207). */
15646 gcc_assert (seen_error ());
15647 return error_mark_node;
15648 }
15649 if (!is_capture_proxy (r))
15650 {
15651 /* Make sure the one we found is the one we want. */
15652 tree ctx = enclosing_instantiation_of (DECL_CONTEXT (t));
15653 if (ctx != DECL_CONTEXT (r))
15654 r = NULL_TREE;
15655 }
15656 }
15657
15658 if (r)
15659 /* OK */;
15660 else
15661 {
15662 /* This can happen for a variable used in a
15663 late-specified return type of a local lambda, or for a
15664 local static or constant. Building a new VAR_DECL
15665 should be OK in all those cases. */
15666 r = tsubst_decl (t, args, complain);
15667 if (local_specializations)
15668 /* Avoid infinite recursion (79640). */
15669 register_local_specialization (r, t);
15670 if (decl_maybe_constant_var_p (r))
15671 {
15672 /* We can't call cp_finish_decl, so handle the
15673 initializer by hand. */
15674 tree init = tsubst_init (DECL_INITIAL (t), r, args,
15675 complain, in_decl);
15676 if (!processing_template_decl)
15677 init = maybe_constant_init (init);
15678 if (processing_template_decl
15679 ? potential_constant_expression (init)
15680 : reduced_constant_expression_p (init))
15681 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
15682 = TREE_CONSTANT (r) = true;
15683 DECL_INITIAL (r) = init;
15684 if (tree auto_node = type_uses_auto (TREE_TYPE (r)))
15685 TREE_TYPE (r)
15686 = do_auto_deduction (TREE_TYPE (r), init, auto_node,
15687 complain, adc_variable_type);
15688 }
15689 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
15690 || decl_constant_var_p (r)
15691 || seen_error ());
15692 if (!processing_template_decl
15693 && !TREE_STATIC (r))
15694 r = process_outer_var_ref (r, complain);
15695 }
15696 /* Remember this for subsequent uses. */
15697 if (local_specializations)
15698 register_local_specialization (r, t);
15699 }
15700 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
15701 r = argument_pack_select_arg (r);
15702 }
15703 else
15704 r = t;
15705 if (!mark_used (r, complain))
15706 return error_mark_node;
15707 return r;
15708
15709 case NAMESPACE_DECL:
15710 return t;
15711
15712 case OVERLOAD:
15713 return t;
15714
15715 case BASELINK:
15716 return tsubst_baselink (t, current_nonlambda_class_type (),
15717 args, complain, in_decl);
15718
15719 case TEMPLATE_DECL:
15720 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
15721 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
15722 args, complain, in_decl);
15723 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
15724 return tsubst (t, args, complain, in_decl);
15725 else if (DECL_CLASS_SCOPE_P (t)
15726 && uses_template_parms (DECL_CONTEXT (t)))
15727 {
15728 /* Template template argument like the following example need
15729 special treatment:
15730
15731 template <template <class> class TT> struct C {};
15732 template <class T> struct D {
15733 template <class U> struct E {};
15734 C<E> c; // #1
15735 };
15736 D<int> d; // #2
15737
15738 We are processing the template argument `E' in #1 for
15739 the template instantiation #2. Originally, `E' is a
15740 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
15741 have to substitute this with one having context `D<int>'. */
15742
15743 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
15744 if (dependent_scope_p (context))
15745 {
15746 /* When rewriting a constructor into a deduction guide, a
15747 non-dependent name can become dependent, so memtmpl<args>
15748 becomes context::template memtmpl<args>. */
15749 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15750 return build_qualified_name (type, context, DECL_NAME (t),
15751 /*template*/true);
15752 }
15753 return lookup_field (context, DECL_NAME(t), 0, false);
15754 }
15755 else
15756 /* Ordinary template template argument. */
15757 return t;
15758
15759 case NON_LVALUE_EXPR:
15760 case VIEW_CONVERT_EXPR:
15761 {
15762 /* Handle location wrappers by substituting the wrapped node
15763 first, *then* reusing the resulting type. Doing the type
15764 first ensures that we handle template parameters and
15765 parameter pack expansions. */
15766 if (location_wrapper_p (t))
15767 {
15768 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args,
15769 complain, in_decl);
15770 return maybe_wrap_with_location (op0, EXPR_LOCATION (t));
15771 }
15772 tree op = TREE_OPERAND (t, 0);
15773 if (code == VIEW_CONVERT_EXPR
15774 && TREE_CODE (op) == TEMPLATE_PARM_INDEX)
15775 {
15776 /* Wrapper to make a C++20 template parameter object const. */
15777 op = tsubst_copy (op, args, complain, in_decl);
15778 if (TREE_CODE (op) == TEMPLATE_PARM_INDEX)
15779 {
15780 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15781 return build1 (code, type, op);
15782 }
15783 else
15784 {
15785 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (op)));
15786 return op;
15787 }
15788 }
15789 /* We shouldn't see any other uses of these in templates. */
15790 gcc_unreachable ();
15791 }
15792
15793 case CAST_EXPR:
15794 case REINTERPRET_CAST_EXPR:
15795 case CONST_CAST_EXPR:
15796 case STATIC_CAST_EXPR:
15797 case DYNAMIC_CAST_EXPR:
15798 case IMPLICIT_CONV_EXPR:
15799 case CONVERT_EXPR:
15800 case NOP_EXPR:
15801 {
15802 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15803 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
15804 return build1 (code, type, op0);
15805 }
15806
15807 case SIZEOF_EXPR:
15808 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
15809 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
15810 {
15811 tree expanded, op = TREE_OPERAND (t, 0);
15812 int len = 0;
15813
15814 if (SIZEOF_EXPR_TYPE_P (t))
15815 op = TREE_TYPE (op);
15816
15817 ++cp_unevaluated_operand;
15818 ++c_inhibit_evaluation_warnings;
15819 /* We only want to compute the number of arguments. */
15820 if (PACK_EXPANSION_P (op))
15821 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
15822 else
15823 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
15824 args, complain, in_decl);
15825 --cp_unevaluated_operand;
15826 --c_inhibit_evaluation_warnings;
15827
15828 if (TREE_CODE (expanded) == TREE_VEC)
15829 {
15830 len = TREE_VEC_LENGTH (expanded);
15831 /* Set TREE_USED for the benefit of -Wunused. */
15832 for (int i = 0; i < len; i++)
15833 if (DECL_P (TREE_VEC_ELT (expanded, i)))
15834 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
15835 }
15836
15837 if (expanded == error_mark_node)
15838 return error_mark_node;
15839 else if (PACK_EXPANSION_P (expanded)
15840 || (TREE_CODE (expanded) == TREE_VEC
15841 && pack_expansion_args_count (expanded)))
15842
15843 {
15844 if (PACK_EXPANSION_P (expanded))
15845 /* OK. */;
15846 else if (TREE_VEC_LENGTH (expanded) == 1)
15847 expanded = TREE_VEC_ELT (expanded, 0);
15848 else
15849 expanded = make_argument_pack (expanded);
15850
15851 if (TYPE_P (expanded))
15852 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
15853 false,
15854 complain & tf_error);
15855 else
15856 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
15857 complain & tf_error);
15858 }
15859 else
15860 return build_int_cst (size_type_node, len);
15861 }
15862 if (SIZEOF_EXPR_TYPE_P (t))
15863 {
15864 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
15865 args, complain, in_decl);
15866 r = build1 (NOP_EXPR, r, error_mark_node);
15867 r = build1 (SIZEOF_EXPR,
15868 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
15869 SIZEOF_EXPR_TYPE_P (r) = 1;
15870 return r;
15871 }
15872 /* Fall through */
15873
15874 case INDIRECT_REF:
15875 case NEGATE_EXPR:
15876 case TRUTH_NOT_EXPR:
15877 case BIT_NOT_EXPR:
15878 case ADDR_EXPR:
15879 case UNARY_PLUS_EXPR: /* Unary + */
15880 case ALIGNOF_EXPR:
15881 case AT_ENCODE_EXPR:
15882 case ARROW_EXPR:
15883 case THROW_EXPR:
15884 case TYPEID_EXPR:
15885 case REALPART_EXPR:
15886 case IMAGPART_EXPR:
15887 case PAREN_EXPR:
15888 {
15889 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15890 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
15891 r = build1 (code, type, op0);
15892 if (code == ALIGNOF_EXPR)
15893 ALIGNOF_EXPR_STD_P (r) = ALIGNOF_EXPR_STD_P (t);
15894 return r;
15895 }
15896
15897 case COMPONENT_REF:
15898 {
15899 tree object;
15900 tree name;
15901
15902 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
15903 name = TREE_OPERAND (t, 1);
15904 if (TREE_CODE (name) == BIT_NOT_EXPR)
15905 {
15906 name = tsubst_copy (TREE_OPERAND (name, 0), args,
15907 complain, in_decl);
15908 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
15909 }
15910 else if (TREE_CODE (name) == SCOPE_REF
15911 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
15912 {
15913 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
15914 complain, in_decl);
15915 name = TREE_OPERAND (name, 1);
15916 name = tsubst_copy (TREE_OPERAND (name, 0), args,
15917 complain, in_decl);
15918 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
15919 name = build_qualified_name (/*type=*/NULL_TREE,
15920 base, name,
15921 /*template_p=*/false);
15922 }
15923 else if (BASELINK_P (name))
15924 name = tsubst_baselink (name,
15925 non_reference (TREE_TYPE (object)),
15926 args, complain,
15927 in_decl);
15928 else
15929 name = tsubst_copy (name, args, complain, in_decl);
15930 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
15931 }
15932
15933 case PLUS_EXPR:
15934 case MINUS_EXPR:
15935 case MULT_EXPR:
15936 case TRUNC_DIV_EXPR:
15937 case CEIL_DIV_EXPR:
15938 case FLOOR_DIV_EXPR:
15939 case ROUND_DIV_EXPR:
15940 case EXACT_DIV_EXPR:
15941 case BIT_AND_EXPR:
15942 case BIT_IOR_EXPR:
15943 case BIT_XOR_EXPR:
15944 case TRUNC_MOD_EXPR:
15945 case FLOOR_MOD_EXPR:
15946 case TRUTH_ANDIF_EXPR:
15947 case TRUTH_ORIF_EXPR:
15948 case TRUTH_AND_EXPR:
15949 case TRUTH_OR_EXPR:
15950 case RSHIFT_EXPR:
15951 case LSHIFT_EXPR:
15952 case RROTATE_EXPR:
15953 case LROTATE_EXPR:
15954 case EQ_EXPR:
15955 case NE_EXPR:
15956 case MAX_EXPR:
15957 case MIN_EXPR:
15958 case LE_EXPR:
15959 case GE_EXPR:
15960 case LT_EXPR:
15961 case GT_EXPR:
15962 case COMPOUND_EXPR:
15963 case DOTSTAR_EXPR:
15964 case MEMBER_REF:
15965 case PREDECREMENT_EXPR:
15966 case PREINCREMENT_EXPR:
15967 case POSTDECREMENT_EXPR:
15968 case POSTINCREMENT_EXPR:
15969 {
15970 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
15971 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
15972 return build_nt (code, op0, op1);
15973 }
15974
15975 case SCOPE_REF:
15976 {
15977 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
15978 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
15979 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
15980 QUALIFIED_NAME_IS_TEMPLATE (t));
15981 }
15982
15983 case ARRAY_REF:
15984 {
15985 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
15986 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
15987 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
15988 }
15989
15990 case CALL_EXPR:
15991 {
15992 int n = VL_EXP_OPERAND_LENGTH (t);
15993 tree result = build_vl_exp (CALL_EXPR, n);
15994 int i;
15995 for (i = 0; i < n; i++)
15996 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
15997 complain, in_decl);
15998 return result;
15999 }
16000
16001 case COND_EXPR:
16002 case MODOP_EXPR:
16003 case PSEUDO_DTOR_EXPR:
16004 case VEC_PERM_EXPR:
16005 {
16006 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
16007 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
16008 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
16009 r = build_nt (code, op0, op1, op2);
16010 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16011 return r;
16012 }
16013
16014 case NEW_EXPR:
16015 {
16016 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
16017 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
16018 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
16019 r = build_nt (code, op0, op1, op2);
16020 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
16021 return r;
16022 }
16023
16024 case DELETE_EXPR:
16025 {
16026 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
16027 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
16028 r = build_nt (code, op0, op1);
16029 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
16030 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
16031 return r;
16032 }
16033
16034 case TEMPLATE_ID_EXPR:
16035 {
16036 /* Substituted template arguments */
16037 tree fn = TREE_OPERAND (t, 0);
16038 tree targs = TREE_OPERAND (t, 1);
16039
16040 fn = tsubst_copy (fn, args, complain, in_decl);
16041 if (targs)
16042 targs = tsubst_template_args (targs, args, complain, in_decl);
16043
16044 return lookup_template_function (fn, targs);
16045 }
16046
16047 case TREE_LIST:
16048 {
16049 tree purpose, value, chain;
16050
16051 if (t == void_list_node)
16052 return t;
16053
16054 purpose = TREE_PURPOSE (t);
16055 if (purpose)
16056 purpose = tsubst_copy (purpose, args, complain, in_decl);
16057 value = TREE_VALUE (t);
16058 if (value)
16059 value = tsubst_copy (value, args, complain, in_decl);
16060 chain = TREE_CHAIN (t);
16061 if (chain && chain != void_type_node)
16062 chain = tsubst_copy (chain, args, complain, in_decl);
16063 if (purpose == TREE_PURPOSE (t)
16064 && value == TREE_VALUE (t)
16065 && chain == TREE_CHAIN (t))
16066 return t;
16067 return tree_cons (purpose, value, chain);
16068 }
16069
16070 case RECORD_TYPE:
16071 case UNION_TYPE:
16072 case ENUMERAL_TYPE:
16073 case INTEGER_TYPE:
16074 case TEMPLATE_TYPE_PARM:
16075 case TEMPLATE_TEMPLATE_PARM:
16076 case BOUND_TEMPLATE_TEMPLATE_PARM:
16077 case TEMPLATE_PARM_INDEX:
16078 case POINTER_TYPE:
16079 case REFERENCE_TYPE:
16080 case OFFSET_TYPE:
16081 case FUNCTION_TYPE:
16082 case METHOD_TYPE:
16083 case ARRAY_TYPE:
16084 case TYPENAME_TYPE:
16085 case UNBOUND_CLASS_TEMPLATE:
16086 case TYPEOF_TYPE:
16087 case DECLTYPE_TYPE:
16088 case TYPE_DECL:
16089 return tsubst (t, args, complain, in_decl);
16090
16091 case USING_DECL:
16092 t = DECL_NAME (t);
16093 /* Fall through. */
16094 case IDENTIFIER_NODE:
16095 if (IDENTIFIER_CONV_OP_P (t))
16096 {
16097 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16098 return make_conv_op_name (new_type);
16099 }
16100 else
16101 return t;
16102
16103 case CONSTRUCTOR:
16104 /* This is handled by tsubst_copy_and_build. */
16105 gcc_unreachable ();
16106
16107 case VA_ARG_EXPR:
16108 {
16109 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
16110 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16111 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
16112 }
16113
16114 case CLEANUP_POINT_EXPR:
16115 /* We shouldn't have built any of these during initial template
16116 generation. Instead, they should be built during instantiation
16117 in response to the saved STMT_IS_FULL_EXPR_P setting. */
16118 gcc_unreachable ();
16119
16120 case OFFSET_REF:
16121 {
16122 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16123 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
16124 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
16125 r = build2 (code, type, op0, op1);
16126 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
16127 if (!mark_used (TREE_OPERAND (r, 1), complain)
16128 && !(complain & tf_error))
16129 return error_mark_node;
16130 return r;
16131 }
16132
16133 case EXPR_PACK_EXPANSION:
16134 error ("invalid use of pack expansion expression");
16135 return error_mark_node;
16136
16137 case NONTYPE_ARGUMENT_PACK:
16138 error ("use %<...%> to expand argument pack");
16139 return error_mark_node;
16140
16141 case VOID_CST:
16142 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
16143 return t;
16144
16145 case INTEGER_CST:
16146 case REAL_CST:
16147 case STRING_CST:
16148 case COMPLEX_CST:
16149 {
16150 /* Instantiate any typedefs in the type. */
16151 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16152 r = fold_convert (type, t);
16153 gcc_assert (TREE_CODE (r) == code);
16154 return r;
16155 }
16156
16157 case PTRMEM_CST:
16158 /* These can sometimes show up in a partial instantiation, but never
16159 involve template parms. */
16160 gcc_assert (!uses_template_parms (t));
16161 return t;
16162
16163 case UNARY_LEFT_FOLD_EXPR:
16164 return tsubst_unary_left_fold (t, args, complain, in_decl);
16165 case UNARY_RIGHT_FOLD_EXPR:
16166 return tsubst_unary_right_fold (t, args, complain, in_decl);
16167 case BINARY_LEFT_FOLD_EXPR:
16168 return tsubst_binary_left_fold (t, args, complain, in_decl);
16169 case BINARY_RIGHT_FOLD_EXPR:
16170 return tsubst_binary_right_fold (t, args, complain, in_decl);
16171 case PREDICT_EXPR:
16172 return t;
16173
16174 case DEBUG_BEGIN_STMT:
16175 /* ??? There's no point in copying it for now, but maybe some
16176 day it will contain more information, such as a pointer back
16177 to the containing function, inlined copy or so. */
16178 return t;
16179
16180 default:
16181 /* We shouldn't get here, but keep going if !flag_checking. */
16182 if (flag_checking)
16183 gcc_unreachable ();
16184 return t;
16185 }
16186 }
16187
16188 /* Helper function for tsubst_omp_clauses, used for instantiation of
16189 OMP_CLAUSE_DECL of clauses. */
16190
16191 static tree
16192 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
16193 tree in_decl, tree *iterator_cache)
16194 {
16195 if (decl == NULL_TREE)
16196 return NULL_TREE;
16197
16198 /* Handle OpenMP iterators. */
16199 if (TREE_CODE (decl) == TREE_LIST
16200 && TREE_PURPOSE (decl)
16201 && TREE_CODE (TREE_PURPOSE (decl)) == TREE_VEC)
16202 {
16203 tree ret;
16204 if (iterator_cache[0] == TREE_PURPOSE (decl))
16205 ret = iterator_cache[1];
16206 else
16207 {
16208 tree *tp = &ret;
16209 begin_scope (sk_omp, NULL);
16210 for (tree it = TREE_PURPOSE (decl); it; it = TREE_CHAIN (it))
16211 {
16212 *tp = copy_node (it);
16213 TREE_VEC_ELT (*tp, 0)
16214 = tsubst_decl (TREE_VEC_ELT (it, 0), args, complain);
16215 TREE_VEC_ELT (*tp, 1)
16216 = tsubst_expr (TREE_VEC_ELT (it, 1), args, complain, in_decl,
16217 /*integral_constant_expression_p=*/false);
16218 TREE_VEC_ELT (*tp, 2)
16219 = tsubst_expr (TREE_VEC_ELT (it, 2), args, complain, in_decl,
16220 /*integral_constant_expression_p=*/false);
16221 TREE_VEC_ELT (*tp, 3)
16222 = tsubst_expr (TREE_VEC_ELT (it, 3), args, complain, in_decl,
16223 /*integral_constant_expression_p=*/false);
16224 TREE_CHAIN (*tp) = NULL_TREE;
16225 tp = &TREE_CHAIN (*tp);
16226 }
16227 TREE_VEC_ELT (ret, 5) = poplevel (1, 1, 0);
16228 iterator_cache[0] = TREE_PURPOSE (decl);
16229 iterator_cache[1] = ret;
16230 }
16231 return build_tree_list (ret, tsubst_omp_clause_decl (TREE_VALUE (decl),
16232 args, complain,
16233 in_decl, NULL));
16234 }
16235
16236 /* Handle an OpenMP array section represented as a TREE_LIST (or
16237 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
16238 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
16239 TREE_LIST. We can handle it exactly the same as an array section
16240 (purpose, value, and a chain), even though the nomenclature
16241 (low_bound, length, etc) is different. */
16242 if (TREE_CODE (decl) == TREE_LIST)
16243 {
16244 tree low_bound
16245 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
16246 /*integral_constant_expression_p=*/false);
16247 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
16248 /*integral_constant_expression_p=*/false);
16249 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
16250 in_decl, NULL);
16251 if (TREE_PURPOSE (decl) == low_bound
16252 && TREE_VALUE (decl) == length
16253 && TREE_CHAIN (decl) == chain)
16254 return decl;
16255 tree ret = tree_cons (low_bound, length, chain);
16256 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
16257 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
16258 return ret;
16259 }
16260 tree ret = tsubst_expr (decl, args, complain, in_decl,
16261 /*integral_constant_expression_p=*/false);
16262 /* Undo convert_from_reference tsubst_expr could have called. */
16263 if (decl
16264 && REFERENCE_REF_P (ret)
16265 && !REFERENCE_REF_P (decl))
16266 ret = TREE_OPERAND (ret, 0);
16267 return ret;
16268 }
16269
16270 /* Like tsubst_copy, but specifically for OpenMP clauses. */
16271
16272 static tree
16273 tsubst_omp_clauses (tree clauses, enum c_omp_region_type ort,
16274 tree args, tsubst_flags_t complain, tree in_decl)
16275 {
16276 tree new_clauses = NULL_TREE, nc, oc;
16277 tree linear_no_step = NULL_TREE;
16278 tree iterator_cache[2] = { NULL_TREE, NULL_TREE };
16279
16280 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
16281 {
16282 nc = copy_node (oc);
16283 OMP_CLAUSE_CHAIN (nc) = new_clauses;
16284 new_clauses = nc;
16285
16286 switch (OMP_CLAUSE_CODE (nc))
16287 {
16288 case OMP_CLAUSE_LASTPRIVATE:
16289 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
16290 {
16291 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
16292 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
16293 in_decl, /*integral_constant_expression_p=*/false);
16294 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
16295 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
16296 }
16297 /* FALLTHRU */
16298 case OMP_CLAUSE_PRIVATE:
16299 case OMP_CLAUSE_SHARED:
16300 case OMP_CLAUSE_FIRSTPRIVATE:
16301 case OMP_CLAUSE_COPYIN:
16302 case OMP_CLAUSE_COPYPRIVATE:
16303 case OMP_CLAUSE_UNIFORM:
16304 case OMP_CLAUSE_DEPEND:
16305 case OMP_CLAUSE_FROM:
16306 case OMP_CLAUSE_TO:
16307 case OMP_CLAUSE_MAP:
16308 case OMP_CLAUSE_NONTEMPORAL:
16309 case OMP_CLAUSE_USE_DEVICE_PTR:
16310 case OMP_CLAUSE_USE_DEVICE_ADDR:
16311 case OMP_CLAUSE_IS_DEVICE_PTR:
16312 case OMP_CLAUSE_INCLUSIVE:
16313 case OMP_CLAUSE_EXCLUSIVE:
16314 OMP_CLAUSE_DECL (nc)
16315 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
16316 in_decl, iterator_cache);
16317 break;
16318 case OMP_CLAUSE_TILE:
16319 case OMP_CLAUSE_IF:
16320 case OMP_CLAUSE_NUM_THREADS:
16321 case OMP_CLAUSE_SCHEDULE:
16322 case OMP_CLAUSE_COLLAPSE:
16323 case OMP_CLAUSE_FINAL:
16324 case OMP_CLAUSE_DEVICE:
16325 case OMP_CLAUSE_DIST_SCHEDULE:
16326 case OMP_CLAUSE_NUM_TEAMS:
16327 case OMP_CLAUSE_THREAD_LIMIT:
16328 case OMP_CLAUSE_SAFELEN:
16329 case OMP_CLAUSE_SIMDLEN:
16330 case OMP_CLAUSE_NUM_TASKS:
16331 case OMP_CLAUSE_GRAINSIZE:
16332 case OMP_CLAUSE_PRIORITY:
16333 case OMP_CLAUSE_ORDERED:
16334 case OMP_CLAUSE_HINT:
16335 case OMP_CLAUSE_NUM_GANGS:
16336 case OMP_CLAUSE_NUM_WORKERS:
16337 case OMP_CLAUSE_VECTOR_LENGTH:
16338 case OMP_CLAUSE_WORKER:
16339 case OMP_CLAUSE_VECTOR:
16340 case OMP_CLAUSE_ASYNC:
16341 case OMP_CLAUSE_WAIT:
16342 OMP_CLAUSE_OPERAND (nc, 0)
16343 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
16344 in_decl, /*integral_constant_expression_p=*/false);
16345 break;
16346 case OMP_CLAUSE_REDUCTION:
16347 case OMP_CLAUSE_IN_REDUCTION:
16348 case OMP_CLAUSE_TASK_REDUCTION:
16349 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
16350 {
16351 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
16352 if (TREE_CODE (placeholder) == SCOPE_REF)
16353 {
16354 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
16355 complain, in_decl);
16356 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
16357 = build_qualified_name (NULL_TREE, scope,
16358 TREE_OPERAND (placeholder, 1),
16359 false);
16360 }
16361 else
16362 gcc_assert (identifier_p (placeholder));
16363 }
16364 OMP_CLAUSE_DECL (nc)
16365 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
16366 in_decl, NULL);
16367 break;
16368 case OMP_CLAUSE_GANG:
16369 case OMP_CLAUSE_ALIGNED:
16370 OMP_CLAUSE_DECL (nc)
16371 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
16372 in_decl, NULL);
16373 OMP_CLAUSE_OPERAND (nc, 1)
16374 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
16375 in_decl, /*integral_constant_expression_p=*/false);
16376 break;
16377 case OMP_CLAUSE_LINEAR:
16378 OMP_CLAUSE_DECL (nc)
16379 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
16380 in_decl, NULL);
16381 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
16382 {
16383 gcc_assert (!linear_no_step);
16384 linear_no_step = nc;
16385 }
16386 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
16387 OMP_CLAUSE_LINEAR_STEP (nc)
16388 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
16389 complain, in_decl, NULL);
16390 else
16391 OMP_CLAUSE_LINEAR_STEP (nc)
16392 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
16393 in_decl,
16394 /*integral_constant_expression_p=*/false);
16395 break;
16396 case OMP_CLAUSE_NOWAIT:
16397 case OMP_CLAUSE_DEFAULT:
16398 case OMP_CLAUSE_UNTIED:
16399 case OMP_CLAUSE_MERGEABLE:
16400 case OMP_CLAUSE_INBRANCH:
16401 case OMP_CLAUSE_NOTINBRANCH:
16402 case OMP_CLAUSE_PROC_BIND:
16403 case OMP_CLAUSE_FOR:
16404 case OMP_CLAUSE_PARALLEL:
16405 case OMP_CLAUSE_SECTIONS:
16406 case OMP_CLAUSE_TASKGROUP:
16407 case OMP_CLAUSE_NOGROUP:
16408 case OMP_CLAUSE_THREADS:
16409 case OMP_CLAUSE_SIMD:
16410 case OMP_CLAUSE_DEFAULTMAP:
16411 case OMP_CLAUSE_ORDER:
16412 case OMP_CLAUSE_BIND:
16413 case OMP_CLAUSE_INDEPENDENT:
16414 case OMP_CLAUSE_AUTO:
16415 case OMP_CLAUSE_SEQ:
16416 case OMP_CLAUSE_IF_PRESENT:
16417 case OMP_CLAUSE_FINALIZE:
16418 break;
16419 default:
16420 gcc_unreachable ();
16421 }
16422 if ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP)
16423 switch (OMP_CLAUSE_CODE (nc))
16424 {
16425 case OMP_CLAUSE_SHARED:
16426 case OMP_CLAUSE_PRIVATE:
16427 case OMP_CLAUSE_FIRSTPRIVATE:
16428 case OMP_CLAUSE_LASTPRIVATE:
16429 case OMP_CLAUSE_COPYPRIVATE:
16430 case OMP_CLAUSE_LINEAR:
16431 case OMP_CLAUSE_REDUCTION:
16432 case OMP_CLAUSE_IN_REDUCTION:
16433 case OMP_CLAUSE_TASK_REDUCTION:
16434 case OMP_CLAUSE_USE_DEVICE_PTR:
16435 case OMP_CLAUSE_USE_DEVICE_ADDR:
16436 case OMP_CLAUSE_IS_DEVICE_PTR:
16437 case OMP_CLAUSE_INCLUSIVE:
16438 case OMP_CLAUSE_EXCLUSIVE:
16439 /* tsubst_expr on SCOPE_REF results in returning
16440 finish_non_static_data_member result. Undo that here. */
16441 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
16442 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
16443 == IDENTIFIER_NODE))
16444 {
16445 tree t = OMP_CLAUSE_DECL (nc);
16446 tree v = t;
16447 while (v)
16448 switch (TREE_CODE (v))
16449 {
16450 case COMPONENT_REF:
16451 case MEM_REF:
16452 case INDIRECT_REF:
16453 CASE_CONVERT:
16454 case POINTER_PLUS_EXPR:
16455 v = TREE_OPERAND (v, 0);
16456 continue;
16457 case PARM_DECL:
16458 if (DECL_CONTEXT (v) == current_function_decl
16459 && DECL_ARTIFICIAL (v)
16460 && DECL_NAME (v) == this_identifier)
16461 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
16462 /* FALLTHRU */
16463 default:
16464 v = NULL_TREE;
16465 break;
16466 }
16467 }
16468 else if (VAR_P (OMP_CLAUSE_DECL (oc))
16469 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
16470 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
16471 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
16472 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
16473 {
16474 tree decl = OMP_CLAUSE_DECL (nc);
16475 if (VAR_P (decl))
16476 {
16477 retrofit_lang_decl (decl);
16478 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
16479 }
16480 }
16481 break;
16482 default:
16483 break;
16484 }
16485 }
16486
16487 new_clauses = nreverse (new_clauses);
16488 if (ort != C_ORT_OMP_DECLARE_SIMD)
16489 {
16490 new_clauses = finish_omp_clauses (new_clauses, ort);
16491 if (linear_no_step)
16492 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
16493 if (nc == linear_no_step)
16494 {
16495 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
16496 break;
16497 }
16498 }
16499 return new_clauses;
16500 }
16501
16502 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
16503
16504 static tree
16505 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
16506 tree in_decl)
16507 {
16508 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
16509
16510 tree purpose, value, chain;
16511
16512 if (t == NULL)
16513 return t;
16514
16515 if (TREE_CODE (t) != TREE_LIST)
16516 return tsubst_copy_and_build (t, args, complain, in_decl,
16517 /*function_p=*/false,
16518 /*integral_constant_expression_p=*/false);
16519
16520 if (t == void_list_node)
16521 return t;
16522
16523 purpose = TREE_PURPOSE (t);
16524 if (purpose)
16525 purpose = RECUR (purpose);
16526 value = TREE_VALUE (t);
16527 if (value)
16528 {
16529 if (TREE_CODE (value) != LABEL_DECL)
16530 value = RECUR (value);
16531 else
16532 {
16533 value = lookup_label (DECL_NAME (value));
16534 gcc_assert (TREE_CODE (value) == LABEL_DECL);
16535 TREE_USED (value) = 1;
16536 }
16537 }
16538 chain = TREE_CHAIN (t);
16539 if (chain && chain != void_type_node)
16540 chain = RECUR (chain);
16541 return tree_cons (purpose, value, chain);
16542 #undef RECUR
16543 }
16544
16545 /* Used to temporarily communicate the list of #pragma omp parallel
16546 clauses to #pragma omp for instantiation if they are combined
16547 together. */
16548
16549 static tree *omp_parallel_combined_clauses;
16550
16551 static tree tsubst_decomp_names (tree, tree, tree, tsubst_flags_t, tree,
16552 tree *, unsigned int *);
16553
16554 /* Substitute one OMP_FOR iterator. */
16555
16556 static bool
16557 tsubst_omp_for_iterator (tree t, int i, tree declv, tree &orig_declv,
16558 tree initv, tree condv, tree incrv, tree *clauses,
16559 tree args, tsubst_flags_t complain, tree in_decl,
16560 bool integral_constant_expression_p)
16561 {
16562 #define RECUR(NODE) \
16563 tsubst_expr ((NODE), args, complain, in_decl, \
16564 integral_constant_expression_p)
16565 tree decl, init, cond = NULL_TREE, incr = NULL_TREE;
16566 bool ret = false;
16567
16568 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
16569 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
16570
16571 decl = TREE_OPERAND (init, 0);
16572 init = TREE_OPERAND (init, 1);
16573 tree decl_expr = NULL_TREE;
16574 bool range_for = TREE_VEC_ELT (OMP_FOR_COND (t), i) == global_namespace;
16575 if (range_for)
16576 {
16577 bool decomp = false;
16578 if (decl != error_mark_node && DECL_HAS_VALUE_EXPR_P (decl))
16579 {
16580 tree v = DECL_VALUE_EXPR (decl);
16581 if (TREE_CODE (v) == ARRAY_REF
16582 && VAR_P (TREE_OPERAND (v, 0))
16583 && DECL_DECOMPOSITION_P (TREE_OPERAND (v, 0)))
16584 {
16585 tree decomp_first = NULL_TREE;
16586 unsigned decomp_cnt = 0;
16587 tree d = tsubst_decl (TREE_OPERAND (v, 0), args, complain);
16588 maybe_push_decl (d);
16589 d = tsubst_decomp_names (d, TREE_OPERAND (v, 0), args, complain,
16590 in_decl, &decomp_first, &decomp_cnt);
16591 decomp = true;
16592 if (d == error_mark_node)
16593 decl = error_mark_node;
16594 else
16595 for (unsigned int i = 0; i < decomp_cnt; i++)
16596 {
16597 if (!DECL_HAS_VALUE_EXPR_P (decomp_first))
16598 {
16599 tree v = build_nt (ARRAY_REF, d,
16600 size_int (decomp_cnt - i - 1),
16601 NULL_TREE, NULL_TREE);
16602 SET_DECL_VALUE_EXPR (decomp_first, v);
16603 DECL_HAS_VALUE_EXPR_P (decomp_first) = 1;
16604 }
16605 fit_decomposition_lang_decl (decomp_first, d);
16606 decomp_first = DECL_CHAIN (decomp_first);
16607 }
16608 }
16609 }
16610 decl = tsubst_decl (decl, args, complain);
16611 if (!decomp)
16612 maybe_push_decl (decl);
16613 }
16614 else if (init && TREE_CODE (init) == DECL_EXPR)
16615 {
16616 /* We need to jump through some hoops to handle declarations in the
16617 init-statement, since we might need to handle auto deduction,
16618 but we need to keep control of initialization. */
16619 decl_expr = init;
16620 init = DECL_INITIAL (DECL_EXPR_DECL (init));
16621 decl = tsubst_decl (decl, args, complain);
16622 }
16623 else
16624 {
16625 if (TREE_CODE (decl) == SCOPE_REF)
16626 {
16627 decl = RECUR (decl);
16628 if (TREE_CODE (decl) == COMPONENT_REF)
16629 {
16630 tree v = decl;
16631 while (v)
16632 switch (TREE_CODE (v))
16633 {
16634 case COMPONENT_REF:
16635 case MEM_REF:
16636 case INDIRECT_REF:
16637 CASE_CONVERT:
16638 case POINTER_PLUS_EXPR:
16639 v = TREE_OPERAND (v, 0);
16640 continue;
16641 case PARM_DECL:
16642 if (DECL_CONTEXT (v) == current_function_decl
16643 && DECL_ARTIFICIAL (v)
16644 && DECL_NAME (v) == this_identifier)
16645 {
16646 decl = TREE_OPERAND (decl, 1);
16647 decl = omp_privatize_field (decl, false);
16648 }
16649 /* FALLTHRU */
16650 default:
16651 v = NULL_TREE;
16652 break;
16653 }
16654 }
16655 }
16656 else
16657 decl = RECUR (decl);
16658 }
16659 init = RECUR (init);
16660
16661 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
16662 {
16663 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
16664 if (TREE_CODE (o) == TREE_LIST)
16665 TREE_VEC_ELT (orig_declv, i)
16666 = tree_cons (RECUR (TREE_PURPOSE (o)),
16667 RECUR (TREE_VALUE (o)),
16668 NULL_TREE);
16669 else
16670 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
16671 }
16672
16673 if (range_for)
16674 {
16675 tree this_pre_body = NULL_TREE;
16676 tree orig_init = NULL_TREE;
16677 tree orig_decl = NULL_TREE;
16678 cp_convert_omp_range_for (this_pre_body, NULL, decl, orig_decl, init,
16679 orig_init, cond, incr);
16680 if (orig_decl)
16681 {
16682 if (orig_declv == NULL_TREE)
16683 orig_declv = copy_node (declv);
16684 TREE_VEC_ELT (orig_declv, i) = orig_decl;
16685 ret = true;
16686 }
16687 else if (orig_declv)
16688 TREE_VEC_ELT (orig_declv, i) = decl;
16689 }
16690
16691 tree auto_node = type_uses_auto (TREE_TYPE (decl));
16692 if (!range_for && auto_node && init)
16693 TREE_TYPE (decl)
16694 = do_auto_deduction (TREE_TYPE (decl), init, auto_node, complain);
16695
16696 gcc_assert (!type_dependent_expression_p (decl));
16697
16698 if (!CLASS_TYPE_P (TREE_TYPE (decl)) || range_for)
16699 {
16700 if (decl_expr)
16701 {
16702 /* Declare the variable, but don't let that initialize it. */
16703 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
16704 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
16705 RECUR (decl_expr);
16706 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
16707 }
16708
16709 if (!range_for)
16710 {
16711 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
16712 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
16713 if (TREE_CODE (incr) == MODIFY_EXPR)
16714 {
16715 tree lhs = RECUR (TREE_OPERAND (incr, 0));
16716 tree rhs = RECUR (TREE_OPERAND (incr, 1));
16717 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
16718 NOP_EXPR, rhs, complain);
16719 }
16720 else
16721 incr = RECUR (incr);
16722 if (orig_declv && !OMP_FOR_ORIG_DECLS (t))
16723 TREE_VEC_ELT (orig_declv, i) = decl;
16724 }
16725 TREE_VEC_ELT (declv, i) = decl;
16726 TREE_VEC_ELT (initv, i) = init;
16727 TREE_VEC_ELT (condv, i) = cond;
16728 TREE_VEC_ELT (incrv, i) = incr;
16729 return ret;
16730 }
16731
16732 if (decl_expr)
16733 {
16734 /* Declare and initialize the variable. */
16735 RECUR (decl_expr);
16736 init = NULL_TREE;
16737 }
16738 else if (init)
16739 {
16740 tree *pc;
16741 int j;
16742 for (j = ((omp_parallel_combined_clauses == NULL
16743 || TREE_CODE (t) == OMP_LOOP) ? 1 : 0); j < 2; j++)
16744 {
16745 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
16746 {
16747 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
16748 && OMP_CLAUSE_DECL (*pc) == decl)
16749 break;
16750 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
16751 && OMP_CLAUSE_DECL (*pc) == decl)
16752 {
16753 if (j)
16754 break;
16755 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
16756 tree c = *pc;
16757 *pc = OMP_CLAUSE_CHAIN (c);
16758 OMP_CLAUSE_CHAIN (c) = *clauses;
16759 *clauses = c;
16760 }
16761 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
16762 && OMP_CLAUSE_DECL (*pc) == decl)
16763 {
16764 error ("iteration variable %qD should not be firstprivate",
16765 decl);
16766 *pc = OMP_CLAUSE_CHAIN (*pc);
16767 }
16768 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
16769 && OMP_CLAUSE_DECL (*pc) == decl)
16770 {
16771 error ("iteration variable %qD should not be reduction",
16772 decl);
16773 *pc = OMP_CLAUSE_CHAIN (*pc);
16774 }
16775 else
16776 pc = &OMP_CLAUSE_CHAIN (*pc);
16777 }
16778 if (*pc)
16779 break;
16780 }
16781 if (*pc == NULL_TREE)
16782 {
16783 tree c = build_omp_clause (input_location,
16784 TREE_CODE (t) == OMP_LOOP
16785 ? OMP_CLAUSE_LASTPRIVATE
16786 : OMP_CLAUSE_PRIVATE);
16787 OMP_CLAUSE_DECL (c) = decl;
16788 c = finish_omp_clauses (c, C_ORT_OMP);
16789 if (c)
16790 {
16791 OMP_CLAUSE_CHAIN (c) = *clauses;
16792 *clauses = c;
16793 }
16794 }
16795 }
16796 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
16797 if (COMPARISON_CLASS_P (cond))
16798 {
16799 tree op0 = RECUR (TREE_OPERAND (cond, 0));
16800 tree op1 = RECUR (TREE_OPERAND (cond, 1));
16801 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
16802 }
16803 else
16804 cond = RECUR (cond);
16805 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
16806 switch (TREE_CODE (incr))
16807 {
16808 case PREINCREMENT_EXPR:
16809 case PREDECREMENT_EXPR:
16810 case POSTINCREMENT_EXPR:
16811 case POSTDECREMENT_EXPR:
16812 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
16813 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
16814 break;
16815 case MODIFY_EXPR:
16816 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
16817 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
16818 {
16819 tree rhs = TREE_OPERAND (incr, 1);
16820 tree lhs = RECUR (TREE_OPERAND (incr, 0));
16821 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
16822 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
16823 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
16824 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
16825 rhs0, rhs1));
16826 }
16827 else
16828 incr = RECUR (incr);
16829 break;
16830 case MODOP_EXPR:
16831 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
16832 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
16833 {
16834 tree lhs = RECUR (TREE_OPERAND (incr, 0));
16835 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
16836 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
16837 TREE_TYPE (decl), lhs,
16838 RECUR (TREE_OPERAND (incr, 2))));
16839 }
16840 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
16841 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
16842 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
16843 {
16844 tree rhs = TREE_OPERAND (incr, 2);
16845 tree lhs = RECUR (TREE_OPERAND (incr, 0));
16846 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
16847 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
16848 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
16849 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
16850 rhs0, rhs1));
16851 }
16852 else
16853 incr = RECUR (incr);
16854 break;
16855 default:
16856 incr = RECUR (incr);
16857 break;
16858 }
16859
16860 if (orig_declv && !OMP_FOR_ORIG_DECLS (t))
16861 TREE_VEC_ELT (orig_declv, i) = decl;
16862 TREE_VEC_ELT (declv, i) = decl;
16863 TREE_VEC_ELT (initv, i) = init;
16864 TREE_VEC_ELT (condv, i) = cond;
16865 TREE_VEC_ELT (incrv, i) = incr;
16866 return false;
16867 #undef RECUR
16868 }
16869
16870 /* Helper function of tsubst_expr, find OMP_TEAMS inside
16871 of OMP_TARGET's body. */
16872
16873 static tree
16874 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
16875 {
16876 *walk_subtrees = 0;
16877 switch (TREE_CODE (*tp))
16878 {
16879 case OMP_TEAMS:
16880 return *tp;
16881 case BIND_EXPR:
16882 case STATEMENT_LIST:
16883 *walk_subtrees = 1;
16884 break;
16885 default:
16886 break;
16887 }
16888 return NULL_TREE;
16889 }
16890
16891 /* Helper function for tsubst_expr. For decomposition declaration
16892 artificial base DECL, which is tsubsted PATTERN_DECL, tsubst
16893 also the corresponding decls representing the identifiers
16894 of the decomposition declaration. Return DECL if successful
16895 or error_mark_node otherwise, set *FIRST to the first decl
16896 in the list chained through DECL_CHAIN and *CNT to the number
16897 of such decls. */
16898
16899 static tree
16900 tsubst_decomp_names (tree decl, tree pattern_decl, tree args,
16901 tsubst_flags_t complain, tree in_decl, tree *first,
16902 unsigned int *cnt)
16903 {
16904 tree decl2, decl3, prev = decl;
16905 *cnt = 0;
16906 gcc_assert (DECL_NAME (decl) == NULL_TREE);
16907 for (decl2 = DECL_CHAIN (pattern_decl);
16908 decl2
16909 && VAR_P (decl2)
16910 && DECL_DECOMPOSITION_P (decl2)
16911 && DECL_NAME (decl2);
16912 decl2 = DECL_CHAIN (decl2))
16913 {
16914 if (TREE_TYPE (decl2) == error_mark_node && *cnt == 0)
16915 {
16916 gcc_assert (errorcount);
16917 return error_mark_node;
16918 }
16919 (*cnt)++;
16920 gcc_assert (DECL_DECOMP_BASE (decl2) == pattern_decl);
16921 gcc_assert (DECL_HAS_VALUE_EXPR_P (decl2));
16922 tree v = DECL_VALUE_EXPR (decl2);
16923 DECL_HAS_VALUE_EXPR_P (decl2) = 0;
16924 SET_DECL_VALUE_EXPR (decl2, NULL_TREE);
16925 decl3 = tsubst (decl2, args, complain, in_decl);
16926 SET_DECL_VALUE_EXPR (decl2, v);
16927 DECL_HAS_VALUE_EXPR_P (decl2) = 1;
16928 if (VAR_P (decl3))
16929 DECL_TEMPLATE_INSTANTIATED (decl3) = 1;
16930 else
16931 {
16932 gcc_assert (errorcount);
16933 decl = error_mark_node;
16934 continue;
16935 }
16936 maybe_push_decl (decl3);
16937 if (error_operand_p (decl3))
16938 decl = error_mark_node;
16939 else if (decl != error_mark_node
16940 && DECL_CHAIN (decl3) != prev
16941 && decl != prev)
16942 {
16943 gcc_assert (errorcount);
16944 decl = error_mark_node;
16945 }
16946 else
16947 prev = decl3;
16948 }
16949 *first = prev;
16950 return decl;
16951 }
16952
16953 /* Return the proper local_specialization for init-capture pack DECL. */
16954
16955 static tree
16956 lookup_init_capture_pack (tree decl)
16957 {
16958 /* We handle normal pack captures by forwarding to the specialization of the
16959 captured parameter. We can't do that for pack init-captures; we need them
16960 to have their own local_specialization. We created the individual
16961 VAR_DECLs (if any) under build_capture_proxy, and we need to collect them
16962 when we process the DECL_EXPR for the pack init-capture in the template.
16963 So, how do we find them? We don't know the capture proxy pack when
16964 building the individual resulting proxies, and we don't know the
16965 individual proxies when instantiating the pack. What we have in common is
16966 the FIELD_DECL.
16967
16968 So...when we instantiate the FIELD_DECL, we stick the result in
16969 local_specializations. Then at the DECL_EXPR we look up that result, see
16970 how many elements it has, synthesize the names, and look them up. */
16971
16972 tree cname = DECL_NAME (decl);
16973 tree val = DECL_VALUE_EXPR (decl);
16974 tree field = TREE_OPERAND (val, 1);
16975 gcc_assert (TREE_CODE (field) == FIELD_DECL);
16976 tree fpack = retrieve_local_specialization (field);
16977 if (fpack == error_mark_node)
16978 return error_mark_node;
16979
16980 int len = 1;
16981 tree vec = NULL_TREE;
16982 tree r = NULL_TREE;
16983 if (TREE_CODE (fpack) == TREE_VEC)
16984 {
16985 len = TREE_VEC_LENGTH (fpack);
16986 vec = make_tree_vec (len);
16987 r = make_node (NONTYPE_ARGUMENT_PACK);
16988 SET_ARGUMENT_PACK_ARGS (r, vec);
16989 }
16990 for (int i = 0; i < len; ++i)
16991 {
16992 tree ename = vec ? make_ith_pack_parameter_name (cname, i) : cname;
16993 tree elt = lookup_name_real (ename, 0, 0, true, 0, LOOKUP_NORMAL);
16994 if (vec)
16995 TREE_VEC_ELT (vec, i) = elt;
16996 else
16997 r = elt;
16998 }
16999 return r;
17000 }
17001
17002 /* Like tsubst_copy for expressions, etc. but also does semantic
17003 processing. */
17004
17005 tree
17006 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
17007 bool integral_constant_expression_p)
17008 {
17009 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
17010 #define RECUR(NODE) \
17011 tsubst_expr ((NODE), args, complain, in_decl, \
17012 integral_constant_expression_p)
17013
17014 tree stmt, tmp;
17015 tree r;
17016 location_t loc;
17017
17018 if (t == NULL_TREE || t == error_mark_node)
17019 return t;
17020
17021 loc = input_location;
17022 if (location_t eloc = cp_expr_location (t))
17023 input_location = eloc;
17024 if (STATEMENT_CODE_P (TREE_CODE (t)))
17025 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
17026
17027 switch (TREE_CODE (t))
17028 {
17029 case STATEMENT_LIST:
17030 {
17031 tree_stmt_iterator i;
17032 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
17033 RECUR (tsi_stmt (i));
17034 break;
17035 }
17036
17037 case CTOR_INITIALIZER:
17038 finish_mem_initializers (tsubst_initializer_list
17039 (TREE_OPERAND (t, 0), args));
17040 break;
17041
17042 case RETURN_EXPR:
17043 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
17044 break;
17045
17046 case EXPR_STMT:
17047 tmp = RECUR (EXPR_STMT_EXPR (t));
17048 if (EXPR_STMT_STMT_EXPR_RESULT (t))
17049 finish_stmt_expr_expr (tmp, cur_stmt_expr);
17050 else
17051 finish_expr_stmt (tmp);
17052 break;
17053
17054 case USING_STMT:
17055 finish_using_directive (USING_STMT_NAMESPACE (t), /*attribs=*/NULL_TREE);
17056 break;
17057
17058 case DECL_EXPR:
17059 {
17060 tree decl, pattern_decl;
17061 tree init;
17062
17063 pattern_decl = decl = DECL_EXPR_DECL (t);
17064 if (TREE_CODE (decl) == LABEL_DECL)
17065 finish_label_decl (DECL_NAME (decl));
17066 else if (TREE_CODE (decl) == USING_DECL)
17067 {
17068 tree scope = USING_DECL_SCOPE (decl);
17069 tree name = DECL_NAME (decl);
17070
17071 scope = tsubst (scope, args, complain, in_decl);
17072 finish_nonmember_using_decl (scope, name);
17073 }
17074 else if (is_capture_proxy (decl)
17075 && !DECL_TEMPLATE_INSTANTIATION (current_function_decl))
17076 {
17077 /* We're in tsubst_lambda_expr, we've already inserted a new
17078 capture proxy, so look it up and register it. */
17079 tree inst;
17080 if (!DECL_PACK_P (decl))
17081 {
17082 inst = lookup_name_real (DECL_NAME (decl), /*prefer_type*/0,
17083 /*nonclass*/1, /*block_p=*/true,
17084 /*ns_only*/0, LOOKUP_HIDDEN);
17085 gcc_assert (inst != decl && is_capture_proxy (inst));
17086 }
17087 else if (is_normal_capture_proxy (decl))
17088 {
17089 inst = (retrieve_local_specialization
17090 (DECL_CAPTURED_VARIABLE (decl)));
17091 gcc_assert (TREE_CODE (inst) == NONTYPE_ARGUMENT_PACK);
17092 }
17093 else
17094 inst = lookup_init_capture_pack (decl);
17095
17096 register_local_specialization (inst, decl);
17097 break;
17098 }
17099 else if (DECL_PRETTY_FUNCTION_P (decl))
17100 decl = make_fname_decl (DECL_SOURCE_LOCATION (decl),
17101 DECL_NAME (decl),
17102 true/*DECL_PRETTY_FUNCTION_P (decl)*/);
17103 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
17104 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
17105 /* Don't copy the old closure; we'll create a new one in
17106 tsubst_lambda_expr. */
17107 break;
17108 else
17109 {
17110 init = DECL_INITIAL (decl);
17111 /* The following tsubst call will clear the DECL_TEMPLATE_INFO
17112 for local variables, so save if DECL was declared constinit. */
17113 const bool constinit_p
17114 = (VAR_P (decl)
17115 && DECL_LANG_SPECIFIC (decl)
17116 && DECL_TEMPLATE_INFO (decl)
17117 && TINFO_VAR_DECLARED_CONSTINIT (DECL_TEMPLATE_INFO (decl)));
17118 decl = tsubst (decl, args, complain, in_decl);
17119 if (decl != error_mark_node)
17120 {
17121 /* By marking the declaration as instantiated, we avoid
17122 trying to instantiate it. Since instantiate_decl can't
17123 handle local variables, and since we've already done
17124 all that needs to be done, that's the right thing to
17125 do. */
17126 if (VAR_P (decl))
17127 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
17128 if (VAR_P (decl) && !DECL_NAME (decl)
17129 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
17130 /* Anonymous aggregates are a special case. */
17131 finish_anon_union (decl);
17132 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
17133 {
17134 DECL_CONTEXT (decl) = current_function_decl;
17135 if (DECL_NAME (decl) == this_identifier)
17136 {
17137 tree lam = DECL_CONTEXT (current_function_decl);
17138 lam = CLASSTYPE_LAMBDA_EXPR (lam);
17139 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
17140 }
17141 insert_capture_proxy (decl);
17142 }
17143 else if (DECL_IMPLICIT_TYPEDEF_P (t))
17144 /* We already did a pushtag. */;
17145 else if (TREE_CODE (decl) == FUNCTION_DECL
17146 && DECL_OMP_DECLARE_REDUCTION_P (decl)
17147 && DECL_FUNCTION_SCOPE_P (pattern_decl))
17148 {
17149 DECL_CONTEXT (decl) = NULL_TREE;
17150 pushdecl (decl);
17151 DECL_CONTEXT (decl) = current_function_decl;
17152 cp_check_omp_declare_reduction (decl);
17153 }
17154 else
17155 {
17156 bool const_init = false;
17157 unsigned int cnt = 0;
17158 tree first = NULL_TREE, ndecl = error_mark_node;
17159 maybe_push_decl (decl);
17160
17161 if (VAR_P (decl)
17162 && DECL_DECOMPOSITION_P (decl)
17163 && TREE_TYPE (pattern_decl) != error_mark_node)
17164 ndecl = tsubst_decomp_names (decl, pattern_decl, args,
17165 complain, in_decl, &first,
17166 &cnt);
17167
17168 init = tsubst_init (init, decl, args, complain, in_decl);
17169
17170 if (VAR_P (decl))
17171 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
17172 (pattern_decl));
17173
17174 if (ndecl != error_mark_node)
17175 cp_maybe_mangle_decomp (ndecl, first, cnt);
17176
17177 cp_finish_decl (decl, init, const_init, NULL_TREE,
17178 constinit_p ? LOOKUP_CONSTINIT : 0);
17179
17180 if (ndecl != error_mark_node)
17181 cp_finish_decomp (ndecl, first, cnt);
17182 }
17183 }
17184 }
17185
17186 break;
17187 }
17188
17189 case FOR_STMT:
17190 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
17191 RECUR (FOR_INIT_STMT (t));
17192 finish_init_stmt (stmt);
17193 tmp = RECUR (FOR_COND (t));
17194 finish_for_cond (tmp, stmt, false, 0);
17195 tmp = RECUR (FOR_EXPR (t));
17196 finish_for_expr (tmp, stmt);
17197 {
17198 bool prev = note_iteration_stmt_body_start ();
17199 RECUR (FOR_BODY (t));
17200 note_iteration_stmt_body_end (prev);
17201 }
17202 finish_for_stmt (stmt);
17203 break;
17204
17205 case RANGE_FOR_STMT:
17206 {
17207 /* Construct another range_for, if this is not a final
17208 substitution (for inside inside a generic lambda of a
17209 template). Otherwise convert to a regular for. */
17210 tree decl, expr;
17211 stmt = (processing_template_decl
17212 ? begin_range_for_stmt (NULL_TREE, NULL_TREE)
17213 : begin_for_stmt (NULL_TREE, NULL_TREE));
17214 RECUR (RANGE_FOR_INIT_STMT (t));
17215 decl = RANGE_FOR_DECL (t);
17216 decl = tsubst (decl, args, complain, in_decl);
17217 maybe_push_decl (decl);
17218 expr = RECUR (RANGE_FOR_EXPR (t));
17219
17220 tree decomp_first = NULL_TREE;
17221 unsigned decomp_cnt = 0;
17222 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
17223 decl = tsubst_decomp_names (decl, RANGE_FOR_DECL (t), args,
17224 complain, in_decl,
17225 &decomp_first, &decomp_cnt);
17226
17227 if (processing_template_decl)
17228 {
17229 RANGE_FOR_IVDEP (stmt) = RANGE_FOR_IVDEP (t);
17230 RANGE_FOR_UNROLL (stmt) = RANGE_FOR_UNROLL (t);
17231 finish_range_for_decl (stmt, decl, expr);
17232 if (decomp_first && decl != error_mark_node)
17233 cp_finish_decomp (decl, decomp_first, decomp_cnt);
17234 }
17235 else
17236 {
17237 unsigned short unroll = (RANGE_FOR_UNROLL (t)
17238 ? tree_to_uhwi (RANGE_FOR_UNROLL (t)) : 0);
17239 stmt = cp_convert_range_for (stmt, decl, expr,
17240 decomp_first, decomp_cnt,
17241 RANGE_FOR_IVDEP (t), unroll);
17242 }
17243
17244 bool prev = note_iteration_stmt_body_start ();
17245 RECUR (RANGE_FOR_BODY (t));
17246 note_iteration_stmt_body_end (prev);
17247 finish_for_stmt (stmt);
17248 }
17249 break;
17250
17251 case WHILE_STMT:
17252 stmt = begin_while_stmt ();
17253 tmp = RECUR (WHILE_COND (t));
17254 finish_while_stmt_cond (tmp, stmt, false, 0);
17255 {
17256 bool prev = note_iteration_stmt_body_start ();
17257 RECUR (WHILE_BODY (t));
17258 note_iteration_stmt_body_end (prev);
17259 }
17260 finish_while_stmt (stmt);
17261 break;
17262
17263 case DO_STMT:
17264 stmt = begin_do_stmt ();
17265 {
17266 bool prev = note_iteration_stmt_body_start ();
17267 RECUR (DO_BODY (t));
17268 note_iteration_stmt_body_end (prev);
17269 }
17270 finish_do_body (stmt);
17271 tmp = RECUR (DO_COND (t));
17272 finish_do_stmt (tmp, stmt, false, 0);
17273 break;
17274
17275 case IF_STMT:
17276 stmt = begin_if_stmt ();
17277 IF_STMT_CONSTEXPR_P (stmt) = IF_STMT_CONSTEXPR_P (t);
17278 if (IF_STMT_CONSTEXPR_P (t))
17279 args = add_extra_args (IF_STMT_EXTRA_ARGS (t), args);
17280 tmp = RECUR (IF_COND (t));
17281 tmp = finish_if_stmt_cond (tmp, stmt);
17282 if (IF_STMT_CONSTEXPR_P (t)
17283 && instantiation_dependent_expression_p (tmp))
17284 {
17285 /* We're partially instantiating a generic lambda, but the condition
17286 of the constexpr if is still dependent. Don't substitute into the
17287 branches now, just remember the template arguments. */
17288 do_poplevel (IF_SCOPE (stmt));
17289 IF_COND (stmt) = IF_COND (t);
17290 THEN_CLAUSE (stmt) = THEN_CLAUSE (t);
17291 ELSE_CLAUSE (stmt) = ELSE_CLAUSE (t);
17292 IF_STMT_EXTRA_ARGS (stmt) = build_extra_args (t, args, complain);
17293 add_stmt (stmt);
17294 break;
17295 }
17296 if (IF_STMT_CONSTEXPR_P (t) && integer_zerop (tmp))
17297 /* Don't instantiate the THEN_CLAUSE. */;
17298 else
17299 {
17300 tree folded = fold_non_dependent_expr (tmp, complain);
17301 bool inhibit = integer_zerop (folded);
17302 if (inhibit)
17303 ++c_inhibit_evaluation_warnings;
17304 RECUR (THEN_CLAUSE (t));
17305 if (inhibit)
17306 --c_inhibit_evaluation_warnings;
17307 }
17308 finish_then_clause (stmt);
17309
17310 if (IF_STMT_CONSTEXPR_P (t) && integer_nonzerop (tmp))
17311 /* Don't instantiate the ELSE_CLAUSE. */;
17312 else if (ELSE_CLAUSE (t))
17313 {
17314 tree folded = fold_non_dependent_expr (tmp, complain);
17315 bool inhibit = integer_nonzerop (folded);
17316 begin_else_clause (stmt);
17317 if (inhibit)
17318 ++c_inhibit_evaluation_warnings;
17319 RECUR (ELSE_CLAUSE (t));
17320 if (inhibit)
17321 --c_inhibit_evaluation_warnings;
17322 finish_else_clause (stmt);
17323 }
17324
17325 finish_if_stmt (stmt);
17326 break;
17327
17328 case BIND_EXPR:
17329 if (BIND_EXPR_BODY_BLOCK (t))
17330 stmt = begin_function_body ();
17331 else
17332 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
17333 ? BCS_TRY_BLOCK : 0);
17334
17335 RECUR (BIND_EXPR_BODY (t));
17336
17337 if (BIND_EXPR_BODY_BLOCK (t))
17338 finish_function_body (stmt);
17339 else
17340 finish_compound_stmt (stmt);
17341 break;
17342
17343 case BREAK_STMT:
17344 finish_break_stmt ();
17345 break;
17346
17347 case CONTINUE_STMT:
17348 finish_continue_stmt ();
17349 break;
17350
17351 case SWITCH_STMT:
17352 stmt = begin_switch_stmt ();
17353 tmp = RECUR (SWITCH_STMT_COND (t));
17354 finish_switch_cond (tmp, stmt);
17355 RECUR (SWITCH_STMT_BODY (t));
17356 finish_switch_stmt (stmt);
17357 break;
17358
17359 case CASE_LABEL_EXPR:
17360 {
17361 tree decl = CASE_LABEL (t);
17362 tree low = RECUR (CASE_LOW (t));
17363 tree high = RECUR (CASE_HIGH (t));
17364 tree l = finish_case_label (EXPR_LOCATION (t), low, high);
17365 if (l && TREE_CODE (l) == CASE_LABEL_EXPR)
17366 {
17367 tree label = CASE_LABEL (l);
17368 FALLTHROUGH_LABEL_P (label) = FALLTHROUGH_LABEL_P (decl);
17369 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
17370 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
17371 }
17372 }
17373 break;
17374
17375 case LABEL_EXPR:
17376 {
17377 tree decl = LABEL_EXPR_LABEL (t);
17378 tree label;
17379
17380 label = finish_label_stmt (DECL_NAME (decl));
17381 if (TREE_CODE (label) == LABEL_DECL)
17382 FALLTHROUGH_LABEL_P (label) = FALLTHROUGH_LABEL_P (decl);
17383 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
17384 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
17385 }
17386 break;
17387
17388 case GOTO_EXPR:
17389 tmp = GOTO_DESTINATION (t);
17390 if (TREE_CODE (tmp) != LABEL_DECL)
17391 /* Computed goto's must be tsubst'd into. On the other hand,
17392 non-computed gotos must not be; the identifier in question
17393 will have no binding. */
17394 tmp = RECUR (tmp);
17395 else
17396 tmp = DECL_NAME (tmp);
17397 finish_goto_stmt (tmp);
17398 break;
17399
17400 case ASM_EXPR:
17401 {
17402 tree string = RECUR (ASM_STRING (t));
17403 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
17404 complain, in_decl);
17405 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
17406 complain, in_decl);
17407 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
17408 complain, in_decl);
17409 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
17410 complain, in_decl);
17411 tmp = finish_asm_stmt (EXPR_LOCATION (t), ASM_VOLATILE_P (t), string,
17412 outputs, inputs, clobbers, labels,
17413 ASM_INLINE_P (t));
17414 tree asm_expr = tmp;
17415 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
17416 asm_expr = TREE_OPERAND (asm_expr, 0);
17417 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
17418 }
17419 break;
17420
17421 case TRY_BLOCK:
17422 if (CLEANUP_P (t))
17423 {
17424 stmt = begin_try_block ();
17425 RECUR (TRY_STMTS (t));
17426 finish_cleanup_try_block (stmt);
17427 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
17428 }
17429 else
17430 {
17431 tree compound_stmt = NULL_TREE;
17432
17433 if (FN_TRY_BLOCK_P (t))
17434 stmt = begin_function_try_block (&compound_stmt);
17435 else
17436 stmt = begin_try_block ();
17437
17438 RECUR (TRY_STMTS (t));
17439
17440 if (FN_TRY_BLOCK_P (t))
17441 finish_function_try_block (stmt);
17442 else
17443 finish_try_block (stmt);
17444
17445 RECUR (TRY_HANDLERS (t));
17446 if (FN_TRY_BLOCK_P (t))
17447 finish_function_handler_sequence (stmt, compound_stmt);
17448 else
17449 finish_handler_sequence (stmt);
17450 }
17451 break;
17452
17453 case HANDLER:
17454 {
17455 tree decl = HANDLER_PARMS (t);
17456
17457 if (decl)
17458 {
17459 decl = tsubst (decl, args, complain, in_decl);
17460 /* Prevent instantiate_decl from trying to instantiate
17461 this variable. We've already done all that needs to be
17462 done. */
17463 if (decl != error_mark_node)
17464 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
17465 }
17466 stmt = begin_handler ();
17467 finish_handler_parms (decl, stmt);
17468 RECUR (HANDLER_BODY (t));
17469 finish_handler (stmt);
17470 }
17471 break;
17472
17473 case TAG_DEFN:
17474 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
17475 if (CLASS_TYPE_P (tmp))
17476 {
17477 /* Local classes are not independent templates; they are
17478 instantiated along with their containing function. And this
17479 way we don't have to deal with pushing out of one local class
17480 to instantiate a member of another local class. */
17481 /* Closures are handled by the LAMBDA_EXPR. */
17482 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
17483 complete_type (tmp);
17484 for (tree fld = TYPE_FIELDS (tmp); fld; fld = DECL_CHAIN (fld))
17485 if ((VAR_P (fld)
17486 || (TREE_CODE (fld) == FUNCTION_DECL
17487 && !DECL_ARTIFICIAL (fld)))
17488 && DECL_TEMPLATE_INSTANTIATION (fld))
17489 instantiate_decl (fld, /*defer_ok=*/false,
17490 /*expl_inst_class=*/false);
17491 }
17492 break;
17493
17494 case STATIC_ASSERT:
17495 {
17496 tree condition;
17497
17498 ++c_inhibit_evaluation_warnings;
17499 condition =
17500 tsubst_expr (STATIC_ASSERT_CONDITION (t),
17501 args,
17502 complain, in_decl,
17503 /*integral_constant_expression_p=*/true);
17504 --c_inhibit_evaluation_warnings;
17505
17506 finish_static_assert (condition,
17507 STATIC_ASSERT_MESSAGE (t),
17508 STATIC_ASSERT_SOURCE_LOCATION (t),
17509 /*member_p=*/false);
17510 }
17511 break;
17512
17513 case OACC_KERNELS:
17514 case OACC_PARALLEL:
17515 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_ACC, args, complain,
17516 in_decl);
17517 stmt = begin_omp_parallel ();
17518 RECUR (OMP_BODY (t));
17519 finish_omp_construct (TREE_CODE (t), stmt, tmp);
17520 break;
17521
17522 case OMP_PARALLEL:
17523 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
17524 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), C_ORT_OMP, args,
17525 complain, in_decl);
17526 if (OMP_PARALLEL_COMBINED (t))
17527 omp_parallel_combined_clauses = &tmp;
17528 stmt = begin_omp_parallel ();
17529 RECUR (OMP_PARALLEL_BODY (t));
17530 gcc_assert (omp_parallel_combined_clauses == NULL);
17531 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
17532 = OMP_PARALLEL_COMBINED (t);
17533 pop_omp_privatization_clauses (r);
17534 break;
17535
17536 case OMP_TASK:
17537 if (OMP_TASK_BODY (t) == NULL_TREE)
17538 {
17539 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), C_ORT_OMP, args,
17540 complain, in_decl);
17541 t = copy_node (t);
17542 OMP_TASK_CLAUSES (t) = tmp;
17543 add_stmt (t);
17544 break;
17545 }
17546 r = push_omp_privatization_clauses (false);
17547 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), C_ORT_OMP, args,
17548 complain, in_decl);
17549 stmt = begin_omp_task ();
17550 RECUR (OMP_TASK_BODY (t));
17551 finish_omp_task (tmp, stmt);
17552 pop_omp_privatization_clauses (r);
17553 break;
17554
17555 case OMP_FOR:
17556 case OMP_LOOP:
17557 case OMP_SIMD:
17558 case OMP_DISTRIBUTE:
17559 case OMP_TASKLOOP:
17560 case OACC_LOOP:
17561 {
17562 tree clauses, body, pre_body;
17563 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
17564 tree orig_declv = NULL_TREE;
17565 tree incrv = NULL_TREE;
17566 enum c_omp_region_type ort = C_ORT_OMP;
17567 bool any_range_for = false;
17568 int i;
17569
17570 if (TREE_CODE (t) == OACC_LOOP)
17571 ort = C_ORT_ACC;
17572
17573 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
17574 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), ort, args, complain,
17575 in_decl);
17576 if (OMP_FOR_INIT (t) != NULL_TREE)
17577 {
17578 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
17579 if (OMP_FOR_ORIG_DECLS (t))
17580 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
17581 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
17582 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
17583 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
17584 }
17585
17586 keep_next_level (true);
17587 stmt = begin_omp_structured_block ();
17588
17589 pre_body = push_stmt_list ();
17590 RECUR (OMP_FOR_PRE_BODY (t));
17591 pre_body = pop_stmt_list (pre_body);
17592
17593 if (OMP_FOR_INIT (t) != NULL_TREE)
17594 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
17595 any_range_for
17596 |= tsubst_omp_for_iterator (t, i, declv, orig_declv, initv,
17597 condv, incrv, &clauses, args,
17598 complain, in_decl,
17599 integral_constant_expression_p);
17600 omp_parallel_combined_clauses = NULL;
17601
17602 if (any_range_for)
17603 {
17604 gcc_assert (orig_declv);
17605 body = begin_omp_structured_block ();
17606 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
17607 if (TREE_VEC_ELT (orig_declv, i) != TREE_VEC_ELT (declv, i)
17608 && TREE_CODE (TREE_VEC_ELT (orig_declv, i)) == TREE_LIST
17609 && TREE_CHAIN (TREE_VEC_ELT (orig_declv, i)))
17610 cp_finish_omp_range_for (TREE_VEC_ELT (orig_declv, i),
17611 TREE_VEC_ELT (declv, i));
17612 }
17613 else
17614 body = push_stmt_list ();
17615 RECUR (OMP_FOR_BODY (t));
17616 if (any_range_for)
17617 body = finish_omp_structured_block (body);
17618 else
17619 body = pop_stmt_list (body);
17620
17621 if (OMP_FOR_INIT (t) != NULL_TREE)
17622 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
17623 orig_declv, initv, condv, incrv, body, pre_body,
17624 NULL, clauses);
17625 else
17626 {
17627 t = make_node (TREE_CODE (t));
17628 TREE_TYPE (t) = void_type_node;
17629 OMP_FOR_BODY (t) = body;
17630 OMP_FOR_PRE_BODY (t) = pre_body;
17631 OMP_FOR_CLAUSES (t) = clauses;
17632 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
17633 add_stmt (t);
17634 }
17635
17636 add_stmt (finish_omp_for_block (finish_omp_structured_block (stmt),
17637 t));
17638 pop_omp_privatization_clauses (r);
17639 }
17640 break;
17641
17642 case OMP_SECTIONS:
17643 omp_parallel_combined_clauses = NULL;
17644 /* FALLTHRU */
17645 case OMP_SINGLE:
17646 case OMP_TEAMS:
17647 case OMP_CRITICAL:
17648 case OMP_TASKGROUP:
17649 case OMP_SCAN:
17650 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
17651 && OMP_TEAMS_COMBINED (t));
17652 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_OMP, args, complain,
17653 in_decl);
17654 if (TREE_CODE (t) == OMP_TEAMS)
17655 {
17656 keep_next_level (true);
17657 stmt = begin_omp_structured_block ();
17658 RECUR (OMP_BODY (t));
17659 stmt = finish_omp_structured_block (stmt);
17660 }
17661 else
17662 {
17663 stmt = push_stmt_list ();
17664 RECUR (OMP_BODY (t));
17665 stmt = pop_stmt_list (stmt);
17666 }
17667
17668 t = copy_node (t);
17669 OMP_BODY (t) = stmt;
17670 OMP_CLAUSES (t) = tmp;
17671 add_stmt (t);
17672 pop_omp_privatization_clauses (r);
17673 break;
17674
17675 case OMP_DEPOBJ:
17676 r = RECUR (OMP_DEPOBJ_DEPOBJ (t));
17677 if (OMP_DEPOBJ_CLAUSES (t) && OMP_DEPOBJ_CLAUSES (t) != error_mark_node)
17678 {
17679 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_SOURCE;
17680 if (TREE_CODE (OMP_DEPOBJ_CLAUSES (t)) == OMP_CLAUSE)
17681 {
17682 tmp = tsubst_omp_clauses (OMP_DEPOBJ_CLAUSES (t), C_ORT_OMP,
17683 args, complain, in_decl);
17684 if (tmp == NULL_TREE)
17685 tmp = error_mark_node;
17686 }
17687 else
17688 {
17689 kind = (enum omp_clause_depend_kind)
17690 tree_to_uhwi (OMP_DEPOBJ_CLAUSES (t));
17691 tmp = NULL_TREE;
17692 }
17693 finish_omp_depobj (EXPR_LOCATION (t), r, kind, tmp);
17694 }
17695 else
17696 finish_omp_depobj (EXPR_LOCATION (t), r,
17697 OMP_CLAUSE_DEPEND_SOURCE,
17698 OMP_DEPOBJ_CLAUSES (t));
17699 break;
17700
17701 case OACC_DATA:
17702 case OMP_TARGET_DATA:
17703 case OMP_TARGET:
17704 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), (TREE_CODE (t) == OACC_DATA)
17705 ? C_ORT_ACC : C_ORT_OMP, args, complain,
17706 in_decl);
17707 keep_next_level (true);
17708 stmt = begin_omp_structured_block ();
17709
17710 RECUR (OMP_BODY (t));
17711 stmt = finish_omp_structured_block (stmt);
17712
17713 t = copy_node (t);
17714 OMP_BODY (t) = stmt;
17715 OMP_CLAUSES (t) = tmp;
17716 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
17717 {
17718 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
17719 if (teams)
17720 {
17721 /* For combined target teams, ensure the num_teams and
17722 thread_limit clause expressions are evaluated on the host,
17723 before entering the target construct. */
17724 tree c;
17725 for (c = OMP_TEAMS_CLAUSES (teams);
17726 c; c = OMP_CLAUSE_CHAIN (c))
17727 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
17728 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
17729 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
17730 {
17731 tree expr = OMP_CLAUSE_OPERAND (c, 0);
17732 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
17733 if (expr == error_mark_node)
17734 continue;
17735 tmp = TARGET_EXPR_SLOT (expr);
17736 add_stmt (expr);
17737 OMP_CLAUSE_OPERAND (c, 0) = expr;
17738 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
17739 OMP_CLAUSE_FIRSTPRIVATE);
17740 OMP_CLAUSE_DECL (tc) = tmp;
17741 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
17742 OMP_TARGET_CLAUSES (t) = tc;
17743 }
17744 }
17745 }
17746 add_stmt (t);
17747 break;
17748
17749 case OACC_DECLARE:
17750 t = copy_node (t);
17751 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), C_ORT_ACC, args,
17752 complain, in_decl);
17753 OACC_DECLARE_CLAUSES (t) = tmp;
17754 add_stmt (t);
17755 break;
17756
17757 case OMP_TARGET_UPDATE:
17758 case OMP_TARGET_ENTER_DATA:
17759 case OMP_TARGET_EXIT_DATA:
17760 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_OMP, args,
17761 complain, in_decl);
17762 t = copy_node (t);
17763 OMP_STANDALONE_CLAUSES (t) = tmp;
17764 add_stmt (t);
17765 break;
17766
17767 case OACC_ENTER_DATA:
17768 case OACC_EXIT_DATA:
17769 case OACC_UPDATE:
17770 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_ACC, args,
17771 complain, in_decl);
17772 t = copy_node (t);
17773 OMP_STANDALONE_CLAUSES (t) = tmp;
17774 add_stmt (t);
17775 break;
17776
17777 case OMP_ORDERED:
17778 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), C_ORT_OMP, args,
17779 complain, in_decl);
17780 stmt = push_stmt_list ();
17781 RECUR (OMP_BODY (t));
17782 stmt = pop_stmt_list (stmt);
17783
17784 t = copy_node (t);
17785 OMP_BODY (t) = stmt;
17786 OMP_ORDERED_CLAUSES (t) = tmp;
17787 add_stmt (t);
17788 break;
17789
17790 case OMP_SECTION:
17791 case OMP_MASTER:
17792 stmt = push_stmt_list ();
17793 RECUR (OMP_BODY (t));
17794 stmt = pop_stmt_list (stmt);
17795
17796 t = copy_node (t);
17797 OMP_BODY (t) = stmt;
17798 add_stmt (t);
17799 break;
17800
17801 case OMP_ATOMIC:
17802 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
17803 tmp = NULL_TREE;
17804 if (TREE_CODE (TREE_OPERAND (t, 0)) == OMP_CLAUSE)
17805 tmp = tsubst_omp_clauses (TREE_OPERAND (t, 0), C_ORT_OMP, args,
17806 complain, in_decl);
17807 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
17808 {
17809 tree op1 = TREE_OPERAND (t, 1);
17810 tree rhs1 = NULL_TREE;
17811 tree lhs, rhs;
17812 if (TREE_CODE (op1) == COMPOUND_EXPR)
17813 {
17814 rhs1 = RECUR (TREE_OPERAND (op1, 0));
17815 op1 = TREE_OPERAND (op1, 1);
17816 }
17817 lhs = RECUR (TREE_OPERAND (op1, 0));
17818 rhs = RECUR (TREE_OPERAND (op1, 1));
17819 finish_omp_atomic (EXPR_LOCATION (t), OMP_ATOMIC, TREE_CODE (op1),
17820 lhs, rhs, NULL_TREE, NULL_TREE, rhs1, tmp,
17821 OMP_ATOMIC_MEMORY_ORDER (t));
17822 }
17823 else
17824 {
17825 tree op1 = TREE_OPERAND (t, 1);
17826 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
17827 tree rhs1 = NULL_TREE;
17828 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
17829 enum tree_code opcode = NOP_EXPR;
17830 if (code == OMP_ATOMIC_READ)
17831 {
17832 v = RECUR (TREE_OPERAND (op1, 0));
17833 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
17834 }
17835 else if (code == OMP_ATOMIC_CAPTURE_OLD
17836 || code == OMP_ATOMIC_CAPTURE_NEW)
17837 {
17838 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
17839 v = RECUR (TREE_OPERAND (op1, 0));
17840 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
17841 if (TREE_CODE (op11) == COMPOUND_EXPR)
17842 {
17843 rhs1 = RECUR (TREE_OPERAND (op11, 0));
17844 op11 = TREE_OPERAND (op11, 1);
17845 }
17846 lhs = RECUR (TREE_OPERAND (op11, 0));
17847 rhs = RECUR (TREE_OPERAND (op11, 1));
17848 opcode = TREE_CODE (op11);
17849 if (opcode == MODIFY_EXPR)
17850 opcode = NOP_EXPR;
17851 }
17852 else
17853 {
17854 code = OMP_ATOMIC;
17855 lhs = RECUR (TREE_OPERAND (op1, 0));
17856 rhs = RECUR (TREE_OPERAND (op1, 1));
17857 }
17858 finish_omp_atomic (EXPR_LOCATION (t), code, opcode, lhs, rhs, v,
17859 lhs1, rhs1, tmp, OMP_ATOMIC_MEMORY_ORDER (t));
17860 }
17861 break;
17862
17863 case TRANSACTION_EXPR:
17864 {
17865 int flags = 0;
17866 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
17867 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
17868
17869 if (TRANSACTION_EXPR_IS_STMT (t))
17870 {
17871 tree body = TRANSACTION_EXPR_BODY (t);
17872 tree noex = NULL_TREE;
17873 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
17874 {
17875 noex = MUST_NOT_THROW_COND (body);
17876 if (noex == NULL_TREE)
17877 noex = boolean_true_node;
17878 body = TREE_OPERAND (body, 0);
17879 }
17880 stmt = begin_transaction_stmt (input_location, NULL, flags);
17881 RECUR (body);
17882 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
17883 }
17884 else
17885 {
17886 stmt = build_transaction_expr (EXPR_LOCATION (t),
17887 RECUR (TRANSACTION_EXPR_BODY (t)),
17888 flags, NULL_TREE);
17889 RETURN (stmt);
17890 }
17891 }
17892 break;
17893
17894 case MUST_NOT_THROW_EXPR:
17895 {
17896 tree op0 = RECUR (TREE_OPERAND (t, 0));
17897 tree cond = RECUR (MUST_NOT_THROW_COND (t));
17898 RETURN (build_must_not_throw_expr (op0, cond));
17899 }
17900
17901 case EXPR_PACK_EXPANSION:
17902 error ("invalid use of pack expansion expression");
17903 RETURN (error_mark_node);
17904
17905 case NONTYPE_ARGUMENT_PACK:
17906 error ("use %<...%> to expand argument pack");
17907 RETURN (error_mark_node);
17908
17909 case COMPOUND_EXPR:
17910 tmp = RECUR (TREE_OPERAND (t, 0));
17911 if (tmp == NULL_TREE)
17912 /* If the first operand was a statement, we're done with it. */
17913 RETURN (RECUR (TREE_OPERAND (t, 1)));
17914 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
17915 RECUR (TREE_OPERAND (t, 1)),
17916 complain));
17917
17918 case ANNOTATE_EXPR:
17919 tmp = RECUR (TREE_OPERAND (t, 0));
17920 RETURN (build3_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
17921 TREE_TYPE (tmp), tmp,
17922 RECUR (TREE_OPERAND (t, 1)),
17923 RECUR (TREE_OPERAND (t, 2))));
17924
17925 case PREDICT_EXPR:
17926 RETURN (add_stmt (copy_node (t)));
17927
17928 default:
17929 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
17930
17931 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
17932 /*function_p=*/false,
17933 integral_constant_expression_p));
17934 }
17935
17936 RETURN (NULL_TREE);
17937 out:
17938 input_location = loc;
17939 return r;
17940 #undef RECUR
17941 #undef RETURN
17942 }
17943
17944 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
17945 function. For description of the body see comment above
17946 cp_parser_omp_declare_reduction_exprs. */
17947
17948 static void
17949 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
17950 {
17951 if (t == NULL_TREE || t == error_mark_node)
17952 return;
17953
17954 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
17955
17956 tree_stmt_iterator tsi;
17957 int i;
17958 tree stmts[7];
17959 memset (stmts, 0, sizeof stmts);
17960 for (i = 0, tsi = tsi_start (t);
17961 i < 7 && !tsi_end_p (tsi);
17962 i++, tsi_next (&tsi))
17963 stmts[i] = tsi_stmt (tsi);
17964 gcc_assert (tsi_end_p (tsi));
17965
17966 if (i >= 3)
17967 {
17968 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
17969 && TREE_CODE (stmts[1]) == DECL_EXPR);
17970 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
17971 args, complain, in_decl);
17972 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
17973 args, complain, in_decl);
17974 DECL_CONTEXT (omp_out) = current_function_decl;
17975 DECL_CONTEXT (omp_in) = current_function_decl;
17976 keep_next_level (true);
17977 tree block = begin_omp_structured_block ();
17978 tsubst_expr (stmts[2], args, complain, in_decl, false);
17979 block = finish_omp_structured_block (block);
17980 block = maybe_cleanup_point_expr_void (block);
17981 add_decl_expr (omp_out);
17982 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
17983 TREE_NO_WARNING (omp_out) = 1;
17984 add_decl_expr (omp_in);
17985 finish_expr_stmt (block);
17986 }
17987 if (i >= 6)
17988 {
17989 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
17990 && TREE_CODE (stmts[4]) == DECL_EXPR);
17991 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
17992 args, complain, in_decl);
17993 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
17994 args, complain, in_decl);
17995 DECL_CONTEXT (omp_priv) = current_function_decl;
17996 DECL_CONTEXT (omp_orig) = current_function_decl;
17997 keep_next_level (true);
17998 tree block = begin_omp_structured_block ();
17999 tsubst_expr (stmts[5], args, complain, in_decl, false);
18000 block = finish_omp_structured_block (block);
18001 block = maybe_cleanup_point_expr_void (block);
18002 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
18003 add_decl_expr (omp_priv);
18004 add_decl_expr (omp_orig);
18005 finish_expr_stmt (block);
18006 if (i == 7)
18007 add_decl_expr (omp_orig);
18008 }
18009 }
18010
18011 /* T is a postfix-expression that is not being used in a function
18012 call. Return the substituted version of T. */
18013
18014 static tree
18015 tsubst_non_call_postfix_expression (tree t, tree args,
18016 tsubst_flags_t complain,
18017 tree in_decl)
18018 {
18019 if (TREE_CODE (t) == SCOPE_REF)
18020 t = tsubst_qualified_id (t, args, complain, in_decl,
18021 /*done=*/false, /*address_p=*/false);
18022 else
18023 t = tsubst_copy_and_build (t, args, complain, in_decl,
18024 /*function_p=*/false,
18025 /*integral_constant_expression_p=*/false);
18026
18027 return t;
18028 }
18029
18030 /* Subroutine of tsubst_lambda_expr: add the FIELD/INIT capture pair to the
18031 LAMBDA_EXPR_CAPTURE_LIST passed in LIST. Do deduction for a previously
18032 dependent init-capture. */
18033
18034 static void
18035 prepend_one_capture (tree field, tree init, tree &list,
18036 tsubst_flags_t complain)
18037 {
18038 if (tree auto_node = type_uses_auto (TREE_TYPE (field)))
18039 {
18040 tree type = NULL_TREE;
18041 if (!init)
18042 {
18043 if (complain & tf_error)
18044 error ("empty initializer in lambda init-capture");
18045 init = error_mark_node;
18046 }
18047 else if (TREE_CODE (init) == TREE_LIST)
18048 init = build_x_compound_expr_from_list (init, ELK_INIT, complain);
18049 if (!type)
18050 type = do_auto_deduction (TREE_TYPE (field), init, auto_node, complain);
18051 TREE_TYPE (field) = type;
18052 cp_apply_type_quals_to_decl (cp_type_quals (type), field);
18053 }
18054 list = tree_cons (field, init, list);
18055 }
18056
18057 /* T is a LAMBDA_EXPR. Generate a new LAMBDA_EXPR for the current
18058 instantiation context. Instantiating a pack expansion containing a lambda
18059 might result in multiple lambdas all based on the same lambda in the
18060 template. */
18061
18062 tree
18063 tsubst_lambda_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
18064 {
18065 tree oldfn = lambda_function (t);
18066 in_decl = oldfn;
18067
18068 tree r = build_lambda_expr ();
18069
18070 LAMBDA_EXPR_LOCATION (r)
18071 = LAMBDA_EXPR_LOCATION (t);
18072 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
18073 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
18074 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
18075 LAMBDA_EXPR_INSTANTIATED (r) = true;
18076
18077 if (LAMBDA_EXPR_EXTRA_SCOPE (t) == NULL_TREE)
18078 /* A lambda in a default argument outside a class gets no
18079 LAMBDA_EXPR_EXTRA_SCOPE, as specified by the ABI. But
18080 tsubst_default_argument calls start_lambda_scope, so we need to
18081 specifically ignore it here, and use the global scope. */
18082 record_null_lambda_scope (r);
18083 else
18084 record_lambda_scope (r);
18085
18086 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
18087 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
18088
18089 vec<tree,va_gc>* field_packs = NULL;
18090
18091 for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (t); cap;
18092 cap = TREE_CHAIN (cap))
18093 {
18094 tree ofield = TREE_PURPOSE (cap);
18095 if (PACK_EXPANSION_P (ofield))
18096 ofield = PACK_EXPANSION_PATTERN (ofield);
18097 tree field = tsubst_decl (ofield, args, complain);
18098
18099 if (DECL_PACK_P (ofield) && !DECL_NORMAL_CAPTURE_P (ofield))
18100 {
18101 /* Remember these for when we've pushed local_specializations. */
18102 vec_safe_push (field_packs, ofield);
18103 vec_safe_push (field_packs, field);
18104 }
18105
18106 if (field == error_mark_node)
18107 return error_mark_node;
18108
18109 tree init = TREE_VALUE (cap);
18110 if (PACK_EXPANSION_P (init))
18111 init = tsubst_pack_expansion (init, args, complain, in_decl);
18112 else
18113 init = tsubst_copy_and_build (init, args, complain, in_decl,
18114 /*fn*/false, /*constexpr*/false);
18115
18116 if (TREE_CODE (field) == TREE_VEC)
18117 {
18118 int len = TREE_VEC_LENGTH (field);
18119 gcc_assert (TREE_CODE (init) == TREE_VEC
18120 && TREE_VEC_LENGTH (init) == len);
18121 for (int i = 0; i < len; ++i)
18122 prepend_one_capture (TREE_VEC_ELT (field, i),
18123 TREE_VEC_ELT (init, i),
18124 LAMBDA_EXPR_CAPTURE_LIST (r),
18125 complain);
18126 }
18127 else
18128 {
18129 prepend_one_capture (field, init, LAMBDA_EXPR_CAPTURE_LIST (r),
18130 complain);
18131
18132 if (id_equal (DECL_NAME (field), "__this"))
18133 LAMBDA_EXPR_THIS_CAPTURE (r) = field;
18134 }
18135 }
18136
18137 tree type = begin_lambda_type (r);
18138 if (type == error_mark_node)
18139 return error_mark_node;
18140
18141 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
18142 determine_visibility (TYPE_NAME (type));
18143
18144 register_capture_members (LAMBDA_EXPR_CAPTURE_LIST (r));
18145
18146 tree oldtmpl = (generic_lambda_fn_p (oldfn)
18147 ? DECL_TI_TEMPLATE (oldfn)
18148 : NULL_TREE);
18149
18150 tree fntype = static_fn_type (oldfn);
18151 if (oldtmpl)
18152 ++processing_template_decl;
18153 fntype = tsubst (fntype, args, complain, in_decl);
18154 if (oldtmpl)
18155 --processing_template_decl;
18156
18157 if (fntype == error_mark_node)
18158 r = error_mark_node;
18159 else
18160 {
18161 /* The body of a lambda-expression is not a subexpression of the
18162 enclosing expression. Parms are to have DECL_CHAIN tsubsted,
18163 which would be skipped if cp_unevaluated_operand. */
18164 cp_evaluated ev;
18165
18166 /* Fix the type of 'this'. */
18167 fntype = build_memfn_type (fntype, type,
18168 type_memfn_quals (fntype),
18169 type_memfn_rqual (fntype));
18170 tree fn, tmpl;
18171 if (oldtmpl)
18172 {
18173 tmpl = tsubst_template_decl (oldtmpl, args, complain, fntype);
18174 fn = DECL_TEMPLATE_RESULT (tmpl);
18175 finish_member_declaration (tmpl);
18176 }
18177 else
18178 {
18179 tmpl = NULL_TREE;
18180 fn = tsubst_function_decl (oldfn, args, complain, fntype);
18181 finish_member_declaration (fn);
18182 }
18183
18184 /* Let finish_function set this. */
18185 DECL_DECLARED_CONSTEXPR_P (fn) = false;
18186
18187 bool nested = cfun;
18188 if (nested)
18189 push_function_context ();
18190 else
18191 /* Still increment function_depth so that we don't GC in the
18192 middle of an expression. */
18193 ++function_depth;
18194
18195 local_specialization_stack s (lss_copy);
18196
18197 tree body = start_lambda_function (fn, r);
18198
18199 /* Now record them for lookup_init_capture_pack. */
18200 int fplen = vec_safe_length (field_packs);
18201 for (int i = 0; i < fplen; )
18202 {
18203 tree pack = (*field_packs)[i++];
18204 tree inst = (*field_packs)[i++];
18205 register_local_specialization (inst, pack);
18206 }
18207 release_tree_vector (field_packs);
18208
18209 register_parameter_specializations (oldfn, fn);
18210
18211 if (oldtmpl)
18212 {
18213 /* We might not partially instantiate some parts of the function, so
18214 copy these flags from the original template. */
18215 language_function *ol = DECL_STRUCT_FUNCTION (oldfn)->language;
18216 current_function_returns_value = ol->returns_value;
18217 current_function_returns_null = ol->returns_null;
18218 current_function_returns_abnormally = ol->returns_abnormally;
18219 current_function_infinite_loop = ol->infinite_loop;
18220 }
18221
18222 /* [temp.deduct] A lambda-expression appearing in a function type or a
18223 template parameter is not considered part of the immediate context for
18224 the purposes of template argument deduction. */
18225 complain = tf_warning_or_error;
18226
18227 tsubst_expr (DECL_SAVED_TREE (oldfn), args, complain, r,
18228 /*constexpr*/false);
18229
18230 finish_lambda_function (body);
18231
18232 if (nested)
18233 pop_function_context ();
18234 else
18235 --function_depth;
18236
18237 /* The capture list was built up in reverse order; fix that now. */
18238 LAMBDA_EXPR_CAPTURE_LIST (r)
18239 = nreverse (LAMBDA_EXPR_CAPTURE_LIST (r));
18240
18241 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
18242
18243 maybe_add_lambda_conv_op (type);
18244 }
18245
18246 finish_struct (type, /*attr*/NULL_TREE);
18247
18248 insert_pending_capture_proxies ();
18249
18250 return r;
18251 }
18252
18253 /* Like tsubst but deals with expressions and performs semantic
18254 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
18255
18256 tree
18257 tsubst_copy_and_build (tree t,
18258 tree args,
18259 tsubst_flags_t complain,
18260 tree in_decl,
18261 bool function_p,
18262 bool integral_constant_expression_p)
18263 {
18264 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
18265 #define RECUR(NODE) \
18266 tsubst_copy_and_build (NODE, args, complain, in_decl, \
18267 /*function_p=*/false, \
18268 integral_constant_expression_p)
18269
18270 tree retval, op1;
18271 location_t loc;
18272
18273 if (t == NULL_TREE || t == error_mark_node)
18274 return t;
18275
18276 loc = input_location;
18277 if (location_t eloc = cp_expr_location (t))
18278 input_location = eloc;
18279
18280 /* N3276 decltype magic only applies to calls at the top level or on the
18281 right side of a comma. */
18282 tsubst_flags_t decltype_flag = (complain & tf_decltype);
18283 complain &= ~tf_decltype;
18284
18285 switch (TREE_CODE (t))
18286 {
18287 case USING_DECL:
18288 t = DECL_NAME (t);
18289 /* Fall through. */
18290 case IDENTIFIER_NODE:
18291 {
18292 tree decl;
18293 cp_id_kind idk;
18294 bool non_integral_constant_expression_p;
18295 const char *error_msg;
18296
18297 if (IDENTIFIER_CONV_OP_P (t))
18298 {
18299 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
18300 t = make_conv_op_name (new_type);
18301 }
18302
18303 /* Look up the name. */
18304 decl = lookup_name (t);
18305
18306 /* By convention, expressions use ERROR_MARK_NODE to indicate
18307 failure, not NULL_TREE. */
18308 if (decl == NULL_TREE)
18309 decl = error_mark_node;
18310
18311 decl = finish_id_expression (t, decl, NULL_TREE,
18312 &idk,
18313 integral_constant_expression_p,
18314 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
18315 &non_integral_constant_expression_p,
18316 /*template_p=*/false,
18317 /*done=*/true,
18318 /*address_p=*/false,
18319 /*template_arg_p=*/false,
18320 &error_msg,
18321 input_location);
18322 if (error_msg)
18323 error (error_msg);
18324 if (!function_p && identifier_p (decl))
18325 {
18326 if (complain & tf_error)
18327 unqualified_name_lookup_error (decl);
18328 decl = error_mark_node;
18329 }
18330 RETURN (decl);
18331 }
18332
18333 case TEMPLATE_ID_EXPR:
18334 {
18335 tree object;
18336 tree templ = RECUR (TREE_OPERAND (t, 0));
18337 tree targs = TREE_OPERAND (t, 1);
18338
18339 if (targs)
18340 targs = tsubst_template_args (targs, args, complain, in_decl);
18341 if (targs == error_mark_node)
18342 RETURN (error_mark_node);
18343
18344 if (TREE_CODE (templ) == SCOPE_REF)
18345 {
18346 tree name = TREE_OPERAND (templ, 1);
18347 tree tid = lookup_template_function (name, targs);
18348 TREE_OPERAND (templ, 1) = tid;
18349 RETURN (templ);
18350 }
18351
18352 if (variable_template_p (templ))
18353 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
18354
18355 if (TREE_CODE (templ) == COMPONENT_REF)
18356 {
18357 object = TREE_OPERAND (templ, 0);
18358 templ = TREE_OPERAND (templ, 1);
18359 }
18360 else
18361 object = NULL_TREE;
18362 templ = lookup_template_function (templ, targs);
18363
18364 if (object)
18365 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
18366 object, templ, NULL_TREE));
18367 else
18368 RETURN (baselink_for_fns (templ));
18369 }
18370
18371 case INDIRECT_REF:
18372 {
18373 tree r = RECUR (TREE_OPERAND (t, 0));
18374
18375 if (REFERENCE_REF_P (t))
18376 {
18377 /* A type conversion to reference type will be enclosed in
18378 such an indirect ref, but the substitution of the cast
18379 will have also added such an indirect ref. */
18380 r = convert_from_reference (r);
18381 }
18382 else
18383 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
18384 complain|decltype_flag);
18385
18386 if (REF_PARENTHESIZED_P (t))
18387 r = force_paren_expr (r);
18388
18389 RETURN (r);
18390 }
18391
18392 case NOP_EXPR:
18393 {
18394 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
18395 tree op0 = RECUR (TREE_OPERAND (t, 0));
18396 RETURN (build_nop (type, op0));
18397 }
18398
18399 case IMPLICIT_CONV_EXPR:
18400 {
18401 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
18402 tree expr = RECUR (TREE_OPERAND (t, 0));
18403 if (dependent_type_p (type) || type_dependent_expression_p (expr))
18404 {
18405 retval = copy_node (t);
18406 TREE_TYPE (retval) = type;
18407 TREE_OPERAND (retval, 0) = expr;
18408 RETURN (retval);
18409 }
18410 if (IMPLICIT_CONV_EXPR_NONTYPE_ARG (t))
18411 /* We'll pass this to convert_nontype_argument again, we don't need
18412 to actually perform any conversion here. */
18413 RETURN (expr);
18414 int flags = LOOKUP_IMPLICIT;
18415 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
18416 flags = LOOKUP_NORMAL;
18417 if (IMPLICIT_CONV_EXPR_BRACED_INIT (t))
18418 flags |= LOOKUP_NO_NARROWING;
18419 RETURN (perform_implicit_conversion_flags (type, expr, complain,
18420 flags));
18421 }
18422
18423 case CONVERT_EXPR:
18424 {
18425 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
18426 tree op0 = RECUR (TREE_OPERAND (t, 0));
18427 if (op0 == error_mark_node)
18428 RETURN (error_mark_node);
18429 RETURN (build1 (CONVERT_EXPR, type, op0));
18430 }
18431
18432 case CAST_EXPR:
18433 case REINTERPRET_CAST_EXPR:
18434 case CONST_CAST_EXPR:
18435 case DYNAMIC_CAST_EXPR:
18436 case STATIC_CAST_EXPR:
18437 {
18438 tree type;
18439 tree op, r = NULL_TREE;
18440
18441 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
18442 if (integral_constant_expression_p
18443 && !cast_valid_in_integral_constant_expression_p (type))
18444 {
18445 if (complain & tf_error)
18446 error ("a cast to a type other than an integral or "
18447 "enumeration type cannot appear in a constant-expression");
18448 RETURN (error_mark_node);
18449 }
18450
18451 op = RECUR (TREE_OPERAND (t, 0));
18452
18453 warning_sentinel s(warn_useless_cast);
18454 warning_sentinel s2(warn_ignored_qualifiers);
18455 switch (TREE_CODE (t))
18456 {
18457 case CAST_EXPR:
18458 r = build_functional_cast (type, op, complain);
18459 break;
18460 case REINTERPRET_CAST_EXPR:
18461 r = build_reinterpret_cast (type, op, complain);
18462 break;
18463 case CONST_CAST_EXPR:
18464 r = build_const_cast (type, op, complain);
18465 break;
18466 case DYNAMIC_CAST_EXPR:
18467 r = build_dynamic_cast (type, op, complain);
18468 break;
18469 case STATIC_CAST_EXPR:
18470 r = build_static_cast (type, op, complain);
18471 break;
18472 default:
18473 gcc_unreachable ();
18474 }
18475
18476 RETURN (r);
18477 }
18478
18479 case POSTDECREMENT_EXPR:
18480 case POSTINCREMENT_EXPR:
18481 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
18482 args, complain, in_decl);
18483 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
18484 complain|decltype_flag));
18485
18486 case PREDECREMENT_EXPR:
18487 case PREINCREMENT_EXPR:
18488 case NEGATE_EXPR:
18489 case BIT_NOT_EXPR:
18490 case ABS_EXPR:
18491 case TRUTH_NOT_EXPR:
18492 case UNARY_PLUS_EXPR: /* Unary + */
18493 case REALPART_EXPR:
18494 case IMAGPART_EXPR:
18495 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
18496 RECUR (TREE_OPERAND (t, 0)),
18497 complain|decltype_flag));
18498
18499 case FIX_TRUNC_EXPR:
18500 gcc_unreachable ();
18501
18502 case ADDR_EXPR:
18503 op1 = TREE_OPERAND (t, 0);
18504 if (TREE_CODE (op1) == LABEL_DECL)
18505 RETURN (finish_label_address_expr (DECL_NAME (op1),
18506 EXPR_LOCATION (op1)));
18507 if (TREE_CODE (op1) == SCOPE_REF)
18508 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
18509 /*done=*/true, /*address_p=*/true);
18510 else
18511 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
18512 in_decl);
18513 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
18514 complain|decltype_flag));
18515
18516 case PLUS_EXPR:
18517 case MINUS_EXPR:
18518 case MULT_EXPR:
18519 case TRUNC_DIV_EXPR:
18520 case CEIL_DIV_EXPR:
18521 case FLOOR_DIV_EXPR:
18522 case ROUND_DIV_EXPR:
18523 case EXACT_DIV_EXPR:
18524 case BIT_AND_EXPR:
18525 case BIT_IOR_EXPR:
18526 case BIT_XOR_EXPR:
18527 case TRUNC_MOD_EXPR:
18528 case FLOOR_MOD_EXPR:
18529 case TRUTH_ANDIF_EXPR:
18530 case TRUTH_ORIF_EXPR:
18531 case TRUTH_AND_EXPR:
18532 case TRUTH_OR_EXPR:
18533 case RSHIFT_EXPR:
18534 case LSHIFT_EXPR:
18535 case RROTATE_EXPR:
18536 case LROTATE_EXPR:
18537 case EQ_EXPR:
18538 case NE_EXPR:
18539 case MAX_EXPR:
18540 case MIN_EXPR:
18541 case LE_EXPR:
18542 case GE_EXPR:
18543 case LT_EXPR:
18544 case GT_EXPR:
18545 case MEMBER_REF:
18546 case DOTSTAR_EXPR:
18547 {
18548 warning_sentinel s1(warn_type_limits);
18549 warning_sentinel s2(warn_div_by_zero);
18550 warning_sentinel s3(warn_logical_op);
18551 warning_sentinel s4(warn_tautological_compare);
18552 tree op0 = RECUR (TREE_OPERAND (t, 0));
18553 tree op1 = RECUR (TREE_OPERAND (t, 1));
18554 tree r = build_x_binary_op
18555 (input_location, TREE_CODE (t),
18556 op0,
18557 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
18558 ? ERROR_MARK
18559 : TREE_CODE (TREE_OPERAND (t, 0))),
18560 op1,
18561 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
18562 ? ERROR_MARK
18563 : TREE_CODE (TREE_OPERAND (t, 1))),
18564 /*overload=*/NULL,
18565 complain|decltype_flag);
18566 if (EXPR_P (r) && TREE_NO_WARNING (t))
18567 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
18568
18569 RETURN (r);
18570 }
18571
18572 case POINTER_PLUS_EXPR:
18573 {
18574 tree op0 = RECUR (TREE_OPERAND (t, 0));
18575 tree op1 = RECUR (TREE_OPERAND (t, 1));
18576 RETURN (fold_build_pointer_plus (op0, op1));
18577 }
18578
18579 case SCOPE_REF:
18580 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
18581 /*address_p=*/false));
18582 case ARRAY_REF:
18583 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
18584 args, complain, in_decl);
18585 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
18586 RECUR (TREE_OPERAND (t, 1)),
18587 complain|decltype_flag));
18588
18589 case SIZEOF_EXPR:
18590 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
18591 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
18592 RETURN (tsubst_copy (t, args, complain, in_decl));
18593 /* Fall through */
18594
18595 case ALIGNOF_EXPR:
18596 {
18597 tree r;
18598
18599 op1 = TREE_OPERAND (t, 0);
18600 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
18601 op1 = TREE_TYPE (op1);
18602 bool std_alignof = (TREE_CODE (t) == ALIGNOF_EXPR
18603 && ALIGNOF_EXPR_STD_P (t));
18604 if (!args)
18605 {
18606 /* When there are no ARGS, we are trying to evaluate a
18607 non-dependent expression from the parser. Trying to do
18608 the substitutions may not work. */
18609 if (!TYPE_P (op1))
18610 op1 = TREE_TYPE (op1);
18611 }
18612 else
18613 {
18614 ++cp_unevaluated_operand;
18615 ++c_inhibit_evaluation_warnings;
18616 if (TYPE_P (op1))
18617 op1 = tsubst (op1, args, complain, in_decl);
18618 else
18619 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
18620 /*function_p=*/false,
18621 /*integral_constant_expression_p=*/
18622 false);
18623 --cp_unevaluated_operand;
18624 --c_inhibit_evaluation_warnings;
18625 }
18626 if (TYPE_P (op1))
18627 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t), std_alignof,
18628 complain & tf_error);
18629 else
18630 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
18631 complain & tf_error);
18632 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
18633 {
18634 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
18635 {
18636 if (!processing_template_decl && TYPE_P (op1))
18637 {
18638 r = build_min (SIZEOF_EXPR, size_type_node,
18639 build1 (NOP_EXPR, op1, error_mark_node));
18640 SIZEOF_EXPR_TYPE_P (r) = 1;
18641 }
18642 else
18643 r = build_min (SIZEOF_EXPR, size_type_node, op1);
18644 TREE_SIDE_EFFECTS (r) = 0;
18645 TREE_READONLY (r) = 1;
18646 }
18647 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
18648 }
18649 RETURN (r);
18650 }
18651
18652 case AT_ENCODE_EXPR:
18653 {
18654 op1 = TREE_OPERAND (t, 0);
18655 ++cp_unevaluated_operand;
18656 ++c_inhibit_evaluation_warnings;
18657 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
18658 /*function_p=*/false,
18659 /*integral_constant_expression_p=*/false);
18660 --cp_unevaluated_operand;
18661 --c_inhibit_evaluation_warnings;
18662 RETURN (objc_build_encode_expr (op1));
18663 }
18664
18665 case NOEXCEPT_EXPR:
18666 op1 = TREE_OPERAND (t, 0);
18667 ++cp_unevaluated_operand;
18668 ++c_inhibit_evaluation_warnings;
18669 ++cp_noexcept_operand;
18670 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
18671 /*function_p=*/false,
18672 /*integral_constant_expression_p=*/false);
18673 --cp_unevaluated_operand;
18674 --c_inhibit_evaluation_warnings;
18675 --cp_noexcept_operand;
18676 RETURN (finish_noexcept_expr (op1, complain));
18677
18678 case MODOP_EXPR:
18679 {
18680 warning_sentinel s(warn_div_by_zero);
18681 tree lhs = RECUR (TREE_OPERAND (t, 0));
18682 tree rhs = RECUR (TREE_OPERAND (t, 2));
18683 tree r = build_x_modify_expr
18684 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
18685 complain|decltype_flag);
18686 /* TREE_NO_WARNING must be set if either the expression was
18687 parenthesized or it uses an operator such as >>= rather
18688 than plain assignment. In the former case, it was already
18689 set and must be copied. In the latter case,
18690 build_x_modify_expr sets it and it must not be reset
18691 here. */
18692 if (TREE_NO_WARNING (t))
18693 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
18694
18695 RETURN (r);
18696 }
18697
18698 case ARROW_EXPR:
18699 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
18700 args, complain, in_decl);
18701 /* Remember that there was a reference to this entity. */
18702 if (DECL_P (op1)
18703 && !mark_used (op1, complain) && !(complain & tf_error))
18704 RETURN (error_mark_node);
18705 RETURN (build_x_arrow (input_location, op1, complain));
18706
18707 case NEW_EXPR:
18708 {
18709 tree placement = RECUR (TREE_OPERAND (t, 0));
18710 tree init = RECUR (TREE_OPERAND (t, 3));
18711 vec<tree, va_gc> *placement_vec;
18712 vec<tree, va_gc> *init_vec;
18713 tree ret;
18714
18715 if (placement == NULL_TREE)
18716 placement_vec = NULL;
18717 else
18718 {
18719 placement_vec = make_tree_vector ();
18720 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
18721 vec_safe_push (placement_vec, TREE_VALUE (placement));
18722 }
18723
18724 /* If there was an initializer in the original tree, but it
18725 instantiated to an empty list, then we should pass a
18726 non-NULL empty vector to tell build_new that it was an
18727 empty initializer() rather than no initializer. This can
18728 only happen when the initializer is a pack expansion whose
18729 parameter packs are of length zero. */
18730 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
18731 init_vec = NULL;
18732 else
18733 {
18734 init_vec = make_tree_vector ();
18735 if (init == void_node)
18736 gcc_assert (init_vec != NULL);
18737 else
18738 {
18739 for (; init != NULL_TREE; init = TREE_CHAIN (init))
18740 vec_safe_push (init_vec, TREE_VALUE (init));
18741 }
18742 }
18743
18744 /* Avoid passing an enclosing decl to valid_array_size_p. */
18745 in_decl = NULL_TREE;
18746
18747 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
18748 tree op2 = RECUR (TREE_OPERAND (t, 2));
18749 ret = build_new (&placement_vec, op1, op2, &init_vec,
18750 NEW_EXPR_USE_GLOBAL (t),
18751 complain);
18752
18753 if (placement_vec != NULL)
18754 release_tree_vector (placement_vec);
18755 if (init_vec != NULL)
18756 release_tree_vector (init_vec);
18757
18758 RETURN (ret);
18759 }
18760
18761 case DELETE_EXPR:
18762 {
18763 tree op0 = RECUR (TREE_OPERAND (t, 0));
18764 tree op1 = RECUR (TREE_OPERAND (t, 1));
18765 RETURN (delete_sanity (op0, op1,
18766 DELETE_EXPR_USE_VEC (t),
18767 DELETE_EXPR_USE_GLOBAL (t),
18768 complain));
18769 }
18770
18771 case COMPOUND_EXPR:
18772 {
18773 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
18774 complain & ~tf_decltype, in_decl,
18775 /*function_p=*/false,
18776 integral_constant_expression_p);
18777 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
18778 op0,
18779 RECUR (TREE_OPERAND (t, 1)),
18780 complain|decltype_flag));
18781 }
18782
18783 case CALL_EXPR:
18784 {
18785 tree function;
18786 unsigned int nargs, i;
18787 bool qualified_p;
18788 bool koenig_p;
18789 tree ret;
18790
18791 function = CALL_EXPR_FN (t);
18792 /* Internal function with no arguments. */
18793 if (function == NULL_TREE && call_expr_nargs (t) == 0)
18794 RETURN (t);
18795
18796 /* When we parsed the expression, we determined whether or
18797 not Koenig lookup should be performed. */
18798 koenig_p = KOENIG_LOOKUP_P (t);
18799 if (function == NULL_TREE)
18800 {
18801 koenig_p = false;
18802 qualified_p = false;
18803 }
18804 else if (TREE_CODE (function) == SCOPE_REF)
18805 {
18806 qualified_p = true;
18807 function = tsubst_qualified_id (function, args, complain, in_decl,
18808 /*done=*/false,
18809 /*address_p=*/false);
18810 }
18811 else if (koenig_p && identifier_p (function))
18812 {
18813 /* Do nothing; calling tsubst_copy_and_build on an identifier
18814 would incorrectly perform unqualified lookup again.
18815
18816 Note that we can also have an IDENTIFIER_NODE if the earlier
18817 unqualified lookup found a member function; in that case
18818 koenig_p will be false and we do want to do the lookup
18819 again to find the instantiated member function.
18820
18821 FIXME but doing that causes c++/15272, so we need to stop
18822 using IDENTIFIER_NODE in that situation. */
18823 qualified_p = false;
18824 }
18825 else
18826 {
18827 if (TREE_CODE (function) == COMPONENT_REF)
18828 {
18829 tree op = TREE_OPERAND (function, 1);
18830
18831 qualified_p = (TREE_CODE (op) == SCOPE_REF
18832 || (BASELINK_P (op)
18833 && BASELINK_QUALIFIED_P (op)));
18834 }
18835 else
18836 qualified_p = false;
18837
18838 if (TREE_CODE (function) == ADDR_EXPR
18839 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
18840 /* Avoid error about taking the address of a constructor. */
18841 function = TREE_OPERAND (function, 0);
18842
18843 function = tsubst_copy_and_build (function, args, complain,
18844 in_decl,
18845 !qualified_p,
18846 integral_constant_expression_p);
18847
18848 if (BASELINK_P (function))
18849 qualified_p = true;
18850 }
18851
18852 nargs = call_expr_nargs (t);
18853 releasing_vec call_args;
18854 for (i = 0; i < nargs; ++i)
18855 {
18856 tree arg = CALL_EXPR_ARG (t, i);
18857
18858 if (!PACK_EXPANSION_P (arg))
18859 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
18860 else
18861 {
18862 /* Expand the pack expansion and push each entry onto
18863 CALL_ARGS. */
18864 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
18865 if (TREE_CODE (arg) == TREE_VEC)
18866 {
18867 unsigned int len, j;
18868
18869 len = TREE_VEC_LENGTH (arg);
18870 for (j = 0; j < len; ++j)
18871 {
18872 tree value = TREE_VEC_ELT (arg, j);
18873 if (value != NULL_TREE)
18874 value = convert_from_reference (value);
18875 vec_safe_push (call_args, value);
18876 }
18877 }
18878 else
18879 {
18880 /* A partial substitution. Add one entry. */
18881 vec_safe_push (call_args, arg);
18882 }
18883 }
18884 }
18885
18886 /* Stripped-down processing for a call in a thunk. Specifically, in
18887 the thunk template for a generic lambda. */
18888 if (CALL_FROM_THUNK_P (t))
18889 {
18890 /* Now that we've expanded any packs, the number of call args
18891 might be different. */
18892 unsigned int cargs = call_args->length ();
18893 tree thisarg = NULL_TREE;
18894 if (TREE_CODE (function) == COMPONENT_REF)
18895 {
18896 thisarg = TREE_OPERAND (function, 0);
18897 if (TREE_CODE (thisarg) == INDIRECT_REF)
18898 thisarg = TREE_OPERAND (thisarg, 0);
18899 function = TREE_OPERAND (function, 1);
18900 if (TREE_CODE (function) == BASELINK)
18901 function = BASELINK_FUNCTIONS (function);
18902 }
18903 /* We aren't going to do normal overload resolution, so force the
18904 template-id to resolve. */
18905 function = resolve_nondeduced_context (function, complain);
18906 for (unsigned i = 0; i < cargs; ++i)
18907 {
18908 /* In a thunk, pass through args directly, without any
18909 conversions. */
18910 tree arg = (*call_args)[i];
18911 while (TREE_CODE (arg) != PARM_DECL)
18912 arg = TREE_OPERAND (arg, 0);
18913 (*call_args)[i] = arg;
18914 }
18915 if (thisarg)
18916 {
18917 /* If there are no other args, just push 'this'. */
18918 if (cargs == 0)
18919 vec_safe_push (call_args, thisarg);
18920 else
18921 {
18922 /* Otherwise, shift the other args over to make room. */
18923 tree last = (*call_args)[cargs - 1];
18924 vec_safe_push (call_args, last);
18925 for (int i = cargs - 1; i > 0; --i)
18926 (*call_args)[i] = (*call_args)[i - 1];
18927 (*call_args)[0] = thisarg;
18928 }
18929 }
18930 ret = build_call_a (function, call_args->length (),
18931 call_args->address ());
18932 /* The thunk location is not interesting. */
18933 SET_EXPR_LOCATION (ret, UNKNOWN_LOCATION);
18934 CALL_FROM_THUNK_P (ret) = true;
18935 if (CLASS_TYPE_P (TREE_TYPE (ret)))
18936 CALL_EXPR_RETURN_SLOT_OPT (ret) = true;
18937
18938 RETURN (ret);
18939 }
18940
18941 /* We do not perform argument-dependent lookup if normal
18942 lookup finds a non-function, in accordance with the
18943 expected resolution of DR 218. */
18944 if (koenig_p
18945 && ((is_overloaded_fn (function)
18946 /* If lookup found a member function, the Koenig lookup is
18947 not appropriate, even if an unqualified-name was used
18948 to denote the function. */
18949 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
18950 || identifier_p (function))
18951 /* Only do this when substitution turns a dependent call
18952 into a non-dependent call. */
18953 && type_dependent_expression_p_push (t)
18954 && !any_type_dependent_arguments_p (call_args))
18955 function = perform_koenig_lookup (function, call_args, tf_none);
18956
18957 if (function != NULL_TREE
18958 && identifier_p (function)
18959 && !any_type_dependent_arguments_p (call_args))
18960 {
18961 if (koenig_p && (complain & tf_warning_or_error))
18962 {
18963 /* For backwards compatibility and good diagnostics, try
18964 the unqualified lookup again if we aren't in SFINAE
18965 context. */
18966 tree unq = (tsubst_copy_and_build
18967 (function, args, complain, in_decl, true,
18968 integral_constant_expression_p));
18969 if (unq == error_mark_node)
18970 RETURN (error_mark_node);
18971
18972 if (unq != function)
18973 {
18974 /* In a lambda fn, we have to be careful to not
18975 introduce new this captures. Legacy code can't
18976 be using lambdas anyway, so it's ok to be
18977 stricter. */
18978 bool in_lambda = (current_class_type
18979 && LAMBDA_TYPE_P (current_class_type));
18980 char const *const msg
18981 = G_("%qD was not declared in this scope, "
18982 "and no declarations were found by "
18983 "argument-dependent lookup at the point "
18984 "of instantiation");
18985
18986 bool diag = true;
18987 if (in_lambda)
18988 error_at (cp_expr_loc_or_input_loc (t),
18989 msg, function);
18990 else
18991 diag = permerror (cp_expr_loc_or_input_loc (t),
18992 msg, function);
18993 if (diag)
18994 {
18995 tree fn = unq;
18996
18997 if (INDIRECT_REF_P (fn))
18998 fn = TREE_OPERAND (fn, 0);
18999 if (is_overloaded_fn (fn))
19000 fn = get_first_fn (fn);
19001
19002 if (!DECL_P (fn))
19003 /* Can't say anything more. */;
19004 else if (DECL_CLASS_SCOPE_P (fn))
19005 {
19006 location_t loc = cp_expr_loc_or_input_loc (t);
19007 inform (loc,
19008 "declarations in dependent base %qT are "
19009 "not found by unqualified lookup",
19010 DECL_CLASS_CONTEXT (fn));
19011 if (current_class_ptr)
19012 inform (loc,
19013 "use %<this->%D%> instead", function);
19014 else
19015 inform (loc,
19016 "use %<%T::%D%> instead",
19017 current_class_name, function);
19018 }
19019 else
19020 inform (DECL_SOURCE_LOCATION (fn),
19021 "%qD declared here, later in the "
19022 "translation unit", fn);
19023 if (in_lambda)
19024 RETURN (error_mark_node);
19025 }
19026
19027 function = unq;
19028 }
19029 }
19030 if (identifier_p (function))
19031 {
19032 if (complain & tf_error)
19033 unqualified_name_lookup_error (function);
19034 RETURN (error_mark_node);
19035 }
19036 }
19037
19038 /* Remember that there was a reference to this entity. */
19039 if (function != NULL_TREE
19040 && DECL_P (function)
19041 && !mark_used (function, complain) && !(complain & tf_error))
19042 RETURN (error_mark_node);
19043
19044 /* Put back tf_decltype for the actual call. */
19045 complain |= decltype_flag;
19046
19047 if (function == NULL_TREE)
19048 switch (CALL_EXPR_IFN (t))
19049 {
19050 case IFN_LAUNDER:
19051 gcc_assert (nargs == 1);
19052 if (vec_safe_length (call_args) != 1)
19053 {
19054 error_at (cp_expr_loc_or_input_loc (t),
19055 "wrong number of arguments to "
19056 "%<__builtin_launder%>");
19057 ret = error_mark_node;
19058 }
19059 else
19060 ret = finish_builtin_launder (cp_expr_loc_or_input_loc (t),
19061 (*call_args)[0], complain);
19062 break;
19063
19064 case IFN_VEC_CONVERT:
19065 gcc_assert (nargs == 1);
19066 if (vec_safe_length (call_args) != 1)
19067 {
19068 error_at (cp_expr_loc_or_input_loc (t),
19069 "wrong number of arguments to "
19070 "%<__builtin_convertvector%>");
19071 ret = error_mark_node;
19072 break;
19073 }
19074 ret = cp_build_vec_convert ((*call_args)[0], input_location,
19075 tsubst (TREE_TYPE (t), args,
19076 complain, in_decl),
19077 complain);
19078 if (TREE_CODE (ret) == VIEW_CONVERT_EXPR)
19079 RETURN (ret);
19080 break;
19081
19082 default:
19083 /* Unsupported internal function with arguments. */
19084 gcc_unreachable ();
19085 }
19086 else if (TREE_CODE (function) == OFFSET_REF
19087 || TREE_CODE (function) == DOTSTAR_EXPR
19088 || TREE_CODE (function) == MEMBER_REF)
19089 ret = build_offset_ref_call_from_tree (function, &call_args,
19090 complain);
19091 else if (TREE_CODE (function) == COMPONENT_REF)
19092 {
19093 tree instance = TREE_OPERAND (function, 0);
19094 tree fn = TREE_OPERAND (function, 1);
19095
19096 if (processing_template_decl
19097 && (type_dependent_expression_p (instance)
19098 || (!BASELINK_P (fn)
19099 && TREE_CODE (fn) != FIELD_DECL)
19100 || type_dependent_expression_p (fn)
19101 || any_type_dependent_arguments_p (call_args)))
19102 ret = build_min_nt_call_vec (function, call_args);
19103 else if (!BASELINK_P (fn))
19104 ret = finish_call_expr (function, &call_args,
19105 /*disallow_virtual=*/false,
19106 /*koenig_p=*/false,
19107 complain);
19108 else
19109 ret = (build_new_method_call
19110 (instance, fn,
19111 &call_args, NULL_TREE,
19112 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
19113 /*fn_p=*/NULL,
19114 complain));
19115 }
19116 else
19117 ret = finish_call_expr (function, &call_args,
19118 /*disallow_virtual=*/qualified_p,
19119 koenig_p,
19120 complain);
19121
19122 if (ret != error_mark_node)
19123 {
19124 bool op = CALL_EXPR_OPERATOR_SYNTAX (t);
19125 bool ord = CALL_EXPR_ORDERED_ARGS (t);
19126 bool rev = CALL_EXPR_REVERSE_ARGS (t);
19127 if (op || ord || rev)
19128 {
19129 function = extract_call_expr (ret);
19130 CALL_EXPR_OPERATOR_SYNTAX (function) = op;
19131 CALL_EXPR_ORDERED_ARGS (function) = ord;
19132 CALL_EXPR_REVERSE_ARGS (function) = rev;
19133 }
19134 }
19135
19136 RETURN (ret);
19137 }
19138
19139 case COND_EXPR:
19140 {
19141 tree cond = RECUR (TREE_OPERAND (t, 0));
19142 cond = mark_rvalue_use (cond);
19143 tree folded_cond = fold_non_dependent_expr (cond, complain);
19144 tree exp1, exp2;
19145
19146 if (TREE_CODE (folded_cond) == INTEGER_CST)
19147 {
19148 if (integer_zerop (folded_cond))
19149 {
19150 ++c_inhibit_evaluation_warnings;
19151 exp1 = RECUR (TREE_OPERAND (t, 1));
19152 --c_inhibit_evaluation_warnings;
19153 exp2 = RECUR (TREE_OPERAND (t, 2));
19154 }
19155 else
19156 {
19157 exp1 = RECUR (TREE_OPERAND (t, 1));
19158 ++c_inhibit_evaluation_warnings;
19159 exp2 = RECUR (TREE_OPERAND (t, 2));
19160 --c_inhibit_evaluation_warnings;
19161 }
19162 cond = folded_cond;
19163 }
19164 else
19165 {
19166 exp1 = RECUR (TREE_OPERAND (t, 1));
19167 exp2 = RECUR (TREE_OPERAND (t, 2));
19168 }
19169
19170 warning_sentinel s(warn_duplicated_branches);
19171 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
19172 cond, exp1, exp2, complain));
19173 }
19174
19175 case PSEUDO_DTOR_EXPR:
19176 {
19177 tree op0 = RECUR (TREE_OPERAND (t, 0));
19178 tree op1 = RECUR (TREE_OPERAND (t, 1));
19179 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
19180 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
19181 input_location));
19182 }
19183
19184 case TREE_LIST:
19185 {
19186 tree purpose, value, chain;
19187
19188 if (t == void_list_node)
19189 RETURN (t);
19190
19191 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
19192 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
19193 {
19194 /* We have pack expansions, so expand those and
19195 create a new list out of it. */
19196 tree purposevec = NULL_TREE;
19197 tree valuevec = NULL_TREE;
19198 tree chain;
19199 int i, len = -1;
19200
19201 /* Expand the argument expressions. */
19202 if (TREE_PURPOSE (t))
19203 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
19204 complain, in_decl);
19205 if (TREE_VALUE (t))
19206 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
19207 complain, in_decl);
19208
19209 /* Build the rest of the list. */
19210 chain = TREE_CHAIN (t);
19211 if (chain && chain != void_type_node)
19212 chain = RECUR (chain);
19213
19214 /* Determine the number of arguments. */
19215 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
19216 {
19217 len = TREE_VEC_LENGTH (purposevec);
19218 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
19219 }
19220 else if (TREE_CODE (valuevec) == TREE_VEC)
19221 len = TREE_VEC_LENGTH (valuevec);
19222 else
19223 {
19224 /* Since we only performed a partial substitution into
19225 the argument pack, we only RETURN (a single list
19226 node. */
19227 if (purposevec == TREE_PURPOSE (t)
19228 && valuevec == TREE_VALUE (t)
19229 && chain == TREE_CHAIN (t))
19230 RETURN (t);
19231
19232 RETURN (tree_cons (purposevec, valuevec, chain));
19233 }
19234
19235 /* Convert the argument vectors into a TREE_LIST */
19236 i = len;
19237 while (i > 0)
19238 {
19239 /* Grab the Ith values. */
19240 i--;
19241 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
19242 : NULL_TREE;
19243 value
19244 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
19245 : NULL_TREE;
19246
19247 /* Build the list (backwards). */
19248 chain = tree_cons (purpose, value, chain);
19249 }
19250
19251 RETURN (chain);
19252 }
19253
19254 purpose = TREE_PURPOSE (t);
19255 if (purpose)
19256 purpose = RECUR (purpose);
19257 value = TREE_VALUE (t);
19258 if (value)
19259 value = RECUR (value);
19260 chain = TREE_CHAIN (t);
19261 if (chain && chain != void_type_node)
19262 chain = RECUR (chain);
19263 if (purpose == TREE_PURPOSE (t)
19264 && value == TREE_VALUE (t)
19265 && chain == TREE_CHAIN (t))
19266 RETURN (t);
19267 RETURN (tree_cons (purpose, value, chain));
19268 }
19269
19270 case COMPONENT_REF:
19271 {
19272 tree object;
19273 tree object_type;
19274 tree member;
19275 tree r;
19276
19277 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
19278 args, complain, in_decl);
19279 /* Remember that there was a reference to this entity. */
19280 if (DECL_P (object)
19281 && !mark_used (object, complain) && !(complain & tf_error))
19282 RETURN (error_mark_node);
19283 object_type = TREE_TYPE (object);
19284
19285 member = TREE_OPERAND (t, 1);
19286 if (BASELINK_P (member))
19287 member = tsubst_baselink (member,
19288 non_reference (TREE_TYPE (object)),
19289 args, complain, in_decl);
19290 else
19291 member = tsubst_copy (member, args, complain, in_decl);
19292 if (member == error_mark_node)
19293 RETURN (error_mark_node);
19294
19295 if (TREE_CODE (member) == FIELD_DECL)
19296 {
19297 r = finish_non_static_data_member (member, object, NULL_TREE);
19298 if (TREE_CODE (r) == COMPONENT_REF)
19299 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
19300 RETURN (r);
19301 }
19302 else if (type_dependent_expression_p (object))
19303 /* We can't do much here. */;
19304 else if (!CLASS_TYPE_P (object_type))
19305 {
19306 if (scalarish_type_p (object_type))
19307 {
19308 tree s = NULL_TREE;
19309 tree dtor = member;
19310
19311 if (TREE_CODE (dtor) == SCOPE_REF)
19312 {
19313 s = TREE_OPERAND (dtor, 0);
19314 dtor = TREE_OPERAND (dtor, 1);
19315 }
19316 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
19317 {
19318 dtor = TREE_OPERAND (dtor, 0);
19319 if (TYPE_P (dtor))
19320 RETURN (finish_pseudo_destructor_expr
19321 (object, s, dtor, input_location));
19322 }
19323 }
19324 }
19325 else if (TREE_CODE (member) == SCOPE_REF
19326 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
19327 {
19328 /* Lookup the template functions now that we know what the
19329 scope is. */
19330 tree scope = TREE_OPERAND (member, 0);
19331 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
19332 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
19333 member = lookup_qualified_name (scope, tmpl,
19334 /*is_type_p=*/false,
19335 /*complain=*/false);
19336 if (BASELINK_P (member))
19337 {
19338 BASELINK_FUNCTIONS (member)
19339 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
19340 args);
19341 member = (adjust_result_of_qualified_name_lookup
19342 (member, BINFO_TYPE (BASELINK_BINFO (member)),
19343 object_type));
19344 }
19345 else
19346 {
19347 qualified_name_lookup_error (scope, tmpl, member,
19348 input_location);
19349 RETURN (error_mark_node);
19350 }
19351 }
19352 else if (TREE_CODE (member) == SCOPE_REF
19353 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
19354 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
19355 {
19356 if (complain & tf_error)
19357 {
19358 if (TYPE_P (TREE_OPERAND (member, 0)))
19359 error ("%qT is not a class or namespace",
19360 TREE_OPERAND (member, 0));
19361 else
19362 error ("%qD is not a class or namespace",
19363 TREE_OPERAND (member, 0));
19364 }
19365 RETURN (error_mark_node);
19366 }
19367
19368 r = finish_class_member_access_expr (object, member,
19369 /*template_p=*/false,
19370 complain);
19371 if (TREE_CODE (r) == COMPONENT_REF)
19372 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
19373 RETURN (r);
19374 }
19375
19376 case THROW_EXPR:
19377 RETURN (build_throw
19378 (RECUR (TREE_OPERAND (t, 0))));
19379
19380 case CONSTRUCTOR:
19381 {
19382 vec<constructor_elt, va_gc> *n;
19383 constructor_elt *ce;
19384 unsigned HOST_WIDE_INT idx;
19385 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
19386 bool process_index_p;
19387 int newlen;
19388 bool need_copy_p = false;
19389 tree r;
19390
19391 if (type == error_mark_node)
19392 RETURN (error_mark_node);
19393
19394 /* We do not want to process the index of aggregate
19395 initializers as they are identifier nodes which will be
19396 looked up by digest_init. */
19397 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
19398
19399 if (null_member_pointer_value_p (t))
19400 {
19401 gcc_assert (same_type_p (type, TREE_TYPE (t)));
19402 RETURN (t);
19403 }
19404
19405 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
19406 newlen = vec_safe_length (n);
19407 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
19408 {
19409 if (ce->index && process_index_p
19410 /* An identifier index is looked up in the type
19411 being initialized, not the current scope. */
19412 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
19413 ce->index = RECUR (ce->index);
19414
19415 if (PACK_EXPANSION_P (ce->value))
19416 {
19417 /* Substitute into the pack expansion. */
19418 ce->value = tsubst_pack_expansion (ce->value, args, complain,
19419 in_decl);
19420
19421 if (ce->value == error_mark_node
19422 || PACK_EXPANSION_P (ce->value))
19423 ;
19424 else if (TREE_VEC_LENGTH (ce->value) == 1)
19425 /* Just move the argument into place. */
19426 ce->value = TREE_VEC_ELT (ce->value, 0);
19427 else
19428 {
19429 /* Update the length of the final CONSTRUCTOR
19430 arguments vector, and note that we will need to
19431 copy.*/
19432 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
19433 need_copy_p = true;
19434 }
19435 }
19436 else
19437 ce->value = RECUR (ce->value);
19438 }
19439
19440 if (need_copy_p)
19441 {
19442 vec<constructor_elt, va_gc> *old_n = n;
19443
19444 vec_alloc (n, newlen);
19445 FOR_EACH_VEC_ELT (*old_n, idx, ce)
19446 {
19447 if (TREE_CODE (ce->value) == TREE_VEC)
19448 {
19449 int i, len = TREE_VEC_LENGTH (ce->value);
19450 for (i = 0; i < len; ++i)
19451 CONSTRUCTOR_APPEND_ELT (n, 0,
19452 TREE_VEC_ELT (ce->value, i));
19453 }
19454 else
19455 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
19456 }
19457 }
19458
19459 r = build_constructor (init_list_type_node, n);
19460 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
19461 CONSTRUCTOR_IS_DESIGNATED_INIT (r)
19462 = CONSTRUCTOR_IS_DESIGNATED_INIT (t);
19463
19464 if (TREE_HAS_CONSTRUCTOR (t))
19465 {
19466 fcl_t cl = fcl_functional;
19467 if (CONSTRUCTOR_C99_COMPOUND_LITERAL (t))
19468 cl = fcl_c99;
19469 RETURN (finish_compound_literal (type, r, complain, cl));
19470 }
19471
19472 TREE_TYPE (r) = type;
19473 RETURN (r);
19474 }
19475
19476 case TYPEID_EXPR:
19477 {
19478 tree operand_0 = TREE_OPERAND (t, 0);
19479 if (TYPE_P (operand_0))
19480 {
19481 operand_0 = tsubst (operand_0, args, complain, in_decl);
19482 RETURN (get_typeid (operand_0, complain));
19483 }
19484 else
19485 {
19486 operand_0 = RECUR (operand_0);
19487 RETURN (build_typeid (operand_0, complain));
19488 }
19489 }
19490
19491 case VAR_DECL:
19492 if (!args)
19493 RETURN (t);
19494 /* Fall through */
19495
19496 case PARM_DECL:
19497 {
19498 tree r = tsubst_copy (t, args, complain, in_decl);
19499 /* ??? We're doing a subset of finish_id_expression here. */
19500 if (tree wrap = maybe_get_tls_wrapper_call (r))
19501 /* Replace an evaluated use of the thread_local variable with
19502 a call to its wrapper. */
19503 r = wrap;
19504 else if (outer_automatic_var_p (r))
19505 r = process_outer_var_ref (r, complain);
19506
19507 if (!TYPE_REF_P (TREE_TYPE (t)))
19508 /* If the original type was a reference, we'll be wrapped in
19509 the appropriate INDIRECT_REF. */
19510 r = convert_from_reference (r);
19511 RETURN (r);
19512 }
19513
19514 case VA_ARG_EXPR:
19515 {
19516 tree op0 = RECUR (TREE_OPERAND (t, 0));
19517 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
19518 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
19519 }
19520
19521 case OFFSETOF_EXPR:
19522 {
19523 tree object_ptr
19524 = tsubst_copy_and_build (TREE_OPERAND (t, 1), args, complain,
19525 in_decl, /*function_p=*/false,
19526 /*integral_constant_expression_p=*/false);
19527 RETURN (finish_offsetof (object_ptr,
19528 RECUR (TREE_OPERAND (t, 0)),
19529 EXPR_LOCATION (t)));
19530 }
19531
19532 case ADDRESSOF_EXPR:
19533 RETURN (cp_build_addressof (EXPR_LOCATION (t),
19534 RECUR (TREE_OPERAND (t, 0)), complain));
19535
19536 case TRAIT_EXPR:
19537 {
19538 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
19539 complain, in_decl);
19540
19541 tree type2 = TRAIT_EXPR_TYPE2 (t);
19542 if (type2 && TREE_CODE (type2) == TREE_LIST)
19543 type2 = RECUR (type2);
19544 else if (type2)
19545 type2 = tsubst (type2, args, complain, in_decl);
19546
19547 RETURN (finish_trait_expr (TRAIT_EXPR_LOCATION (t),
19548 TRAIT_EXPR_KIND (t), type1, type2));
19549 }
19550
19551 case STMT_EXPR:
19552 {
19553 tree old_stmt_expr = cur_stmt_expr;
19554 tree stmt_expr = begin_stmt_expr ();
19555
19556 cur_stmt_expr = stmt_expr;
19557 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
19558 integral_constant_expression_p);
19559 stmt_expr = finish_stmt_expr (stmt_expr, false);
19560 cur_stmt_expr = old_stmt_expr;
19561
19562 /* If the resulting list of expression statement is empty,
19563 fold it further into void_node. */
19564 if (empty_expr_stmt_p (stmt_expr))
19565 stmt_expr = void_node;
19566
19567 RETURN (stmt_expr);
19568 }
19569
19570 case LAMBDA_EXPR:
19571 {
19572 if (complain & tf_partial)
19573 {
19574 /* We don't have a full set of template arguments yet; don't touch
19575 the lambda at all. */
19576 gcc_assert (processing_template_decl);
19577 return t;
19578 }
19579 tree r = tsubst_lambda_expr (t, args, complain, in_decl);
19580
19581 RETURN (build_lambda_object (r));
19582 }
19583
19584 case TARGET_EXPR:
19585 /* We can get here for a constant initializer of non-dependent type.
19586 FIXME stop folding in cp_parser_initializer_clause. */
19587 {
19588 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
19589 complain);
19590 RETURN (r);
19591 }
19592
19593 case TRANSACTION_EXPR:
19594 RETURN (tsubst_expr(t, args, complain, in_decl,
19595 integral_constant_expression_p));
19596
19597 case PAREN_EXPR:
19598 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
19599
19600 case VEC_PERM_EXPR:
19601 {
19602 tree op0 = RECUR (TREE_OPERAND (t, 0));
19603 tree op1 = RECUR (TREE_OPERAND (t, 1));
19604 tree op2 = RECUR (TREE_OPERAND (t, 2));
19605 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
19606 complain));
19607 }
19608
19609 case REQUIRES_EXPR:
19610 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
19611
19612 case RANGE_EXPR:
19613 /* No need to substitute further, a RANGE_EXPR will always be built
19614 with constant operands. */
19615 RETURN (t);
19616
19617 case NON_LVALUE_EXPR:
19618 case VIEW_CONVERT_EXPR:
19619 if (location_wrapper_p (t))
19620 /* We need to do this here as well as in tsubst_copy so we get the
19621 other tsubst_copy_and_build semantics for a PARM_DECL operand. */
19622 RETURN (maybe_wrap_with_location (RECUR (TREE_OPERAND (t, 0)),
19623 EXPR_LOCATION (t)));
19624 /* fallthrough. */
19625
19626 default:
19627 /* Handle Objective-C++ constructs, if appropriate. */
19628 {
19629 tree subst
19630 = objcp_tsubst_copy_and_build (t, args, complain,
19631 in_decl, /*function_p=*/false);
19632 if (subst)
19633 RETURN (subst);
19634 }
19635 RETURN (tsubst_copy (t, args, complain, in_decl));
19636 }
19637
19638 #undef RECUR
19639 #undef RETURN
19640 out:
19641 input_location = loc;
19642 return retval;
19643 }
19644
19645 /* Verify that the instantiated ARGS are valid. For type arguments,
19646 make sure that the type's linkage is ok. For non-type arguments,
19647 make sure they are constants if they are integral or enumerations.
19648 Emit an error under control of COMPLAIN, and return TRUE on error. */
19649
19650 static bool
19651 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
19652 {
19653 if (dependent_template_arg_p (t))
19654 return false;
19655 if (ARGUMENT_PACK_P (t))
19656 {
19657 tree vec = ARGUMENT_PACK_ARGS (t);
19658 int len = TREE_VEC_LENGTH (vec);
19659 bool result = false;
19660 int i;
19661
19662 for (i = 0; i < len; ++i)
19663 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
19664 result = true;
19665 return result;
19666 }
19667 else if (TYPE_P (t))
19668 {
19669 /* [basic.link]: A name with no linkage (notably, the name
19670 of a class or enumeration declared in a local scope)
19671 shall not be used to declare an entity with linkage.
19672 This implies that names with no linkage cannot be used as
19673 template arguments
19674
19675 DR 757 relaxes this restriction for C++0x. */
19676 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
19677 : no_linkage_check (t, /*relaxed_p=*/false));
19678
19679 if (nt)
19680 {
19681 /* DR 488 makes use of a type with no linkage cause
19682 type deduction to fail. */
19683 if (complain & tf_error)
19684 {
19685 if (TYPE_UNNAMED_P (nt))
19686 error ("%qT is/uses unnamed type", t);
19687 else
19688 error ("template argument for %qD uses local type %qT",
19689 tmpl, t);
19690 }
19691 return true;
19692 }
19693 /* In order to avoid all sorts of complications, we do not
19694 allow variably-modified types as template arguments. */
19695 else if (variably_modified_type_p (t, NULL_TREE))
19696 {
19697 if (complain & tf_error)
19698 error ("%qT is a variably modified type", t);
19699 return true;
19700 }
19701 }
19702 /* Class template and alias template arguments should be OK. */
19703 else if (DECL_TYPE_TEMPLATE_P (t))
19704 ;
19705 /* A non-type argument of integral or enumerated type must be a
19706 constant. */
19707 else if (TREE_TYPE (t)
19708 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
19709 && !REFERENCE_REF_P (t)
19710 && !TREE_CONSTANT (t))
19711 {
19712 if (complain & tf_error)
19713 error ("integral expression %qE is not constant", t);
19714 return true;
19715 }
19716 return false;
19717 }
19718
19719 static bool
19720 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
19721 {
19722 int ix, len = DECL_NTPARMS (tmpl);
19723 bool result = false;
19724
19725 for (ix = 0; ix != len; ix++)
19726 {
19727 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
19728 result = true;
19729 }
19730 if (result && (complain & tf_error))
19731 error (" trying to instantiate %qD", tmpl);
19732 return result;
19733 }
19734
19735 /* We're out of SFINAE context now, so generate diagnostics for the access
19736 errors we saw earlier when instantiating D from TMPL and ARGS. */
19737
19738 static void
19739 recheck_decl_substitution (tree d, tree tmpl, tree args)
19740 {
19741 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
19742 tree type = TREE_TYPE (pattern);
19743 location_t loc = input_location;
19744
19745 push_access_scope (d);
19746 push_deferring_access_checks (dk_no_deferred);
19747 input_location = DECL_SOURCE_LOCATION (pattern);
19748 tsubst (type, args, tf_warning_or_error, d);
19749 input_location = loc;
19750 pop_deferring_access_checks ();
19751 pop_access_scope (d);
19752 }
19753
19754 /* Instantiate the indicated variable, function, or alias template TMPL with
19755 the template arguments in TARG_PTR. */
19756
19757 static tree
19758 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
19759 {
19760 tree targ_ptr = orig_args;
19761 tree fndecl;
19762 tree gen_tmpl;
19763 tree spec;
19764 bool access_ok = true;
19765
19766 if (tmpl == error_mark_node)
19767 return error_mark_node;
19768
19769 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
19770
19771 /* If this function is a clone, handle it specially. */
19772 if (DECL_CLONED_FUNCTION_P (tmpl))
19773 {
19774 tree spec;
19775 tree clone;
19776
19777 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
19778 DECL_CLONED_FUNCTION. */
19779 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
19780 targ_ptr, complain);
19781 if (spec == error_mark_node)
19782 return error_mark_node;
19783
19784 /* Look for the clone. */
19785 FOR_EACH_CLONE (clone, spec)
19786 if (DECL_NAME (clone) == DECL_NAME (tmpl))
19787 return clone;
19788 /* We should always have found the clone by now. */
19789 gcc_unreachable ();
19790 return NULL_TREE;
19791 }
19792
19793 if (targ_ptr == error_mark_node)
19794 return error_mark_node;
19795
19796 /* Check to see if we already have this specialization. */
19797 gen_tmpl = most_general_template (tmpl);
19798 if (TMPL_ARGS_DEPTH (targ_ptr)
19799 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl)))
19800 /* targ_ptr only has the innermost template args, so add the outer ones
19801 from tmpl, which could be either a partial instantiation or gen_tmpl (in
19802 the case of a non-dependent call within a template definition). */
19803 targ_ptr = (add_outermost_template_args
19804 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (tmpl)),
19805 targ_ptr));
19806
19807 /* It would be nice to avoid hashing here and then again in tsubst_decl,
19808 but it doesn't seem to be on the hot path. */
19809 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
19810
19811 gcc_assert (tmpl == gen_tmpl
19812 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
19813 == spec)
19814 || fndecl == NULL_TREE);
19815
19816 if (spec != NULL_TREE)
19817 {
19818 if (FNDECL_HAS_ACCESS_ERRORS (spec))
19819 {
19820 if (complain & tf_error)
19821 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
19822 return error_mark_node;
19823 }
19824 return spec;
19825 }
19826
19827 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
19828 complain))
19829 return error_mark_node;
19830
19831 /* We are building a FUNCTION_DECL, during which the access of its
19832 parameters and return types have to be checked. However this
19833 FUNCTION_DECL which is the desired context for access checking
19834 is not built yet. We solve this chicken-and-egg problem by
19835 deferring all checks until we have the FUNCTION_DECL. */
19836 push_deferring_access_checks (dk_deferred);
19837
19838 /* Instantiation of the function happens in the context of the function
19839 template, not the context of the overload resolution we're doing. */
19840 push_to_top_level ();
19841 /* If there are dependent arguments, e.g. because we're doing partial
19842 ordering, make sure processing_template_decl stays set. */
19843 if (uses_template_parms (targ_ptr))
19844 ++processing_template_decl;
19845 if (DECL_CLASS_SCOPE_P (gen_tmpl))
19846 {
19847 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
19848 complain, gen_tmpl, true);
19849 push_nested_class (ctx);
19850 }
19851
19852 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
19853
19854 fndecl = NULL_TREE;
19855 if (VAR_P (pattern))
19856 {
19857 /* We need to determine if we're using a partial or explicit
19858 specialization now, because the type of the variable could be
19859 different. */
19860 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
19861 tree elt = most_specialized_partial_spec (tid, complain);
19862 if (elt == error_mark_node)
19863 pattern = error_mark_node;
19864 else if (elt)
19865 {
19866 tree partial_tmpl = TREE_VALUE (elt);
19867 tree partial_args = TREE_PURPOSE (elt);
19868 tree partial_pat = DECL_TEMPLATE_RESULT (partial_tmpl);
19869 fndecl = tsubst (partial_pat, partial_args, complain, gen_tmpl);
19870 }
19871 }
19872
19873 /* Substitute template parameters to obtain the specialization. */
19874 if (fndecl == NULL_TREE)
19875 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
19876 if (DECL_CLASS_SCOPE_P (gen_tmpl))
19877 pop_nested_class ();
19878 pop_from_top_level ();
19879
19880 if (fndecl == error_mark_node)
19881 {
19882 pop_deferring_access_checks ();
19883 return error_mark_node;
19884 }
19885
19886 /* The DECL_TI_TEMPLATE should always be the immediate parent
19887 template, not the most general template. */
19888 DECL_TI_TEMPLATE (fndecl) = tmpl;
19889 DECL_TI_ARGS (fndecl) = targ_ptr;
19890
19891 /* Now we know the specialization, compute access previously
19892 deferred. Do no access control for inheriting constructors,
19893 as we already checked access for the inherited constructor. */
19894 if (!(flag_new_inheriting_ctors
19895 && DECL_INHERITED_CTOR (fndecl)))
19896 {
19897 push_access_scope (fndecl);
19898 if (!perform_deferred_access_checks (complain))
19899 access_ok = false;
19900 pop_access_scope (fndecl);
19901 }
19902 pop_deferring_access_checks ();
19903
19904 /* If we've just instantiated the main entry point for a function,
19905 instantiate all the alternate entry points as well. We do this
19906 by cloning the instantiation of the main entry point, not by
19907 instantiating the template clones. */
19908 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
19909 clone_function_decl (fndecl, /*update_methods=*/false);
19910
19911 if (!access_ok)
19912 {
19913 if (!(complain & tf_error))
19914 {
19915 /* Remember to reinstantiate when we're out of SFINAE so the user
19916 can see the errors. */
19917 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
19918 }
19919 return error_mark_node;
19920 }
19921 return fndecl;
19922 }
19923
19924 /* Wrapper for instantiate_template_1. */
19925
19926 tree
19927 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
19928 {
19929 tree ret;
19930 timevar_push (TV_TEMPLATE_INST);
19931 ret = instantiate_template_1 (tmpl, orig_args, complain);
19932 timevar_pop (TV_TEMPLATE_INST);
19933 return ret;
19934 }
19935
19936 /* Instantiate the alias template TMPL with ARGS. Also push a template
19937 instantiation level, which instantiate_template doesn't do because
19938 functions and variables have sufficient context established by the
19939 callers. */
19940
19941 static tree
19942 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
19943 {
19944 if (tmpl == error_mark_node || args == error_mark_node)
19945 return error_mark_node;
19946 if (!push_tinst_level (tmpl, args))
19947 return error_mark_node;
19948
19949 args =
19950 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
19951 args, tmpl, complain,
19952 /*require_all_args=*/true,
19953 /*use_default_args=*/true);
19954
19955 tree r = instantiate_template (tmpl, args, complain);
19956 pop_tinst_level ();
19957
19958 return r;
19959 }
19960
19961 /* PARM is a template parameter pack for FN. Returns true iff
19962 PARM is used in a deducible way in the argument list of FN. */
19963
19964 static bool
19965 pack_deducible_p (tree parm, tree fn)
19966 {
19967 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
19968 for (; t; t = TREE_CHAIN (t))
19969 {
19970 tree type = TREE_VALUE (t);
19971 tree packs;
19972 if (!PACK_EXPANSION_P (type))
19973 continue;
19974 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
19975 packs; packs = TREE_CHAIN (packs))
19976 if (template_args_equal (TREE_VALUE (packs), parm))
19977 {
19978 /* The template parameter pack is used in a function parameter
19979 pack. If this is the end of the parameter list, the
19980 template parameter pack is deducible. */
19981 if (TREE_CHAIN (t) == void_list_node)
19982 return true;
19983 else
19984 /* Otherwise, not. Well, it could be deduced from
19985 a non-pack parameter, but doing so would end up with
19986 a deduction mismatch, so don't bother. */
19987 return false;
19988 }
19989 }
19990 /* The template parameter pack isn't used in any function parameter
19991 packs, but it might be used deeper, e.g. tuple<Args...>. */
19992 return true;
19993 }
19994
19995 /* Subroutine of fn_type_unification: check non-dependent parms for
19996 convertibility. */
19997
19998 static int
19999 check_non_deducible_conversions (tree parms, const tree *args, unsigned nargs,
20000 tree fn, unification_kind_t strict, int flags,
20001 struct conversion **convs, bool explain_p)
20002 {
20003 /* Non-constructor methods need to leave a conversion for 'this', which
20004 isn't included in nargs here. */
20005 unsigned offset = (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
20006 && !DECL_CONSTRUCTOR_P (fn));
20007
20008 for (unsigned ia = 0;
20009 parms && parms != void_list_node && ia < nargs; )
20010 {
20011 tree parm = TREE_VALUE (parms);
20012
20013 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
20014 && (!TREE_CHAIN (parms)
20015 || TREE_CHAIN (parms) == void_list_node))
20016 /* For a function parameter pack that occurs at the end of the
20017 parameter-declaration-list, the type A of each remaining
20018 argument of the call is compared with the type P of the
20019 declarator-id of the function parameter pack. */
20020 break;
20021
20022 parms = TREE_CHAIN (parms);
20023
20024 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
20025 /* For a function parameter pack that does not occur at the
20026 end of the parameter-declaration-list, the type of the
20027 parameter pack is a non-deduced context. */
20028 continue;
20029
20030 if (!uses_template_parms (parm))
20031 {
20032 tree arg = args[ia];
20033 conversion **conv_p = convs ? &convs[ia+offset] : NULL;
20034 int lflags = conv_flags (ia, nargs, fn, arg, flags);
20035
20036 if (check_non_deducible_conversion (parm, arg, strict, lflags,
20037 conv_p, explain_p))
20038 return 1;
20039 }
20040
20041 ++ia;
20042 }
20043
20044 return 0;
20045 }
20046
20047 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
20048 NARGS elements of the arguments that are being used when calling
20049 it. TARGS is a vector into which the deduced template arguments
20050 are placed.
20051
20052 Returns either a FUNCTION_DECL for the matching specialization of FN or
20053 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
20054 true, diagnostics will be printed to explain why it failed.
20055
20056 If FN is a conversion operator, or we are trying to produce a specific
20057 specialization, RETURN_TYPE is the return type desired.
20058
20059 The EXPLICIT_TARGS are explicit template arguments provided via a
20060 template-id.
20061
20062 The parameter STRICT is one of:
20063
20064 DEDUCE_CALL:
20065 We are deducing arguments for a function call, as in
20066 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
20067 deducing arguments for a call to the result of a conversion
20068 function template, as in [over.call.object].
20069
20070 DEDUCE_CONV:
20071 We are deducing arguments for a conversion function, as in
20072 [temp.deduct.conv].
20073
20074 DEDUCE_EXACT:
20075 We are deducing arguments when doing an explicit instantiation
20076 as in [temp.explicit], when determining an explicit specialization
20077 as in [temp.expl.spec], or when taking the address of a function
20078 template, as in [temp.deduct.funcaddr]. */
20079
20080 tree
20081 fn_type_unification (tree fn,
20082 tree explicit_targs,
20083 tree targs,
20084 const tree *args,
20085 unsigned int nargs,
20086 tree return_type,
20087 unification_kind_t strict,
20088 int flags,
20089 struct conversion **convs,
20090 bool explain_p,
20091 bool decltype_p)
20092 {
20093 tree parms;
20094 tree fntype;
20095 tree decl = NULL_TREE;
20096 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
20097 bool ok;
20098 static int deduction_depth;
20099 /* type_unification_real will pass back any access checks from default
20100 template argument substitution. */
20101 vec<deferred_access_check, va_gc> *checks = NULL;
20102 /* We don't have all the template args yet. */
20103 bool incomplete = true;
20104
20105 tree orig_fn = fn;
20106 if (flag_new_inheriting_ctors)
20107 fn = strip_inheriting_ctors (fn);
20108
20109 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
20110 tree r = error_mark_node;
20111
20112 tree full_targs = targs;
20113 if (TMPL_ARGS_DEPTH (targs)
20114 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (fn)))
20115 full_targs = (add_outermost_template_args
20116 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (fn)),
20117 targs));
20118
20119 if (decltype_p)
20120 complain |= tf_decltype;
20121
20122 /* In C++0x, it's possible to have a function template whose type depends
20123 on itself recursively. This is most obvious with decltype, but can also
20124 occur with enumeration scope (c++/48969). So we need to catch infinite
20125 recursion and reject the substitution at deduction time; this function
20126 will return error_mark_node for any repeated substitution.
20127
20128 This also catches excessive recursion such as when f<N> depends on
20129 f<N-1> across all integers, and returns error_mark_node for all the
20130 substitutions back up to the initial one.
20131
20132 This is, of course, not reentrant. */
20133 if (excessive_deduction_depth)
20134 return error_mark_node;
20135 ++deduction_depth;
20136
20137 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
20138
20139 fntype = TREE_TYPE (fn);
20140 if (explicit_targs)
20141 {
20142 /* [temp.deduct]
20143
20144 The specified template arguments must match the template
20145 parameters in kind (i.e., type, nontype, template), and there
20146 must not be more arguments than there are parameters;
20147 otherwise type deduction fails.
20148
20149 Nontype arguments must match the types of the corresponding
20150 nontype template parameters, or must be convertible to the
20151 types of the corresponding nontype parameters as specified in
20152 _temp.arg.nontype_, otherwise type deduction fails.
20153
20154 All references in the function type of the function template
20155 to the corresponding template parameters are replaced by the
20156 specified template argument values. If a substitution in a
20157 template parameter or in the function type of the function
20158 template results in an invalid type, type deduction fails. */
20159 int i, len = TREE_VEC_LENGTH (tparms);
20160 location_t loc = input_location;
20161 incomplete = false;
20162
20163 if (explicit_targs == error_mark_node)
20164 goto fail;
20165
20166 if (TMPL_ARGS_DEPTH (explicit_targs)
20167 < TMPL_ARGS_DEPTH (full_targs))
20168 explicit_targs = add_outermost_template_args (full_targs,
20169 explicit_targs);
20170
20171 /* Adjust any explicit template arguments before entering the
20172 substitution context. */
20173 explicit_targs
20174 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
20175 complain|tf_partial,
20176 /*require_all_args=*/false,
20177 /*use_default_args=*/false));
20178 if (explicit_targs == error_mark_node)
20179 goto fail;
20180
20181 /* Substitute the explicit args into the function type. This is
20182 necessary so that, for instance, explicitly declared function
20183 arguments can match null pointed constants. If we were given
20184 an incomplete set of explicit args, we must not do semantic
20185 processing during substitution as we could create partial
20186 instantiations. */
20187 for (i = 0; i < len; i++)
20188 {
20189 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
20190 bool parameter_pack = false;
20191 tree targ = TREE_VEC_ELT (explicit_targs, i);
20192
20193 /* Dig out the actual parm. */
20194 if (TREE_CODE (parm) == TYPE_DECL
20195 || TREE_CODE (parm) == TEMPLATE_DECL)
20196 {
20197 parm = TREE_TYPE (parm);
20198 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
20199 }
20200 else if (TREE_CODE (parm) == PARM_DECL)
20201 {
20202 parm = DECL_INITIAL (parm);
20203 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
20204 }
20205
20206 if (targ == NULL_TREE)
20207 /* No explicit argument for this template parameter. */
20208 incomplete = true;
20209 else if (parameter_pack && pack_deducible_p (parm, fn))
20210 {
20211 /* Mark the argument pack as "incomplete". We could
20212 still deduce more arguments during unification.
20213 We remove this mark in type_unification_real. */
20214 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
20215 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
20216 = ARGUMENT_PACK_ARGS (targ);
20217
20218 /* We have some incomplete argument packs. */
20219 incomplete = true;
20220 }
20221 }
20222
20223 if (incomplete)
20224 {
20225 if (!push_tinst_level (fn, explicit_targs))
20226 {
20227 excessive_deduction_depth = true;
20228 goto fail;
20229 }
20230 ++processing_template_decl;
20231 input_location = DECL_SOURCE_LOCATION (fn);
20232 /* Ignore any access checks; we'll see them again in
20233 instantiate_template and they might have the wrong
20234 access path at this point. */
20235 push_deferring_access_checks (dk_deferred);
20236 tsubst_flags_t ecomplain = complain | tf_partial | tf_fndecl_type;
20237 fntype = tsubst (TREE_TYPE (fn), explicit_targs, ecomplain, NULL_TREE);
20238 pop_deferring_access_checks ();
20239 input_location = loc;
20240 --processing_template_decl;
20241 pop_tinst_level ();
20242
20243 if (fntype == error_mark_node)
20244 goto fail;
20245 }
20246
20247 /* Place the explicitly specified arguments in TARGS. */
20248 explicit_targs = INNERMOST_TEMPLATE_ARGS (explicit_targs);
20249 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
20250 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
20251 if (!incomplete && CHECKING_P
20252 && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
20253 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
20254 (targs, NUM_TMPL_ARGS (explicit_targs));
20255 }
20256
20257 if (return_type && strict != DEDUCE_CALL)
20258 {
20259 tree *new_args = XALLOCAVEC (tree, nargs + 1);
20260 new_args[0] = return_type;
20261 memcpy (new_args + 1, args, nargs * sizeof (tree));
20262 args = new_args;
20263 ++nargs;
20264 }
20265
20266 if (!incomplete)
20267 goto deduced;
20268
20269 /* Never do unification on the 'this' parameter. */
20270 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
20271
20272 if (return_type && strict == DEDUCE_CALL)
20273 {
20274 /* We're deducing for a call to the result of a template conversion
20275 function. The parms we really want are in return_type. */
20276 if (INDIRECT_TYPE_P (return_type))
20277 return_type = TREE_TYPE (return_type);
20278 parms = TYPE_ARG_TYPES (return_type);
20279 }
20280 else if (return_type)
20281 {
20282 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
20283 }
20284
20285 /* We allow incomplete unification without an error message here
20286 because the standard doesn't seem to explicitly prohibit it. Our
20287 callers must be ready to deal with unification failures in any
20288 event. */
20289
20290 /* If we aren't explaining yet, push tinst context so we can see where
20291 any errors (e.g. from class instantiations triggered by instantiation
20292 of default template arguments) come from. If we are explaining, this
20293 context is redundant. */
20294 if (!explain_p && !push_tinst_level (fn, targs))
20295 {
20296 excessive_deduction_depth = true;
20297 goto fail;
20298 }
20299
20300 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
20301 full_targs, parms, args, nargs, /*subr=*/0,
20302 strict, &checks, explain_p);
20303 if (!explain_p)
20304 pop_tinst_level ();
20305 if (!ok)
20306 goto fail;
20307
20308 /* Now that we have bindings for all of the template arguments,
20309 ensure that the arguments deduced for the template template
20310 parameters have compatible template parameter lists. We cannot
20311 check this property before we have deduced all template
20312 arguments, because the template parameter types of a template
20313 template parameter might depend on prior template parameters
20314 deduced after the template template parameter. The following
20315 ill-formed example illustrates this issue:
20316
20317 template<typename T, template<T> class C> void f(C<5>, T);
20318
20319 template<int N> struct X {};
20320
20321 void g() {
20322 f(X<5>(), 5l); // error: template argument deduction fails
20323 }
20324
20325 The template parameter list of 'C' depends on the template type
20326 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
20327 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
20328 time that we deduce 'C'. */
20329 if (!template_template_parm_bindings_ok_p
20330 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
20331 {
20332 unify_inconsistent_template_template_parameters (explain_p);
20333 goto fail;
20334 }
20335
20336 /* DR 1391: All parameters have args, now check non-dependent parms for
20337 convertibility. */
20338 if (check_non_deducible_conversions (parms, args, nargs, fn, strict, flags,
20339 convs, explain_p))
20340 goto fail;
20341
20342 deduced:
20343 /* All is well so far. Now, check:
20344
20345 [temp.deduct]
20346
20347 When all template arguments have been deduced, all uses of
20348 template parameters in nondeduced contexts are replaced with
20349 the corresponding deduced argument values. If the
20350 substitution results in an invalid type, as described above,
20351 type deduction fails. */
20352 if (!push_tinst_level (fn, targs))
20353 {
20354 excessive_deduction_depth = true;
20355 goto fail;
20356 }
20357
20358 /* Also collect access checks from the instantiation. */
20359 reopen_deferring_access_checks (checks);
20360
20361 decl = instantiate_template (fn, targs, complain);
20362
20363 checks = get_deferred_access_checks ();
20364 pop_deferring_access_checks ();
20365
20366 pop_tinst_level ();
20367
20368 if (decl == error_mark_node)
20369 goto fail;
20370
20371 /* Now perform any access checks encountered during substitution. */
20372 push_access_scope (decl);
20373 ok = perform_access_checks (checks, complain);
20374 pop_access_scope (decl);
20375 if (!ok)
20376 goto fail;
20377
20378 /* If we're looking for an exact match, check that what we got
20379 is indeed an exact match. It might not be if some template
20380 parameters are used in non-deduced contexts. But don't check
20381 for an exact match if we have dependent template arguments;
20382 in that case we're doing partial ordering, and we already know
20383 that we have two candidates that will provide the actual type. */
20384 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
20385 {
20386 tree substed = TREE_TYPE (decl);
20387 unsigned int i;
20388
20389 tree sarg
20390 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
20391 if (return_type)
20392 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
20393 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
20394 if (!same_type_p (args[i], TREE_VALUE (sarg)))
20395 {
20396 unify_type_mismatch (explain_p, args[i],
20397 TREE_VALUE (sarg));
20398 goto fail;
20399 }
20400 }
20401
20402 /* After doing deduction with the inherited constructor, actually return an
20403 instantiation of the inheriting constructor. */
20404 if (orig_fn != fn)
20405 decl = instantiate_template (orig_fn, targs, complain);
20406
20407 r = decl;
20408
20409 fail:
20410 --deduction_depth;
20411 if (excessive_deduction_depth)
20412 {
20413 if (deduction_depth == 0)
20414 /* Reset once we're all the way out. */
20415 excessive_deduction_depth = false;
20416 }
20417
20418 return r;
20419 }
20420
20421 /* Adjust types before performing type deduction, as described in
20422 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
20423 sections are symmetric. PARM is the type of a function parameter
20424 or the return type of the conversion function. ARG is the type of
20425 the argument passed to the call, or the type of the value
20426 initialized with the result of the conversion function.
20427 ARG_EXPR is the original argument expression, which may be null. */
20428
20429 static int
20430 maybe_adjust_types_for_deduction (unification_kind_t strict,
20431 tree* parm,
20432 tree* arg,
20433 tree arg_expr)
20434 {
20435 int result = 0;
20436
20437 switch (strict)
20438 {
20439 case DEDUCE_CALL:
20440 break;
20441
20442 case DEDUCE_CONV:
20443 /* Swap PARM and ARG throughout the remainder of this
20444 function; the handling is precisely symmetric since PARM
20445 will initialize ARG rather than vice versa. */
20446 std::swap (parm, arg);
20447 break;
20448
20449 case DEDUCE_EXACT:
20450 /* Core issue #873: Do the DR606 thing (see below) for these cases,
20451 too, but here handle it by stripping the reference from PARM
20452 rather than by adding it to ARG. */
20453 if (TYPE_REF_P (*parm)
20454 && TYPE_REF_IS_RVALUE (*parm)
20455 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
20456 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
20457 && TYPE_REF_P (*arg)
20458 && !TYPE_REF_IS_RVALUE (*arg))
20459 *parm = TREE_TYPE (*parm);
20460 /* Nothing else to do in this case. */
20461 return 0;
20462
20463 default:
20464 gcc_unreachable ();
20465 }
20466
20467 if (!TYPE_REF_P (*parm))
20468 {
20469 /* [temp.deduct.call]
20470
20471 If P is not a reference type:
20472
20473 --If A is an array type, the pointer type produced by the
20474 array-to-pointer standard conversion (_conv.array_) is
20475 used in place of A for type deduction; otherwise,
20476
20477 --If A is a function type, the pointer type produced by
20478 the function-to-pointer standard conversion
20479 (_conv.func_) is used in place of A for type deduction;
20480 otherwise,
20481
20482 --If A is a cv-qualified type, the top level
20483 cv-qualifiers of A's type are ignored for type
20484 deduction. */
20485 if (TREE_CODE (*arg) == ARRAY_TYPE)
20486 *arg = build_pointer_type (TREE_TYPE (*arg));
20487 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
20488 *arg = build_pointer_type (*arg);
20489 else
20490 *arg = TYPE_MAIN_VARIANT (*arg);
20491 }
20492
20493 /* [14.8.2.1/3 temp.deduct.call], "A forwarding reference is an rvalue
20494 reference to a cv-unqualified template parameter that does not represent a
20495 template parameter of a class template (during class template argument
20496 deduction (13.3.1.8)). If P is a forwarding reference and the argument is
20497 an lvalue, the type "lvalue reference to A" is used in place of A for type
20498 deduction. */
20499 if (TYPE_REF_P (*parm)
20500 && TYPE_REF_IS_RVALUE (*parm)
20501 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
20502 && !TEMPLATE_TYPE_PARM_FOR_CLASS (TREE_TYPE (*parm))
20503 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
20504 && (arg_expr ? lvalue_p (arg_expr)
20505 /* try_one_overload doesn't provide an arg_expr, but
20506 functions are always lvalues. */
20507 : TREE_CODE (*arg) == FUNCTION_TYPE))
20508 *arg = build_reference_type (*arg);
20509
20510 /* [temp.deduct.call]
20511
20512 If P is a cv-qualified type, the top level cv-qualifiers
20513 of P's type are ignored for type deduction. If P is a
20514 reference type, the type referred to by P is used for
20515 type deduction. */
20516 *parm = TYPE_MAIN_VARIANT (*parm);
20517 if (TYPE_REF_P (*parm))
20518 {
20519 *parm = TREE_TYPE (*parm);
20520 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
20521 }
20522
20523 /* DR 322. For conversion deduction, remove a reference type on parm
20524 too (which has been swapped into ARG). */
20525 if (strict == DEDUCE_CONV && TYPE_REF_P (*arg))
20526 *arg = TREE_TYPE (*arg);
20527
20528 return result;
20529 }
20530
20531 /* Subroutine of fn_type_unification. PARM is a function parameter of a
20532 template which doesn't contain any deducible template parameters; check if
20533 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
20534 unify_one_argument. */
20535
20536 static int
20537 check_non_deducible_conversion (tree parm, tree arg, int strict,
20538 int flags, struct conversion **conv_p,
20539 bool explain_p)
20540 {
20541 tree type;
20542
20543 if (!TYPE_P (arg))
20544 type = TREE_TYPE (arg);
20545 else
20546 type = arg;
20547
20548 if (same_type_p (parm, type))
20549 return unify_success (explain_p);
20550
20551 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
20552 if (strict == DEDUCE_CONV)
20553 {
20554 if (can_convert_arg (type, parm, NULL_TREE, flags, complain))
20555 return unify_success (explain_p);
20556 }
20557 else if (strict != DEDUCE_EXACT)
20558 {
20559 bool ok = false;
20560 tree conv_arg = TYPE_P (arg) ? NULL_TREE : arg;
20561 if (conv_p)
20562 /* Avoid recalculating this in add_function_candidate. */
20563 ok = (*conv_p
20564 = good_conversion (parm, type, conv_arg, flags, complain));
20565 else
20566 ok = can_convert_arg (parm, type, conv_arg, flags, complain);
20567 if (ok)
20568 return unify_success (explain_p);
20569 }
20570
20571 if (strict == DEDUCE_EXACT)
20572 return unify_type_mismatch (explain_p, parm, arg);
20573 else
20574 return unify_arg_conversion (explain_p, parm, type, arg);
20575 }
20576
20577 static bool uses_deducible_template_parms (tree type);
20578
20579 /* Returns true iff the expression EXPR is one from which a template
20580 argument can be deduced. In other words, if it's an undecorated
20581 use of a template non-type parameter. */
20582
20583 static bool
20584 deducible_expression (tree expr)
20585 {
20586 /* Strip implicit conversions. */
20587 while (CONVERT_EXPR_P (expr))
20588 expr = TREE_OPERAND (expr, 0);
20589 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
20590 }
20591
20592 /* Returns true iff the array domain DOMAIN uses a template parameter in a
20593 deducible way; that is, if it has a max value of <PARM> - 1. */
20594
20595 static bool
20596 deducible_array_bound (tree domain)
20597 {
20598 if (domain == NULL_TREE)
20599 return false;
20600
20601 tree max = TYPE_MAX_VALUE (domain);
20602 if (TREE_CODE (max) != MINUS_EXPR)
20603 return false;
20604
20605 return deducible_expression (TREE_OPERAND (max, 0));
20606 }
20607
20608 /* Returns true iff the template arguments ARGS use a template parameter
20609 in a deducible way. */
20610
20611 static bool
20612 deducible_template_args (tree args)
20613 {
20614 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
20615 {
20616 bool deducible;
20617 tree elt = TREE_VEC_ELT (args, i);
20618 if (ARGUMENT_PACK_P (elt))
20619 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
20620 else
20621 {
20622 if (PACK_EXPANSION_P (elt))
20623 elt = PACK_EXPANSION_PATTERN (elt);
20624 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
20625 deducible = true;
20626 else if (TYPE_P (elt))
20627 deducible = uses_deducible_template_parms (elt);
20628 else
20629 deducible = deducible_expression (elt);
20630 }
20631 if (deducible)
20632 return true;
20633 }
20634 return false;
20635 }
20636
20637 /* Returns true iff TYPE contains any deducible references to template
20638 parameters, as per 14.8.2.5. */
20639
20640 static bool
20641 uses_deducible_template_parms (tree type)
20642 {
20643 if (PACK_EXPANSION_P (type))
20644 type = PACK_EXPANSION_PATTERN (type);
20645
20646 /* T
20647 cv-list T
20648 TT<T>
20649 TT<i>
20650 TT<> */
20651 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20652 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
20653 return true;
20654
20655 /* T*
20656 T&
20657 T&& */
20658 if (INDIRECT_TYPE_P (type))
20659 return uses_deducible_template_parms (TREE_TYPE (type));
20660
20661 /* T[integer-constant ]
20662 type [i] */
20663 if (TREE_CODE (type) == ARRAY_TYPE)
20664 return (uses_deducible_template_parms (TREE_TYPE (type))
20665 || deducible_array_bound (TYPE_DOMAIN (type)));
20666
20667 /* T type ::*
20668 type T::*
20669 T T::*
20670 T (type ::*)()
20671 type (T::*)()
20672 type (type ::*)(T)
20673 type (T::*)(T)
20674 T (type ::*)(T)
20675 T (T::*)()
20676 T (T::*)(T) */
20677 if (TYPE_PTRMEM_P (type))
20678 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
20679 || (uses_deducible_template_parms
20680 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
20681
20682 /* template-name <T> (where template-name refers to a class template)
20683 template-name <i> (where template-name refers to a class template) */
20684 if (CLASS_TYPE_P (type)
20685 && CLASSTYPE_TEMPLATE_INFO (type)
20686 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
20687 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
20688 (CLASSTYPE_TI_ARGS (type)));
20689
20690 /* type (T)
20691 T()
20692 T(T) */
20693 if (FUNC_OR_METHOD_TYPE_P (type))
20694 {
20695 if (uses_deducible_template_parms (TREE_TYPE (type)))
20696 return true;
20697 tree parm = TYPE_ARG_TYPES (type);
20698 if (TREE_CODE (type) == METHOD_TYPE)
20699 parm = TREE_CHAIN (parm);
20700 for (; parm; parm = TREE_CHAIN (parm))
20701 if (uses_deducible_template_parms (TREE_VALUE (parm)))
20702 return true;
20703 }
20704
20705 return false;
20706 }
20707
20708 /* Subroutine of type_unification_real and unify_pack_expansion to
20709 handle unification of a single P/A pair. Parameters are as
20710 for those functions. */
20711
20712 static int
20713 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
20714 int subr, unification_kind_t strict,
20715 bool explain_p)
20716 {
20717 tree arg_expr = NULL_TREE;
20718 int arg_strict;
20719
20720 if (arg == error_mark_node || parm == error_mark_node)
20721 return unify_invalid (explain_p);
20722 if (arg == unknown_type_node)
20723 /* We can't deduce anything from this, but we might get all the
20724 template args from other function args. */
20725 return unify_success (explain_p);
20726
20727 /* Implicit conversions (Clause 4) will be performed on a function
20728 argument to convert it to the type of the corresponding function
20729 parameter if the parameter type contains no template-parameters that
20730 participate in template argument deduction. */
20731 if (strict != DEDUCE_EXACT
20732 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
20733 /* For function parameters with no deducible template parameters,
20734 just return. We'll check non-dependent conversions later. */
20735 return unify_success (explain_p);
20736
20737 switch (strict)
20738 {
20739 case DEDUCE_CALL:
20740 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
20741 | UNIFY_ALLOW_MORE_CV_QUAL
20742 | UNIFY_ALLOW_DERIVED);
20743 break;
20744
20745 case DEDUCE_CONV:
20746 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
20747 break;
20748
20749 case DEDUCE_EXACT:
20750 arg_strict = UNIFY_ALLOW_NONE;
20751 break;
20752
20753 default:
20754 gcc_unreachable ();
20755 }
20756
20757 /* We only do these transformations if this is the top-level
20758 parameter_type_list in a call or declaration matching; in other
20759 situations (nested function declarators, template argument lists) we
20760 won't be comparing a type to an expression, and we don't do any type
20761 adjustments. */
20762 if (!subr)
20763 {
20764 if (!TYPE_P (arg))
20765 {
20766 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
20767 if (type_unknown_p (arg))
20768 {
20769 /* [temp.deduct.type] A template-argument can be
20770 deduced from a pointer to function or pointer
20771 to member function argument if the set of
20772 overloaded functions does not contain function
20773 templates and at most one of a set of
20774 overloaded functions provides a unique
20775 match. */
20776 resolve_overloaded_unification (tparms, targs, parm,
20777 arg, strict,
20778 arg_strict, explain_p);
20779 /* If a unique match was not found, this is a
20780 non-deduced context, so we still succeed. */
20781 return unify_success (explain_p);
20782 }
20783
20784 arg_expr = arg;
20785 arg = unlowered_expr_type (arg);
20786 if (arg == error_mark_node)
20787 return unify_invalid (explain_p);
20788 }
20789
20790 arg_strict |=
20791 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
20792 }
20793 else
20794 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
20795 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
20796 return unify_template_argument_mismatch (explain_p, parm, arg);
20797
20798 /* For deduction from an init-list we need the actual list. */
20799 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
20800 arg = arg_expr;
20801 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
20802 }
20803
20804 /* for_each_template_parm callback that always returns 0. */
20805
20806 static int
20807 zero_r (tree, void *)
20808 {
20809 return 0;
20810 }
20811
20812 /* for_each_template_parm any_fn callback to handle deduction of a template
20813 type argument from the type of an array bound. */
20814
20815 static int
20816 array_deduction_r (tree t, void *data)
20817 {
20818 tree_pair_p d = (tree_pair_p)data;
20819 tree &tparms = d->purpose;
20820 tree &targs = d->value;
20821
20822 if (TREE_CODE (t) == ARRAY_TYPE)
20823 if (tree dom = TYPE_DOMAIN (t))
20824 if (tree max = TYPE_MAX_VALUE (dom))
20825 {
20826 if (TREE_CODE (max) == MINUS_EXPR)
20827 max = TREE_OPERAND (max, 0);
20828 if (TREE_CODE (max) == TEMPLATE_PARM_INDEX)
20829 unify (tparms, targs, TREE_TYPE (max), size_type_node,
20830 UNIFY_ALLOW_NONE, /*explain*/false);
20831 }
20832
20833 /* Keep walking. */
20834 return 0;
20835 }
20836
20837 /* Try to deduce any not-yet-deduced template type arguments from the type of
20838 an array bound. This is handled separately from unify because 14.8.2.5 says
20839 "The type of a type parameter is only deduced from an array bound if it is
20840 not otherwise deduced." */
20841
20842 static void
20843 try_array_deduction (tree tparms, tree targs, tree parm)
20844 {
20845 tree_pair_s data = { tparms, targs };
20846 hash_set<tree> visited;
20847 for_each_template_parm (parm, zero_r, &data, &visited,
20848 /*nondeduced*/false, array_deduction_r);
20849 }
20850
20851 /* Most parms like fn_type_unification.
20852
20853 If SUBR is 1, we're being called recursively (to unify the
20854 arguments of a function or method parameter of a function
20855 template).
20856
20857 CHECKS is a pointer to a vector of access checks encountered while
20858 substituting default template arguments. */
20859
20860 static int
20861 type_unification_real (tree tparms,
20862 tree full_targs,
20863 tree xparms,
20864 const tree *xargs,
20865 unsigned int xnargs,
20866 int subr,
20867 unification_kind_t strict,
20868 vec<deferred_access_check, va_gc> **checks,
20869 bool explain_p)
20870 {
20871 tree parm, arg;
20872 int i;
20873 int ntparms = TREE_VEC_LENGTH (tparms);
20874 int saw_undeduced = 0;
20875 tree parms;
20876 const tree *args;
20877 unsigned int nargs;
20878 unsigned int ia;
20879
20880 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
20881 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
20882 gcc_assert (ntparms > 0);
20883
20884 tree targs = INNERMOST_TEMPLATE_ARGS (full_targs);
20885
20886 /* Reset the number of non-defaulted template arguments contained
20887 in TARGS. */
20888 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
20889
20890 again:
20891 parms = xparms;
20892 args = xargs;
20893 nargs = xnargs;
20894
20895 ia = 0;
20896 while (parms && parms != void_list_node
20897 && ia < nargs)
20898 {
20899 parm = TREE_VALUE (parms);
20900
20901 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
20902 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
20903 /* For a function parameter pack that occurs at the end of the
20904 parameter-declaration-list, the type A of each remaining
20905 argument of the call is compared with the type P of the
20906 declarator-id of the function parameter pack. */
20907 break;
20908
20909 parms = TREE_CHAIN (parms);
20910
20911 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
20912 /* For a function parameter pack that does not occur at the
20913 end of the parameter-declaration-list, the type of the
20914 parameter pack is a non-deduced context. */
20915 continue;
20916
20917 arg = args[ia];
20918 ++ia;
20919
20920 if (unify_one_argument (tparms, full_targs, parm, arg, subr, strict,
20921 explain_p))
20922 return 1;
20923 }
20924
20925 if (parms
20926 && parms != void_list_node
20927 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
20928 {
20929 /* Unify the remaining arguments with the pack expansion type. */
20930 tree argvec;
20931 tree parmvec = make_tree_vec (1);
20932
20933 /* Allocate a TREE_VEC and copy in all of the arguments */
20934 argvec = make_tree_vec (nargs - ia);
20935 for (i = 0; ia < nargs; ++ia, ++i)
20936 TREE_VEC_ELT (argvec, i) = args[ia];
20937
20938 /* Copy the parameter into parmvec. */
20939 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
20940 if (unify_pack_expansion (tparms, full_targs, parmvec, argvec, strict,
20941 /*subr=*/subr, explain_p))
20942 return 1;
20943
20944 /* Advance to the end of the list of parameters. */
20945 parms = TREE_CHAIN (parms);
20946 }
20947
20948 /* Fail if we've reached the end of the parm list, and more args
20949 are present, and the parm list isn't variadic. */
20950 if (ia < nargs && parms == void_list_node)
20951 return unify_too_many_arguments (explain_p, nargs, ia);
20952 /* Fail if parms are left and they don't have default values and
20953 they aren't all deduced as empty packs (c++/57397). This is
20954 consistent with sufficient_parms_p. */
20955 if (parms && parms != void_list_node
20956 && TREE_PURPOSE (parms) == NULL_TREE)
20957 {
20958 unsigned int count = nargs;
20959 tree p = parms;
20960 bool type_pack_p;
20961 do
20962 {
20963 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
20964 if (!type_pack_p)
20965 count++;
20966 p = TREE_CHAIN (p);
20967 }
20968 while (p && p != void_list_node);
20969 if (count != nargs)
20970 return unify_too_few_arguments (explain_p, ia, count,
20971 type_pack_p);
20972 }
20973
20974 if (!subr)
20975 {
20976 tsubst_flags_t complain = (explain_p
20977 ? tf_warning_or_error
20978 : tf_none);
20979 bool tried_array_deduction = (cxx_dialect < cxx17);
20980
20981 for (i = 0; i < ntparms; i++)
20982 {
20983 tree targ = TREE_VEC_ELT (targs, i);
20984 tree tparm = TREE_VEC_ELT (tparms, i);
20985
20986 /* Clear the "incomplete" flags on all argument packs now so that
20987 substituting them into later default arguments works. */
20988 if (targ && ARGUMENT_PACK_P (targ))
20989 {
20990 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
20991 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
20992 }
20993
20994 if (targ || tparm == error_mark_node)
20995 continue;
20996 tparm = TREE_VALUE (tparm);
20997
20998 if (TREE_CODE (tparm) == TYPE_DECL
20999 && !tried_array_deduction)
21000 {
21001 try_array_deduction (tparms, targs, xparms);
21002 tried_array_deduction = true;
21003 if (TREE_VEC_ELT (targs, i))
21004 continue;
21005 }
21006
21007 /* If this is an undeduced nontype parameter that depends on
21008 a type parameter, try another pass; its type may have been
21009 deduced from a later argument than the one from which
21010 this parameter can be deduced. */
21011 if (TREE_CODE (tparm) == PARM_DECL
21012 && uses_template_parms (TREE_TYPE (tparm))
21013 && saw_undeduced < 2)
21014 {
21015 saw_undeduced = 1;
21016 continue;
21017 }
21018
21019 /* Core issue #226 (C++0x) [temp.deduct]:
21020
21021 If a template argument has not been deduced, its
21022 default template argument, if any, is used.
21023
21024 When we are in C++98 mode, TREE_PURPOSE will either
21025 be NULL_TREE or ERROR_MARK_NODE, so we do not need
21026 to explicitly check cxx_dialect here. */
21027 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
21028 /* OK, there is a default argument. Wait until after the
21029 conversion check to do substitution. */
21030 continue;
21031
21032 /* If the type parameter is a parameter pack, then it will
21033 be deduced to an empty parameter pack. */
21034 if (template_parameter_pack_p (tparm))
21035 {
21036 tree arg;
21037
21038 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
21039 {
21040 arg = make_node (NONTYPE_ARGUMENT_PACK);
21041 TREE_CONSTANT (arg) = 1;
21042 }
21043 else
21044 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
21045
21046 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
21047
21048 TREE_VEC_ELT (targs, i) = arg;
21049 continue;
21050 }
21051
21052 return unify_parameter_deduction_failure (explain_p, tparm);
21053 }
21054
21055 /* Now substitute into the default template arguments. */
21056 for (i = 0; i < ntparms; i++)
21057 {
21058 tree targ = TREE_VEC_ELT (targs, i);
21059 tree tparm = TREE_VEC_ELT (tparms, i);
21060
21061 if (targ || tparm == error_mark_node)
21062 continue;
21063 tree parm = TREE_VALUE (tparm);
21064 tree arg = TREE_PURPOSE (tparm);
21065 reopen_deferring_access_checks (*checks);
21066 location_t save_loc = input_location;
21067 if (DECL_P (parm))
21068 input_location = DECL_SOURCE_LOCATION (parm);
21069
21070 if (saw_undeduced == 1
21071 && TREE_CODE (parm) == PARM_DECL
21072 && uses_template_parms (TREE_TYPE (parm)))
21073 {
21074 /* The type of this non-type parameter depends on undeduced
21075 parameters. Don't try to use its default argument yet,
21076 since we might deduce an argument for it on the next pass,
21077 but do check whether the arguments we already have cause
21078 substitution failure, so that that happens before we try
21079 later default arguments (78489). */
21080 ++processing_template_decl;
21081 tree type = tsubst (TREE_TYPE (parm), full_targs, complain,
21082 NULL_TREE);
21083 --processing_template_decl;
21084 if (type == error_mark_node)
21085 arg = error_mark_node;
21086 else
21087 arg = NULL_TREE;
21088 }
21089 else
21090 {
21091 /* Even if the call is happening in template context, getting
21092 here means it's non-dependent, and a default argument is
21093 considered a separate definition under [temp.decls], so we can
21094 do this substitution without processing_template_decl. This
21095 is important if the default argument contains something that
21096 might be instantiation-dependent like access (87480). */
21097 processing_template_decl_sentinel s;
21098 tree substed = NULL_TREE;
21099 if (saw_undeduced == 1)
21100 {
21101 /* First instatiate in template context, in case we still
21102 depend on undeduced template parameters. */
21103 ++processing_template_decl;
21104 substed = tsubst_template_arg (arg, full_targs, complain,
21105 NULL_TREE);
21106 --processing_template_decl;
21107 if (substed != error_mark_node
21108 && !uses_template_parms (substed))
21109 /* We replaced all the tparms, substitute again out of
21110 template context. */
21111 substed = NULL_TREE;
21112 }
21113 if (!substed)
21114 substed = tsubst_template_arg (arg, full_targs, complain,
21115 NULL_TREE);
21116
21117 if (!uses_template_parms (substed))
21118 arg = convert_template_argument (parm, substed, full_targs,
21119 complain, i, NULL_TREE);
21120 else if (saw_undeduced == 1)
21121 arg = NULL_TREE;
21122 else
21123 arg = error_mark_node;
21124 }
21125
21126 input_location = save_loc;
21127 *checks = get_deferred_access_checks ();
21128 pop_deferring_access_checks ();
21129
21130 if (arg == error_mark_node)
21131 return 1;
21132 else if (arg)
21133 {
21134 TREE_VEC_ELT (targs, i) = arg;
21135 /* The position of the first default template argument,
21136 is also the number of non-defaulted arguments in TARGS.
21137 Record that. */
21138 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
21139 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
21140 }
21141 }
21142
21143 if (saw_undeduced++ == 1)
21144 goto again;
21145 }
21146
21147 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
21148 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
21149
21150 return unify_success (explain_p);
21151 }
21152
21153 /* Subroutine of type_unification_real. Args are like the variables
21154 at the call site. ARG is an overloaded function (or template-id);
21155 we try deducing template args from each of the overloads, and if
21156 only one succeeds, we go with that. Modifies TARGS and returns
21157 true on success. */
21158
21159 static bool
21160 resolve_overloaded_unification (tree tparms,
21161 tree targs,
21162 tree parm,
21163 tree arg,
21164 unification_kind_t strict,
21165 int sub_strict,
21166 bool explain_p)
21167 {
21168 tree tempargs = copy_node (targs);
21169 int good = 0;
21170 tree goodfn = NULL_TREE;
21171 bool addr_p;
21172
21173 if (TREE_CODE (arg) == ADDR_EXPR)
21174 {
21175 arg = TREE_OPERAND (arg, 0);
21176 addr_p = true;
21177 }
21178 else
21179 addr_p = false;
21180
21181 if (TREE_CODE (arg) == COMPONENT_REF)
21182 /* Handle `&x' where `x' is some static or non-static member
21183 function name. */
21184 arg = TREE_OPERAND (arg, 1);
21185
21186 if (TREE_CODE (arg) == OFFSET_REF)
21187 arg = TREE_OPERAND (arg, 1);
21188
21189 /* Strip baselink information. */
21190 if (BASELINK_P (arg))
21191 arg = BASELINK_FUNCTIONS (arg);
21192
21193 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
21194 {
21195 /* If we got some explicit template args, we need to plug them into
21196 the affected templates before we try to unify, in case the
21197 explicit args will completely resolve the templates in question. */
21198
21199 int ok = 0;
21200 tree expl_subargs = TREE_OPERAND (arg, 1);
21201 arg = TREE_OPERAND (arg, 0);
21202
21203 for (lkp_iterator iter (arg); iter; ++iter)
21204 {
21205 tree fn = *iter;
21206 tree subargs, elem;
21207
21208 if (TREE_CODE (fn) != TEMPLATE_DECL)
21209 continue;
21210
21211 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
21212 expl_subargs, NULL_TREE, tf_none,
21213 /*require_all_args=*/true,
21214 /*use_default_args=*/true);
21215 if (subargs != error_mark_node
21216 && !any_dependent_template_arguments_p (subargs))
21217 {
21218 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
21219 if (try_one_overload (tparms, targs, tempargs, parm,
21220 elem, strict, sub_strict, addr_p, explain_p)
21221 && (!goodfn || !same_type_p (goodfn, elem)))
21222 {
21223 goodfn = elem;
21224 ++good;
21225 }
21226 }
21227 else if (subargs)
21228 ++ok;
21229 }
21230 /* If no templates (or more than one) are fully resolved by the
21231 explicit arguments, this template-id is a non-deduced context; it
21232 could still be OK if we deduce all template arguments for the
21233 enclosing call through other arguments. */
21234 if (good != 1)
21235 good = ok;
21236 }
21237 else if (!OVL_P (arg))
21238 /* If ARG is, for example, "(0, &f)" then its type will be unknown
21239 -- but the deduction does not succeed because the expression is
21240 not just the function on its own. */
21241 return false;
21242 else
21243 for (lkp_iterator iter (arg); iter; ++iter)
21244 {
21245 tree fn = *iter;
21246 if (try_one_overload (tparms, targs, tempargs, parm, TREE_TYPE (fn),
21247 strict, sub_strict, addr_p, explain_p)
21248 && (!goodfn || !decls_match (goodfn, fn)))
21249 {
21250 goodfn = fn;
21251 ++good;
21252 }
21253 }
21254
21255 /* [temp.deduct.type] A template-argument can be deduced from a pointer
21256 to function or pointer to member function argument if the set of
21257 overloaded functions does not contain function templates and at most
21258 one of a set of overloaded functions provides a unique match.
21259
21260 So if we found multiple possibilities, we return success but don't
21261 deduce anything. */
21262
21263 if (good == 1)
21264 {
21265 int i = TREE_VEC_LENGTH (targs);
21266 for (; i--; )
21267 if (TREE_VEC_ELT (tempargs, i))
21268 {
21269 tree old = TREE_VEC_ELT (targs, i);
21270 tree new_ = TREE_VEC_ELT (tempargs, i);
21271 if (new_ && old && ARGUMENT_PACK_P (old)
21272 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
21273 /* Don't forget explicit template arguments in a pack. */
21274 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
21275 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
21276 TREE_VEC_ELT (targs, i) = new_;
21277 }
21278 }
21279 if (good)
21280 return true;
21281
21282 return false;
21283 }
21284
21285 /* Core DR 115: In contexts where deduction is done and fails, or in
21286 contexts where deduction is not done, if a template argument list is
21287 specified and it, along with any default template arguments, identifies
21288 a single function template specialization, then the template-id is an
21289 lvalue for the function template specialization. */
21290
21291 tree
21292 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
21293 {
21294 tree expr, offset, baselink;
21295 bool addr;
21296
21297 if (!type_unknown_p (orig_expr))
21298 return orig_expr;
21299
21300 expr = orig_expr;
21301 addr = false;
21302 offset = NULL_TREE;
21303 baselink = NULL_TREE;
21304
21305 if (TREE_CODE (expr) == ADDR_EXPR)
21306 {
21307 expr = TREE_OPERAND (expr, 0);
21308 addr = true;
21309 }
21310 if (TREE_CODE (expr) == OFFSET_REF)
21311 {
21312 offset = expr;
21313 expr = TREE_OPERAND (expr, 1);
21314 }
21315 if (BASELINK_P (expr))
21316 {
21317 baselink = expr;
21318 expr = BASELINK_FUNCTIONS (expr);
21319 }
21320
21321 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
21322 {
21323 int good = 0;
21324 tree goodfn = NULL_TREE;
21325
21326 /* If we got some explicit template args, we need to plug them into
21327 the affected templates before we try to unify, in case the
21328 explicit args will completely resolve the templates in question. */
21329
21330 tree expl_subargs = TREE_OPERAND (expr, 1);
21331 tree arg = TREE_OPERAND (expr, 0);
21332 tree badfn = NULL_TREE;
21333 tree badargs = NULL_TREE;
21334
21335 for (lkp_iterator iter (arg); iter; ++iter)
21336 {
21337 tree fn = *iter;
21338 tree subargs, elem;
21339
21340 if (TREE_CODE (fn) != TEMPLATE_DECL)
21341 continue;
21342
21343 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
21344 expl_subargs, NULL_TREE, tf_none,
21345 /*require_all_args=*/true,
21346 /*use_default_args=*/true);
21347 if (subargs != error_mark_node
21348 && !any_dependent_template_arguments_p (subargs))
21349 {
21350 elem = instantiate_template (fn, subargs, tf_none);
21351 if (elem == error_mark_node)
21352 {
21353 badfn = fn;
21354 badargs = subargs;
21355 }
21356 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
21357 {
21358 goodfn = elem;
21359 ++good;
21360 }
21361 }
21362 }
21363 if (good == 1)
21364 {
21365 mark_used (goodfn);
21366 expr = goodfn;
21367 if (baselink)
21368 expr = build_baselink (BASELINK_BINFO (baselink),
21369 BASELINK_ACCESS_BINFO (baselink),
21370 expr, BASELINK_OPTYPE (baselink));
21371 if (offset)
21372 {
21373 tree base
21374 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
21375 expr = build_offset_ref (base, expr, addr, complain);
21376 }
21377 if (addr)
21378 expr = cp_build_addr_expr (expr, complain);
21379 return expr;
21380 }
21381 else if (good == 0 && badargs && (complain & tf_error))
21382 /* There were no good options and at least one bad one, so let the
21383 user know what the problem is. */
21384 instantiate_template (badfn, badargs, complain);
21385 }
21386 return orig_expr;
21387 }
21388
21389 /* As above, but error out if the expression remains overloaded. */
21390
21391 tree
21392 resolve_nondeduced_context_or_error (tree exp, tsubst_flags_t complain)
21393 {
21394 exp = resolve_nondeduced_context (exp, complain);
21395 if (type_unknown_p (exp))
21396 {
21397 if (complain & tf_error)
21398 cxx_incomplete_type_error (exp, TREE_TYPE (exp));
21399 return error_mark_node;
21400 }
21401 return exp;
21402 }
21403
21404 /* Subroutine of resolve_overloaded_unification; does deduction for a single
21405 overload. Fills TARGS with any deduced arguments, or error_mark_node if
21406 different overloads deduce different arguments for a given parm.
21407 ADDR_P is true if the expression for which deduction is being
21408 performed was of the form "& fn" rather than simply "fn".
21409
21410 Returns 1 on success. */
21411
21412 static int
21413 try_one_overload (tree tparms,
21414 tree orig_targs,
21415 tree targs,
21416 tree parm,
21417 tree arg,
21418 unification_kind_t strict,
21419 int sub_strict,
21420 bool addr_p,
21421 bool explain_p)
21422 {
21423 int nargs;
21424 tree tempargs;
21425 int i;
21426
21427 if (arg == error_mark_node)
21428 return 0;
21429
21430 /* [temp.deduct.type] A template-argument can be deduced from a pointer
21431 to function or pointer to member function argument if the set of
21432 overloaded functions does not contain function templates and at most
21433 one of a set of overloaded functions provides a unique match.
21434
21435 So if this is a template, just return success. */
21436
21437 if (uses_template_parms (arg))
21438 return 1;
21439
21440 if (TREE_CODE (arg) == METHOD_TYPE)
21441 arg = build_ptrmemfunc_type (build_pointer_type (arg));
21442 else if (addr_p)
21443 arg = build_pointer_type (arg);
21444
21445 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
21446
21447 /* We don't copy orig_targs for this because if we have already deduced
21448 some template args from previous args, unify would complain when we
21449 try to deduce a template parameter for the same argument, even though
21450 there isn't really a conflict. */
21451 nargs = TREE_VEC_LENGTH (targs);
21452 tempargs = make_tree_vec (nargs);
21453
21454 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
21455 return 0;
21456
21457 /* First make sure we didn't deduce anything that conflicts with
21458 explicitly specified args. */
21459 for (i = nargs; i--; )
21460 {
21461 tree elt = TREE_VEC_ELT (tempargs, i);
21462 tree oldelt = TREE_VEC_ELT (orig_targs, i);
21463
21464 if (!elt)
21465 /*NOP*/;
21466 else if (uses_template_parms (elt))
21467 /* Since we're unifying against ourselves, we will fill in
21468 template args used in the function parm list with our own
21469 template parms. Discard them. */
21470 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
21471 else if (oldelt && ARGUMENT_PACK_P (oldelt))
21472 {
21473 /* Check that the argument at each index of the deduced argument pack
21474 is equivalent to the corresponding explicitly specified argument.
21475 We may have deduced more arguments than were explicitly specified,
21476 and that's OK. */
21477
21478 /* We used to assert ARGUMENT_PACK_INCOMPLETE_P (oldelt) here, but
21479 that's wrong if we deduce the same argument pack from multiple
21480 function arguments: it's only incomplete the first time. */
21481
21482 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
21483 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
21484
21485 if (TREE_VEC_LENGTH (deduced_pack)
21486 < TREE_VEC_LENGTH (explicit_pack))
21487 return 0;
21488
21489 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
21490 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
21491 TREE_VEC_ELT (deduced_pack, j)))
21492 return 0;
21493 }
21494 else if (oldelt && !template_args_equal (oldelt, elt))
21495 return 0;
21496 }
21497
21498 for (i = nargs; i--; )
21499 {
21500 tree elt = TREE_VEC_ELT (tempargs, i);
21501
21502 if (elt)
21503 TREE_VEC_ELT (targs, i) = elt;
21504 }
21505
21506 return 1;
21507 }
21508
21509 /* PARM is a template class (perhaps with unbound template
21510 parameters). ARG is a fully instantiated type. If ARG can be
21511 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
21512 TARGS are as for unify. */
21513
21514 static tree
21515 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
21516 bool explain_p)
21517 {
21518 tree copy_of_targs;
21519
21520 if (!CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
21521 return NULL_TREE;
21522 else if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
21523 /* Matches anything. */;
21524 else if (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
21525 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm)))
21526 return NULL_TREE;
21527
21528 /* We need to make a new template argument vector for the call to
21529 unify. If we used TARGS, we'd clutter it up with the result of
21530 the attempted unification, even if this class didn't work out.
21531 We also don't want to commit ourselves to all the unifications
21532 we've already done, since unification is supposed to be done on
21533 an argument-by-argument basis. In other words, consider the
21534 following pathological case:
21535
21536 template <int I, int J, int K>
21537 struct S {};
21538
21539 template <int I, int J>
21540 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
21541
21542 template <int I, int J, int K>
21543 void f(S<I, J, K>, S<I, I, I>);
21544
21545 void g() {
21546 S<0, 0, 0> s0;
21547 S<0, 1, 2> s2;
21548
21549 f(s0, s2);
21550 }
21551
21552 Now, by the time we consider the unification involving `s2', we
21553 already know that we must have `f<0, 0, 0>'. But, even though
21554 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
21555 because there are two ways to unify base classes of S<0, 1, 2>
21556 with S<I, I, I>. If we kept the already deduced knowledge, we
21557 would reject the possibility I=1. */
21558 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
21559
21560 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
21561 {
21562 if (unify_bound_ttp_args (tparms, copy_of_targs, parm, arg, explain_p))
21563 return NULL_TREE;
21564 return arg;
21565 }
21566
21567 /* If unification failed, we're done. */
21568 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
21569 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
21570 return NULL_TREE;
21571
21572 return arg;
21573 }
21574
21575 /* Given a template type PARM and a class type ARG, find the unique
21576 base type in ARG that is an instance of PARM. We do not examine
21577 ARG itself; only its base-classes. If there is not exactly one
21578 appropriate base class, return NULL_TREE. PARM may be the type of
21579 a partial specialization, as well as a plain template type. Used
21580 by unify. */
21581
21582 static enum template_base_result
21583 get_template_base (tree tparms, tree targs, tree parm, tree arg,
21584 bool explain_p, tree *result)
21585 {
21586 tree rval = NULL_TREE;
21587 tree binfo;
21588
21589 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
21590
21591 binfo = TYPE_BINFO (complete_type (arg));
21592 if (!binfo)
21593 {
21594 /* The type could not be completed. */
21595 *result = NULL_TREE;
21596 return tbr_incomplete_type;
21597 }
21598
21599 /* Walk in inheritance graph order. The search order is not
21600 important, and this avoids multiple walks of virtual bases. */
21601 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
21602 {
21603 tree r = try_class_unification (tparms, targs, parm,
21604 BINFO_TYPE (binfo), explain_p);
21605
21606 if (r)
21607 {
21608 /* If there is more than one satisfactory baseclass, then:
21609
21610 [temp.deduct.call]
21611
21612 If they yield more than one possible deduced A, the type
21613 deduction fails.
21614
21615 applies. */
21616 if (rval && !same_type_p (r, rval))
21617 {
21618 *result = NULL_TREE;
21619 return tbr_ambiguous_baseclass;
21620 }
21621
21622 rval = r;
21623 }
21624 }
21625
21626 *result = rval;
21627 return tbr_success;
21628 }
21629
21630 /* Returns the level of DECL, which declares a template parameter. */
21631
21632 static int
21633 template_decl_level (tree decl)
21634 {
21635 switch (TREE_CODE (decl))
21636 {
21637 case TYPE_DECL:
21638 case TEMPLATE_DECL:
21639 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
21640
21641 case PARM_DECL:
21642 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
21643
21644 default:
21645 gcc_unreachable ();
21646 }
21647 return 0;
21648 }
21649
21650 /* Decide whether ARG can be unified with PARM, considering only the
21651 cv-qualifiers of each type, given STRICT as documented for unify.
21652 Returns nonzero iff the unification is OK on that basis. */
21653
21654 static int
21655 check_cv_quals_for_unify (int strict, tree arg, tree parm)
21656 {
21657 int arg_quals = cp_type_quals (arg);
21658 int parm_quals = cp_type_quals (parm);
21659
21660 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
21661 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
21662 {
21663 /* Although a CVR qualifier is ignored when being applied to a
21664 substituted template parameter ([8.3.2]/1 for example), that
21665 does not allow us to unify "const T" with "int&" because both
21666 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
21667 It is ok when we're allowing additional CV qualifiers
21668 at the outer level [14.8.2.1]/3,1st bullet. */
21669 if ((TYPE_REF_P (arg)
21670 || FUNC_OR_METHOD_TYPE_P (arg))
21671 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
21672 return 0;
21673
21674 if ((!INDIRECT_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
21675 && (parm_quals & TYPE_QUAL_RESTRICT))
21676 return 0;
21677 }
21678
21679 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
21680 && (arg_quals & parm_quals) != parm_quals)
21681 return 0;
21682
21683 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
21684 && (parm_quals & arg_quals) != arg_quals)
21685 return 0;
21686
21687 return 1;
21688 }
21689
21690 /* Determines the LEVEL and INDEX for the template parameter PARM. */
21691 void
21692 template_parm_level_and_index (tree parm, int* level, int* index)
21693 {
21694 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
21695 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
21696 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
21697 {
21698 *index = TEMPLATE_TYPE_IDX (parm);
21699 *level = TEMPLATE_TYPE_LEVEL (parm);
21700 }
21701 else
21702 {
21703 *index = TEMPLATE_PARM_IDX (parm);
21704 *level = TEMPLATE_PARM_LEVEL (parm);
21705 }
21706 }
21707
21708 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
21709 do { \
21710 if (unify (TP, TA, P, A, S, EP)) \
21711 return 1; \
21712 } while (0)
21713
21714 /* Unifies the remaining arguments in PACKED_ARGS with the pack
21715 expansion at the end of PACKED_PARMS. Returns 0 if the type
21716 deduction succeeds, 1 otherwise. STRICT is the same as in
21717 fn_type_unification. CALL_ARGS_P is true iff PACKED_ARGS is actually a
21718 function call argument list. We'll need to adjust the arguments to make them
21719 types. SUBR tells us if this is from a recursive call to
21720 type_unification_real, or for comparing two template argument
21721 lists. */
21722
21723 static int
21724 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
21725 tree packed_args, unification_kind_t strict,
21726 bool subr, bool explain_p)
21727 {
21728 tree parm
21729 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
21730 tree pattern = PACK_EXPANSION_PATTERN (parm);
21731 tree pack, packs = NULL_TREE;
21732 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
21733
21734 /* Add in any args remembered from an earlier partial instantiation. */
21735 targs = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (parm), targs);
21736 int levels = TMPL_ARGS_DEPTH (targs);
21737
21738 packed_args = expand_template_argument_pack (packed_args);
21739
21740 int len = TREE_VEC_LENGTH (packed_args);
21741
21742 /* Determine the parameter packs we will be deducing from the
21743 pattern, and record their current deductions. */
21744 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
21745 pack; pack = TREE_CHAIN (pack))
21746 {
21747 tree parm_pack = TREE_VALUE (pack);
21748 int idx, level;
21749
21750 /* Only template parameter packs can be deduced, not e.g. function
21751 parameter packs or __bases or __integer_pack. */
21752 if (!TEMPLATE_PARM_P (parm_pack))
21753 continue;
21754
21755 /* Determine the index and level of this parameter pack. */
21756 template_parm_level_and_index (parm_pack, &level, &idx);
21757 if (level < levels)
21758 continue;
21759
21760 /* Keep track of the parameter packs and their corresponding
21761 argument packs. */
21762 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
21763 TREE_TYPE (packs) = make_tree_vec (len - start);
21764 }
21765
21766 /* Loop through all of the arguments that have not yet been
21767 unified and unify each with the pattern. */
21768 for (i = start; i < len; i++)
21769 {
21770 tree parm;
21771 bool any_explicit = false;
21772 tree arg = TREE_VEC_ELT (packed_args, i);
21773
21774 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
21775 or the element of its argument pack at the current index if
21776 this argument was explicitly specified. */
21777 for (pack = packs; pack; pack = TREE_CHAIN (pack))
21778 {
21779 int idx, level;
21780 tree arg, pargs;
21781 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
21782
21783 arg = NULL_TREE;
21784 if (TREE_VALUE (pack)
21785 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
21786 && (i - start < TREE_VEC_LENGTH (pargs)))
21787 {
21788 any_explicit = true;
21789 arg = TREE_VEC_ELT (pargs, i - start);
21790 }
21791 TMPL_ARG (targs, level, idx) = arg;
21792 }
21793
21794 /* If we had explicit template arguments, substitute them into the
21795 pattern before deduction. */
21796 if (any_explicit)
21797 {
21798 /* Some arguments might still be unspecified or dependent. */
21799 bool dependent;
21800 ++processing_template_decl;
21801 dependent = any_dependent_template_arguments_p (targs);
21802 if (!dependent)
21803 --processing_template_decl;
21804 parm = tsubst (pattern, targs,
21805 explain_p ? tf_warning_or_error : tf_none,
21806 NULL_TREE);
21807 if (dependent)
21808 --processing_template_decl;
21809 if (parm == error_mark_node)
21810 return 1;
21811 }
21812 else
21813 parm = pattern;
21814
21815 /* Unify the pattern with the current argument. */
21816 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
21817 explain_p))
21818 return 1;
21819
21820 /* For each parameter pack, collect the deduced value. */
21821 for (pack = packs; pack; pack = TREE_CHAIN (pack))
21822 {
21823 int idx, level;
21824 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
21825
21826 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
21827 TMPL_ARG (targs, level, idx);
21828 }
21829 }
21830
21831 /* Verify that the results of unification with the parameter packs
21832 produce results consistent with what we've seen before, and make
21833 the deduced argument packs available. */
21834 for (pack = packs; pack; pack = TREE_CHAIN (pack))
21835 {
21836 tree old_pack = TREE_VALUE (pack);
21837 tree new_args = TREE_TYPE (pack);
21838 int i, len = TREE_VEC_LENGTH (new_args);
21839 int idx, level;
21840 bool nondeduced_p = false;
21841
21842 /* By default keep the original deduced argument pack.
21843 If necessary, more specific code is going to update the
21844 resulting deduced argument later down in this function. */
21845 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
21846 TMPL_ARG (targs, level, idx) = old_pack;
21847
21848 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
21849 actually deduce anything. */
21850 for (i = 0; i < len && !nondeduced_p; ++i)
21851 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
21852 nondeduced_p = true;
21853 if (nondeduced_p)
21854 continue;
21855
21856 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
21857 {
21858 /* If we had fewer function args than explicit template args,
21859 just use the explicits. */
21860 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
21861 int explicit_len = TREE_VEC_LENGTH (explicit_args);
21862 if (len < explicit_len)
21863 new_args = explicit_args;
21864 }
21865
21866 if (!old_pack)
21867 {
21868 tree result;
21869 /* Build the deduced *_ARGUMENT_PACK. */
21870 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
21871 {
21872 result = make_node (NONTYPE_ARGUMENT_PACK);
21873 TREE_CONSTANT (result) = 1;
21874 }
21875 else
21876 result = cxx_make_type (TYPE_ARGUMENT_PACK);
21877
21878 SET_ARGUMENT_PACK_ARGS (result, new_args);
21879
21880 /* Note the deduced argument packs for this parameter
21881 pack. */
21882 TMPL_ARG (targs, level, idx) = result;
21883 }
21884 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
21885 && (ARGUMENT_PACK_ARGS (old_pack)
21886 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
21887 {
21888 /* We only had the explicitly-provided arguments before, but
21889 now we have a complete set of arguments. */
21890 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
21891
21892 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
21893 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
21894 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
21895 }
21896 else
21897 {
21898 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
21899 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
21900
21901 if (!comp_template_args (old_args, new_args,
21902 &bad_old_arg, &bad_new_arg))
21903 /* Inconsistent unification of this parameter pack. */
21904 return unify_parameter_pack_inconsistent (explain_p,
21905 bad_old_arg,
21906 bad_new_arg);
21907 }
21908 }
21909
21910 return unify_success (explain_p);
21911 }
21912
21913 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
21914 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
21915 parameters and return value are as for unify. */
21916
21917 static int
21918 unify_array_domain (tree tparms, tree targs,
21919 tree parm_dom, tree arg_dom,
21920 bool explain_p)
21921 {
21922 tree parm_max;
21923 tree arg_max;
21924 bool parm_cst;
21925 bool arg_cst;
21926
21927 /* Our representation of array types uses "N - 1" as the
21928 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
21929 not an integer constant. We cannot unify arbitrarily
21930 complex expressions, so we eliminate the MINUS_EXPRs
21931 here. */
21932 parm_max = TYPE_MAX_VALUE (parm_dom);
21933 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
21934 if (!parm_cst)
21935 {
21936 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
21937 parm_max = TREE_OPERAND (parm_max, 0);
21938 }
21939 arg_max = TYPE_MAX_VALUE (arg_dom);
21940 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
21941 if (!arg_cst)
21942 {
21943 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
21944 trying to unify the type of a variable with the type
21945 of a template parameter. For example:
21946
21947 template <unsigned int N>
21948 void f (char (&) [N]);
21949 int g();
21950 void h(int i) {
21951 char a[g(i)];
21952 f(a);
21953 }
21954
21955 Here, the type of the ARG will be "int [g(i)]", and
21956 may be a SAVE_EXPR, etc. */
21957 if (TREE_CODE (arg_max) != MINUS_EXPR)
21958 return unify_vla_arg (explain_p, arg_dom);
21959 arg_max = TREE_OPERAND (arg_max, 0);
21960 }
21961
21962 /* If only one of the bounds used a MINUS_EXPR, compensate
21963 by adding one to the other bound. */
21964 if (parm_cst && !arg_cst)
21965 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
21966 integer_type_node,
21967 parm_max,
21968 integer_one_node);
21969 else if (arg_cst && !parm_cst)
21970 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
21971 integer_type_node,
21972 arg_max,
21973 integer_one_node);
21974
21975 return unify (tparms, targs, parm_max, arg_max,
21976 UNIFY_ALLOW_INTEGER, explain_p);
21977 }
21978
21979 /* Returns whether T, a P or A in unify, is a type, template or expression. */
21980
21981 enum pa_kind_t { pa_type, pa_tmpl, pa_expr };
21982
21983 static pa_kind_t
21984 pa_kind (tree t)
21985 {
21986 if (PACK_EXPANSION_P (t))
21987 t = PACK_EXPANSION_PATTERN (t);
21988 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
21989 || TREE_CODE (t) == UNBOUND_CLASS_TEMPLATE
21990 || DECL_TYPE_TEMPLATE_P (t))
21991 return pa_tmpl;
21992 else if (TYPE_P (t))
21993 return pa_type;
21994 else
21995 return pa_expr;
21996 }
21997
21998 /* Deduce the value of template parameters. TPARMS is the (innermost)
21999 set of template parameters to a template. TARGS is the bindings
22000 for those template parameters, as determined thus far; TARGS may
22001 include template arguments for outer levels of template parameters
22002 as well. PARM is a parameter to a template function, or a
22003 subcomponent of that parameter; ARG is the corresponding argument.
22004 This function attempts to match PARM with ARG in a manner
22005 consistent with the existing assignments in TARGS. If more values
22006 are deduced, then TARGS is updated.
22007
22008 Returns 0 if the type deduction succeeds, 1 otherwise. The
22009 parameter STRICT is a bitwise or of the following flags:
22010
22011 UNIFY_ALLOW_NONE:
22012 Require an exact match between PARM and ARG.
22013 UNIFY_ALLOW_MORE_CV_QUAL:
22014 Allow the deduced ARG to be more cv-qualified (by qualification
22015 conversion) than ARG.
22016 UNIFY_ALLOW_LESS_CV_QUAL:
22017 Allow the deduced ARG to be less cv-qualified than ARG.
22018 UNIFY_ALLOW_DERIVED:
22019 Allow the deduced ARG to be a template base class of ARG,
22020 or a pointer to a template base class of the type pointed to by
22021 ARG.
22022 UNIFY_ALLOW_INTEGER:
22023 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
22024 case for more information.
22025 UNIFY_ALLOW_OUTER_LEVEL:
22026 This is the outermost level of a deduction. Used to determine validity
22027 of qualification conversions. A valid qualification conversion must
22028 have const qualified pointers leading up to the inner type which
22029 requires additional CV quals, except at the outer level, where const
22030 is not required [conv.qual]. It would be normal to set this flag in
22031 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
22032 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
22033 This is the outermost level of a deduction, and PARM can be more CV
22034 qualified at this point.
22035 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
22036 This is the outermost level of a deduction, and PARM can be less CV
22037 qualified at this point. */
22038
22039 static int
22040 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
22041 bool explain_p)
22042 {
22043 int idx;
22044 tree targ;
22045 tree tparm;
22046 int strict_in = strict;
22047 tsubst_flags_t complain = (explain_p
22048 ? tf_warning_or_error
22049 : tf_none);
22050
22051 /* I don't think this will do the right thing with respect to types.
22052 But the only case I've seen it in so far has been array bounds, where
22053 signedness is the only information lost, and I think that will be
22054 okay. */
22055 while (CONVERT_EXPR_P (parm))
22056 parm = TREE_OPERAND (parm, 0);
22057
22058 if (arg == error_mark_node)
22059 return unify_invalid (explain_p);
22060 if (arg == unknown_type_node
22061 || arg == init_list_type_node)
22062 /* We can't deduce anything from this, but we might get all the
22063 template args from other function args. */
22064 return unify_success (explain_p);
22065
22066 if (parm == any_targ_node || arg == any_targ_node)
22067 return unify_success (explain_p);
22068
22069 /* If PARM uses template parameters, then we can't bail out here,
22070 even if ARG == PARM, since we won't record unifications for the
22071 template parameters. We might need them if we're trying to
22072 figure out which of two things is more specialized. */
22073 if (arg == parm && !uses_template_parms (parm))
22074 return unify_success (explain_p);
22075
22076 /* Handle init lists early, so the rest of the function can assume
22077 we're dealing with a type. */
22078 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
22079 {
22080 tree elt, elttype;
22081 unsigned i;
22082 tree orig_parm = parm;
22083
22084 if (!is_std_init_list (parm)
22085 && TREE_CODE (parm) != ARRAY_TYPE)
22086 /* We can only deduce from an initializer list argument if the
22087 parameter is std::initializer_list or an array; otherwise this
22088 is a non-deduced context. */
22089 return unify_success (explain_p);
22090
22091 if (TREE_CODE (parm) == ARRAY_TYPE)
22092 elttype = TREE_TYPE (parm);
22093 else
22094 {
22095 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
22096 /* Deduction is defined in terms of a single type, so just punt
22097 on the (bizarre) std::initializer_list<T...>. */
22098 if (PACK_EXPANSION_P (elttype))
22099 return unify_success (explain_p);
22100 }
22101
22102 if (strict != DEDUCE_EXACT
22103 && TYPE_P (elttype)
22104 && !uses_deducible_template_parms (elttype))
22105 /* If ELTTYPE has no deducible template parms, skip deduction from
22106 the list elements. */;
22107 else
22108 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
22109 {
22110 int elt_strict = strict;
22111
22112 if (elt == error_mark_node)
22113 return unify_invalid (explain_p);
22114
22115 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
22116 {
22117 tree type = TREE_TYPE (elt);
22118 if (type == error_mark_node)
22119 return unify_invalid (explain_p);
22120 /* It should only be possible to get here for a call. */
22121 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
22122 elt_strict |= maybe_adjust_types_for_deduction
22123 (DEDUCE_CALL, &elttype, &type, elt);
22124 elt = type;
22125 }
22126
22127 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
22128 explain_p);
22129 }
22130
22131 if (TREE_CODE (parm) == ARRAY_TYPE
22132 && deducible_array_bound (TYPE_DOMAIN (parm)))
22133 {
22134 /* Also deduce from the length of the initializer list. */
22135 tree max = size_int (CONSTRUCTOR_NELTS (arg));
22136 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
22137 if (idx == error_mark_node)
22138 return unify_invalid (explain_p);
22139 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
22140 idx, explain_p);
22141 }
22142
22143 /* If the std::initializer_list<T> deduction worked, replace the
22144 deduced A with std::initializer_list<A>. */
22145 if (orig_parm != parm)
22146 {
22147 idx = TEMPLATE_TYPE_IDX (orig_parm);
22148 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
22149 targ = listify (targ);
22150 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
22151 }
22152 return unify_success (explain_p);
22153 }
22154
22155 /* If parm and arg aren't the same kind of thing (template, type, or
22156 expression), fail early. */
22157 if (pa_kind (parm) != pa_kind (arg))
22158 return unify_invalid (explain_p);
22159
22160 /* Immediately reject some pairs that won't unify because of
22161 cv-qualification mismatches. */
22162 if (TREE_CODE (arg) == TREE_CODE (parm)
22163 && TYPE_P (arg)
22164 /* It is the elements of the array which hold the cv quals of an array
22165 type, and the elements might be template type parms. We'll check
22166 when we recurse. */
22167 && TREE_CODE (arg) != ARRAY_TYPE
22168 /* We check the cv-qualifiers when unifying with template type
22169 parameters below. We want to allow ARG `const T' to unify with
22170 PARM `T' for example, when computing which of two templates
22171 is more specialized, for example. */
22172 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
22173 && !check_cv_quals_for_unify (strict_in, arg, parm))
22174 return unify_cv_qual_mismatch (explain_p, parm, arg);
22175
22176 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
22177 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
22178 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
22179 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
22180 strict &= ~UNIFY_ALLOW_DERIVED;
22181 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
22182 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
22183
22184 switch (TREE_CODE (parm))
22185 {
22186 case TYPENAME_TYPE:
22187 case SCOPE_REF:
22188 case UNBOUND_CLASS_TEMPLATE:
22189 /* In a type which contains a nested-name-specifier, template
22190 argument values cannot be deduced for template parameters used
22191 within the nested-name-specifier. */
22192 return unify_success (explain_p);
22193
22194 case TEMPLATE_TYPE_PARM:
22195 case TEMPLATE_TEMPLATE_PARM:
22196 case BOUND_TEMPLATE_TEMPLATE_PARM:
22197 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
22198 if (error_operand_p (tparm))
22199 return unify_invalid (explain_p);
22200
22201 if (TEMPLATE_TYPE_LEVEL (parm)
22202 != template_decl_level (tparm))
22203 /* The PARM is not one we're trying to unify. Just check
22204 to see if it matches ARG. */
22205 {
22206 if (TREE_CODE (arg) == TREE_CODE (parm)
22207 && (is_auto (parm) ? is_auto (arg)
22208 : same_type_p (parm, arg)))
22209 return unify_success (explain_p);
22210 else
22211 return unify_type_mismatch (explain_p, parm, arg);
22212 }
22213 idx = TEMPLATE_TYPE_IDX (parm);
22214 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
22215 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
22216 if (error_operand_p (tparm))
22217 return unify_invalid (explain_p);
22218
22219 /* Check for mixed types and values. */
22220 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
22221 && TREE_CODE (tparm) != TYPE_DECL)
22222 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
22223 && TREE_CODE (tparm) != TEMPLATE_DECL))
22224 gcc_unreachable ();
22225
22226 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
22227 {
22228 if ((strict_in & UNIFY_ALLOW_DERIVED)
22229 && CLASS_TYPE_P (arg))
22230 {
22231 /* First try to match ARG directly. */
22232 tree t = try_class_unification (tparms, targs, parm, arg,
22233 explain_p);
22234 if (!t)
22235 {
22236 /* Otherwise, look for a suitable base of ARG, as below. */
22237 enum template_base_result r;
22238 r = get_template_base (tparms, targs, parm, arg,
22239 explain_p, &t);
22240 if (!t)
22241 return unify_no_common_base (explain_p, r, parm, arg);
22242 arg = t;
22243 }
22244 }
22245 /* ARG must be constructed from a template class or a template
22246 template parameter. */
22247 else if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
22248 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
22249 return unify_template_deduction_failure (explain_p, parm, arg);
22250
22251 /* Deduce arguments T, i from TT<T> or TT<i>. */
22252 if (unify_bound_ttp_args (tparms, targs, parm, arg, explain_p))
22253 return 1;
22254
22255 arg = TYPE_TI_TEMPLATE (arg);
22256
22257 /* Fall through to deduce template name. */
22258 }
22259
22260 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
22261 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
22262 {
22263 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
22264
22265 /* Simple cases: Value already set, does match or doesn't. */
22266 if (targ != NULL_TREE && template_args_equal (targ, arg))
22267 return unify_success (explain_p);
22268 else if (targ)
22269 return unify_inconsistency (explain_p, parm, targ, arg);
22270 }
22271 else
22272 {
22273 /* If PARM is `const T' and ARG is only `int', we don't have
22274 a match unless we are allowing additional qualification.
22275 If ARG is `const int' and PARM is just `T' that's OK;
22276 that binds `const int' to `T'. */
22277 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
22278 arg, parm))
22279 return unify_cv_qual_mismatch (explain_p, parm, arg);
22280
22281 /* Consider the case where ARG is `const volatile int' and
22282 PARM is `const T'. Then, T should be `volatile int'. */
22283 arg = cp_build_qualified_type_real
22284 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
22285 if (arg == error_mark_node)
22286 return unify_invalid (explain_p);
22287
22288 /* Simple cases: Value already set, does match or doesn't. */
22289 if (targ != NULL_TREE && same_type_p (targ, arg))
22290 return unify_success (explain_p);
22291 else if (targ)
22292 return unify_inconsistency (explain_p, parm, targ, arg);
22293
22294 /* Make sure that ARG is not a variable-sized array. (Note
22295 that were talking about variable-sized arrays (like
22296 `int[n]'), rather than arrays of unknown size (like
22297 `int[]').) We'll get very confused by such a type since
22298 the bound of the array is not constant, and therefore
22299 not mangleable. Besides, such types are not allowed in
22300 ISO C++, so we can do as we please here. We do allow
22301 them for 'auto' deduction, since that isn't ABI-exposed. */
22302 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
22303 return unify_vla_arg (explain_p, arg);
22304
22305 /* Strip typedefs as in convert_template_argument. */
22306 arg = canonicalize_type_argument (arg, tf_none);
22307 }
22308
22309 /* If ARG is a parameter pack or an expansion, we cannot unify
22310 against it unless PARM is also a parameter pack. */
22311 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
22312 && !template_parameter_pack_p (parm))
22313 return unify_parameter_pack_mismatch (explain_p, parm, arg);
22314
22315 /* If the argument deduction results is a METHOD_TYPE,
22316 then there is a problem.
22317 METHOD_TYPE doesn't map to any real C++ type the result of
22318 the deduction cannot be of that type. */
22319 if (TREE_CODE (arg) == METHOD_TYPE)
22320 return unify_method_type_error (explain_p, arg);
22321
22322 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
22323 return unify_success (explain_p);
22324
22325 case TEMPLATE_PARM_INDEX:
22326 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
22327 if (error_operand_p (tparm))
22328 return unify_invalid (explain_p);
22329
22330 if (TEMPLATE_PARM_LEVEL (parm)
22331 != template_decl_level (tparm))
22332 {
22333 /* The PARM is not one we're trying to unify. Just check
22334 to see if it matches ARG. */
22335 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
22336 && cp_tree_equal (parm, arg));
22337 if (result)
22338 unify_expression_unequal (explain_p, parm, arg);
22339 return result;
22340 }
22341
22342 idx = TEMPLATE_PARM_IDX (parm);
22343 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
22344
22345 if (targ)
22346 {
22347 if ((strict & UNIFY_ALLOW_INTEGER)
22348 && TREE_TYPE (targ) && TREE_TYPE (arg)
22349 && CP_INTEGRAL_TYPE_P (TREE_TYPE (targ)))
22350 /* We're deducing from an array bound, the type doesn't matter. */
22351 arg = fold_convert (TREE_TYPE (targ), arg);
22352 int x = !cp_tree_equal (targ, arg);
22353 if (x)
22354 unify_inconsistency (explain_p, parm, targ, arg);
22355 return x;
22356 }
22357
22358 /* [temp.deduct.type] If, in the declaration of a function template
22359 with a non-type template-parameter, the non-type
22360 template-parameter is used in an expression in the function
22361 parameter-list and, if the corresponding template-argument is
22362 deduced, the template-argument type shall match the type of the
22363 template-parameter exactly, except that a template-argument
22364 deduced from an array bound may be of any integral type.
22365 The non-type parameter might use already deduced type parameters. */
22366 tparm = TREE_TYPE (parm);
22367 if (TEMPLATE_PARM_LEVEL (parm) > TMPL_ARGS_DEPTH (targs))
22368 /* We don't have enough levels of args to do any substitution. This
22369 can happen in the context of -fnew-ttp-matching. */;
22370 else
22371 {
22372 ++processing_template_decl;
22373 tparm = tsubst (tparm, targs, tf_none, NULL_TREE);
22374 --processing_template_decl;
22375
22376 if (tree a = type_uses_auto (tparm))
22377 {
22378 tparm = do_auto_deduction (tparm, arg, a, complain, adc_unify);
22379 if (tparm == error_mark_node)
22380 return 1;
22381 }
22382 }
22383
22384 if (!TREE_TYPE (arg))
22385 /* Template-parameter dependent expression. Just accept it for now.
22386 It will later be processed in convert_template_argument. */
22387 ;
22388 else if (same_type_ignoring_top_level_qualifiers_p
22389 (non_reference (TREE_TYPE (arg)),
22390 non_reference (tparm)))
22391 /* OK. Ignore top-level quals here because a class-type template
22392 parameter object is const. */;
22393 else if ((strict & UNIFY_ALLOW_INTEGER)
22394 && CP_INTEGRAL_TYPE_P (tparm))
22395 /* Convert the ARG to the type of PARM; the deduced non-type
22396 template argument must exactly match the types of the
22397 corresponding parameter. */
22398 arg = fold (build_nop (tparm, arg));
22399 else if (uses_template_parms (tparm))
22400 {
22401 /* We haven't deduced the type of this parameter yet. */
22402 if (cxx_dialect >= cxx17
22403 /* We deduce from array bounds in try_array_deduction. */
22404 && !(strict & UNIFY_ALLOW_INTEGER))
22405 {
22406 /* Deduce it from the non-type argument. */
22407 tree atype = TREE_TYPE (arg);
22408 RECUR_AND_CHECK_FAILURE (tparms, targs,
22409 tparm, atype,
22410 UNIFY_ALLOW_NONE, explain_p);
22411 }
22412 else
22413 /* Try again later. */
22414 return unify_success (explain_p);
22415 }
22416 else
22417 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
22418
22419 /* If ARG is a parameter pack or an expansion, we cannot unify
22420 against it unless PARM is also a parameter pack. */
22421 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
22422 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
22423 return unify_parameter_pack_mismatch (explain_p, parm, arg);
22424
22425 {
22426 bool removed_attr = false;
22427 arg = strip_typedefs_expr (arg, &removed_attr);
22428 }
22429 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
22430 return unify_success (explain_p);
22431
22432 case PTRMEM_CST:
22433 {
22434 /* A pointer-to-member constant can be unified only with
22435 another constant. */
22436 if (TREE_CODE (arg) != PTRMEM_CST)
22437 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
22438
22439 /* Just unify the class member. It would be useless (and possibly
22440 wrong, depending on the strict flags) to unify also
22441 PTRMEM_CST_CLASS, because we want to be sure that both parm and
22442 arg refer to the same variable, even if through different
22443 classes. For instance:
22444
22445 struct A { int x; };
22446 struct B : A { };
22447
22448 Unification of &A::x and &B::x must succeed. */
22449 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
22450 PTRMEM_CST_MEMBER (arg), strict, explain_p);
22451 }
22452
22453 case POINTER_TYPE:
22454 {
22455 if (!TYPE_PTR_P (arg))
22456 return unify_type_mismatch (explain_p, parm, arg);
22457
22458 /* [temp.deduct.call]
22459
22460 A can be another pointer or pointer to member type that can
22461 be converted to the deduced A via a qualification
22462 conversion (_conv.qual_).
22463
22464 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
22465 This will allow for additional cv-qualification of the
22466 pointed-to types if appropriate. */
22467
22468 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
22469 /* The derived-to-base conversion only persists through one
22470 level of pointers. */
22471 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
22472
22473 return unify (tparms, targs, TREE_TYPE (parm),
22474 TREE_TYPE (arg), strict, explain_p);
22475 }
22476
22477 case REFERENCE_TYPE:
22478 if (!TYPE_REF_P (arg))
22479 return unify_type_mismatch (explain_p, parm, arg);
22480 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
22481 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
22482
22483 case ARRAY_TYPE:
22484 if (TREE_CODE (arg) != ARRAY_TYPE)
22485 return unify_type_mismatch (explain_p, parm, arg);
22486 if ((TYPE_DOMAIN (parm) == NULL_TREE)
22487 != (TYPE_DOMAIN (arg) == NULL_TREE))
22488 return unify_type_mismatch (explain_p, parm, arg);
22489 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
22490 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
22491 if (TYPE_DOMAIN (parm) != NULL_TREE)
22492 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
22493 TYPE_DOMAIN (arg), explain_p);
22494 return unify_success (explain_p);
22495
22496 case REAL_TYPE:
22497 case COMPLEX_TYPE:
22498 case VECTOR_TYPE:
22499 case INTEGER_TYPE:
22500 case BOOLEAN_TYPE:
22501 case ENUMERAL_TYPE:
22502 case VOID_TYPE:
22503 case NULLPTR_TYPE:
22504 if (TREE_CODE (arg) != TREE_CODE (parm))
22505 return unify_type_mismatch (explain_p, parm, arg);
22506
22507 /* We have already checked cv-qualification at the top of the
22508 function. */
22509 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
22510 return unify_type_mismatch (explain_p, parm, arg);
22511
22512 /* As far as unification is concerned, this wins. Later checks
22513 will invalidate it if necessary. */
22514 return unify_success (explain_p);
22515
22516 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
22517 /* Type INTEGER_CST can come from ordinary constant template args. */
22518 case INTEGER_CST:
22519 while (CONVERT_EXPR_P (arg))
22520 arg = TREE_OPERAND (arg, 0);
22521
22522 if (TREE_CODE (arg) != INTEGER_CST)
22523 return unify_template_argument_mismatch (explain_p, parm, arg);
22524 return (tree_int_cst_equal (parm, arg)
22525 ? unify_success (explain_p)
22526 : unify_template_argument_mismatch (explain_p, parm, arg));
22527
22528 case TREE_VEC:
22529 {
22530 int i, len, argslen;
22531 int parm_variadic_p = 0;
22532
22533 if (TREE_CODE (arg) != TREE_VEC)
22534 return unify_template_argument_mismatch (explain_p, parm, arg);
22535
22536 len = TREE_VEC_LENGTH (parm);
22537 argslen = TREE_VEC_LENGTH (arg);
22538
22539 /* Check for pack expansions in the parameters. */
22540 for (i = 0; i < len; ++i)
22541 {
22542 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
22543 {
22544 if (i == len - 1)
22545 /* We can unify against something with a trailing
22546 parameter pack. */
22547 parm_variadic_p = 1;
22548 else
22549 /* [temp.deduct.type]/9: If the template argument list of
22550 P contains a pack expansion that is not the last
22551 template argument, the entire template argument list
22552 is a non-deduced context. */
22553 return unify_success (explain_p);
22554 }
22555 }
22556
22557 /* If we don't have enough arguments to satisfy the parameters
22558 (not counting the pack expression at the end), or we have
22559 too many arguments for a parameter list that doesn't end in
22560 a pack expression, we can't unify. */
22561 if (parm_variadic_p
22562 ? argslen < len - parm_variadic_p
22563 : argslen != len)
22564 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
22565
22566 /* Unify all of the parameters that precede the (optional)
22567 pack expression. */
22568 for (i = 0; i < len - parm_variadic_p; ++i)
22569 {
22570 RECUR_AND_CHECK_FAILURE (tparms, targs,
22571 TREE_VEC_ELT (parm, i),
22572 TREE_VEC_ELT (arg, i),
22573 UNIFY_ALLOW_NONE, explain_p);
22574 }
22575 if (parm_variadic_p)
22576 return unify_pack_expansion (tparms, targs, parm, arg,
22577 DEDUCE_EXACT,
22578 /*subr=*/true, explain_p);
22579 return unify_success (explain_p);
22580 }
22581
22582 case RECORD_TYPE:
22583 case UNION_TYPE:
22584 if (TREE_CODE (arg) != TREE_CODE (parm))
22585 return unify_type_mismatch (explain_p, parm, arg);
22586
22587 if (TYPE_PTRMEMFUNC_P (parm))
22588 {
22589 if (!TYPE_PTRMEMFUNC_P (arg))
22590 return unify_type_mismatch (explain_p, parm, arg);
22591
22592 return unify (tparms, targs,
22593 TYPE_PTRMEMFUNC_FN_TYPE (parm),
22594 TYPE_PTRMEMFUNC_FN_TYPE (arg),
22595 strict, explain_p);
22596 }
22597 else if (TYPE_PTRMEMFUNC_P (arg))
22598 return unify_type_mismatch (explain_p, parm, arg);
22599
22600 if (CLASSTYPE_TEMPLATE_INFO (parm))
22601 {
22602 tree t = NULL_TREE;
22603
22604 if (strict_in & UNIFY_ALLOW_DERIVED)
22605 {
22606 /* First, we try to unify the PARM and ARG directly. */
22607 t = try_class_unification (tparms, targs,
22608 parm, arg, explain_p);
22609
22610 if (!t)
22611 {
22612 /* Fallback to the special case allowed in
22613 [temp.deduct.call]:
22614
22615 If P is a class, and P has the form
22616 template-id, then A can be a derived class of
22617 the deduced A. Likewise, if P is a pointer to
22618 a class of the form template-id, A can be a
22619 pointer to a derived class pointed to by the
22620 deduced A. */
22621 enum template_base_result r;
22622 r = get_template_base (tparms, targs, parm, arg,
22623 explain_p, &t);
22624
22625 if (!t)
22626 {
22627 /* Don't give the derived diagnostic if we're
22628 already dealing with the same template. */
22629 bool same_template
22630 = (CLASSTYPE_TEMPLATE_INFO (arg)
22631 && (CLASSTYPE_TI_TEMPLATE (parm)
22632 == CLASSTYPE_TI_TEMPLATE (arg)));
22633 return unify_no_common_base (explain_p && !same_template,
22634 r, parm, arg);
22635 }
22636 }
22637 }
22638 else if (CLASSTYPE_TEMPLATE_INFO (arg)
22639 && (CLASSTYPE_TI_TEMPLATE (parm)
22640 == CLASSTYPE_TI_TEMPLATE (arg)))
22641 /* Perhaps PARM is something like S<U> and ARG is S<int>.
22642 Then, we should unify `int' and `U'. */
22643 t = arg;
22644 else
22645 /* There's no chance of unification succeeding. */
22646 return unify_type_mismatch (explain_p, parm, arg);
22647
22648 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
22649 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
22650 }
22651 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
22652 return unify_type_mismatch (explain_p, parm, arg);
22653 return unify_success (explain_p);
22654
22655 case METHOD_TYPE:
22656 case FUNCTION_TYPE:
22657 {
22658 unsigned int nargs;
22659 tree *args;
22660 tree a;
22661 unsigned int i;
22662
22663 if (TREE_CODE (arg) != TREE_CODE (parm))
22664 return unify_type_mismatch (explain_p, parm, arg);
22665
22666 /* CV qualifications for methods can never be deduced, they must
22667 match exactly. We need to check them explicitly here,
22668 because type_unification_real treats them as any other
22669 cv-qualified parameter. */
22670 if (TREE_CODE (parm) == METHOD_TYPE
22671 && (!check_cv_quals_for_unify
22672 (UNIFY_ALLOW_NONE,
22673 class_of_this_parm (arg),
22674 class_of_this_parm (parm))))
22675 return unify_cv_qual_mismatch (explain_p, parm, arg);
22676 if (TREE_CODE (arg) == FUNCTION_TYPE
22677 && type_memfn_quals (parm) != type_memfn_quals (arg))
22678 return unify_cv_qual_mismatch (explain_p, parm, arg);
22679 if (type_memfn_rqual (parm) != type_memfn_rqual (arg))
22680 return unify_type_mismatch (explain_p, parm, arg);
22681
22682 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
22683 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
22684
22685 nargs = list_length (TYPE_ARG_TYPES (arg));
22686 args = XALLOCAVEC (tree, nargs);
22687 for (a = TYPE_ARG_TYPES (arg), i = 0;
22688 a != NULL_TREE && a != void_list_node;
22689 a = TREE_CHAIN (a), ++i)
22690 args[i] = TREE_VALUE (a);
22691 nargs = i;
22692
22693 if (type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
22694 args, nargs, 1, DEDUCE_EXACT,
22695 NULL, explain_p))
22696 return 1;
22697
22698 if (flag_noexcept_type)
22699 {
22700 tree pspec = TYPE_RAISES_EXCEPTIONS (parm);
22701 tree aspec = canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (arg));
22702 if (pspec == NULL_TREE) pspec = noexcept_false_spec;
22703 if (aspec == NULL_TREE) aspec = noexcept_false_spec;
22704 if (TREE_PURPOSE (pspec) && TREE_PURPOSE (aspec)
22705 && uses_template_parms (TREE_PURPOSE (pspec)))
22706 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_PURPOSE (pspec),
22707 TREE_PURPOSE (aspec),
22708 UNIFY_ALLOW_NONE, explain_p);
22709 else if (nothrow_spec_p (pspec) && !nothrow_spec_p (aspec))
22710 return unify_type_mismatch (explain_p, parm, arg);
22711 }
22712
22713 return 0;
22714 }
22715
22716 case OFFSET_TYPE:
22717 /* Unify a pointer to member with a pointer to member function, which
22718 deduces the type of the member as a function type. */
22719 if (TYPE_PTRMEMFUNC_P (arg))
22720 {
22721 /* Check top-level cv qualifiers */
22722 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
22723 return unify_cv_qual_mismatch (explain_p, parm, arg);
22724
22725 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
22726 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
22727 UNIFY_ALLOW_NONE, explain_p);
22728
22729 /* Determine the type of the function we are unifying against. */
22730 tree fntype = static_fn_type (arg);
22731
22732 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
22733 }
22734
22735 if (TREE_CODE (arg) != OFFSET_TYPE)
22736 return unify_type_mismatch (explain_p, parm, arg);
22737 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
22738 TYPE_OFFSET_BASETYPE (arg),
22739 UNIFY_ALLOW_NONE, explain_p);
22740 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
22741 strict, explain_p);
22742
22743 case CONST_DECL:
22744 if (DECL_TEMPLATE_PARM_P (parm))
22745 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
22746 if (arg != scalar_constant_value (parm))
22747 return unify_template_argument_mismatch (explain_p, parm, arg);
22748 return unify_success (explain_p);
22749
22750 case FIELD_DECL:
22751 case TEMPLATE_DECL:
22752 /* Matched cases are handled by the ARG == PARM test above. */
22753 return unify_template_argument_mismatch (explain_p, parm, arg);
22754
22755 case VAR_DECL:
22756 /* We might get a variable as a non-type template argument in parm if the
22757 corresponding parameter is type-dependent. Make any necessary
22758 adjustments based on whether arg is a reference. */
22759 if (CONSTANT_CLASS_P (arg))
22760 parm = fold_non_dependent_expr (parm, complain);
22761 else if (REFERENCE_REF_P (arg))
22762 {
22763 tree sub = TREE_OPERAND (arg, 0);
22764 STRIP_NOPS (sub);
22765 if (TREE_CODE (sub) == ADDR_EXPR)
22766 arg = TREE_OPERAND (sub, 0);
22767 }
22768 /* Now use the normal expression code to check whether they match. */
22769 goto expr;
22770
22771 case TYPE_ARGUMENT_PACK:
22772 case NONTYPE_ARGUMENT_PACK:
22773 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
22774 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
22775
22776 case TYPEOF_TYPE:
22777 case DECLTYPE_TYPE:
22778 case UNDERLYING_TYPE:
22779 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
22780 or UNDERLYING_TYPE nodes. */
22781 return unify_success (explain_p);
22782
22783 case ERROR_MARK:
22784 /* Unification fails if we hit an error node. */
22785 return unify_invalid (explain_p);
22786
22787 case INDIRECT_REF:
22788 if (REFERENCE_REF_P (parm))
22789 {
22790 bool pexp = PACK_EXPANSION_P (arg);
22791 if (pexp)
22792 arg = PACK_EXPANSION_PATTERN (arg);
22793 if (REFERENCE_REF_P (arg))
22794 arg = TREE_OPERAND (arg, 0);
22795 if (pexp)
22796 arg = make_pack_expansion (arg, complain);
22797 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
22798 strict, explain_p);
22799 }
22800 /* FALLTHRU */
22801
22802 default:
22803 /* An unresolved overload is a nondeduced context. */
22804 if (is_overloaded_fn (parm) || type_unknown_p (parm))
22805 return unify_success (explain_p);
22806 gcc_assert (EXPR_P (parm)
22807 || COMPOUND_LITERAL_P (parm)
22808 || TREE_CODE (parm) == TRAIT_EXPR);
22809 expr:
22810 /* We must be looking at an expression. This can happen with
22811 something like:
22812
22813 template <int I>
22814 void foo(S<I>, S<I + 2>);
22815
22816 or
22817
22818 template<typename T>
22819 void foo(A<T, T{}>);
22820
22821 This is a "non-deduced context":
22822
22823 [deduct.type]
22824
22825 The non-deduced contexts are:
22826
22827 --A non-type template argument or an array bound in which
22828 a subexpression references a template parameter.
22829
22830 In these cases, we assume deduction succeeded, but don't
22831 actually infer any unifications. */
22832
22833 if (!uses_template_parms (parm)
22834 && !template_args_equal (parm, arg))
22835 return unify_expression_unequal (explain_p, parm, arg);
22836 else
22837 return unify_success (explain_p);
22838 }
22839 }
22840 #undef RECUR_AND_CHECK_FAILURE
22841 \f
22842 /* Note that DECL can be defined in this translation unit, if
22843 required. */
22844
22845 static void
22846 mark_definable (tree decl)
22847 {
22848 tree clone;
22849 DECL_NOT_REALLY_EXTERN (decl) = 1;
22850 FOR_EACH_CLONE (clone, decl)
22851 DECL_NOT_REALLY_EXTERN (clone) = 1;
22852 }
22853
22854 /* Called if RESULT is explicitly instantiated, or is a member of an
22855 explicitly instantiated class. */
22856
22857 void
22858 mark_decl_instantiated (tree result, int extern_p)
22859 {
22860 SET_DECL_EXPLICIT_INSTANTIATION (result);
22861
22862 /* If this entity has already been written out, it's too late to
22863 make any modifications. */
22864 if (TREE_ASM_WRITTEN (result))
22865 return;
22866
22867 /* For anonymous namespace we don't need to do anything. */
22868 if (decl_anon_ns_mem_p (result))
22869 {
22870 gcc_assert (!TREE_PUBLIC (result));
22871 return;
22872 }
22873
22874 if (TREE_CODE (result) != FUNCTION_DECL)
22875 /* The TREE_PUBLIC flag for function declarations will have been
22876 set correctly by tsubst. */
22877 TREE_PUBLIC (result) = 1;
22878
22879 /* This might have been set by an earlier implicit instantiation. */
22880 DECL_COMDAT (result) = 0;
22881
22882 if (extern_p)
22883 DECL_NOT_REALLY_EXTERN (result) = 0;
22884 else
22885 {
22886 mark_definable (result);
22887 mark_needed (result);
22888 /* Always make artificials weak. */
22889 if (DECL_ARTIFICIAL (result) && flag_weak)
22890 comdat_linkage (result);
22891 /* For WIN32 we also want to put explicit instantiations in
22892 linkonce sections. */
22893 else if (TREE_PUBLIC (result))
22894 maybe_make_one_only (result);
22895 if (TREE_CODE (result) == FUNCTION_DECL
22896 && DECL_TEMPLATE_INSTANTIATED (result))
22897 /* If the function has already been instantiated, clear DECL_EXTERNAL,
22898 since start_preparsed_function wouldn't have if we had an earlier
22899 extern explicit instantiation. */
22900 DECL_EXTERNAL (result) = 0;
22901 }
22902
22903 /* If EXTERN_P, then this function will not be emitted -- unless
22904 followed by an explicit instantiation, at which point its linkage
22905 will be adjusted. If !EXTERN_P, then this function will be
22906 emitted here. In neither circumstance do we want
22907 import_export_decl to adjust the linkage. */
22908 DECL_INTERFACE_KNOWN (result) = 1;
22909 }
22910
22911 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
22912 important template arguments. If any are missing, we check whether
22913 they're important by using error_mark_node for substituting into any
22914 args that were used for partial ordering (the ones between ARGS and END)
22915 and seeing if it bubbles up. */
22916
22917 static bool
22918 check_undeduced_parms (tree targs, tree args, tree end)
22919 {
22920 bool found = false;
22921 int i;
22922 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
22923 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
22924 {
22925 found = true;
22926 TREE_VEC_ELT (targs, i) = error_mark_node;
22927 }
22928 if (found)
22929 {
22930 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
22931 if (substed == error_mark_node)
22932 return true;
22933 }
22934 return false;
22935 }
22936
22937 /* Given two function templates PAT1 and PAT2, return:
22938
22939 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
22940 -1 if PAT2 is more specialized than PAT1.
22941 0 if neither is more specialized.
22942
22943 LEN indicates the number of parameters we should consider
22944 (defaulted parameters should not be considered).
22945
22946 The 1998 std underspecified function template partial ordering, and
22947 DR214 addresses the issue. We take pairs of arguments, one from
22948 each of the templates, and deduce them against each other. One of
22949 the templates will be more specialized if all the *other*
22950 template's arguments deduce against its arguments and at least one
22951 of its arguments *does* *not* deduce against the other template's
22952 corresponding argument. Deduction is done as for class templates.
22953 The arguments used in deduction have reference and top level cv
22954 qualifiers removed. Iff both arguments were originally reference
22955 types *and* deduction succeeds in both directions, an lvalue reference
22956 wins against an rvalue reference and otherwise the template
22957 with the more cv-qualified argument wins for that pairing (if
22958 neither is more cv-qualified, they both are equal). Unlike regular
22959 deduction, after all the arguments have been deduced in this way,
22960 we do *not* verify the deduced template argument values can be
22961 substituted into non-deduced contexts.
22962
22963 The logic can be a bit confusing here, because we look at deduce1 and
22964 targs1 to see if pat2 is at least as specialized, and vice versa; if we
22965 can find template arguments for pat1 to make arg1 look like arg2, that
22966 means that arg2 is at least as specialized as arg1. */
22967
22968 int
22969 more_specialized_fn (tree pat1, tree pat2, int len)
22970 {
22971 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
22972 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
22973 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
22974 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
22975 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
22976 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
22977 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
22978 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
22979 tree origs1, origs2;
22980 bool lose1 = false;
22981 bool lose2 = false;
22982
22983 /* Remove the this parameter from non-static member functions. If
22984 one is a non-static member function and the other is not a static
22985 member function, remove the first parameter from that function
22986 also. This situation occurs for operator functions where we
22987 locate both a member function (with this pointer) and non-member
22988 operator (with explicit first operand). */
22989 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
22990 {
22991 len--; /* LEN is the number of significant arguments for DECL1 */
22992 args1 = TREE_CHAIN (args1);
22993 if (!DECL_STATIC_FUNCTION_P (decl2))
22994 args2 = TREE_CHAIN (args2);
22995 }
22996 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
22997 {
22998 args2 = TREE_CHAIN (args2);
22999 if (!DECL_STATIC_FUNCTION_P (decl1))
23000 {
23001 len--;
23002 args1 = TREE_CHAIN (args1);
23003 }
23004 }
23005
23006 /* If only one is a conversion operator, they are unordered. */
23007 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
23008 return 0;
23009
23010 /* Consider the return type for a conversion function */
23011 if (DECL_CONV_FN_P (decl1))
23012 {
23013 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
23014 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
23015 len++;
23016 }
23017
23018 processing_template_decl++;
23019
23020 origs1 = args1;
23021 origs2 = args2;
23022
23023 while (len--
23024 /* Stop when an ellipsis is seen. */
23025 && args1 != NULL_TREE && args2 != NULL_TREE)
23026 {
23027 tree arg1 = TREE_VALUE (args1);
23028 tree arg2 = TREE_VALUE (args2);
23029 int deduce1, deduce2;
23030 int quals1 = -1;
23031 int quals2 = -1;
23032 int ref1 = 0;
23033 int ref2 = 0;
23034
23035 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
23036 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
23037 {
23038 /* When both arguments are pack expansions, we need only
23039 unify the patterns themselves. */
23040 arg1 = PACK_EXPANSION_PATTERN (arg1);
23041 arg2 = PACK_EXPANSION_PATTERN (arg2);
23042
23043 /* This is the last comparison we need to do. */
23044 len = 0;
23045 }
23046
23047 /* DR 1847: If a particular P contains no template-parameters that
23048 participate in template argument deduction, that P is not used to
23049 determine the ordering. */
23050 if (!uses_deducible_template_parms (arg1)
23051 && !uses_deducible_template_parms (arg2))
23052 goto next;
23053
23054 if (TYPE_REF_P (arg1))
23055 {
23056 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
23057 arg1 = TREE_TYPE (arg1);
23058 quals1 = cp_type_quals (arg1);
23059 }
23060
23061 if (TYPE_REF_P (arg2))
23062 {
23063 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
23064 arg2 = TREE_TYPE (arg2);
23065 quals2 = cp_type_quals (arg2);
23066 }
23067
23068 arg1 = TYPE_MAIN_VARIANT (arg1);
23069 arg2 = TYPE_MAIN_VARIANT (arg2);
23070
23071 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
23072 {
23073 int i, len2 = remaining_arguments (args2);
23074 tree parmvec = make_tree_vec (1);
23075 tree argvec = make_tree_vec (len2);
23076 tree ta = args2;
23077
23078 /* Setup the parameter vector, which contains only ARG1. */
23079 TREE_VEC_ELT (parmvec, 0) = arg1;
23080
23081 /* Setup the argument vector, which contains the remaining
23082 arguments. */
23083 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
23084 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
23085
23086 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
23087 argvec, DEDUCE_EXACT,
23088 /*subr=*/true, /*explain_p=*/false)
23089 == 0);
23090
23091 /* We cannot deduce in the other direction, because ARG1 is
23092 a pack expansion but ARG2 is not. */
23093 deduce2 = 0;
23094 }
23095 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
23096 {
23097 int i, len1 = remaining_arguments (args1);
23098 tree parmvec = make_tree_vec (1);
23099 tree argvec = make_tree_vec (len1);
23100 tree ta = args1;
23101
23102 /* Setup the parameter vector, which contains only ARG1. */
23103 TREE_VEC_ELT (parmvec, 0) = arg2;
23104
23105 /* Setup the argument vector, which contains the remaining
23106 arguments. */
23107 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
23108 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
23109
23110 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
23111 argvec, DEDUCE_EXACT,
23112 /*subr=*/true, /*explain_p=*/false)
23113 == 0);
23114
23115 /* We cannot deduce in the other direction, because ARG2 is
23116 a pack expansion but ARG1 is not.*/
23117 deduce1 = 0;
23118 }
23119
23120 else
23121 {
23122 /* The normal case, where neither argument is a pack
23123 expansion. */
23124 deduce1 = (unify (tparms1, targs1, arg1, arg2,
23125 UNIFY_ALLOW_NONE, /*explain_p=*/false)
23126 == 0);
23127 deduce2 = (unify (tparms2, targs2, arg2, arg1,
23128 UNIFY_ALLOW_NONE, /*explain_p=*/false)
23129 == 0);
23130 }
23131
23132 /* If we couldn't deduce arguments for tparms1 to make arg1 match
23133 arg2, then arg2 is not as specialized as arg1. */
23134 if (!deduce1)
23135 lose2 = true;
23136 if (!deduce2)
23137 lose1 = true;
23138
23139 /* "If, for a given type, deduction succeeds in both directions
23140 (i.e., the types are identical after the transformations above)
23141 and both P and A were reference types (before being replaced with
23142 the type referred to above):
23143 - if the type from the argument template was an lvalue reference and
23144 the type from the parameter template was not, the argument type is
23145 considered to be more specialized than the other; otherwise,
23146 - if the type from the argument template is more cv-qualified
23147 than the type from the parameter template (as described above),
23148 the argument type is considered to be more specialized than the other;
23149 otherwise,
23150 - neither type is more specialized than the other." */
23151
23152 if (deduce1 && deduce2)
23153 {
23154 if (ref1 && ref2 && ref1 != ref2)
23155 {
23156 if (ref1 > ref2)
23157 lose1 = true;
23158 else
23159 lose2 = true;
23160 }
23161 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
23162 {
23163 if ((quals1 & quals2) == quals2)
23164 lose2 = true;
23165 if ((quals1 & quals2) == quals1)
23166 lose1 = true;
23167 }
23168 }
23169
23170 if (lose1 && lose2)
23171 /* We've failed to deduce something in either direction.
23172 These must be unordered. */
23173 break;
23174
23175 next:
23176
23177 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
23178 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
23179 /* We have already processed all of the arguments in our
23180 handing of the pack expansion type. */
23181 len = 0;
23182
23183 args1 = TREE_CHAIN (args1);
23184 args2 = TREE_CHAIN (args2);
23185 }
23186
23187 /* "In most cases, all template parameters must have values in order for
23188 deduction to succeed, but for partial ordering purposes a template
23189 parameter may remain without a value provided it is not used in the
23190 types being used for partial ordering."
23191
23192 Thus, if we are missing any of the targs1 we need to substitute into
23193 origs1, then pat2 is not as specialized as pat1. This can happen when
23194 there is a nondeduced context. */
23195 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
23196 lose2 = true;
23197 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
23198 lose1 = true;
23199
23200 processing_template_decl--;
23201
23202 /* If both deductions succeed, the partial ordering selects the more
23203 constrained template. */
23204 if (!lose1 && !lose2)
23205 {
23206 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
23207 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
23208 lose1 = !subsumes_constraints (c1, c2);
23209 lose2 = !subsumes_constraints (c2, c1);
23210 }
23211
23212 /* All things being equal, if the next argument is a pack expansion
23213 for one function but not for the other, prefer the
23214 non-variadic function. FIXME this is bogus; see c++/41958. */
23215 if (lose1 == lose2
23216 && args1 && TREE_VALUE (args1)
23217 && args2 && TREE_VALUE (args2))
23218 {
23219 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
23220 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
23221 }
23222
23223 if (lose1 == lose2)
23224 return 0;
23225 else if (!lose1)
23226 return 1;
23227 else
23228 return -1;
23229 }
23230
23231 /* Determine which of two partial specializations of TMPL is more
23232 specialized.
23233
23234 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
23235 to the first partial specialization. The TREE_PURPOSE is the
23236 innermost set of template parameters for the partial
23237 specialization. PAT2 is similar, but for the second template.
23238
23239 Return 1 if the first partial specialization is more specialized;
23240 -1 if the second is more specialized; 0 if neither is more
23241 specialized.
23242
23243 See [temp.class.order] for information about determining which of
23244 two templates is more specialized. */
23245
23246 static int
23247 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
23248 {
23249 tree targs;
23250 int winner = 0;
23251 bool any_deductions = false;
23252
23253 tree tmpl1 = TREE_VALUE (pat1);
23254 tree tmpl2 = TREE_VALUE (pat2);
23255 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
23256 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
23257
23258 /* Just like what happens for functions, if we are ordering between
23259 different template specializations, we may encounter dependent
23260 types in the arguments, and we need our dependency check functions
23261 to behave correctly. */
23262 ++processing_template_decl;
23263 targs = get_partial_spec_bindings (tmpl, tmpl1, specargs2);
23264 if (targs)
23265 {
23266 --winner;
23267 any_deductions = true;
23268 }
23269
23270 targs = get_partial_spec_bindings (tmpl, tmpl2, specargs1);
23271 if (targs)
23272 {
23273 ++winner;
23274 any_deductions = true;
23275 }
23276 --processing_template_decl;
23277
23278 /* If both deductions succeed, the partial ordering selects the more
23279 constrained template. */
23280 if (!winner && any_deductions)
23281 return more_constrained (tmpl1, tmpl2);
23282
23283 /* In the case of a tie where at least one of the templates
23284 has a parameter pack at the end, the template with the most
23285 non-packed parameters wins. */
23286 if (winner == 0
23287 && any_deductions
23288 && (template_args_variadic_p (TREE_PURPOSE (pat1))
23289 || template_args_variadic_p (TREE_PURPOSE (pat2))))
23290 {
23291 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
23292 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
23293 int len1 = TREE_VEC_LENGTH (args1);
23294 int len2 = TREE_VEC_LENGTH (args2);
23295
23296 /* We don't count the pack expansion at the end. */
23297 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
23298 --len1;
23299 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
23300 --len2;
23301
23302 if (len1 > len2)
23303 return 1;
23304 else if (len1 < len2)
23305 return -1;
23306 }
23307
23308 return winner;
23309 }
23310
23311 /* Return the template arguments that will produce the function signature
23312 DECL from the function template FN, with the explicit template
23313 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
23314 also match. Return NULL_TREE if no satisfactory arguments could be
23315 found. */
23316
23317 static tree
23318 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
23319 {
23320 int ntparms = DECL_NTPARMS (fn);
23321 tree targs = make_tree_vec (ntparms);
23322 tree decl_type = TREE_TYPE (decl);
23323 tree decl_arg_types;
23324 tree *args;
23325 unsigned int nargs, ix;
23326 tree arg;
23327
23328 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
23329
23330 /* Never do unification on the 'this' parameter. */
23331 decl_arg_types = skip_artificial_parms_for (decl,
23332 TYPE_ARG_TYPES (decl_type));
23333
23334 nargs = list_length (decl_arg_types);
23335 args = XALLOCAVEC (tree, nargs);
23336 for (arg = decl_arg_types, ix = 0;
23337 arg != NULL_TREE && arg != void_list_node;
23338 arg = TREE_CHAIN (arg), ++ix)
23339 args[ix] = TREE_VALUE (arg);
23340
23341 if (fn_type_unification (fn, explicit_args, targs,
23342 args, ix,
23343 (check_rettype || DECL_CONV_FN_P (fn)
23344 ? TREE_TYPE (decl_type) : NULL_TREE),
23345 DEDUCE_EXACT, LOOKUP_NORMAL, NULL,
23346 /*explain_p=*/false,
23347 /*decltype*/false)
23348 == error_mark_node)
23349 return NULL_TREE;
23350
23351 return targs;
23352 }
23353
23354 /* Return the innermost template arguments that, when applied to a partial
23355 specialization SPEC_TMPL of TMPL, yield the ARGS.
23356
23357 For example, suppose we have:
23358
23359 template <class T, class U> struct S {};
23360 template <class T> struct S<T*, int> {};
23361
23362 Then, suppose we want to get `S<double*, int>'. SPEC_TMPL will be the
23363 partial specialization and the ARGS will be {double*, int}. The resulting
23364 vector will be {double}, indicating that `T' is bound to `double'. */
23365
23366 static tree
23367 get_partial_spec_bindings (tree tmpl, tree spec_tmpl, tree args)
23368 {
23369 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
23370 tree spec_args
23371 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (spec_tmpl)));
23372 int i, ntparms = TREE_VEC_LENGTH (tparms);
23373 tree deduced_args;
23374 tree innermost_deduced_args;
23375
23376 innermost_deduced_args = make_tree_vec (ntparms);
23377 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
23378 {
23379 deduced_args = copy_node (args);
23380 SET_TMPL_ARGS_LEVEL (deduced_args,
23381 TMPL_ARGS_DEPTH (deduced_args),
23382 innermost_deduced_args);
23383 }
23384 else
23385 deduced_args = innermost_deduced_args;
23386
23387 bool tried_array_deduction = (cxx_dialect < cxx17);
23388 again:
23389 if (unify (tparms, deduced_args,
23390 INNERMOST_TEMPLATE_ARGS (spec_args),
23391 INNERMOST_TEMPLATE_ARGS (args),
23392 UNIFY_ALLOW_NONE, /*explain_p=*/false))
23393 return NULL_TREE;
23394
23395 for (i = 0; i < ntparms; ++i)
23396 if (! TREE_VEC_ELT (innermost_deduced_args, i))
23397 {
23398 if (!tried_array_deduction)
23399 {
23400 try_array_deduction (tparms, innermost_deduced_args,
23401 INNERMOST_TEMPLATE_ARGS (spec_args));
23402 tried_array_deduction = true;
23403 if (TREE_VEC_ELT (innermost_deduced_args, i))
23404 goto again;
23405 }
23406 return NULL_TREE;
23407 }
23408
23409 if (!push_tinst_level (spec_tmpl, deduced_args))
23410 {
23411 excessive_deduction_depth = true;
23412 return NULL_TREE;
23413 }
23414
23415 /* Verify that nondeduced template arguments agree with the type
23416 obtained from argument deduction.
23417
23418 For example:
23419
23420 struct A { typedef int X; };
23421 template <class T, class U> struct C {};
23422 template <class T> struct C<T, typename T::X> {};
23423
23424 Then with the instantiation `C<A, int>', we can deduce that
23425 `T' is `A' but unify () does not check whether `typename T::X'
23426 is `int'. */
23427 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
23428
23429 if (spec_args != error_mark_node)
23430 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
23431 INNERMOST_TEMPLATE_ARGS (spec_args),
23432 tmpl, tf_none, false, false);
23433
23434 pop_tinst_level ();
23435
23436 if (spec_args == error_mark_node
23437 /* We only need to check the innermost arguments; the other
23438 arguments will always agree. */
23439 || !comp_template_args_porder (INNERMOST_TEMPLATE_ARGS (spec_args),
23440 INNERMOST_TEMPLATE_ARGS (args)))
23441 return NULL_TREE;
23442
23443 /* Now that we have bindings for all of the template arguments,
23444 ensure that the arguments deduced for the template template
23445 parameters have compatible template parameter lists. See the use
23446 of template_template_parm_bindings_ok_p in fn_type_unification
23447 for more information. */
23448 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
23449 return NULL_TREE;
23450
23451 return deduced_args;
23452 }
23453
23454 // Compare two function templates T1 and T2 by deducing bindings
23455 // from one against the other. If both deductions succeed, compare
23456 // constraints to see which is more constrained.
23457 static int
23458 more_specialized_inst (tree t1, tree t2)
23459 {
23460 int fate = 0;
23461 int count = 0;
23462
23463 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
23464 {
23465 --fate;
23466 ++count;
23467 }
23468
23469 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
23470 {
23471 ++fate;
23472 ++count;
23473 }
23474
23475 // If both deductions succeed, then one may be more constrained.
23476 if (count == 2 && fate == 0)
23477 fate = more_constrained (t1, t2);
23478
23479 return fate;
23480 }
23481
23482 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
23483 Return the TREE_LIST node with the most specialized template, if
23484 any. If there is no most specialized template, the error_mark_node
23485 is returned.
23486
23487 Note that this function does not look at, or modify, the
23488 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
23489 returned is one of the elements of INSTANTIATIONS, callers may
23490 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
23491 and retrieve it from the value returned. */
23492
23493 tree
23494 most_specialized_instantiation (tree templates)
23495 {
23496 tree fn, champ;
23497
23498 ++processing_template_decl;
23499
23500 champ = templates;
23501 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
23502 {
23503 gcc_assert (TREE_VALUE (champ) != TREE_VALUE (fn));
23504 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
23505 if (fate == -1)
23506 champ = fn;
23507 else if (!fate)
23508 {
23509 /* Equally specialized, move to next function. If there
23510 is no next function, nothing's most specialized. */
23511 fn = TREE_CHAIN (fn);
23512 champ = fn;
23513 if (!fn)
23514 break;
23515 }
23516 }
23517
23518 if (champ)
23519 /* Now verify that champ is better than everything earlier in the
23520 instantiation list. */
23521 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
23522 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
23523 {
23524 champ = NULL_TREE;
23525 break;
23526 }
23527 }
23528
23529 processing_template_decl--;
23530
23531 if (!champ)
23532 return error_mark_node;
23533
23534 return champ;
23535 }
23536
23537 /* If DECL is a specialization of some template, return the most
23538 general such template. Otherwise, returns NULL_TREE.
23539
23540 For example, given:
23541
23542 template <class T> struct S { template <class U> void f(U); };
23543
23544 if TMPL is `template <class U> void S<int>::f(U)' this will return
23545 the full template. This function will not trace past partial
23546 specializations, however. For example, given in addition:
23547
23548 template <class T> struct S<T*> { template <class U> void f(U); };
23549
23550 if TMPL is `template <class U> void S<int*>::f(U)' this will return
23551 `template <class T> template <class U> S<T*>::f(U)'. */
23552
23553 tree
23554 most_general_template (tree decl)
23555 {
23556 if (TREE_CODE (decl) != TEMPLATE_DECL)
23557 {
23558 if (tree tinfo = get_template_info (decl))
23559 decl = TI_TEMPLATE (tinfo);
23560 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
23561 template friend, or a FIELD_DECL for a capture pack. */
23562 if (TREE_CODE (decl) != TEMPLATE_DECL)
23563 return NULL_TREE;
23564 }
23565
23566 /* Look for more and more general templates. */
23567 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
23568 {
23569 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
23570 (See cp-tree.h for details.) */
23571 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
23572 break;
23573
23574 if (CLASS_TYPE_P (TREE_TYPE (decl))
23575 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
23576 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
23577 break;
23578
23579 /* Stop if we run into an explicitly specialized class template. */
23580 if (!DECL_NAMESPACE_SCOPE_P (decl)
23581 && DECL_CONTEXT (decl)
23582 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
23583 break;
23584
23585 decl = DECL_TI_TEMPLATE (decl);
23586 }
23587
23588 return decl;
23589 }
23590
23591 /* Return the most specialized of the template partial specializations
23592 which can produce TARGET, a specialization of some class or variable
23593 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
23594 a TEMPLATE_DECL node corresponding to the partial specialization, while
23595 the TREE_PURPOSE is the set of template arguments that must be
23596 substituted into the template pattern in order to generate TARGET.
23597
23598 If the choice of partial specialization is ambiguous, a diagnostic
23599 is issued, and the error_mark_node is returned. If there are no
23600 partial specializations matching TARGET, then NULL_TREE is
23601 returned, indicating that the primary template should be used. */
23602
23603 static tree
23604 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
23605 {
23606 tree list = NULL_TREE;
23607 tree t;
23608 tree champ;
23609 int fate;
23610 bool ambiguous_p;
23611 tree outer_args = NULL_TREE;
23612 tree tmpl, args;
23613
23614 if (TYPE_P (target))
23615 {
23616 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
23617 tmpl = TI_TEMPLATE (tinfo);
23618 args = TI_ARGS (tinfo);
23619 }
23620 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
23621 {
23622 tmpl = TREE_OPERAND (target, 0);
23623 args = TREE_OPERAND (target, 1);
23624 }
23625 else if (VAR_P (target))
23626 {
23627 tree tinfo = DECL_TEMPLATE_INFO (target);
23628 tmpl = TI_TEMPLATE (tinfo);
23629 args = TI_ARGS (tinfo);
23630 }
23631 else
23632 gcc_unreachable ();
23633
23634 tree main_tmpl = most_general_template (tmpl);
23635
23636 /* For determining which partial specialization to use, only the
23637 innermost args are interesting. */
23638 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
23639 {
23640 outer_args = strip_innermost_template_args (args, 1);
23641 args = INNERMOST_TEMPLATE_ARGS (args);
23642 }
23643
23644 /* The caller hasn't called push_to_top_level yet, but we need
23645 get_partial_spec_bindings to be done in non-template context so that we'll
23646 fully resolve everything. */
23647 processing_template_decl_sentinel ptds;
23648
23649 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
23650 {
23651 tree spec_args;
23652 tree spec_tmpl = TREE_VALUE (t);
23653
23654 if (outer_args)
23655 {
23656 /* Substitute in the template args from the enclosing class. */
23657 ++processing_template_decl;
23658 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
23659 --processing_template_decl;
23660 }
23661
23662 if (spec_tmpl == error_mark_node)
23663 return error_mark_node;
23664
23665 spec_args = get_partial_spec_bindings (tmpl, spec_tmpl, args);
23666 if (spec_args)
23667 {
23668 if (outer_args)
23669 spec_args = add_to_template_args (outer_args, spec_args);
23670
23671 /* Keep the candidate only if the constraints are satisfied,
23672 or if we're not compiling with concepts. */
23673 if (!flag_concepts
23674 || constraints_satisfied_p (spec_tmpl, spec_args))
23675 {
23676 list = tree_cons (spec_args, TREE_VALUE (t), list);
23677 TREE_TYPE (list) = TREE_TYPE (t);
23678 }
23679 }
23680 }
23681
23682 if (! list)
23683 return NULL_TREE;
23684
23685 ambiguous_p = false;
23686 t = list;
23687 champ = t;
23688 t = TREE_CHAIN (t);
23689 for (; t; t = TREE_CHAIN (t))
23690 {
23691 fate = more_specialized_partial_spec (tmpl, champ, t);
23692 if (fate == 1)
23693 ;
23694 else
23695 {
23696 if (fate == 0)
23697 {
23698 t = TREE_CHAIN (t);
23699 if (! t)
23700 {
23701 ambiguous_p = true;
23702 break;
23703 }
23704 }
23705 champ = t;
23706 }
23707 }
23708
23709 if (!ambiguous_p)
23710 for (t = list; t && t != champ; t = TREE_CHAIN (t))
23711 {
23712 fate = more_specialized_partial_spec (tmpl, champ, t);
23713 if (fate != 1)
23714 {
23715 ambiguous_p = true;
23716 break;
23717 }
23718 }
23719
23720 if (ambiguous_p)
23721 {
23722 const char *str;
23723 char *spaces = NULL;
23724 if (!(complain & tf_error))
23725 return error_mark_node;
23726 if (TYPE_P (target))
23727 error ("ambiguous template instantiation for %q#T", target);
23728 else
23729 error ("ambiguous template instantiation for %q#D", target);
23730 str = ngettext ("candidate is:", "candidates are:", list_length (list));
23731 for (t = list; t; t = TREE_CHAIN (t))
23732 {
23733 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
23734 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
23735 "%s %#qS", spaces ? spaces : str, subst);
23736 spaces = spaces ? spaces : get_spaces (str);
23737 }
23738 free (spaces);
23739 return error_mark_node;
23740 }
23741
23742 return champ;
23743 }
23744
23745 /* Explicitly instantiate DECL. */
23746
23747 void
23748 do_decl_instantiation (tree decl, tree storage)
23749 {
23750 tree result = NULL_TREE;
23751 int extern_p = 0;
23752
23753 if (!decl || decl == error_mark_node)
23754 /* An error occurred, for which grokdeclarator has already issued
23755 an appropriate message. */
23756 return;
23757 else if (! DECL_LANG_SPECIFIC (decl))
23758 {
23759 error ("explicit instantiation of non-template %q#D", decl);
23760 return;
23761 }
23762 else if (DECL_DECLARED_CONCEPT_P (decl))
23763 {
23764 if (VAR_P (decl))
23765 error ("explicit instantiation of variable concept %q#D", decl);
23766 else
23767 error ("explicit instantiation of function concept %q#D", decl);
23768 return;
23769 }
23770
23771 bool var_templ = (DECL_TEMPLATE_INFO (decl)
23772 && variable_template_p (DECL_TI_TEMPLATE (decl)));
23773
23774 if (VAR_P (decl) && !var_templ)
23775 {
23776 /* There is an asymmetry here in the way VAR_DECLs and
23777 FUNCTION_DECLs are handled by grokdeclarator. In the case of
23778 the latter, the DECL we get back will be marked as a
23779 template instantiation, and the appropriate
23780 DECL_TEMPLATE_INFO will be set up. This does not happen for
23781 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
23782 should handle VAR_DECLs as it currently handles
23783 FUNCTION_DECLs. */
23784 if (!DECL_CLASS_SCOPE_P (decl))
23785 {
23786 error ("%qD is not a static data member of a class template", decl);
23787 return;
23788 }
23789 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
23790 if (!result || !VAR_P (result))
23791 {
23792 error ("no matching template for %qD found", decl);
23793 return;
23794 }
23795 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
23796 {
23797 error ("type %qT for explicit instantiation %qD does not match "
23798 "declared type %qT", TREE_TYPE (result), decl,
23799 TREE_TYPE (decl));
23800 return;
23801 }
23802 }
23803 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
23804 {
23805 error ("explicit instantiation of %q#D", decl);
23806 return;
23807 }
23808 else
23809 result = decl;
23810
23811 /* Check for various error cases. Note that if the explicit
23812 instantiation is valid the RESULT will currently be marked as an
23813 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
23814 until we get here. */
23815
23816 if (DECL_TEMPLATE_SPECIALIZATION (result))
23817 {
23818 /* DR 259 [temp.spec].
23819
23820 Both an explicit instantiation and a declaration of an explicit
23821 specialization shall not appear in a program unless the explicit
23822 instantiation follows a declaration of the explicit specialization.
23823
23824 For a given set of template parameters, if an explicit
23825 instantiation of a template appears after a declaration of an
23826 explicit specialization for that template, the explicit
23827 instantiation has no effect. */
23828 return;
23829 }
23830 else if (DECL_EXPLICIT_INSTANTIATION (result))
23831 {
23832 /* [temp.spec]
23833
23834 No program shall explicitly instantiate any template more
23835 than once.
23836
23837 We check DECL_NOT_REALLY_EXTERN so as not to complain when
23838 the first instantiation was `extern' and the second is not,
23839 and EXTERN_P for the opposite case. */
23840 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
23841 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
23842 /* If an "extern" explicit instantiation follows an ordinary
23843 explicit instantiation, the template is instantiated. */
23844 if (extern_p)
23845 return;
23846 }
23847 else if (!DECL_IMPLICIT_INSTANTIATION (result))
23848 {
23849 error ("no matching template for %qD found", result);
23850 return;
23851 }
23852 else if (!DECL_TEMPLATE_INFO (result))
23853 {
23854 permerror (input_location, "explicit instantiation of non-template %q#D", result);
23855 return;
23856 }
23857
23858 if (storage == NULL_TREE)
23859 ;
23860 else if (storage == ridpointers[(int) RID_EXTERN])
23861 {
23862 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
23863 pedwarn (input_location, OPT_Wpedantic,
23864 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
23865 "instantiations");
23866 extern_p = 1;
23867 }
23868 else
23869 error ("storage class %qD applied to template instantiation", storage);
23870
23871 check_explicit_instantiation_namespace (result);
23872 mark_decl_instantiated (result, extern_p);
23873 if (! extern_p)
23874 instantiate_decl (result, /*defer_ok=*/true,
23875 /*expl_inst_class_mem_p=*/false);
23876 }
23877
23878 static void
23879 mark_class_instantiated (tree t, int extern_p)
23880 {
23881 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
23882 SET_CLASSTYPE_INTERFACE_KNOWN (t);
23883 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
23884 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
23885 if (! extern_p)
23886 {
23887 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
23888 rest_of_type_compilation (t, 1);
23889 }
23890 }
23891
23892 /* Called from do_type_instantiation through binding_table_foreach to
23893 do recursive instantiation for the type bound in ENTRY. */
23894 static void
23895 bt_instantiate_type_proc (binding_entry entry, void *data)
23896 {
23897 tree storage = *(tree *) data;
23898
23899 if (MAYBE_CLASS_TYPE_P (entry->type)
23900 && CLASSTYPE_TEMPLATE_INFO (entry->type)
23901 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
23902 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
23903 }
23904
23905 /* Perform an explicit instantiation of template class T. STORAGE, if
23906 non-null, is the RID for extern, inline or static. COMPLAIN is
23907 nonzero if this is called from the parser, zero if called recursively,
23908 since the standard is unclear (as detailed below). */
23909
23910 void
23911 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
23912 {
23913 int extern_p = 0;
23914 int nomem_p = 0;
23915 int static_p = 0;
23916 int previous_instantiation_extern_p = 0;
23917
23918 if (TREE_CODE (t) == TYPE_DECL)
23919 t = TREE_TYPE (t);
23920
23921 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
23922 {
23923 tree tmpl =
23924 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
23925 if (tmpl)
23926 error ("explicit instantiation of non-class template %qD", tmpl);
23927 else
23928 error ("explicit instantiation of non-template type %qT", t);
23929 return;
23930 }
23931
23932 complete_type (t);
23933
23934 if (!COMPLETE_TYPE_P (t))
23935 {
23936 if (complain & tf_error)
23937 error ("explicit instantiation of %q#T before definition of template",
23938 t);
23939 return;
23940 }
23941
23942 if (storage != NULL_TREE)
23943 {
23944 if (!in_system_header_at (input_location))
23945 {
23946 if (storage == ridpointers[(int) RID_EXTERN])
23947 {
23948 if (cxx_dialect == cxx98)
23949 pedwarn (input_location, OPT_Wpedantic,
23950 "ISO C++ 1998 forbids the use of %<extern%> on "
23951 "explicit instantiations");
23952 }
23953 else
23954 pedwarn (input_location, OPT_Wpedantic,
23955 "ISO C++ forbids the use of %qE"
23956 " on explicit instantiations", storage);
23957 }
23958
23959 if (storage == ridpointers[(int) RID_INLINE])
23960 nomem_p = 1;
23961 else if (storage == ridpointers[(int) RID_EXTERN])
23962 extern_p = 1;
23963 else if (storage == ridpointers[(int) RID_STATIC])
23964 static_p = 1;
23965 else
23966 {
23967 error ("storage class %qD applied to template instantiation",
23968 storage);
23969 extern_p = 0;
23970 }
23971 }
23972
23973 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
23974 {
23975 /* DR 259 [temp.spec].
23976
23977 Both an explicit instantiation and a declaration of an explicit
23978 specialization shall not appear in a program unless the explicit
23979 instantiation follows a declaration of the explicit specialization.
23980
23981 For a given set of template parameters, if an explicit
23982 instantiation of a template appears after a declaration of an
23983 explicit specialization for that template, the explicit
23984 instantiation has no effect. */
23985 return;
23986 }
23987 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
23988 {
23989 /* [temp.spec]
23990
23991 No program shall explicitly instantiate any template more
23992 than once.
23993
23994 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
23995 instantiation was `extern'. If EXTERN_P then the second is.
23996 These cases are OK. */
23997 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
23998
23999 if (!previous_instantiation_extern_p && !extern_p
24000 && (complain & tf_error))
24001 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
24002
24003 /* If we've already instantiated the template, just return now. */
24004 if (!CLASSTYPE_INTERFACE_ONLY (t))
24005 return;
24006 }
24007
24008 check_explicit_instantiation_namespace (TYPE_NAME (t));
24009 mark_class_instantiated (t, extern_p);
24010
24011 if (nomem_p)
24012 return;
24013
24014 /* In contrast to implicit instantiation, where only the
24015 declarations, and not the definitions, of members are
24016 instantiated, we have here:
24017
24018 [temp.explicit]
24019
24020 The explicit instantiation of a class template specialization
24021 implies the instantiation of all of its members not
24022 previously explicitly specialized in the translation unit
24023 containing the explicit instantiation.
24024
24025 Of course, we can't instantiate member template classes, since we
24026 don't have any arguments for them. Note that the standard is
24027 unclear on whether the instantiation of the members are
24028 *explicit* instantiations or not. However, the most natural
24029 interpretation is that it should be an explicit
24030 instantiation. */
24031 for (tree fld = TYPE_FIELDS (t); fld; fld = DECL_CHAIN (fld))
24032 if ((VAR_P (fld)
24033 || (TREE_CODE (fld) == FUNCTION_DECL
24034 && !static_p
24035 && user_provided_p (fld)))
24036 && DECL_TEMPLATE_INSTANTIATION (fld))
24037 {
24038 mark_decl_instantiated (fld, extern_p);
24039 if (! extern_p)
24040 instantiate_decl (fld, /*defer_ok=*/true,
24041 /*expl_inst_class_mem_p=*/true);
24042 }
24043
24044 if (CLASSTYPE_NESTED_UTDS (t))
24045 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
24046 bt_instantiate_type_proc, &storage);
24047 }
24048
24049 /* Given a function DECL, which is a specialization of TMPL, modify
24050 DECL to be a re-instantiation of TMPL with the same template
24051 arguments. TMPL should be the template into which tsubst'ing
24052 should occur for DECL, not the most general template.
24053
24054 One reason for doing this is a scenario like this:
24055
24056 template <class T>
24057 void f(const T&, int i);
24058
24059 void g() { f(3, 7); }
24060
24061 template <class T>
24062 void f(const T& t, const int i) { }
24063
24064 Note that when the template is first instantiated, with
24065 instantiate_template, the resulting DECL will have no name for the
24066 first parameter, and the wrong type for the second. So, when we go
24067 to instantiate the DECL, we regenerate it. */
24068
24069 static void
24070 regenerate_decl_from_template (tree decl, tree tmpl, tree args)
24071 {
24072 /* The arguments used to instantiate DECL, from the most general
24073 template. */
24074 tree code_pattern;
24075
24076 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
24077
24078 /* Make sure that we can see identifiers, and compute access
24079 correctly. */
24080 push_access_scope (decl);
24081
24082 if (TREE_CODE (decl) == FUNCTION_DECL)
24083 {
24084 tree decl_parm;
24085 tree pattern_parm;
24086 tree specs;
24087 int args_depth;
24088 int parms_depth;
24089
24090 args_depth = TMPL_ARGS_DEPTH (args);
24091 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
24092 if (args_depth > parms_depth)
24093 args = get_innermost_template_args (args, parms_depth);
24094
24095 /* Instantiate a dynamic exception-specification. noexcept will be
24096 handled below. */
24097 if (tree raises = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (code_pattern)))
24098 if (TREE_VALUE (raises))
24099 {
24100 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
24101 args, tf_error, NULL_TREE,
24102 /*defer_ok*/false);
24103 if (specs && specs != error_mark_node)
24104 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
24105 specs);
24106 }
24107
24108 /* Merge parameter declarations. */
24109 decl_parm = skip_artificial_parms_for (decl,
24110 DECL_ARGUMENTS (decl));
24111 pattern_parm
24112 = skip_artificial_parms_for (code_pattern,
24113 DECL_ARGUMENTS (code_pattern));
24114 while (decl_parm && !DECL_PACK_P (pattern_parm))
24115 {
24116 tree parm_type;
24117 tree attributes;
24118
24119 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
24120 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
24121 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
24122 NULL_TREE);
24123 parm_type = type_decays_to (parm_type);
24124 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
24125 TREE_TYPE (decl_parm) = parm_type;
24126 attributes = DECL_ATTRIBUTES (pattern_parm);
24127 if (DECL_ATTRIBUTES (decl_parm) != attributes)
24128 {
24129 DECL_ATTRIBUTES (decl_parm) = attributes;
24130 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
24131 }
24132 decl_parm = DECL_CHAIN (decl_parm);
24133 pattern_parm = DECL_CHAIN (pattern_parm);
24134 }
24135 /* Merge any parameters that match with the function parameter
24136 pack. */
24137 if (pattern_parm && DECL_PACK_P (pattern_parm))
24138 {
24139 int i, len;
24140 tree expanded_types;
24141 /* Expand the TYPE_PACK_EXPANSION that provides the types for
24142 the parameters in this function parameter pack. */
24143 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
24144 args, tf_error, NULL_TREE);
24145 len = TREE_VEC_LENGTH (expanded_types);
24146 for (i = 0; i < len; i++)
24147 {
24148 tree parm_type;
24149 tree attributes;
24150
24151 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
24152 /* Rename the parameter to include the index. */
24153 DECL_NAME (decl_parm) =
24154 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
24155 parm_type = TREE_VEC_ELT (expanded_types, i);
24156 parm_type = type_decays_to (parm_type);
24157 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
24158 TREE_TYPE (decl_parm) = parm_type;
24159 attributes = DECL_ATTRIBUTES (pattern_parm);
24160 if (DECL_ATTRIBUTES (decl_parm) != attributes)
24161 {
24162 DECL_ATTRIBUTES (decl_parm) = attributes;
24163 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
24164 }
24165 decl_parm = DECL_CHAIN (decl_parm);
24166 }
24167 }
24168 /* Merge additional specifiers from the CODE_PATTERN. */
24169 if (DECL_DECLARED_INLINE_P (code_pattern)
24170 && !DECL_DECLARED_INLINE_P (decl))
24171 DECL_DECLARED_INLINE_P (decl) = 1;
24172
24173 maybe_instantiate_noexcept (decl, tf_error);
24174 }
24175 else if (VAR_P (decl))
24176 {
24177 start_lambda_scope (decl);
24178 DECL_INITIAL (decl) =
24179 tsubst_init (DECL_INITIAL (code_pattern), decl, args,
24180 tf_error, DECL_TI_TEMPLATE (decl));
24181 finish_lambda_scope ();
24182 if (VAR_HAD_UNKNOWN_BOUND (decl))
24183 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
24184 tf_error, DECL_TI_TEMPLATE (decl));
24185 }
24186 else
24187 gcc_unreachable ();
24188
24189 pop_access_scope (decl);
24190 }
24191
24192 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
24193 substituted to get DECL. */
24194
24195 tree
24196 template_for_substitution (tree decl)
24197 {
24198 tree tmpl = DECL_TI_TEMPLATE (decl);
24199
24200 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
24201 for the instantiation. This is not always the most general
24202 template. Consider, for example:
24203
24204 template <class T>
24205 struct S { template <class U> void f();
24206 template <> void f<int>(); };
24207
24208 and an instantiation of S<double>::f<int>. We want TD to be the
24209 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
24210 while (/* An instantiation cannot have a definition, so we need a
24211 more general template. */
24212 DECL_TEMPLATE_INSTANTIATION (tmpl)
24213 /* We must also deal with friend templates. Given:
24214
24215 template <class T> struct S {
24216 template <class U> friend void f() {};
24217 };
24218
24219 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
24220 so far as the language is concerned, but that's still
24221 where we get the pattern for the instantiation from. On
24222 other hand, if the definition comes outside the class, say:
24223
24224 template <class T> struct S {
24225 template <class U> friend void f();
24226 };
24227 template <class U> friend void f() {}
24228
24229 we don't need to look any further. That's what the check for
24230 DECL_INITIAL is for. */
24231 || (TREE_CODE (decl) == FUNCTION_DECL
24232 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
24233 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
24234 {
24235 /* The present template, TD, should not be a definition. If it
24236 were a definition, we should be using it! Note that we
24237 cannot restructure the loop to just keep going until we find
24238 a template with a definition, since that might go too far if
24239 a specialization was declared, but not defined. */
24240
24241 /* Fetch the more general template. */
24242 tmpl = DECL_TI_TEMPLATE (tmpl);
24243 }
24244
24245 return tmpl;
24246 }
24247
24248 /* Returns true if we need to instantiate this template instance even if we
24249 know we aren't going to emit it. */
24250
24251 bool
24252 always_instantiate_p (tree decl)
24253 {
24254 /* We always instantiate inline functions so that we can inline them. An
24255 explicit instantiation declaration prohibits implicit instantiation of
24256 non-inline functions. With high levels of optimization, we would
24257 normally inline non-inline functions -- but we're not allowed to do
24258 that for "extern template" functions. Therefore, we check
24259 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
24260 return ((TREE_CODE (decl) == FUNCTION_DECL
24261 && (DECL_DECLARED_INLINE_P (decl)
24262 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
24263 /* And we need to instantiate static data members so that
24264 their initializers are available in integral constant
24265 expressions. */
24266 || (VAR_P (decl)
24267 && decl_maybe_constant_var_p (decl)));
24268 }
24269
24270 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
24271 instantiate it now, modifying TREE_TYPE (fn). Returns false on
24272 error, true otherwise. */
24273
24274 bool
24275 maybe_instantiate_noexcept (tree fn, tsubst_flags_t complain)
24276 {
24277 tree fntype, spec, noex, clone;
24278
24279 /* Don't instantiate a noexcept-specification from template context. */
24280 if (processing_template_decl
24281 && (!flag_noexcept_type || type_dependent_expression_p (fn)))
24282 return true;
24283
24284 if (DECL_CLONED_FUNCTION_P (fn))
24285 fn = DECL_CLONED_FUNCTION (fn);
24286
24287 tree orig_fn = NULL_TREE;
24288 /* For a member friend template we can get a TEMPLATE_DECL. Let's use
24289 its FUNCTION_DECL for the rest of this function -- push_access_scope
24290 doesn't accept TEMPLATE_DECLs. */
24291 if (DECL_FUNCTION_TEMPLATE_P (fn))
24292 {
24293 orig_fn = fn;
24294 fn = DECL_TEMPLATE_RESULT (fn);
24295 }
24296
24297 fntype = TREE_TYPE (fn);
24298 spec = TYPE_RAISES_EXCEPTIONS (fntype);
24299
24300 if (!spec || !TREE_PURPOSE (spec))
24301 return true;
24302
24303 noex = TREE_PURPOSE (spec);
24304
24305 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
24306 {
24307 static hash_set<tree>* fns = new hash_set<tree>;
24308 bool added = false;
24309 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
24310 {
24311 spec = get_defaulted_eh_spec (fn, complain);
24312 if (spec == error_mark_node)
24313 /* This might have failed because of an unparsed DMI, so
24314 let's try again later. */
24315 return false;
24316 }
24317 else if (!(added = !fns->add (fn)))
24318 {
24319 /* If hash_set::add returns true, the element was already there. */
24320 location_t loc = cp_expr_loc_or_loc (DEFERRED_NOEXCEPT_PATTERN (noex),
24321 DECL_SOURCE_LOCATION (fn));
24322 error_at (loc,
24323 "exception specification of %qD depends on itself",
24324 fn);
24325 spec = noexcept_false_spec;
24326 }
24327 else if (push_tinst_level (fn))
24328 {
24329 push_to_top_level ();
24330 push_access_scope (fn);
24331 push_deferring_access_checks (dk_no_deferred);
24332 input_location = DECL_SOURCE_LOCATION (fn);
24333
24334 /* If needed, set current_class_ptr for the benefit of
24335 tsubst_copy/PARM_DECL. */
24336 tree tdecl = DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (fn));
24337 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tdecl))
24338 {
24339 tree this_parm = DECL_ARGUMENTS (tdecl);
24340 current_class_ptr = NULL_TREE;
24341 current_class_ref = cp_build_fold_indirect_ref (this_parm);
24342 current_class_ptr = this_parm;
24343 }
24344
24345 /* If this function is represented by a TEMPLATE_DECL, then
24346 the deferred noexcept-specification might still contain
24347 dependent types, even after substitution. And we need the
24348 dependency check functions to work in build_noexcept_spec. */
24349 if (orig_fn)
24350 ++processing_template_decl;
24351
24352 /* Do deferred instantiation of the noexcept-specifier. */
24353 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
24354 DEFERRED_NOEXCEPT_ARGS (noex),
24355 tf_warning_or_error, fn,
24356 /*function_p=*/false,
24357 /*i_c_e_p=*/true);
24358
24359 /* Build up the noexcept-specification. */
24360 spec = build_noexcept_spec (noex, tf_warning_or_error);
24361
24362 if (orig_fn)
24363 --processing_template_decl;
24364
24365 pop_deferring_access_checks ();
24366 pop_access_scope (fn);
24367 pop_tinst_level ();
24368 pop_from_top_level ();
24369 }
24370 else
24371 spec = noexcept_false_spec;
24372
24373 if (added)
24374 fns->remove (fn);
24375
24376 if (spec == error_mark_node)
24377 {
24378 /* This failed with a hard error, so let's go with false. */
24379 gcc_assert (seen_error ());
24380 spec = noexcept_false_spec;
24381 }
24382
24383 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
24384 if (orig_fn)
24385 TREE_TYPE (orig_fn) = TREE_TYPE (fn);
24386 }
24387
24388 FOR_EACH_CLONE (clone, fn)
24389 {
24390 if (TREE_TYPE (clone) == fntype)
24391 TREE_TYPE (clone) = TREE_TYPE (fn);
24392 else
24393 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
24394 }
24395
24396 return true;
24397 }
24398
24399 /* We're starting to process the function INST, an instantiation of PATTERN;
24400 add their parameters to local_specializations. */
24401
24402 static void
24403 register_parameter_specializations (tree pattern, tree inst)
24404 {
24405 tree tmpl_parm = DECL_ARGUMENTS (pattern);
24406 tree spec_parm = DECL_ARGUMENTS (inst);
24407 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (inst))
24408 {
24409 register_local_specialization (spec_parm, tmpl_parm);
24410 spec_parm = skip_artificial_parms_for (inst, spec_parm);
24411 tmpl_parm = skip_artificial_parms_for (pattern, tmpl_parm);
24412 }
24413 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
24414 {
24415 if (!DECL_PACK_P (tmpl_parm))
24416 {
24417 register_local_specialization (spec_parm, tmpl_parm);
24418 spec_parm = DECL_CHAIN (spec_parm);
24419 }
24420 else
24421 {
24422 /* Register the (value) argument pack as a specialization of
24423 TMPL_PARM, then move on. */
24424 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
24425 register_local_specialization (argpack, tmpl_parm);
24426 }
24427 }
24428 gcc_assert (!spec_parm);
24429 }
24430
24431 /* Produce the definition of D, a _DECL generated from a template. If
24432 DEFER_OK is true, then we don't have to actually do the
24433 instantiation now; we just have to do it sometime. Normally it is
24434 an error if this is an explicit instantiation but D is undefined.
24435 EXPL_INST_CLASS_MEM_P is true iff D is a member of an explicitly
24436 instantiated class template. */
24437
24438 tree
24439 instantiate_decl (tree d, bool defer_ok, bool expl_inst_class_mem_p)
24440 {
24441 tree tmpl = DECL_TI_TEMPLATE (d);
24442 tree gen_args;
24443 tree args;
24444 tree td;
24445 tree code_pattern;
24446 tree spec;
24447 tree gen_tmpl;
24448 bool pattern_defined;
24449 location_t saved_loc = input_location;
24450 int saved_unevaluated_operand = cp_unevaluated_operand;
24451 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
24452 bool external_p;
24453 bool deleted_p;
24454
24455 /* This function should only be used to instantiate templates for
24456 functions and static member variables. */
24457 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
24458
24459 /* A concept is never instantiated. */
24460 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
24461
24462 /* Variables are never deferred; if instantiation is required, they
24463 are instantiated right away. That allows for better code in the
24464 case that an expression refers to the value of the variable --
24465 if the variable has a constant value the referring expression can
24466 take advantage of that fact. */
24467 if (VAR_P (d))
24468 defer_ok = false;
24469
24470 /* Don't instantiate cloned functions. Instead, instantiate the
24471 functions they cloned. */
24472 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
24473 d = DECL_CLONED_FUNCTION (d);
24474
24475 if (DECL_TEMPLATE_INSTANTIATED (d)
24476 || (TREE_CODE (d) == FUNCTION_DECL
24477 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
24478 || DECL_TEMPLATE_SPECIALIZATION (d))
24479 /* D has already been instantiated or explicitly specialized, so
24480 there's nothing for us to do here.
24481
24482 It might seem reasonable to check whether or not D is an explicit
24483 instantiation, and, if so, stop here. But when an explicit
24484 instantiation is deferred until the end of the compilation,
24485 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
24486 the instantiation. */
24487 return d;
24488
24489 /* Check to see whether we know that this template will be
24490 instantiated in some other file, as with "extern template"
24491 extension. */
24492 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
24493
24494 /* In general, we do not instantiate such templates. */
24495 if (external_p && !always_instantiate_p (d))
24496 return d;
24497
24498 gen_tmpl = most_general_template (tmpl);
24499 gen_args = DECL_TI_ARGS (d);
24500
24501 if (tmpl != gen_tmpl)
24502 /* We should already have the extra args. */
24503 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
24504 == TMPL_ARGS_DEPTH (gen_args));
24505 /* And what's in the hash table should match D. */
24506 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
24507 || spec == NULL_TREE);
24508
24509 /* This needs to happen before any tsubsting. */
24510 if (! push_tinst_level (d))
24511 return d;
24512
24513 timevar_push (TV_TEMPLATE_INST);
24514
24515 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
24516 for the instantiation. */
24517 td = template_for_substitution (d);
24518 args = gen_args;
24519
24520 if (VAR_P (d))
24521 {
24522 /* Look up an explicit specialization, if any. */
24523 tree tid = lookup_template_variable (gen_tmpl, gen_args);
24524 tree elt = most_specialized_partial_spec (tid, tf_warning_or_error);
24525 if (elt && elt != error_mark_node)
24526 {
24527 td = TREE_VALUE (elt);
24528 args = TREE_PURPOSE (elt);
24529 }
24530 }
24531
24532 code_pattern = DECL_TEMPLATE_RESULT (td);
24533
24534 /* We should never be trying to instantiate a member of a class
24535 template or partial specialization. */
24536 gcc_assert (d != code_pattern);
24537
24538 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
24539 || DECL_TEMPLATE_SPECIALIZATION (td))
24540 /* In the case of a friend template whose definition is provided
24541 outside the class, we may have too many arguments. Drop the
24542 ones we don't need. The same is true for specializations. */
24543 args = get_innermost_template_args
24544 (args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
24545
24546 if (TREE_CODE (d) == FUNCTION_DECL)
24547 {
24548 deleted_p = DECL_DELETED_FN (code_pattern);
24549 pattern_defined = ((DECL_SAVED_TREE (code_pattern) != NULL_TREE
24550 && DECL_INITIAL (code_pattern) != error_mark_node)
24551 || DECL_DEFAULTED_FN (code_pattern)
24552 || deleted_p);
24553 }
24554 else
24555 {
24556 deleted_p = false;
24557 if (DECL_CLASS_SCOPE_P (code_pattern))
24558 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
24559 else
24560 pattern_defined = ! DECL_EXTERNAL (code_pattern);
24561 }
24562
24563 /* We may be in the middle of deferred access check. Disable it now. */
24564 push_deferring_access_checks (dk_no_deferred);
24565
24566 /* Unless an explicit instantiation directive has already determined
24567 the linkage of D, remember that a definition is available for
24568 this entity. */
24569 if (pattern_defined
24570 && !DECL_INTERFACE_KNOWN (d)
24571 && !DECL_NOT_REALLY_EXTERN (d))
24572 mark_definable (d);
24573
24574 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
24575 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
24576 input_location = DECL_SOURCE_LOCATION (d);
24577
24578 /* If D is a member of an explicitly instantiated class template,
24579 and no definition is available, treat it like an implicit
24580 instantiation. */
24581 if (!pattern_defined && expl_inst_class_mem_p
24582 && DECL_EXPLICIT_INSTANTIATION (d))
24583 {
24584 /* Leave linkage flags alone on instantiations with anonymous
24585 visibility. */
24586 if (TREE_PUBLIC (d))
24587 {
24588 DECL_NOT_REALLY_EXTERN (d) = 0;
24589 DECL_INTERFACE_KNOWN (d) = 0;
24590 }
24591 SET_DECL_IMPLICIT_INSTANTIATION (d);
24592 }
24593
24594 /* Defer all other templates, unless we have been explicitly
24595 forbidden from doing so. */
24596 if (/* If there is no definition, we cannot instantiate the
24597 template. */
24598 ! pattern_defined
24599 /* If it's OK to postpone instantiation, do so. */
24600 || defer_ok
24601 /* If this is a static data member that will be defined
24602 elsewhere, we don't want to instantiate the entire data
24603 member, but we do want to instantiate the initializer so that
24604 we can substitute that elsewhere. */
24605 || (external_p && VAR_P (d))
24606 /* Handle here a deleted function too, avoid generating
24607 its body (c++/61080). */
24608 || deleted_p)
24609 {
24610 /* The definition of the static data member is now required so
24611 we must substitute the initializer. */
24612 if (VAR_P (d)
24613 && !DECL_INITIAL (d)
24614 && DECL_INITIAL (code_pattern))
24615 {
24616 tree ns;
24617 tree init;
24618 bool const_init = false;
24619 bool enter_context = DECL_CLASS_SCOPE_P (d);
24620
24621 ns = decl_namespace_context (d);
24622 push_nested_namespace (ns);
24623 if (enter_context)
24624 push_nested_class (DECL_CONTEXT (d));
24625 init = tsubst_expr (DECL_INITIAL (code_pattern),
24626 args,
24627 tf_warning_or_error, NULL_TREE,
24628 /*integral_constant_expression_p=*/false);
24629 /* If instantiating the initializer involved instantiating this
24630 again, don't call cp_finish_decl twice. */
24631 if (!DECL_INITIAL (d))
24632 {
24633 /* Make sure the initializer is still constant, in case of
24634 circular dependency (template/instantiate6.C). */
24635 const_init
24636 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
24637 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
24638 /*asmspec_tree=*/NULL_TREE,
24639 LOOKUP_ONLYCONVERTING);
24640 }
24641 if (enter_context)
24642 pop_nested_class ();
24643 pop_nested_namespace (ns);
24644 }
24645
24646 /* We restore the source position here because it's used by
24647 add_pending_template. */
24648 input_location = saved_loc;
24649
24650 if (at_eof && !pattern_defined
24651 && DECL_EXPLICIT_INSTANTIATION (d)
24652 && DECL_NOT_REALLY_EXTERN (d))
24653 /* [temp.explicit]
24654
24655 The definition of a non-exported function template, a
24656 non-exported member function template, or a non-exported
24657 member function or static data member of a class template
24658 shall be present in every translation unit in which it is
24659 explicitly instantiated. */
24660 permerror (input_location, "explicit instantiation of %qD "
24661 "but no definition available", d);
24662
24663 /* If we're in unevaluated context, we just wanted to get the
24664 constant value; this isn't an odr use, so don't queue
24665 a full instantiation. */
24666 if (cp_unevaluated_operand != 0)
24667 goto out;
24668 /* ??? Historically, we have instantiated inline functions, even
24669 when marked as "extern template". */
24670 if (!(external_p && VAR_P (d)))
24671 add_pending_template (d);
24672 goto out;
24673 }
24674 /* Tell the repository that D is available in this translation unit
24675 -- and see if it is supposed to be instantiated here. */
24676 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
24677 {
24678 /* In a PCH file, despite the fact that the repository hasn't
24679 requested instantiation in the PCH it is still possible that
24680 an instantiation will be required in a file that includes the
24681 PCH. */
24682 if (pch_file)
24683 add_pending_template (d);
24684 /* Instantiate inline functions so that the inliner can do its
24685 job, even though we'll not be emitting a copy of this
24686 function. */
24687 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
24688 goto out;
24689 }
24690
24691 bool push_to_top, nested;
24692 tree fn_context;
24693 fn_context = decl_function_context (d);
24694 if (LAMBDA_FUNCTION_P (d))
24695 /* tsubst_lambda_expr resolved any references to enclosing functions. */
24696 fn_context = NULL_TREE;
24697 nested = current_function_decl != NULL_TREE;
24698 push_to_top = !(nested && fn_context == current_function_decl);
24699
24700 vec<tree> omp_privatization_save;
24701 if (nested)
24702 save_omp_privatization_clauses (omp_privatization_save);
24703
24704 if (push_to_top)
24705 push_to_top_level ();
24706 else
24707 {
24708 gcc_assert (!processing_template_decl);
24709 push_function_context ();
24710 cp_unevaluated_operand = 0;
24711 c_inhibit_evaluation_warnings = 0;
24712 }
24713
24714 /* Mark D as instantiated so that recursive calls to
24715 instantiate_decl do not try to instantiate it again. */
24716 DECL_TEMPLATE_INSTANTIATED (d) = 1;
24717
24718 /* Regenerate the declaration in case the template has been modified
24719 by a subsequent redeclaration. */
24720 regenerate_decl_from_template (d, td, args);
24721
24722 /* We already set the file and line above. Reset them now in case
24723 they changed as a result of calling regenerate_decl_from_template. */
24724 input_location = DECL_SOURCE_LOCATION (d);
24725
24726 if (VAR_P (d))
24727 {
24728 tree init;
24729 bool const_init = false;
24730
24731 /* Clear out DECL_RTL; whatever was there before may not be right
24732 since we've reset the type of the declaration. */
24733 SET_DECL_RTL (d, NULL);
24734 DECL_IN_AGGR_P (d) = 0;
24735
24736 /* The initializer is placed in DECL_INITIAL by
24737 regenerate_decl_from_template so we don't need to
24738 push/pop_access_scope again here. Pull it out so that
24739 cp_finish_decl can process it. */
24740 init = DECL_INITIAL (d);
24741 DECL_INITIAL (d) = NULL_TREE;
24742 DECL_INITIALIZED_P (d) = 0;
24743
24744 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
24745 initializer. That function will defer actual emission until
24746 we have a chance to determine linkage. */
24747 DECL_EXTERNAL (d) = 0;
24748
24749 /* Enter the scope of D so that access-checking works correctly. */
24750 bool enter_context = DECL_CLASS_SCOPE_P (d);
24751 if (enter_context)
24752 push_nested_class (DECL_CONTEXT (d));
24753
24754 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
24755 int flags = (TINFO_VAR_DECLARED_CONSTINIT (DECL_TEMPLATE_INFO (d))
24756 ? LOOKUP_CONSTINIT : 0);
24757 cp_finish_decl (d, init, const_init, NULL_TREE, flags);
24758
24759 if (enter_context)
24760 pop_nested_class ();
24761
24762 if (variable_template_p (gen_tmpl))
24763 note_variable_template_instantiation (d);
24764 }
24765 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
24766 synthesize_method (d);
24767 else if (TREE_CODE (d) == FUNCTION_DECL)
24768 {
24769 /* Set up the list of local specializations. */
24770 local_specialization_stack lss (push_to_top ? lss_blank : lss_copy);
24771 tree block = NULL_TREE;
24772
24773 /* Set up context. */
24774 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
24775 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
24776 block = push_stmt_list ();
24777 else
24778 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
24779
24780 /* Some typedefs referenced from within the template code need to be
24781 access checked at template instantiation time, i.e now. These
24782 types were added to the template at parsing time. Let's get those
24783 and perform the access checks then. */
24784 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (td),
24785 args);
24786
24787 /* Create substitution entries for the parameters. */
24788 register_parameter_specializations (code_pattern, d);
24789
24790 /* Substitute into the body of the function. */
24791 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
24792 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
24793 tf_warning_or_error, tmpl);
24794 else
24795 {
24796 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
24797 tf_warning_or_error, tmpl,
24798 /*integral_constant_expression_p=*/false);
24799
24800 /* Set the current input_location to the end of the function
24801 so that finish_function knows where we are. */
24802 input_location
24803 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
24804
24805 /* Remember if we saw an infinite loop in the template. */
24806 current_function_infinite_loop
24807 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
24808 }
24809
24810 /* Finish the function. */
24811 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
24812 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
24813 DECL_SAVED_TREE (d) = pop_stmt_list (block);
24814 else
24815 {
24816 d = finish_function (/*inline_p=*/false);
24817 expand_or_defer_fn (d);
24818 }
24819
24820 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
24821 cp_check_omp_declare_reduction (d);
24822 }
24823
24824 /* We're not deferring instantiation any more. */
24825 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
24826
24827 if (push_to_top)
24828 pop_from_top_level ();
24829 else
24830 pop_function_context ();
24831
24832 if (nested)
24833 restore_omp_privatization_clauses (omp_privatization_save);
24834
24835 out:
24836 pop_deferring_access_checks ();
24837 timevar_pop (TV_TEMPLATE_INST);
24838 pop_tinst_level ();
24839 input_location = saved_loc;
24840 cp_unevaluated_operand = saved_unevaluated_operand;
24841 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
24842
24843 return d;
24844 }
24845
24846 /* Run through the list of templates that we wish we could
24847 instantiate, and instantiate any we can. RETRIES is the
24848 number of times we retry pending template instantiation. */
24849
24850 void
24851 instantiate_pending_templates (int retries)
24852 {
24853 int reconsider;
24854 location_t saved_loc = input_location;
24855
24856 /* Instantiating templates may trigger vtable generation. This in turn
24857 may require further template instantiations. We place a limit here
24858 to avoid infinite loop. */
24859 if (pending_templates && retries >= max_tinst_depth)
24860 {
24861 tree decl = pending_templates->tinst->maybe_get_node ();
24862
24863 fatal_error (input_location,
24864 "template instantiation depth exceeds maximum of %d"
24865 " instantiating %q+D, possibly from virtual table generation"
24866 " (use %<-ftemplate-depth=%> to increase the maximum)",
24867 max_tinst_depth, decl);
24868 if (TREE_CODE (decl) == FUNCTION_DECL)
24869 /* Pretend that we defined it. */
24870 DECL_INITIAL (decl) = error_mark_node;
24871 return;
24872 }
24873
24874 do
24875 {
24876 struct pending_template **t = &pending_templates;
24877 struct pending_template *last = NULL;
24878 reconsider = 0;
24879 while (*t)
24880 {
24881 tree instantiation = reopen_tinst_level ((*t)->tinst);
24882 bool complete = false;
24883
24884 if (TYPE_P (instantiation))
24885 {
24886 if (!COMPLETE_TYPE_P (instantiation))
24887 {
24888 instantiate_class_template (instantiation);
24889 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
24890 for (tree fld = TYPE_FIELDS (instantiation);
24891 fld; fld = TREE_CHAIN (fld))
24892 if ((VAR_P (fld)
24893 || (TREE_CODE (fld) == FUNCTION_DECL
24894 && !DECL_ARTIFICIAL (fld)))
24895 && DECL_TEMPLATE_INSTANTIATION (fld))
24896 instantiate_decl (fld,
24897 /*defer_ok=*/false,
24898 /*expl_inst_class_mem_p=*/false);
24899
24900 if (COMPLETE_TYPE_P (instantiation))
24901 reconsider = 1;
24902 }
24903
24904 complete = COMPLETE_TYPE_P (instantiation);
24905 }
24906 else
24907 {
24908 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
24909 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
24910 {
24911 instantiation
24912 = instantiate_decl (instantiation,
24913 /*defer_ok=*/false,
24914 /*expl_inst_class_mem_p=*/false);
24915 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
24916 reconsider = 1;
24917 }
24918
24919 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
24920 || DECL_TEMPLATE_INSTANTIATED (instantiation));
24921 }
24922
24923 if (complete)
24924 {
24925 /* If INSTANTIATION has been instantiated, then we don't
24926 need to consider it again in the future. */
24927 struct pending_template *drop = *t;
24928 *t = (*t)->next;
24929 set_refcount_ptr (drop->tinst);
24930 pending_template_freelist ().free (drop);
24931 }
24932 else
24933 {
24934 last = *t;
24935 t = &(*t)->next;
24936 }
24937 tinst_depth = 0;
24938 set_refcount_ptr (current_tinst_level);
24939 }
24940 last_pending_template = last;
24941 }
24942 while (reconsider);
24943
24944 input_location = saved_loc;
24945 }
24946
24947 /* Substitute ARGVEC into T, which is a list of initializers for
24948 either base class or a non-static data member. The TREE_PURPOSEs
24949 are DECLs, and the TREE_VALUEs are the initializer values. Used by
24950 instantiate_decl. */
24951
24952 static tree
24953 tsubst_initializer_list (tree t, tree argvec)
24954 {
24955 tree inits = NULL_TREE;
24956 tree target_ctor = error_mark_node;
24957
24958 for (; t; t = TREE_CHAIN (t))
24959 {
24960 tree decl;
24961 tree init;
24962 tree expanded_bases = NULL_TREE;
24963 tree expanded_arguments = NULL_TREE;
24964 int i, len = 1;
24965
24966 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
24967 {
24968 tree expr;
24969 tree arg;
24970
24971 /* Expand the base class expansion type into separate base
24972 classes. */
24973 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
24974 tf_warning_or_error,
24975 NULL_TREE);
24976 if (expanded_bases == error_mark_node)
24977 continue;
24978
24979 /* We'll be building separate TREE_LISTs of arguments for
24980 each base. */
24981 len = TREE_VEC_LENGTH (expanded_bases);
24982 expanded_arguments = make_tree_vec (len);
24983 for (i = 0; i < len; i++)
24984 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
24985
24986 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
24987 expand each argument in the TREE_VALUE of t. */
24988 expr = make_node (EXPR_PACK_EXPANSION);
24989 PACK_EXPANSION_LOCAL_P (expr) = true;
24990 PACK_EXPANSION_PARAMETER_PACKS (expr) =
24991 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
24992
24993 if (TREE_VALUE (t) == void_type_node)
24994 /* VOID_TYPE_NODE is used to indicate
24995 value-initialization. */
24996 {
24997 for (i = 0; i < len; i++)
24998 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
24999 }
25000 else
25001 {
25002 /* Substitute parameter packs into each argument in the
25003 TREE_LIST. */
25004 in_base_initializer = 1;
25005 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
25006 {
25007 tree expanded_exprs;
25008
25009 /* Expand the argument. */
25010 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
25011 expanded_exprs
25012 = tsubst_pack_expansion (expr, argvec,
25013 tf_warning_or_error,
25014 NULL_TREE);
25015 if (expanded_exprs == error_mark_node)
25016 continue;
25017
25018 /* Prepend each of the expanded expressions to the
25019 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
25020 for (i = 0; i < len; i++)
25021 {
25022 TREE_VEC_ELT (expanded_arguments, i) =
25023 tree_cons (NULL_TREE,
25024 TREE_VEC_ELT (expanded_exprs, i),
25025 TREE_VEC_ELT (expanded_arguments, i));
25026 }
25027 }
25028 in_base_initializer = 0;
25029
25030 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
25031 since we built them backwards. */
25032 for (i = 0; i < len; i++)
25033 {
25034 TREE_VEC_ELT (expanded_arguments, i) =
25035 nreverse (TREE_VEC_ELT (expanded_arguments, i));
25036 }
25037 }
25038 }
25039
25040 for (i = 0; i < len; ++i)
25041 {
25042 if (expanded_bases)
25043 {
25044 decl = TREE_VEC_ELT (expanded_bases, i);
25045 decl = expand_member_init (decl);
25046 init = TREE_VEC_ELT (expanded_arguments, i);
25047 }
25048 else
25049 {
25050 tree tmp;
25051 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
25052 tf_warning_or_error, NULL_TREE);
25053
25054 decl = expand_member_init (decl);
25055 if (decl && !DECL_P (decl))
25056 in_base_initializer = 1;
25057
25058 init = TREE_VALUE (t);
25059 tmp = init;
25060 if (init != void_type_node)
25061 init = tsubst_expr (init, argvec,
25062 tf_warning_or_error, NULL_TREE,
25063 /*integral_constant_expression_p=*/false);
25064 if (init == NULL_TREE && tmp != NULL_TREE)
25065 /* If we had an initializer but it instantiated to nothing,
25066 value-initialize the object. This will only occur when
25067 the initializer was a pack expansion where the parameter
25068 packs used in that expansion were of length zero. */
25069 init = void_type_node;
25070 in_base_initializer = 0;
25071 }
25072
25073 if (target_ctor != error_mark_node
25074 && init != error_mark_node)
25075 {
25076 error ("mem-initializer for %qD follows constructor delegation",
25077 decl);
25078 return inits;
25079 }
25080 /* Look for a target constructor. */
25081 if (init != error_mark_node
25082 && decl && CLASS_TYPE_P (decl)
25083 && same_type_p (decl, current_class_type))
25084 {
25085 maybe_warn_cpp0x (CPP0X_DELEGATING_CTORS);
25086 if (inits)
25087 {
25088 error ("constructor delegation follows mem-initializer for %qD",
25089 TREE_PURPOSE (inits));
25090 continue;
25091 }
25092 target_ctor = init;
25093 }
25094
25095 if (decl)
25096 {
25097 init = build_tree_list (decl, init);
25098 TREE_CHAIN (init) = inits;
25099 inits = init;
25100 }
25101 }
25102 }
25103 return inits;
25104 }
25105
25106 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
25107
25108 static void
25109 set_current_access_from_decl (tree decl)
25110 {
25111 if (TREE_PRIVATE (decl))
25112 current_access_specifier = access_private_node;
25113 else if (TREE_PROTECTED (decl))
25114 current_access_specifier = access_protected_node;
25115 else
25116 current_access_specifier = access_public_node;
25117 }
25118
25119 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
25120 is the instantiation (which should have been created with
25121 start_enum) and ARGS are the template arguments to use. */
25122
25123 static void
25124 tsubst_enum (tree tag, tree newtag, tree args)
25125 {
25126 tree e;
25127
25128 if (SCOPED_ENUM_P (newtag))
25129 begin_scope (sk_scoped_enum, newtag);
25130
25131 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
25132 {
25133 tree value;
25134 tree decl;
25135
25136 decl = TREE_VALUE (e);
25137 /* Note that in a template enum, the TREE_VALUE is the
25138 CONST_DECL, not the corresponding INTEGER_CST. */
25139 value = tsubst_expr (DECL_INITIAL (decl),
25140 args, tf_warning_or_error, NULL_TREE,
25141 /*integral_constant_expression_p=*/true);
25142
25143 /* Give this enumeration constant the correct access. */
25144 set_current_access_from_decl (decl);
25145
25146 /* Actually build the enumerator itself. Here we're assuming that
25147 enumerators can't have dependent attributes. */
25148 build_enumerator (DECL_NAME (decl), value, newtag,
25149 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
25150 }
25151
25152 if (SCOPED_ENUM_P (newtag))
25153 finish_scope ();
25154
25155 finish_enum_value_list (newtag);
25156 finish_enum (newtag);
25157
25158 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
25159 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
25160 }
25161
25162 /* DECL is a FUNCTION_DECL that is a template specialization. Return
25163 its type -- but without substituting the innermost set of template
25164 arguments. So, innermost set of template parameters will appear in
25165 the type. */
25166
25167 tree
25168 get_mostly_instantiated_function_type (tree decl)
25169 {
25170 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
25171 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
25172 }
25173
25174 /* Return truthvalue if we're processing a template different from
25175 the last one involved in diagnostics. */
25176 bool
25177 problematic_instantiation_changed (void)
25178 {
25179 return current_tinst_level != last_error_tinst_level;
25180 }
25181
25182 /* Remember current template involved in diagnostics. */
25183 void
25184 record_last_problematic_instantiation (void)
25185 {
25186 set_refcount_ptr (last_error_tinst_level, current_tinst_level);
25187 }
25188
25189 struct tinst_level *
25190 current_instantiation (void)
25191 {
25192 return current_tinst_level;
25193 }
25194
25195 /* Return TRUE if current_function_decl is being instantiated, false
25196 otherwise. */
25197
25198 bool
25199 instantiating_current_function_p (void)
25200 {
25201 return (current_instantiation ()
25202 && (current_instantiation ()->maybe_get_node ()
25203 == current_function_decl));
25204 }
25205
25206 /* [temp.param] Check that template non-type parm TYPE is of an allowable
25207 type. Return false for ok, true for disallowed. Issue error and
25208 inform messages under control of COMPLAIN. */
25209
25210 static bool
25211 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
25212 {
25213 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
25214 return false;
25215 else if (TYPE_PTR_P (type))
25216 return false;
25217 else if (TYPE_REF_P (type)
25218 && !TYPE_REF_IS_RVALUE (type))
25219 return false;
25220 else if (TYPE_PTRMEM_P (type))
25221 return false;
25222 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
25223 return false;
25224 else if (TREE_CODE (type) == TYPENAME_TYPE)
25225 return false;
25226 else if (TREE_CODE (type) == DECLTYPE_TYPE)
25227 return false;
25228 else if (TREE_CODE (type) == NULLPTR_TYPE)
25229 return false;
25230 /* A bound template template parm could later be instantiated to have a valid
25231 nontype parm type via an alias template. */
25232 else if (cxx_dialect >= cxx11
25233 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
25234 return false;
25235 else if (CLASS_TYPE_P (type))
25236 {
25237 if (cxx_dialect < cxx2a)
25238 {
25239 error ("non-type template parameters of class type only available "
25240 "with %<-std=c++2a%> or %<-std=gnu++2a%>");
25241 return true;
25242 }
25243 if (dependent_type_p (type))
25244 return false;
25245 if (!complete_type_or_else (type, NULL_TREE))
25246 return true;
25247 if (!literal_type_p (type))
25248 {
25249 error ("%qT is not a valid type for a template non-type parameter "
25250 "because it is not literal", type);
25251 explain_non_literal_class (type);
25252 return true;
25253 }
25254 if (cp_has_mutable_p (type))
25255 {
25256 error ("%qT is not a valid type for a template non-type parameter "
25257 "because it has a mutable member", type);
25258 return true;
25259 }
25260 /* FIXME check op<=> and strong structural equality once spaceship is
25261 implemented. */
25262 return false;
25263 }
25264
25265 if (complain & tf_error)
25266 {
25267 if (type == error_mark_node)
25268 inform (input_location, "invalid template non-type parameter");
25269 else
25270 error ("%q#T is not a valid type for a template non-type parameter",
25271 type);
25272 }
25273 return true;
25274 }
25275
25276 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
25277 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
25278
25279 static bool
25280 dependent_type_p_r (tree type)
25281 {
25282 tree scope;
25283
25284 /* [temp.dep.type]
25285
25286 A type is dependent if it is:
25287
25288 -- a template parameter. Template template parameters are types
25289 for us (since TYPE_P holds true for them) so we handle
25290 them here. */
25291 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
25292 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
25293 return true;
25294 /* -- a qualified-id with a nested-name-specifier which contains a
25295 class-name that names a dependent type or whose unqualified-id
25296 names a dependent type. */
25297 if (TREE_CODE (type) == TYPENAME_TYPE)
25298 return true;
25299
25300 /* An alias template specialization can be dependent even if the
25301 resulting type is not. */
25302 if (dependent_alias_template_spec_p (type))
25303 return true;
25304
25305 /* -- a cv-qualified type where the cv-unqualified type is
25306 dependent.
25307 No code is necessary for this bullet; the code below handles
25308 cv-qualified types, and we don't want to strip aliases with
25309 TYPE_MAIN_VARIANT because of DR 1558. */
25310 /* -- a compound type constructed from any dependent type. */
25311 if (TYPE_PTRMEM_P (type))
25312 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
25313 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
25314 (type)));
25315 else if (INDIRECT_TYPE_P (type))
25316 return dependent_type_p (TREE_TYPE (type));
25317 else if (FUNC_OR_METHOD_TYPE_P (type))
25318 {
25319 tree arg_type;
25320
25321 if (dependent_type_p (TREE_TYPE (type)))
25322 return true;
25323 for (arg_type = TYPE_ARG_TYPES (type);
25324 arg_type;
25325 arg_type = TREE_CHAIN (arg_type))
25326 if (dependent_type_p (TREE_VALUE (arg_type)))
25327 return true;
25328 if (cxx_dialect >= cxx17)
25329 /* A value-dependent noexcept-specifier makes the type dependent. */
25330 if (tree spec = TYPE_RAISES_EXCEPTIONS (type))
25331 if (tree noex = TREE_PURPOSE (spec))
25332 /* Treat DEFERRED_NOEXCEPT as non-dependent, since it doesn't
25333 affect overload resolution and treating it as dependent breaks
25334 things. Same for an unparsed noexcept expression. */
25335 if (TREE_CODE (noex) != DEFERRED_NOEXCEPT
25336 && TREE_CODE (noex) != DEFERRED_PARSE
25337 && value_dependent_expression_p (noex))
25338 return true;
25339 return false;
25340 }
25341 /* -- an array type constructed from any dependent type or whose
25342 size is specified by a constant expression that is
25343 value-dependent.
25344
25345 We checked for type- and value-dependence of the bounds in
25346 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
25347 if (TREE_CODE (type) == ARRAY_TYPE)
25348 {
25349 if (TYPE_DOMAIN (type)
25350 && dependent_type_p (TYPE_DOMAIN (type)))
25351 return true;
25352 return dependent_type_p (TREE_TYPE (type));
25353 }
25354
25355 /* -- a template-id in which either the template name is a template
25356 parameter ... */
25357 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
25358 return true;
25359 /* ... or any of the template arguments is a dependent type or
25360 an expression that is type-dependent or value-dependent. */
25361 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
25362 && (any_dependent_template_arguments_p
25363 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
25364 return true;
25365
25366 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
25367 dependent; if the argument of the `typeof' expression is not
25368 type-dependent, then it should already been have resolved. */
25369 if (TREE_CODE (type) == TYPEOF_TYPE
25370 || TREE_CODE (type) == DECLTYPE_TYPE
25371 || TREE_CODE (type) == UNDERLYING_TYPE)
25372 return true;
25373
25374 /* A template argument pack is dependent if any of its packed
25375 arguments are. */
25376 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
25377 {
25378 tree args = ARGUMENT_PACK_ARGS (type);
25379 int i, len = TREE_VEC_LENGTH (args);
25380 for (i = 0; i < len; ++i)
25381 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
25382 return true;
25383 }
25384
25385 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
25386 be template parameters. */
25387 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
25388 return true;
25389
25390 if (any_dependent_type_attributes_p (TYPE_ATTRIBUTES (type)))
25391 return true;
25392
25393 /* The standard does not specifically mention types that are local
25394 to template functions or local classes, but they should be
25395 considered dependent too. For example:
25396
25397 template <int I> void f() {
25398 enum E { a = I };
25399 S<sizeof (E)> s;
25400 }
25401
25402 The size of `E' cannot be known until the value of `I' has been
25403 determined. Therefore, `E' must be considered dependent. */
25404 scope = TYPE_CONTEXT (type);
25405 if (scope && TYPE_P (scope))
25406 return dependent_type_p (scope);
25407 /* Don't use type_dependent_expression_p here, as it can lead
25408 to infinite recursion trying to determine whether a lambda
25409 nested in a lambda is dependent (c++/47687). */
25410 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
25411 && DECL_LANG_SPECIFIC (scope)
25412 && DECL_TEMPLATE_INFO (scope)
25413 && (any_dependent_template_arguments_p
25414 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
25415 return true;
25416
25417 /* Other types are non-dependent. */
25418 return false;
25419 }
25420
25421 /* Returns TRUE if TYPE is dependent, in the sense of
25422 [temp.dep.type]. Note that a NULL type is considered dependent. */
25423
25424 bool
25425 dependent_type_p (tree type)
25426 {
25427 /* If there are no template parameters in scope, then there can't be
25428 any dependent types. */
25429 if (!processing_template_decl)
25430 {
25431 /* If we are not processing a template, then nobody should be
25432 providing us with a dependent type. */
25433 gcc_assert (type);
25434 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
25435 return false;
25436 }
25437
25438 /* If the type is NULL, we have not computed a type for the entity
25439 in question; in that case, the type is dependent. */
25440 if (!type)
25441 return true;
25442
25443 /* Erroneous types can be considered non-dependent. */
25444 if (type == error_mark_node)
25445 return false;
25446
25447 /* Getting here with global_type_node means we improperly called this
25448 function on the TREE_TYPE of an IDENTIFIER_NODE. */
25449 gcc_checking_assert (type != global_type_node);
25450
25451 /* If we have not already computed the appropriate value for TYPE,
25452 do so now. */
25453 if (!TYPE_DEPENDENT_P_VALID (type))
25454 {
25455 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
25456 TYPE_DEPENDENT_P_VALID (type) = 1;
25457 }
25458
25459 return TYPE_DEPENDENT_P (type);
25460 }
25461
25462 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
25463 lookup. In other words, a dependent type that is not the current
25464 instantiation. */
25465
25466 bool
25467 dependent_scope_p (tree scope)
25468 {
25469 return (scope && TYPE_P (scope) && dependent_type_p (scope)
25470 && !currently_open_class (scope));
25471 }
25472
25473 /* T is a SCOPE_REF. Return whether it represents a non-static member of
25474 an unknown base of 'this' (and is therefore instantiation-dependent). */
25475
25476 static bool
25477 unknown_base_ref_p (tree t)
25478 {
25479 if (!current_class_ptr)
25480 return false;
25481
25482 tree mem = TREE_OPERAND (t, 1);
25483 if (shared_member_p (mem))
25484 return false;
25485
25486 tree cur = current_nonlambda_class_type ();
25487 if (!any_dependent_bases_p (cur))
25488 return false;
25489
25490 tree ctx = TREE_OPERAND (t, 0);
25491 if (DERIVED_FROM_P (ctx, cur))
25492 return false;
25493
25494 return true;
25495 }
25496
25497 /* T is a SCOPE_REF; return whether we need to consider it
25498 instantiation-dependent so that we can check access at instantiation
25499 time even though we know which member it resolves to. */
25500
25501 static bool
25502 instantiation_dependent_scope_ref_p (tree t)
25503 {
25504 if (DECL_P (TREE_OPERAND (t, 1))
25505 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
25506 && !unknown_base_ref_p (t)
25507 && accessible_in_template_p (TREE_OPERAND (t, 0),
25508 TREE_OPERAND (t, 1)))
25509 return false;
25510 else
25511 return true;
25512 }
25513
25514 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
25515 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
25516 expression. */
25517
25518 /* Note that this predicate is not appropriate for general expressions;
25519 only constant expressions (that satisfy potential_constant_expression)
25520 can be tested for value dependence. */
25521
25522 bool
25523 value_dependent_expression_p (tree expression)
25524 {
25525 if (!processing_template_decl || expression == NULL_TREE)
25526 return false;
25527
25528 /* A type-dependent expression is also value-dependent. */
25529 if (type_dependent_expression_p (expression))
25530 return true;
25531
25532 switch (TREE_CODE (expression))
25533 {
25534 case BASELINK:
25535 /* A dependent member function of the current instantiation. */
25536 return dependent_type_p (BINFO_TYPE (BASELINK_BINFO (expression)));
25537
25538 case FUNCTION_DECL:
25539 /* A dependent member function of the current instantiation. */
25540 if (DECL_CLASS_SCOPE_P (expression)
25541 && dependent_type_p (DECL_CONTEXT (expression)))
25542 return true;
25543 break;
25544
25545 case IDENTIFIER_NODE:
25546 /* A name that has not been looked up -- must be dependent. */
25547 return true;
25548
25549 case TEMPLATE_PARM_INDEX:
25550 /* A non-type template parm. */
25551 return true;
25552
25553 case CONST_DECL:
25554 /* A non-type template parm. */
25555 if (DECL_TEMPLATE_PARM_P (expression))
25556 return true;
25557 return value_dependent_expression_p (DECL_INITIAL (expression));
25558
25559 case VAR_DECL:
25560 /* A constant with literal type and is initialized
25561 with an expression that is value-dependent. */
25562 if (DECL_DEPENDENT_INIT_P (expression)
25563 /* FIXME cp_finish_decl doesn't fold reference initializers. */
25564 || TYPE_REF_P (TREE_TYPE (expression)))
25565 return true;
25566 if (DECL_HAS_VALUE_EXPR_P (expression))
25567 {
25568 tree value_expr = DECL_VALUE_EXPR (expression);
25569 if (value_dependent_expression_p (value_expr)
25570 /* __PRETTY_FUNCTION__ inside a template function is dependent
25571 on the name of the function. */
25572 || (DECL_PRETTY_FUNCTION_P (expression)
25573 /* It might be used in a template, but not a template
25574 function, in which case its DECL_VALUE_EXPR will be
25575 "top level". */
25576 && value_expr == error_mark_node))
25577 return true;
25578 }
25579 return false;
25580
25581 case DYNAMIC_CAST_EXPR:
25582 case STATIC_CAST_EXPR:
25583 case CONST_CAST_EXPR:
25584 case REINTERPRET_CAST_EXPR:
25585 case CAST_EXPR:
25586 case IMPLICIT_CONV_EXPR:
25587 /* These expressions are value-dependent if the type to which
25588 the cast occurs is dependent or the expression being casted
25589 is value-dependent. */
25590 {
25591 tree type = TREE_TYPE (expression);
25592
25593 if (dependent_type_p (type))
25594 return true;
25595
25596 /* A functional cast has a list of operands. */
25597 expression = TREE_OPERAND (expression, 0);
25598 if (!expression)
25599 {
25600 /* If there are no operands, it must be an expression such
25601 as "int()". This should not happen for aggregate types
25602 because it would form non-constant expressions. */
25603 gcc_assert (cxx_dialect >= cxx11
25604 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
25605
25606 return false;
25607 }
25608
25609 if (TREE_CODE (expression) == TREE_LIST)
25610 return any_value_dependent_elements_p (expression);
25611
25612 return value_dependent_expression_p (expression);
25613 }
25614
25615 case SIZEOF_EXPR:
25616 if (SIZEOF_EXPR_TYPE_P (expression))
25617 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
25618 /* FALLTHRU */
25619 case ALIGNOF_EXPR:
25620 case TYPEID_EXPR:
25621 /* A `sizeof' expression is value-dependent if the operand is
25622 type-dependent or is a pack expansion. */
25623 expression = TREE_OPERAND (expression, 0);
25624 if (PACK_EXPANSION_P (expression))
25625 return true;
25626 else if (TYPE_P (expression))
25627 return dependent_type_p (expression);
25628 return instantiation_dependent_uneval_expression_p (expression);
25629
25630 case AT_ENCODE_EXPR:
25631 /* An 'encode' expression is value-dependent if the operand is
25632 type-dependent. */
25633 expression = TREE_OPERAND (expression, 0);
25634 return dependent_type_p (expression);
25635
25636 case NOEXCEPT_EXPR:
25637 expression = TREE_OPERAND (expression, 0);
25638 return instantiation_dependent_uneval_expression_p (expression);
25639
25640 case SCOPE_REF:
25641 /* All instantiation-dependent expressions should also be considered
25642 value-dependent. */
25643 return instantiation_dependent_scope_ref_p (expression);
25644
25645 case COMPONENT_REF:
25646 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
25647 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
25648
25649 case NONTYPE_ARGUMENT_PACK:
25650 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
25651 is value-dependent. */
25652 {
25653 tree values = ARGUMENT_PACK_ARGS (expression);
25654 int i, len = TREE_VEC_LENGTH (values);
25655
25656 for (i = 0; i < len; ++i)
25657 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
25658 return true;
25659
25660 return false;
25661 }
25662
25663 case TRAIT_EXPR:
25664 {
25665 tree type2 = TRAIT_EXPR_TYPE2 (expression);
25666
25667 if (dependent_type_p (TRAIT_EXPR_TYPE1 (expression)))
25668 return true;
25669
25670 if (!type2)
25671 return false;
25672
25673 if (TREE_CODE (type2) != TREE_LIST)
25674 return dependent_type_p (type2);
25675
25676 for (; type2; type2 = TREE_CHAIN (type2))
25677 if (dependent_type_p (TREE_VALUE (type2)))
25678 return true;
25679
25680 return false;
25681 }
25682
25683 case MODOP_EXPR:
25684 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
25685 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
25686
25687 case ARRAY_REF:
25688 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
25689 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
25690
25691 case ADDR_EXPR:
25692 {
25693 tree op = TREE_OPERAND (expression, 0);
25694 return (value_dependent_expression_p (op)
25695 || has_value_dependent_address (op));
25696 }
25697
25698 case REQUIRES_EXPR:
25699 /* Treat all requires-expressions as value-dependent so
25700 we don't try to fold them. */
25701 return true;
25702
25703 case TYPE_REQ:
25704 return dependent_type_p (TREE_OPERAND (expression, 0));
25705
25706 case CALL_EXPR:
25707 {
25708 if (value_dependent_expression_p (CALL_EXPR_FN (expression)))
25709 return true;
25710 tree fn = get_callee_fndecl (expression);
25711 int i, nargs;
25712 nargs = call_expr_nargs (expression);
25713 for (i = 0; i < nargs; ++i)
25714 {
25715 tree op = CALL_EXPR_ARG (expression, i);
25716 /* In a call to a constexpr member function, look through the
25717 implicit ADDR_EXPR on the object argument so that it doesn't
25718 cause the call to be considered value-dependent. We also
25719 look through it in potential_constant_expression. */
25720 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
25721 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
25722 && TREE_CODE (op) == ADDR_EXPR)
25723 op = TREE_OPERAND (op, 0);
25724 if (value_dependent_expression_p (op))
25725 return true;
25726 }
25727 return false;
25728 }
25729
25730 case TEMPLATE_ID_EXPR:
25731 return variable_concept_p (TREE_OPERAND (expression, 0));
25732
25733 case CONSTRUCTOR:
25734 {
25735 unsigned ix;
25736 tree val;
25737 if (dependent_type_p (TREE_TYPE (expression)))
25738 return true;
25739 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
25740 if (value_dependent_expression_p (val))
25741 return true;
25742 return false;
25743 }
25744
25745 case STMT_EXPR:
25746 /* Treat a GNU statement expression as dependent to avoid crashing
25747 under instantiate_non_dependent_expr; it can't be constant. */
25748 return true;
25749
25750 default:
25751 /* A constant expression is value-dependent if any subexpression is
25752 value-dependent. */
25753 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
25754 {
25755 case tcc_reference:
25756 case tcc_unary:
25757 case tcc_comparison:
25758 case tcc_binary:
25759 case tcc_expression:
25760 case tcc_vl_exp:
25761 {
25762 int i, len = cp_tree_operand_length (expression);
25763
25764 for (i = 0; i < len; i++)
25765 {
25766 tree t = TREE_OPERAND (expression, i);
25767
25768 /* In some cases, some of the operands may be missing.
25769 (For example, in the case of PREDECREMENT_EXPR, the
25770 amount to increment by may be missing.) That doesn't
25771 make the expression dependent. */
25772 if (t && value_dependent_expression_p (t))
25773 return true;
25774 }
25775 }
25776 break;
25777 default:
25778 break;
25779 }
25780 break;
25781 }
25782
25783 /* The expression is not value-dependent. */
25784 return false;
25785 }
25786
25787 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
25788 [temp.dep.expr]. Note that an expression with no type is
25789 considered dependent. Other parts of the compiler arrange for an
25790 expression with type-dependent subexpressions to have no type, so
25791 this function doesn't have to be fully recursive. */
25792
25793 bool
25794 type_dependent_expression_p (tree expression)
25795 {
25796 if (!processing_template_decl)
25797 return false;
25798
25799 if (expression == NULL_TREE || expression == error_mark_node)
25800 return false;
25801
25802 STRIP_ANY_LOCATION_WRAPPER (expression);
25803
25804 /* An unresolved name is always dependent. */
25805 if (identifier_p (expression)
25806 || TREE_CODE (expression) == USING_DECL
25807 || TREE_CODE (expression) == WILDCARD_DECL)
25808 return true;
25809
25810 /* A lambda-expression in template context is dependent. dependent_type_p is
25811 true for a lambda in the scope of a class or function template, but that
25812 doesn't cover all template contexts, like a default template argument. */
25813 if (TREE_CODE (expression) == LAMBDA_EXPR)
25814 return true;
25815
25816 /* A fold expression is type-dependent. */
25817 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
25818 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
25819 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
25820 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
25821 return true;
25822
25823 /* Some expression forms are never type-dependent. */
25824 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
25825 || TREE_CODE (expression) == SIZEOF_EXPR
25826 || TREE_CODE (expression) == ALIGNOF_EXPR
25827 || TREE_CODE (expression) == AT_ENCODE_EXPR
25828 || TREE_CODE (expression) == NOEXCEPT_EXPR
25829 || TREE_CODE (expression) == TRAIT_EXPR
25830 || TREE_CODE (expression) == TYPEID_EXPR
25831 || TREE_CODE (expression) == DELETE_EXPR
25832 || TREE_CODE (expression) == VEC_DELETE_EXPR
25833 || TREE_CODE (expression) == THROW_EXPR
25834 || TREE_CODE (expression) == REQUIRES_EXPR)
25835 return false;
25836
25837 /* The types of these expressions depends only on the type to which
25838 the cast occurs. */
25839 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
25840 || TREE_CODE (expression) == STATIC_CAST_EXPR
25841 || TREE_CODE (expression) == CONST_CAST_EXPR
25842 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
25843 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
25844 || TREE_CODE (expression) == CAST_EXPR)
25845 return dependent_type_p (TREE_TYPE (expression));
25846
25847 /* The types of these expressions depends only on the type created
25848 by the expression. */
25849 if (TREE_CODE (expression) == NEW_EXPR
25850 || TREE_CODE (expression) == VEC_NEW_EXPR)
25851 {
25852 /* For NEW_EXPR tree nodes created inside a template, either
25853 the object type itself or a TREE_LIST may appear as the
25854 operand 1. */
25855 tree type = TREE_OPERAND (expression, 1);
25856 if (TREE_CODE (type) == TREE_LIST)
25857 /* This is an array type. We need to check array dimensions
25858 as well. */
25859 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
25860 || value_dependent_expression_p
25861 (TREE_OPERAND (TREE_VALUE (type), 1));
25862 else
25863 return dependent_type_p (type);
25864 }
25865
25866 if (TREE_CODE (expression) == SCOPE_REF)
25867 {
25868 tree scope = TREE_OPERAND (expression, 0);
25869 tree name = TREE_OPERAND (expression, 1);
25870
25871 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
25872 contains an identifier associated by name lookup with one or more
25873 declarations declared with a dependent type, or...a
25874 nested-name-specifier or qualified-id that names a member of an
25875 unknown specialization. */
25876 return (type_dependent_expression_p (name)
25877 || dependent_scope_p (scope));
25878 }
25879
25880 if (TREE_CODE (expression) == TEMPLATE_DECL
25881 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
25882 return uses_outer_template_parms (expression);
25883
25884 if (TREE_CODE (expression) == STMT_EXPR)
25885 expression = stmt_expr_value_expr (expression);
25886
25887 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
25888 {
25889 tree elt;
25890 unsigned i;
25891
25892 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
25893 {
25894 if (type_dependent_expression_p (elt))
25895 return true;
25896 }
25897 return false;
25898 }
25899
25900 /* A static data member of the current instantiation with incomplete
25901 array type is type-dependent, as the definition and specializations
25902 can have different bounds. */
25903 if (VAR_P (expression)
25904 && DECL_CLASS_SCOPE_P (expression)
25905 && dependent_type_p (DECL_CONTEXT (expression))
25906 && VAR_HAD_UNKNOWN_BOUND (expression))
25907 return true;
25908
25909 /* An array of unknown bound depending on a variadic parameter, eg:
25910
25911 template<typename... Args>
25912 void foo (Args... args)
25913 {
25914 int arr[] = { args... };
25915 }
25916
25917 template<int... vals>
25918 void bar ()
25919 {
25920 int arr[] = { vals... };
25921 }
25922
25923 If the array has no length and has an initializer, it must be that
25924 we couldn't determine its length in cp_complete_array_type because
25925 it is dependent. */
25926 if (VAR_P (expression)
25927 && TREE_TYPE (expression) != NULL_TREE
25928 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
25929 && !TYPE_DOMAIN (TREE_TYPE (expression))
25930 && DECL_INITIAL (expression))
25931 return true;
25932
25933 /* A function or variable template-id is type-dependent if it has any
25934 dependent template arguments. */
25935 if (VAR_OR_FUNCTION_DECL_P (expression)
25936 && DECL_LANG_SPECIFIC (expression)
25937 && DECL_TEMPLATE_INFO (expression))
25938 {
25939 /* Consider the innermost template arguments, since those are the ones
25940 that come from the template-id; the template arguments for the
25941 enclosing class do not make it type-dependent unless they are used in
25942 the type of the decl. */
25943 if (instantiates_primary_template_p (expression)
25944 && (any_dependent_template_arguments_p
25945 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
25946 return true;
25947 }
25948
25949 /* Otherwise, if the function decl isn't from a dependent scope, it can't be
25950 type-dependent. Checking this is important for functions with auto return
25951 type, which looks like a dependent type. */
25952 if (TREE_CODE (expression) == FUNCTION_DECL
25953 && !(DECL_CLASS_SCOPE_P (expression)
25954 && dependent_type_p (DECL_CONTEXT (expression)))
25955 && !(DECL_LANG_SPECIFIC (expression)
25956 && DECL_FRIEND_P (expression)
25957 && (!DECL_FRIEND_CONTEXT (expression)
25958 || dependent_type_p (DECL_FRIEND_CONTEXT (expression))))
25959 && !DECL_LOCAL_FUNCTION_P (expression))
25960 {
25961 gcc_assert (!dependent_type_p (TREE_TYPE (expression))
25962 || undeduced_auto_decl (expression));
25963 return false;
25964 }
25965
25966 /* Always dependent, on the number of arguments if nothing else. */
25967 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
25968 return true;
25969
25970 if (TREE_TYPE (expression) == unknown_type_node)
25971 {
25972 if (TREE_CODE (expression) == ADDR_EXPR)
25973 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
25974 if (TREE_CODE (expression) == COMPONENT_REF
25975 || TREE_CODE (expression) == OFFSET_REF)
25976 {
25977 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
25978 return true;
25979 expression = TREE_OPERAND (expression, 1);
25980 if (identifier_p (expression))
25981 return false;
25982 }
25983 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
25984 if (TREE_CODE (expression) == SCOPE_REF)
25985 return false;
25986
25987 if (BASELINK_P (expression))
25988 {
25989 if (BASELINK_OPTYPE (expression)
25990 && dependent_type_p (BASELINK_OPTYPE (expression)))
25991 return true;
25992 expression = BASELINK_FUNCTIONS (expression);
25993 }
25994
25995 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
25996 {
25997 if (any_dependent_template_arguments_p
25998 (TREE_OPERAND (expression, 1)))
25999 return true;
26000 expression = TREE_OPERAND (expression, 0);
26001 if (identifier_p (expression))
26002 return true;
26003 }
26004
26005 gcc_assert (OVL_P (expression));
26006
26007 for (lkp_iterator iter (expression); iter; ++iter)
26008 if (type_dependent_expression_p (*iter))
26009 return true;
26010
26011 return false;
26012 }
26013
26014 /* The type of a non-type template parm declared with a placeholder type
26015 depends on the corresponding template argument, even though
26016 placeholders are not normally considered dependent. */
26017 if (TREE_CODE (expression) == TEMPLATE_PARM_INDEX
26018 && is_auto (TREE_TYPE (expression)))
26019 return true;
26020
26021 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
26022
26023 /* Dependent type attributes might not have made it from the decl to
26024 the type yet. */
26025 if (DECL_P (expression)
26026 && any_dependent_type_attributes_p (DECL_ATTRIBUTES (expression)))
26027 return true;
26028
26029 return (dependent_type_p (TREE_TYPE (expression)));
26030 }
26031
26032 /* [temp.dep.expr]/5: A class member access expression (5.2.5) is
26033 type-dependent if the expression refers to a member of the current
26034 instantiation and the type of the referenced member is dependent, or the
26035 class member access expression refers to a member of an unknown
26036 specialization.
26037
26038 This function returns true if the OBJECT in such a class member access
26039 expression is of an unknown specialization. */
26040
26041 bool
26042 type_dependent_object_expression_p (tree object)
26043 {
26044 /* An IDENTIFIER_NODE can sometimes have a TREE_TYPE, but it's still
26045 dependent. */
26046 if (TREE_CODE (object) == IDENTIFIER_NODE)
26047 return true;
26048 tree scope = TREE_TYPE (object);
26049 return (!scope || dependent_scope_p (scope));
26050 }
26051
26052 /* walk_tree callback function for instantiation_dependent_expression_p,
26053 below. Returns non-zero if a dependent subexpression is found. */
26054
26055 static tree
26056 instantiation_dependent_r (tree *tp, int *walk_subtrees,
26057 void * /*data*/)
26058 {
26059 if (TYPE_P (*tp))
26060 {
26061 /* We don't have to worry about decltype currently because decltype
26062 of an instantiation-dependent expr is a dependent type. This
26063 might change depending on the resolution of DR 1172. */
26064 *walk_subtrees = false;
26065 return NULL_TREE;
26066 }
26067 enum tree_code code = TREE_CODE (*tp);
26068 switch (code)
26069 {
26070 /* Don't treat an argument list as dependent just because it has no
26071 TREE_TYPE. */
26072 case TREE_LIST:
26073 case TREE_VEC:
26074 case NONTYPE_ARGUMENT_PACK:
26075 return NULL_TREE;
26076
26077 case TEMPLATE_PARM_INDEX:
26078 if (dependent_type_p (TREE_TYPE (*tp)))
26079 return *tp;
26080 if (TEMPLATE_PARM_PARAMETER_PACK (*tp))
26081 return *tp;
26082 /* We'll check value-dependence separately. */
26083 return NULL_TREE;
26084
26085 /* Handle expressions with type operands. */
26086 case SIZEOF_EXPR:
26087 case ALIGNOF_EXPR:
26088 case TYPEID_EXPR:
26089 case AT_ENCODE_EXPR:
26090 {
26091 tree op = TREE_OPERAND (*tp, 0);
26092 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
26093 op = TREE_TYPE (op);
26094 if (TYPE_P (op))
26095 {
26096 if (dependent_type_p (op))
26097 return *tp;
26098 else
26099 {
26100 *walk_subtrees = false;
26101 return NULL_TREE;
26102 }
26103 }
26104 break;
26105 }
26106
26107 case COMPONENT_REF:
26108 if (identifier_p (TREE_OPERAND (*tp, 1)))
26109 /* In a template, finish_class_member_access_expr creates a
26110 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
26111 type-dependent, so that we can check access control at
26112 instantiation time (PR 42277). See also Core issue 1273. */
26113 return *tp;
26114 break;
26115
26116 case SCOPE_REF:
26117 if (instantiation_dependent_scope_ref_p (*tp))
26118 return *tp;
26119 else
26120 break;
26121
26122 /* Treat statement-expressions as dependent. */
26123 case BIND_EXPR:
26124 return *tp;
26125
26126 /* Treat requires-expressions as dependent. */
26127 case REQUIRES_EXPR:
26128 return *tp;
26129
26130 case CALL_EXPR:
26131 /* Treat calls to function concepts as dependent. */
26132 if (function_concept_check_p (*tp))
26133 return *tp;
26134 break;
26135
26136 case TEMPLATE_ID_EXPR:
26137 /* And variable concepts. */
26138 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
26139 return *tp;
26140 break;
26141
26142 case CONSTRUCTOR:
26143 if (CONSTRUCTOR_IS_DEPENDENT (*tp))
26144 return *tp;
26145 break;
26146
26147 default:
26148 break;
26149 }
26150
26151 if (type_dependent_expression_p (*tp))
26152 return *tp;
26153 else
26154 return NULL_TREE;
26155 }
26156
26157 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
26158 sense defined by the ABI:
26159
26160 "An expression is instantiation-dependent if it is type-dependent
26161 or value-dependent, or it has a subexpression that is type-dependent
26162 or value-dependent."
26163
26164 Except don't actually check value-dependence for unevaluated expressions,
26165 because in sizeof(i) we don't care about the value of i. Checking
26166 type-dependence will in turn check value-dependence of array bounds/template
26167 arguments as needed. */
26168
26169 bool
26170 instantiation_dependent_uneval_expression_p (tree expression)
26171 {
26172 tree result;
26173
26174 if (!processing_template_decl)
26175 return false;
26176
26177 if (expression == error_mark_node)
26178 return false;
26179
26180 result = cp_walk_tree_without_duplicates (&expression,
26181 instantiation_dependent_r, NULL);
26182 return result != NULL_TREE;
26183 }
26184
26185 /* As above, but also check value-dependence of the expression as a whole. */
26186
26187 bool
26188 instantiation_dependent_expression_p (tree expression)
26189 {
26190 return (instantiation_dependent_uneval_expression_p (expression)
26191 || value_dependent_expression_p (expression));
26192 }
26193
26194 /* Like type_dependent_expression_p, but it also works while not processing
26195 a template definition, i.e. during substitution or mangling. */
26196
26197 bool
26198 type_dependent_expression_p_push (tree expr)
26199 {
26200 bool b;
26201 ++processing_template_decl;
26202 b = type_dependent_expression_p (expr);
26203 --processing_template_decl;
26204 return b;
26205 }
26206
26207 /* Returns TRUE if ARGS contains a type-dependent expression. */
26208
26209 bool
26210 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
26211 {
26212 unsigned int i;
26213 tree arg;
26214
26215 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
26216 {
26217 if (type_dependent_expression_p (arg))
26218 return true;
26219 }
26220 return false;
26221 }
26222
26223 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
26224 expressions) contains any type-dependent expressions. */
26225
26226 bool
26227 any_type_dependent_elements_p (const_tree list)
26228 {
26229 for (; list; list = TREE_CHAIN (list))
26230 if (type_dependent_expression_p (TREE_VALUE (list)))
26231 return true;
26232
26233 return false;
26234 }
26235
26236 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
26237 expressions) contains any value-dependent expressions. */
26238
26239 bool
26240 any_value_dependent_elements_p (const_tree list)
26241 {
26242 for (; list; list = TREE_CHAIN (list))
26243 if (value_dependent_expression_p (TREE_VALUE (list)))
26244 return true;
26245
26246 return false;
26247 }
26248
26249 /* Returns TRUE if the ARG (a template argument) is dependent. */
26250
26251 bool
26252 dependent_template_arg_p (tree arg)
26253 {
26254 if (!processing_template_decl)
26255 return false;
26256
26257 /* Assume a template argument that was wrongly written by the user
26258 is dependent. This is consistent with what
26259 any_dependent_template_arguments_p [that calls this function]
26260 does. */
26261 if (!arg || arg == error_mark_node)
26262 return true;
26263
26264 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
26265 arg = argument_pack_select_arg (arg);
26266
26267 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
26268 return true;
26269 if (TREE_CODE (arg) == TEMPLATE_DECL)
26270 {
26271 if (DECL_TEMPLATE_PARM_P (arg))
26272 return true;
26273 /* A member template of a dependent class is not necessarily
26274 type-dependent, but it is a dependent template argument because it
26275 will be a member of an unknown specialization to that template. */
26276 tree scope = CP_DECL_CONTEXT (arg);
26277 return TYPE_P (scope) && dependent_type_p (scope);
26278 }
26279 else if (ARGUMENT_PACK_P (arg))
26280 {
26281 tree args = ARGUMENT_PACK_ARGS (arg);
26282 int i, len = TREE_VEC_LENGTH (args);
26283 for (i = 0; i < len; ++i)
26284 {
26285 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
26286 return true;
26287 }
26288
26289 return false;
26290 }
26291 else if (TYPE_P (arg))
26292 return dependent_type_p (arg);
26293 else
26294 return (type_dependent_expression_p (arg)
26295 || value_dependent_expression_p (arg));
26296 }
26297
26298 /* Returns true if ARGS (a collection of template arguments) contains
26299 any types that require structural equality testing. */
26300
26301 bool
26302 any_template_arguments_need_structural_equality_p (tree args)
26303 {
26304 int i;
26305 int j;
26306
26307 if (!args)
26308 return false;
26309 if (args == error_mark_node)
26310 return true;
26311
26312 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
26313 {
26314 tree level = TMPL_ARGS_LEVEL (args, i + 1);
26315 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
26316 {
26317 tree arg = TREE_VEC_ELT (level, j);
26318 tree packed_args = NULL_TREE;
26319 int k, len = 1;
26320
26321 if (ARGUMENT_PACK_P (arg))
26322 {
26323 /* Look inside the argument pack. */
26324 packed_args = ARGUMENT_PACK_ARGS (arg);
26325 len = TREE_VEC_LENGTH (packed_args);
26326 }
26327
26328 for (k = 0; k < len; ++k)
26329 {
26330 if (packed_args)
26331 arg = TREE_VEC_ELT (packed_args, k);
26332
26333 if (error_operand_p (arg))
26334 return true;
26335 else if (TREE_CODE (arg) == TEMPLATE_DECL)
26336 continue;
26337 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
26338 return true;
26339 else if (!TYPE_P (arg) && TREE_TYPE (arg)
26340 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
26341 return true;
26342 }
26343 }
26344 }
26345
26346 return false;
26347 }
26348
26349 /* Returns true if ARGS (a collection of template arguments) contains
26350 any dependent arguments. */
26351
26352 bool
26353 any_dependent_template_arguments_p (const_tree args)
26354 {
26355 int i;
26356 int j;
26357
26358 if (!args)
26359 return false;
26360 if (args == error_mark_node)
26361 return true;
26362
26363 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
26364 {
26365 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
26366 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
26367 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
26368 return true;
26369 }
26370
26371 return false;
26372 }
26373
26374 /* Returns true if ARGS contains any errors. */
26375
26376 bool
26377 any_erroneous_template_args_p (const_tree args)
26378 {
26379 int i;
26380 int j;
26381
26382 if (args == error_mark_node)
26383 return true;
26384
26385 if (args && TREE_CODE (args) != TREE_VEC)
26386 {
26387 if (tree ti = get_template_info (args))
26388 args = TI_ARGS (ti);
26389 else
26390 args = NULL_TREE;
26391 }
26392
26393 if (!args)
26394 return false;
26395
26396 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
26397 {
26398 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
26399 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
26400 if (error_operand_p (TREE_VEC_ELT (level, j)))
26401 return true;
26402 }
26403
26404 return false;
26405 }
26406
26407 /* Returns TRUE if the template TMPL is type-dependent. */
26408
26409 bool
26410 dependent_template_p (tree tmpl)
26411 {
26412 if (TREE_CODE (tmpl) == OVERLOAD)
26413 {
26414 for (lkp_iterator iter (tmpl); iter; ++iter)
26415 if (dependent_template_p (*iter))
26416 return true;
26417 return false;
26418 }
26419
26420 /* Template template parameters are dependent. */
26421 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
26422 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
26423 return true;
26424 /* So are names that have not been looked up. */
26425 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
26426 return true;
26427 return false;
26428 }
26429
26430 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
26431
26432 bool
26433 dependent_template_id_p (tree tmpl, tree args)
26434 {
26435 return (dependent_template_p (tmpl)
26436 || any_dependent_template_arguments_p (args));
26437 }
26438
26439 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
26440 are dependent. */
26441
26442 bool
26443 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
26444 {
26445 int i;
26446
26447 if (!processing_template_decl)
26448 return false;
26449
26450 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
26451 {
26452 tree decl = TREE_VEC_ELT (declv, i);
26453 tree init = TREE_VEC_ELT (initv, i);
26454 tree cond = TREE_VEC_ELT (condv, i);
26455 tree incr = TREE_VEC_ELT (incrv, i);
26456
26457 if (type_dependent_expression_p (decl)
26458 || TREE_CODE (decl) == SCOPE_REF)
26459 return true;
26460
26461 if (init && type_dependent_expression_p (init))
26462 return true;
26463
26464 if (cond == global_namespace)
26465 return true;
26466
26467 if (type_dependent_expression_p (cond))
26468 return true;
26469
26470 if (COMPARISON_CLASS_P (cond)
26471 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
26472 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
26473 return true;
26474
26475 if (TREE_CODE (incr) == MODOP_EXPR)
26476 {
26477 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
26478 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
26479 return true;
26480 }
26481 else if (type_dependent_expression_p (incr))
26482 return true;
26483 else if (TREE_CODE (incr) == MODIFY_EXPR)
26484 {
26485 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
26486 return true;
26487 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
26488 {
26489 tree t = TREE_OPERAND (incr, 1);
26490 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
26491 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
26492 return true;
26493
26494 /* If this loop has a class iterator with != comparison
26495 with increment other than i++/++i/i--/--i, make sure the
26496 increment is constant. */
26497 if (CLASS_TYPE_P (TREE_TYPE (decl))
26498 && TREE_CODE (cond) == NE_EXPR)
26499 {
26500 if (TREE_OPERAND (t, 0) == decl)
26501 t = TREE_OPERAND (t, 1);
26502 else
26503 t = TREE_OPERAND (t, 0);
26504 if (TREE_CODE (t) != INTEGER_CST)
26505 return true;
26506 }
26507 }
26508 }
26509 }
26510
26511 return false;
26512 }
26513
26514 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
26515 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
26516 no such TYPE can be found. Note that this function peers inside
26517 uninstantiated templates and therefore should be used only in
26518 extremely limited situations. ONLY_CURRENT_P restricts this
26519 peering to the currently open classes hierarchy (which is required
26520 when comparing types). */
26521
26522 tree
26523 resolve_typename_type (tree type, bool only_current_p)
26524 {
26525 tree scope;
26526 tree name;
26527 tree decl;
26528 int quals;
26529 tree pushed_scope;
26530 tree result;
26531
26532 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
26533
26534 scope = TYPE_CONTEXT (type);
26535 /* We shouldn't have built a TYPENAME_TYPE with a non-dependent scope. */
26536 gcc_checking_assert (uses_template_parms (scope));
26537
26538 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
26539 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
26540 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
26541 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
26542 identifier of the TYPENAME_TYPE anymore.
26543 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
26544 TYPENAME_TYPE instead, we avoid messing up with a possible
26545 typedef variant case. */
26546 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
26547
26548 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
26549 it first before we can figure out what NAME refers to. */
26550 if (TREE_CODE (scope) == TYPENAME_TYPE)
26551 {
26552 if (TYPENAME_IS_RESOLVING_P (scope))
26553 /* Given a class template A with a dependent base with nested type C,
26554 typedef typename A::C::C C will land us here, as trying to resolve
26555 the initial A::C leads to the local C typedef, which leads back to
26556 A::C::C. So we break the recursion now. */
26557 return type;
26558 else
26559 scope = resolve_typename_type (scope, only_current_p);
26560 }
26561 /* If we don't know what SCOPE refers to, then we cannot resolve the
26562 TYPENAME_TYPE. */
26563 if (!CLASS_TYPE_P (scope))
26564 return type;
26565 /* If this is a typedef, we don't want to look inside (c++/11987). */
26566 if (typedef_variant_p (type))
26567 return type;
26568 /* If SCOPE isn't the template itself, it will not have a valid
26569 TYPE_FIELDS list. */
26570 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
26571 /* scope is either the template itself or a compatible instantiation
26572 like X<T>, so look up the name in the original template. */
26573 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
26574 /* If scope has no fields, it can't be a current instantiation. Check this
26575 before currently_open_class to avoid infinite recursion (71515). */
26576 if (!TYPE_FIELDS (scope))
26577 return type;
26578 /* If the SCOPE is not the current instantiation, there's no reason
26579 to look inside it. */
26580 if (only_current_p && !currently_open_class (scope))
26581 return type;
26582 /* Enter the SCOPE so that name lookup will be resolved as if we
26583 were in the class definition. In particular, SCOPE will no
26584 longer be considered a dependent type. */
26585 pushed_scope = push_scope (scope);
26586 /* Look up the declaration. */
26587 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
26588 tf_warning_or_error);
26589
26590 result = NULL_TREE;
26591
26592 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
26593 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
26594 tree fullname = TYPENAME_TYPE_FULLNAME (type);
26595 if (!decl)
26596 /*nop*/;
26597 else if (identifier_p (fullname)
26598 && TREE_CODE (decl) == TYPE_DECL)
26599 {
26600 result = TREE_TYPE (decl);
26601 if (result == error_mark_node)
26602 result = NULL_TREE;
26603 }
26604 else if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR
26605 && DECL_CLASS_TEMPLATE_P (decl))
26606 {
26607 /* Obtain the template and the arguments. */
26608 tree tmpl = TREE_OPERAND (fullname, 0);
26609 if (TREE_CODE (tmpl) == IDENTIFIER_NODE)
26610 {
26611 /* We get here with a plain identifier because a previous tentative
26612 parse of the nested-name-specifier as part of a ptr-operator saw
26613 ::template X<A>. The use of ::template is necessary in a
26614 ptr-operator, but wrong in a declarator-id.
26615
26616 [temp.names]: In a qualified-id of a declarator-id, the keyword
26617 template shall not appear at the top level. */
26618 pedwarn (cp_expr_loc_or_input_loc (fullname), OPT_Wpedantic,
26619 "keyword %<template%> not allowed in declarator-id");
26620 tmpl = decl;
26621 }
26622 tree args = TREE_OPERAND (fullname, 1);
26623 /* Instantiate the template. */
26624 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
26625 /*entering_scope=*/true,
26626 tf_error | tf_user);
26627 if (result == error_mark_node)
26628 result = NULL_TREE;
26629 }
26630
26631 /* Leave the SCOPE. */
26632 if (pushed_scope)
26633 pop_scope (pushed_scope);
26634
26635 /* If we failed to resolve it, return the original typename. */
26636 if (!result)
26637 return type;
26638
26639 /* If lookup found a typename type, resolve that too. */
26640 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
26641 {
26642 /* Ill-formed programs can cause infinite recursion here, so we
26643 must catch that. */
26644 TYPENAME_IS_RESOLVING_P (result) = 1;
26645 result = resolve_typename_type (result, only_current_p);
26646 TYPENAME_IS_RESOLVING_P (result) = 0;
26647 }
26648
26649 /* Qualify the resulting type. */
26650 quals = cp_type_quals (type);
26651 if (quals)
26652 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
26653
26654 return result;
26655 }
26656
26657 /* EXPR is an expression which is not type-dependent. Return a proxy
26658 for EXPR that can be used to compute the types of larger
26659 expressions containing EXPR. */
26660
26661 tree
26662 build_non_dependent_expr (tree expr)
26663 {
26664 tree orig_expr = expr;
26665 tree inner_expr;
26666
26667 /* When checking, try to get a constant value for all non-dependent
26668 expressions in order to expose bugs in *_dependent_expression_p
26669 and constexpr. This can affect code generation, see PR70704, so
26670 only do this for -fchecking=2. */
26671 if (flag_checking > 1
26672 && cxx_dialect >= cxx11
26673 /* Don't do this during nsdmi parsing as it can lead to
26674 unexpected recursive instantiations. */
26675 && !parsing_nsdmi ()
26676 /* Don't do this during concept expansion either and for
26677 the same reason. */
26678 && !expanding_concept ())
26679 fold_non_dependent_expr (expr, tf_none);
26680
26681 STRIP_ANY_LOCATION_WRAPPER (expr);
26682
26683 /* Preserve OVERLOADs; the functions must be available to resolve
26684 types. */
26685 inner_expr = expr;
26686 if (TREE_CODE (inner_expr) == STMT_EXPR)
26687 inner_expr = stmt_expr_value_expr (inner_expr);
26688 if (TREE_CODE (inner_expr) == ADDR_EXPR)
26689 inner_expr = TREE_OPERAND (inner_expr, 0);
26690 if (TREE_CODE (inner_expr) == COMPONENT_REF)
26691 inner_expr = TREE_OPERAND (inner_expr, 1);
26692 if (is_overloaded_fn (inner_expr)
26693 || TREE_CODE (inner_expr) == OFFSET_REF)
26694 return orig_expr;
26695 /* There is no need to return a proxy for a variable or enumerator. */
26696 if (VAR_P (expr) || TREE_CODE (expr) == CONST_DECL)
26697 return orig_expr;
26698 /* Preserve string constants; conversions from string constants to
26699 "char *" are allowed, even though normally a "const char *"
26700 cannot be used to initialize a "char *". */
26701 if (TREE_CODE (expr) == STRING_CST)
26702 return orig_expr;
26703 /* Preserve void and arithmetic constants, as an optimization -- there is no
26704 reason to create a new node. */
26705 if (TREE_CODE (expr) == VOID_CST
26706 || TREE_CODE (expr) == INTEGER_CST
26707 || TREE_CODE (expr) == REAL_CST)
26708 return orig_expr;
26709 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
26710 There is at least one place where we want to know that a
26711 particular expression is a throw-expression: when checking a ?:
26712 expression, there are special rules if the second or third
26713 argument is a throw-expression. */
26714 if (TREE_CODE (expr) == THROW_EXPR)
26715 return orig_expr;
26716
26717 /* Don't wrap an initializer list, we need to be able to look inside. */
26718 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
26719 return orig_expr;
26720
26721 /* Don't wrap a dummy object, we need to be able to test for it. */
26722 if (is_dummy_object (expr))
26723 return orig_expr;
26724
26725 if (TREE_CODE (expr) == COND_EXPR)
26726 return build3 (COND_EXPR,
26727 TREE_TYPE (expr),
26728 TREE_OPERAND (expr, 0),
26729 (TREE_OPERAND (expr, 1)
26730 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
26731 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
26732 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
26733 if (TREE_CODE (expr) == COMPOUND_EXPR
26734 && !COMPOUND_EXPR_OVERLOADED (expr))
26735 return build2 (COMPOUND_EXPR,
26736 TREE_TYPE (expr),
26737 TREE_OPERAND (expr, 0),
26738 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
26739
26740 /* If the type is unknown, it can't really be non-dependent */
26741 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
26742
26743 /* Otherwise, build a NON_DEPENDENT_EXPR. */
26744 return build1_loc (EXPR_LOCATION (orig_expr), NON_DEPENDENT_EXPR,
26745 TREE_TYPE (expr), expr);
26746 }
26747
26748 /* ARGS is a vector of expressions as arguments to a function call.
26749 Replace the arguments with equivalent non-dependent expressions.
26750 This modifies ARGS in place. */
26751
26752 void
26753 make_args_non_dependent (vec<tree, va_gc> *args)
26754 {
26755 unsigned int ix;
26756 tree arg;
26757
26758 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
26759 {
26760 tree newarg = build_non_dependent_expr (arg);
26761 if (newarg != arg)
26762 (*args)[ix] = newarg;
26763 }
26764 }
26765
26766 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
26767 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
26768 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
26769
26770 static tree
26771 make_auto_1 (tree name, bool set_canonical)
26772 {
26773 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
26774 TYPE_NAME (au) = build_decl (input_location,
26775 TYPE_DECL, name, au);
26776 TYPE_STUB_DECL (au) = TYPE_NAME (au);
26777 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
26778 (0, processing_template_decl + 1, processing_template_decl + 1,
26779 TYPE_NAME (au), NULL_TREE);
26780 if (set_canonical)
26781 TYPE_CANONICAL (au) = canonical_type_parameter (au);
26782 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
26783 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
26784
26785 return au;
26786 }
26787
26788 tree
26789 make_decltype_auto (void)
26790 {
26791 return make_auto_1 (decltype_auto_identifier, true);
26792 }
26793
26794 tree
26795 make_auto (void)
26796 {
26797 return make_auto_1 (auto_identifier, true);
26798 }
26799
26800 /* Return a C++17 deduction placeholder for class template TMPL. */
26801
26802 tree
26803 make_template_placeholder (tree tmpl)
26804 {
26805 tree t = make_auto_1 (auto_identifier, false);
26806 CLASS_PLACEHOLDER_TEMPLATE (t) = tmpl;
26807 /* Our canonical type depends on the placeholder. */
26808 TYPE_CANONICAL (t) = canonical_type_parameter (t);
26809 return t;
26810 }
26811
26812 /* True iff T is a C++17 class template deduction placeholder. */
26813
26814 bool
26815 template_placeholder_p (tree t)
26816 {
26817 return is_auto (t) && CLASS_PLACEHOLDER_TEMPLATE (t);
26818 }
26819
26820 /* Make a "constrained auto" type-specifier. This is an
26821 auto type with constraints that must be associated after
26822 deduction. The constraint is formed from the given
26823 CONC and its optional sequence of arguments, which are
26824 non-null if written as partial-concept-id. */
26825
26826 tree
26827 make_constrained_auto (tree con, tree args)
26828 {
26829 tree type = make_auto_1 (auto_identifier, false);
26830
26831 /* Build the constraint. */
26832 tree tmpl = DECL_TI_TEMPLATE (con);
26833 tree expr = VAR_P (con) ? tmpl : ovl_make (tmpl);
26834 expr = build_concept_check (expr, type, args);
26835
26836 tree constr = normalize_expression (expr);
26837 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
26838
26839 /* Our canonical type depends on the constraint. */
26840 TYPE_CANONICAL (type) = canonical_type_parameter (type);
26841
26842 /* Attach the constraint to the type declaration. */
26843 tree decl = TYPE_NAME (type);
26844 return decl;
26845 }
26846
26847 /* Given type ARG, return std::initializer_list<ARG>. */
26848
26849 static tree
26850 listify (tree arg)
26851 {
26852 tree std_init_list = get_namespace_binding (std_node, init_list_identifier);
26853
26854 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
26855 {
26856 gcc_rich_location richloc (input_location);
26857 maybe_add_include_fixit (&richloc, "<initializer_list>", false);
26858 error_at (&richloc,
26859 "deducing from brace-enclosed initializer list"
26860 " requires %<#include <initializer_list>%>");
26861
26862 return error_mark_node;
26863 }
26864 tree argvec = make_tree_vec (1);
26865 TREE_VEC_ELT (argvec, 0) = arg;
26866
26867 return lookup_template_class (std_init_list, argvec, NULL_TREE,
26868 NULL_TREE, 0, tf_warning_or_error);
26869 }
26870
26871 /* Replace auto in TYPE with std::initializer_list<auto>. */
26872
26873 static tree
26874 listify_autos (tree type, tree auto_node)
26875 {
26876 tree init_auto = listify (strip_top_quals (auto_node));
26877 tree argvec = make_tree_vec (1);
26878 TREE_VEC_ELT (argvec, 0) = init_auto;
26879 if (processing_template_decl)
26880 argvec = add_to_template_args (current_template_args (), argvec);
26881 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
26882 }
26883
26884 /* Hash traits for hashing possibly constrained 'auto'
26885 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
26886
26887 struct auto_hash : default_hash_traits<tree>
26888 {
26889 static inline hashval_t hash (tree);
26890 static inline bool equal (tree, tree);
26891 };
26892
26893 /* Hash the 'auto' T. */
26894
26895 inline hashval_t
26896 auto_hash::hash (tree t)
26897 {
26898 if (tree c = NON_ERROR (PLACEHOLDER_TYPE_CONSTRAINTS (t)))
26899 /* Matching constrained-type-specifiers denote the same template
26900 parameter, so hash the constraint. */
26901 return hash_placeholder_constraint (c);
26902 else
26903 /* But unconstrained autos are all separate, so just hash the pointer. */
26904 return iterative_hash_object (t, 0);
26905 }
26906
26907 /* Compare two 'auto's. */
26908
26909 inline bool
26910 auto_hash::equal (tree t1, tree t2)
26911 {
26912 if (t1 == t2)
26913 return true;
26914
26915 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
26916 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
26917
26918 /* Two unconstrained autos are distinct. */
26919 if (!c1 || !c2)
26920 return false;
26921
26922 return equivalent_placeholder_constraints (c1, c2);
26923 }
26924
26925 /* for_each_template_parm callback for extract_autos: if t is a (possibly
26926 constrained) auto, add it to the vector. */
26927
26928 static int
26929 extract_autos_r (tree t, void *data)
26930 {
26931 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
26932 if (is_auto (t))
26933 {
26934 /* All the autos were built with index 0; fix that up now. */
26935 tree *p = hash.find_slot (t, INSERT);
26936 unsigned idx;
26937 if (*p)
26938 /* If this is a repeated constrained-type-specifier, use the index we
26939 chose before. */
26940 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
26941 else
26942 {
26943 /* Otherwise this is new, so use the current count. */
26944 *p = t;
26945 idx = hash.elements () - 1;
26946 }
26947 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
26948 }
26949
26950 /* Always keep walking. */
26951 return 0;
26952 }
26953
26954 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
26955 says they can appear anywhere in the type. */
26956
26957 static tree
26958 extract_autos (tree type)
26959 {
26960 hash_set<tree> visited;
26961 hash_table<auto_hash> hash (2);
26962
26963 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
26964
26965 tree tree_vec = make_tree_vec (hash.elements());
26966 for (hash_table<auto_hash>::iterator iter = hash.begin();
26967 iter != hash.end(); ++iter)
26968 {
26969 tree elt = *iter;
26970 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
26971 TREE_VEC_ELT (tree_vec, i)
26972 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
26973 }
26974
26975 return tree_vec;
26976 }
26977
26978 /* The stem for deduction guide names. */
26979 const char *const dguide_base = "__dguide_";
26980
26981 /* Return the name for a deduction guide for class template TMPL. */
26982
26983 tree
26984 dguide_name (tree tmpl)
26985 {
26986 tree type = (TYPE_P (tmpl) ? tmpl : TREE_TYPE (tmpl));
26987 tree tname = TYPE_IDENTIFIER (type);
26988 char *buf = (char *) alloca (1 + strlen (dguide_base)
26989 + IDENTIFIER_LENGTH (tname));
26990 memcpy (buf, dguide_base, strlen (dguide_base));
26991 memcpy (buf + strlen (dguide_base), IDENTIFIER_POINTER (tname),
26992 IDENTIFIER_LENGTH (tname) + 1);
26993 tree dname = get_identifier (buf);
26994 TREE_TYPE (dname) = type;
26995 return dname;
26996 }
26997
26998 /* True if NAME is the name of a deduction guide. */
26999
27000 bool
27001 dguide_name_p (tree name)
27002 {
27003 return (TREE_CODE (name) == IDENTIFIER_NODE
27004 && TREE_TYPE (name)
27005 && !strncmp (IDENTIFIER_POINTER (name), dguide_base,
27006 strlen (dguide_base)));
27007 }
27008
27009 /* True if FN is a deduction guide. */
27010
27011 bool
27012 deduction_guide_p (const_tree fn)
27013 {
27014 if (DECL_P (fn))
27015 if (tree name = DECL_NAME (fn))
27016 return dguide_name_p (name);
27017 return false;
27018 }
27019
27020 /* True if FN is the copy deduction guide, i.e. A(A)->A. */
27021
27022 bool
27023 copy_guide_p (const_tree fn)
27024 {
27025 gcc_assert (deduction_guide_p (fn));
27026 if (!DECL_ARTIFICIAL (fn))
27027 return false;
27028 tree parms = FUNCTION_FIRST_USER_PARMTYPE (DECL_TI_TEMPLATE (fn));
27029 return (TREE_CHAIN (parms) == void_list_node
27030 && same_type_p (TREE_VALUE (parms), TREE_TYPE (DECL_NAME (fn))));
27031 }
27032
27033 /* True if FN is a guide generated from a constructor template. */
27034
27035 bool
27036 template_guide_p (const_tree fn)
27037 {
27038 gcc_assert (deduction_guide_p (fn));
27039 if (!DECL_ARTIFICIAL (fn))
27040 return false;
27041 tree tmpl = DECL_TI_TEMPLATE (fn);
27042 if (tree org = DECL_ABSTRACT_ORIGIN (tmpl))
27043 return PRIMARY_TEMPLATE_P (org);
27044 return false;
27045 }
27046
27047 /* OLDDECL is a _DECL for a template parameter. Return a similar parameter at
27048 LEVEL:INDEX, using tsubst_args and complain for substitution into non-type
27049 template parameter types. Note that the handling of template template
27050 parameters relies on current_template_parms being set appropriately for the
27051 new template. */
27052
27053 static tree
27054 rewrite_template_parm (tree olddecl, unsigned index, unsigned level,
27055 tree tsubst_args, tsubst_flags_t complain)
27056 {
27057 if (olddecl == error_mark_node)
27058 return error_mark_node;
27059
27060 tree oldidx = get_template_parm_index (olddecl);
27061
27062 tree newtype;
27063 if (TREE_CODE (olddecl) == TYPE_DECL
27064 || TREE_CODE (olddecl) == TEMPLATE_DECL)
27065 {
27066 tree oldtype = TREE_TYPE (olddecl);
27067 newtype = cxx_make_type (TREE_CODE (oldtype));
27068 TYPE_MAIN_VARIANT (newtype) = newtype;
27069 if (TREE_CODE (oldtype) == TEMPLATE_TYPE_PARM)
27070 TEMPLATE_TYPE_PARM_FOR_CLASS (newtype)
27071 = TEMPLATE_TYPE_PARM_FOR_CLASS (oldtype);
27072 }
27073 else
27074 {
27075 newtype = TREE_TYPE (olddecl);
27076 if (type_uses_auto (newtype))
27077 {
27078 // Substitute once to fix references to other template parameters.
27079 newtype = tsubst (newtype, tsubst_args,
27080 complain|tf_partial, NULL_TREE);
27081 // Now substitute again to reduce the level of the auto.
27082 newtype = tsubst (newtype, current_template_args (),
27083 complain, NULL_TREE);
27084 }
27085 else
27086 newtype = tsubst (newtype, tsubst_args,
27087 complain, NULL_TREE);
27088 }
27089
27090 tree newdecl
27091 = build_decl (DECL_SOURCE_LOCATION (olddecl), TREE_CODE (olddecl),
27092 DECL_NAME (olddecl), newtype);
27093 SET_DECL_TEMPLATE_PARM_P (newdecl);
27094
27095 tree newidx;
27096 if (TREE_CODE (olddecl) == TYPE_DECL
27097 || TREE_CODE (olddecl) == TEMPLATE_DECL)
27098 {
27099 newidx = TEMPLATE_TYPE_PARM_INDEX (newtype)
27100 = build_template_parm_index (index, level, level,
27101 newdecl, newtype);
27102 TEMPLATE_PARM_PARAMETER_PACK (newidx)
27103 = TEMPLATE_PARM_PARAMETER_PACK (oldidx);
27104 TYPE_STUB_DECL (newtype) = TYPE_NAME (newtype) = newdecl;
27105 TYPE_CANONICAL (newtype) = canonical_type_parameter (newtype);
27106
27107 if (TREE_CODE (olddecl) == TEMPLATE_DECL)
27108 {
27109 DECL_TEMPLATE_RESULT (newdecl)
27110 = build_decl (DECL_SOURCE_LOCATION (olddecl), TYPE_DECL,
27111 DECL_NAME (olddecl), newtype);
27112 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (newdecl)) = true;
27113 // First create a copy (ttargs) of tsubst_args with an
27114 // additional level for the template template parameter's own
27115 // template parameters (ttparms).
27116 tree ttparms = (INNERMOST_TEMPLATE_PARMS
27117 (DECL_TEMPLATE_PARMS (olddecl)));
27118 const int depth = TMPL_ARGS_DEPTH (tsubst_args);
27119 tree ttargs = make_tree_vec (depth + 1);
27120 for (int i = 0; i < depth; ++i)
27121 TREE_VEC_ELT (ttargs, i) = TREE_VEC_ELT (tsubst_args, i);
27122 TREE_VEC_ELT (ttargs, depth)
27123 = template_parms_level_to_args (ttparms);
27124 // Substitute ttargs into ttparms to fix references to
27125 // other template parameters.
27126 ttparms = tsubst_template_parms_level (ttparms, ttargs,
27127 complain|tf_partial);
27128 // Now substitute again with args based on tparms, to reduce
27129 // the level of the ttparms.
27130 ttargs = current_template_args ();
27131 ttparms = tsubst_template_parms_level (ttparms, ttargs,
27132 complain);
27133 // Finally, tack the adjusted parms onto tparms.
27134 ttparms = tree_cons (size_int (depth), ttparms,
27135 current_template_parms);
27136 DECL_TEMPLATE_PARMS (newdecl) = ttparms;
27137 }
27138 }
27139 else
27140 {
27141 tree oldconst = TEMPLATE_PARM_DECL (oldidx);
27142 tree newconst
27143 = build_decl (DECL_SOURCE_LOCATION (oldconst),
27144 TREE_CODE (oldconst),
27145 DECL_NAME (oldconst), newtype);
27146 TREE_CONSTANT (newconst) = TREE_CONSTANT (newdecl)
27147 = TREE_READONLY (newconst) = TREE_READONLY (newdecl) = true;
27148 SET_DECL_TEMPLATE_PARM_P (newconst);
27149 newidx = build_template_parm_index (index, level, level,
27150 newconst, newtype);
27151 TEMPLATE_PARM_PARAMETER_PACK (newidx)
27152 = TEMPLATE_PARM_PARAMETER_PACK (oldidx);
27153 DECL_INITIAL (newdecl) = DECL_INITIAL (newconst) = newidx;
27154 }
27155
27156 return newdecl;
27157 }
27158
27159 /* Returns a C++17 class deduction guide template based on the constructor
27160 CTOR. As a special case, CTOR can be a RECORD_TYPE for an implicit default
27161 guide, or REFERENCE_TYPE for an implicit copy/move guide. */
27162
27163 static tree
27164 build_deduction_guide (tree ctor, tree outer_args, tsubst_flags_t complain)
27165 {
27166 tree type, tparms, targs, fparms, fargs, ci;
27167 bool memtmpl = false;
27168 bool explicit_p;
27169 location_t loc;
27170 tree fn_tmpl = NULL_TREE;
27171
27172 if (TYPE_P (ctor))
27173 {
27174 type = ctor;
27175 bool copy_p = TYPE_REF_P (type);
27176 if (copy_p)
27177 {
27178 type = TREE_TYPE (type);
27179 fparms = tree_cons (NULL_TREE, type, void_list_node);
27180 }
27181 else
27182 fparms = void_list_node;
27183
27184 tree ctmpl = CLASSTYPE_TI_TEMPLATE (type);
27185 tparms = DECL_TEMPLATE_PARMS (ctmpl);
27186 targs = CLASSTYPE_TI_ARGS (type);
27187 ci = NULL_TREE;
27188 fargs = NULL_TREE;
27189 loc = DECL_SOURCE_LOCATION (ctmpl);
27190 explicit_p = false;
27191 }
27192 else
27193 {
27194 ++processing_template_decl;
27195 bool ok = true;
27196
27197 fn_tmpl
27198 = (TREE_CODE (ctor) == TEMPLATE_DECL ? ctor
27199 : DECL_TI_TEMPLATE (ctor));
27200 if (outer_args)
27201 fn_tmpl = tsubst (fn_tmpl, outer_args, complain, ctor);
27202 ctor = DECL_TEMPLATE_RESULT (fn_tmpl);
27203
27204 type = DECL_CONTEXT (ctor);
27205
27206 tparms = DECL_TEMPLATE_PARMS (fn_tmpl);
27207 /* If type is a member class template, DECL_TI_ARGS (ctor) will have
27208 fully specialized args for the enclosing class. Strip those off, as
27209 the deduction guide won't have those template parameters. */
27210 targs = get_innermost_template_args (DECL_TI_ARGS (ctor),
27211 TMPL_PARMS_DEPTH (tparms));
27212 /* Discard the 'this' parameter. */
27213 fparms = FUNCTION_ARG_CHAIN (ctor);
27214 fargs = TREE_CHAIN (DECL_ARGUMENTS (ctor));
27215 ci = get_constraints (ctor);
27216 loc = DECL_SOURCE_LOCATION (ctor);
27217 explicit_p = DECL_NONCONVERTING_P (ctor);
27218
27219 if (PRIMARY_TEMPLATE_P (fn_tmpl))
27220 {
27221 memtmpl = true;
27222
27223 /* For a member template constructor, we need to flatten the two
27224 template parameter lists into one, and then adjust the function
27225 signature accordingly. This gets...complicated. */
27226 tree save_parms = current_template_parms;
27227
27228 /* For a member template we should have two levels of parms/args, one
27229 for the class and one for the constructor. We stripped
27230 specialized args for further enclosing classes above. */
27231 const int depth = 2;
27232 gcc_assert (TMPL_ARGS_DEPTH (targs) == depth);
27233
27234 /* Template args for translating references to the two-level template
27235 parameters into references to the one-level template parameters we
27236 are creating. */
27237 tree tsubst_args = copy_node (targs);
27238 TMPL_ARGS_LEVEL (tsubst_args, depth)
27239 = copy_node (TMPL_ARGS_LEVEL (tsubst_args, depth));
27240
27241 /* Template parms for the constructor template. */
27242 tree ftparms = TREE_VALUE (tparms);
27243 unsigned flen = TREE_VEC_LENGTH (ftparms);
27244 /* Template parms for the class template. */
27245 tparms = TREE_CHAIN (tparms);
27246 tree ctparms = TREE_VALUE (tparms);
27247 unsigned clen = TREE_VEC_LENGTH (ctparms);
27248 /* Template parms for the deduction guide start as a copy of the
27249 template parms for the class. We set current_template_parms for
27250 lookup_template_class_1. */
27251 current_template_parms = tparms = copy_node (tparms);
27252 tree new_vec = TREE_VALUE (tparms) = make_tree_vec (flen + clen);
27253 for (unsigned i = 0; i < clen; ++i)
27254 TREE_VEC_ELT (new_vec, i) = TREE_VEC_ELT (ctparms, i);
27255
27256 /* Now we need to rewrite the constructor parms to append them to the
27257 class parms. */
27258 for (unsigned i = 0; i < flen; ++i)
27259 {
27260 unsigned index = i + clen;
27261 unsigned level = 1;
27262 tree oldelt = TREE_VEC_ELT (ftparms, i);
27263 tree olddecl = TREE_VALUE (oldelt);
27264 tree newdecl = rewrite_template_parm (olddecl, index, level,
27265 tsubst_args, complain);
27266 if (newdecl == error_mark_node)
27267 ok = false;
27268 tree newdef = tsubst_template_arg (TREE_PURPOSE (oldelt),
27269 tsubst_args, complain, ctor);
27270 tree list = build_tree_list (newdef, newdecl);
27271 TEMPLATE_PARM_CONSTRAINTS (list)
27272 = tsubst_constraint_info (TEMPLATE_PARM_CONSTRAINTS (oldelt),
27273 tsubst_args, complain, ctor);
27274 TREE_VEC_ELT (new_vec, index) = list;
27275 TMPL_ARG (tsubst_args, depth, i) = template_parm_to_arg (list);
27276 }
27277
27278 /* Now we have a final set of template parms to substitute into the
27279 function signature. */
27280 targs = template_parms_to_args (tparms);
27281 fparms = tsubst_arg_types (fparms, tsubst_args, NULL_TREE,
27282 complain, ctor);
27283 if (fparms == error_mark_node)
27284 ok = false;
27285 fargs = tsubst (fargs, tsubst_args, complain, ctor);
27286 if (ci)
27287 ci = tsubst_constraint_info (ci, tsubst_args, complain, ctor);
27288
27289 current_template_parms = save_parms;
27290 }
27291
27292 --processing_template_decl;
27293 if (!ok)
27294 return error_mark_node;
27295 }
27296
27297 if (!memtmpl)
27298 {
27299 /* Copy the parms so we can set DECL_PRIMARY_TEMPLATE. */
27300 tparms = copy_node (tparms);
27301 INNERMOST_TEMPLATE_PARMS (tparms)
27302 = copy_node (INNERMOST_TEMPLATE_PARMS (tparms));
27303 }
27304
27305 tree fntype = build_function_type (type, fparms);
27306 tree ded_fn = build_lang_decl_loc (loc,
27307 FUNCTION_DECL,
27308 dguide_name (type), fntype);
27309 DECL_ARGUMENTS (ded_fn) = fargs;
27310 DECL_ARTIFICIAL (ded_fn) = true;
27311 DECL_NONCONVERTING_P (ded_fn) = explicit_p;
27312 tree ded_tmpl = build_template_decl (ded_fn, tparms, /*member*/false);
27313 DECL_ARTIFICIAL (ded_tmpl) = true;
27314 DECL_TEMPLATE_RESULT (ded_tmpl) = ded_fn;
27315 TREE_TYPE (ded_tmpl) = TREE_TYPE (ded_fn);
27316 DECL_TEMPLATE_INFO (ded_fn) = build_template_info (ded_tmpl, targs);
27317 DECL_PRIMARY_TEMPLATE (ded_tmpl) = ded_tmpl;
27318 if (DECL_P (ctor))
27319 DECL_ABSTRACT_ORIGIN (ded_tmpl) = fn_tmpl;
27320 if (ci)
27321 set_constraints (ded_tmpl, ci);
27322
27323 return ded_tmpl;
27324 }
27325
27326 /* Deduce template arguments for the class template placeholder PTYPE for
27327 template TMPL based on the initializer INIT, and return the resulting
27328 type. */
27329
27330 static tree
27331 do_class_deduction (tree ptype, tree tmpl, tree init, int flags,
27332 tsubst_flags_t complain)
27333 {
27334 if (!DECL_CLASS_TEMPLATE_P (tmpl))
27335 {
27336 /* We should have handled this in the caller. */
27337 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl))
27338 return ptype;
27339 if (complain & tf_error)
27340 error ("non-class template %qT used without template arguments", tmpl);
27341 return error_mark_node;
27342 }
27343 if (init && TREE_TYPE (init) == ptype)
27344 /* Using the template parm as its own argument. */
27345 return ptype;
27346
27347 tree type = TREE_TYPE (tmpl);
27348
27349 bool try_list_ctor = false;
27350
27351 releasing_vec rv_args = NULL;
27352 vec<tree,va_gc> *&args = *&rv_args;
27353 if (init == NULL_TREE
27354 || TREE_CODE (init) == TREE_LIST)
27355 args = make_tree_vector_from_list (init);
27356 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
27357 {
27358 try_list_ctor = TYPE_HAS_LIST_CTOR (type);
27359 if (try_list_ctor && CONSTRUCTOR_NELTS (init) == 1)
27360 {
27361 /* As an exception, the first phase in 16.3.1.7 (considering the
27362 initializer list as a single argument) is omitted if the
27363 initializer list consists of a single expression of type cv U,
27364 where U is a specialization of C or a class derived from a
27365 specialization of C. */
27366 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
27367 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
27368 {
27369 tree etype = TREE_TYPE (elt);
27370 tree tparms = (INNERMOST_TEMPLATE_PARMS
27371 (DECL_TEMPLATE_PARMS (tmpl)));
27372 tree targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
27373 int err = unify (tparms, targs, type, etype,
27374 UNIFY_ALLOW_DERIVED, /*explain*/false);
27375 if (err == 0)
27376 try_list_ctor = false;
27377 ggc_free (targs);
27378 }
27379 }
27380 if (try_list_ctor || is_std_init_list (type))
27381 args = make_tree_vector_single (init);
27382 else
27383 args = make_tree_vector_from_ctor (init);
27384 }
27385 else
27386 args = make_tree_vector_single (init);
27387
27388 tree dname = dguide_name (tmpl);
27389 tree cands = lookup_qualified_name (CP_DECL_CONTEXT (tmpl), dname,
27390 /*type*/false, /*complain*/false,
27391 /*hidden*/false);
27392 bool elided = false;
27393 if (cands == error_mark_node)
27394 cands = NULL_TREE;
27395
27396 /* Prune explicit deduction guides in copy-initialization context. */
27397 if (flags & LOOKUP_ONLYCONVERTING)
27398 {
27399 for (lkp_iterator iter (cands); !elided && iter; ++iter)
27400 if (DECL_NONCONVERTING_P (STRIP_TEMPLATE (*iter)))
27401 elided = true;
27402
27403 if (elided)
27404 {
27405 /* Found a nonconverting guide, prune the candidates. */
27406 tree pruned = NULL_TREE;
27407 for (lkp_iterator iter (cands); iter; ++iter)
27408 if (!DECL_NONCONVERTING_P (STRIP_TEMPLATE (*iter)))
27409 pruned = lookup_add (*iter, pruned);
27410
27411 cands = pruned;
27412 }
27413 }
27414
27415 tree outer_args = NULL_TREE;
27416 if (DECL_CLASS_SCOPE_P (tmpl)
27417 && CLASSTYPE_TEMPLATE_INSTANTIATION (DECL_CONTEXT (tmpl)))
27418 {
27419 outer_args = CLASSTYPE_TI_ARGS (DECL_CONTEXT (tmpl));
27420 type = TREE_TYPE (most_general_template (tmpl));
27421 }
27422
27423 bool saw_ctor = false;
27424 // FIXME cache artificial deduction guides
27425 for (ovl_iterator iter (CLASSTYPE_CONSTRUCTORS (type)); iter; ++iter)
27426 {
27427 /* Skip inherited constructors. */
27428 if (iter.using_p ())
27429 continue;
27430
27431 tree guide = build_deduction_guide (*iter, outer_args, complain);
27432 if (guide == error_mark_node)
27433 return error_mark_node;
27434 if ((flags & LOOKUP_ONLYCONVERTING)
27435 && DECL_NONCONVERTING_P (STRIP_TEMPLATE (guide)))
27436 elided = true;
27437 else
27438 cands = lookup_add (guide, cands);
27439
27440 saw_ctor = true;
27441 }
27442
27443 tree call = error_mark_node;
27444
27445 /* If this is list-initialization and the class has a list constructor, first
27446 try deducing from the list as a single argument, as [over.match.list]. */
27447 tree list_cands = NULL_TREE;
27448 if (try_list_ctor && cands)
27449 for (lkp_iterator iter (cands); iter; ++iter)
27450 {
27451 tree dg = *iter;
27452 if (is_list_ctor (dg))
27453 list_cands = lookup_add (dg, list_cands);
27454 }
27455 if (list_cands)
27456 {
27457 ++cp_unevaluated_operand;
27458 call = build_new_function_call (list_cands, &args, tf_decltype);
27459 --cp_unevaluated_operand;
27460
27461 if (call == error_mark_node)
27462 {
27463 /* That didn't work, now try treating the list as a sequence of
27464 arguments. */
27465 release_tree_vector (args);
27466 args = make_tree_vector_from_ctor (init);
27467 }
27468 }
27469
27470 /* Maybe generate an implicit deduction guide. */
27471 if (call == error_mark_node && args->length () < 2)
27472 {
27473 tree gtype = NULL_TREE;
27474
27475 if (args->length () == 1)
27476 /* Generate a copy guide. */
27477 gtype = build_reference_type (type);
27478 else if (!saw_ctor)
27479 /* Generate a default guide. */
27480 gtype = type;
27481
27482 if (gtype)
27483 {
27484 tree guide = build_deduction_guide (gtype, outer_args, complain);
27485 if (guide == error_mark_node)
27486 return error_mark_node;
27487 cands = lookup_add (guide, cands);
27488 }
27489 }
27490
27491 if (elided && !cands)
27492 {
27493 error ("cannot deduce template arguments for copy-initialization"
27494 " of %qT, as it has no non-explicit deduction guides or "
27495 "user-declared constructors", type);
27496 return error_mark_node;
27497 }
27498 else if (!cands && call == error_mark_node)
27499 {
27500 error ("cannot deduce template arguments of %qT, as it has no viable "
27501 "deduction guides", type);
27502 return error_mark_node;
27503 }
27504
27505 if (call == error_mark_node)
27506 {
27507 ++cp_unevaluated_operand;
27508 call = build_new_function_call (cands, &args, tf_decltype);
27509 --cp_unevaluated_operand;
27510 }
27511
27512 if (call == error_mark_node && (complain & tf_warning_or_error))
27513 {
27514 error ("class template argument deduction failed:");
27515
27516 ++cp_unevaluated_operand;
27517 call = build_new_function_call (cands, &args, complain | tf_decltype);
27518 --cp_unevaluated_operand;
27519
27520 if (elided)
27521 inform (input_location, "explicit deduction guides not considered "
27522 "for copy-initialization");
27523 }
27524
27525 return cp_build_qualified_type (TREE_TYPE (call), cp_type_quals (ptype));
27526 }
27527
27528 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
27529 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
27530 The CONTEXT determines the context in which auto deduction is performed
27531 and is used to control error diagnostics. FLAGS are the LOOKUP_* flags.
27532 OUTER_TARGS are used during template argument deduction
27533 (context == adc_unify) to properly substitute the result, and is ignored
27534 in other contexts.
27535
27536 For partial-concept-ids, extra args may be appended to the list of deduced
27537 template arguments prior to determining constraint satisfaction. */
27538
27539 tree
27540 do_auto_deduction (tree type, tree init, tree auto_node,
27541 tsubst_flags_t complain, auto_deduction_context context,
27542 tree outer_targs, int flags)
27543 {
27544 tree targs;
27545
27546 if (init == error_mark_node)
27547 return error_mark_node;
27548
27549 if (init && type_dependent_expression_p (init)
27550 && context != adc_unify)
27551 /* Defining a subset of type-dependent expressions that we can deduce
27552 from ahead of time isn't worth the trouble. */
27553 return type;
27554
27555 /* Similarly, we can't deduce from another undeduced decl. */
27556 if (init && undeduced_auto_decl (init))
27557 return type;
27558
27559 /* We may be doing a partial substitution, but we still want to replace
27560 auto_node. */
27561 complain &= ~tf_partial;
27562
27563 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
27564 /* C++17 class template argument deduction. */
27565 return do_class_deduction (type, tmpl, init, flags, complain);
27566
27567 if (init == NULL_TREE || TREE_TYPE (init) == NULL_TREE)
27568 /* Nothing we can do with this, even in deduction context. */
27569 return type;
27570
27571 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
27572 with either a new invented type template parameter U or, if the
27573 initializer is a braced-init-list (8.5.4), with
27574 std::initializer_list<U>. */
27575 if (BRACE_ENCLOSED_INITIALIZER_P (init))
27576 {
27577 if (!DIRECT_LIST_INIT_P (init))
27578 type = listify_autos (type, auto_node);
27579 else if (CONSTRUCTOR_NELTS (init) == 1)
27580 init = CONSTRUCTOR_ELT (init, 0)->value;
27581 else
27582 {
27583 if (complain & tf_warning_or_error)
27584 {
27585 if (permerror (input_location, "direct-list-initialization of "
27586 "%<auto%> requires exactly one element"))
27587 inform (input_location,
27588 "for deduction to %<std::initializer_list%>, use copy-"
27589 "list-initialization (i.e. add %<=%> before the %<{%>)");
27590 }
27591 type = listify_autos (type, auto_node);
27592 }
27593 }
27594
27595 if (type == error_mark_node)
27596 return error_mark_node;
27597
27598 init = resolve_nondeduced_context (init, complain);
27599
27600 if (context == adc_decomp_type
27601 && auto_node == type
27602 && init != error_mark_node
27603 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
27604 /* [dcl.decomp]/1 - if decomposition declaration has no ref-qualifiers
27605 and initializer has array type, deduce cv-qualified array type. */
27606 return cp_build_qualified_type_real (TREE_TYPE (init), TYPE_QUALS (type),
27607 complain);
27608 else if (AUTO_IS_DECLTYPE (auto_node))
27609 {
27610 tree stripped_init = tree_strip_any_location_wrapper (init);
27611 bool id = (DECL_P (stripped_init)
27612 || ((TREE_CODE (init) == COMPONENT_REF
27613 || TREE_CODE (init) == SCOPE_REF)
27614 && !REF_PARENTHESIZED_P (init)));
27615 targs = make_tree_vec (1);
27616 TREE_VEC_ELT (targs, 0)
27617 = finish_decltype_type (init, id, tf_warning_or_error);
27618 if (type != auto_node)
27619 {
27620 if (complain & tf_error)
27621 error ("%qT as type rather than plain %<decltype(auto)%>", type);
27622 return error_mark_node;
27623 }
27624 }
27625 else
27626 {
27627 if (error_operand_p (init))
27628 return error_mark_node;
27629
27630 tree parms = build_tree_list (NULL_TREE, type);
27631 tree tparms;
27632
27633 if (flag_concepts)
27634 tparms = extract_autos (type);
27635 else
27636 {
27637 tparms = make_tree_vec (1);
27638 TREE_VEC_ELT (tparms, 0)
27639 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
27640 }
27641
27642 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
27643 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
27644 DEDUCE_CALL,
27645 NULL, /*explain_p=*/false);
27646 if (val > 0)
27647 {
27648 if (processing_template_decl)
27649 /* Try again at instantiation time. */
27650 return type;
27651 if (type && type != error_mark_node
27652 && (complain & tf_error))
27653 /* If type is error_mark_node a diagnostic must have been
27654 emitted by now. Also, having a mention to '<type error>'
27655 in the diagnostic is not really useful to the user. */
27656 {
27657 if (cfun
27658 && FNDECL_USED_AUTO (current_function_decl)
27659 && (auto_node
27660 == DECL_SAVED_AUTO_RETURN_TYPE (current_function_decl))
27661 && LAMBDA_FUNCTION_P (current_function_decl))
27662 error ("unable to deduce lambda return type from %qE", init);
27663 else
27664 error ("unable to deduce %qT from %qE", type, init);
27665 type_unification_real (tparms, targs, parms, &init, 1, 0,
27666 DEDUCE_CALL,
27667 NULL, /*explain_p=*/true);
27668 }
27669 return error_mark_node;
27670 }
27671 }
27672
27673 /* Check any placeholder constraints against the deduced type. */
27674 if (flag_concepts && !processing_template_decl)
27675 if (tree constr = NON_ERROR (PLACEHOLDER_TYPE_CONSTRAINTS (auto_node)))
27676 {
27677 /* Use the deduced type to check the associated constraints. If we
27678 have a partial-concept-id, rebuild the argument list so that
27679 we check using the extra arguments. */
27680 gcc_assert (TREE_CODE (constr) == CHECK_CONSTR);
27681 tree cargs = CHECK_CONSTR_ARGS (constr);
27682 if (TREE_VEC_LENGTH (cargs) > 1)
27683 {
27684 cargs = copy_node (cargs);
27685 TREE_VEC_ELT (cargs, 0) = TREE_VEC_ELT (targs, 0);
27686 }
27687 else
27688 cargs = targs;
27689 if (!constraints_satisfied_p (constr, cargs))
27690 {
27691 if (complain & tf_warning_or_error)
27692 {
27693 auto_diagnostic_group d;
27694 switch (context)
27695 {
27696 case adc_unspecified:
27697 case adc_unify:
27698 error("placeholder constraints not satisfied");
27699 break;
27700 case adc_variable_type:
27701 case adc_decomp_type:
27702 error ("deduced initializer does not satisfy "
27703 "placeholder constraints");
27704 break;
27705 case adc_return_type:
27706 error ("deduced return type does not satisfy "
27707 "placeholder constraints");
27708 break;
27709 case adc_requirement:
27710 error ("deduced expression type does not satisfy "
27711 "placeholder constraints");
27712 break;
27713 }
27714 diagnose_constraints (input_location, constr, targs);
27715 }
27716 return error_mark_node;
27717 }
27718 }
27719
27720 if (processing_template_decl && context != adc_unify)
27721 outer_targs = current_template_args ();
27722 targs = add_to_template_args (outer_targs, targs);
27723 return tsubst (type, targs, complain, NULL_TREE);
27724 }
27725
27726 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
27727 result. */
27728
27729 tree
27730 splice_late_return_type (tree type, tree late_return_type)
27731 {
27732 if (is_auto (type))
27733 {
27734 if (late_return_type)
27735 return late_return_type;
27736
27737 tree idx = get_template_parm_index (type);
27738 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
27739 /* In an abbreviated function template we didn't know we were dealing
27740 with a function template when we saw the auto return type, so update
27741 it to have the correct level. */
27742 return make_auto_1 (TYPE_IDENTIFIER (type), true);
27743 }
27744 return type;
27745 }
27746
27747 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
27748 'decltype(auto)' or a deduced class template. */
27749
27750 bool
27751 is_auto (const_tree type)
27752 {
27753 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
27754 && (TYPE_IDENTIFIER (type) == auto_identifier
27755 || TYPE_IDENTIFIER (type) == decltype_auto_identifier))
27756 return true;
27757 else
27758 return false;
27759 }
27760
27761 /* for_each_template_parm callback for type_uses_auto. */
27762
27763 int
27764 is_auto_r (tree tp, void */*data*/)
27765 {
27766 return is_auto (tp);
27767 }
27768
27769 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
27770 a use of `auto'. Returns NULL_TREE otherwise. */
27771
27772 tree
27773 type_uses_auto (tree type)
27774 {
27775 if (type == NULL_TREE)
27776 return NULL_TREE;
27777 else if (flag_concepts)
27778 {
27779 /* The Concepts TS allows multiple autos in one type-specifier; just
27780 return the first one we find, do_auto_deduction will collect all of
27781 them. */
27782 if (uses_template_parms (type))
27783 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
27784 /*visited*/NULL, /*nondeduced*/false);
27785 else
27786 return NULL_TREE;
27787 }
27788 else
27789 return find_type_usage (type, is_auto);
27790 }
27791
27792 /* Report ill-formed occurrences of auto types in ARGUMENTS. If
27793 concepts are enabled, auto is acceptable in template arguments, but
27794 only when TEMPL identifies a template class. Return TRUE if any
27795 such errors were reported. */
27796
27797 bool
27798 check_auto_in_tmpl_args (tree tmpl, tree args)
27799 {
27800 /* If there were previous errors, nevermind. */
27801 if (!args || TREE_CODE (args) != TREE_VEC)
27802 return false;
27803
27804 /* If TMPL is an identifier, we're parsing and we can't tell yet
27805 whether TMPL is supposed to be a type, a function or a variable.
27806 We'll only be able to tell during template substitution, so we
27807 expect to be called again then. If concepts are enabled and we
27808 know we have a type, we're ok. */
27809 if (flag_concepts
27810 && (identifier_p (tmpl)
27811 || (DECL_P (tmpl)
27812 && (DECL_TYPE_TEMPLATE_P (tmpl)
27813 || DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)))))
27814 return false;
27815
27816 /* Quickly search for any occurrences of auto; usually there won't
27817 be any, and then we'll avoid allocating the vector. */
27818 if (!type_uses_auto (args))
27819 return false;
27820
27821 bool errors = false;
27822
27823 tree vec = extract_autos (args);
27824 for (int i = 0; i < TREE_VEC_LENGTH (vec); i++)
27825 {
27826 tree xauto = TREE_VALUE (TREE_VEC_ELT (vec, i));
27827 error_at (DECL_SOURCE_LOCATION (xauto),
27828 "invalid use of %qT in template argument", xauto);
27829 errors = true;
27830 }
27831
27832 return errors;
27833 }
27834
27835 /* For a given template T, return the vector of typedefs referenced
27836 in T for which access check is needed at T instantiation time.
27837 T is either a FUNCTION_DECL or a RECORD_TYPE.
27838 Those typedefs were added to T by the function
27839 append_type_to_template_for_access_check. */
27840
27841 vec<qualified_typedef_usage_t, va_gc> *
27842 get_types_needing_access_check (tree t)
27843 {
27844 tree ti;
27845 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
27846
27847 if (!t || t == error_mark_node)
27848 return NULL;
27849
27850 if (!(ti = get_template_info (t)))
27851 return NULL;
27852
27853 if (CLASS_TYPE_P (t)
27854 || TREE_CODE (t) == FUNCTION_DECL)
27855 {
27856 if (!TI_TEMPLATE (ti))
27857 return NULL;
27858
27859 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
27860 }
27861
27862 return result;
27863 }
27864
27865 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
27866 tied to T. That list of typedefs will be access checked at
27867 T instantiation time.
27868 T is either a FUNCTION_DECL or a RECORD_TYPE.
27869 TYPE_DECL is a TYPE_DECL node representing a typedef.
27870 SCOPE is the scope through which TYPE_DECL is accessed.
27871 LOCATION is the location of the usage point of TYPE_DECL.
27872
27873 This function is a subroutine of
27874 append_type_to_template_for_access_check. */
27875
27876 static void
27877 append_type_to_template_for_access_check_1 (tree t,
27878 tree type_decl,
27879 tree scope,
27880 location_t location)
27881 {
27882 qualified_typedef_usage_t typedef_usage;
27883 tree ti;
27884
27885 if (!t || t == error_mark_node)
27886 return;
27887
27888 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
27889 || CLASS_TYPE_P (t))
27890 && type_decl
27891 && TREE_CODE (type_decl) == TYPE_DECL
27892 && scope);
27893
27894 if (!(ti = get_template_info (t)))
27895 return;
27896
27897 gcc_assert (TI_TEMPLATE (ti));
27898
27899 typedef_usage.typedef_decl = type_decl;
27900 typedef_usage.context = scope;
27901 typedef_usage.locus = location;
27902
27903 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
27904 }
27905
27906 /* Append TYPE_DECL to the template TEMPL.
27907 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
27908 At TEMPL instanciation time, TYPE_DECL will be checked to see
27909 if it can be accessed through SCOPE.
27910 LOCATION is the location of the usage point of TYPE_DECL.
27911
27912 e.g. consider the following code snippet:
27913
27914 class C
27915 {
27916 typedef int myint;
27917 };
27918
27919 template<class U> struct S
27920 {
27921 C::myint mi; // <-- usage point of the typedef C::myint
27922 };
27923
27924 S<char> s;
27925
27926 At S<char> instantiation time, we need to check the access of C::myint
27927 In other words, we need to check the access of the myint typedef through
27928 the C scope. For that purpose, this function will add the myint typedef
27929 and the scope C through which its being accessed to a list of typedefs
27930 tied to the template S. That list will be walked at template instantiation
27931 time and access check performed on each typedefs it contains.
27932 Note that this particular code snippet should yield an error because
27933 myint is private to C. */
27934
27935 void
27936 append_type_to_template_for_access_check (tree templ,
27937 tree type_decl,
27938 tree scope,
27939 location_t location)
27940 {
27941 qualified_typedef_usage_t *iter;
27942 unsigned i;
27943
27944 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
27945
27946 /* Make sure we don't append the type to the template twice. */
27947 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
27948 if (iter->typedef_decl == type_decl && scope == iter->context)
27949 return;
27950
27951 append_type_to_template_for_access_check_1 (templ, type_decl,
27952 scope, location);
27953 }
27954
27955 /* Convert the generic type parameters in PARM that match the types given in the
27956 range [START_IDX, END_IDX) from the current_template_parms into generic type
27957 packs. */
27958
27959 tree
27960 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
27961 {
27962 tree current = current_template_parms;
27963 int depth = TMPL_PARMS_DEPTH (current);
27964 current = INNERMOST_TEMPLATE_PARMS (current);
27965 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
27966
27967 for (int i = 0; i < start_idx; ++i)
27968 TREE_VEC_ELT (replacement, i)
27969 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
27970
27971 for (int i = start_idx; i < end_idx; ++i)
27972 {
27973 /* Create a distinct parameter pack type from the current parm and add it
27974 to the replacement args to tsubst below into the generic function
27975 parameter. */
27976
27977 tree o = TREE_TYPE (TREE_VALUE
27978 (TREE_VEC_ELT (current, i)));
27979 tree t = copy_type (o);
27980 TEMPLATE_TYPE_PARM_INDEX (t)
27981 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
27982 o, 0, 0, tf_none);
27983 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
27984 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
27985 TYPE_MAIN_VARIANT (t) = t;
27986 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
27987 TYPE_CANONICAL (t) = canonical_type_parameter (t);
27988 TREE_VEC_ELT (replacement, i) = t;
27989 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
27990 }
27991
27992 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
27993 TREE_VEC_ELT (replacement, i)
27994 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
27995
27996 /* If there are more levels then build up the replacement with the outer
27997 template parms. */
27998 if (depth > 1)
27999 replacement = add_to_template_args (template_parms_to_args
28000 (TREE_CHAIN (current_template_parms)),
28001 replacement);
28002
28003 return tsubst (parm, replacement, tf_none, NULL_TREE);
28004 }
28005
28006 /* Entries in the decl_constraint hash table. */
28007 struct GTY((for_user)) constr_entry
28008 {
28009 tree decl;
28010 tree ci;
28011 };
28012
28013 /* Hashing function and equality for constraint entries. */
28014 struct constr_hasher : ggc_ptr_hash<constr_entry>
28015 {
28016 static hashval_t hash (constr_entry *e)
28017 {
28018 return (hashval_t)DECL_UID (e->decl);
28019 }
28020
28021 static bool equal (constr_entry *e1, constr_entry *e2)
28022 {
28023 return e1->decl == e2->decl;
28024 }
28025 };
28026
28027 /* A mapping from declarations to constraint information. Note that
28028 both templates and their underlying declarations are mapped to the
28029 same constraint information.
28030
28031 FIXME: This is defined in pt.c because garbage collection
28032 code is not being generated for constraint.cc. */
28033
28034 static GTY (()) hash_table<constr_hasher> *decl_constraints;
28035
28036 /* Returns the template constraints of declaration T. If T is not
28037 constrained, return NULL_TREE. Note that T must be non-null. */
28038
28039 tree
28040 get_constraints (tree t)
28041 {
28042 if (!flag_concepts)
28043 return NULL_TREE;
28044
28045 gcc_assert (DECL_P (t));
28046 if (TREE_CODE (t) == TEMPLATE_DECL)
28047 t = DECL_TEMPLATE_RESULT (t);
28048 constr_entry elt = { t, NULL_TREE };
28049 constr_entry* found = decl_constraints->find (&elt);
28050 if (found)
28051 return found->ci;
28052 else
28053 return NULL_TREE;
28054 }
28055
28056 /* Associate the given constraint information CI with the declaration
28057 T. If T is a template, then the constraints are associated with
28058 its underlying declaration. Don't build associations if CI is
28059 NULL_TREE. */
28060
28061 void
28062 set_constraints (tree t, tree ci)
28063 {
28064 if (!ci)
28065 return;
28066 gcc_assert (t && flag_concepts);
28067 if (TREE_CODE (t) == TEMPLATE_DECL)
28068 t = DECL_TEMPLATE_RESULT (t);
28069 gcc_assert (!get_constraints (t));
28070 constr_entry elt = {t, ci};
28071 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
28072 constr_entry* entry = ggc_alloc<constr_entry> ();
28073 *entry = elt;
28074 *slot = entry;
28075 }
28076
28077 /* Remove the associated constraints of the declaration T. */
28078
28079 void
28080 remove_constraints (tree t)
28081 {
28082 gcc_assert (DECL_P (t));
28083 if (TREE_CODE (t) == TEMPLATE_DECL)
28084 t = DECL_TEMPLATE_RESULT (t);
28085
28086 constr_entry elt = {t, NULL_TREE};
28087 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
28088 if (slot)
28089 decl_constraints->clear_slot (slot);
28090 }
28091
28092 /* Memoized satisfaction results for declarations. This
28093 maps the pair (constraint_info, arguments) to the result computed
28094 by constraints_satisfied_p. */
28095
28096 struct GTY((for_user)) constraint_sat_entry
28097 {
28098 tree ci;
28099 tree args;
28100 tree result;
28101 };
28102
28103 /* Hashing function and equality for constraint entries. */
28104
28105 struct constraint_sat_hasher : ggc_ptr_hash<constraint_sat_entry>
28106 {
28107 static hashval_t hash (constraint_sat_entry *e)
28108 {
28109 hashval_t val = iterative_hash_object(e->ci, 0);
28110 return iterative_hash_template_arg (e->args, val);
28111 }
28112
28113 static bool equal (constraint_sat_entry *e1, constraint_sat_entry *e2)
28114 {
28115 return e1->ci == e2->ci && comp_template_args (e1->args, e2->args);
28116 }
28117 };
28118
28119 /* Memoized satisfaction results for concept checks. */
28120
28121 struct GTY((for_user)) concept_spec_entry
28122 {
28123 tree tmpl;
28124 tree args;
28125 tree result;
28126 };
28127
28128 /* Hashing function and equality for constraint entries. */
28129
28130 struct concept_spec_hasher : ggc_ptr_hash<concept_spec_entry>
28131 {
28132 static hashval_t hash (concept_spec_entry *e)
28133 {
28134 return hash_tmpl_and_args (e->tmpl, e->args);
28135 }
28136
28137 static bool equal (concept_spec_entry *e1, concept_spec_entry *e2)
28138 {
28139 ++comparing_specializations;
28140 bool eq = e1->tmpl == e2->tmpl && comp_template_args (e1->args, e2->args);
28141 --comparing_specializations;
28142 return eq;
28143 }
28144 };
28145
28146 static GTY (()) hash_table<constraint_sat_hasher> *constraint_memos;
28147 static GTY (()) hash_table<concept_spec_hasher> *concept_memos;
28148
28149 /* Search for a memoized satisfaction result. Returns one of the
28150 truth value nodes if previously memoized, or NULL_TREE otherwise. */
28151
28152 tree
28153 lookup_constraint_satisfaction (tree ci, tree args)
28154 {
28155 constraint_sat_entry elt = { ci, args, NULL_TREE };
28156 constraint_sat_entry* found = constraint_memos->find (&elt);
28157 if (found)
28158 return found->result;
28159 else
28160 return NULL_TREE;
28161 }
28162
28163 /* Memoize the result of a satisfication test. Returns the saved result. */
28164
28165 tree
28166 memoize_constraint_satisfaction (tree ci, tree args, tree result)
28167 {
28168 constraint_sat_entry elt = {ci, args, result};
28169 constraint_sat_entry** slot = constraint_memos->find_slot (&elt, INSERT);
28170 constraint_sat_entry* entry = ggc_alloc<constraint_sat_entry> ();
28171 *entry = elt;
28172 *slot = entry;
28173 return result;
28174 }
28175
28176 /* Search for a memoized satisfaction result for a concept. */
28177
28178 tree
28179 lookup_concept_satisfaction (tree tmpl, tree args)
28180 {
28181 concept_spec_entry elt = { tmpl, args, NULL_TREE };
28182 concept_spec_entry* found = concept_memos->find (&elt);
28183 if (found)
28184 return found->result;
28185 else
28186 return NULL_TREE;
28187 }
28188
28189 /* Memoize the result of a concept check. Returns the saved result. */
28190
28191 tree
28192 memoize_concept_satisfaction (tree tmpl, tree args, tree result)
28193 {
28194 concept_spec_entry elt = {tmpl, args, result};
28195 concept_spec_entry** slot = concept_memos->find_slot (&elt, INSERT);
28196 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
28197 *entry = elt;
28198 *slot = entry;
28199 return result;
28200 }
28201
28202 static GTY (()) hash_table<concept_spec_hasher> *concept_expansions;
28203
28204 /* Returns a prior concept specialization. This returns the substituted
28205 and normalized constraints defined by the concept. */
28206
28207 tree
28208 get_concept_expansion (tree tmpl, tree args)
28209 {
28210 concept_spec_entry elt = { tmpl, args, NULL_TREE };
28211 concept_spec_entry* found = concept_expansions->find (&elt);
28212 if (found)
28213 return found->result;
28214 else
28215 return NULL_TREE;
28216 }
28217
28218 /* Save a concept expansion for later. */
28219
28220 tree
28221 save_concept_expansion (tree tmpl, tree args, tree def)
28222 {
28223 concept_spec_entry elt = {tmpl, args, def};
28224 concept_spec_entry** slot = concept_expansions->find_slot (&elt, INSERT);
28225 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
28226 *entry = elt;
28227 *slot = entry;
28228 return def;
28229 }
28230
28231 static hashval_t
28232 hash_subsumption_args (tree t1, tree t2)
28233 {
28234 gcc_assert (TREE_CODE (t1) == CHECK_CONSTR);
28235 gcc_assert (TREE_CODE (t2) == CHECK_CONSTR);
28236 int val = 0;
28237 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t1), val);
28238 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t1), val);
28239 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t2), val);
28240 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t2), val);
28241 return val;
28242 }
28243
28244 /* Compare the constraints of two subsumption entries. The LEFT1 and
28245 LEFT2 arguments comprise the first subsumption pair and the RIGHT1
28246 and RIGHT2 arguments comprise the second. These are all CHECK_CONSTRs. */
28247
28248 static bool
28249 comp_subsumption_args (tree left1, tree left2, tree right1, tree right2)
28250 {
28251 if (CHECK_CONSTR_CONCEPT (left1) == CHECK_CONSTR_CONCEPT (right1))
28252 if (CHECK_CONSTR_CONCEPT (left2) == CHECK_CONSTR_CONCEPT (right2))
28253 if (comp_template_args (CHECK_CONSTR_ARGS (left1),
28254 CHECK_CONSTR_ARGS (right1)))
28255 return comp_template_args (CHECK_CONSTR_ARGS (left2),
28256 CHECK_CONSTR_ARGS (right2));
28257 return false;
28258 }
28259
28260 /* Key/value pair for learning and memoizing subsumption results. This
28261 associates a pair of check constraints (including arguments) with
28262 a boolean value indicating the result. */
28263
28264 struct GTY((for_user)) subsumption_entry
28265 {
28266 tree t1;
28267 tree t2;
28268 bool result;
28269 };
28270
28271 /* Hashing function and equality for constraint entries. */
28272
28273 struct subsumption_hasher : ggc_ptr_hash<subsumption_entry>
28274 {
28275 static hashval_t hash (subsumption_entry *e)
28276 {
28277 return hash_subsumption_args (e->t1, e->t2);
28278 }
28279
28280 static bool equal (subsumption_entry *e1, subsumption_entry *e2)
28281 {
28282 ++comparing_specializations;
28283 bool eq = comp_subsumption_args(e1->t1, e1->t2, e2->t1, e2->t2);
28284 --comparing_specializations;
28285 return eq;
28286 }
28287 };
28288
28289 static GTY (()) hash_table<subsumption_hasher> *subsumption_table;
28290
28291 /* Search for a previously cached subsumption result. */
28292
28293 bool*
28294 lookup_subsumption_result (tree t1, tree t2)
28295 {
28296 subsumption_entry elt = { t1, t2, false };
28297 subsumption_entry* found = subsumption_table->find (&elt);
28298 if (found)
28299 return &found->result;
28300 else
28301 return 0;
28302 }
28303
28304 /* Save a subsumption result. */
28305
28306 bool
28307 save_subsumption_result (tree t1, tree t2, bool result)
28308 {
28309 subsumption_entry elt = {t1, t2, result};
28310 subsumption_entry** slot = subsumption_table->find_slot (&elt, INSERT);
28311 subsumption_entry* entry = ggc_alloc<subsumption_entry> ();
28312 *entry = elt;
28313 *slot = entry;
28314 return result;
28315 }
28316
28317 /* Set up the hash table for constraint association. */
28318
28319 void
28320 init_constraint_processing (void)
28321 {
28322 if (!flag_concepts)
28323 return;
28324
28325 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
28326 constraint_memos = hash_table<constraint_sat_hasher>::create_ggc(37);
28327 concept_memos = hash_table<concept_spec_hasher>::create_ggc(37);
28328 concept_expansions = hash_table<concept_spec_hasher>::create_ggc(37);
28329 subsumption_table = hash_table<subsumption_hasher>::create_ggc(37);
28330 }
28331
28332 /* __integer_pack(N) in a pack expansion expands to a sequence of numbers from
28333 0..N-1. */
28334
28335 void
28336 declare_integer_pack (void)
28337 {
28338 tree ipfn = push_library_fn (get_identifier ("__integer_pack"),
28339 build_function_type_list (integer_type_node,
28340 integer_type_node,
28341 NULL_TREE),
28342 NULL_TREE, ECF_CONST);
28343 DECL_DECLARED_CONSTEXPR_P (ipfn) = true;
28344 set_decl_built_in_function (ipfn, BUILT_IN_FRONTEND,
28345 CP_BUILT_IN_INTEGER_PACK);
28346 }
28347
28348 /* Set up the hash tables for template instantiations. */
28349
28350 void
28351 init_template_processing (void)
28352 {
28353 /* FIXME: enable sanitization (PR87847) */
28354 decl_specializations = hash_table<spec_hasher>::create_ggc (37, false);
28355 type_specializations = hash_table<spec_hasher>::create_ggc (37, false);
28356
28357 if (cxx_dialect >= cxx11)
28358 declare_integer_pack ();
28359 }
28360
28361 /* Print stats about the template hash tables for -fstats. */
28362
28363 void
28364 print_template_statistics (void)
28365 {
28366 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
28367 "%f collisions\n", (long) decl_specializations->size (),
28368 (long) decl_specializations->elements (),
28369 decl_specializations->collisions ());
28370 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
28371 "%f collisions\n", (long) type_specializations->size (),
28372 (long) type_specializations->elements (),
28373 type_specializations->collisions ());
28374 }
28375
28376 #if CHECKING_P
28377
28378 namespace selftest {
28379
28380 /* Verify that build_non_dependent_expr () works, for various expressions,
28381 and that location wrappers don't affect the results. */
28382
28383 static void
28384 test_build_non_dependent_expr ()
28385 {
28386 location_t loc = BUILTINS_LOCATION;
28387
28388 /* Verify constants, without and with location wrappers. */
28389 tree int_cst = build_int_cst (integer_type_node, 42);
28390 ASSERT_EQ (int_cst, build_non_dependent_expr (int_cst));
28391
28392 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
28393 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
28394 ASSERT_EQ (wrapped_int_cst, build_non_dependent_expr (wrapped_int_cst));
28395
28396 tree string_lit = build_string (4, "foo");
28397 TREE_TYPE (string_lit) = char_array_type_node;
28398 string_lit = fix_string_type (string_lit);
28399 ASSERT_EQ (string_lit, build_non_dependent_expr (string_lit));
28400
28401 tree wrapped_string_lit = maybe_wrap_with_location (string_lit, loc);
28402 ASSERT_TRUE (location_wrapper_p (wrapped_string_lit));
28403 ASSERT_EQ (wrapped_string_lit,
28404 build_non_dependent_expr (wrapped_string_lit));
28405 }
28406
28407 /* Verify that type_dependent_expression_p () works correctly, even
28408 in the presence of location wrapper nodes. */
28409
28410 static void
28411 test_type_dependent_expression_p ()
28412 {
28413 location_t loc = BUILTINS_LOCATION;
28414
28415 tree name = get_identifier ("foo");
28416
28417 /* If no templates are involved, nothing is type-dependent. */
28418 gcc_assert (!processing_template_decl);
28419 ASSERT_FALSE (type_dependent_expression_p (name));
28420
28421 ++processing_template_decl;
28422
28423 /* Within a template, an unresolved name is always type-dependent. */
28424 ASSERT_TRUE (type_dependent_expression_p (name));
28425
28426 /* Ensure it copes with NULL_TREE and errors. */
28427 ASSERT_FALSE (type_dependent_expression_p (NULL_TREE));
28428 ASSERT_FALSE (type_dependent_expression_p (error_mark_node));
28429
28430 /* A USING_DECL in a template should be type-dependent, even if wrapped
28431 with a location wrapper (PR c++/83799). */
28432 tree using_decl = build_lang_decl (USING_DECL, name, NULL_TREE);
28433 TREE_TYPE (using_decl) = integer_type_node;
28434 ASSERT_TRUE (type_dependent_expression_p (using_decl));
28435 tree wrapped_using_decl = maybe_wrap_with_location (using_decl, loc);
28436 ASSERT_TRUE (location_wrapper_p (wrapped_using_decl));
28437 ASSERT_TRUE (type_dependent_expression_p (wrapped_using_decl));
28438
28439 --processing_template_decl;
28440 }
28441
28442 /* Run all of the selftests within this file. */
28443
28444 void
28445 cp_pt_c_tests ()
28446 {
28447 test_build_non_dependent_expr ();
28448 test_type_dependent_expression_p ();
28449 }
28450
28451 } // namespace selftest
28452
28453 #endif /* #if CHECKING_P */
28454
28455 #include "gt-cp-pt.h"