re PR c++/67164 (ICE: tree check: expected class ‘expression’, have ‘exceptional...
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2016 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Known bugs or deficiencies include:
23
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "cp-tree.h"
31 #include "timevar.h"
32 #include "stringpool.h"
33 #include "varasm.h"
34 #include "attribs.h"
35 #include "stor-layout.h"
36 #include "intl.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "toplev.h"
40 #include "tree-iterator.h"
41 #include "type-utils.h"
42 #include "gimplify.h"
43
44 /* The type of functions taking a tree, and some additional data, and
45 returning an int. */
46 typedef int (*tree_fn_t) (tree, void*);
47
48 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
49 instantiations have been deferred, either because their definitions
50 were not yet available, or because we were putting off doing the work. */
51 struct GTY ((chain_next ("%h.next"))) pending_template {
52 struct pending_template *next;
53 struct tinst_level *tinst;
54 };
55
56 static GTY(()) struct pending_template *pending_templates;
57 static GTY(()) struct pending_template *last_pending_template;
58
59 int processing_template_parmlist;
60 static int template_header_count;
61
62 static GTY(()) tree saved_trees;
63 static vec<int> inline_parm_levels;
64
65 static GTY(()) struct tinst_level *current_tinst_level;
66
67 static GTY(()) tree saved_access_scope;
68
69 /* Live only within one (recursive) call to tsubst_expr. We use
70 this to pass the statement expression node from the STMT_EXPR
71 to the EXPR_STMT that is its result. */
72 static tree cur_stmt_expr;
73
74 // -------------------------------------------------------------------------- //
75 // Local Specialization Stack
76 //
77 // Implementation of the RAII helper for creating new local
78 // specializations.
79 local_specialization_stack::local_specialization_stack ()
80 : saved (local_specializations)
81 {
82 local_specializations = new hash_map<tree, tree>;
83 }
84
85 local_specialization_stack::~local_specialization_stack ()
86 {
87 delete local_specializations;
88 local_specializations = saved;
89 }
90
91 /* True if we've recursed into fn_type_unification too many times. */
92 static bool excessive_deduction_depth;
93
94 struct GTY((for_user)) spec_entry
95 {
96 tree tmpl;
97 tree args;
98 tree spec;
99 };
100
101 struct spec_hasher : ggc_ptr_hash<spec_entry>
102 {
103 static hashval_t hash (spec_entry *);
104 static bool equal (spec_entry *, spec_entry *);
105 };
106
107 static GTY (()) hash_table<spec_hasher> *decl_specializations;
108
109 static GTY (()) hash_table<spec_hasher> *type_specializations;
110
111 /* Contains canonical template parameter types. The vector is indexed by
112 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
113 TREE_LIST, whose TREE_VALUEs contain the canonical template
114 parameters of various types and levels. */
115 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
116
117 #define UNIFY_ALLOW_NONE 0
118 #define UNIFY_ALLOW_MORE_CV_QUAL 1
119 #define UNIFY_ALLOW_LESS_CV_QUAL 2
120 #define UNIFY_ALLOW_DERIVED 4
121 #define UNIFY_ALLOW_INTEGER 8
122 #define UNIFY_ALLOW_OUTER_LEVEL 16
123 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
124 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
125
126 enum template_base_result {
127 tbr_incomplete_type,
128 tbr_ambiguous_baseclass,
129 tbr_success
130 };
131
132 static void push_access_scope (tree);
133 static void pop_access_scope (tree);
134 static bool resolve_overloaded_unification (tree, tree, tree, tree,
135 unification_kind_t, int,
136 bool);
137 static int try_one_overload (tree, tree, tree, tree, tree,
138 unification_kind_t, int, bool, bool);
139 static int unify (tree, tree, tree, tree, int, bool);
140 static void add_pending_template (tree);
141 static tree reopen_tinst_level (struct tinst_level *);
142 static tree tsubst_initializer_list (tree, tree);
143 static tree get_partial_spec_bindings (tree, tree, tree, tree);
144 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
145 bool, bool);
146 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
147 bool, bool);
148 static void tsubst_enum (tree, tree, tree);
149 static tree add_to_template_args (tree, tree);
150 static tree add_outermost_template_args (tree, tree);
151 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
152 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
153 tree);
154 static int type_unification_real (tree, tree, tree, const tree *,
155 unsigned int, int, unification_kind_t, int,
156 vec<deferred_access_check, va_gc> **,
157 bool);
158 static void note_template_header (int);
159 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
160 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
161 static tree convert_template_argument (tree, tree, tree,
162 tsubst_flags_t, int, tree);
163 static tree for_each_template_parm (tree, tree_fn_t, void*,
164 hash_set<tree> *, bool);
165 static tree expand_template_argument_pack (tree);
166 static tree build_template_parm_index (int, int, int, tree, tree);
167 static bool inline_needs_template_parms (tree, bool);
168 static void push_inline_template_parms_recursive (tree, int);
169 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
170 static int mark_template_parm (tree, void *);
171 static int template_parm_this_level_p (tree, void *);
172 static tree tsubst_friend_function (tree, tree);
173 static tree tsubst_friend_class (tree, tree);
174 static int can_complete_type_without_circularity (tree);
175 static tree get_bindings (tree, tree, tree, bool);
176 static int template_decl_level (tree);
177 static int check_cv_quals_for_unify (int, tree, tree);
178 static void template_parm_level_and_index (tree, int*, int*);
179 static int unify_pack_expansion (tree, tree, tree,
180 tree, unification_kind_t, bool, bool);
181 static tree copy_template_args (tree);
182 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
183 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
184 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
185 static void regenerate_decl_from_template (tree, tree);
186 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
187 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
188 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
189 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
190 static bool check_specialization_scope (void);
191 static tree process_partial_specialization (tree);
192 static void set_current_access_from_decl (tree);
193 static enum template_base_result get_template_base (tree, tree, tree, tree,
194 bool , tree *);
195 static tree try_class_unification (tree, tree, tree, tree, bool);
196 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
197 tree, tree);
198 static bool template_template_parm_bindings_ok_p (tree, tree);
199 static int template_args_equal (tree, tree);
200 static void tsubst_default_arguments (tree, tsubst_flags_t);
201 static tree for_each_template_parm_r (tree *, int *, void *);
202 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
203 static void copy_default_args_to_explicit_spec (tree);
204 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
205 static bool dependent_template_arg_p (tree);
206 static bool any_template_arguments_need_structural_equality_p (tree);
207 static bool dependent_type_p_r (tree);
208 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
209 static tree tsubst_decl (tree, tree, tsubst_flags_t);
210 static void perform_typedefs_access_check (tree tmpl, tree targs);
211 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
212 location_t);
213 static tree listify (tree);
214 static tree listify_autos (tree, tree);
215 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
216 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
217 static bool complex_alias_template_p (const_tree tmpl);
218 static tree tsubst_attributes (tree, tree, tsubst_flags_t, tree);
219
220 /* Make the current scope suitable for access checking when we are
221 processing T. T can be FUNCTION_DECL for instantiated function
222 template, VAR_DECL for static member variable, or TYPE_DECL for
223 alias template (needed by instantiate_decl). */
224
225 static void
226 push_access_scope (tree t)
227 {
228 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
229 || TREE_CODE (t) == TYPE_DECL);
230
231 if (DECL_FRIEND_CONTEXT (t))
232 push_nested_class (DECL_FRIEND_CONTEXT (t));
233 else if (DECL_CLASS_SCOPE_P (t))
234 push_nested_class (DECL_CONTEXT (t));
235 else
236 push_to_top_level ();
237
238 if (TREE_CODE (t) == FUNCTION_DECL)
239 {
240 saved_access_scope = tree_cons
241 (NULL_TREE, current_function_decl, saved_access_scope);
242 current_function_decl = t;
243 }
244 }
245
246 /* Restore the scope set up by push_access_scope. T is the node we
247 are processing. */
248
249 static void
250 pop_access_scope (tree t)
251 {
252 if (TREE_CODE (t) == FUNCTION_DECL)
253 {
254 current_function_decl = TREE_VALUE (saved_access_scope);
255 saved_access_scope = TREE_CHAIN (saved_access_scope);
256 }
257
258 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
259 pop_nested_class ();
260 else
261 pop_from_top_level ();
262 }
263
264 /* Do any processing required when DECL (a member template
265 declaration) is finished. Returns the TEMPLATE_DECL corresponding
266 to DECL, unless it is a specialization, in which case the DECL
267 itself is returned. */
268
269 tree
270 finish_member_template_decl (tree decl)
271 {
272 if (decl == error_mark_node)
273 return error_mark_node;
274
275 gcc_assert (DECL_P (decl));
276
277 if (TREE_CODE (decl) == TYPE_DECL)
278 {
279 tree type;
280
281 type = TREE_TYPE (decl);
282 if (type == error_mark_node)
283 return error_mark_node;
284 if (MAYBE_CLASS_TYPE_P (type)
285 && CLASSTYPE_TEMPLATE_INFO (type)
286 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
287 {
288 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
289 check_member_template (tmpl);
290 return tmpl;
291 }
292 return NULL_TREE;
293 }
294 else if (TREE_CODE (decl) == FIELD_DECL)
295 error ("data member %qD cannot be a member template", decl);
296 else if (DECL_TEMPLATE_INFO (decl))
297 {
298 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
299 {
300 check_member_template (DECL_TI_TEMPLATE (decl));
301 return DECL_TI_TEMPLATE (decl);
302 }
303 else
304 return decl;
305 }
306 else
307 error ("invalid member template declaration %qD", decl);
308
309 return error_mark_node;
310 }
311
312 /* Create a template info node. */
313
314 tree
315 build_template_info (tree template_decl, tree template_args)
316 {
317 tree result = make_node (TEMPLATE_INFO);
318 TI_TEMPLATE (result) = template_decl;
319 TI_ARGS (result) = template_args;
320 return result;
321 }
322
323 /* Return the template info node corresponding to T, whatever T is. */
324
325 tree
326 get_template_info (const_tree t)
327 {
328 tree tinfo = NULL_TREE;
329
330 if (!t || t == error_mark_node)
331 return NULL;
332
333 if (TREE_CODE (t) == NAMESPACE_DECL)
334 return NULL;
335
336 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
337 tinfo = DECL_TEMPLATE_INFO (t);
338
339 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
340 t = TREE_TYPE (t);
341
342 if (OVERLOAD_TYPE_P (t))
343 tinfo = TYPE_TEMPLATE_INFO (t);
344 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
345 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
346
347 return tinfo;
348 }
349
350 /* Returns the template nesting level of the indicated class TYPE.
351
352 For example, in:
353 template <class T>
354 struct A
355 {
356 template <class U>
357 struct B {};
358 };
359
360 A<T>::B<U> has depth two, while A<T> has depth one.
361 Both A<T>::B<int> and A<int>::B<U> have depth one, if
362 they are instantiations, not specializations.
363
364 This function is guaranteed to return 0 if passed NULL_TREE so
365 that, for example, `template_class_depth (current_class_type)' is
366 always safe. */
367
368 int
369 template_class_depth (tree type)
370 {
371 int depth;
372
373 for (depth = 0;
374 type && TREE_CODE (type) != NAMESPACE_DECL;
375 type = (TREE_CODE (type) == FUNCTION_DECL)
376 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
377 {
378 tree tinfo = get_template_info (type);
379
380 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
381 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
382 ++depth;
383 }
384
385 return depth;
386 }
387
388 /* Subroutine of maybe_begin_member_template_processing.
389 Returns true if processing DECL needs us to push template parms. */
390
391 static bool
392 inline_needs_template_parms (tree decl, bool nsdmi)
393 {
394 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
395 return false;
396
397 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
398 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
399 }
400
401 /* Subroutine of maybe_begin_member_template_processing.
402 Push the template parms in PARMS, starting from LEVELS steps into the
403 chain, and ending at the beginning, since template parms are listed
404 innermost first. */
405
406 static void
407 push_inline_template_parms_recursive (tree parmlist, int levels)
408 {
409 tree parms = TREE_VALUE (parmlist);
410 int i;
411
412 if (levels > 1)
413 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
414
415 ++processing_template_decl;
416 current_template_parms
417 = tree_cons (size_int (processing_template_decl),
418 parms, current_template_parms);
419 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
420
421 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
422 NULL);
423 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
424 {
425 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
426
427 if (error_operand_p (parm))
428 continue;
429
430 gcc_assert (DECL_P (parm));
431
432 switch (TREE_CODE (parm))
433 {
434 case TYPE_DECL:
435 case TEMPLATE_DECL:
436 pushdecl (parm);
437 break;
438
439 case PARM_DECL:
440 /* Push the CONST_DECL. */
441 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
442 break;
443
444 default:
445 gcc_unreachable ();
446 }
447 }
448 }
449
450 /* Restore the template parameter context for a member template, a
451 friend template defined in a class definition, or a non-template
452 member of template class. */
453
454 void
455 maybe_begin_member_template_processing (tree decl)
456 {
457 tree parms;
458 int levels = 0;
459 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
460
461 if (nsdmi)
462 {
463 tree ctx = DECL_CONTEXT (decl);
464 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
465 /* Disregard full specializations (c++/60999). */
466 && uses_template_parms (ctx)
467 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
468 }
469
470 if (inline_needs_template_parms (decl, nsdmi))
471 {
472 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
473 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
474
475 if (DECL_TEMPLATE_SPECIALIZATION (decl))
476 {
477 --levels;
478 parms = TREE_CHAIN (parms);
479 }
480
481 push_inline_template_parms_recursive (parms, levels);
482 }
483
484 /* Remember how many levels of template parameters we pushed so that
485 we can pop them later. */
486 inline_parm_levels.safe_push (levels);
487 }
488
489 /* Undo the effects of maybe_begin_member_template_processing. */
490
491 void
492 maybe_end_member_template_processing (void)
493 {
494 int i;
495 int last;
496
497 if (inline_parm_levels.length () == 0)
498 return;
499
500 last = inline_parm_levels.pop ();
501 for (i = 0; i < last; ++i)
502 {
503 --processing_template_decl;
504 current_template_parms = TREE_CHAIN (current_template_parms);
505 poplevel (0, 0, 0);
506 }
507 }
508
509 /* Return a new template argument vector which contains all of ARGS,
510 but has as its innermost set of arguments the EXTRA_ARGS. */
511
512 static tree
513 add_to_template_args (tree args, tree extra_args)
514 {
515 tree new_args;
516 int extra_depth;
517 int i;
518 int j;
519
520 if (args == NULL_TREE || extra_args == error_mark_node)
521 return extra_args;
522
523 extra_depth = TMPL_ARGS_DEPTH (extra_args);
524 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
525
526 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
527 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
528
529 for (j = 1; j <= extra_depth; ++j, ++i)
530 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
531
532 return new_args;
533 }
534
535 /* Like add_to_template_args, but only the outermost ARGS are added to
536 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
537 (EXTRA_ARGS) levels are added. This function is used to combine
538 the template arguments from a partial instantiation with the
539 template arguments used to attain the full instantiation from the
540 partial instantiation. */
541
542 static tree
543 add_outermost_template_args (tree args, tree extra_args)
544 {
545 tree new_args;
546
547 /* If there are more levels of EXTRA_ARGS than there are ARGS,
548 something very fishy is going on. */
549 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
550
551 /* If *all* the new arguments will be the EXTRA_ARGS, just return
552 them. */
553 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
554 return extra_args;
555
556 /* For the moment, we make ARGS look like it contains fewer levels. */
557 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
558
559 new_args = add_to_template_args (args, extra_args);
560
561 /* Now, we restore ARGS to its full dimensions. */
562 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
563
564 return new_args;
565 }
566
567 /* Return the N levels of innermost template arguments from the ARGS. */
568
569 tree
570 get_innermost_template_args (tree args, int n)
571 {
572 tree new_args;
573 int extra_levels;
574 int i;
575
576 gcc_assert (n >= 0);
577
578 /* If N is 1, just return the innermost set of template arguments. */
579 if (n == 1)
580 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
581
582 /* If we're not removing anything, just return the arguments we were
583 given. */
584 extra_levels = TMPL_ARGS_DEPTH (args) - n;
585 gcc_assert (extra_levels >= 0);
586 if (extra_levels == 0)
587 return args;
588
589 /* Make a new set of arguments, not containing the outer arguments. */
590 new_args = make_tree_vec (n);
591 for (i = 1; i <= n; ++i)
592 SET_TMPL_ARGS_LEVEL (new_args, i,
593 TMPL_ARGS_LEVEL (args, i + extra_levels));
594
595 return new_args;
596 }
597
598 /* The inverse of get_innermost_template_args: Return all but the innermost
599 EXTRA_LEVELS levels of template arguments from the ARGS. */
600
601 static tree
602 strip_innermost_template_args (tree args, int extra_levels)
603 {
604 tree new_args;
605 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
606 int i;
607
608 gcc_assert (n >= 0);
609
610 /* If N is 1, just return the outermost set of template arguments. */
611 if (n == 1)
612 return TMPL_ARGS_LEVEL (args, 1);
613
614 /* If we're not removing anything, just return the arguments we were
615 given. */
616 gcc_assert (extra_levels >= 0);
617 if (extra_levels == 0)
618 return args;
619
620 /* Make a new set of arguments, not containing the inner arguments. */
621 new_args = make_tree_vec (n);
622 for (i = 1; i <= n; ++i)
623 SET_TMPL_ARGS_LEVEL (new_args, i,
624 TMPL_ARGS_LEVEL (args, i));
625
626 return new_args;
627 }
628
629 /* We've got a template header coming up; push to a new level for storing
630 the parms. */
631
632 void
633 begin_template_parm_list (void)
634 {
635 /* We use a non-tag-transparent scope here, which causes pushtag to
636 put tags in this scope, rather than in the enclosing class or
637 namespace scope. This is the right thing, since we want
638 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
639 global template class, push_template_decl handles putting the
640 TEMPLATE_DECL into top-level scope. For a nested template class,
641 e.g.:
642
643 template <class T> struct S1 {
644 template <class T> struct S2 {};
645 };
646
647 pushtag contains special code to call pushdecl_with_scope on the
648 TEMPLATE_DECL for S2. */
649 begin_scope (sk_template_parms, NULL);
650 ++processing_template_decl;
651 ++processing_template_parmlist;
652 note_template_header (0);
653
654 /* Add a dummy parameter level while we process the parameter list. */
655 current_template_parms
656 = tree_cons (size_int (processing_template_decl),
657 make_tree_vec (0),
658 current_template_parms);
659 }
660
661 /* This routine is called when a specialization is declared. If it is
662 invalid to declare a specialization here, an error is reported and
663 false is returned, otherwise this routine will return true. */
664
665 static bool
666 check_specialization_scope (void)
667 {
668 tree scope = current_scope ();
669
670 /* [temp.expl.spec]
671
672 An explicit specialization shall be declared in the namespace of
673 which the template is a member, or, for member templates, in the
674 namespace of which the enclosing class or enclosing class
675 template is a member. An explicit specialization of a member
676 function, member class or static data member of a class template
677 shall be declared in the namespace of which the class template
678 is a member. */
679 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
680 {
681 error ("explicit specialization in non-namespace scope %qD", scope);
682 return false;
683 }
684
685 /* [temp.expl.spec]
686
687 In an explicit specialization declaration for a member of a class
688 template or a member template that appears in namespace scope,
689 the member template and some of its enclosing class templates may
690 remain unspecialized, except that the declaration shall not
691 explicitly specialize a class member template if its enclosing
692 class templates are not explicitly specialized as well. */
693 if (current_template_parms)
694 {
695 error ("enclosing class templates are not explicitly specialized");
696 return false;
697 }
698
699 return true;
700 }
701
702 /* We've just seen template <>. */
703
704 bool
705 begin_specialization (void)
706 {
707 begin_scope (sk_template_spec, NULL);
708 note_template_header (1);
709 return check_specialization_scope ();
710 }
711
712 /* Called at then end of processing a declaration preceded by
713 template<>. */
714
715 void
716 end_specialization (void)
717 {
718 finish_scope ();
719 reset_specialization ();
720 }
721
722 /* Any template <>'s that we have seen thus far are not referring to a
723 function specialization. */
724
725 void
726 reset_specialization (void)
727 {
728 processing_specialization = 0;
729 template_header_count = 0;
730 }
731
732 /* We've just seen a template header. If SPECIALIZATION is nonzero,
733 it was of the form template <>. */
734
735 static void
736 note_template_header (int specialization)
737 {
738 processing_specialization = specialization;
739 template_header_count++;
740 }
741
742 /* We're beginning an explicit instantiation. */
743
744 void
745 begin_explicit_instantiation (void)
746 {
747 gcc_assert (!processing_explicit_instantiation);
748 processing_explicit_instantiation = true;
749 }
750
751
752 void
753 end_explicit_instantiation (void)
754 {
755 gcc_assert (processing_explicit_instantiation);
756 processing_explicit_instantiation = false;
757 }
758
759 /* An explicit specialization or partial specialization of TMPL is being
760 declared. Check that the namespace in which the specialization is
761 occurring is permissible. Returns false iff it is invalid to
762 specialize TMPL in the current namespace. */
763
764 static bool
765 check_specialization_namespace (tree tmpl)
766 {
767 tree tpl_ns = decl_namespace_context (tmpl);
768
769 /* [tmpl.expl.spec]
770
771 An explicit specialization shall be declared in the namespace of
772 which the template is a member, or, for member templates, in the
773 namespace of which the enclosing class or enclosing class
774 template is a member. An explicit specialization of a member
775 function, member class or static data member of a class template
776 shall be declared in the namespace of which the class template is
777 a member. */
778 if (current_scope() != DECL_CONTEXT (tmpl)
779 && !at_namespace_scope_p ())
780 {
781 error ("specialization of %qD must appear at namespace scope", tmpl);
782 return false;
783 }
784 if (is_associated_namespace (current_namespace, tpl_ns))
785 /* Same or super-using namespace. */
786 return true;
787 else
788 {
789 permerror (input_location,
790 "specialization of %qD in different namespace", tmpl);
791 permerror (DECL_SOURCE_LOCATION (tmpl),
792 " from definition of %q#D", tmpl);
793 return false;
794 }
795 }
796
797 /* SPEC is an explicit instantiation. Check that it is valid to
798 perform this explicit instantiation in the current namespace. */
799
800 static void
801 check_explicit_instantiation_namespace (tree spec)
802 {
803 tree ns;
804
805 /* DR 275: An explicit instantiation shall appear in an enclosing
806 namespace of its template. */
807 ns = decl_namespace_context (spec);
808 if (!is_ancestor (current_namespace, ns))
809 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
810 "(which does not enclose namespace %qD)",
811 spec, current_namespace, ns);
812 }
813
814 // Returns the type of a template specialization only if that
815 // specialization needs to be defined. Otherwise (e.g., if the type has
816 // already been defined), the function returns NULL_TREE.
817 static tree
818 maybe_new_partial_specialization (tree type)
819 {
820 // An implicit instantiation of an incomplete type implies
821 // the definition of a new class template.
822 //
823 // template<typename T>
824 // struct S;
825 //
826 // template<typename T>
827 // struct S<T*>;
828 //
829 // Here, S<T*> is an implicit instantiation of S whose type
830 // is incomplete.
831 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
832 return type;
833
834 // It can also be the case that TYPE is a completed specialization.
835 // Continuing the previous example, suppose we also declare:
836 //
837 // template<typename T>
838 // requires Integral<T>
839 // struct S<T*>;
840 //
841 // Here, S<T*> refers to the specialization S<T*> defined
842 // above. However, we need to differentiate definitions because
843 // we intend to define a new partial specialization. In this case,
844 // we rely on the fact that the constraints are different for
845 // this declaration than that above.
846 //
847 // Note that we also get here for injected class names and
848 // late-parsed template definitions. We must ensure that we
849 // do not create new type declarations for those cases.
850 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
851 {
852 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
853 tree args = CLASSTYPE_TI_ARGS (type);
854
855 // If there are no template parameters, this cannot be a new
856 // partial template specializtion?
857 if (!current_template_parms)
858 return NULL_TREE;
859
860 // The injected-class-name is not a new partial specialization.
861 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
862 return NULL_TREE;
863
864 // If the constraints are not the same as those of the primary
865 // then, we can probably create a new specialization.
866 tree type_constr = current_template_constraints ();
867
868 if (type == TREE_TYPE (tmpl))
869 {
870 tree main_constr = get_constraints (tmpl);
871 if (equivalent_constraints (type_constr, main_constr))
872 return NULL_TREE;
873 }
874
875 // Also, if there's a pre-existing specialization with matching
876 // constraints, then this also isn't new.
877 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
878 while (specs)
879 {
880 tree spec_tmpl = TREE_VALUE (specs);
881 tree spec_args = TREE_PURPOSE (specs);
882 tree spec_constr = get_constraints (spec_tmpl);
883 if (comp_template_args (args, spec_args)
884 && equivalent_constraints (type_constr, spec_constr))
885 return NULL_TREE;
886 specs = TREE_CHAIN (specs);
887 }
888
889 // Create a new type node (and corresponding type decl)
890 // for the newly declared specialization.
891 tree t = make_class_type (TREE_CODE (type));
892 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
893 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
894 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
895
896 /* We only need a separate type node for storing the definition of this
897 partial specialization; uses of S<T*> are unconstrained, so all are
898 equivalent. So keep TYPE_CANONICAL the same. */
899 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
900
901 // Build the corresponding type decl.
902 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
903 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
904 DECL_SOURCE_LOCATION (d) = input_location;
905
906 return t;
907 }
908
909 return NULL_TREE;
910 }
911
912 /* The TYPE is being declared. If it is a template type, that means it
913 is a partial specialization. Do appropriate error-checking. */
914
915 tree
916 maybe_process_partial_specialization (tree type)
917 {
918 tree context;
919
920 if (type == error_mark_node)
921 return error_mark_node;
922
923 /* A lambda that appears in specialization context is not itself a
924 specialization. */
925 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
926 return type;
927
928 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
929 {
930 error ("name of class shadows template template parameter %qD",
931 TYPE_NAME (type));
932 return error_mark_node;
933 }
934
935 context = TYPE_CONTEXT (type);
936
937 if (TYPE_ALIAS_P (type))
938 {
939 if (TYPE_TEMPLATE_INFO (type)
940 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
941 error ("specialization of alias template %qD",
942 TYPE_TI_TEMPLATE (type));
943 else
944 error ("explicit specialization of non-template %qT", type);
945 return error_mark_node;
946 }
947 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
948 {
949 /* This is for ordinary explicit specialization and partial
950 specialization of a template class such as:
951
952 template <> class C<int>;
953
954 or:
955
956 template <class T> class C<T*>;
957
958 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
959
960 if (tree t = maybe_new_partial_specialization (type))
961 {
962 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
963 && !at_namespace_scope_p ())
964 return error_mark_node;
965 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
966 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
967 if (processing_template_decl)
968 {
969 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
970 if (decl == error_mark_node)
971 return error_mark_node;
972 return TREE_TYPE (decl);
973 }
974 }
975 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
976 error ("specialization of %qT after instantiation", type);
977 else if (errorcount && !processing_specialization
978 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
979 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
980 /* Trying to define a specialization either without a template<> header
981 or in an inappropriate place. We've already given an error, so just
982 bail now so we don't actually define the specialization. */
983 return error_mark_node;
984 }
985 else if (CLASS_TYPE_P (type)
986 && !CLASSTYPE_USE_TEMPLATE (type)
987 && CLASSTYPE_TEMPLATE_INFO (type)
988 && context && CLASS_TYPE_P (context)
989 && CLASSTYPE_TEMPLATE_INFO (context))
990 {
991 /* This is for an explicit specialization of member class
992 template according to [temp.expl.spec/18]:
993
994 template <> template <class U> class C<int>::D;
995
996 The context `C<int>' must be an implicit instantiation.
997 Otherwise this is just a member class template declared
998 earlier like:
999
1000 template <> class C<int> { template <class U> class D; };
1001 template <> template <class U> class C<int>::D;
1002
1003 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1004 while in the second case, `C<int>::D' is a primary template
1005 and `C<T>::D' may not exist. */
1006
1007 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1008 && !COMPLETE_TYPE_P (type))
1009 {
1010 tree t;
1011 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1012
1013 if (current_namespace
1014 != decl_namespace_context (tmpl))
1015 {
1016 permerror (input_location,
1017 "specializing %q#T in different namespace", type);
1018 permerror (DECL_SOURCE_LOCATION (tmpl),
1019 " from definition of %q#D", tmpl);
1020 }
1021
1022 /* Check for invalid specialization after instantiation:
1023
1024 template <> template <> class C<int>::D<int>;
1025 template <> template <class U> class C<int>::D; */
1026
1027 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1028 t; t = TREE_CHAIN (t))
1029 {
1030 tree inst = TREE_VALUE (t);
1031 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1032 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1033 {
1034 /* We already have a full specialization of this partial
1035 instantiation, or a full specialization has been
1036 looked up but not instantiated. Reassign it to the
1037 new member specialization template. */
1038 spec_entry elt;
1039 spec_entry *entry;
1040
1041 elt.tmpl = most_general_template (tmpl);
1042 elt.args = CLASSTYPE_TI_ARGS (inst);
1043 elt.spec = inst;
1044
1045 type_specializations->remove_elt (&elt);
1046
1047 elt.tmpl = tmpl;
1048 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1049
1050 spec_entry **slot
1051 = type_specializations->find_slot (&elt, INSERT);
1052 entry = ggc_alloc<spec_entry> ();
1053 *entry = elt;
1054 *slot = entry;
1055 }
1056 else
1057 /* But if we've had an implicit instantiation, that's a
1058 problem ([temp.expl.spec]/6). */
1059 error ("specialization %qT after instantiation %qT",
1060 type, inst);
1061 }
1062
1063 /* Mark TYPE as a specialization. And as a result, we only
1064 have one level of template argument for the innermost
1065 class template. */
1066 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1067 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1068 CLASSTYPE_TI_ARGS (type)
1069 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1070 }
1071 }
1072 else if (processing_specialization)
1073 {
1074 /* Someday C++0x may allow for enum template specialization. */
1075 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1076 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1077 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1078 "of %qD not allowed by ISO C++", type);
1079 else
1080 {
1081 error ("explicit specialization of non-template %qT", type);
1082 return error_mark_node;
1083 }
1084 }
1085
1086 return type;
1087 }
1088
1089 /* Returns nonzero if we can optimize the retrieval of specializations
1090 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1091 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1092
1093 static inline bool
1094 optimize_specialization_lookup_p (tree tmpl)
1095 {
1096 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1097 && DECL_CLASS_SCOPE_P (tmpl)
1098 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1099 parameter. */
1100 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1101 /* The optimized lookup depends on the fact that the
1102 template arguments for the member function template apply
1103 purely to the containing class, which is not true if the
1104 containing class is an explicit or partial
1105 specialization. */
1106 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1107 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1108 && !DECL_CONV_FN_P (tmpl)
1109 /* It is possible to have a template that is not a member
1110 template and is not a member of a template class:
1111
1112 template <typename T>
1113 struct S { friend A::f(); };
1114
1115 Here, the friend function is a template, but the context does
1116 not have template information. The optimized lookup relies
1117 on having ARGS be the template arguments for both the class
1118 and the function template. */
1119 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1120 }
1121
1122 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1123 gone through coerce_template_parms by now. */
1124
1125 static void
1126 verify_unstripped_args (tree args)
1127 {
1128 ++processing_template_decl;
1129 if (!any_dependent_template_arguments_p (args))
1130 {
1131 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1132 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1133 {
1134 tree arg = TREE_VEC_ELT (inner, i);
1135 if (TREE_CODE (arg) == TEMPLATE_DECL)
1136 /* OK */;
1137 else if (TYPE_P (arg))
1138 gcc_assert (strip_typedefs (arg, NULL) == arg);
1139 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1140 /* Allow typedefs on the type of a non-type argument, since a
1141 parameter can have them. */;
1142 else
1143 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1144 }
1145 }
1146 --processing_template_decl;
1147 }
1148
1149 /* Retrieve the specialization (in the sense of [temp.spec] - a
1150 specialization is either an instantiation or an explicit
1151 specialization) of TMPL for the given template ARGS. If there is
1152 no such specialization, return NULL_TREE. The ARGS are a vector of
1153 arguments, or a vector of vectors of arguments, in the case of
1154 templates with more than one level of parameters.
1155
1156 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1157 then we search for a partial specialization matching ARGS. This
1158 parameter is ignored if TMPL is not a class template.
1159
1160 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1161 result is a NONTYPE_ARGUMENT_PACK. */
1162
1163 static tree
1164 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1165 {
1166 if (tmpl == NULL_TREE)
1167 return NULL_TREE;
1168
1169 if (args == error_mark_node)
1170 return NULL_TREE;
1171
1172 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1173 || TREE_CODE (tmpl) == FIELD_DECL);
1174
1175 /* There should be as many levels of arguments as there are
1176 levels of parameters. */
1177 gcc_assert (TMPL_ARGS_DEPTH (args)
1178 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1179 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1180 : template_class_depth (DECL_CONTEXT (tmpl))));
1181
1182 if (flag_checking)
1183 verify_unstripped_args (args);
1184
1185 if (optimize_specialization_lookup_p (tmpl))
1186 {
1187 tree class_template;
1188 tree class_specialization;
1189 vec<tree, va_gc> *methods;
1190 tree fns;
1191 int idx;
1192
1193 /* The template arguments actually apply to the containing
1194 class. Find the class specialization with those
1195 arguments. */
1196 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1197 class_specialization
1198 = retrieve_specialization (class_template, args, 0);
1199 if (!class_specialization)
1200 return NULL_TREE;
1201 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1202 for the specialization. */
1203 idx = class_method_index_for_fn (class_specialization, tmpl);
1204 if (idx == -1)
1205 return NULL_TREE;
1206 /* Iterate through the methods with the indicated name, looking
1207 for the one that has an instance of TMPL. */
1208 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1209 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1210 {
1211 tree fn = OVL_CURRENT (fns);
1212 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1213 /* using-declarations can add base methods to the method vec,
1214 and we don't want those here. */
1215 && DECL_CONTEXT (fn) == class_specialization)
1216 return fn;
1217 }
1218 return NULL_TREE;
1219 }
1220 else
1221 {
1222 spec_entry *found;
1223 spec_entry elt;
1224 hash_table<spec_hasher> *specializations;
1225
1226 elt.tmpl = tmpl;
1227 elt.args = args;
1228 elt.spec = NULL_TREE;
1229
1230 if (DECL_CLASS_TEMPLATE_P (tmpl))
1231 specializations = type_specializations;
1232 else
1233 specializations = decl_specializations;
1234
1235 if (hash == 0)
1236 hash = spec_hasher::hash (&elt);
1237 found = specializations->find_with_hash (&elt, hash);
1238 if (found)
1239 return found->spec;
1240 }
1241
1242 return NULL_TREE;
1243 }
1244
1245 /* Like retrieve_specialization, but for local declarations. */
1246
1247 tree
1248 retrieve_local_specialization (tree tmpl)
1249 {
1250 if (local_specializations == NULL)
1251 return NULL_TREE;
1252
1253 tree *slot = local_specializations->get (tmpl);
1254 return slot ? *slot : NULL_TREE;
1255 }
1256
1257 /* Returns nonzero iff DECL is a specialization of TMPL. */
1258
1259 int
1260 is_specialization_of (tree decl, tree tmpl)
1261 {
1262 tree t;
1263
1264 if (TREE_CODE (decl) == FUNCTION_DECL)
1265 {
1266 for (t = decl;
1267 t != NULL_TREE;
1268 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1269 if (t == tmpl)
1270 return 1;
1271 }
1272 else
1273 {
1274 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1275
1276 for (t = TREE_TYPE (decl);
1277 t != NULL_TREE;
1278 t = CLASSTYPE_USE_TEMPLATE (t)
1279 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1280 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1281 return 1;
1282 }
1283
1284 return 0;
1285 }
1286
1287 /* Returns nonzero iff DECL is a specialization of friend declaration
1288 FRIEND_DECL according to [temp.friend]. */
1289
1290 bool
1291 is_specialization_of_friend (tree decl, tree friend_decl)
1292 {
1293 bool need_template = true;
1294 int template_depth;
1295
1296 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1297 || TREE_CODE (decl) == TYPE_DECL);
1298
1299 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1300 of a template class, we want to check if DECL is a specialization
1301 if this. */
1302 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1303 && DECL_TEMPLATE_INFO (friend_decl)
1304 && !DECL_USE_TEMPLATE (friend_decl))
1305 {
1306 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1307 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1308 need_template = false;
1309 }
1310 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1311 && !PRIMARY_TEMPLATE_P (friend_decl))
1312 need_template = false;
1313
1314 /* There is nothing to do if this is not a template friend. */
1315 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1316 return false;
1317
1318 if (is_specialization_of (decl, friend_decl))
1319 return true;
1320
1321 /* [temp.friend/6]
1322 A member of a class template may be declared to be a friend of a
1323 non-template class. In this case, the corresponding member of
1324 every specialization of the class template is a friend of the
1325 class granting friendship.
1326
1327 For example, given a template friend declaration
1328
1329 template <class T> friend void A<T>::f();
1330
1331 the member function below is considered a friend
1332
1333 template <> struct A<int> {
1334 void f();
1335 };
1336
1337 For this type of template friend, TEMPLATE_DEPTH below will be
1338 nonzero. To determine if DECL is a friend of FRIEND, we first
1339 check if the enclosing class is a specialization of another. */
1340
1341 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1342 if (template_depth
1343 && DECL_CLASS_SCOPE_P (decl)
1344 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1345 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1346 {
1347 /* Next, we check the members themselves. In order to handle
1348 a few tricky cases, such as when FRIEND_DECL's are
1349
1350 template <class T> friend void A<T>::g(T t);
1351 template <class T> template <T t> friend void A<T>::h();
1352
1353 and DECL's are
1354
1355 void A<int>::g(int);
1356 template <int> void A<int>::h();
1357
1358 we need to figure out ARGS, the template arguments from
1359 the context of DECL. This is required for template substitution
1360 of `T' in the function parameter of `g' and template parameter
1361 of `h' in the above examples. Here ARGS corresponds to `int'. */
1362
1363 tree context = DECL_CONTEXT (decl);
1364 tree args = NULL_TREE;
1365 int current_depth = 0;
1366
1367 while (current_depth < template_depth)
1368 {
1369 if (CLASSTYPE_TEMPLATE_INFO (context))
1370 {
1371 if (current_depth == 0)
1372 args = TYPE_TI_ARGS (context);
1373 else
1374 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1375 current_depth++;
1376 }
1377 context = TYPE_CONTEXT (context);
1378 }
1379
1380 if (TREE_CODE (decl) == FUNCTION_DECL)
1381 {
1382 bool is_template;
1383 tree friend_type;
1384 tree decl_type;
1385 tree friend_args_type;
1386 tree decl_args_type;
1387
1388 /* Make sure that both DECL and FRIEND_DECL are templates or
1389 non-templates. */
1390 is_template = DECL_TEMPLATE_INFO (decl)
1391 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1392 if (need_template ^ is_template)
1393 return false;
1394 else if (is_template)
1395 {
1396 /* If both are templates, check template parameter list. */
1397 tree friend_parms
1398 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1399 args, tf_none);
1400 if (!comp_template_parms
1401 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1402 friend_parms))
1403 return false;
1404
1405 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1406 }
1407 else
1408 decl_type = TREE_TYPE (decl);
1409
1410 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1411 tf_none, NULL_TREE);
1412 if (friend_type == error_mark_node)
1413 return false;
1414
1415 /* Check if return types match. */
1416 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1417 return false;
1418
1419 /* Check if function parameter types match, ignoring the
1420 `this' parameter. */
1421 friend_args_type = TYPE_ARG_TYPES (friend_type);
1422 decl_args_type = TYPE_ARG_TYPES (decl_type);
1423 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1424 friend_args_type = TREE_CHAIN (friend_args_type);
1425 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1426 decl_args_type = TREE_CHAIN (decl_args_type);
1427
1428 return compparms (decl_args_type, friend_args_type);
1429 }
1430 else
1431 {
1432 /* DECL is a TYPE_DECL */
1433 bool is_template;
1434 tree decl_type = TREE_TYPE (decl);
1435
1436 /* Make sure that both DECL and FRIEND_DECL are templates or
1437 non-templates. */
1438 is_template
1439 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1440 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1441
1442 if (need_template ^ is_template)
1443 return false;
1444 else if (is_template)
1445 {
1446 tree friend_parms;
1447 /* If both are templates, check the name of the two
1448 TEMPLATE_DECL's first because is_friend didn't. */
1449 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1450 != DECL_NAME (friend_decl))
1451 return false;
1452
1453 /* Now check template parameter list. */
1454 friend_parms
1455 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1456 args, tf_none);
1457 return comp_template_parms
1458 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1459 friend_parms);
1460 }
1461 else
1462 return (DECL_NAME (decl)
1463 == DECL_NAME (friend_decl));
1464 }
1465 }
1466 return false;
1467 }
1468
1469 /* Register the specialization SPEC as a specialization of TMPL with
1470 the indicated ARGS. IS_FRIEND indicates whether the specialization
1471 is actually just a friend declaration. Returns SPEC, or an
1472 equivalent prior declaration, if available.
1473
1474 We also store instantiations of field packs in the hash table, even
1475 though they are not themselves templates, to make lookup easier. */
1476
1477 static tree
1478 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1479 hashval_t hash)
1480 {
1481 tree fn;
1482 spec_entry **slot = NULL;
1483 spec_entry elt;
1484
1485 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1486 || (TREE_CODE (tmpl) == FIELD_DECL
1487 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1488
1489 if (TREE_CODE (spec) == FUNCTION_DECL
1490 && uses_template_parms (DECL_TI_ARGS (spec)))
1491 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1492 register it; we want the corresponding TEMPLATE_DECL instead.
1493 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1494 the more obvious `uses_template_parms (spec)' to avoid problems
1495 with default function arguments. In particular, given
1496 something like this:
1497
1498 template <class T> void f(T t1, T t = T())
1499
1500 the default argument expression is not substituted for in an
1501 instantiation unless and until it is actually needed. */
1502 return spec;
1503
1504 if (optimize_specialization_lookup_p (tmpl))
1505 /* We don't put these specializations in the hash table, but we might
1506 want to give an error about a mismatch. */
1507 fn = retrieve_specialization (tmpl, args, 0);
1508 else
1509 {
1510 elt.tmpl = tmpl;
1511 elt.args = args;
1512 elt.spec = spec;
1513
1514 if (hash == 0)
1515 hash = spec_hasher::hash (&elt);
1516
1517 slot =
1518 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1519 if (*slot)
1520 fn = ((spec_entry *) *slot)->spec;
1521 else
1522 fn = NULL_TREE;
1523 }
1524
1525 /* We can sometimes try to re-register a specialization that we've
1526 already got. In particular, regenerate_decl_from_template calls
1527 duplicate_decls which will update the specialization list. But,
1528 we'll still get called again here anyhow. It's more convenient
1529 to simply allow this than to try to prevent it. */
1530 if (fn == spec)
1531 return spec;
1532 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1533 {
1534 if (DECL_TEMPLATE_INSTANTIATION (fn))
1535 {
1536 if (DECL_ODR_USED (fn)
1537 || DECL_EXPLICIT_INSTANTIATION (fn))
1538 {
1539 error ("specialization of %qD after instantiation",
1540 fn);
1541 return error_mark_node;
1542 }
1543 else
1544 {
1545 tree clone;
1546 /* This situation should occur only if the first
1547 specialization is an implicit instantiation, the
1548 second is an explicit specialization, and the
1549 implicit instantiation has not yet been used. That
1550 situation can occur if we have implicitly
1551 instantiated a member function and then specialized
1552 it later.
1553
1554 We can also wind up here if a friend declaration that
1555 looked like an instantiation turns out to be a
1556 specialization:
1557
1558 template <class T> void foo(T);
1559 class S { friend void foo<>(int) };
1560 template <> void foo(int);
1561
1562 We transform the existing DECL in place so that any
1563 pointers to it become pointers to the updated
1564 declaration.
1565
1566 If there was a definition for the template, but not
1567 for the specialization, we want this to look as if
1568 there were no definition, and vice versa. */
1569 DECL_INITIAL (fn) = NULL_TREE;
1570 duplicate_decls (spec, fn, is_friend);
1571 /* The call to duplicate_decls will have applied
1572 [temp.expl.spec]:
1573
1574 An explicit specialization of a function template
1575 is inline only if it is explicitly declared to be,
1576 and independently of whether its function template
1577 is.
1578
1579 to the primary function; now copy the inline bits to
1580 the various clones. */
1581 FOR_EACH_CLONE (clone, fn)
1582 {
1583 DECL_DECLARED_INLINE_P (clone)
1584 = DECL_DECLARED_INLINE_P (fn);
1585 DECL_SOURCE_LOCATION (clone)
1586 = DECL_SOURCE_LOCATION (fn);
1587 DECL_DELETED_FN (clone)
1588 = DECL_DELETED_FN (fn);
1589 }
1590 check_specialization_namespace (tmpl);
1591
1592 return fn;
1593 }
1594 }
1595 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1596 {
1597 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1598 /* Dup decl failed, but this is a new definition. Set the
1599 line number so any errors match this new
1600 definition. */
1601 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1602
1603 return fn;
1604 }
1605 }
1606 else if (fn)
1607 return duplicate_decls (spec, fn, is_friend);
1608
1609 /* A specialization must be declared in the same namespace as the
1610 template it is specializing. */
1611 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1612 && !check_specialization_namespace (tmpl))
1613 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1614
1615 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1616 {
1617 spec_entry *entry = ggc_alloc<spec_entry> ();
1618 gcc_assert (tmpl && args && spec);
1619 *entry = elt;
1620 *slot = entry;
1621 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1622 && PRIMARY_TEMPLATE_P (tmpl)
1623 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1624 || variable_template_p (tmpl))
1625 /* If TMPL is a forward declaration of a template function, keep a list
1626 of all specializations in case we need to reassign them to a friend
1627 template later in tsubst_friend_function.
1628
1629 Also keep a list of all variable template instantiations so that
1630 process_partial_specialization can check whether a later partial
1631 specialization would have used it. */
1632 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1633 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1634 }
1635
1636 return spec;
1637 }
1638
1639 /* Returns true iff two spec_entry nodes are equivalent. */
1640
1641 int comparing_specializations;
1642
1643 bool
1644 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1645 {
1646 int equal;
1647
1648 ++comparing_specializations;
1649 equal = (e1->tmpl == e2->tmpl
1650 && comp_template_args (e1->args, e2->args));
1651 if (equal && flag_concepts
1652 /* tmpl could be a FIELD_DECL for a capture pack. */
1653 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1654 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1655 && uses_template_parms (e1->args))
1656 {
1657 /* Partial specializations of a variable template can be distinguished by
1658 constraints. */
1659 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1660 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1661 equal = equivalent_constraints (c1, c2);
1662 }
1663 --comparing_specializations;
1664
1665 return equal;
1666 }
1667
1668 /* Returns a hash for a template TMPL and template arguments ARGS. */
1669
1670 static hashval_t
1671 hash_tmpl_and_args (tree tmpl, tree args)
1672 {
1673 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1674 return iterative_hash_template_arg (args, val);
1675 }
1676
1677 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1678 ignoring SPEC. */
1679
1680 hashval_t
1681 spec_hasher::hash (spec_entry *e)
1682 {
1683 return hash_tmpl_and_args (e->tmpl, e->args);
1684 }
1685
1686 /* Recursively calculate a hash value for a template argument ARG, for use
1687 in the hash tables of template specializations. */
1688
1689 hashval_t
1690 iterative_hash_template_arg (tree arg, hashval_t val)
1691 {
1692 unsigned HOST_WIDE_INT i;
1693 enum tree_code code;
1694 char tclass;
1695
1696 if (arg == NULL_TREE)
1697 return iterative_hash_object (arg, val);
1698
1699 if (!TYPE_P (arg))
1700 STRIP_NOPS (arg);
1701
1702 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1703 /* We can get one of these when re-hashing a previous entry in the middle
1704 of substituting into a pack expansion. Just look through it. */
1705 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1706
1707 code = TREE_CODE (arg);
1708 tclass = TREE_CODE_CLASS (code);
1709
1710 val = iterative_hash_object (code, val);
1711
1712 switch (code)
1713 {
1714 case ERROR_MARK:
1715 return val;
1716
1717 case IDENTIFIER_NODE:
1718 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1719
1720 case TREE_VEC:
1721 {
1722 int i, len = TREE_VEC_LENGTH (arg);
1723 for (i = 0; i < len; ++i)
1724 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1725 return val;
1726 }
1727
1728 case TYPE_PACK_EXPANSION:
1729 case EXPR_PACK_EXPANSION:
1730 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1731 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1732
1733 case TYPE_ARGUMENT_PACK:
1734 case NONTYPE_ARGUMENT_PACK:
1735 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1736
1737 case TREE_LIST:
1738 for (; arg; arg = TREE_CHAIN (arg))
1739 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1740 return val;
1741
1742 case OVERLOAD:
1743 for (; arg; arg = OVL_NEXT (arg))
1744 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1745 return val;
1746
1747 case CONSTRUCTOR:
1748 {
1749 tree field, value;
1750 iterative_hash_template_arg (TREE_TYPE (arg), val);
1751 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1752 {
1753 val = iterative_hash_template_arg (field, val);
1754 val = iterative_hash_template_arg (value, val);
1755 }
1756 return val;
1757 }
1758
1759 case PARM_DECL:
1760 if (!DECL_ARTIFICIAL (arg))
1761 {
1762 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1763 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1764 }
1765 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1766
1767 case TARGET_EXPR:
1768 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1769
1770 case PTRMEM_CST:
1771 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1772 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1773
1774 case TEMPLATE_PARM_INDEX:
1775 val = iterative_hash_template_arg
1776 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1777 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1778 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1779
1780 case TRAIT_EXPR:
1781 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1782 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1783 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1784
1785 case BASELINK:
1786 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1787 val);
1788 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1789 val);
1790
1791 case MODOP_EXPR:
1792 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1793 code = TREE_CODE (TREE_OPERAND (arg, 1));
1794 val = iterative_hash_object (code, val);
1795 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1796
1797 case LAMBDA_EXPR:
1798 /* A lambda can't appear in a template arg, but don't crash on
1799 erroneous input. */
1800 gcc_assert (seen_error ());
1801 return val;
1802
1803 case CAST_EXPR:
1804 case IMPLICIT_CONV_EXPR:
1805 case STATIC_CAST_EXPR:
1806 case REINTERPRET_CAST_EXPR:
1807 case CONST_CAST_EXPR:
1808 case DYNAMIC_CAST_EXPR:
1809 case NEW_EXPR:
1810 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1811 /* Now hash operands as usual. */
1812 break;
1813
1814 default:
1815 break;
1816 }
1817
1818 switch (tclass)
1819 {
1820 case tcc_type:
1821 if (alias_template_specialization_p (arg))
1822 {
1823 // We want an alias specialization that survived strip_typedefs
1824 // to hash differently from its TYPE_CANONICAL, to avoid hash
1825 // collisions that compare as different in template_args_equal.
1826 // These could be dependent specializations that strip_typedefs
1827 // left alone, or untouched specializations because
1828 // coerce_template_parms returns the unconverted template
1829 // arguments if it sees incomplete argument packs.
1830 tree ti = TYPE_TEMPLATE_INFO (arg);
1831 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1832 }
1833 if (TYPE_CANONICAL (arg))
1834 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1835 val);
1836 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1837 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1838 /* Otherwise just compare the types during lookup. */
1839 return val;
1840
1841 case tcc_declaration:
1842 case tcc_constant:
1843 return iterative_hash_expr (arg, val);
1844
1845 default:
1846 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1847 {
1848 unsigned n = cp_tree_operand_length (arg);
1849 for (i = 0; i < n; ++i)
1850 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1851 return val;
1852 }
1853 }
1854 gcc_unreachable ();
1855 return 0;
1856 }
1857
1858 /* Unregister the specialization SPEC as a specialization of TMPL.
1859 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1860 if the SPEC was listed as a specialization of TMPL.
1861
1862 Note that SPEC has been ggc_freed, so we can't look inside it. */
1863
1864 bool
1865 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1866 {
1867 spec_entry *entry;
1868 spec_entry elt;
1869
1870 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1871 elt.args = TI_ARGS (tinfo);
1872 elt.spec = NULL_TREE;
1873
1874 entry = decl_specializations->find (&elt);
1875 if (entry != NULL)
1876 {
1877 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1878 gcc_assert (new_spec != NULL_TREE);
1879 entry->spec = new_spec;
1880 return 1;
1881 }
1882
1883 return 0;
1884 }
1885
1886 /* Like register_specialization, but for local declarations. We are
1887 registering SPEC, an instantiation of TMPL. */
1888
1889 void
1890 register_local_specialization (tree spec, tree tmpl)
1891 {
1892 local_specializations->put (tmpl, spec);
1893 }
1894
1895 /* TYPE is a class type. Returns true if TYPE is an explicitly
1896 specialized class. */
1897
1898 bool
1899 explicit_class_specialization_p (tree type)
1900 {
1901 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1902 return false;
1903 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1904 }
1905
1906 /* Print the list of functions at FNS, going through all the overloads
1907 for each element of the list. Alternatively, FNS can not be a
1908 TREE_LIST, in which case it will be printed together with all the
1909 overloads.
1910
1911 MORE and *STR should respectively be FALSE and NULL when the function
1912 is called from the outside. They are used internally on recursive
1913 calls. print_candidates manages the two parameters and leaves NULL
1914 in *STR when it ends. */
1915
1916 static void
1917 print_candidates_1 (tree fns, bool more, const char **str)
1918 {
1919 tree fn, fn2;
1920 char *spaces = NULL;
1921
1922 for (fn = fns; fn; fn = OVL_NEXT (fn))
1923 if (TREE_CODE (fn) == TREE_LIST)
1924 {
1925 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1926 print_candidates_1 (TREE_VALUE (fn2),
1927 TREE_CHAIN (fn2) || more, str);
1928 }
1929 else
1930 {
1931 tree cand = OVL_CURRENT (fn);
1932 if (!*str)
1933 {
1934 /* Pick the prefix string. */
1935 if (!more && !OVL_NEXT (fns))
1936 {
1937 inform (DECL_SOURCE_LOCATION (cand),
1938 "candidate is: %#D", cand);
1939 continue;
1940 }
1941
1942 *str = _("candidates are:");
1943 spaces = get_spaces (*str);
1944 }
1945 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1946 *str = spaces ? spaces : *str;
1947 }
1948
1949 if (!more)
1950 {
1951 free (spaces);
1952 *str = NULL;
1953 }
1954 }
1955
1956 /* Print the list of candidate FNS in an error message. FNS can also
1957 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1958
1959 void
1960 print_candidates (tree fns)
1961 {
1962 const char *str = NULL;
1963 print_candidates_1 (fns, false, &str);
1964 gcc_assert (str == NULL);
1965 }
1966
1967 /* Get a (possibly) constrained template declaration for the
1968 purpose of ordering candidates. */
1969 static tree
1970 get_template_for_ordering (tree list)
1971 {
1972 gcc_assert (TREE_CODE (list) == TREE_LIST);
1973 tree f = TREE_VALUE (list);
1974 if (tree ti = DECL_TEMPLATE_INFO (f))
1975 return TI_TEMPLATE (ti);
1976 return f;
1977 }
1978
1979 /* Among candidates having the same signature, return the
1980 most constrained or NULL_TREE if there is no best candidate.
1981 If the signatures of candidates vary (e.g., template
1982 specialization vs. member function), then there can be no
1983 most constrained.
1984
1985 Note that we don't compare constraints on the functions
1986 themselves, but rather those of their templates. */
1987 static tree
1988 most_constrained_function (tree candidates)
1989 {
1990 // Try to find the best candidate in a first pass.
1991 tree champ = candidates;
1992 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1993 {
1994 int winner = more_constrained (get_template_for_ordering (champ),
1995 get_template_for_ordering (c));
1996 if (winner == -1)
1997 champ = c; // The candidate is more constrained
1998 else if (winner == 0)
1999 return NULL_TREE; // Neither is more constrained
2000 }
2001
2002 // Verify that the champ is better than previous candidates.
2003 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2004 if (!more_constrained (get_template_for_ordering (champ),
2005 get_template_for_ordering (c)))
2006 return NULL_TREE;
2007 }
2008
2009 return champ;
2010 }
2011
2012
2013 /* Returns the template (one of the functions given by TEMPLATE_ID)
2014 which can be specialized to match the indicated DECL with the
2015 explicit template args given in TEMPLATE_ID. The DECL may be
2016 NULL_TREE if none is available. In that case, the functions in
2017 TEMPLATE_ID are non-members.
2018
2019 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2020 specialization of a member template.
2021
2022 The TEMPLATE_COUNT is the number of references to qualifying
2023 template classes that appeared in the name of the function. See
2024 check_explicit_specialization for a more accurate description.
2025
2026 TSK indicates what kind of template declaration (if any) is being
2027 declared. TSK_TEMPLATE indicates that the declaration given by
2028 DECL, though a FUNCTION_DECL, has template parameters, and is
2029 therefore a template function.
2030
2031 The template args (those explicitly specified and those deduced)
2032 are output in a newly created vector *TARGS_OUT.
2033
2034 If it is impossible to determine the result, an error message is
2035 issued. The error_mark_node is returned to indicate failure. */
2036
2037 static tree
2038 determine_specialization (tree template_id,
2039 tree decl,
2040 tree* targs_out,
2041 int need_member_template,
2042 int template_count,
2043 tmpl_spec_kind tsk)
2044 {
2045 tree fns;
2046 tree targs;
2047 tree explicit_targs;
2048 tree candidates = NULL_TREE;
2049
2050 /* A TREE_LIST of templates of which DECL may be a specialization.
2051 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2052 corresponding TREE_PURPOSE is the set of template arguments that,
2053 when used to instantiate the template, would produce a function
2054 with the signature of DECL. */
2055 tree templates = NULL_TREE;
2056 int header_count;
2057 cp_binding_level *b;
2058
2059 *targs_out = NULL_TREE;
2060
2061 if (template_id == error_mark_node || decl == error_mark_node)
2062 return error_mark_node;
2063
2064 /* We shouldn't be specializing a member template of an
2065 unspecialized class template; we already gave an error in
2066 check_specialization_scope, now avoid crashing. */
2067 if (template_count && DECL_CLASS_SCOPE_P (decl)
2068 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2069 {
2070 gcc_assert (errorcount);
2071 return error_mark_node;
2072 }
2073
2074 fns = TREE_OPERAND (template_id, 0);
2075 explicit_targs = TREE_OPERAND (template_id, 1);
2076
2077 if (fns == error_mark_node)
2078 return error_mark_node;
2079
2080 /* Check for baselinks. */
2081 if (BASELINK_P (fns))
2082 fns = BASELINK_FUNCTIONS (fns);
2083
2084 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2085 {
2086 error ("%qD is not a function template", fns);
2087 return error_mark_node;
2088 }
2089 else if (VAR_P (decl) && !variable_template_p (fns))
2090 {
2091 error ("%qD is not a variable template", fns);
2092 return error_mark_node;
2093 }
2094
2095 /* Count the number of template headers specified for this
2096 specialization. */
2097 header_count = 0;
2098 for (b = current_binding_level;
2099 b->kind == sk_template_parms;
2100 b = b->level_chain)
2101 ++header_count;
2102
2103 tree orig_fns = fns;
2104
2105 if (variable_template_p (fns))
2106 {
2107 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2108 targs = coerce_template_parms (parms, explicit_targs, fns,
2109 tf_warning_or_error,
2110 /*req_all*/true, /*use_defarg*/true);
2111 if (targs != error_mark_node)
2112 templates = tree_cons (targs, fns, templates);
2113 }
2114 else for (; fns; fns = OVL_NEXT (fns))
2115 {
2116 tree fn = OVL_CURRENT (fns);
2117
2118 if (TREE_CODE (fn) == TEMPLATE_DECL)
2119 {
2120 tree decl_arg_types;
2121 tree fn_arg_types;
2122 tree insttype;
2123
2124 /* In case of explicit specialization, we need to check if
2125 the number of template headers appearing in the specialization
2126 is correct. This is usually done in check_explicit_specialization,
2127 but the check done there cannot be exhaustive when specializing
2128 member functions. Consider the following code:
2129
2130 template <> void A<int>::f(int);
2131 template <> template <> void A<int>::f(int);
2132
2133 Assuming that A<int> is not itself an explicit specialization
2134 already, the first line specializes "f" which is a non-template
2135 member function, whilst the second line specializes "f" which
2136 is a template member function. So both lines are syntactically
2137 correct, and check_explicit_specialization does not reject
2138 them.
2139
2140 Here, we can do better, as we are matching the specialization
2141 against the declarations. We count the number of template
2142 headers, and we check if they match TEMPLATE_COUNT + 1
2143 (TEMPLATE_COUNT is the number of qualifying template classes,
2144 plus there must be another header for the member template
2145 itself).
2146
2147 Notice that if header_count is zero, this is not a
2148 specialization but rather a template instantiation, so there
2149 is no check we can perform here. */
2150 if (header_count && header_count != template_count + 1)
2151 continue;
2152
2153 /* Check that the number of template arguments at the
2154 innermost level for DECL is the same as for FN. */
2155 if (current_binding_level->kind == sk_template_parms
2156 && !current_binding_level->explicit_spec_p
2157 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2158 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2159 (current_template_parms))))
2160 continue;
2161
2162 /* DECL might be a specialization of FN. */
2163 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2164 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2165
2166 /* For a non-static member function, we need to make sure
2167 that the const qualification is the same. Since
2168 get_bindings does not try to merge the "this" parameter,
2169 we must do the comparison explicitly. */
2170 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2171 && !same_type_p (TREE_VALUE (fn_arg_types),
2172 TREE_VALUE (decl_arg_types)))
2173 continue;
2174
2175 /* Skip the "this" parameter and, for constructors of
2176 classes with virtual bases, the VTT parameter. A
2177 full specialization of a constructor will have a VTT
2178 parameter, but a template never will. */
2179 decl_arg_types
2180 = skip_artificial_parms_for (decl, decl_arg_types);
2181 fn_arg_types
2182 = skip_artificial_parms_for (fn, fn_arg_types);
2183
2184 /* Function templates cannot be specializations; there are
2185 no partial specializations of functions. Therefore, if
2186 the type of DECL does not match FN, there is no
2187 match.
2188
2189 Note that it should never be the case that we have both
2190 candidates added here, and for regular member functions
2191 below. */
2192 if (tsk == tsk_template)
2193 {
2194 if (compparms (fn_arg_types, decl_arg_types))
2195 candidates = tree_cons (NULL_TREE, fn, candidates);
2196 continue;
2197 }
2198
2199 /* See whether this function might be a specialization of this
2200 template. Suppress access control because we might be trying
2201 to make this specialization a friend, and we have already done
2202 access control for the declaration of the specialization. */
2203 push_deferring_access_checks (dk_no_check);
2204 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2205 pop_deferring_access_checks ();
2206
2207 if (!targs)
2208 /* We cannot deduce template arguments that when used to
2209 specialize TMPL will produce DECL. */
2210 continue;
2211
2212 /* Remove, from the set of candidates, all those functions
2213 whose constraints are not satisfied. */
2214 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2215 continue;
2216
2217 // Then, try to form the new function type.
2218 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2219 if (insttype == error_mark_node)
2220 continue;
2221 fn_arg_types
2222 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2223 if (!compparms (fn_arg_types, decl_arg_types))
2224 continue;
2225
2226 /* Save this template, and the arguments deduced. */
2227 templates = tree_cons (targs, fn, templates);
2228 }
2229 else if (need_member_template)
2230 /* FN is an ordinary member function, and we need a
2231 specialization of a member template. */
2232 ;
2233 else if (TREE_CODE (fn) != FUNCTION_DECL)
2234 /* We can get IDENTIFIER_NODEs here in certain erroneous
2235 cases. */
2236 ;
2237 else if (!DECL_FUNCTION_MEMBER_P (fn))
2238 /* This is just an ordinary non-member function. Nothing can
2239 be a specialization of that. */
2240 ;
2241 else if (DECL_ARTIFICIAL (fn))
2242 /* Cannot specialize functions that are created implicitly. */
2243 ;
2244 else
2245 {
2246 tree decl_arg_types;
2247
2248 /* This is an ordinary member function. However, since
2249 we're here, we can assume its enclosing class is a
2250 template class. For example,
2251
2252 template <typename T> struct S { void f(); };
2253 template <> void S<int>::f() {}
2254
2255 Here, S<int>::f is a non-template, but S<int> is a
2256 template class. If FN has the same type as DECL, we
2257 might be in business. */
2258
2259 if (!DECL_TEMPLATE_INFO (fn))
2260 /* Its enclosing class is an explicit specialization
2261 of a template class. This is not a candidate. */
2262 continue;
2263
2264 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2265 TREE_TYPE (TREE_TYPE (fn))))
2266 /* The return types differ. */
2267 continue;
2268
2269 /* Adjust the type of DECL in case FN is a static member. */
2270 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2271 if (DECL_STATIC_FUNCTION_P (fn)
2272 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2273 decl_arg_types = TREE_CHAIN (decl_arg_types);
2274
2275 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2276 decl_arg_types))
2277 continue;
2278
2279 // If the deduced arguments do not satisfy the constraints,
2280 // this is not a candidate.
2281 if (flag_concepts && !constraints_satisfied_p (fn))
2282 continue;
2283
2284 // Add the candidate.
2285 candidates = tree_cons (NULL_TREE, fn, candidates);
2286 }
2287 }
2288
2289 if (templates && TREE_CHAIN (templates))
2290 {
2291 /* We have:
2292
2293 [temp.expl.spec]
2294
2295 It is possible for a specialization with a given function
2296 signature to be instantiated from more than one function
2297 template. In such cases, explicit specification of the
2298 template arguments must be used to uniquely identify the
2299 function template specialization being specialized.
2300
2301 Note that here, there's no suggestion that we're supposed to
2302 determine which of the candidate templates is most
2303 specialized. However, we, also have:
2304
2305 [temp.func.order]
2306
2307 Partial ordering of overloaded function template
2308 declarations is used in the following contexts to select
2309 the function template to which a function template
2310 specialization refers:
2311
2312 -- when an explicit specialization refers to a function
2313 template.
2314
2315 So, we do use the partial ordering rules, at least for now.
2316 This extension can only serve to make invalid programs valid,
2317 so it's safe. And, there is strong anecdotal evidence that
2318 the committee intended the partial ordering rules to apply;
2319 the EDG front end has that behavior, and John Spicer claims
2320 that the committee simply forgot to delete the wording in
2321 [temp.expl.spec]. */
2322 tree tmpl = most_specialized_instantiation (templates);
2323 if (tmpl != error_mark_node)
2324 {
2325 templates = tmpl;
2326 TREE_CHAIN (templates) = NULL_TREE;
2327 }
2328 }
2329
2330 // Concepts allows multiple declarations of member functions
2331 // with the same signature. Like above, we need to rely on
2332 // on the partial ordering of those candidates to determine which
2333 // is the best.
2334 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2335 {
2336 if (tree cand = most_constrained_function (candidates))
2337 {
2338 candidates = cand;
2339 TREE_CHAIN (cand) = NULL_TREE;
2340 }
2341 }
2342
2343 if (templates == NULL_TREE && candidates == NULL_TREE)
2344 {
2345 error ("template-id %qD for %q+D does not match any template "
2346 "declaration", template_id, decl);
2347 if (header_count && header_count != template_count + 1)
2348 inform (input_location, "saw %d %<template<>%>, need %d for "
2349 "specializing a member function template",
2350 header_count, template_count + 1);
2351 else
2352 print_candidates (orig_fns);
2353 return error_mark_node;
2354 }
2355 else if ((templates && TREE_CHAIN (templates))
2356 || (candidates && TREE_CHAIN (candidates))
2357 || (templates && candidates))
2358 {
2359 error ("ambiguous template specialization %qD for %q+D",
2360 template_id, decl);
2361 candidates = chainon (candidates, templates);
2362 print_candidates (candidates);
2363 return error_mark_node;
2364 }
2365
2366 /* We have one, and exactly one, match. */
2367 if (candidates)
2368 {
2369 tree fn = TREE_VALUE (candidates);
2370 *targs_out = copy_node (DECL_TI_ARGS (fn));
2371
2372 // Propagate the candidate's constraints to the declaration.
2373 set_constraints (decl, get_constraints (fn));
2374
2375 /* DECL is a re-declaration or partial instantiation of a template
2376 function. */
2377 if (TREE_CODE (fn) == TEMPLATE_DECL)
2378 return fn;
2379 /* It was a specialization of an ordinary member function in a
2380 template class. */
2381 return DECL_TI_TEMPLATE (fn);
2382 }
2383
2384 /* It was a specialization of a template. */
2385 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2386 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2387 {
2388 *targs_out = copy_node (targs);
2389 SET_TMPL_ARGS_LEVEL (*targs_out,
2390 TMPL_ARGS_DEPTH (*targs_out),
2391 TREE_PURPOSE (templates));
2392 }
2393 else
2394 *targs_out = TREE_PURPOSE (templates);
2395 return TREE_VALUE (templates);
2396 }
2397
2398 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2399 but with the default argument values filled in from those in the
2400 TMPL_TYPES. */
2401
2402 static tree
2403 copy_default_args_to_explicit_spec_1 (tree spec_types,
2404 tree tmpl_types)
2405 {
2406 tree new_spec_types;
2407
2408 if (!spec_types)
2409 return NULL_TREE;
2410
2411 if (spec_types == void_list_node)
2412 return void_list_node;
2413
2414 /* Substitute into the rest of the list. */
2415 new_spec_types =
2416 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2417 TREE_CHAIN (tmpl_types));
2418
2419 /* Add the default argument for this parameter. */
2420 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2421 TREE_VALUE (spec_types),
2422 new_spec_types);
2423 }
2424
2425 /* DECL is an explicit specialization. Replicate default arguments
2426 from the template it specializes. (That way, code like:
2427
2428 template <class T> void f(T = 3);
2429 template <> void f(double);
2430 void g () { f (); }
2431
2432 works, as required.) An alternative approach would be to look up
2433 the correct default arguments at the call-site, but this approach
2434 is consistent with how implicit instantiations are handled. */
2435
2436 static void
2437 copy_default_args_to_explicit_spec (tree decl)
2438 {
2439 tree tmpl;
2440 tree spec_types;
2441 tree tmpl_types;
2442 tree new_spec_types;
2443 tree old_type;
2444 tree new_type;
2445 tree t;
2446 tree object_type = NULL_TREE;
2447 tree in_charge = NULL_TREE;
2448 tree vtt = NULL_TREE;
2449
2450 /* See if there's anything we need to do. */
2451 tmpl = DECL_TI_TEMPLATE (decl);
2452 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2453 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2454 if (TREE_PURPOSE (t))
2455 break;
2456 if (!t)
2457 return;
2458
2459 old_type = TREE_TYPE (decl);
2460 spec_types = TYPE_ARG_TYPES (old_type);
2461
2462 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2463 {
2464 /* Remove the this pointer, but remember the object's type for
2465 CV quals. */
2466 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2467 spec_types = TREE_CHAIN (spec_types);
2468 tmpl_types = TREE_CHAIN (tmpl_types);
2469
2470 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2471 {
2472 /* DECL may contain more parameters than TMPL due to the extra
2473 in-charge parameter in constructors and destructors. */
2474 in_charge = spec_types;
2475 spec_types = TREE_CHAIN (spec_types);
2476 }
2477 if (DECL_HAS_VTT_PARM_P (decl))
2478 {
2479 vtt = spec_types;
2480 spec_types = TREE_CHAIN (spec_types);
2481 }
2482 }
2483
2484 /* Compute the merged default arguments. */
2485 new_spec_types =
2486 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2487
2488 /* Compute the new FUNCTION_TYPE. */
2489 if (object_type)
2490 {
2491 if (vtt)
2492 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2493 TREE_VALUE (vtt),
2494 new_spec_types);
2495
2496 if (in_charge)
2497 /* Put the in-charge parameter back. */
2498 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2499 TREE_VALUE (in_charge),
2500 new_spec_types);
2501
2502 new_type = build_method_type_directly (object_type,
2503 TREE_TYPE (old_type),
2504 new_spec_types);
2505 }
2506 else
2507 new_type = build_function_type (TREE_TYPE (old_type),
2508 new_spec_types);
2509 new_type = cp_build_type_attribute_variant (new_type,
2510 TYPE_ATTRIBUTES (old_type));
2511 new_type = build_exception_variant (new_type,
2512 TYPE_RAISES_EXCEPTIONS (old_type));
2513
2514 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2515 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2516
2517 TREE_TYPE (decl) = new_type;
2518 }
2519
2520 /* Return the number of template headers we expect to see for a definition
2521 or specialization of CTYPE or one of its non-template members. */
2522
2523 int
2524 num_template_headers_for_class (tree ctype)
2525 {
2526 int num_templates = 0;
2527
2528 while (ctype && CLASS_TYPE_P (ctype))
2529 {
2530 /* You're supposed to have one `template <...>' for every
2531 template class, but you don't need one for a full
2532 specialization. For example:
2533
2534 template <class T> struct S{};
2535 template <> struct S<int> { void f(); };
2536 void S<int>::f () {}
2537
2538 is correct; there shouldn't be a `template <>' for the
2539 definition of `S<int>::f'. */
2540 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2541 /* If CTYPE does not have template information of any
2542 kind, then it is not a template, nor is it nested
2543 within a template. */
2544 break;
2545 if (explicit_class_specialization_p (ctype))
2546 break;
2547 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2548 ++num_templates;
2549
2550 ctype = TYPE_CONTEXT (ctype);
2551 }
2552
2553 return num_templates;
2554 }
2555
2556 /* Do a simple sanity check on the template headers that precede the
2557 variable declaration DECL. */
2558
2559 void
2560 check_template_variable (tree decl)
2561 {
2562 tree ctx = CP_DECL_CONTEXT (decl);
2563 int wanted = num_template_headers_for_class (ctx);
2564 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2565 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2566 {
2567 if (cxx_dialect < cxx14)
2568 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2569 "variable templates only available with "
2570 "-std=c++14 or -std=gnu++14");
2571
2572 // Namespace-scope variable templates should have a template header.
2573 ++wanted;
2574 }
2575 if (template_header_count > wanted)
2576 {
2577 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2578 "too many template headers for %D (should be %d)",
2579 decl, wanted);
2580 if (warned && CLASS_TYPE_P (ctx)
2581 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2582 inform (DECL_SOURCE_LOCATION (decl),
2583 "members of an explicitly specialized class are defined "
2584 "without a template header");
2585 }
2586 }
2587
2588 /* Check to see if the function just declared, as indicated in
2589 DECLARATOR, and in DECL, is a specialization of a function
2590 template. We may also discover that the declaration is an explicit
2591 instantiation at this point.
2592
2593 Returns DECL, or an equivalent declaration that should be used
2594 instead if all goes well. Issues an error message if something is
2595 amiss. Returns error_mark_node if the error is not easily
2596 recoverable.
2597
2598 FLAGS is a bitmask consisting of the following flags:
2599
2600 2: The function has a definition.
2601 4: The function is a friend.
2602
2603 The TEMPLATE_COUNT is the number of references to qualifying
2604 template classes that appeared in the name of the function. For
2605 example, in
2606
2607 template <class T> struct S { void f(); };
2608 void S<int>::f();
2609
2610 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2611 classes are not counted in the TEMPLATE_COUNT, so that in
2612
2613 template <class T> struct S {};
2614 template <> struct S<int> { void f(); }
2615 template <> void S<int>::f();
2616
2617 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2618 invalid; there should be no template <>.)
2619
2620 If the function is a specialization, it is marked as such via
2621 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2622 is set up correctly, and it is added to the list of specializations
2623 for that template. */
2624
2625 tree
2626 check_explicit_specialization (tree declarator,
2627 tree decl,
2628 int template_count,
2629 int flags)
2630 {
2631 int have_def = flags & 2;
2632 int is_friend = flags & 4;
2633 bool is_concept = flags & 8;
2634 int specialization = 0;
2635 int explicit_instantiation = 0;
2636 int member_specialization = 0;
2637 tree ctype = DECL_CLASS_CONTEXT (decl);
2638 tree dname = DECL_NAME (decl);
2639 tmpl_spec_kind tsk;
2640
2641 if (is_friend)
2642 {
2643 if (!processing_specialization)
2644 tsk = tsk_none;
2645 else
2646 tsk = tsk_excessive_parms;
2647 }
2648 else
2649 tsk = current_tmpl_spec_kind (template_count);
2650
2651 switch (tsk)
2652 {
2653 case tsk_none:
2654 if (processing_specialization && !VAR_P (decl))
2655 {
2656 specialization = 1;
2657 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2658 }
2659 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2660 {
2661 if (is_friend)
2662 /* This could be something like:
2663
2664 template <class T> void f(T);
2665 class S { friend void f<>(int); } */
2666 specialization = 1;
2667 else
2668 {
2669 /* This case handles bogus declarations like template <>
2670 template <class T> void f<int>(); */
2671
2672 error ("template-id %qD in declaration of primary template",
2673 declarator);
2674 return decl;
2675 }
2676 }
2677 break;
2678
2679 case tsk_invalid_member_spec:
2680 /* The error has already been reported in
2681 check_specialization_scope. */
2682 return error_mark_node;
2683
2684 case tsk_invalid_expl_inst:
2685 error ("template parameter list used in explicit instantiation");
2686
2687 /* Fall through. */
2688
2689 case tsk_expl_inst:
2690 if (have_def)
2691 error ("definition provided for explicit instantiation");
2692
2693 explicit_instantiation = 1;
2694 break;
2695
2696 case tsk_excessive_parms:
2697 case tsk_insufficient_parms:
2698 if (tsk == tsk_excessive_parms)
2699 error ("too many template parameter lists in declaration of %qD",
2700 decl);
2701 else if (template_header_count)
2702 error("too few template parameter lists in declaration of %qD", decl);
2703 else
2704 error("explicit specialization of %qD must be introduced by "
2705 "%<template <>%>", decl);
2706
2707 /* Fall through. */
2708 case tsk_expl_spec:
2709 if (is_concept)
2710 error ("explicit specialization declared %<concept%>");
2711
2712 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2713 /* In cases like template<> constexpr bool v = true;
2714 We'll give an error in check_template_variable. */
2715 break;
2716
2717 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2718 if (ctype)
2719 member_specialization = 1;
2720 else
2721 specialization = 1;
2722 break;
2723
2724 case tsk_template:
2725 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2726 {
2727 /* This case handles bogus declarations like template <>
2728 template <class T> void f<int>(); */
2729
2730 if (!uses_template_parms (declarator))
2731 error ("template-id %qD in declaration of primary template",
2732 declarator);
2733 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2734 {
2735 /* Partial specialization of variable template. */
2736 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2737 specialization = 1;
2738 goto ok;
2739 }
2740 else if (cxx_dialect < cxx14)
2741 error ("non-type partial specialization %qD "
2742 "is not allowed", declarator);
2743 else
2744 error ("non-class, non-variable partial specialization %qD "
2745 "is not allowed", declarator);
2746 return decl;
2747 ok:;
2748 }
2749
2750 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2751 /* This is a specialization of a member template, without
2752 specialization the containing class. Something like:
2753
2754 template <class T> struct S {
2755 template <class U> void f (U);
2756 };
2757 template <> template <class U> void S<int>::f(U) {}
2758
2759 That's a specialization -- but of the entire template. */
2760 specialization = 1;
2761 break;
2762
2763 default:
2764 gcc_unreachable ();
2765 }
2766
2767 if ((specialization || member_specialization)
2768 /* This doesn't apply to variable templates. */
2769 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2770 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2771 {
2772 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2773 for (; t; t = TREE_CHAIN (t))
2774 if (TREE_PURPOSE (t))
2775 {
2776 permerror (input_location,
2777 "default argument specified in explicit specialization");
2778 break;
2779 }
2780 }
2781
2782 if (specialization || member_specialization || explicit_instantiation)
2783 {
2784 tree tmpl = NULL_TREE;
2785 tree targs = NULL_TREE;
2786 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2787
2788 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2789 if (!was_template_id)
2790 {
2791 tree fns;
2792
2793 gcc_assert (identifier_p (declarator));
2794 if (ctype)
2795 fns = dname;
2796 else
2797 {
2798 /* If there is no class context, the explicit instantiation
2799 must be at namespace scope. */
2800 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2801
2802 /* Find the namespace binding, using the declaration
2803 context. */
2804 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2805 false, true);
2806 if (fns == error_mark_node || !is_overloaded_fn (fns))
2807 {
2808 error ("%qD is not a template function", dname);
2809 fns = error_mark_node;
2810 }
2811 }
2812
2813 declarator = lookup_template_function (fns, NULL_TREE);
2814 }
2815
2816 if (declarator == error_mark_node)
2817 return error_mark_node;
2818
2819 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2820 {
2821 if (!explicit_instantiation)
2822 /* A specialization in class scope. This is invalid,
2823 but the error will already have been flagged by
2824 check_specialization_scope. */
2825 return error_mark_node;
2826 else
2827 {
2828 /* It's not valid to write an explicit instantiation in
2829 class scope, e.g.:
2830
2831 class C { template void f(); }
2832
2833 This case is caught by the parser. However, on
2834 something like:
2835
2836 template class C { void f(); };
2837
2838 (which is invalid) we can get here. The error will be
2839 issued later. */
2840 ;
2841 }
2842
2843 return decl;
2844 }
2845 else if (ctype != NULL_TREE
2846 && (identifier_p (TREE_OPERAND (declarator, 0))))
2847 {
2848 // We'll match variable templates in start_decl.
2849 if (VAR_P (decl))
2850 return decl;
2851
2852 /* Find the list of functions in ctype that have the same
2853 name as the declared function. */
2854 tree name = TREE_OPERAND (declarator, 0);
2855 tree fns = NULL_TREE;
2856 int idx;
2857
2858 if (constructor_name_p (name, ctype))
2859 {
2860 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2861
2862 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2863 : !CLASSTYPE_DESTRUCTORS (ctype))
2864 {
2865 /* From [temp.expl.spec]:
2866
2867 If such an explicit specialization for the member
2868 of a class template names an implicitly-declared
2869 special member function (clause _special_), the
2870 program is ill-formed.
2871
2872 Similar language is found in [temp.explicit]. */
2873 error ("specialization of implicitly-declared special member function");
2874 return error_mark_node;
2875 }
2876
2877 name = is_constructor ? ctor_identifier : dtor_identifier;
2878 }
2879
2880 if (!DECL_CONV_FN_P (decl))
2881 {
2882 idx = lookup_fnfields_1 (ctype, name);
2883 if (idx >= 0)
2884 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2885 }
2886 else
2887 {
2888 vec<tree, va_gc> *methods;
2889 tree ovl;
2890
2891 /* For a type-conversion operator, we cannot do a
2892 name-based lookup. We might be looking for `operator
2893 int' which will be a specialization of `operator T'.
2894 So, we find *all* the conversion operators, and then
2895 select from them. */
2896 fns = NULL_TREE;
2897
2898 methods = CLASSTYPE_METHOD_VEC (ctype);
2899 if (methods)
2900 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2901 methods->iterate (idx, &ovl);
2902 ++idx)
2903 {
2904 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2905 /* There are no more conversion functions. */
2906 break;
2907
2908 /* Glue all these conversion functions together
2909 with those we already have. */
2910 for (; ovl; ovl = OVL_NEXT (ovl))
2911 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2912 }
2913 }
2914
2915 if (fns == NULL_TREE)
2916 {
2917 error ("no member function %qD declared in %qT", name, ctype);
2918 return error_mark_node;
2919 }
2920 else
2921 TREE_OPERAND (declarator, 0) = fns;
2922 }
2923
2924 /* Figure out what exactly is being specialized at this point.
2925 Note that for an explicit instantiation, even one for a
2926 member function, we cannot tell apriori whether the
2927 instantiation is for a member template, or just a member
2928 function of a template class. Even if a member template is
2929 being instantiated, the member template arguments may be
2930 elided if they can be deduced from the rest of the
2931 declaration. */
2932 tmpl = determine_specialization (declarator, decl,
2933 &targs,
2934 member_specialization,
2935 template_count,
2936 tsk);
2937
2938 if (!tmpl || tmpl == error_mark_node)
2939 /* We couldn't figure out what this declaration was
2940 specializing. */
2941 return error_mark_node;
2942 else
2943 {
2944 if (!ctype && !was_template_id
2945 && (specialization || member_specialization
2946 || explicit_instantiation)
2947 && !is_associated_namespace (CP_DECL_CONTEXT (decl),
2948 CP_DECL_CONTEXT (tmpl)))
2949 error ("%qD is not declared in %qD",
2950 tmpl, current_namespace);
2951
2952 tree gen_tmpl = most_general_template (tmpl);
2953
2954 if (explicit_instantiation)
2955 {
2956 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2957 is done by do_decl_instantiation later. */
2958
2959 int arg_depth = TMPL_ARGS_DEPTH (targs);
2960 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2961
2962 if (arg_depth > parm_depth)
2963 {
2964 /* If TMPL is not the most general template (for
2965 example, if TMPL is a friend template that is
2966 injected into namespace scope), then there will
2967 be too many levels of TARGS. Remove some of them
2968 here. */
2969 int i;
2970 tree new_targs;
2971
2972 new_targs = make_tree_vec (parm_depth);
2973 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2974 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2975 = TREE_VEC_ELT (targs, i);
2976 targs = new_targs;
2977 }
2978
2979 return instantiate_template (tmpl, targs, tf_error);
2980 }
2981
2982 /* If we thought that the DECL was a member function, but it
2983 turns out to be specializing a static member function,
2984 make DECL a static member function as well. */
2985 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2986 && DECL_STATIC_FUNCTION_P (tmpl)
2987 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2988 revert_static_member_fn (decl);
2989
2990 /* If this is a specialization of a member template of a
2991 template class, we want to return the TEMPLATE_DECL, not
2992 the specialization of it. */
2993 if (tsk == tsk_template && !was_template_id)
2994 {
2995 tree result = DECL_TEMPLATE_RESULT (tmpl);
2996 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2997 DECL_INITIAL (result) = NULL_TREE;
2998 if (have_def)
2999 {
3000 tree parm;
3001 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3002 DECL_SOURCE_LOCATION (result)
3003 = DECL_SOURCE_LOCATION (decl);
3004 /* We want to use the argument list specified in the
3005 definition, not in the original declaration. */
3006 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3007 for (parm = DECL_ARGUMENTS (result); parm;
3008 parm = DECL_CHAIN (parm))
3009 DECL_CONTEXT (parm) = result;
3010 }
3011 return register_specialization (tmpl, gen_tmpl, targs,
3012 is_friend, 0);
3013 }
3014
3015 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3016 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3017
3018 if (was_template_id)
3019 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3020
3021 /* Inherit default function arguments from the template
3022 DECL is specializing. */
3023 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3024 copy_default_args_to_explicit_spec (decl);
3025
3026 /* This specialization has the same protection as the
3027 template it specializes. */
3028 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3029 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3030
3031 /* 7.1.1-1 [dcl.stc]
3032
3033 A storage-class-specifier shall not be specified in an
3034 explicit specialization...
3035
3036 The parser rejects these, so unless action is taken here,
3037 explicit function specializations will always appear with
3038 global linkage.
3039
3040 The action recommended by the C++ CWG in response to C++
3041 defect report 605 is to make the storage class and linkage
3042 of the explicit specialization match the templated function:
3043
3044 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3045 */
3046 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3047 {
3048 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3049 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3050
3051 /* A concept cannot be specialized. */
3052 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3053 {
3054 error ("explicit specialization of function concept %qD",
3055 gen_tmpl);
3056 return error_mark_node;
3057 }
3058
3059 /* This specialization has the same linkage and visibility as
3060 the function template it specializes. */
3061 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3062 if (! TREE_PUBLIC (decl))
3063 {
3064 DECL_INTERFACE_KNOWN (decl) = 1;
3065 DECL_NOT_REALLY_EXTERN (decl) = 1;
3066 }
3067 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3068 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3069 {
3070 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3071 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3072 }
3073 }
3074
3075 /* If DECL is a friend declaration, declared using an
3076 unqualified name, the namespace associated with DECL may
3077 have been set incorrectly. For example, in:
3078
3079 template <typename T> void f(T);
3080 namespace N {
3081 struct S { friend void f<int>(int); }
3082 }
3083
3084 we will have set the DECL_CONTEXT for the friend
3085 declaration to N, rather than to the global namespace. */
3086 if (DECL_NAMESPACE_SCOPE_P (decl))
3087 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3088
3089 if (is_friend && !have_def)
3090 /* This is not really a declaration of a specialization.
3091 It's just the name of an instantiation. But, it's not
3092 a request for an instantiation, either. */
3093 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3094 else if (TREE_CODE (decl) == FUNCTION_DECL)
3095 /* A specialization is not necessarily COMDAT. */
3096 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3097 && DECL_DECLARED_INLINE_P (decl));
3098 else if (VAR_P (decl))
3099 DECL_COMDAT (decl) = false;
3100
3101 /* If this is a full specialization, register it so that we can find
3102 it again. Partial specializations will be registered in
3103 process_partial_specialization. */
3104 if (!processing_template_decl)
3105 decl = register_specialization (decl, gen_tmpl, targs,
3106 is_friend, 0);
3107
3108 /* A 'structor should already have clones. */
3109 gcc_assert (decl == error_mark_node
3110 || variable_template_p (tmpl)
3111 || !(DECL_CONSTRUCTOR_P (decl)
3112 || DECL_DESTRUCTOR_P (decl))
3113 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3114 }
3115 }
3116
3117 return decl;
3118 }
3119
3120 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3121 parameters. These are represented in the same format used for
3122 DECL_TEMPLATE_PARMS. */
3123
3124 int
3125 comp_template_parms (const_tree parms1, const_tree parms2)
3126 {
3127 const_tree p1;
3128 const_tree p2;
3129
3130 if (parms1 == parms2)
3131 return 1;
3132
3133 for (p1 = parms1, p2 = parms2;
3134 p1 != NULL_TREE && p2 != NULL_TREE;
3135 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3136 {
3137 tree t1 = TREE_VALUE (p1);
3138 tree t2 = TREE_VALUE (p2);
3139 int i;
3140
3141 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3142 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3143
3144 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3145 return 0;
3146
3147 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3148 {
3149 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3150 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3151
3152 /* If either of the template parameters are invalid, assume
3153 they match for the sake of error recovery. */
3154 if (error_operand_p (parm1) || error_operand_p (parm2))
3155 return 1;
3156
3157 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3158 return 0;
3159
3160 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3161 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3162 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3163 continue;
3164 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3165 return 0;
3166 }
3167 }
3168
3169 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3170 /* One set of parameters has more parameters lists than the
3171 other. */
3172 return 0;
3173
3174 return 1;
3175 }
3176
3177 /* Determine whether PARM is a parameter pack. */
3178
3179 bool
3180 template_parameter_pack_p (const_tree parm)
3181 {
3182 /* Determine if we have a non-type template parameter pack. */
3183 if (TREE_CODE (parm) == PARM_DECL)
3184 return (DECL_TEMPLATE_PARM_P (parm)
3185 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3186 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3187 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3188
3189 /* If this is a list of template parameters, we could get a
3190 TYPE_DECL or a TEMPLATE_DECL. */
3191 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3192 parm = TREE_TYPE (parm);
3193
3194 /* Otherwise it must be a type template parameter. */
3195 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3196 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3197 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3198 }
3199
3200 /* Determine if T is a function parameter pack. */
3201
3202 bool
3203 function_parameter_pack_p (const_tree t)
3204 {
3205 if (t && TREE_CODE (t) == PARM_DECL)
3206 return DECL_PACK_P (t);
3207 return false;
3208 }
3209
3210 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3211 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3212
3213 tree
3214 get_function_template_decl (const_tree primary_func_tmpl_inst)
3215 {
3216 if (! primary_func_tmpl_inst
3217 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3218 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3219 return NULL;
3220
3221 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3222 }
3223
3224 /* Return true iff the function parameter PARAM_DECL was expanded
3225 from the function parameter pack PACK. */
3226
3227 bool
3228 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3229 {
3230 if (DECL_ARTIFICIAL (param_decl)
3231 || !function_parameter_pack_p (pack))
3232 return false;
3233
3234 /* The parameter pack and its pack arguments have the same
3235 DECL_PARM_INDEX. */
3236 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3237 }
3238
3239 /* Determine whether ARGS describes a variadic template args list,
3240 i.e., one that is terminated by a template argument pack. */
3241
3242 static bool
3243 template_args_variadic_p (tree args)
3244 {
3245 int nargs;
3246 tree last_parm;
3247
3248 if (args == NULL_TREE)
3249 return false;
3250
3251 args = INNERMOST_TEMPLATE_ARGS (args);
3252 nargs = TREE_VEC_LENGTH (args);
3253
3254 if (nargs == 0)
3255 return false;
3256
3257 last_parm = TREE_VEC_ELT (args, nargs - 1);
3258
3259 return ARGUMENT_PACK_P (last_parm);
3260 }
3261
3262 /* Generate a new name for the parameter pack name NAME (an
3263 IDENTIFIER_NODE) that incorporates its */
3264
3265 static tree
3266 make_ith_pack_parameter_name (tree name, int i)
3267 {
3268 /* Munge the name to include the parameter index. */
3269 #define NUMBUF_LEN 128
3270 char numbuf[NUMBUF_LEN];
3271 char* newname;
3272 int newname_len;
3273
3274 if (name == NULL_TREE)
3275 return name;
3276 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3277 newname_len = IDENTIFIER_LENGTH (name)
3278 + strlen (numbuf) + 2;
3279 newname = (char*)alloca (newname_len);
3280 snprintf (newname, newname_len,
3281 "%s#%i", IDENTIFIER_POINTER (name), i);
3282 return get_identifier (newname);
3283 }
3284
3285 /* Return true if T is a primary function, class or alias template
3286 instantiation. */
3287
3288 bool
3289 primary_template_instantiation_p (const_tree t)
3290 {
3291 if (!t)
3292 return false;
3293
3294 if (TREE_CODE (t) == FUNCTION_DECL)
3295 return DECL_LANG_SPECIFIC (t)
3296 && DECL_TEMPLATE_INSTANTIATION (t)
3297 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3298 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3299 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3300 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3301 else if (alias_template_specialization_p (t))
3302 return true;
3303 return false;
3304 }
3305
3306 /* Return true if PARM is a template template parameter. */
3307
3308 bool
3309 template_template_parameter_p (const_tree parm)
3310 {
3311 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3312 }
3313
3314 /* Return true iff PARM is a DECL representing a type template
3315 parameter. */
3316
3317 bool
3318 template_type_parameter_p (const_tree parm)
3319 {
3320 return (parm
3321 && (TREE_CODE (parm) == TYPE_DECL
3322 || TREE_CODE (parm) == TEMPLATE_DECL)
3323 && DECL_TEMPLATE_PARM_P (parm));
3324 }
3325
3326 /* Return the template parameters of T if T is a
3327 primary template instantiation, NULL otherwise. */
3328
3329 tree
3330 get_primary_template_innermost_parameters (const_tree t)
3331 {
3332 tree parms = NULL, template_info = NULL;
3333
3334 if ((template_info = get_template_info (t))
3335 && primary_template_instantiation_p (t))
3336 parms = INNERMOST_TEMPLATE_PARMS
3337 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3338
3339 return parms;
3340 }
3341
3342 /* Return the template parameters of the LEVELth level from the full list
3343 of template parameters PARMS. */
3344
3345 tree
3346 get_template_parms_at_level (tree parms, int level)
3347 {
3348 tree p;
3349 if (!parms
3350 || TREE_CODE (parms) != TREE_LIST
3351 || level > TMPL_PARMS_DEPTH (parms))
3352 return NULL_TREE;
3353
3354 for (p = parms; p; p = TREE_CHAIN (p))
3355 if (TMPL_PARMS_DEPTH (p) == level)
3356 return p;
3357
3358 return NULL_TREE;
3359 }
3360
3361 /* Returns the template arguments of T if T is a template instantiation,
3362 NULL otherwise. */
3363
3364 tree
3365 get_template_innermost_arguments (const_tree t)
3366 {
3367 tree args = NULL, template_info = NULL;
3368
3369 if ((template_info = get_template_info (t))
3370 && TI_ARGS (template_info))
3371 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3372
3373 return args;
3374 }
3375
3376 /* Return the argument pack elements of T if T is a template argument pack,
3377 NULL otherwise. */
3378
3379 tree
3380 get_template_argument_pack_elems (const_tree t)
3381 {
3382 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3383 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3384 return NULL;
3385
3386 return ARGUMENT_PACK_ARGS (t);
3387 }
3388
3389 /* Structure used to track the progress of find_parameter_packs_r. */
3390 struct find_parameter_pack_data
3391 {
3392 /* TREE_LIST that will contain all of the parameter packs found by
3393 the traversal. */
3394 tree* parameter_packs;
3395
3396 /* Set of AST nodes that have been visited by the traversal. */
3397 hash_set<tree> *visited;
3398
3399 /* True iff we're making a type pack expansion. */
3400 bool type_pack_expansion_p;
3401 };
3402
3403 /* Identifies all of the argument packs that occur in a template
3404 argument and appends them to the TREE_LIST inside DATA, which is a
3405 find_parameter_pack_data structure. This is a subroutine of
3406 make_pack_expansion and uses_parameter_packs. */
3407 static tree
3408 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3409 {
3410 tree t = *tp;
3411 struct find_parameter_pack_data* ppd =
3412 (struct find_parameter_pack_data*)data;
3413 bool parameter_pack_p = false;
3414
3415 /* Handle type aliases/typedefs. */
3416 if (TYPE_ALIAS_P (t))
3417 {
3418 if (TYPE_TEMPLATE_INFO (t))
3419 cp_walk_tree (&TYPE_TI_ARGS (t),
3420 &find_parameter_packs_r,
3421 ppd, ppd->visited);
3422 *walk_subtrees = 0;
3423 return NULL_TREE;
3424 }
3425
3426 /* Identify whether this is a parameter pack or not. */
3427 switch (TREE_CODE (t))
3428 {
3429 case TEMPLATE_PARM_INDEX:
3430 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3431 parameter_pack_p = true;
3432 break;
3433
3434 case TEMPLATE_TYPE_PARM:
3435 t = TYPE_MAIN_VARIANT (t);
3436 case TEMPLATE_TEMPLATE_PARM:
3437 /* If the placeholder appears in the decl-specifier-seq of a function
3438 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3439 is a pack expansion, the invented template parameter is a template
3440 parameter pack. */
3441 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3442 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3443 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3444 parameter_pack_p = true;
3445 break;
3446
3447 case FIELD_DECL:
3448 case PARM_DECL:
3449 if (DECL_PACK_P (t))
3450 {
3451 /* We don't want to walk into the type of a PARM_DECL,
3452 because we don't want to see the type parameter pack. */
3453 *walk_subtrees = 0;
3454 parameter_pack_p = true;
3455 }
3456 break;
3457
3458 /* Look through a lambda capture proxy to the field pack. */
3459 case VAR_DECL:
3460 if (DECL_HAS_VALUE_EXPR_P (t))
3461 {
3462 tree v = DECL_VALUE_EXPR (t);
3463 cp_walk_tree (&v,
3464 &find_parameter_packs_r,
3465 ppd, ppd->visited);
3466 *walk_subtrees = 0;
3467 }
3468 else if (variable_template_specialization_p (t))
3469 {
3470 cp_walk_tree (&DECL_TI_ARGS (t),
3471 find_parameter_packs_r,
3472 ppd, ppd->visited);
3473 *walk_subtrees = 0;
3474 }
3475 break;
3476
3477 case BASES:
3478 parameter_pack_p = true;
3479 break;
3480 default:
3481 /* Not a parameter pack. */
3482 break;
3483 }
3484
3485 if (parameter_pack_p)
3486 {
3487 /* Add this parameter pack to the list. */
3488 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3489 }
3490
3491 if (TYPE_P (t))
3492 cp_walk_tree (&TYPE_CONTEXT (t),
3493 &find_parameter_packs_r, ppd, ppd->visited);
3494
3495 /* This switch statement will return immediately if we don't find a
3496 parameter pack. */
3497 switch (TREE_CODE (t))
3498 {
3499 case TEMPLATE_PARM_INDEX:
3500 return NULL_TREE;
3501
3502 case BOUND_TEMPLATE_TEMPLATE_PARM:
3503 /* Check the template itself. */
3504 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3505 &find_parameter_packs_r, ppd, ppd->visited);
3506 /* Check the template arguments. */
3507 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3508 ppd->visited);
3509 *walk_subtrees = 0;
3510 return NULL_TREE;
3511
3512 case TEMPLATE_TYPE_PARM:
3513 case TEMPLATE_TEMPLATE_PARM:
3514 return NULL_TREE;
3515
3516 case PARM_DECL:
3517 return NULL_TREE;
3518
3519 case RECORD_TYPE:
3520 if (TYPE_PTRMEMFUNC_P (t))
3521 return NULL_TREE;
3522 /* Fall through. */
3523
3524 case UNION_TYPE:
3525 case ENUMERAL_TYPE:
3526 if (TYPE_TEMPLATE_INFO (t))
3527 cp_walk_tree (&TYPE_TI_ARGS (t),
3528 &find_parameter_packs_r, ppd, ppd->visited);
3529
3530 *walk_subtrees = 0;
3531 return NULL_TREE;
3532
3533 case CONSTRUCTOR:
3534 case TEMPLATE_DECL:
3535 cp_walk_tree (&TREE_TYPE (t),
3536 &find_parameter_packs_r, ppd, ppd->visited);
3537 return NULL_TREE;
3538
3539 case TYPENAME_TYPE:
3540 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3541 ppd, ppd->visited);
3542 *walk_subtrees = 0;
3543 return NULL_TREE;
3544
3545 case TYPE_PACK_EXPANSION:
3546 case EXPR_PACK_EXPANSION:
3547 *walk_subtrees = 0;
3548 return NULL_TREE;
3549
3550 case INTEGER_TYPE:
3551 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3552 ppd, ppd->visited);
3553 *walk_subtrees = 0;
3554 return NULL_TREE;
3555
3556 case IDENTIFIER_NODE:
3557 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3558 ppd->visited);
3559 *walk_subtrees = 0;
3560 return NULL_TREE;
3561
3562 case DECLTYPE_TYPE:
3563 {
3564 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3565 type_pack_expansion_p to false so that any placeholders
3566 within the expression don't get marked as parameter packs. */
3567 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3568 ppd->type_pack_expansion_p = false;
3569 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3570 ppd, ppd->visited);
3571 ppd->type_pack_expansion_p = type_pack_expansion_p;
3572 *walk_subtrees = 0;
3573 return NULL_TREE;
3574 }
3575
3576 default:
3577 return NULL_TREE;
3578 }
3579
3580 return NULL_TREE;
3581 }
3582
3583 /* Determines if the expression or type T uses any parameter packs. */
3584 bool
3585 uses_parameter_packs (tree t)
3586 {
3587 tree parameter_packs = NULL_TREE;
3588 struct find_parameter_pack_data ppd;
3589 ppd.parameter_packs = &parameter_packs;
3590 ppd.visited = new hash_set<tree>;
3591 ppd.type_pack_expansion_p = false;
3592 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3593 delete ppd.visited;
3594 return parameter_packs != NULL_TREE;
3595 }
3596
3597 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3598 representation a base-class initializer into a parameter pack
3599 expansion. If all goes well, the resulting node will be an
3600 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3601 respectively. */
3602 tree
3603 make_pack_expansion (tree arg)
3604 {
3605 tree result;
3606 tree parameter_packs = NULL_TREE;
3607 bool for_types = false;
3608 struct find_parameter_pack_data ppd;
3609
3610 if (!arg || arg == error_mark_node)
3611 return arg;
3612
3613 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3614 {
3615 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3616 class initializer. In this case, the TREE_PURPOSE will be a
3617 _TYPE node (representing the base class expansion we're
3618 initializing) and the TREE_VALUE will be a TREE_LIST
3619 containing the initialization arguments.
3620
3621 The resulting expansion looks somewhat different from most
3622 expansions. Rather than returning just one _EXPANSION, we
3623 return a TREE_LIST whose TREE_PURPOSE is a
3624 TYPE_PACK_EXPANSION containing the bases that will be
3625 initialized. The TREE_VALUE will be identical to the
3626 original TREE_VALUE, which is a list of arguments that will
3627 be passed to each base. We do not introduce any new pack
3628 expansion nodes into the TREE_VALUE (although it is possible
3629 that some already exist), because the TREE_PURPOSE and
3630 TREE_VALUE all need to be expanded together with the same
3631 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3632 resulting TREE_PURPOSE will mention the parameter packs in
3633 both the bases and the arguments to the bases. */
3634 tree purpose;
3635 tree value;
3636 tree parameter_packs = NULL_TREE;
3637
3638 /* Determine which parameter packs will be used by the base
3639 class expansion. */
3640 ppd.visited = new hash_set<tree>;
3641 ppd.parameter_packs = &parameter_packs;
3642 ppd.type_pack_expansion_p = true;
3643 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3644 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3645 &ppd, ppd.visited);
3646
3647 if (parameter_packs == NULL_TREE)
3648 {
3649 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3650 delete ppd.visited;
3651 return error_mark_node;
3652 }
3653
3654 if (TREE_VALUE (arg) != void_type_node)
3655 {
3656 /* Collect the sets of parameter packs used in each of the
3657 initialization arguments. */
3658 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3659 {
3660 /* Determine which parameter packs will be expanded in this
3661 argument. */
3662 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3663 &ppd, ppd.visited);
3664 }
3665 }
3666
3667 delete ppd.visited;
3668
3669 /* Create the pack expansion type for the base type. */
3670 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3671 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3672 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3673
3674 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3675 they will rarely be compared to anything. */
3676 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3677
3678 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3679 }
3680
3681 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3682 for_types = true;
3683
3684 /* Build the PACK_EXPANSION_* node. */
3685 result = for_types
3686 ? cxx_make_type (TYPE_PACK_EXPANSION)
3687 : make_node (EXPR_PACK_EXPANSION);
3688 SET_PACK_EXPANSION_PATTERN (result, arg);
3689 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3690 {
3691 /* Propagate type and const-expression information. */
3692 TREE_TYPE (result) = TREE_TYPE (arg);
3693 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3694 }
3695 else
3696 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3697 they will rarely be compared to anything. */
3698 SET_TYPE_STRUCTURAL_EQUALITY (result);
3699
3700 /* Determine which parameter packs will be expanded. */
3701 ppd.parameter_packs = &parameter_packs;
3702 ppd.visited = new hash_set<tree>;
3703 ppd.type_pack_expansion_p = TYPE_P (arg);
3704 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3705 delete ppd.visited;
3706
3707 /* Make sure we found some parameter packs. */
3708 if (parameter_packs == NULL_TREE)
3709 {
3710 if (TYPE_P (arg))
3711 error ("expansion pattern %<%T%> contains no argument packs", arg);
3712 else
3713 error ("expansion pattern %<%E%> contains no argument packs", arg);
3714 return error_mark_node;
3715 }
3716 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3717
3718 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3719
3720 return result;
3721 }
3722
3723 /* Checks T for any "bare" parameter packs, which have not yet been
3724 expanded, and issues an error if any are found. This operation can
3725 only be done on full expressions or types (e.g., an expression
3726 statement, "if" condition, etc.), because we could have expressions like:
3727
3728 foo(f(g(h(args)))...)
3729
3730 where "args" is a parameter pack. check_for_bare_parameter_packs
3731 should not be called for the subexpressions args, h(args),
3732 g(h(args)), or f(g(h(args))), because we would produce erroneous
3733 error messages.
3734
3735 Returns TRUE and emits an error if there were bare parameter packs,
3736 returns FALSE otherwise. */
3737 bool
3738 check_for_bare_parameter_packs (tree t)
3739 {
3740 tree parameter_packs = NULL_TREE;
3741 struct find_parameter_pack_data ppd;
3742
3743 if (!processing_template_decl || !t || t == error_mark_node)
3744 return false;
3745
3746 if (TREE_CODE (t) == TYPE_DECL)
3747 t = TREE_TYPE (t);
3748
3749 ppd.parameter_packs = &parameter_packs;
3750 ppd.visited = new hash_set<tree>;
3751 ppd.type_pack_expansion_p = false;
3752 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3753 delete ppd.visited;
3754
3755 if (parameter_packs)
3756 {
3757 error ("parameter packs not expanded with %<...%>:");
3758 while (parameter_packs)
3759 {
3760 tree pack = TREE_VALUE (parameter_packs);
3761 tree name = NULL_TREE;
3762
3763 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3764 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3765 name = TYPE_NAME (pack);
3766 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3767 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3768 else
3769 name = DECL_NAME (pack);
3770
3771 if (name)
3772 inform (input_location, " %qD", name);
3773 else
3774 inform (input_location, " <anonymous>");
3775
3776 parameter_packs = TREE_CHAIN (parameter_packs);
3777 }
3778
3779 return true;
3780 }
3781
3782 return false;
3783 }
3784
3785 /* Expand any parameter packs that occur in the template arguments in
3786 ARGS. */
3787 tree
3788 expand_template_argument_pack (tree args)
3789 {
3790 tree result_args = NULL_TREE;
3791 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3792 int num_result_args = -1;
3793 int non_default_args_count = -1;
3794
3795 /* First, determine if we need to expand anything, and the number of
3796 slots we'll need. */
3797 for (in_arg = 0; in_arg < nargs; ++in_arg)
3798 {
3799 tree arg = TREE_VEC_ELT (args, in_arg);
3800 if (arg == NULL_TREE)
3801 return args;
3802 if (ARGUMENT_PACK_P (arg))
3803 {
3804 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3805 if (num_result_args < 0)
3806 num_result_args = in_arg + num_packed;
3807 else
3808 num_result_args += num_packed;
3809 }
3810 else
3811 {
3812 if (num_result_args >= 0)
3813 num_result_args++;
3814 }
3815 }
3816
3817 /* If no expansion is necessary, we're done. */
3818 if (num_result_args < 0)
3819 return args;
3820
3821 /* Expand arguments. */
3822 result_args = make_tree_vec (num_result_args);
3823 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3824 non_default_args_count =
3825 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3826 for (in_arg = 0; in_arg < nargs; ++in_arg)
3827 {
3828 tree arg = TREE_VEC_ELT (args, in_arg);
3829 if (ARGUMENT_PACK_P (arg))
3830 {
3831 tree packed = ARGUMENT_PACK_ARGS (arg);
3832 int i, num_packed = TREE_VEC_LENGTH (packed);
3833 for (i = 0; i < num_packed; ++i, ++out_arg)
3834 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3835 if (non_default_args_count > 0)
3836 non_default_args_count += num_packed - 1;
3837 }
3838 else
3839 {
3840 TREE_VEC_ELT (result_args, out_arg) = arg;
3841 ++out_arg;
3842 }
3843 }
3844 if (non_default_args_count >= 0)
3845 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3846 return result_args;
3847 }
3848
3849 /* Checks if DECL shadows a template parameter.
3850
3851 [temp.local]: A template-parameter shall not be redeclared within its
3852 scope (including nested scopes).
3853
3854 Emits an error and returns TRUE if the DECL shadows a parameter,
3855 returns FALSE otherwise. */
3856
3857 bool
3858 check_template_shadow (tree decl)
3859 {
3860 tree olddecl;
3861
3862 /* If we're not in a template, we can't possibly shadow a template
3863 parameter. */
3864 if (!current_template_parms)
3865 return true;
3866
3867 /* Figure out what we're shadowing. */
3868 if (TREE_CODE (decl) == OVERLOAD)
3869 decl = OVL_CURRENT (decl);
3870 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3871
3872 /* If there's no previous binding for this name, we're not shadowing
3873 anything, let alone a template parameter. */
3874 if (!olddecl)
3875 return true;
3876
3877 /* If we're not shadowing a template parameter, we're done. Note
3878 that OLDDECL might be an OVERLOAD (or perhaps even an
3879 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3880 node. */
3881 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3882 return true;
3883
3884 /* We check for decl != olddecl to avoid bogus errors for using a
3885 name inside a class. We check TPFI to avoid duplicate errors for
3886 inline member templates. */
3887 if (decl == olddecl
3888 || (DECL_TEMPLATE_PARM_P (decl)
3889 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3890 return true;
3891
3892 /* Don't complain about the injected class name, as we've already
3893 complained about the class itself. */
3894 if (DECL_SELF_REFERENCE_P (decl))
3895 return false;
3896
3897 if (DECL_TEMPLATE_PARM_P (decl))
3898 error ("declaration of template parameter %q+D shadows "
3899 "template parameter", decl);
3900 else
3901 error ("declaration of %q+#D shadows template parameter", decl);
3902 inform (DECL_SOURCE_LOCATION (olddecl),
3903 "template parameter %qD declared here", olddecl);
3904 return false;
3905 }
3906
3907 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3908 ORIG_LEVEL, DECL, and TYPE. */
3909
3910 static tree
3911 build_template_parm_index (int index,
3912 int level,
3913 int orig_level,
3914 tree decl,
3915 tree type)
3916 {
3917 tree t = make_node (TEMPLATE_PARM_INDEX);
3918 TEMPLATE_PARM_IDX (t) = index;
3919 TEMPLATE_PARM_LEVEL (t) = level;
3920 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3921 TEMPLATE_PARM_DECL (t) = decl;
3922 TREE_TYPE (t) = type;
3923 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3924 TREE_READONLY (t) = TREE_READONLY (decl);
3925
3926 return t;
3927 }
3928
3929 /* Find the canonical type parameter for the given template type
3930 parameter. Returns the canonical type parameter, which may be TYPE
3931 if no such parameter existed. */
3932
3933 static tree
3934 canonical_type_parameter (tree type)
3935 {
3936 tree list;
3937 int idx = TEMPLATE_TYPE_IDX (type);
3938 if (!canonical_template_parms)
3939 vec_alloc (canonical_template_parms, idx+1);
3940
3941 while (canonical_template_parms->length () <= (unsigned)idx)
3942 vec_safe_push (canonical_template_parms, NULL_TREE);
3943
3944 list = (*canonical_template_parms)[idx];
3945 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3946 list = TREE_CHAIN (list);
3947
3948 if (list)
3949 return TREE_VALUE (list);
3950 else
3951 {
3952 (*canonical_template_parms)[idx]
3953 = tree_cons (NULL_TREE, type,
3954 (*canonical_template_parms)[idx]);
3955 return type;
3956 }
3957 }
3958
3959 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3960 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3961 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3962 new one is created. */
3963
3964 static tree
3965 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3966 tsubst_flags_t complain)
3967 {
3968 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3969 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3970 != TEMPLATE_PARM_LEVEL (index) - levels)
3971 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3972 {
3973 tree orig_decl = TEMPLATE_PARM_DECL (index);
3974 tree decl, t;
3975
3976 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3977 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3978 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3979 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3980 DECL_ARTIFICIAL (decl) = 1;
3981 SET_DECL_TEMPLATE_PARM_P (decl);
3982
3983 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3984 TEMPLATE_PARM_LEVEL (index) - levels,
3985 TEMPLATE_PARM_ORIG_LEVEL (index),
3986 decl, type);
3987 TEMPLATE_PARM_DESCENDANTS (index) = t;
3988 TEMPLATE_PARM_PARAMETER_PACK (t)
3989 = TEMPLATE_PARM_PARAMETER_PACK (index);
3990
3991 /* Template template parameters need this. */
3992 if (TREE_CODE (decl) == TEMPLATE_DECL)
3993 {
3994 DECL_TEMPLATE_RESULT (decl)
3995 = build_decl (DECL_SOURCE_LOCATION (decl),
3996 TYPE_DECL, DECL_NAME (decl), type);
3997 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3998 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3999 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
4000 }
4001 }
4002
4003 return TEMPLATE_PARM_DESCENDANTS (index);
4004 }
4005
4006 /* Process information from new template parameter PARM and append it
4007 to the LIST being built. This new parameter is a non-type
4008 parameter iff IS_NON_TYPE is true. This new parameter is a
4009 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4010 is in PARM_LOC. */
4011
4012 tree
4013 process_template_parm (tree list, location_t parm_loc, tree parm,
4014 bool is_non_type, bool is_parameter_pack)
4015 {
4016 tree decl = 0;
4017 int idx = 0;
4018
4019 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4020 tree defval = TREE_PURPOSE (parm);
4021 tree constr = TREE_TYPE (parm);
4022
4023 if (list)
4024 {
4025 tree p = tree_last (list);
4026
4027 if (p && TREE_VALUE (p) != error_mark_node)
4028 {
4029 p = TREE_VALUE (p);
4030 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4031 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4032 else
4033 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4034 }
4035
4036 ++idx;
4037 }
4038
4039 if (is_non_type)
4040 {
4041 parm = TREE_VALUE (parm);
4042
4043 SET_DECL_TEMPLATE_PARM_P (parm);
4044
4045 if (TREE_TYPE (parm) != error_mark_node)
4046 {
4047 /* [temp.param]
4048
4049 The top-level cv-qualifiers on the template-parameter are
4050 ignored when determining its type. */
4051 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4052 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4053 TREE_TYPE (parm) = error_mark_node;
4054 else if (uses_parameter_packs (TREE_TYPE (parm))
4055 && !is_parameter_pack
4056 /* If we're in a nested template parameter list, the template
4057 template parameter could be a parameter pack. */
4058 && processing_template_parmlist == 1)
4059 {
4060 /* This template parameter is not a parameter pack, but it
4061 should be. Complain about "bare" parameter packs. */
4062 check_for_bare_parameter_packs (TREE_TYPE (parm));
4063
4064 /* Recover by calling this a parameter pack. */
4065 is_parameter_pack = true;
4066 }
4067 }
4068
4069 /* A template parameter is not modifiable. */
4070 TREE_CONSTANT (parm) = 1;
4071 TREE_READONLY (parm) = 1;
4072 decl = build_decl (parm_loc,
4073 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4074 TREE_CONSTANT (decl) = 1;
4075 TREE_READONLY (decl) = 1;
4076 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4077 = build_template_parm_index (idx, processing_template_decl,
4078 processing_template_decl,
4079 decl, TREE_TYPE (parm));
4080
4081 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4082 = is_parameter_pack;
4083 }
4084 else
4085 {
4086 tree t;
4087 parm = TREE_VALUE (TREE_VALUE (parm));
4088
4089 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4090 {
4091 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4092 /* This is for distinguishing between real templates and template
4093 template parameters */
4094 TREE_TYPE (parm) = t;
4095 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4096 decl = parm;
4097 }
4098 else
4099 {
4100 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4101 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4102 decl = build_decl (parm_loc,
4103 TYPE_DECL, parm, t);
4104 }
4105
4106 TYPE_NAME (t) = decl;
4107 TYPE_STUB_DECL (t) = decl;
4108 parm = decl;
4109 TEMPLATE_TYPE_PARM_INDEX (t)
4110 = build_template_parm_index (idx, processing_template_decl,
4111 processing_template_decl,
4112 decl, TREE_TYPE (parm));
4113 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4114 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4115 }
4116 DECL_ARTIFICIAL (decl) = 1;
4117 SET_DECL_TEMPLATE_PARM_P (decl);
4118
4119 /* Build requirements for the type/template parameter.
4120 This must be done after SET_DECL_TEMPLATE_PARM_P or
4121 process_template_parm could fail. */
4122 tree reqs = finish_shorthand_constraint (parm, constr);
4123
4124 pushdecl (decl);
4125
4126 /* Build the parameter node linking the parameter declaration,
4127 its default argument (if any), and its constraints (if any). */
4128 parm = build_tree_list (defval, parm);
4129 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4130
4131 return chainon (list, parm);
4132 }
4133
4134 /* The end of a template parameter list has been reached. Process the
4135 tree list into a parameter vector, converting each parameter into a more
4136 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4137 as PARM_DECLs. */
4138
4139 tree
4140 end_template_parm_list (tree parms)
4141 {
4142 int nparms;
4143 tree parm, next;
4144 tree saved_parmlist = make_tree_vec (list_length (parms));
4145
4146 /* Pop the dummy parameter level and add the real one. */
4147 current_template_parms = TREE_CHAIN (current_template_parms);
4148
4149 current_template_parms
4150 = tree_cons (size_int (processing_template_decl),
4151 saved_parmlist, current_template_parms);
4152
4153 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4154 {
4155 next = TREE_CHAIN (parm);
4156 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4157 TREE_CHAIN (parm) = NULL_TREE;
4158 }
4159
4160 --processing_template_parmlist;
4161
4162 return saved_parmlist;
4163 }
4164
4165 // Explicitly indicate the end of the template parameter list. We assume
4166 // that the current template parameters have been constructed and/or
4167 // managed explicitly, as when creating new template template parameters
4168 // from a shorthand constraint.
4169 void
4170 end_template_parm_list ()
4171 {
4172 --processing_template_parmlist;
4173 }
4174
4175 /* end_template_decl is called after a template declaration is seen. */
4176
4177 void
4178 end_template_decl (void)
4179 {
4180 reset_specialization ();
4181
4182 if (! processing_template_decl)
4183 return;
4184
4185 /* This matches the pushlevel in begin_template_parm_list. */
4186 finish_scope ();
4187
4188 --processing_template_decl;
4189 current_template_parms = TREE_CHAIN (current_template_parms);
4190 }
4191
4192 /* Takes a TREE_LIST representing a template parameter and convert it
4193 into an argument suitable to be passed to the type substitution
4194 functions. Note that If the TREE_LIST contains an error_mark
4195 node, the returned argument is error_mark_node. */
4196
4197 tree
4198 template_parm_to_arg (tree t)
4199 {
4200
4201 if (t == NULL_TREE
4202 || TREE_CODE (t) != TREE_LIST)
4203 return t;
4204
4205 if (error_operand_p (TREE_VALUE (t)))
4206 return error_mark_node;
4207
4208 t = TREE_VALUE (t);
4209
4210 if (TREE_CODE (t) == TYPE_DECL
4211 || TREE_CODE (t) == TEMPLATE_DECL)
4212 {
4213 t = TREE_TYPE (t);
4214
4215 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4216 {
4217 /* Turn this argument into a TYPE_ARGUMENT_PACK
4218 with a single element, which expands T. */
4219 tree vec = make_tree_vec (1);
4220 if (CHECKING_P)
4221 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4222
4223 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4224
4225 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4226 SET_ARGUMENT_PACK_ARGS (t, vec);
4227 }
4228 }
4229 else
4230 {
4231 t = DECL_INITIAL (t);
4232
4233 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4234 {
4235 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4236 with a single element, which expands T. */
4237 tree vec = make_tree_vec (1);
4238 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4239 if (CHECKING_P)
4240 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4241
4242 t = convert_from_reference (t);
4243 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4244
4245 t = make_node (NONTYPE_ARGUMENT_PACK);
4246 SET_ARGUMENT_PACK_ARGS (t, vec);
4247 TREE_TYPE (t) = type;
4248 }
4249 else
4250 t = convert_from_reference (t);
4251 }
4252 return t;
4253 }
4254
4255 /* Given a set of template parameters, return them as a set of template
4256 arguments. The template parameters are represented as a TREE_VEC, in
4257 the form documented in cp-tree.h for template arguments. */
4258
4259 static tree
4260 template_parms_to_args (tree parms)
4261 {
4262 tree header;
4263 tree args = NULL_TREE;
4264 int length = TMPL_PARMS_DEPTH (parms);
4265 int l = length;
4266
4267 /* If there is only one level of template parameters, we do not
4268 create a TREE_VEC of TREE_VECs. Instead, we return a single
4269 TREE_VEC containing the arguments. */
4270 if (length > 1)
4271 args = make_tree_vec (length);
4272
4273 for (header = parms; header; header = TREE_CHAIN (header))
4274 {
4275 tree a = copy_node (TREE_VALUE (header));
4276 int i;
4277
4278 TREE_TYPE (a) = NULL_TREE;
4279 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4280 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4281
4282 if (CHECKING_P)
4283 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4284
4285 if (length > 1)
4286 TREE_VEC_ELT (args, --l) = a;
4287 else
4288 args = a;
4289 }
4290
4291 return args;
4292 }
4293
4294 /* Within the declaration of a template, return the currently active
4295 template parameters as an argument TREE_VEC. */
4296
4297 static tree
4298 current_template_args (void)
4299 {
4300 return template_parms_to_args (current_template_parms);
4301 }
4302
4303 /* Update the declared TYPE by doing any lookups which were thought to be
4304 dependent, but are not now that we know the SCOPE of the declarator. */
4305
4306 tree
4307 maybe_update_decl_type (tree orig_type, tree scope)
4308 {
4309 tree type = orig_type;
4310
4311 if (type == NULL_TREE)
4312 return type;
4313
4314 if (TREE_CODE (orig_type) == TYPE_DECL)
4315 type = TREE_TYPE (type);
4316
4317 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4318 && dependent_type_p (type)
4319 /* Don't bother building up the args in this case. */
4320 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4321 {
4322 /* tsubst in the args corresponding to the template parameters,
4323 including auto if present. Most things will be unchanged, but
4324 make_typename_type and tsubst_qualified_id will resolve
4325 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4326 tree args = current_template_args ();
4327 tree auto_node = type_uses_auto (type);
4328 tree pushed;
4329 if (auto_node)
4330 {
4331 tree auto_vec = make_tree_vec (1);
4332 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4333 args = add_to_template_args (args, auto_vec);
4334 }
4335 pushed = push_scope (scope);
4336 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4337 if (pushed)
4338 pop_scope (scope);
4339 }
4340
4341 if (type == error_mark_node)
4342 return orig_type;
4343
4344 if (TREE_CODE (orig_type) == TYPE_DECL)
4345 {
4346 if (same_type_p (type, TREE_TYPE (orig_type)))
4347 type = orig_type;
4348 else
4349 type = TYPE_NAME (type);
4350 }
4351 return type;
4352 }
4353
4354 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4355 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4356 the new template is a member template. */
4357
4358 tree
4359 build_template_decl (tree decl, tree parms, bool member_template_p)
4360 {
4361 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4362 DECL_TEMPLATE_PARMS (tmpl) = parms;
4363 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4364 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4365 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4366
4367 return tmpl;
4368 }
4369
4370 struct template_parm_data
4371 {
4372 /* The level of the template parameters we are currently
4373 processing. */
4374 int level;
4375
4376 /* The index of the specialization argument we are currently
4377 processing. */
4378 int current_arg;
4379
4380 /* An array whose size is the number of template parameters. The
4381 elements are nonzero if the parameter has been used in any one
4382 of the arguments processed so far. */
4383 int* parms;
4384
4385 /* An array whose size is the number of template arguments. The
4386 elements are nonzero if the argument makes use of template
4387 parameters of this level. */
4388 int* arg_uses_template_parms;
4389 };
4390
4391 /* Subroutine of push_template_decl used to see if each template
4392 parameter in a partial specialization is used in the explicit
4393 argument list. If T is of the LEVEL given in DATA (which is
4394 treated as a template_parm_data*), then DATA->PARMS is marked
4395 appropriately. */
4396
4397 static int
4398 mark_template_parm (tree t, void* data)
4399 {
4400 int level;
4401 int idx;
4402 struct template_parm_data* tpd = (struct template_parm_data*) data;
4403
4404 template_parm_level_and_index (t, &level, &idx);
4405
4406 if (level == tpd->level)
4407 {
4408 tpd->parms[idx] = 1;
4409 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4410 }
4411
4412 /* Return zero so that for_each_template_parm will continue the
4413 traversal of the tree; we want to mark *every* template parm. */
4414 return 0;
4415 }
4416
4417 /* Process the partial specialization DECL. */
4418
4419 static tree
4420 process_partial_specialization (tree decl)
4421 {
4422 tree type = TREE_TYPE (decl);
4423 tree tinfo = get_template_info (decl);
4424 tree maintmpl = TI_TEMPLATE (tinfo);
4425 tree specargs = TI_ARGS (tinfo);
4426 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4427 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4428 tree inner_parms;
4429 tree inst;
4430 int nargs = TREE_VEC_LENGTH (inner_args);
4431 int ntparms;
4432 int i;
4433 bool did_error_intro = false;
4434 struct template_parm_data tpd;
4435 struct template_parm_data tpd2;
4436
4437 gcc_assert (current_template_parms);
4438
4439 /* A concept cannot be specialized. */
4440 if (flag_concepts && variable_concept_p (maintmpl))
4441 {
4442 error ("specialization of variable concept %q#D", maintmpl);
4443 return error_mark_node;
4444 }
4445
4446 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4447 ntparms = TREE_VEC_LENGTH (inner_parms);
4448
4449 /* We check that each of the template parameters given in the
4450 partial specialization is used in the argument list to the
4451 specialization. For example:
4452
4453 template <class T> struct S;
4454 template <class T> struct S<T*>;
4455
4456 The second declaration is OK because `T*' uses the template
4457 parameter T, whereas
4458
4459 template <class T> struct S<int>;
4460
4461 is no good. Even trickier is:
4462
4463 template <class T>
4464 struct S1
4465 {
4466 template <class U>
4467 struct S2;
4468 template <class U>
4469 struct S2<T>;
4470 };
4471
4472 The S2<T> declaration is actually invalid; it is a
4473 full-specialization. Of course,
4474
4475 template <class U>
4476 struct S2<T (*)(U)>;
4477
4478 or some such would have been OK. */
4479 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4480 tpd.parms = XALLOCAVEC (int, ntparms);
4481 memset (tpd.parms, 0, sizeof (int) * ntparms);
4482
4483 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4484 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4485 for (i = 0; i < nargs; ++i)
4486 {
4487 tpd.current_arg = i;
4488 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4489 &mark_template_parm,
4490 &tpd,
4491 NULL,
4492 /*include_nondeduced_p=*/false);
4493 }
4494 for (i = 0; i < ntparms; ++i)
4495 if (tpd.parms[i] == 0)
4496 {
4497 /* One of the template parms was not used in a deduced context in the
4498 specialization. */
4499 if (!did_error_intro)
4500 {
4501 error ("template parameters not deducible in "
4502 "partial specialization:");
4503 did_error_intro = true;
4504 }
4505
4506 inform (input_location, " %qD",
4507 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4508 }
4509
4510 if (did_error_intro)
4511 return error_mark_node;
4512
4513 /* [temp.class.spec]
4514
4515 The argument list of the specialization shall not be identical to
4516 the implicit argument list of the primary template. */
4517 tree main_args
4518 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4519 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4520 && (!flag_concepts
4521 || !strictly_subsumes (current_template_constraints (),
4522 get_constraints (maintmpl))))
4523 {
4524 if (!flag_concepts)
4525 error ("partial specialization %q+D does not specialize "
4526 "any template arguments", decl);
4527 else
4528 error ("partial specialization %q+D does not specialize any "
4529 "template arguments and is not more constrained than", decl);
4530 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4531 }
4532
4533 /* A partial specialization that replaces multiple parameters of the
4534 primary template with a pack expansion is less specialized for those
4535 parameters. */
4536 if (nargs < DECL_NTPARMS (maintmpl))
4537 {
4538 error ("partial specialization is not more specialized than the "
4539 "primary template because it replaces multiple parameters "
4540 "with a pack expansion");
4541 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4542 return decl;
4543 }
4544
4545 /* [temp.class.spec]
4546
4547 A partially specialized non-type argument expression shall not
4548 involve template parameters of the partial specialization except
4549 when the argument expression is a simple identifier.
4550
4551 The type of a template parameter corresponding to a specialized
4552 non-type argument shall not be dependent on a parameter of the
4553 specialization.
4554
4555 Also, we verify that pack expansions only occur at the
4556 end of the argument list. */
4557 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4558 tpd2.parms = 0;
4559 for (i = 0; i < nargs; ++i)
4560 {
4561 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4562 tree arg = TREE_VEC_ELT (inner_args, i);
4563 tree packed_args = NULL_TREE;
4564 int j, len = 1;
4565
4566 if (ARGUMENT_PACK_P (arg))
4567 {
4568 /* Extract the arguments from the argument pack. We'll be
4569 iterating over these in the following loop. */
4570 packed_args = ARGUMENT_PACK_ARGS (arg);
4571 len = TREE_VEC_LENGTH (packed_args);
4572 }
4573
4574 for (j = 0; j < len; j++)
4575 {
4576 if (packed_args)
4577 /* Get the Jth argument in the parameter pack. */
4578 arg = TREE_VEC_ELT (packed_args, j);
4579
4580 if (PACK_EXPANSION_P (arg))
4581 {
4582 /* Pack expansions must come at the end of the
4583 argument list. */
4584 if ((packed_args && j < len - 1)
4585 || (!packed_args && i < nargs - 1))
4586 {
4587 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4588 error ("parameter pack argument %qE must be at the "
4589 "end of the template argument list", arg);
4590 else
4591 error ("parameter pack argument %qT must be at the "
4592 "end of the template argument list", arg);
4593 }
4594 }
4595
4596 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4597 /* We only care about the pattern. */
4598 arg = PACK_EXPANSION_PATTERN (arg);
4599
4600 if (/* These first two lines are the `non-type' bit. */
4601 !TYPE_P (arg)
4602 && TREE_CODE (arg) != TEMPLATE_DECL
4603 /* This next two lines are the `argument expression is not just a
4604 simple identifier' condition and also the `specialized
4605 non-type argument' bit. */
4606 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4607 && !(REFERENCE_REF_P (arg)
4608 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4609 {
4610 if ((!packed_args && tpd.arg_uses_template_parms[i])
4611 || (packed_args && uses_template_parms (arg)))
4612 error ("template argument %qE involves template parameter(s)",
4613 arg);
4614 else
4615 {
4616 /* Look at the corresponding template parameter,
4617 marking which template parameters its type depends
4618 upon. */
4619 tree type = TREE_TYPE (parm);
4620
4621 if (!tpd2.parms)
4622 {
4623 /* We haven't yet initialized TPD2. Do so now. */
4624 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4625 /* The number of parameters here is the number in the
4626 main template, which, as checked in the assertion
4627 above, is NARGS. */
4628 tpd2.parms = XALLOCAVEC (int, nargs);
4629 tpd2.level =
4630 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4631 }
4632
4633 /* Mark the template parameters. But this time, we're
4634 looking for the template parameters of the main
4635 template, not in the specialization. */
4636 tpd2.current_arg = i;
4637 tpd2.arg_uses_template_parms[i] = 0;
4638 memset (tpd2.parms, 0, sizeof (int) * nargs);
4639 for_each_template_parm (type,
4640 &mark_template_parm,
4641 &tpd2,
4642 NULL,
4643 /*include_nondeduced_p=*/false);
4644
4645 if (tpd2.arg_uses_template_parms [i])
4646 {
4647 /* The type depended on some template parameters.
4648 If they are fully specialized in the
4649 specialization, that's OK. */
4650 int j;
4651 int count = 0;
4652 for (j = 0; j < nargs; ++j)
4653 if (tpd2.parms[j] != 0
4654 && tpd.arg_uses_template_parms [j])
4655 ++count;
4656 if (count != 0)
4657 error_n (input_location, count,
4658 "type %qT of template argument %qE depends "
4659 "on a template parameter",
4660 "type %qT of template argument %qE depends "
4661 "on template parameters",
4662 type,
4663 arg);
4664 }
4665 }
4666 }
4667 }
4668 }
4669
4670 /* We should only get here once. */
4671 if (TREE_CODE (decl) == TYPE_DECL)
4672 gcc_assert (!COMPLETE_TYPE_P (type));
4673
4674 // Build the template decl.
4675 tree tmpl = build_template_decl (decl, current_template_parms,
4676 DECL_MEMBER_TEMPLATE_P (maintmpl));
4677 TREE_TYPE (tmpl) = type;
4678 DECL_TEMPLATE_RESULT (tmpl) = decl;
4679 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4680 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4681 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4682
4683 if (VAR_P (decl))
4684 /* We didn't register this in check_explicit_specialization so we could
4685 wait until the constraints were set. */
4686 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4687 else
4688 associate_classtype_constraints (type);
4689
4690 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4691 = tree_cons (specargs, tmpl,
4692 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4693 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4694
4695 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4696 inst = TREE_CHAIN (inst))
4697 {
4698 tree instance = TREE_VALUE (inst);
4699 if (TYPE_P (instance)
4700 ? (COMPLETE_TYPE_P (instance)
4701 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4702 : DECL_TEMPLATE_INSTANTIATION (instance))
4703 {
4704 tree spec = most_specialized_partial_spec (instance, tf_none);
4705 tree inst_decl = (DECL_P (instance)
4706 ? instance : TYPE_NAME (instance));
4707 if (!spec)
4708 /* OK */;
4709 else if (spec == error_mark_node)
4710 permerror (input_location,
4711 "declaration of %qD ambiguates earlier template "
4712 "instantiation for %qD", decl, inst_decl);
4713 else if (TREE_VALUE (spec) == tmpl)
4714 permerror (input_location,
4715 "partial specialization of %qD after instantiation "
4716 "of %qD", decl, inst_decl);
4717 }
4718 }
4719
4720 return decl;
4721 }
4722
4723 /* PARM is a template parameter of some form; return the corresponding
4724 TEMPLATE_PARM_INDEX. */
4725
4726 static tree
4727 get_template_parm_index (tree parm)
4728 {
4729 if (TREE_CODE (parm) == PARM_DECL
4730 || TREE_CODE (parm) == CONST_DECL)
4731 parm = DECL_INITIAL (parm);
4732 else if (TREE_CODE (parm) == TYPE_DECL
4733 || TREE_CODE (parm) == TEMPLATE_DECL)
4734 parm = TREE_TYPE (parm);
4735 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4736 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4737 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4738 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4739 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4740 return parm;
4741 }
4742
4743 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4744 parameter packs used by the template parameter PARM. */
4745
4746 static void
4747 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4748 {
4749 /* A type parm can't refer to another parm. */
4750 if (TREE_CODE (parm) == TYPE_DECL)
4751 return;
4752 else if (TREE_CODE (parm) == PARM_DECL)
4753 {
4754 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4755 ppd, ppd->visited);
4756 return;
4757 }
4758
4759 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4760
4761 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4762 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4763 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4764 }
4765
4766 /* PARM is a template parameter pack. Return any parameter packs used in
4767 its type or the type of any of its template parameters. If there are
4768 any such packs, it will be instantiated into a fixed template parameter
4769 list by partial instantiation rather than be fully deduced. */
4770
4771 tree
4772 fixed_parameter_pack_p (tree parm)
4773 {
4774 /* This can only be true in a member template. */
4775 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4776 return NULL_TREE;
4777 /* This can only be true for a parameter pack. */
4778 if (!template_parameter_pack_p (parm))
4779 return NULL_TREE;
4780 /* A type parm can't refer to another parm. */
4781 if (TREE_CODE (parm) == TYPE_DECL)
4782 return NULL_TREE;
4783
4784 tree parameter_packs = NULL_TREE;
4785 struct find_parameter_pack_data ppd;
4786 ppd.parameter_packs = &parameter_packs;
4787 ppd.visited = new hash_set<tree>;
4788 ppd.type_pack_expansion_p = false;
4789
4790 fixed_parameter_pack_p_1 (parm, &ppd);
4791
4792 delete ppd.visited;
4793 return parameter_packs;
4794 }
4795
4796 /* Check that a template declaration's use of default arguments and
4797 parameter packs is not invalid. Here, PARMS are the template
4798 parameters. IS_PRIMARY is true if DECL is the thing declared by
4799 a primary template. IS_PARTIAL is true if DECL is a partial
4800 specialization.
4801
4802 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4803 declaration (but not a definition); 1 indicates a declaration, 2
4804 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4805 emitted for extraneous default arguments.
4806
4807 Returns TRUE if there were no errors found, FALSE otherwise. */
4808
4809 bool
4810 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4811 bool is_partial, int is_friend_decl)
4812 {
4813 const char *msg;
4814 int last_level_to_check;
4815 tree parm_level;
4816 bool no_errors = true;
4817
4818 /* [temp.param]
4819
4820 A default template-argument shall not be specified in a
4821 function template declaration or a function template definition, nor
4822 in the template-parameter-list of the definition of a member of a
4823 class template. */
4824
4825 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4826 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4827 /* You can't have a function template declaration in a local
4828 scope, nor you can you define a member of a class template in a
4829 local scope. */
4830 return true;
4831
4832 if ((TREE_CODE (decl) == TYPE_DECL
4833 && TREE_TYPE (decl)
4834 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4835 || (TREE_CODE (decl) == FUNCTION_DECL
4836 && LAMBDA_FUNCTION_P (decl)))
4837 /* A lambda doesn't have an explicit declaration; don't complain
4838 about the parms of the enclosing class. */
4839 return true;
4840
4841 if (current_class_type
4842 && !TYPE_BEING_DEFINED (current_class_type)
4843 && DECL_LANG_SPECIFIC (decl)
4844 && DECL_DECLARES_FUNCTION_P (decl)
4845 /* If this is either a friend defined in the scope of the class
4846 or a member function. */
4847 && (DECL_FUNCTION_MEMBER_P (decl)
4848 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4849 : DECL_FRIEND_CONTEXT (decl)
4850 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4851 : false)
4852 /* And, if it was a member function, it really was defined in
4853 the scope of the class. */
4854 && (!DECL_FUNCTION_MEMBER_P (decl)
4855 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4856 /* We already checked these parameters when the template was
4857 declared, so there's no need to do it again now. This function
4858 was defined in class scope, but we're processing its body now
4859 that the class is complete. */
4860 return true;
4861
4862 /* Core issue 226 (C++0x only): the following only applies to class
4863 templates. */
4864 if (is_primary
4865 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4866 {
4867 /* [temp.param]
4868
4869 If a template-parameter has a default template-argument, all
4870 subsequent template-parameters shall have a default
4871 template-argument supplied. */
4872 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4873 {
4874 tree inner_parms = TREE_VALUE (parm_level);
4875 int ntparms = TREE_VEC_LENGTH (inner_parms);
4876 int seen_def_arg_p = 0;
4877 int i;
4878
4879 for (i = 0; i < ntparms; ++i)
4880 {
4881 tree parm = TREE_VEC_ELT (inner_parms, i);
4882
4883 if (parm == error_mark_node)
4884 continue;
4885
4886 if (TREE_PURPOSE (parm))
4887 seen_def_arg_p = 1;
4888 else if (seen_def_arg_p
4889 && !template_parameter_pack_p (TREE_VALUE (parm)))
4890 {
4891 error ("no default argument for %qD", TREE_VALUE (parm));
4892 /* For better subsequent error-recovery, we indicate that
4893 there should have been a default argument. */
4894 TREE_PURPOSE (parm) = error_mark_node;
4895 no_errors = false;
4896 }
4897 else if (!is_partial
4898 && !is_friend_decl
4899 /* Don't complain about an enclosing partial
4900 specialization. */
4901 && parm_level == parms
4902 && TREE_CODE (decl) == TYPE_DECL
4903 && i < ntparms - 1
4904 && template_parameter_pack_p (TREE_VALUE (parm))
4905 /* A fixed parameter pack will be partially
4906 instantiated into a fixed length list. */
4907 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4908 {
4909 /* A primary class template can only have one
4910 parameter pack, at the end of the template
4911 parameter list. */
4912
4913 error ("parameter pack %q+D must be at the end of the"
4914 " template parameter list", TREE_VALUE (parm));
4915
4916 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4917 = error_mark_node;
4918 no_errors = false;
4919 }
4920 }
4921 }
4922 }
4923
4924 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4925 || is_partial
4926 || !is_primary
4927 || is_friend_decl)
4928 /* For an ordinary class template, default template arguments are
4929 allowed at the innermost level, e.g.:
4930 template <class T = int>
4931 struct S {};
4932 but, in a partial specialization, they're not allowed even
4933 there, as we have in [temp.class.spec]:
4934
4935 The template parameter list of a specialization shall not
4936 contain default template argument values.
4937
4938 So, for a partial specialization, or for a function template
4939 (in C++98/C++03), we look at all of them. */
4940 ;
4941 else
4942 /* But, for a primary class template that is not a partial
4943 specialization we look at all template parameters except the
4944 innermost ones. */
4945 parms = TREE_CHAIN (parms);
4946
4947 /* Figure out what error message to issue. */
4948 if (is_friend_decl == 2)
4949 msg = G_("default template arguments may not be used in function template "
4950 "friend re-declaration");
4951 else if (is_friend_decl)
4952 msg = G_("default template arguments may not be used in function template "
4953 "friend declarations");
4954 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4955 msg = G_("default template arguments may not be used in function templates "
4956 "without -std=c++11 or -std=gnu++11");
4957 else if (is_partial)
4958 msg = G_("default template arguments may not be used in "
4959 "partial specializations");
4960 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4961 msg = G_("default argument for template parameter for class enclosing %qD");
4962 else
4963 /* Per [temp.param]/9, "A default template-argument shall not be
4964 specified in the template-parameter-lists of the definition of
4965 a member of a class template that appears outside of the member's
4966 class.", thus if we aren't handling a member of a class template
4967 there is no need to examine the parameters. */
4968 return true;
4969
4970 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4971 /* If we're inside a class definition, there's no need to
4972 examine the parameters to the class itself. On the one
4973 hand, they will be checked when the class is defined, and,
4974 on the other, default arguments are valid in things like:
4975 template <class T = double>
4976 struct S { template <class U> void f(U); };
4977 Here the default argument for `S' has no bearing on the
4978 declaration of `f'. */
4979 last_level_to_check = template_class_depth (current_class_type) + 1;
4980 else
4981 /* Check everything. */
4982 last_level_to_check = 0;
4983
4984 for (parm_level = parms;
4985 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4986 parm_level = TREE_CHAIN (parm_level))
4987 {
4988 tree inner_parms = TREE_VALUE (parm_level);
4989 int i;
4990 int ntparms;
4991
4992 ntparms = TREE_VEC_LENGTH (inner_parms);
4993 for (i = 0; i < ntparms; ++i)
4994 {
4995 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4996 continue;
4997
4998 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4999 {
5000 if (msg)
5001 {
5002 no_errors = false;
5003 if (is_friend_decl == 2)
5004 return no_errors;
5005
5006 error (msg, decl);
5007 msg = 0;
5008 }
5009
5010 /* Clear out the default argument so that we are not
5011 confused later. */
5012 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5013 }
5014 }
5015
5016 /* At this point, if we're still interested in issuing messages,
5017 they must apply to classes surrounding the object declared. */
5018 if (msg)
5019 msg = G_("default argument for template parameter for class "
5020 "enclosing %qD");
5021 }
5022
5023 return no_errors;
5024 }
5025
5026 /* Worker for push_template_decl_real, called via
5027 for_each_template_parm. DATA is really an int, indicating the
5028 level of the parameters we are interested in. If T is a template
5029 parameter of that level, return nonzero. */
5030
5031 static int
5032 template_parm_this_level_p (tree t, void* data)
5033 {
5034 int this_level = *(int *)data;
5035 int level;
5036
5037 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5038 level = TEMPLATE_PARM_LEVEL (t);
5039 else
5040 level = TEMPLATE_TYPE_LEVEL (t);
5041 return level == this_level;
5042 }
5043
5044 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5045 parameters given by current_template_args, or reuses a
5046 previously existing one, if appropriate. Returns the DECL, or an
5047 equivalent one, if it is replaced via a call to duplicate_decls.
5048
5049 If IS_FRIEND is true, DECL is a friend declaration. */
5050
5051 tree
5052 push_template_decl_real (tree decl, bool is_friend)
5053 {
5054 tree tmpl;
5055 tree args;
5056 tree info;
5057 tree ctx;
5058 bool is_primary;
5059 bool is_partial;
5060 int new_template_p = 0;
5061 /* True if the template is a member template, in the sense of
5062 [temp.mem]. */
5063 bool member_template_p = false;
5064
5065 if (decl == error_mark_node || !current_template_parms)
5066 return error_mark_node;
5067
5068 /* See if this is a partial specialization. */
5069 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5070 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5071 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5072 || (VAR_P (decl)
5073 && DECL_LANG_SPECIFIC (decl)
5074 && DECL_TEMPLATE_SPECIALIZATION (decl)
5075 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5076
5077 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5078 is_friend = true;
5079
5080 if (is_friend)
5081 /* For a friend, we want the context of the friend function, not
5082 the type of which it is a friend. */
5083 ctx = CP_DECL_CONTEXT (decl);
5084 else if (CP_DECL_CONTEXT (decl)
5085 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5086 /* In the case of a virtual function, we want the class in which
5087 it is defined. */
5088 ctx = CP_DECL_CONTEXT (decl);
5089 else
5090 /* Otherwise, if we're currently defining some class, the DECL
5091 is assumed to be a member of the class. */
5092 ctx = current_scope ();
5093
5094 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5095 ctx = NULL_TREE;
5096
5097 if (!DECL_CONTEXT (decl))
5098 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5099
5100 /* See if this is a primary template. */
5101 if (is_friend && ctx
5102 && uses_template_parms_level (ctx, processing_template_decl))
5103 /* A friend template that specifies a class context, i.e.
5104 template <typename T> friend void A<T>::f();
5105 is not primary. */
5106 is_primary = false;
5107 else if (TREE_CODE (decl) == TYPE_DECL
5108 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5109 is_primary = false;
5110 else
5111 is_primary = template_parm_scope_p ();
5112
5113 if (is_primary)
5114 {
5115 warning (OPT_Wtemplates, "template %qD declared", decl);
5116
5117 if (DECL_CLASS_SCOPE_P (decl))
5118 member_template_p = true;
5119 if (TREE_CODE (decl) == TYPE_DECL
5120 && anon_aggrname_p (DECL_NAME (decl)))
5121 {
5122 error ("template class without a name");
5123 return error_mark_node;
5124 }
5125 else if (TREE_CODE (decl) == FUNCTION_DECL)
5126 {
5127 if (member_template_p)
5128 {
5129 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5130 error ("member template %qD may not have virt-specifiers", decl);
5131 }
5132 if (DECL_DESTRUCTOR_P (decl))
5133 {
5134 /* [temp.mem]
5135
5136 A destructor shall not be a member template. */
5137 error ("destructor %qD declared as member template", decl);
5138 return error_mark_node;
5139 }
5140 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5141 && (!prototype_p (TREE_TYPE (decl))
5142 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5143 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5144 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5145 == void_list_node)))
5146 {
5147 /* [basic.stc.dynamic.allocation]
5148
5149 An allocation function can be a function
5150 template. ... Template allocation functions shall
5151 have two or more parameters. */
5152 error ("invalid template declaration of %qD", decl);
5153 return error_mark_node;
5154 }
5155 }
5156 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5157 && CLASS_TYPE_P (TREE_TYPE (decl)))
5158 /* OK */;
5159 else if (TREE_CODE (decl) == TYPE_DECL
5160 && TYPE_DECL_ALIAS_P (decl))
5161 /* alias-declaration */
5162 gcc_assert (!DECL_ARTIFICIAL (decl));
5163 else if (VAR_P (decl))
5164 /* C++14 variable template. */;
5165 else
5166 {
5167 error ("template declaration of %q#D", decl);
5168 return error_mark_node;
5169 }
5170 }
5171
5172 /* Check to see that the rules regarding the use of default
5173 arguments are not being violated. */
5174 check_default_tmpl_args (decl, current_template_parms,
5175 is_primary, is_partial, /*is_friend_decl=*/0);
5176
5177 /* Ensure that there are no parameter packs in the type of this
5178 declaration that have not been expanded. */
5179 if (TREE_CODE (decl) == FUNCTION_DECL)
5180 {
5181 /* Check each of the arguments individually to see if there are
5182 any bare parameter packs. */
5183 tree type = TREE_TYPE (decl);
5184 tree arg = DECL_ARGUMENTS (decl);
5185 tree argtype = TYPE_ARG_TYPES (type);
5186
5187 while (arg && argtype)
5188 {
5189 if (!DECL_PACK_P (arg)
5190 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5191 {
5192 /* This is a PARM_DECL that contains unexpanded parameter
5193 packs. We have already complained about this in the
5194 check_for_bare_parameter_packs call, so just replace
5195 these types with ERROR_MARK_NODE. */
5196 TREE_TYPE (arg) = error_mark_node;
5197 TREE_VALUE (argtype) = error_mark_node;
5198 }
5199
5200 arg = DECL_CHAIN (arg);
5201 argtype = TREE_CHAIN (argtype);
5202 }
5203
5204 /* Check for bare parameter packs in the return type and the
5205 exception specifiers. */
5206 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5207 /* Errors were already issued, set return type to int
5208 as the frontend doesn't expect error_mark_node as
5209 the return type. */
5210 TREE_TYPE (type) = integer_type_node;
5211 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5212 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5213 }
5214 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5215 && TYPE_DECL_ALIAS_P (decl))
5216 ? DECL_ORIGINAL_TYPE (decl)
5217 : TREE_TYPE (decl)))
5218 {
5219 TREE_TYPE (decl) = error_mark_node;
5220 return error_mark_node;
5221 }
5222
5223 if (is_partial)
5224 return process_partial_specialization (decl);
5225
5226 args = current_template_args ();
5227
5228 if (!ctx
5229 || TREE_CODE (ctx) == FUNCTION_DECL
5230 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5231 || (TREE_CODE (decl) == TYPE_DECL
5232 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5233 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5234 {
5235 if (DECL_LANG_SPECIFIC (decl)
5236 && DECL_TEMPLATE_INFO (decl)
5237 && DECL_TI_TEMPLATE (decl))
5238 tmpl = DECL_TI_TEMPLATE (decl);
5239 /* If DECL is a TYPE_DECL for a class-template, then there won't
5240 be DECL_LANG_SPECIFIC. The information equivalent to
5241 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5242 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5243 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5244 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5245 {
5246 /* Since a template declaration already existed for this
5247 class-type, we must be redeclaring it here. Make sure
5248 that the redeclaration is valid. */
5249 redeclare_class_template (TREE_TYPE (decl),
5250 current_template_parms,
5251 current_template_constraints ());
5252 /* We don't need to create a new TEMPLATE_DECL; just use the
5253 one we already had. */
5254 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5255 }
5256 else
5257 {
5258 tmpl = build_template_decl (decl, current_template_parms,
5259 member_template_p);
5260 new_template_p = 1;
5261
5262 if (DECL_LANG_SPECIFIC (decl)
5263 && DECL_TEMPLATE_SPECIALIZATION (decl))
5264 {
5265 /* A specialization of a member template of a template
5266 class. */
5267 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5268 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5269 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5270 }
5271 }
5272 }
5273 else
5274 {
5275 tree a, t, current, parms;
5276 int i;
5277 tree tinfo = get_template_info (decl);
5278
5279 if (!tinfo)
5280 {
5281 error ("template definition of non-template %q#D", decl);
5282 return error_mark_node;
5283 }
5284
5285 tmpl = TI_TEMPLATE (tinfo);
5286
5287 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5288 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5289 && DECL_TEMPLATE_SPECIALIZATION (decl)
5290 && DECL_MEMBER_TEMPLATE_P (tmpl))
5291 {
5292 tree new_tmpl;
5293
5294 /* The declaration is a specialization of a member
5295 template, declared outside the class. Therefore, the
5296 innermost template arguments will be NULL, so we
5297 replace them with the arguments determined by the
5298 earlier call to check_explicit_specialization. */
5299 args = DECL_TI_ARGS (decl);
5300
5301 new_tmpl
5302 = build_template_decl (decl, current_template_parms,
5303 member_template_p);
5304 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5305 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5306 DECL_TI_TEMPLATE (decl) = new_tmpl;
5307 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5308 DECL_TEMPLATE_INFO (new_tmpl)
5309 = build_template_info (tmpl, args);
5310
5311 register_specialization (new_tmpl,
5312 most_general_template (tmpl),
5313 args,
5314 is_friend, 0);
5315 return decl;
5316 }
5317
5318 /* Make sure the template headers we got make sense. */
5319
5320 parms = DECL_TEMPLATE_PARMS (tmpl);
5321 i = TMPL_PARMS_DEPTH (parms);
5322 if (TMPL_ARGS_DEPTH (args) != i)
5323 {
5324 error ("expected %d levels of template parms for %q#D, got %d",
5325 i, decl, TMPL_ARGS_DEPTH (args));
5326 DECL_INTERFACE_KNOWN (decl) = 1;
5327 return error_mark_node;
5328 }
5329 else
5330 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5331 {
5332 a = TMPL_ARGS_LEVEL (args, i);
5333 t = INNERMOST_TEMPLATE_PARMS (parms);
5334
5335 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5336 {
5337 if (current == decl)
5338 error ("got %d template parameters for %q#D",
5339 TREE_VEC_LENGTH (a), decl);
5340 else
5341 error ("got %d template parameters for %q#T",
5342 TREE_VEC_LENGTH (a), current);
5343 error (" but %d required", TREE_VEC_LENGTH (t));
5344 /* Avoid crash in import_export_decl. */
5345 DECL_INTERFACE_KNOWN (decl) = 1;
5346 return error_mark_node;
5347 }
5348
5349 if (current == decl)
5350 current = ctx;
5351 else if (current == NULL_TREE)
5352 /* Can happen in erroneous input. */
5353 break;
5354 else
5355 current = get_containing_scope (current);
5356 }
5357
5358 /* Check that the parms are used in the appropriate qualifying scopes
5359 in the declarator. */
5360 if (!comp_template_args
5361 (TI_ARGS (tinfo),
5362 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5363 {
5364 error ("\
5365 template arguments to %qD do not match original template %qD",
5366 decl, DECL_TEMPLATE_RESULT (tmpl));
5367 if (!uses_template_parms (TI_ARGS (tinfo)))
5368 inform (input_location, "use template<> for an explicit specialization");
5369 /* Avoid crash in import_export_decl. */
5370 DECL_INTERFACE_KNOWN (decl) = 1;
5371 return error_mark_node;
5372 }
5373 }
5374
5375 DECL_TEMPLATE_RESULT (tmpl) = decl;
5376 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5377
5378 /* Push template declarations for global functions and types. Note
5379 that we do not try to push a global template friend declared in a
5380 template class; such a thing may well depend on the template
5381 parameters of the class. */
5382 if (new_template_p && !ctx
5383 && !(is_friend && template_class_depth (current_class_type) > 0))
5384 {
5385 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5386 if (tmpl == error_mark_node)
5387 return error_mark_node;
5388
5389 /* Hide template friend classes that haven't been declared yet. */
5390 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5391 {
5392 DECL_ANTICIPATED (tmpl) = 1;
5393 DECL_FRIEND_P (tmpl) = 1;
5394 }
5395 }
5396
5397 if (is_primary)
5398 {
5399 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5400 int i;
5401
5402 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5403 if (DECL_CONV_FN_P (tmpl))
5404 {
5405 int depth = TMPL_PARMS_DEPTH (parms);
5406
5407 /* It is a conversion operator. See if the type converted to
5408 depends on innermost template operands. */
5409
5410 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5411 depth))
5412 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5413 }
5414
5415 /* Give template template parms a DECL_CONTEXT of the template
5416 for which they are a parameter. */
5417 parms = INNERMOST_TEMPLATE_PARMS (parms);
5418 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5419 {
5420 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5421 if (TREE_CODE (parm) == TEMPLATE_DECL)
5422 DECL_CONTEXT (parm) = tmpl;
5423 }
5424
5425 if (TREE_CODE (decl) == TYPE_DECL
5426 && TYPE_DECL_ALIAS_P (decl)
5427 && complex_alias_template_p (tmpl))
5428 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5429 }
5430
5431 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5432 back to its most general template. If TMPL is a specialization,
5433 ARGS may only have the innermost set of arguments. Add the missing
5434 argument levels if necessary. */
5435 if (DECL_TEMPLATE_INFO (tmpl))
5436 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5437
5438 info = build_template_info (tmpl, args);
5439
5440 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5441 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5442 else
5443 {
5444 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5445 retrofit_lang_decl (decl);
5446 if (DECL_LANG_SPECIFIC (decl))
5447 DECL_TEMPLATE_INFO (decl) = info;
5448 }
5449
5450 if (flag_implicit_templates
5451 && !is_friend
5452 && TREE_PUBLIC (decl)
5453 && VAR_OR_FUNCTION_DECL_P (decl))
5454 /* Set DECL_COMDAT on template instantiations; if we force
5455 them to be emitted by explicit instantiation or -frepo,
5456 mark_needed will tell cgraph to do the right thing. */
5457 DECL_COMDAT (decl) = true;
5458
5459 return DECL_TEMPLATE_RESULT (tmpl);
5460 }
5461
5462 tree
5463 push_template_decl (tree decl)
5464 {
5465 return push_template_decl_real (decl, false);
5466 }
5467
5468 /* FN is an inheriting constructor that inherits from the constructor
5469 template INHERITED; turn FN into a constructor template with a matching
5470 template header. */
5471
5472 tree
5473 add_inherited_template_parms (tree fn, tree inherited)
5474 {
5475 tree inner_parms
5476 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5477 inner_parms = copy_node (inner_parms);
5478 tree parms
5479 = tree_cons (size_int (processing_template_decl + 1),
5480 inner_parms, current_template_parms);
5481 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5482 tree args = template_parms_to_args (parms);
5483 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5484 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5485 DECL_TEMPLATE_RESULT (tmpl) = fn;
5486 DECL_ARTIFICIAL (tmpl) = true;
5487 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5488 return tmpl;
5489 }
5490
5491 /* Called when a class template TYPE is redeclared with the indicated
5492 template PARMS, e.g.:
5493
5494 template <class T> struct S;
5495 template <class T> struct S {}; */
5496
5497 bool
5498 redeclare_class_template (tree type, tree parms, tree cons)
5499 {
5500 tree tmpl;
5501 tree tmpl_parms;
5502 int i;
5503
5504 if (!TYPE_TEMPLATE_INFO (type))
5505 {
5506 error ("%qT is not a template type", type);
5507 return false;
5508 }
5509
5510 tmpl = TYPE_TI_TEMPLATE (type);
5511 if (!PRIMARY_TEMPLATE_P (tmpl))
5512 /* The type is nested in some template class. Nothing to worry
5513 about here; there are no new template parameters for the nested
5514 type. */
5515 return true;
5516
5517 if (!parms)
5518 {
5519 error ("template specifiers not specified in declaration of %qD",
5520 tmpl);
5521 return false;
5522 }
5523
5524 parms = INNERMOST_TEMPLATE_PARMS (parms);
5525 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5526
5527 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5528 {
5529 error_n (input_location, TREE_VEC_LENGTH (parms),
5530 "redeclared with %d template parameter",
5531 "redeclared with %d template parameters",
5532 TREE_VEC_LENGTH (parms));
5533 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5534 "previous declaration %qD used %d template parameter",
5535 "previous declaration %qD used %d template parameters",
5536 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5537 return false;
5538 }
5539
5540 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5541 {
5542 tree tmpl_parm;
5543 tree parm;
5544 tree tmpl_default;
5545 tree parm_default;
5546
5547 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5548 || TREE_VEC_ELT (parms, i) == error_mark_node)
5549 continue;
5550
5551 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5552 if (error_operand_p (tmpl_parm))
5553 return false;
5554
5555 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5556 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5557 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5558
5559 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5560 TEMPLATE_DECL. */
5561 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5562 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5563 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5564 || (TREE_CODE (tmpl_parm) != PARM_DECL
5565 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5566 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5567 || (TREE_CODE (tmpl_parm) == PARM_DECL
5568 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5569 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5570 {
5571 error ("template parameter %q+#D", tmpl_parm);
5572 error ("redeclared here as %q#D", parm);
5573 return false;
5574 }
5575
5576 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5577 {
5578 /* We have in [temp.param]:
5579
5580 A template-parameter may not be given default arguments
5581 by two different declarations in the same scope. */
5582 error_at (input_location, "redefinition of default argument for %q#D", parm);
5583 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5584 "original definition appeared here");
5585 return false;
5586 }
5587
5588 if (parm_default != NULL_TREE)
5589 /* Update the previous template parameters (which are the ones
5590 that will really count) with the new default value. */
5591 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5592 else if (tmpl_default != NULL_TREE)
5593 /* Update the new parameters, too; they'll be used as the
5594 parameters for any members. */
5595 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5596
5597 /* Give each template template parm in this redeclaration a
5598 DECL_CONTEXT of the template for which they are a parameter. */
5599 if (TREE_CODE (parm) == TEMPLATE_DECL)
5600 {
5601 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5602 DECL_CONTEXT (parm) = tmpl;
5603 }
5604 }
5605
5606 // Cannot redeclare a class template with a different set of constraints.
5607 if (!equivalent_constraints (get_constraints (tmpl), cons))
5608 {
5609 error_at (input_location, "redeclaration %q#D with different "
5610 "constraints", tmpl);
5611 inform (DECL_SOURCE_LOCATION (tmpl),
5612 "original declaration appeared here");
5613 }
5614
5615 return true;
5616 }
5617
5618 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5619 to be used when the caller has already checked
5620 (processing_template_decl
5621 && !instantiation_dependent_expression_p (expr)
5622 && potential_constant_expression (expr))
5623 and cleared processing_template_decl. */
5624
5625 tree
5626 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5627 {
5628 return tsubst_copy_and_build (expr,
5629 /*args=*/NULL_TREE,
5630 complain,
5631 /*in_decl=*/NULL_TREE,
5632 /*function_p=*/false,
5633 /*integral_constant_expression_p=*/true);
5634 }
5635
5636 /* Simplify EXPR if it is a non-dependent expression. Returns the
5637 (possibly simplified) expression. */
5638
5639 tree
5640 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5641 {
5642 if (expr == NULL_TREE)
5643 return NULL_TREE;
5644
5645 /* If we're in a template, but EXPR isn't value dependent, simplify
5646 it. We're supposed to treat:
5647
5648 template <typename T> void f(T[1 + 1]);
5649 template <typename T> void f(T[2]);
5650
5651 as two declarations of the same function, for example. */
5652 if (processing_template_decl
5653 && !instantiation_dependent_expression_p (expr)
5654 && potential_constant_expression (expr))
5655 {
5656 processing_template_decl_sentinel s;
5657 expr = instantiate_non_dependent_expr_internal (expr, complain);
5658 }
5659 return expr;
5660 }
5661
5662 tree
5663 instantiate_non_dependent_expr (tree expr)
5664 {
5665 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5666 }
5667
5668 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5669 an uninstantiated expression. */
5670
5671 tree
5672 instantiate_non_dependent_or_null (tree expr)
5673 {
5674 if (expr == NULL_TREE)
5675 return NULL_TREE;
5676 if (processing_template_decl)
5677 {
5678 if (instantiation_dependent_expression_p (expr)
5679 || !potential_constant_expression (expr))
5680 expr = NULL_TREE;
5681 else
5682 {
5683 processing_template_decl_sentinel s;
5684 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5685 }
5686 }
5687 return expr;
5688 }
5689
5690 /* True iff T is a specialization of a variable template. */
5691
5692 bool
5693 variable_template_specialization_p (tree t)
5694 {
5695 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5696 return false;
5697 tree tmpl = DECL_TI_TEMPLATE (t);
5698 return variable_template_p (tmpl);
5699 }
5700
5701 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5702 template declaration, or a TYPE_DECL for an alias declaration. */
5703
5704 bool
5705 alias_type_or_template_p (tree t)
5706 {
5707 if (t == NULL_TREE)
5708 return false;
5709 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5710 || (TYPE_P (t)
5711 && TYPE_NAME (t)
5712 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5713 || DECL_ALIAS_TEMPLATE_P (t));
5714 }
5715
5716 /* Return TRUE iff T is a specialization of an alias template. */
5717
5718 bool
5719 alias_template_specialization_p (const_tree t)
5720 {
5721 /* It's an alias template specialization if it's an alias and its
5722 TYPE_NAME is a specialization of a primary template. */
5723 if (TYPE_ALIAS_P (t))
5724 {
5725 tree name = TYPE_NAME (t);
5726 if (DECL_LANG_SPECIFIC (name))
5727 if (tree ti = DECL_TEMPLATE_INFO (name))
5728 {
5729 tree tmpl = TI_TEMPLATE (ti);
5730 return PRIMARY_TEMPLATE_P (tmpl);
5731 }
5732 }
5733 return false;
5734 }
5735
5736 /* An alias template is complex from a SFINAE perspective if a template-id
5737 using that alias can be ill-formed when the expansion is not, as with
5738 the void_t template. We determine this by checking whether the
5739 expansion for the alias template uses all its template parameters. */
5740
5741 struct uses_all_template_parms_data
5742 {
5743 int level;
5744 bool *seen;
5745 };
5746
5747 static int
5748 uses_all_template_parms_r (tree t, void *data_)
5749 {
5750 struct uses_all_template_parms_data &data
5751 = *(struct uses_all_template_parms_data*)data_;
5752 tree idx = get_template_parm_index (t);
5753
5754 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5755 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5756 return 0;
5757 }
5758
5759 static bool
5760 complex_alias_template_p (const_tree tmpl)
5761 {
5762 struct uses_all_template_parms_data data;
5763 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5764 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5765 data.level = TMPL_PARMS_DEPTH (parms);
5766 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5767 data.seen = XALLOCAVEC (bool, len);
5768 for (int i = 0; i < len; ++i)
5769 data.seen[i] = false;
5770
5771 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5772 for (int i = 0; i < len; ++i)
5773 if (!data.seen[i])
5774 return true;
5775 return false;
5776 }
5777
5778 /* Return TRUE iff T is a specialization of a complex alias template with
5779 dependent template-arguments. */
5780
5781 bool
5782 dependent_alias_template_spec_p (const_tree t)
5783 {
5784 return (alias_template_specialization_p (t)
5785 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5786 && (any_dependent_template_arguments_p
5787 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5788 }
5789
5790 /* Return the number of innermost template parameters in TMPL. */
5791
5792 static int
5793 num_innermost_template_parms (tree tmpl)
5794 {
5795 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5796 return TREE_VEC_LENGTH (parms);
5797 }
5798
5799 /* Return either TMPL or another template that it is equivalent to under DR
5800 1286: An alias that just changes the name of a template is equivalent to
5801 the other template. */
5802
5803 static tree
5804 get_underlying_template (tree tmpl)
5805 {
5806 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5807 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5808 {
5809 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5810 if (TYPE_TEMPLATE_INFO (result))
5811 {
5812 tree sub = TYPE_TI_TEMPLATE (result);
5813 if (PRIMARY_TEMPLATE_P (sub)
5814 && (num_innermost_template_parms (tmpl)
5815 == num_innermost_template_parms (sub)))
5816 {
5817 tree alias_args = INNERMOST_TEMPLATE_ARGS
5818 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5819 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5820 break;
5821 /* The alias type is equivalent to the pattern of the
5822 underlying template, so strip the alias. */
5823 tmpl = sub;
5824 continue;
5825 }
5826 }
5827 break;
5828 }
5829 return tmpl;
5830 }
5831
5832 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5833 must be a function or a pointer-to-function type, as specified
5834 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5835 and check that the resulting function has external linkage. */
5836
5837 static tree
5838 convert_nontype_argument_function (tree type, tree expr,
5839 tsubst_flags_t complain)
5840 {
5841 tree fns = expr;
5842 tree fn, fn_no_ptr;
5843 linkage_kind linkage;
5844
5845 fn = instantiate_type (type, fns, tf_none);
5846 if (fn == error_mark_node)
5847 return error_mark_node;
5848
5849 fn_no_ptr = fn;
5850 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5851 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5852 if (BASELINK_P (fn_no_ptr))
5853 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5854
5855 /* [temp.arg.nontype]/1
5856
5857 A template-argument for a non-type, non-template template-parameter
5858 shall be one of:
5859 [...]
5860 -- the address of an object or function with external [C++11: or
5861 internal] linkage. */
5862
5863 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5864 {
5865 if (complain & tf_error)
5866 {
5867 error ("%qE is not a valid template argument for type %qT",
5868 expr, type);
5869 if (TYPE_PTR_P (type))
5870 error ("it must be the address of a function with "
5871 "external linkage");
5872 else
5873 error ("it must be the name of a function with "
5874 "external linkage");
5875 }
5876 return NULL_TREE;
5877 }
5878
5879 linkage = decl_linkage (fn_no_ptr);
5880 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5881 {
5882 if (complain & tf_error)
5883 {
5884 if (cxx_dialect >= cxx11)
5885 error ("%qE is not a valid template argument for type %qT "
5886 "because %qD has no linkage",
5887 expr, type, fn_no_ptr);
5888 else
5889 error ("%qE is not a valid template argument for type %qT "
5890 "because %qD does not have external linkage",
5891 expr, type, fn_no_ptr);
5892 }
5893 return NULL_TREE;
5894 }
5895
5896 return fn;
5897 }
5898
5899 /* Subroutine of convert_nontype_argument.
5900 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5901 Emit an error otherwise. */
5902
5903 static bool
5904 check_valid_ptrmem_cst_expr (tree type, tree expr,
5905 tsubst_flags_t complain)
5906 {
5907 STRIP_NOPS (expr);
5908 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5909 return true;
5910 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5911 return true;
5912 if (processing_template_decl
5913 && TREE_CODE (expr) == ADDR_EXPR
5914 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5915 return true;
5916 if (complain & tf_error)
5917 {
5918 error ("%qE is not a valid template argument for type %qT",
5919 expr, type);
5920 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5921 }
5922 return false;
5923 }
5924
5925 /* Returns TRUE iff the address of OP is value-dependent.
5926
5927 14.6.2.4 [temp.dep.temp]:
5928 A non-integral non-type template-argument is dependent if its type is
5929 dependent or it has either of the following forms
5930 qualified-id
5931 & qualified-id
5932 and contains a nested-name-specifier which specifies a class-name that
5933 names a dependent type.
5934
5935 We generalize this to just say that the address of a member of a
5936 dependent class is value-dependent; the above doesn't cover the
5937 address of a static data member named with an unqualified-id. */
5938
5939 static bool
5940 has_value_dependent_address (tree op)
5941 {
5942 /* We could use get_inner_reference here, but there's no need;
5943 this is only relevant for template non-type arguments, which
5944 can only be expressed as &id-expression. */
5945 if (DECL_P (op))
5946 {
5947 tree ctx = CP_DECL_CONTEXT (op);
5948 if (TYPE_P (ctx) && dependent_type_p (ctx))
5949 return true;
5950 }
5951
5952 return false;
5953 }
5954
5955 /* The next set of functions are used for providing helpful explanatory
5956 diagnostics for failed overload resolution. Their messages should be
5957 indented by two spaces for consistency with the messages in
5958 call.c */
5959
5960 static int
5961 unify_success (bool /*explain_p*/)
5962 {
5963 return 0;
5964 }
5965
5966 static int
5967 unify_parameter_deduction_failure (bool explain_p, tree parm)
5968 {
5969 if (explain_p)
5970 inform (input_location,
5971 " couldn't deduce template parameter %qD", parm);
5972 return 1;
5973 }
5974
5975 static int
5976 unify_invalid (bool /*explain_p*/)
5977 {
5978 return 1;
5979 }
5980
5981 static int
5982 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5983 {
5984 if (explain_p)
5985 inform (input_location,
5986 " types %qT and %qT have incompatible cv-qualifiers",
5987 parm, arg);
5988 return 1;
5989 }
5990
5991 static int
5992 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5993 {
5994 if (explain_p)
5995 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5996 return 1;
5997 }
5998
5999 static int
6000 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6001 {
6002 if (explain_p)
6003 inform (input_location,
6004 " template parameter %qD is not a parameter pack, but "
6005 "argument %qD is",
6006 parm, arg);
6007 return 1;
6008 }
6009
6010 static int
6011 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6012 {
6013 if (explain_p)
6014 inform (input_location,
6015 " template argument %qE does not match "
6016 "pointer-to-member constant %qE",
6017 arg, parm);
6018 return 1;
6019 }
6020
6021 static int
6022 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6023 {
6024 if (explain_p)
6025 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6026 return 1;
6027 }
6028
6029 static int
6030 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6031 {
6032 if (explain_p)
6033 inform (input_location,
6034 " inconsistent parameter pack deduction with %qT and %qT",
6035 old_arg, new_arg);
6036 return 1;
6037 }
6038
6039 static int
6040 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6041 {
6042 if (explain_p)
6043 {
6044 if (TYPE_P (parm))
6045 inform (input_location,
6046 " deduced conflicting types for parameter %qT (%qT and %qT)",
6047 parm, first, second);
6048 else
6049 inform (input_location,
6050 " deduced conflicting values for non-type parameter "
6051 "%qE (%qE and %qE)", parm, first, second);
6052 }
6053 return 1;
6054 }
6055
6056 static int
6057 unify_vla_arg (bool explain_p, tree arg)
6058 {
6059 if (explain_p)
6060 inform (input_location,
6061 " variable-sized array type %qT is not "
6062 "a valid template argument",
6063 arg);
6064 return 1;
6065 }
6066
6067 static int
6068 unify_method_type_error (bool explain_p, tree arg)
6069 {
6070 if (explain_p)
6071 inform (input_location,
6072 " member function type %qT is not a valid template argument",
6073 arg);
6074 return 1;
6075 }
6076
6077 static int
6078 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6079 {
6080 if (explain_p)
6081 {
6082 if (least_p)
6083 inform_n (input_location, wanted,
6084 " candidate expects at least %d argument, %d provided",
6085 " candidate expects at least %d arguments, %d provided",
6086 wanted, have);
6087 else
6088 inform_n (input_location, wanted,
6089 " candidate expects %d argument, %d provided",
6090 " candidate expects %d arguments, %d provided",
6091 wanted, have);
6092 }
6093 return 1;
6094 }
6095
6096 static int
6097 unify_too_many_arguments (bool explain_p, int have, int wanted)
6098 {
6099 return unify_arity (explain_p, have, wanted);
6100 }
6101
6102 static int
6103 unify_too_few_arguments (bool explain_p, int have, int wanted,
6104 bool least_p = false)
6105 {
6106 return unify_arity (explain_p, have, wanted, least_p);
6107 }
6108
6109 static int
6110 unify_arg_conversion (bool explain_p, tree to_type,
6111 tree from_type, tree arg)
6112 {
6113 if (explain_p)
6114 inform (EXPR_LOC_OR_LOC (arg, input_location),
6115 " cannot convert %qE (type %qT) to type %qT",
6116 arg, from_type, to_type);
6117 return 1;
6118 }
6119
6120 static int
6121 unify_no_common_base (bool explain_p, enum template_base_result r,
6122 tree parm, tree arg)
6123 {
6124 if (explain_p)
6125 switch (r)
6126 {
6127 case tbr_ambiguous_baseclass:
6128 inform (input_location, " %qT is an ambiguous base class of %qT",
6129 parm, arg);
6130 break;
6131 default:
6132 inform (input_location, " %qT is not derived from %qT", arg, parm);
6133 break;
6134 }
6135 return 1;
6136 }
6137
6138 static int
6139 unify_inconsistent_template_template_parameters (bool explain_p)
6140 {
6141 if (explain_p)
6142 inform (input_location,
6143 " template parameters of a template template argument are "
6144 "inconsistent with other deduced template arguments");
6145 return 1;
6146 }
6147
6148 static int
6149 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6150 {
6151 if (explain_p)
6152 inform (input_location,
6153 " can't deduce a template for %qT from non-template type %qT",
6154 parm, arg);
6155 return 1;
6156 }
6157
6158 static int
6159 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6160 {
6161 if (explain_p)
6162 inform (input_location,
6163 " template argument %qE does not match %qD", arg, parm);
6164 return 1;
6165 }
6166
6167 static int
6168 unify_overload_resolution_failure (bool explain_p, tree arg)
6169 {
6170 if (explain_p)
6171 inform (input_location,
6172 " could not resolve address from overloaded function %qE",
6173 arg);
6174 return 1;
6175 }
6176
6177 /* Attempt to convert the non-type template parameter EXPR to the
6178 indicated TYPE. If the conversion is successful, return the
6179 converted value. If the conversion is unsuccessful, return
6180 NULL_TREE if we issued an error message, or error_mark_node if we
6181 did not. We issue error messages for out-and-out bad template
6182 parameters, but not simply because the conversion failed, since we
6183 might be just trying to do argument deduction. Both TYPE and EXPR
6184 must be non-dependent.
6185
6186 The conversion follows the special rules described in
6187 [temp.arg.nontype], and it is much more strict than an implicit
6188 conversion.
6189
6190 This function is called twice for each template argument (see
6191 lookup_template_class for a more accurate description of this
6192 problem). This means that we need to handle expressions which
6193 are not valid in a C++ source, but can be created from the
6194 first call (for instance, casts to perform conversions). These
6195 hacks can go away after we fix the double coercion problem. */
6196
6197 static tree
6198 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6199 {
6200 tree expr_type;
6201
6202 /* Detect immediately string literals as invalid non-type argument.
6203 This special-case is not needed for correctness (we would easily
6204 catch this later), but only to provide better diagnostic for this
6205 common user mistake. As suggested by DR 100, we do not mention
6206 linkage issues in the diagnostic as this is not the point. */
6207 /* FIXME we're making this OK. */
6208 if (TREE_CODE (expr) == STRING_CST)
6209 {
6210 if (complain & tf_error)
6211 error ("%qE is not a valid template argument for type %qT "
6212 "because string literals can never be used in this context",
6213 expr, type);
6214 return NULL_TREE;
6215 }
6216
6217 /* Add the ADDR_EXPR now for the benefit of
6218 value_dependent_expression_p. */
6219 if (TYPE_PTROBV_P (type)
6220 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6221 {
6222 expr = decay_conversion (expr, complain);
6223 if (expr == error_mark_node)
6224 return error_mark_node;
6225 }
6226
6227 /* If we are in a template, EXPR may be non-dependent, but still
6228 have a syntactic, rather than semantic, form. For example, EXPR
6229 might be a SCOPE_REF, rather than the VAR_DECL to which the
6230 SCOPE_REF refers. Preserving the qualifying scope is necessary
6231 so that access checking can be performed when the template is
6232 instantiated -- but here we need the resolved form so that we can
6233 convert the argument. */
6234 bool non_dep = false;
6235 if (TYPE_REF_OBJ_P (type)
6236 && has_value_dependent_address (expr))
6237 /* If we want the address and it's value-dependent, don't fold. */;
6238 else if (!type_unknown_p (expr)
6239 && processing_template_decl
6240 && !instantiation_dependent_expression_p (expr)
6241 && potential_constant_expression (expr))
6242 non_dep = true;
6243 if (error_operand_p (expr))
6244 return error_mark_node;
6245 expr_type = TREE_TYPE (expr);
6246 if (TREE_CODE (type) == REFERENCE_TYPE)
6247 expr = mark_lvalue_use (expr);
6248 else
6249 expr = mark_rvalue_use (expr);
6250
6251 /* If the argument is non-dependent, perform any conversions in
6252 non-dependent context as well. */
6253 processing_template_decl_sentinel s (non_dep);
6254 if (non_dep)
6255 expr = instantiate_non_dependent_expr_internal (expr, complain);
6256
6257 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6258 to a non-type argument of "nullptr". */
6259 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6260 expr = fold_simple (convert (type, expr));
6261
6262 /* In C++11, integral or enumeration non-type template arguments can be
6263 arbitrary constant expressions. Pointer and pointer to
6264 member arguments can be general constant expressions that evaluate
6265 to a null value, but otherwise still need to be of a specific form. */
6266 if (cxx_dialect >= cxx11)
6267 {
6268 if (TREE_CODE (expr) == PTRMEM_CST)
6269 /* A PTRMEM_CST is already constant, and a valid template
6270 argument for a parameter of pointer to member type, we just want
6271 to leave it in that form rather than lower it to a
6272 CONSTRUCTOR. */;
6273 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6274 expr = maybe_constant_value (expr);
6275 else if (cxx_dialect >= cxx1z)
6276 {
6277 if (TREE_CODE (type) != REFERENCE_TYPE)
6278 expr = maybe_constant_value (expr);
6279 else if (REFERENCE_REF_P (expr))
6280 {
6281 expr = TREE_OPERAND (expr, 0);
6282 expr = maybe_constant_value (expr);
6283 expr = convert_from_reference (expr);
6284 }
6285 }
6286 else if (TYPE_PTR_OR_PTRMEM_P (type))
6287 {
6288 tree folded = maybe_constant_value (expr);
6289 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6290 : null_member_pointer_value_p (folded))
6291 expr = folded;
6292 }
6293 }
6294
6295 /* HACK: Due to double coercion, we can get a
6296 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6297 which is the tree that we built on the first call (see
6298 below when coercing to reference to object or to reference to
6299 function). We just strip everything and get to the arg.
6300 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6301 for examples. */
6302 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6303 {
6304 tree probe_type, probe = expr;
6305 if (REFERENCE_REF_P (probe))
6306 probe = TREE_OPERAND (probe, 0);
6307 probe_type = TREE_TYPE (probe);
6308 if (TREE_CODE (probe) == NOP_EXPR)
6309 {
6310 /* ??? Maybe we could use convert_from_reference here, but we
6311 would need to relax its constraints because the NOP_EXPR
6312 could actually change the type to something more cv-qualified,
6313 and this is not folded by convert_from_reference. */
6314 tree addr = TREE_OPERAND (probe, 0);
6315 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6316 && TREE_CODE (addr) == ADDR_EXPR
6317 && TYPE_PTR_P (TREE_TYPE (addr))
6318 && (same_type_ignoring_top_level_qualifiers_p
6319 (TREE_TYPE (probe_type),
6320 TREE_TYPE (TREE_TYPE (addr)))))
6321 {
6322 expr = TREE_OPERAND (addr, 0);
6323 expr_type = TREE_TYPE (probe_type);
6324 }
6325 }
6326 }
6327
6328 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6329 parameter is a pointer to object, through decay and
6330 qualification conversion. Let's strip everything. */
6331 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6332 {
6333 tree probe = expr;
6334 STRIP_NOPS (probe);
6335 if (TREE_CODE (probe) == ADDR_EXPR
6336 && TYPE_PTR_P (TREE_TYPE (probe)))
6337 {
6338 /* Skip the ADDR_EXPR only if it is part of the decay for
6339 an array. Otherwise, it is part of the original argument
6340 in the source code. */
6341 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6342 probe = TREE_OPERAND (probe, 0);
6343 expr = probe;
6344 expr_type = TREE_TYPE (expr);
6345 }
6346 }
6347
6348 /* [temp.arg.nontype]/5, bullet 1
6349
6350 For a non-type template-parameter of integral or enumeration type,
6351 integral promotions (_conv.prom_) and integral conversions
6352 (_conv.integral_) are applied. */
6353 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6354 {
6355 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6356 t = maybe_constant_value (t);
6357 if (t != error_mark_node)
6358 expr = t;
6359
6360 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6361 return error_mark_node;
6362
6363 /* Notice that there are constant expressions like '4 % 0' which
6364 do not fold into integer constants. */
6365 if (TREE_CODE (expr) != INTEGER_CST)
6366 {
6367 if (complain & tf_error)
6368 {
6369 int errs = errorcount, warns = warningcount + werrorcount;
6370 if (processing_template_decl
6371 && !require_potential_constant_expression (expr))
6372 return NULL_TREE;
6373 expr = cxx_constant_value (expr);
6374 if (errorcount > errs || warningcount + werrorcount > warns)
6375 inform (EXPR_LOC_OR_LOC (expr, input_location),
6376 "in template argument for type %qT ", type);
6377 if (expr == error_mark_node)
6378 return NULL_TREE;
6379 /* else cxx_constant_value complained but gave us
6380 a real constant, so go ahead. */
6381 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6382 }
6383 else
6384 return NULL_TREE;
6385 }
6386
6387 /* Avoid typedef problems. */
6388 if (TREE_TYPE (expr) != type)
6389 expr = fold_convert (type, expr);
6390 }
6391 /* [temp.arg.nontype]/5, bullet 2
6392
6393 For a non-type template-parameter of type pointer to object,
6394 qualification conversions (_conv.qual_) and the array-to-pointer
6395 conversion (_conv.array_) are applied. */
6396 else if (TYPE_PTROBV_P (type))
6397 {
6398 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6399
6400 A template-argument for a non-type, non-template template-parameter
6401 shall be one of: [...]
6402
6403 -- the name of a non-type template-parameter;
6404 -- the address of an object or function with external linkage, [...]
6405 expressed as "& id-expression" where the & is optional if the name
6406 refers to a function or array, or if the corresponding
6407 template-parameter is a reference.
6408
6409 Here, we do not care about functions, as they are invalid anyway
6410 for a parameter of type pointer-to-object. */
6411
6412 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6413 /* Non-type template parameters are OK. */
6414 ;
6415 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6416 /* Null pointer values are OK in C++11. */;
6417 else if (TREE_CODE (expr) != ADDR_EXPR
6418 && TREE_CODE (expr_type) != ARRAY_TYPE)
6419 {
6420 if (VAR_P (expr))
6421 {
6422 if (complain & tf_error)
6423 error ("%qD is not a valid template argument "
6424 "because %qD is a variable, not the address of "
6425 "a variable", expr, expr);
6426 return NULL_TREE;
6427 }
6428 if (POINTER_TYPE_P (expr_type))
6429 {
6430 if (complain & tf_error)
6431 error ("%qE is not a valid template argument for %qT "
6432 "because it is not the address of a variable",
6433 expr, type);
6434 return NULL_TREE;
6435 }
6436 /* Other values, like integer constants, might be valid
6437 non-type arguments of some other type. */
6438 return error_mark_node;
6439 }
6440 else
6441 {
6442 tree decl;
6443
6444 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6445 ? TREE_OPERAND (expr, 0) : expr);
6446 if (!VAR_P (decl))
6447 {
6448 if (complain & tf_error)
6449 error ("%qE is not a valid template argument of type %qT "
6450 "because %qE is not a variable", expr, type, decl);
6451 return NULL_TREE;
6452 }
6453 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6454 {
6455 if (complain & tf_error)
6456 error ("%qE is not a valid template argument of type %qT "
6457 "because %qD does not have external linkage",
6458 expr, type, decl);
6459 return NULL_TREE;
6460 }
6461 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6462 {
6463 if (complain & tf_error)
6464 error ("%qE is not a valid template argument of type %qT "
6465 "because %qD has no linkage", expr, type, decl);
6466 return NULL_TREE;
6467 }
6468 }
6469
6470 expr = decay_conversion (expr, complain);
6471 if (expr == error_mark_node)
6472 return error_mark_node;
6473
6474 expr = perform_qualification_conversions (type, expr);
6475 if (expr == error_mark_node)
6476 return error_mark_node;
6477 }
6478 /* [temp.arg.nontype]/5, bullet 3
6479
6480 For a non-type template-parameter of type reference to object, no
6481 conversions apply. The type referred to by the reference may be more
6482 cv-qualified than the (otherwise identical) type of the
6483 template-argument. The template-parameter is bound directly to the
6484 template-argument, which must be an lvalue. */
6485 else if (TYPE_REF_OBJ_P (type))
6486 {
6487 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6488 expr_type))
6489 return error_mark_node;
6490
6491 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6492 {
6493 if (complain & tf_error)
6494 error ("%qE is not a valid template argument for type %qT "
6495 "because of conflicts in cv-qualification", expr, type);
6496 return NULL_TREE;
6497 }
6498
6499 if (!real_lvalue_p (expr))
6500 {
6501 if (complain & tf_error)
6502 error ("%qE is not a valid template argument for type %qT "
6503 "because it is not an lvalue", expr, type);
6504 return NULL_TREE;
6505 }
6506
6507 /* [temp.arg.nontype]/1
6508
6509 A template-argument for a non-type, non-template template-parameter
6510 shall be one of: [...]
6511
6512 -- the address of an object or function with external linkage. */
6513 if (INDIRECT_REF_P (expr)
6514 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6515 {
6516 expr = TREE_OPERAND (expr, 0);
6517 if (DECL_P (expr))
6518 {
6519 if (complain & tf_error)
6520 error ("%q#D is not a valid template argument for type %qT "
6521 "because a reference variable does not have a constant "
6522 "address", expr, type);
6523 return NULL_TREE;
6524 }
6525 }
6526
6527 if (!DECL_P (expr))
6528 {
6529 if (complain & tf_error)
6530 error ("%qE is not a valid template argument for type %qT "
6531 "because it is not an object with linkage",
6532 expr, type);
6533 return NULL_TREE;
6534 }
6535
6536 /* DR 1155 allows internal linkage in C++11 and up. */
6537 linkage_kind linkage = decl_linkage (expr);
6538 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6539 {
6540 if (complain & tf_error)
6541 error ("%qE is not a valid template argument for type %qT "
6542 "because object %qD does not have linkage",
6543 expr, type, expr);
6544 return NULL_TREE;
6545 }
6546
6547 expr = build_nop (type, build_address (expr));
6548 }
6549 /* [temp.arg.nontype]/5, bullet 4
6550
6551 For a non-type template-parameter of type pointer to function, only
6552 the function-to-pointer conversion (_conv.func_) is applied. If the
6553 template-argument represents a set of overloaded functions (or a
6554 pointer to such), the matching function is selected from the set
6555 (_over.over_). */
6556 else if (TYPE_PTRFN_P (type))
6557 {
6558 /* If the argument is a template-id, we might not have enough
6559 context information to decay the pointer. */
6560 if (!type_unknown_p (expr_type))
6561 {
6562 expr = decay_conversion (expr, complain);
6563 if (expr == error_mark_node)
6564 return error_mark_node;
6565 }
6566
6567 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6568 /* Null pointer values are OK in C++11. */
6569 return perform_qualification_conversions (type, expr);
6570
6571 expr = convert_nontype_argument_function (type, expr, complain);
6572 if (!expr || expr == error_mark_node)
6573 return expr;
6574 }
6575 /* [temp.arg.nontype]/5, bullet 5
6576
6577 For a non-type template-parameter of type reference to function, no
6578 conversions apply. If the template-argument represents a set of
6579 overloaded functions, the matching function is selected from the set
6580 (_over.over_). */
6581 else if (TYPE_REFFN_P (type))
6582 {
6583 if (TREE_CODE (expr) == ADDR_EXPR)
6584 {
6585 if (complain & tf_error)
6586 {
6587 error ("%qE is not a valid template argument for type %qT "
6588 "because it is a pointer", expr, type);
6589 inform (input_location, "try using %qE instead",
6590 TREE_OPERAND (expr, 0));
6591 }
6592 return NULL_TREE;
6593 }
6594
6595 expr = convert_nontype_argument_function (type, expr, complain);
6596 if (!expr || expr == error_mark_node)
6597 return expr;
6598
6599 expr = build_nop (type, build_address (expr));
6600 }
6601 /* [temp.arg.nontype]/5, bullet 6
6602
6603 For a non-type template-parameter of type pointer to member function,
6604 no conversions apply. If the template-argument represents a set of
6605 overloaded member functions, the matching member function is selected
6606 from the set (_over.over_). */
6607 else if (TYPE_PTRMEMFUNC_P (type))
6608 {
6609 expr = instantiate_type (type, expr, tf_none);
6610 if (expr == error_mark_node)
6611 return error_mark_node;
6612
6613 /* [temp.arg.nontype] bullet 1 says the pointer to member
6614 expression must be a pointer-to-member constant. */
6615 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6616 return error_mark_node;
6617
6618 /* There is no way to disable standard conversions in
6619 resolve_address_of_overloaded_function (called by
6620 instantiate_type). It is possible that the call succeeded by
6621 converting &B::I to &D::I (where B is a base of D), so we need
6622 to reject this conversion here.
6623
6624 Actually, even if there was a way to disable standard conversions,
6625 it would still be better to reject them here so that we can
6626 provide a superior diagnostic. */
6627 if (!same_type_p (TREE_TYPE (expr), type))
6628 {
6629 if (complain & tf_error)
6630 {
6631 error ("%qE is not a valid template argument for type %qT "
6632 "because it is of type %qT", expr, type,
6633 TREE_TYPE (expr));
6634 /* If we are just one standard conversion off, explain. */
6635 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6636 inform (input_location,
6637 "standard conversions are not allowed in this context");
6638 }
6639 return NULL_TREE;
6640 }
6641 }
6642 /* [temp.arg.nontype]/5, bullet 7
6643
6644 For a non-type template-parameter of type pointer to data member,
6645 qualification conversions (_conv.qual_) are applied. */
6646 else if (TYPE_PTRDATAMEM_P (type))
6647 {
6648 /* [temp.arg.nontype] bullet 1 says the pointer to member
6649 expression must be a pointer-to-member constant. */
6650 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6651 return error_mark_node;
6652
6653 expr = perform_qualification_conversions (type, expr);
6654 if (expr == error_mark_node)
6655 return expr;
6656 }
6657 else if (NULLPTR_TYPE_P (type))
6658 {
6659 if (expr != nullptr_node)
6660 {
6661 if (complain & tf_error)
6662 error ("%qE is not a valid template argument for type %qT "
6663 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6664 return NULL_TREE;
6665 }
6666 return expr;
6667 }
6668 /* A template non-type parameter must be one of the above. */
6669 else
6670 gcc_unreachable ();
6671
6672 /* Sanity check: did we actually convert the argument to the
6673 right type? */
6674 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6675 (type, TREE_TYPE (expr)));
6676 return convert_from_reference (expr);
6677 }
6678
6679 /* Subroutine of coerce_template_template_parms, which returns 1 if
6680 PARM_PARM and ARG_PARM match using the rule for the template
6681 parameters of template template parameters. Both PARM and ARG are
6682 template parameters; the rest of the arguments are the same as for
6683 coerce_template_template_parms.
6684 */
6685 static int
6686 coerce_template_template_parm (tree parm,
6687 tree arg,
6688 tsubst_flags_t complain,
6689 tree in_decl,
6690 tree outer_args)
6691 {
6692 if (arg == NULL_TREE || error_operand_p (arg)
6693 || parm == NULL_TREE || error_operand_p (parm))
6694 return 0;
6695
6696 if (TREE_CODE (arg) != TREE_CODE (parm))
6697 return 0;
6698
6699 switch (TREE_CODE (parm))
6700 {
6701 case TEMPLATE_DECL:
6702 /* We encounter instantiations of templates like
6703 template <template <template <class> class> class TT>
6704 class C; */
6705 {
6706 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6707 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6708
6709 if (!coerce_template_template_parms
6710 (parmparm, argparm, complain, in_decl, outer_args))
6711 return 0;
6712 }
6713 /* Fall through. */
6714
6715 case TYPE_DECL:
6716 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6717 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6718 /* Argument is a parameter pack but parameter is not. */
6719 return 0;
6720 break;
6721
6722 case PARM_DECL:
6723 /* The tsubst call is used to handle cases such as
6724
6725 template <int> class C {};
6726 template <class T, template <T> class TT> class D {};
6727 D<int, C> d;
6728
6729 i.e. the parameter list of TT depends on earlier parameters. */
6730 if (!uses_template_parms (TREE_TYPE (arg)))
6731 {
6732 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6733 if (!uses_template_parms (t)
6734 && !same_type_p (t, TREE_TYPE (arg)))
6735 return 0;
6736 }
6737
6738 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6739 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6740 /* Argument is a parameter pack but parameter is not. */
6741 return 0;
6742
6743 break;
6744
6745 default:
6746 gcc_unreachable ();
6747 }
6748
6749 return 1;
6750 }
6751
6752
6753 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6754 template template parameters. Both PARM_PARMS and ARG_PARMS are
6755 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6756 or PARM_DECL.
6757
6758 Consider the example:
6759 template <class T> class A;
6760 template<template <class U> class TT> class B;
6761
6762 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6763 the parameters to A, and OUTER_ARGS contains A. */
6764
6765 static int
6766 coerce_template_template_parms (tree parm_parms,
6767 tree arg_parms,
6768 tsubst_flags_t complain,
6769 tree in_decl,
6770 tree outer_args)
6771 {
6772 int nparms, nargs, i;
6773 tree parm, arg;
6774 int variadic_p = 0;
6775
6776 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6777 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6778
6779 nparms = TREE_VEC_LENGTH (parm_parms);
6780 nargs = TREE_VEC_LENGTH (arg_parms);
6781
6782 /* Determine whether we have a parameter pack at the end of the
6783 template template parameter's template parameter list. */
6784 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6785 {
6786 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6787
6788 if (error_operand_p (parm))
6789 return 0;
6790
6791 switch (TREE_CODE (parm))
6792 {
6793 case TEMPLATE_DECL:
6794 case TYPE_DECL:
6795 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6796 variadic_p = 1;
6797 break;
6798
6799 case PARM_DECL:
6800 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6801 variadic_p = 1;
6802 break;
6803
6804 default:
6805 gcc_unreachable ();
6806 }
6807 }
6808
6809 if (nargs != nparms
6810 && !(variadic_p && nargs >= nparms - 1))
6811 return 0;
6812
6813 /* Check all of the template parameters except the parameter pack at
6814 the end (if any). */
6815 for (i = 0; i < nparms - variadic_p; ++i)
6816 {
6817 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6818 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6819 continue;
6820
6821 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6822 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6823
6824 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6825 outer_args))
6826 return 0;
6827
6828 }
6829
6830 if (variadic_p)
6831 {
6832 /* Check each of the template parameters in the template
6833 argument against the template parameter pack at the end of
6834 the template template parameter. */
6835 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6836 return 0;
6837
6838 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6839
6840 for (; i < nargs; ++i)
6841 {
6842 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6843 continue;
6844
6845 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6846
6847 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6848 outer_args))
6849 return 0;
6850 }
6851 }
6852
6853 return 1;
6854 }
6855
6856 /* Verifies that the deduced template arguments (in TARGS) for the
6857 template template parameters (in TPARMS) represent valid bindings,
6858 by comparing the template parameter list of each template argument
6859 to the template parameter list of its corresponding template
6860 template parameter, in accordance with DR150. This
6861 routine can only be called after all template arguments have been
6862 deduced. It will return TRUE if all of the template template
6863 parameter bindings are okay, FALSE otherwise. */
6864 bool
6865 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6866 {
6867 int i, ntparms = TREE_VEC_LENGTH (tparms);
6868 bool ret = true;
6869
6870 /* We're dealing with template parms in this process. */
6871 ++processing_template_decl;
6872
6873 targs = INNERMOST_TEMPLATE_ARGS (targs);
6874
6875 for (i = 0; i < ntparms; ++i)
6876 {
6877 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6878 tree targ = TREE_VEC_ELT (targs, i);
6879
6880 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6881 {
6882 tree packed_args = NULL_TREE;
6883 int idx, len = 1;
6884
6885 if (ARGUMENT_PACK_P (targ))
6886 {
6887 /* Look inside the argument pack. */
6888 packed_args = ARGUMENT_PACK_ARGS (targ);
6889 len = TREE_VEC_LENGTH (packed_args);
6890 }
6891
6892 for (idx = 0; idx < len; ++idx)
6893 {
6894 tree targ_parms = NULL_TREE;
6895
6896 if (packed_args)
6897 /* Extract the next argument from the argument
6898 pack. */
6899 targ = TREE_VEC_ELT (packed_args, idx);
6900
6901 if (PACK_EXPANSION_P (targ))
6902 /* Look at the pattern of the pack expansion. */
6903 targ = PACK_EXPANSION_PATTERN (targ);
6904
6905 /* Extract the template parameters from the template
6906 argument. */
6907 if (TREE_CODE (targ) == TEMPLATE_DECL)
6908 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6909 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6910 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6911
6912 /* Verify that we can coerce the template template
6913 parameters from the template argument to the template
6914 parameter. This requires an exact match. */
6915 if (targ_parms
6916 && !coerce_template_template_parms
6917 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6918 targ_parms,
6919 tf_none,
6920 tparm,
6921 targs))
6922 {
6923 ret = false;
6924 goto out;
6925 }
6926 }
6927 }
6928 }
6929
6930 out:
6931
6932 --processing_template_decl;
6933 return ret;
6934 }
6935
6936 /* Since type attributes aren't mangled, we need to strip them from
6937 template type arguments. */
6938
6939 static tree
6940 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6941 {
6942 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6943 return arg;
6944 bool removed_attributes = false;
6945 tree canon = strip_typedefs (arg, &removed_attributes);
6946 if (removed_attributes
6947 && (complain & tf_warning))
6948 warning (0, "ignoring attributes on template argument %qT", arg);
6949 return canon;
6950 }
6951
6952 // A template declaration can be substituted for a constrained
6953 // template template parameter only when the argument is more
6954 // constrained than the parameter.
6955 static bool
6956 is_compatible_template_arg (tree parm, tree arg)
6957 {
6958 tree parm_cons = get_constraints (parm);
6959
6960 /* For now, allow constrained template template arguments
6961 and unconstrained template template parameters. */
6962 if (parm_cons == NULL_TREE)
6963 return true;
6964
6965 tree arg_cons = get_constraints (arg);
6966
6967 // If the template parameter is constrained, we need to rewrite its
6968 // constraints in terms of the ARG's template parameters. This ensures
6969 // that all of the template parameter types will have the same depth.
6970 //
6971 // Note that this is only valid when coerce_template_template_parm is
6972 // true for the innermost template parameters of PARM and ARG. In other
6973 // words, because coercion is successful, this conversion will be valid.
6974 if (parm_cons)
6975 {
6976 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6977 parm_cons = tsubst_constraint_info (parm_cons,
6978 INNERMOST_TEMPLATE_ARGS (args),
6979 tf_none, NULL_TREE);
6980 if (parm_cons == error_mark_node)
6981 return false;
6982 }
6983
6984 return subsumes (parm_cons, arg_cons);
6985 }
6986
6987 // Convert a placeholder argument into a binding to the original
6988 // parameter. The original parameter is saved as the TREE_TYPE of
6989 // ARG.
6990 static inline tree
6991 convert_wildcard_argument (tree parm, tree arg)
6992 {
6993 TREE_TYPE (arg) = parm;
6994 return arg;
6995 }
6996
6997 /* Convert the indicated template ARG as necessary to match the
6998 indicated template PARM. Returns the converted ARG, or
6999 error_mark_node if the conversion was unsuccessful. Error and
7000 warning messages are issued under control of COMPLAIN. This
7001 conversion is for the Ith parameter in the parameter list. ARGS is
7002 the full set of template arguments deduced so far. */
7003
7004 static tree
7005 convert_template_argument (tree parm,
7006 tree arg,
7007 tree args,
7008 tsubst_flags_t complain,
7009 int i,
7010 tree in_decl)
7011 {
7012 tree orig_arg;
7013 tree val;
7014 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7015
7016 if (parm == error_mark_node)
7017 return error_mark_node;
7018
7019 /* Trivially convert placeholders. */
7020 if (TREE_CODE (arg) == WILDCARD_DECL)
7021 return convert_wildcard_argument (parm, arg);
7022
7023 if (TREE_CODE (arg) == TREE_LIST
7024 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7025 {
7026 /* The template argument was the name of some
7027 member function. That's usually
7028 invalid, but static members are OK. In any
7029 case, grab the underlying fields/functions
7030 and issue an error later if required. */
7031 orig_arg = TREE_VALUE (arg);
7032 TREE_TYPE (arg) = unknown_type_node;
7033 }
7034
7035 orig_arg = arg;
7036
7037 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7038 requires_type = (TREE_CODE (parm) == TYPE_DECL
7039 || requires_tmpl_type);
7040
7041 /* When determining whether an argument pack expansion is a template,
7042 look at the pattern. */
7043 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7044 arg = PACK_EXPANSION_PATTERN (arg);
7045
7046 /* Deal with an injected-class-name used as a template template arg. */
7047 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7048 {
7049 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7050 if (TREE_CODE (t) == TEMPLATE_DECL)
7051 {
7052 if (cxx_dialect >= cxx11)
7053 /* OK under DR 1004. */;
7054 else if (complain & tf_warning_or_error)
7055 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7056 " used as template template argument", TYPE_NAME (arg));
7057 else if (flag_pedantic_errors)
7058 t = arg;
7059
7060 arg = t;
7061 }
7062 }
7063
7064 is_tmpl_type =
7065 ((TREE_CODE (arg) == TEMPLATE_DECL
7066 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7067 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7068 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7069 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7070
7071 if (is_tmpl_type
7072 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7073 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7074 arg = TYPE_STUB_DECL (arg);
7075
7076 is_type = TYPE_P (arg) || is_tmpl_type;
7077
7078 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7079 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7080 {
7081 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7082 {
7083 if (complain & tf_error)
7084 error ("invalid use of destructor %qE as a type", orig_arg);
7085 return error_mark_node;
7086 }
7087
7088 permerror (input_location,
7089 "to refer to a type member of a template parameter, "
7090 "use %<typename %E%>", orig_arg);
7091
7092 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7093 TREE_OPERAND (arg, 1),
7094 typename_type,
7095 complain);
7096 arg = orig_arg;
7097 is_type = 1;
7098 }
7099 if (is_type != requires_type)
7100 {
7101 if (in_decl)
7102 {
7103 if (complain & tf_error)
7104 {
7105 error ("type/value mismatch at argument %d in template "
7106 "parameter list for %qD",
7107 i + 1, in_decl);
7108 if (is_type)
7109 inform (input_location,
7110 " expected a constant of type %qT, got %qT",
7111 TREE_TYPE (parm),
7112 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7113 else if (requires_tmpl_type)
7114 inform (input_location,
7115 " expected a class template, got %qE", orig_arg);
7116 else
7117 inform (input_location,
7118 " expected a type, got %qE", orig_arg);
7119 }
7120 }
7121 return error_mark_node;
7122 }
7123 if (is_tmpl_type ^ requires_tmpl_type)
7124 {
7125 if (in_decl && (complain & tf_error))
7126 {
7127 error ("type/value mismatch at argument %d in template "
7128 "parameter list for %qD",
7129 i + 1, in_decl);
7130 if (is_tmpl_type)
7131 inform (input_location,
7132 " expected a type, got %qT", DECL_NAME (arg));
7133 else
7134 inform (input_location,
7135 " expected a class template, got %qT", orig_arg);
7136 }
7137 return error_mark_node;
7138 }
7139
7140 if (is_type)
7141 {
7142 if (requires_tmpl_type)
7143 {
7144 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7145 val = orig_arg;
7146 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7147 /* The number of argument required is not known yet.
7148 Just accept it for now. */
7149 val = TREE_TYPE (arg);
7150 else
7151 {
7152 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7153 tree argparm;
7154
7155 /* Strip alias templates that are equivalent to another
7156 template. */
7157 arg = get_underlying_template (arg);
7158 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7159
7160 if (coerce_template_template_parms (parmparm, argparm,
7161 complain, in_decl,
7162 args))
7163 {
7164 val = arg;
7165
7166 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7167 TEMPLATE_DECL. */
7168 if (val != error_mark_node)
7169 {
7170 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7171 val = TREE_TYPE (val);
7172 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7173 val = make_pack_expansion (val);
7174 }
7175 }
7176 else
7177 {
7178 if (in_decl && (complain & tf_error))
7179 {
7180 error ("type/value mismatch at argument %d in "
7181 "template parameter list for %qD",
7182 i + 1, in_decl);
7183 inform (input_location,
7184 " expected a template of type %qD, got %qT",
7185 parm, orig_arg);
7186 }
7187
7188 val = error_mark_node;
7189 }
7190
7191 // Check that the constraints are compatible before allowing the
7192 // substitution.
7193 if (val != error_mark_node)
7194 if (!is_compatible_template_arg (parm, arg))
7195 {
7196 if (in_decl && (complain & tf_error))
7197 {
7198 error ("constraint mismatch at argument %d in "
7199 "template parameter list for %qD",
7200 i + 1, in_decl);
7201 inform (input_location, " expected %qD but got %qD",
7202 parm, arg);
7203 }
7204 val = error_mark_node;
7205 }
7206 }
7207 }
7208 else
7209 val = orig_arg;
7210 /* We only form one instance of each template specialization.
7211 Therefore, if we use a non-canonical variant (i.e., a
7212 typedef), any future messages referring to the type will use
7213 the typedef, which is confusing if those future uses do not
7214 themselves also use the typedef. */
7215 if (TYPE_P (val))
7216 val = canonicalize_type_argument (val, complain);
7217 }
7218 else
7219 {
7220 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7221
7222 if (invalid_nontype_parm_type_p (t, complain))
7223 return error_mark_node;
7224
7225 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7226 {
7227 if (same_type_p (t, TREE_TYPE (orig_arg)))
7228 val = orig_arg;
7229 else
7230 {
7231 /* Not sure if this is reachable, but it doesn't hurt
7232 to be robust. */
7233 error ("type mismatch in nontype parameter pack");
7234 val = error_mark_node;
7235 }
7236 }
7237 else if (!dependent_template_arg_p (orig_arg)
7238 && !uses_template_parms (t))
7239 /* We used to call digest_init here. However, digest_init
7240 will report errors, which we don't want when complain
7241 is zero. More importantly, digest_init will try too
7242 hard to convert things: for example, `0' should not be
7243 converted to pointer type at this point according to
7244 the standard. Accepting this is not merely an
7245 extension, since deciding whether or not these
7246 conversions can occur is part of determining which
7247 function template to call, or whether a given explicit
7248 argument specification is valid. */
7249 val = convert_nontype_argument (t, orig_arg, complain);
7250 else
7251 {
7252 bool removed_attr = false;
7253 val = strip_typedefs_expr (orig_arg, &removed_attr);
7254 }
7255
7256 if (val == NULL_TREE)
7257 val = error_mark_node;
7258 else if (val == error_mark_node && (complain & tf_error))
7259 error ("could not convert template argument %qE to %qT", orig_arg, t);
7260
7261 if (INDIRECT_REF_P (val))
7262 {
7263 /* Reject template arguments that are references to built-in
7264 functions with no library fallbacks. */
7265 const_tree inner = TREE_OPERAND (val, 0);
7266 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7267 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7268 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7269 && 0 < TREE_OPERAND_LENGTH (inner)
7270 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7271 return error_mark_node;
7272 }
7273
7274 if (TREE_CODE (val) == SCOPE_REF)
7275 {
7276 /* Strip typedefs from the SCOPE_REF. */
7277 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7278 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7279 complain);
7280 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7281 QUALIFIED_NAME_IS_TEMPLATE (val));
7282 }
7283 }
7284
7285 return val;
7286 }
7287
7288 /* Coerces the remaining template arguments in INNER_ARGS (from
7289 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7290 Returns the coerced argument pack. PARM_IDX is the position of this
7291 parameter in the template parameter list. ARGS is the original
7292 template argument list. */
7293 static tree
7294 coerce_template_parameter_pack (tree parms,
7295 int parm_idx,
7296 tree args,
7297 tree inner_args,
7298 int arg_idx,
7299 tree new_args,
7300 int* lost,
7301 tree in_decl,
7302 tsubst_flags_t complain)
7303 {
7304 tree parm = TREE_VEC_ELT (parms, parm_idx);
7305 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7306 tree packed_args;
7307 tree argument_pack;
7308 tree packed_parms = NULL_TREE;
7309
7310 if (arg_idx > nargs)
7311 arg_idx = nargs;
7312
7313 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7314 {
7315 /* When the template parameter is a non-type template parameter pack
7316 or template template parameter pack whose type or template
7317 parameters use parameter packs, we know exactly how many arguments
7318 we are looking for. Build a vector of the instantiated decls for
7319 these template parameters in PACKED_PARMS. */
7320 /* We can't use make_pack_expansion here because it would interpret a
7321 _DECL as a use rather than a declaration. */
7322 tree decl = TREE_VALUE (parm);
7323 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7324 SET_PACK_EXPANSION_PATTERN (exp, decl);
7325 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7326 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7327
7328 TREE_VEC_LENGTH (args)--;
7329 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7330 TREE_VEC_LENGTH (args)++;
7331
7332 if (packed_parms == error_mark_node)
7333 return error_mark_node;
7334
7335 /* If we're doing a partial instantiation of a member template,
7336 verify that all of the types used for the non-type
7337 template parameter pack are, in fact, valid for non-type
7338 template parameters. */
7339 if (arg_idx < nargs
7340 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7341 {
7342 int j, len = TREE_VEC_LENGTH (packed_parms);
7343 for (j = 0; j < len; ++j)
7344 {
7345 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7346 if (invalid_nontype_parm_type_p (t, complain))
7347 return error_mark_node;
7348 }
7349 /* We don't know how many args we have yet, just
7350 use the unconverted ones for now. */
7351 return NULL_TREE;
7352 }
7353
7354 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7355 }
7356 /* Check if we have a placeholder pack, which indicates we're
7357 in the context of a introduction list. In that case we want
7358 to match this pack to the single placeholder. */
7359 else if (arg_idx < nargs
7360 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7361 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7362 {
7363 nargs = arg_idx + 1;
7364 packed_args = make_tree_vec (1);
7365 }
7366 else
7367 packed_args = make_tree_vec (nargs - arg_idx);
7368
7369 /* Convert the remaining arguments, which will be a part of the
7370 parameter pack "parm". */
7371 for (; arg_idx < nargs; ++arg_idx)
7372 {
7373 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7374 tree actual_parm = TREE_VALUE (parm);
7375 int pack_idx = arg_idx - parm_idx;
7376
7377 if (packed_parms)
7378 {
7379 /* Once we've packed as many args as we have types, stop. */
7380 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7381 break;
7382 else if (PACK_EXPANSION_P (arg))
7383 /* We don't know how many args we have yet, just
7384 use the unconverted ones for now. */
7385 return NULL_TREE;
7386 else
7387 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7388 }
7389
7390 if (arg == error_mark_node)
7391 {
7392 if (complain & tf_error)
7393 error ("template argument %d is invalid", arg_idx + 1);
7394 }
7395 else
7396 arg = convert_template_argument (actual_parm,
7397 arg, new_args, complain, parm_idx,
7398 in_decl);
7399 if (arg == error_mark_node)
7400 (*lost)++;
7401 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7402 }
7403
7404 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7405 && TREE_VEC_LENGTH (packed_args) > 0)
7406 {
7407 if (complain & tf_error)
7408 error ("wrong number of template arguments (%d, should be %d)",
7409 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7410 return error_mark_node;
7411 }
7412
7413 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7414 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7415 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7416 else
7417 {
7418 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7419 TREE_TYPE (argument_pack)
7420 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7421 TREE_CONSTANT (argument_pack) = 1;
7422 }
7423
7424 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7425 if (CHECKING_P)
7426 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7427 TREE_VEC_LENGTH (packed_args));
7428 return argument_pack;
7429 }
7430
7431 /* Returns the number of pack expansions in the template argument vector
7432 ARGS. */
7433
7434 static int
7435 pack_expansion_args_count (tree args)
7436 {
7437 int i;
7438 int count = 0;
7439 if (args)
7440 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7441 {
7442 tree elt = TREE_VEC_ELT (args, i);
7443 if (elt && PACK_EXPANSION_P (elt))
7444 ++count;
7445 }
7446 return count;
7447 }
7448
7449 /* Convert all template arguments to their appropriate types, and
7450 return a vector containing the innermost resulting template
7451 arguments. If any error occurs, return error_mark_node. Error and
7452 warning messages are issued under control of COMPLAIN.
7453
7454 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7455 for arguments not specified in ARGS. Otherwise, if
7456 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7457 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7458 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7459 ARGS. */
7460
7461 static tree
7462 coerce_template_parms (tree parms,
7463 tree args,
7464 tree in_decl,
7465 tsubst_flags_t complain,
7466 bool require_all_args,
7467 bool use_default_args)
7468 {
7469 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7470 tree orig_inner_args;
7471 tree inner_args;
7472 tree new_args;
7473 tree new_inner_args;
7474 int saved_unevaluated_operand;
7475 int saved_inhibit_evaluation_warnings;
7476
7477 /* When used as a boolean value, indicates whether this is a
7478 variadic template parameter list. Since it's an int, we can also
7479 subtract it from nparms to get the number of non-variadic
7480 parameters. */
7481 int variadic_p = 0;
7482 int variadic_args_p = 0;
7483 int post_variadic_parms = 0;
7484
7485 /* Likewise for parameters with default arguments. */
7486 int default_p = 0;
7487
7488 if (args == error_mark_node)
7489 return error_mark_node;
7490
7491 nparms = TREE_VEC_LENGTH (parms);
7492
7493 /* Determine if there are any parameter packs or default arguments. */
7494 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7495 {
7496 tree parm = TREE_VEC_ELT (parms, parm_idx);
7497 if (variadic_p)
7498 ++post_variadic_parms;
7499 if (template_parameter_pack_p (TREE_VALUE (parm)))
7500 ++variadic_p;
7501 if (TREE_PURPOSE (parm))
7502 ++default_p;
7503 }
7504
7505 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7506 /* If there are no parameters that follow a parameter pack, we need to
7507 expand any argument packs so that we can deduce a parameter pack from
7508 some non-packed args followed by an argument pack, as in variadic85.C.
7509 If there are such parameters, we need to leave argument packs intact
7510 so the arguments are assigned properly. This can happen when dealing
7511 with a nested class inside a partial specialization of a class
7512 template, as in variadic92.C, or when deducing a template parameter pack
7513 from a sub-declarator, as in variadic114.C. */
7514 if (!post_variadic_parms)
7515 inner_args = expand_template_argument_pack (inner_args);
7516
7517 /* Count any pack expansion args. */
7518 variadic_args_p = pack_expansion_args_count (inner_args);
7519
7520 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7521 if ((nargs > nparms && !variadic_p)
7522 || (nargs < nparms - variadic_p
7523 && require_all_args
7524 && !variadic_args_p
7525 && (!use_default_args
7526 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7527 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7528 {
7529 if (complain & tf_error)
7530 {
7531 if (variadic_p || default_p)
7532 {
7533 nparms -= variadic_p + default_p;
7534 error ("wrong number of template arguments "
7535 "(%d, should be at least %d)", nargs, nparms);
7536 }
7537 else
7538 error ("wrong number of template arguments "
7539 "(%d, should be %d)", nargs, nparms);
7540
7541 if (in_decl)
7542 inform (DECL_SOURCE_LOCATION (in_decl),
7543 "provided for %qD", in_decl);
7544 }
7545
7546 return error_mark_node;
7547 }
7548 /* We can't pass a pack expansion to a non-pack parameter of an alias
7549 template (DR 1430). */
7550 else if (in_decl
7551 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7552 || concept_template_p (in_decl))
7553 && variadic_args_p
7554 && nargs - variadic_args_p < nparms - variadic_p)
7555 {
7556 if (complain & tf_error)
7557 {
7558 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7559 {
7560 tree arg = TREE_VEC_ELT (inner_args, i);
7561 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7562
7563 if (PACK_EXPANSION_P (arg)
7564 && !template_parameter_pack_p (parm))
7565 {
7566 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7567 error_at (location_of (arg),
7568 "pack expansion argument for non-pack parameter "
7569 "%qD of alias template %qD", parm, in_decl);
7570 else
7571 error_at (location_of (arg),
7572 "pack expansion argument for non-pack parameter "
7573 "%qD of concept %qD", parm, in_decl);
7574 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7575 goto found;
7576 }
7577 }
7578 gcc_unreachable ();
7579 found:;
7580 }
7581 return error_mark_node;
7582 }
7583
7584 /* We need to evaluate the template arguments, even though this
7585 template-id may be nested within a "sizeof". */
7586 saved_unevaluated_operand = cp_unevaluated_operand;
7587 cp_unevaluated_operand = 0;
7588 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7589 c_inhibit_evaluation_warnings = 0;
7590 new_inner_args = make_tree_vec (nparms);
7591 new_args = add_outermost_template_args (args, new_inner_args);
7592 int pack_adjust = 0;
7593 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7594 {
7595 tree arg;
7596 tree parm;
7597
7598 /* Get the Ith template parameter. */
7599 parm = TREE_VEC_ELT (parms, parm_idx);
7600
7601 if (parm == error_mark_node)
7602 {
7603 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7604 continue;
7605 }
7606
7607 /* Calculate the next argument. */
7608 if (arg_idx < nargs)
7609 arg = TREE_VEC_ELT (inner_args, arg_idx);
7610 else
7611 arg = NULL_TREE;
7612
7613 if (template_parameter_pack_p (TREE_VALUE (parm))
7614 && !(arg && ARGUMENT_PACK_P (arg)))
7615 {
7616 /* Some arguments will be placed in the
7617 template parameter pack PARM. */
7618 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7619 inner_args, arg_idx,
7620 new_args, &lost,
7621 in_decl, complain);
7622
7623 if (arg == NULL_TREE)
7624 {
7625 /* We don't know how many args we have yet, just use the
7626 unconverted (and still packed) ones for now. */
7627 new_inner_args = orig_inner_args;
7628 arg_idx = nargs;
7629 break;
7630 }
7631
7632 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7633
7634 /* Store this argument. */
7635 if (arg == error_mark_node)
7636 {
7637 lost++;
7638 /* We are done with all of the arguments. */
7639 arg_idx = nargs;
7640 }
7641 else
7642 {
7643 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7644 arg_idx += pack_adjust;
7645 }
7646
7647 continue;
7648 }
7649 else if (arg)
7650 {
7651 if (PACK_EXPANSION_P (arg))
7652 {
7653 /* "If every valid specialization of a variadic template
7654 requires an empty template parameter pack, the template is
7655 ill-formed, no diagnostic required." So check that the
7656 pattern works with this parameter. */
7657 tree pattern = PACK_EXPANSION_PATTERN (arg);
7658 tree conv = convert_template_argument (TREE_VALUE (parm),
7659 pattern, new_args,
7660 complain, parm_idx,
7661 in_decl);
7662 if (conv == error_mark_node)
7663 {
7664 inform (input_location, "so any instantiation with a "
7665 "non-empty parameter pack would be ill-formed");
7666 ++lost;
7667 }
7668 else if (TYPE_P (conv) && !TYPE_P (pattern))
7669 /* Recover from missing typename. */
7670 TREE_VEC_ELT (inner_args, arg_idx)
7671 = make_pack_expansion (conv);
7672
7673 /* We don't know how many args we have yet, just
7674 use the unconverted ones for now. */
7675 new_inner_args = inner_args;
7676 arg_idx = nargs;
7677 break;
7678 }
7679 }
7680 else if (require_all_args)
7681 {
7682 /* There must be a default arg in this case. */
7683 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7684 complain, in_decl);
7685 /* The position of the first default template argument,
7686 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7687 Record that. */
7688 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7689 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7690 arg_idx - pack_adjust);
7691 }
7692 else
7693 break;
7694
7695 if (arg == error_mark_node)
7696 {
7697 if (complain & tf_error)
7698 error ("template argument %d is invalid", arg_idx + 1);
7699 }
7700 else if (!arg)
7701 /* This only occurs if there was an error in the template
7702 parameter list itself (which we would already have
7703 reported) that we are trying to recover from, e.g., a class
7704 template with a parameter list such as
7705 template<typename..., typename>. */
7706 ++lost;
7707 else
7708 arg = convert_template_argument (TREE_VALUE (parm),
7709 arg, new_args, complain,
7710 parm_idx, in_decl);
7711
7712 if (arg == error_mark_node)
7713 lost++;
7714 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7715 }
7716 cp_unevaluated_operand = saved_unevaluated_operand;
7717 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7718
7719 if (variadic_p && arg_idx < nargs)
7720 {
7721 if (complain & tf_error)
7722 {
7723 error ("wrong number of template arguments "
7724 "(%d, should be %d)", nargs, arg_idx);
7725 if (in_decl)
7726 error ("provided for %q+D", in_decl);
7727 }
7728 return error_mark_node;
7729 }
7730
7731 if (lost)
7732 return error_mark_node;
7733
7734 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7735 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7736 TREE_VEC_LENGTH (new_inner_args));
7737
7738 return new_inner_args;
7739 }
7740
7741 /* Convert all template arguments to their appropriate types, and
7742 return a vector containing the innermost resulting template
7743 arguments. If any error occurs, return error_mark_node. Error and
7744 warning messages are not issued.
7745
7746 Note that no function argument deduction is performed, and default
7747 arguments are used to fill in unspecified arguments. */
7748 tree
7749 coerce_template_parms (tree parms, tree args, tree in_decl)
7750 {
7751 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7752 }
7753
7754 /* Convert all template arguments to their appropriate type, and
7755 instantiate default arguments as needed. This returns a vector
7756 containing the innermost resulting template arguments, or
7757 error_mark_node if unsuccessful. */
7758 tree
7759 coerce_template_parms (tree parms, tree args, tree in_decl,
7760 tsubst_flags_t complain)
7761 {
7762 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7763 }
7764
7765 /* Like coerce_template_parms. If PARMS represents all template
7766 parameters levels, this function returns a vector of vectors
7767 representing all the resulting argument levels. Note that in this
7768 case, only the innermost arguments are coerced because the
7769 outermost ones are supposed to have been coerced already.
7770
7771 Otherwise, if PARMS represents only (the innermost) vector of
7772 parameters, this function returns a vector containing just the
7773 innermost resulting arguments. */
7774
7775 static tree
7776 coerce_innermost_template_parms (tree parms,
7777 tree args,
7778 tree in_decl,
7779 tsubst_flags_t complain,
7780 bool require_all_args,
7781 bool use_default_args)
7782 {
7783 int parms_depth = TMPL_PARMS_DEPTH (parms);
7784 int args_depth = TMPL_ARGS_DEPTH (args);
7785 tree coerced_args;
7786
7787 if (parms_depth > 1)
7788 {
7789 coerced_args = make_tree_vec (parms_depth);
7790 tree level;
7791 int cur_depth;
7792
7793 for (level = parms, cur_depth = parms_depth;
7794 parms_depth > 0 && level != NULL_TREE;
7795 level = TREE_CHAIN (level), --cur_depth)
7796 {
7797 tree l;
7798 if (cur_depth == args_depth)
7799 l = coerce_template_parms (TREE_VALUE (level),
7800 args, in_decl, complain,
7801 require_all_args,
7802 use_default_args);
7803 else
7804 l = TMPL_ARGS_LEVEL (args, cur_depth);
7805
7806 if (l == error_mark_node)
7807 return error_mark_node;
7808
7809 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7810 }
7811 }
7812 else
7813 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7814 args, in_decl, complain,
7815 require_all_args,
7816 use_default_args);
7817 return coerced_args;
7818 }
7819
7820 /* Returns 1 if template args OT and NT are equivalent. */
7821
7822 static int
7823 template_args_equal (tree ot, tree nt)
7824 {
7825 if (nt == ot)
7826 return 1;
7827 if (nt == NULL_TREE || ot == NULL_TREE)
7828 return false;
7829
7830 if (TREE_CODE (nt) == TREE_VEC)
7831 /* For member templates */
7832 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7833 else if (PACK_EXPANSION_P (ot))
7834 return (PACK_EXPANSION_P (nt)
7835 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7836 PACK_EXPANSION_PATTERN (nt))
7837 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7838 PACK_EXPANSION_EXTRA_ARGS (nt)));
7839 else if (ARGUMENT_PACK_P (ot))
7840 {
7841 int i, len;
7842 tree opack, npack;
7843
7844 if (!ARGUMENT_PACK_P (nt))
7845 return 0;
7846
7847 opack = ARGUMENT_PACK_ARGS (ot);
7848 npack = ARGUMENT_PACK_ARGS (nt);
7849 len = TREE_VEC_LENGTH (opack);
7850 if (TREE_VEC_LENGTH (npack) != len)
7851 return 0;
7852 for (i = 0; i < len; ++i)
7853 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7854 TREE_VEC_ELT (npack, i)))
7855 return 0;
7856 return 1;
7857 }
7858 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7859 {
7860 /* We get here probably because we are in the middle of substituting
7861 into the pattern of a pack expansion. In that case the
7862 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7863 interested in. So we want to use the initial pack argument for
7864 the comparison. */
7865 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7866 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7867 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7868 return template_args_equal (ot, nt);
7869 }
7870 else if (TYPE_P (nt))
7871 {
7872 if (!TYPE_P (ot))
7873 return false;
7874 /* Don't treat an alias template specialization with dependent
7875 arguments as equivalent to its underlying type when used as a
7876 template argument; we need them to be distinct so that we
7877 substitute into the specialization arguments at instantiation
7878 time. And aliases can't be equivalent without being ==, so
7879 we don't need to look any deeper. */
7880 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7881 return false;
7882 else
7883 return same_type_p (ot, nt);
7884 }
7885 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7886 return 0;
7887 else
7888 {
7889 /* Try to treat a template non-type argument that has been converted
7890 to the parameter type as equivalent to one that hasn't yet. */
7891 for (enum tree_code code1 = TREE_CODE (ot);
7892 CONVERT_EXPR_CODE_P (code1)
7893 || code1 == NON_LVALUE_EXPR;
7894 code1 = TREE_CODE (ot))
7895 ot = TREE_OPERAND (ot, 0);
7896 for (enum tree_code code2 = TREE_CODE (nt);
7897 CONVERT_EXPR_CODE_P (code2)
7898 || code2 == NON_LVALUE_EXPR;
7899 code2 = TREE_CODE (nt))
7900 nt = TREE_OPERAND (nt, 0);
7901
7902 return cp_tree_equal (ot, nt);
7903 }
7904 }
7905
7906 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7907 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7908 NEWARG_PTR with the offending arguments if they are non-NULL. */
7909
7910 int
7911 comp_template_args (tree oldargs, tree newargs,
7912 tree *oldarg_ptr, tree *newarg_ptr)
7913 {
7914 int i;
7915
7916 if (oldargs == newargs)
7917 return 1;
7918
7919 if (!oldargs || !newargs)
7920 return 0;
7921
7922 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7923 return 0;
7924
7925 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7926 {
7927 tree nt = TREE_VEC_ELT (newargs, i);
7928 tree ot = TREE_VEC_ELT (oldargs, i);
7929
7930 if (! template_args_equal (ot, nt))
7931 {
7932 if (oldarg_ptr != NULL)
7933 *oldarg_ptr = ot;
7934 if (newarg_ptr != NULL)
7935 *newarg_ptr = nt;
7936 return 0;
7937 }
7938 }
7939 return 1;
7940 }
7941
7942 static void
7943 add_pending_template (tree d)
7944 {
7945 tree ti = (TYPE_P (d)
7946 ? CLASSTYPE_TEMPLATE_INFO (d)
7947 : DECL_TEMPLATE_INFO (d));
7948 struct pending_template *pt;
7949 int level;
7950
7951 if (TI_PENDING_TEMPLATE_FLAG (ti))
7952 return;
7953
7954 /* We are called both from instantiate_decl, where we've already had a
7955 tinst_level pushed, and instantiate_template, where we haven't.
7956 Compensate. */
7957 level = !current_tinst_level || current_tinst_level->decl != d;
7958
7959 if (level)
7960 push_tinst_level (d);
7961
7962 pt = ggc_alloc<pending_template> ();
7963 pt->next = NULL;
7964 pt->tinst = current_tinst_level;
7965 if (last_pending_template)
7966 last_pending_template->next = pt;
7967 else
7968 pending_templates = pt;
7969
7970 last_pending_template = pt;
7971
7972 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7973
7974 if (level)
7975 pop_tinst_level ();
7976 }
7977
7978
7979 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7980 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7981 documentation for TEMPLATE_ID_EXPR. */
7982
7983 tree
7984 lookup_template_function (tree fns, tree arglist)
7985 {
7986 tree type;
7987
7988 if (fns == error_mark_node || arglist == error_mark_node)
7989 return error_mark_node;
7990
7991 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7992
7993 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7994 {
7995 error ("%q#D is not a function template", fns);
7996 return error_mark_node;
7997 }
7998
7999 if (BASELINK_P (fns))
8000 {
8001 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8002 unknown_type_node,
8003 BASELINK_FUNCTIONS (fns),
8004 arglist);
8005 return fns;
8006 }
8007
8008 type = TREE_TYPE (fns);
8009 if (TREE_CODE (fns) == OVERLOAD || !type)
8010 type = unknown_type_node;
8011
8012 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8013 }
8014
8015 /* Within the scope of a template class S<T>, the name S gets bound
8016 (in build_self_reference) to a TYPE_DECL for the class, not a
8017 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8018 or one of its enclosing classes, and that type is a template,
8019 return the associated TEMPLATE_DECL. Otherwise, the original
8020 DECL is returned.
8021
8022 Also handle the case when DECL is a TREE_LIST of ambiguous
8023 injected-class-names from different bases. */
8024
8025 tree
8026 maybe_get_template_decl_from_type_decl (tree decl)
8027 {
8028 if (decl == NULL_TREE)
8029 return decl;
8030
8031 /* DR 176: A lookup that finds an injected-class-name (10.2
8032 [class.member.lookup]) can result in an ambiguity in certain cases
8033 (for example, if it is found in more than one base class). If all of
8034 the injected-class-names that are found refer to specializations of
8035 the same class template, and if the name is followed by a
8036 template-argument-list, the reference refers to the class template
8037 itself and not a specialization thereof, and is not ambiguous. */
8038 if (TREE_CODE (decl) == TREE_LIST)
8039 {
8040 tree t, tmpl = NULL_TREE;
8041 for (t = decl; t; t = TREE_CHAIN (t))
8042 {
8043 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8044 if (!tmpl)
8045 tmpl = elt;
8046 else if (tmpl != elt)
8047 break;
8048 }
8049 if (tmpl && t == NULL_TREE)
8050 return tmpl;
8051 else
8052 return decl;
8053 }
8054
8055 return (decl != NULL_TREE
8056 && DECL_SELF_REFERENCE_P (decl)
8057 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8058 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8059 }
8060
8061 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8062 parameters, find the desired type.
8063
8064 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8065
8066 IN_DECL, if non-NULL, is the template declaration we are trying to
8067 instantiate.
8068
8069 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8070 the class we are looking up.
8071
8072 Issue error and warning messages under control of COMPLAIN.
8073
8074 If the template class is really a local class in a template
8075 function, then the FUNCTION_CONTEXT is the function in which it is
8076 being instantiated.
8077
8078 ??? Note that this function is currently called *twice* for each
8079 template-id: the first time from the parser, while creating the
8080 incomplete type (finish_template_type), and the second type during the
8081 real instantiation (instantiate_template_class). This is surely something
8082 that we want to avoid. It also causes some problems with argument
8083 coercion (see convert_nontype_argument for more information on this). */
8084
8085 static tree
8086 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8087 int entering_scope, tsubst_flags_t complain)
8088 {
8089 tree templ = NULL_TREE, parmlist;
8090 tree t;
8091 spec_entry **slot;
8092 spec_entry *entry;
8093 spec_entry elt;
8094 hashval_t hash;
8095
8096 if (identifier_p (d1))
8097 {
8098 tree value = innermost_non_namespace_value (d1);
8099 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8100 templ = value;
8101 else
8102 {
8103 if (context)
8104 push_decl_namespace (context);
8105 templ = lookup_name (d1);
8106 templ = maybe_get_template_decl_from_type_decl (templ);
8107 if (context)
8108 pop_decl_namespace ();
8109 }
8110 if (templ)
8111 context = DECL_CONTEXT (templ);
8112 }
8113 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8114 {
8115 tree type = TREE_TYPE (d1);
8116
8117 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8118 an implicit typename for the second A. Deal with it. */
8119 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8120 type = TREE_TYPE (type);
8121
8122 if (CLASSTYPE_TEMPLATE_INFO (type))
8123 {
8124 templ = CLASSTYPE_TI_TEMPLATE (type);
8125 d1 = DECL_NAME (templ);
8126 }
8127 }
8128 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8129 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8130 {
8131 templ = TYPE_TI_TEMPLATE (d1);
8132 d1 = DECL_NAME (templ);
8133 }
8134 else if (DECL_TYPE_TEMPLATE_P (d1))
8135 {
8136 templ = d1;
8137 d1 = DECL_NAME (templ);
8138 context = DECL_CONTEXT (templ);
8139 }
8140 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8141 {
8142 templ = d1;
8143 d1 = DECL_NAME (templ);
8144 }
8145
8146 /* Issue an error message if we didn't find a template. */
8147 if (! templ)
8148 {
8149 if (complain & tf_error)
8150 error ("%qT is not a template", d1);
8151 return error_mark_node;
8152 }
8153
8154 if (TREE_CODE (templ) != TEMPLATE_DECL
8155 /* Make sure it's a user visible template, if it was named by
8156 the user. */
8157 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8158 && !PRIMARY_TEMPLATE_P (templ)))
8159 {
8160 if (complain & tf_error)
8161 {
8162 error ("non-template type %qT used as a template", d1);
8163 if (in_decl)
8164 error ("for template declaration %q+D", in_decl);
8165 }
8166 return error_mark_node;
8167 }
8168
8169 complain &= ~tf_user;
8170
8171 /* An alias that just changes the name of a template is equivalent to the
8172 other template, so if any of the arguments are pack expansions, strip
8173 the alias to avoid problems with a pack expansion passed to a non-pack
8174 alias template parameter (DR 1430). */
8175 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8176 templ = get_underlying_template (templ);
8177
8178 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8179 {
8180 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8181 template arguments */
8182
8183 tree parm;
8184 tree arglist2;
8185 tree outer;
8186
8187 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8188
8189 /* Consider an example where a template template parameter declared as
8190
8191 template <class T, class U = std::allocator<T> > class TT
8192
8193 The template parameter level of T and U are one level larger than
8194 of TT. To proper process the default argument of U, say when an
8195 instantiation `TT<int>' is seen, we need to build the full
8196 arguments containing {int} as the innermost level. Outer levels,
8197 available when not appearing as default template argument, can be
8198 obtained from the arguments of the enclosing template.
8199
8200 Suppose that TT is later substituted with std::vector. The above
8201 instantiation is `TT<int, std::allocator<T> >' with TT at
8202 level 1, and T at level 2, while the template arguments at level 1
8203 becomes {std::vector} and the inner level 2 is {int}. */
8204
8205 outer = DECL_CONTEXT (templ);
8206 if (outer)
8207 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8208 else if (current_template_parms)
8209 {
8210 /* This is an argument of the current template, so we haven't set
8211 DECL_CONTEXT yet. */
8212 tree relevant_template_parms;
8213
8214 /* Parameter levels that are greater than the level of the given
8215 template template parm are irrelevant. */
8216 relevant_template_parms = current_template_parms;
8217 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8218 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8219 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8220
8221 outer = template_parms_to_args (relevant_template_parms);
8222 }
8223
8224 if (outer)
8225 arglist = add_to_template_args (outer, arglist);
8226
8227 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8228 complain,
8229 /*require_all_args=*/true,
8230 /*use_default_args=*/true);
8231 if (arglist2 == error_mark_node
8232 || (!uses_template_parms (arglist2)
8233 && check_instantiated_args (templ, arglist2, complain)))
8234 return error_mark_node;
8235
8236 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8237 return parm;
8238 }
8239 else
8240 {
8241 tree template_type = TREE_TYPE (templ);
8242 tree gen_tmpl;
8243 tree type_decl;
8244 tree found = NULL_TREE;
8245 int arg_depth;
8246 int parm_depth;
8247 int is_dependent_type;
8248 int use_partial_inst_tmpl = false;
8249
8250 if (template_type == error_mark_node)
8251 /* An error occurred while building the template TEMPL, and a
8252 diagnostic has most certainly been emitted for that
8253 already. Let's propagate that error. */
8254 return error_mark_node;
8255
8256 gen_tmpl = most_general_template (templ);
8257 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8258 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8259 arg_depth = TMPL_ARGS_DEPTH (arglist);
8260
8261 if (arg_depth == 1 && parm_depth > 1)
8262 {
8263 /* We've been given an incomplete set of template arguments.
8264 For example, given:
8265
8266 template <class T> struct S1 {
8267 template <class U> struct S2 {};
8268 template <class U> struct S2<U*> {};
8269 };
8270
8271 we will be called with an ARGLIST of `U*', but the
8272 TEMPLATE will be `template <class T> template
8273 <class U> struct S1<T>::S2'. We must fill in the missing
8274 arguments. */
8275 arglist
8276 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8277 arglist);
8278 arg_depth = TMPL_ARGS_DEPTH (arglist);
8279 }
8280
8281 /* Now we should have enough arguments. */
8282 gcc_assert (parm_depth == arg_depth);
8283
8284 /* From here on, we're only interested in the most general
8285 template. */
8286
8287 /* Calculate the BOUND_ARGS. These will be the args that are
8288 actually tsubst'd into the definition to create the
8289 instantiation. */
8290 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8291 complain,
8292 /*require_all_args=*/true,
8293 /*use_default_args=*/true);
8294
8295 if (arglist == error_mark_node)
8296 /* We were unable to bind the arguments. */
8297 return error_mark_node;
8298
8299 /* In the scope of a template class, explicit references to the
8300 template class refer to the type of the template, not any
8301 instantiation of it. For example, in:
8302
8303 template <class T> class C { void f(C<T>); }
8304
8305 the `C<T>' is just the same as `C'. Outside of the
8306 class, however, such a reference is an instantiation. */
8307 if ((entering_scope
8308 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8309 || currently_open_class (template_type))
8310 /* comp_template_args is expensive, check it last. */
8311 && comp_template_args (TYPE_TI_ARGS (template_type),
8312 arglist))
8313 return template_type;
8314
8315 /* If we already have this specialization, return it. */
8316 elt.tmpl = gen_tmpl;
8317 elt.args = arglist;
8318 elt.spec = NULL_TREE;
8319 hash = spec_hasher::hash (&elt);
8320 entry = type_specializations->find_with_hash (&elt, hash);
8321
8322 if (entry)
8323 return entry->spec;
8324
8325 /* If the the template's constraints are not satisfied,
8326 then we cannot form a valid type.
8327
8328 Note that the check is deferred until after the hash
8329 lookup. This prevents redundant checks on previously
8330 instantiated specializations. */
8331 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8332 {
8333 if (complain & tf_error)
8334 {
8335 error ("template constraint failure");
8336 diagnose_constraints (input_location, gen_tmpl, arglist);
8337 }
8338 return error_mark_node;
8339 }
8340
8341 is_dependent_type = uses_template_parms (arglist);
8342
8343 /* If the deduced arguments are invalid, then the binding
8344 failed. */
8345 if (!is_dependent_type
8346 && check_instantiated_args (gen_tmpl,
8347 INNERMOST_TEMPLATE_ARGS (arglist),
8348 complain))
8349 return error_mark_node;
8350
8351 if (!is_dependent_type
8352 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8353 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8354 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8355 {
8356 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8357 DECL_NAME (gen_tmpl),
8358 /*tag_scope=*/ts_global);
8359 return found;
8360 }
8361
8362 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8363 complain, in_decl);
8364 if (context == error_mark_node)
8365 return error_mark_node;
8366
8367 if (!context)
8368 context = global_namespace;
8369
8370 /* Create the type. */
8371 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8372 {
8373 /* The user referred to a specialization of an alias
8374 template represented by GEN_TMPL.
8375
8376 [temp.alias]/2 says:
8377
8378 When a template-id refers to the specialization of an
8379 alias template, it is equivalent to the associated
8380 type obtained by substitution of its
8381 template-arguments for the template-parameters in the
8382 type-id of the alias template. */
8383
8384 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8385 /* Note that the call above (by indirectly calling
8386 register_specialization in tsubst_decl) registers the
8387 TYPE_DECL representing the specialization of the alias
8388 template. So next time someone substitutes ARGLIST for
8389 the template parms into the alias template (GEN_TMPL),
8390 she'll get that TYPE_DECL back. */
8391
8392 if (t == error_mark_node)
8393 return t;
8394 }
8395 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8396 {
8397 if (!is_dependent_type)
8398 {
8399 set_current_access_from_decl (TYPE_NAME (template_type));
8400 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8401 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8402 arglist, complain, in_decl),
8403 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8404 arglist, complain, in_decl),
8405 SCOPED_ENUM_P (template_type), NULL);
8406
8407 if (t == error_mark_node)
8408 return t;
8409 }
8410 else
8411 {
8412 /* We don't want to call start_enum for this type, since
8413 the values for the enumeration constants may involve
8414 template parameters. And, no one should be interested
8415 in the enumeration constants for such a type. */
8416 t = cxx_make_type (ENUMERAL_TYPE);
8417 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8418 }
8419 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8420 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8421 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8422 }
8423 else if (CLASS_TYPE_P (template_type))
8424 {
8425 t = make_class_type (TREE_CODE (template_type));
8426 CLASSTYPE_DECLARED_CLASS (t)
8427 = CLASSTYPE_DECLARED_CLASS (template_type);
8428 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8429 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8430
8431 /* A local class. Make sure the decl gets registered properly. */
8432 if (context == current_function_decl)
8433 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8434
8435 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8436 /* This instantiation is another name for the primary
8437 template type. Set the TYPE_CANONICAL field
8438 appropriately. */
8439 TYPE_CANONICAL (t) = template_type;
8440 else if (any_template_arguments_need_structural_equality_p (arglist))
8441 /* Some of the template arguments require structural
8442 equality testing, so this template class requires
8443 structural equality testing. */
8444 SET_TYPE_STRUCTURAL_EQUALITY (t);
8445 }
8446 else
8447 gcc_unreachable ();
8448
8449 /* If we called start_enum or pushtag above, this information
8450 will already be set up. */
8451 if (!TYPE_NAME (t))
8452 {
8453 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8454
8455 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8456 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8457 DECL_SOURCE_LOCATION (type_decl)
8458 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8459 }
8460 else
8461 type_decl = TYPE_NAME (t);
8462
8463 if (CLASS_TYPE_P (template_type))
8464 {
8465 TREE_PRIVATE (type_decl)
8466 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8467 TREE_PROTECTED (type_decl)
8468 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8469 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8470 {
8471 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8472 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8473 }
8474 }
8475
8476 if (OVERLOAD_TYPE_P (t)
8477 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8478 {
8479 static const char *tags[] = {"abi_tag", "may_alias"};
8480
8481 for (unsigned ix = 0; ix != 2; ix++)
8482 {
8483 tree attributes
8484 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8485
8486 if (attributes)
8487 TYPE_ATTRIBUTES (t)
8488 = tree_cons (TREE_PURPOSE (attributes),
8489 TREE_VALUE (attributes),
8490 TYPE_ATTRIBUTES (t));
8491 }
8492 }
8493
8494 /* Let's consider the explicit specialization of a member
8495 of a class template specialization that is implicitly instantiated,
8496 e.g.:
8497 template<class T>
8498 struct S
8499 {
8500 template<class U> struct M {}; //#0
8501 };
8502
8503 template<>
8504 template<>
8505 struct S<int>::M<char> //#1
8506 {
8507 int i;
8508 };
8509 [temp.expl.spec]/4 says this is valid.
8510
8511 In this case, when we write:
8512 S<int>::M<char> m;
8513
8514 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8515 the one of #0.
8516
8517 When we encounter #1, we want to store the partial instantiation
8518 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8519
8520 For all cases other than this "explicit specialization of member of a
8521 class template", we just want to store the most general template into
8522 the CLASSTYPE_TI_TEMPLATE of M.
8523
8524 This case of "explicit specialization of member of a class template"
8525 only happens when:
8526 1/ the enclosing class is an instantiation of, and therefore not
8527 the same as, the context of the most general template, and
8528 2/ we aren't looking at the partial instantiation itself, i.e.
8529 the innermost arguments are not the same as the innermost parms of
8530 the most general template.
8531
8532 So it's only when 1/ and 2/ happens that we want to use the partial
8533 instantiation of the member template in lieu of its most general
8534 template. */
8535
8536 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8537 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8538 /* the enclosing class must be an instantiation... */
8539 && CLASS_TYPE_P (context)
8540 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8541 {
8542 tree partial_inst_args;
8543 TREE_VEC_LENGTH (arglist)--;
8544 ++processing_template_decl;
8545 partial_inst_args =
8546 tsubst (INNERMOST_TEMPLATE_ARGS
8547 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8548 arglist, complain, NULL_TREE);
8549 --processing_template_decl;
8550 TREE_VEC_LENGTH (arglist)++;
8551 if (partial_inst_args == error_mark_node)
8552 return error_mark_node;
8553 use_partial_inst_tmpl =
8554 /*...and we must not be looking at the partial instantiation
8555 itself. */
8556 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8557 partial_inst_args);
8558 }
8559
8560 if (!use_partial_inst_tmpl)
8561 /* This case is easy; there are no member templates involved. */
8562 found = gen_tmpl;
8563 else
8564 {
8565 /* This is a full instantiation of a member template. Find
8566 the partial instantiation of which this is an instance. */
8567
8568 /* Temporarily reduce by one the number of levels in the ARGLIST
8569 so as to avoid comparing the last set of arguments. */
8570 TREE_VEC_LENGTH (arglist)--;
8571 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8572 TREE_VEC_LENGTH (arglist)++;
8573 /* FOUND is either a proper class type, or an alias
8574 template specialization. In the later case, it's a
8575 TYPE_DECL, resulting from the substituting of arguments
8576 for parameters in the TYPE_DECL of the alias template
8577 done earlier. So be careful while getting the template
8578 of FOUND. */
8579 found = TREE_CODE (found) == TYPE_DECL
8580 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8581 : CLASSTYPE_TI_TEMPLATE (found);
8582 }
8583
8584 // Build template info for the new specialization.
8585 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8586
8587 elt.spec = t;
8588 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8589 entry = ggc_alloc<spec_entry> ();
8590 *entry = elt;
8591 *slot = entry;
8592
8593 /* Note this use of the partial instantiation so we can check it
8594 later in maybe_process_partial_specialization. */
8595 DECL_TEMPLATE_INSTANTIATIONS (found)
8596 = tree_cons (arglist, t,
8597 DECL_TEMPLATE_INSTANTIATIONS (found));
8598
8599 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8600 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8601 /* Now that the type has been registered on the instantiations
8602 list, we set up the enumerators. Because the enumeration
8603 constants may involve the enumeration type itself, we make
8604 sure to register the type first, and then create the
8605 constants. That way, doing tsubst_expr for the enumeration
8606 constants won't result in recursive calls here; we'll find
8607 the instantiation and exit above. */
8608 tsubst_enum (template_type, t, arglist);
8609
8610 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8611 /* If the type makes use of template parameters, the
8612 code that generates debugging information will crash. */
8613 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8614
8615 /* Possibly limit visibility based on template args. */
8616 TREE_PUBLIC (type_decl) = 1;
8617 determine_visibility (type_decl);
8618
8619 inherit_targ_abi_tags (t);
8620
8621 return t;
8622 }
8623 }
8624
8625 /* Wrapper for lookup_template_class_1. */
8626
8627 tree
8628 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8629 int entering_scope, tsubst_flags_t complain)
8630 {
8631 tree ret;
8632 timevar_push (TV_TEMPLATE_INST);
8633 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8634 entering_scope, complain);
8635 timevar_pop (TV_TEMPLATE_INST);
8636 return ret;
8637 }
8638
8639 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8640
8641 tree
8642 lookup_template_variable (tree templ, tree arglist)
8643 {
8644 /* The type of the expression is NULL_TREE since the template-id could refer
8645 to an explicit or partial specialization. */
8646 tree type = NULL_TREE;
8647 if (flag_concepts && variable_concept_p (templ))
8648 /* Except that concepts are always bool. */
8649 type = boolean_type_node;
8650 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8651 }
8652
8653 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8654
8655 tree
8656 finish_template_variable (tree var, tsubst_flags_t complain)
8657 {
8658 tree templ = TREE_OPERAND (var, 0);
8659 tree arglist = TREE_OPERAND (var, 1);
8660
8661 /* We never want to return a VAR_DECL for a variable concept, since they
8662 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8663 bool concept_p = flag_concepts && variable_concept_p (templ);
8664 if (concept_p && processing_template_decl)
8665 return var;
8666
8667 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8668 arglist = add_outermost_template_args (tmpl_args, arglist);
8669
8670 tree parms = DECL_TEMPLATE_PARMS (templ);
8671 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8672 /*req_all*/true,
8673 /*use_default*/true);
8674
8675 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8676 {
8677 if (complain & tf_error)
8678 {
8679 error ("constraints for %qD not satisfied", templ);
8680 diagnose_constraints (location_of (var), templ, arglist);
8681 }
8682 return error_mark_node;
8683 }
8684
8685 /* If a template-id refers to a specialization of a variable
8686 concept, then the expression is true if and only if the
8687 concept's constraints are satisfied by the given template
8688 arguments.
8689
8690 NOTE: This is an extension of Concepts Lite TS that
8691 allows constraints to be used in expressions. */
8692 if (concept_p)
8693 {
8694 tree decl = DECL_TEMPLATE_RESULT (templ);
8695 return evaluate_variable_concept (decl, arglist);
8696 }
8697
8698 return instantiate_template (templ, arglist, complain);
8699 }
8700
8701 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
8702 TARGS template args, and instantiate it if it's not dependent. */
8703
8704 static tree
8705 lookup_and_finish_template_variable (tree templ, tree targs,
8706 tsubst_flags_t complain)
8707 {
8708 templ = lookup_template_variable (templ, targs);
8709 if (!any_dependent_template_arguments_p (targs))
8710 {
8711 templ = finish_template_variable (templ, complain);
8712 mark_used (templ);
8713 }
8714
8715 return convert_from_reference (templ);
8716 }
8717
8718 \f
8719 struct pair_fn_data
8720 {
8721 tree_fn_t fn;
8722 void *data;
8723 /* True when we should also visit template parameters that occur in
8724 non-deduced contexts. */
8725 bool include_nondeduced_p;
8726 hash_set<tree> *visited;
8727 };
8728
8729 /* Called from for_each_template_parm via walk_tree. */
8730
8731 static tree
8732 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8733 {
8734 tree t = *tp;
8735 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8736 tree_fn_t fn = pfd->fn;
8737 void *data = pfd->data;
8738 tree result = NULL_TREE;
8739
8740 #define WALK_SUBTREE(NODE) \
8741 do \
8742 { \
8743 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8744 pfd->include_nondeduced_p); \
8745 if (result) goto out; \
8746 } \
8747 while (0)
8748
8749 if (TYPE_P (t)
8750 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8751 WALK_SUBTREE (TYPE_CONTEXT (t));
8752
8753 switch (TREE_CODE (t))
8754 {
8755 case RECORD_TYPE:
8756 if (TYPE_PTRMEMFUNC_P (t))
8757 break;
8758 /* Fall through. */
8759
8760 case UNION_TYPE:
8761 case ENUMERAL_TYPE:
8762 if (!TYPE_TEMPLATE_INFO (t))
8763 *walk_subtrees = 0;
8764 else
8765 WALK_SUBTREE (TYPE_TI_ARGS (t));
8766 break;
8767
8768 case INTEGER_TYPE:
8769 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8770 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8771 break;
8772
8773 case METHOD_TYPE:
8774 /* Since we're not going to walk subtrees, we have to do this
8775 explicitly here. */
8776 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8777 /* Fall through. */
8778
8779 case FUNCTION_TYPE:
8780 /* Check the return type. */
8781 WALK_SUBTREE (TREE_TYPE (t));
8782
8783 /* Check the parameter types. Since default arguments are not
8784 instantiated until they are needed, the TYPE_ARG_TYPES may
8785 contain expressions that involve template parameters. But,
8786 no-one should be looking at them yet. And, once they're
8787 instantiated, they don't contain template parameters, so
8788 there's no point in looking at them then, either. */
8789 {
8790 tree parm;
8791
8792 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8793 WALK_SUBTREE (TREE_VALUE (parm));
8794
8795 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8796 want walk_tree walking into them itself. */
8797 *walk_subtrees = 0;
8798 }
8799 break;
8800
8801 case TYPEOF_TYPE:
8802 case UNDERLYING_TYPE:
8803 if (pfd->include_nondeduced_p
8804 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8805 pfd->visited,
8806 pfd->include_nondeduced_p))
8807 return error_mark_node;
8808 break;
8809
8810 case FUNCTION_DECL:
8811 case VAR_DECL:
8812 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8813 WALK_SUBTREE (DECL_TI_ARGS (t));
8814 /* Fall through. */
8815
8816 case PARM_DECL:
8817 case CONST_DECL:
8818 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8819 WALK_SUBTREE (DECL_INITIAL (t));
8820 if (DECL_CONTEXT (t)
8821 && pfd->include_nondeduced_p)
8822 WALK_SUBTREE (DECL_CONTEXT (t));
8823 break;
8824
8825 case BOUND_TEMPLATE_TEMPLATE_PARM:
8826 /* Record template parameters such as `T' inside `TT<T>'. */
8827 WALK_SUBTREE (TYPE_TI_ARGS (t));
8828 /* Fall through. */
8829
8830 case TEMPLATE_TEMPLATE_PARM:
8831 case TEMPLATE_TYPE_PARM:
8832 case TEMPLATE_PARM_INDEX:
8833 if (fn && (*fn)(t, data))
8834 return t;
8835 else if (!fn)
8836 return t;
8837 break;
8838
8839 case TEMPLATE_DECL:
8840 /* A template template parameter is encountered. */
8841 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8842 WALK_SUBTREE (TREE_TYPE (t));
8843
8844 /* Already substituted template template parameter */
8845 *walk_subtrees = 0;
8846 break;
8847
8848 case TYPENAME_TYPE:
8849 if (!fn)
8850 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8851 break;
8852
8853 case CONSTRUCTOR:
8854 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8855 && pfd->include_nondeduced_p)
8856 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8857 break;
8858
8859 case INDIRECT_REF:
8860 case COMPONENT_REF:
8861 /* If there's no type, then this thing must be some expression
8862 involving template parameters. */
8863 if (!fn && !TREE_TYPE (t))
8864 return error_mark_node;
8865 break;
8866
8867 case MODOP_EXPR:
8868 case CAST_EXPR:
8869 case IMPLICIT_CONV_EXPR:
8870 case REINTERPRET_CAST_EXPR:
8871 case CONST_CAST_EXPR:
8872 case STATIC_CAST_EXPR:
8873 case DYNAMIC_CAST_EXPR:
8874 case ARROW_EXPR:
8875 case DOTSTAR_EXPR:
8876 case TYPEID_EXPR:
8877 case PSEUDO_DTOR_EXPR:
8878 if (!fn)
8879 return error_mark_node;
8880 break;
8881
8882 default:
8883 break;
8884 }
8885
8886 #undef WALK_SUBTREE
8887
8888 /* We didn't find any template parameters we liked. */
8889 out:
8890 return result;
8891 }
8892
8893 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8894 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8895 call FN with the parameter and the DATA.
8896 If FN returns nonzero, the iteration is terminated, and
8897 for_each_template_parm returns 1. Otherwise, the iteration
8898 continues. If FN never returns a nonzero value, the value
8899 returned by for_each_template_parm is 0. If FN is NULL, it is
8900 considered to be the function which always returns 1.
8901
8902 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8903 parameters that occur in non-deduced contexts. When false, only
8904 visits those template parameters that can be deduced. */
8905
8906 static tree
8907 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8908 hash_set<tree> *visited,
8909 bool include_nondeduced_p)
8910 {
8911 struct pair_fn_data pfd;
8912 tree result;
8913
8914 /* Set up. */
8915 pfd.fn = fn;
8916 pfd.data = data;
8917 pfd.include_nondeduced_p = include_nondeduced_p;
8918
8919 /* Walk the tree. (Conceptually, we would like to walk without
8920 duplicates, but for_each_template_parm_r recursively calls
8921 for_each_template_parm, so we would need to reorganize a fair
8922 bit to use walk_tree_without_duplicates, so we keep our own
8923 visited list.) */
8924 if (visited)
8925 pfd.visited = visited;
8926 else
8927 pfd.visited = new hash_set<tree>;
8928 result = cp_walk_tree (&t,
8929 for_each_template_parm_r,
8930 &pfd,
8931 pfd.visited);
8932
8933 /* Clean up. */
8934 if (!visited)
8935 {
8936 delete pfd.visited;
8937 pfd.visited = 0;
8938 }
8939
8940 return result;
8941 }
8942
8943 /* Returns true if T depends on any template parameter. */
8944
8945 int
8946 uses_template_parms (tree t)
8947 {
8948 if (t == NULL_TREE)
8949 return false;
8950
8951 bool dependent_p;
8952 int saved_processing_template_decl;
8953
8954 saved_processing_template_decl = processing_template_decl;
8955 if (!saved_processing_template_decl)
8956 processing_template_decl = 1;
8957 if (TYPE_P (t))
8958 dependent_p = dependent_type_p (t);
8959 else if (TREE_CODE (t) == TREE_VEC)
8960 dependent_p = any_dependent_template_arguments_p (t);
8961 else if (TREE_CODE (t) == TREE_LIST)
8962 dependent_p = (uses_template_parms (TREE_VALUE (t))
8963 || uses_template_parms (TREE_CHAIN (t)));
8964 else if (TREE_CODE (t) == TYPE_DECL)
8965 dependent_p = dependent_type_p (TREE_TYPE (t));
8966 else if (DECL_P (t)
8967 || EXPR_P (t)
8968 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8969 || TREE_CODE (t) == OVERLOAD
8970 || BASELINK_P (t)
8971 || identifier_p (t)
8972 || TREE_CODE (t) == TRAIT_EXPR
8973 || TREE_CODE (t) == CONSTRUCTOR
8974 || CONSTANT_CLASS_P (t))
8975 dependent_p = (type_dependent_expression_p (t)
8976 || value_dependent_expression_p (t));
8977 else
8978 {
8979 gcc_assert (t == error_mark_node);
8980 dependent_p = false;
8981 }
8982
8983 processing_template_decl = saved_processing_template_decl;
8984
8985 return dependent_p;
8986 }
8987
8988 /* Returns true iff current_function_decl is an incompletely instantiated
8989 template. Useful instead of processing_template_decl because the latter
8990 is set to 0 during instantiate_non_dependent_expr. */
8991
8992 bool
8993 in_template_function (void)
8994 {
8995 tree fn = current_function_decl;
8996 bool ret;
8997 ++processing_template_decl;
8998 ret = (fn && DECL_LANG_SPECIFIC (fn)
8999 && DECL_TEMPLATE_INFO (fn)
9000 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
9001 --processing_template_decl;
9002 return ret;
9003 }
9004
9005 /* Returns true if T depends on any template parameter with level LEVEL. */
9006
9007 bool
9008 uses_template_parms_level (tree t, int level)
9009 {
9010 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
9011 /*include_nondeduced_p=*/true);
9012 }
9013
9014 /* Returns TRUE iff INST is an instantiation we don't need to do in an
9015 ill-formed translation unit, i.e. a variable or function that isn't
9016 usable in a constant expression. */
9017
9018 static inline bool
9019 neglectable_inst_p (tree d)
9020 {
9021 return (DECL_P (d)
9022 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9023 : decl_maybe_constant_var_p (d)));
9024 }
9025
9026 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9027 neglectable and instantiated from within an erroneous instantiation. */
9028
9029 static bool
9030 limit_bad_template_recursion (tree decl)
9031 {
9032 struct tinst_level *lev = current_tinst_level;
9033 int errs = errorcount + sorrycount;
9034 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9035 return false;
9036
9037 for (; lev; lev = lev->next)
9038 if (neglectable_inst_p (lev->decl))
9039 break;
9040
9041 return (lev && errs > lev->errors);
9042 }
9043
9044 static int tinst_depth;
9045 extern int max_tinst_depth;
9046 int depth_reached;
9047
9048 static GTY(()) struct tinst_level *last_error_tinst_level;
9049
9050 /* We're starting to instantiate D; record the template instantiation context
9051 for diagnostics and to restore it later. */
9052
9053 bool
9054 push_tinst_level (tree d)
9055 {
9056 return push_tinst_level_loc (d, input_location);
9057 }
9058
9059 /* We're starting to instantiate D; record the template instantiation context
9060 at LOC for diagnostics and to restore it later. */
9061
9062 bool
9063 push_tinst_level_loc (tree d, location_t loc)
9064 {
9065 struct tinst_level *new_level;
9066
9067 if (tinst_depth >= max_tinst_depth)
9068 {
9069 fatal_error (input_location,
9070 "template instantiation depth exceeds maximum of %d"
9071 " (use -ftemplate-depth= to increase the maximum)",
9072 max_tinst_depth);
9073 return false;
9074 }
9075
9076 /* If the current instantiation caused problems, don't let it instantiate
9077 anything else. Do allow deduction substitution and decls usable in
9078 constant expressions. */
9079 if (limit_bad_template_recursion (d))
9080 return false;
9081
9082 new_level = ggc_alloc<tinst_level> ();
9083 new_level->decl = d;
9084 new_level->locus = loc;
9085 new_level->errors = errorcount+sorrycount;
9086 new_level->in_system_header_p = in_system_header_at (input_location);
9087 new_level->next = current_tinst_level;
9088 current_tinst_level = new_level;
9089
9090 ++tinst_depth;
9091 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9092 depth_reached = tinst_depth;
9093
9094 return true;
9095 }
9096
9097 /* We're done instantiating this template; return to the instantiation
9098 context. */
9099
9100 void
9101 pop_tinst_level (void)
9102 {
9103 /* Restore the filename and line number stashed away when we started
9104 this instantiation. */
9105 input_location = current_tinst_level->locus;
9106 current_tinst_level = current_tinst_level->next;
9107 --tinst_depth;
9108 }
9109
9110 /* We're instantiating a deferred template; restore the template
9111 instantiation context in which the instantiation was requested, which
9112 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9113
9114 static tree
9115 reopen_tinst_level (struct tinst_level *level)
9116 {
9117 struct tinst_level *t;
9118
9119 tinst_depth = 0;
9120 for (t = level; t; t = t->next)
9121 ++tinst_depth;
9122
9123 current_tinst_level = level;
9124 pop_tinst_level ();
9125 if (current_tinst_level)
9126 current_tinst_level->errors = errorcount+sorrycount;
9127 return level->decl;
9128 }
9129
9130 /* Returns the TINST_LEVEL which gives the original instantiation
9131 context. */
9132
9133 struct tinst_level *
9134 outermost_tinst_level (void)
9135 {
9136 struct tinst_level *level = current_tinst_level;
9137 if (level)
9138 while (level->next)
9139 level = level->next;
9140 return level;
9141 }
9142
9143 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9144 vector of template arguments, as for tsubst.
9145
9146 Returns an appropriate tsubst'd friend declaration. */
9147
9148 static tree
9149 tsubst_friend_function (tree decl, tree args)
9150 {
9151 tree new_friend;
9152
9153 if (TREE_CODE (decl) == FUNCTION_DECL
9154 && DECL_TEMPLATE_INSTANTIATION (decl)
9155 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9156 /* This was a friend declared with an explicit template
9157 argument list, e.g.:
9158
9159 friend void f<>(T);
9160
9161 to indicate that f was a template instantiation, not a new
9162 function declaration. Now, we have to figure out what
9163 instantiation of what template. */
9164 {
9165 tree template_id, arglist, fns;
9166 tree new_args;
9167 tree tmpl;
9168 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9169
9170 /* Friend functions are looked up in the containing namespace scope.
9171 We must enter that scope, to avoid finding member functions of the
9172 current class with same name. */
9173 push_nested_namespace (ns);
9174 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9175 tf_warning_or_error, NULL_TREE,
9176 /*integral_constant_expression_p=*/false);
9177 pop_nested_namespace (ns);
9178 arglist = tsubst (DECL_TI_ARGS (decl), args,
9179 tf_warning_or_error, NULL_TREE);
9180 template_id = lookup_template_function (fns, arglist);
9181
9182 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9183 tmpl = determine_specialization (template_id, new_friend,
9184 &new_args,
9185 /*need_member_template=*/0,
9186 TREE_VEC_LENGTH (args),
9187 tsk_none);
9188 return instantiate_template (tmpl, new_args, tf_error);
9189 }
9190
9191 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9192
9193 /* The NEW_FRIEND will look like an instantiation, to the
9194 compiler, but is not an instantiation from the point of view of
9195 the language. For example, we might have had:
9196
9197 template <class T> struct S {
9198 template <class U> friend void f(T, U);
9199 };
9200
9201 Then, in S<int>, template <class U> void f(int, U) is not an
9202 instantiation of anything. */
9203 if (new_friend == error_mark_node)
9204 return error_mark_node;
9205
9206 DECL_USE_TEMPLATE (new_friend) = 0;
9207 if (TREE_CODE (decl) == TEMPLATE_DECL)
9208 {
9209 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9210 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9211 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9212 }
9213
9214 /* The mangled name for the NEW_FRIEND is incorrect. The function
9215 is not a template instantiation and should not be mangled like
9216 one. Therefore, we forget the mangling here; we'll recompute it
9217 later if we need it. */
9218 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9219 {
9220 SET_DECL_RTL (new_friend, NULL);
9221 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9222 }
9223
9224 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9225 {
9226 tree old_decl;
9227 tree new_friend_template_info;
9228 tree new_friend_result_template_info;
9229 tree ns;
9230 int new_friend_is_defn;
9231
9232 /* We must save some information from NEW_FRIEND before calling
9233 duplicate decls since that function will free NEW_FRIEND if
9234 possible. */
9235 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9236 new_friend_is_defn =
9237 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9238 (template_for_substitution (new_friend)))
9239 != NULL_TREE);
9240 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9241 {
9242 /* This declaration is a `primary' template. */
9243 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9244
9245 new_friend_result_template_info
9246 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9247 }
9248 else
9249 new_friend_result_template_info = NULL_TREE;
9250
9251 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9252 if (new_friend_is_defn)
9253 DECL_INITIAL (new_friend) = error_mark_node;
9254
9255 /* Inside pushdecl_namespace_level, we will push into the
9256 current namespace. However, the friend function should go
9257 into the namespace of the template. */
9258 ns = decl_namespace_context (new_friend);
9259 push_nested_namespace (ns);
9260 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9261 pop_nested_namespace (ns);
9262
9263 if (old_decl == error_mark_node)
9264 return error_mark_node;
9265
9266 if (old_decl != new_friend)
9267 {
9268 /* This new friend declaration matched an existing
9269 declaration. For example, given:
9270
9271 template <class T> void f(T);
9272 template <class U> class C {
9273 template <class T> friend void f(T) {}
9274 };
9275
9276 the friend declaration actually provides the definition
9277 of `f', once C has been instantiated for some type. So,
9278 old_decl will be the out-of-class template declaration,
9279 while new_friend is the in-class definition.
9280
9281 But, if `f' was called before this point, the
9282 instantiation of `f' will have DECL_TI_ARGS corresponding
9283 to `T' but not to `U', references to which might appear
9284 in the definition of `f'. Previously, the most general
9285 template for an instantiation of `f' was the out-of-class
9286 version; now it is the in-class version. Therefore, we
9287 run through all specialization of `f', adding to their
9288 DECL_TI_ARGS appropriately. In particular, they need a
9289 new set of outer arguments, corresponding to the
9290 arguments for this class instantiation.
9291
9292 The same situation can arise with something like this:
9293
9294 friend void f(int);
9295 template <class T> class C {
9296 friend void f(T) {}
9297 };
9298
9299 when `C<int>' is instantiated. Now, `f(int)' is defined
9300 in the class. */
9301
9302 if (!new_friend_is_defn)
9303 /* On the other hand, if the in-class declaration does
9304 *not* provide a definition, then we don't want to alter
9305 existing definitions. We can just leave everything
9306 alone. */
9307 ;
9308 else
9309 {
9310 tree new_template = TI_TEMPLATE (new_friend_template_info);
9311 tree new_args = TI_ARGS (new_friend_template_info);
9312
9313 /* Overwrite whatever template info was there before, if
9314 any, with the new template information pertaining to
9315 the declaration. */
9316 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9317
9318 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9319 {
9320 /* We should have called reregister_specialization in
9321 duplicate_decls. */
9322 gcc_assert (retrieve_specialization (new_template,
9323 new_args, 0)
9324 == old_decl);
9325
9326 /* Instantiate it if the global has already been used. */
9327 if (DECL_ODR_USED (old_decl))
9328 instantiate_decl (old_decl, /*defer_ok=*/true,
9329 /*expl_inst_class_mem_p=*/false);
9330 }
9331 else
9332 {
9333 tree t;
9334
9335 /* Indicate that the old function template is a partial
9336 instantiation. */
9337 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9338 = new_friend_result_template_info;
9339
9340 gcc_assert (new_template
9341 == most_general_template (new_template));
9342 gcc_assert (new_template != old_decl);
9343
9344 /* Reassign any specializations already in the hash table
9345 to the new more general template, and add the
9346 additional template args. */
9347 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9348 t != NULL_TREE;
9349 t = TREE_CHAIN (t))
9350 {
9351 tree spec = TREE_VALUE (t);
9352 spec_entry elt;
9353
9354 elt.tmpl = old_decl;
9355 elt.args = DECL_TI_ARGS (spec);
9356 elt.spec = NULL_TREE;
9357
9358 decl_specializations->remove_elt (&elt);
9359
9360 DECL_TI_ARGS (spec)
9361 = add_outermost_template_args (new_args,
9362 DECL_TI_ARGS (spec));
9363
9364 register_specialization
9365 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9366
9367 }
9368 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9369 }
9370 }
9371
9372 /* The information from NEW_FRIEND has been merged into OLD_DECL
9373 by duplicate_decls. */
9374 new_friend = old_decl;
9375 }
9376 }
9377 else
9378 {
9379 tree context = DECL_CONTEXT (new_friend);
9380 bool dependent_p;
9381
9382 /* In the code
9383 template <class T> class C {
9384 template <class U> friend void C1<U>::f (); // case 1
9385 friend void C2<T>::f (); // case 2
9386 };
9387 we only need to make sure CONTEXT is a complete type for
9388 case 2. To distinguish between the two cases, we note that
9389 CONTEXT of case 1 remains dependent type after tsubst while
9390 this isn't true for case 2. */
9391 ++processing_template_decl;
9392 dependent_p = dependent_type_p (context);
9393 --processing_template_decl;
9394
9395 if (!dependent_p
9396 && !complete_type_or_else (context, NULL_TREE))
9397 return error_mark_node;
9398
9399 if (COMPLETE_TYPE_P (context))
9400 {
9401 tree fn = new_friend;
9402 /* do_friend adds the TEMPLATE_DECL for any member friend
9403 template even if it isn't a member template, i.e.
9404 template <class T> friend A<T>::f();
9405 Look through it in that case. */
9406 if (TREE_CODE (fn) == TEMPLATE_DECL
9407 && !PRIMARY_TEMPLATE_P (fn))
9408 fn = DECL_TEMPLATE_RESULT (fn);
9409 /* Check to see that the declaration is really present, and,
9410 possibly obtain an improved declaration. */
9411 fn = check_classfn (context, fn, NULL_TREE);
9412
9413 if (fn)
9414 new_friend = fn;
9415 }
9416 }
9417
9418 return new_friend;
9419 }
9420
9421 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9422 template arguments, as for tsubst.
9423
9424 Returns an appropriate tsubst'd friend type or error_mark_node on
9425 failure. */
9426
9427 static tree
9428 tsubst_friend_class (tree friend_tmpl, tree args)
9429 {
9430 tree friend_type;
9431 tree tmpl;
9432 tree context;
9433
9434 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9435 {
9436 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9437 return TREE_TYPE (t);
9438 }
9439
9440 context = CP_DECL_CONTEXT (friend_tmpl);
9441
9442 if (context != global_namespace)
9443 {
9444 if (TREE_CODE (context) == NAMESPACE_DECL)
9445 push_nested_namespace (context);
9446 else
9447 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9448 }
9449
9450 /* Look for a class template declaration. We look for hidden names
9451 because two friend declarations of the same template are the
9452 same. For example, in:
9453
9454 struct A {
9455 template <typename> friend class F;
9456 };
9457 template <typename> struct B {
9458 template <typename> friend class F;
9459 };
9460
9461 both F templates are the same. */
9462 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9463 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9464
9465 /* But, if we don't find one, it might be because we're in a
9466 situation like this:
9467
9468 template <class T>
9469 struct S {
9470 template <class U>
9471 friend struct S;
9472 };
9473
9474 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9475 for `S<int>', not the TEMPLATE_DECL. */
9476 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9477 {
9478 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9479 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9480 }
9481
9482 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9483 {
9484 /* The friend template has already been declared. Just
9485 check to see that the declarations match, and install any new
9486 default parameters. We must tsubst the default parameters,
9487 of course. We only need the innermost template parameters
9488 because that is all that redeclare_class_template will look
9489 at. */
9490 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9491 > TMPL_ARGS_DEPTH (args))
9492 {
9493 tree parms;
9494 location_t saved_input_location;
9495 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9496 args, tf_warning_or_error);
9497
9498 saved_input_location = input_location;
9499 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9500 tree cons = get_constraints (tmpl);
9501 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9502 input_location = saved_input_location;
9503
9504 }
9505
9506 friend_type = TREE_TYPE (tmpl);
9507 }
9508 else
9509 {
9510 /* The friend template has not already been declared. In this
9511 case, the instantiation of the template class will cause the
9512 injection of this template into the global scope. */
9513 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9514 if (tmpl == error_mark_node)
9515 return error_mark_node;
9516
9517 /* The new TMPL is not an instantiation of anything, so we
9518 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9519 the new type because that is supposed to be the corresponding
9520 template decl, i.e., TMPL. */
9521 DECL_USE_TEMPLATE (tmpl) = 0;
9522 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9523 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9524 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9525 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9526
9527 /* Inject this template into the global scope. */
9528 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9529 }
9530
9531 if (context != global_namespace)
9532 {
9533 if (TREE_CODE (context) == NAMESPACE_DECL)
9534 pop_nested_namespace (context);
9535 else
9536 pop_nested_class ();
9537 }
9538
9539 return friend_type;
9540 }
9541
9542 /* Returns zero if TYPE cannot be completed later due to circularity.
9543 Otherwise returns one. */
9544
9545 static int
9546 can_complete_type_without_circularity (tree type)
9547 {
9548 if (type == NULL_TREE || type == error_mark_node)
9549 return 0;
9550 else if (COMPLETE_TYPE_P (type))
9551 return 1;
9552 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9553 return can_complete_type_without_circularity (TREE_TYPE (type));
9554 else if (CLASS_TYPE_P (type)
9555 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9556 return 0;
9557 else
9558 return 1;
9559 }
9560
9561 static tree tsubst_omp_clauses (tree, bool, bool, tree, tsubst_flags_t, tree);
9562
9563 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9564 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9565
9566 static tree
9567 tsubst_attribute (tree t, tree *decl_p, tree args,
9568 tsubst_flags_t complain, tree in_decl)
9569 {
9570 gcc_assert (ATTR_IS_DEPENDENT (t));
9571
9572 tree val = TREE_VALUE (t);
9573 if (val == NULL_TREE)
9574 /* Nothing to do. */;
9575 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9576 && is_attribute_p ("omp declare simd",
9577 get_attribute_name (t)))
9578 {
9579 tree clauses = TREE_VALUE (val);
9580 clauses = tsubst_omp_clauses (clauses, true, false, args,
9581 complain, in_decl);
9582 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9583 clauses = finish_omp_clauses (clauses, false, true);
9584 tree parms = DECL_ARGUMENTS (*decl_p);
9585 clauses
9586 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9587 if (clauses)
9588 val = build_tree_list (NULL_TREE, clauses);
9589 else
9590 val = NULL_TREE;
9591 }
9592 /* If the first attribute argument is an identifier, don't
9593 pass it through tsubst. Attributes like mode, format,
9594 cleanup and several target specific attributes expect it
9595 unmodified. */
9596 else if (attribute_takes_identifier_p (get_attribute_name (t)))
9597 {
9598 tree chain
9599 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
9600 /*integral_constant_expression_p=*/false);
9601 if (chain != TREE_CHAIN (val))
9602 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
9603 }
9604 else if (PACK_EXPANSION_P (val))
9605 {
9606 /* An attribute pack expansion. */
9607 tree purp = TREE_PURPOSE (t);
9608 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
9609 int len = TREE_VEC_LENGTH (pack);
9610 tree list = NULL_TREE;
9611 tree *q = &list;
9612 for (int i = 0; i < len; ++i)
9613 {
9614 tree elt = TREE_VEC_ELT (pack, i);
9615 *q = build_tree_list (purp, elt);
9616 q = &TREE_CHAIN (*q);
9617 }
9618 return list;
9619 }
9620 else
9621 val = tsubst_expr (val, args, complain, in_decl,
9622 /*integral_constant_expression_p=*/false);
9623
9624 if (val != TREE_VALUE (t))
9625 return build_tree_list (TREE_PURPOSE (t), val);
9626 return t;
9627 }
9628
9629 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
9630 unchanged or a new TREE_LIST chain. */
9631
9632 static tree
9633 tsubst_attributes (tree attributes, tree args,
9634 tsubst_flags_t complain, tree in_decl)
9635 {
9636 tree last_dep = NULL_TREE;
9637
9638 for (tree t = attributes; t; t = TREE_CHAIN (t))
9639 if (ATTR_IS_DEPENDENT (t))
9640 {
9641 last_dep = t;
9642 attributes = copy_list (attributes);
9643 break;
9644 }
9645
9646 if (last_dep)
9647 for (tree *p = &attributes; *p; p = &TREE_CHAIN (*p))
9648 {
9649 tree t = *p;
9650 if (ATTR_IS_DEPENDENT (t))
9651 {
9652 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
9653 if (subst == t)
9654 continue;
9655 *p = subst;
9656 do
9657 p = &TREE_CHAIN (*p);
9658 while (*p);
9659 *p = TREE_CHAIN (t);
9660 }
9661 }
9662
9663 return attributes;
9664 }
9665
9666 /* Apply any attributes which had to be deferred until instantiation
9667 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9668 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9669
9670 static void
9671 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9672 tree args, tsubst_flags_t complain, tree in_decl)
9673 {
9674 tree last_dep = NULL_TREE;
9675 tree t;
9676 tree *p;
9677
9678 for (t = attributes; t; t = TREE_CHAIN (t))
9679 if (ATTR_IS_DEPENDENT (t))
9680 {
9681 last_dep = t;
9682 attributes = copy_list (attributes);
9683 break;
9684 }
9685
9686 if (DECL_P (*decl_p))
9687 {
9688 if (TREE_TYPE (*decl_p) == error_mark_node)
9689 return;
9690 p = &DECL_ATTRIBUTES (*decl_p);
9691 }
9692 else
9693 p = &TYPE_ATTRIBUTES (*decl_p);
9694
9695 if (last_dep)
9696 {
9697 tree late_attrs = NULL_TREE;
9698 tree *q = &late_attrs;
9699
9700 for (*p = attributes; *p; )
9701 {
9702 t = *p;
9703 if (ATTR_IS_DEPENDENT (t))
9704 {
9705 *p = TREE_CHAIN (t);
9706 TREE_CHAIN (t) = NULL_TREE;
9707 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
9708 do
9709 q = &TREE_CHAIN (*q);
9710 while (*q);
9711 }
9712 else
9713 p = &TREE_CHAIN (t);
9714 }
9715
9716 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9717 }
9718 }
9719
9720 /* Perform (or defer) access check for typedefs that were referenced
9721 from within the template TMPL code.
9722 This is a subroutine of instantiate_decl and instantiate_class_template.
9723 TMPL is the template to consider and TARGS is the list of arguments of
9724 that template. */
9725
9726 static void
9727 perform_typedefs_access_check (tree tmpl, tree targs)
9728 {
9729 location_t saved_location;
9730 unsigned i;
9731 qualified_typedef_usage_t *iter;
9732
9733 if (!tmpl
9734 || (!CLASS_TYPE_P (tmpl)
9735 && TREE_CODE (tmpl) != FUNCTION_DECL))
9736 return;
9737
9738 saved_location = input_location;
9739 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9740 {
9741 tree type_decl = iter->typedef_decl;
9742 tree type_scope = iter->context;
9743
9744 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9745 continue;
9746
9747 if (uses_template_parms (type_decl))
9748 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9749 if (uses_template_parms (type_scope))
9750 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9751
9752 /* Make access check error messages point to the location
9753 of the use of the typedef. */
9754 input_location = iter->locus;
9755 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9756 type_decl, type_decl,
9757 tf_warning_or_error);
9758 }
9759 input_location = saved_location;
9760 }
9761
9762 static tree
9763 instantiate_class_template_1 (tree type)
9764 {
9765 tree templ, args, pattern, t, member;
9766 tree typedecl;
9767 tree pbinfo;
9768 tree base_list;
9769 unsigned int saved_maximum_field_alignment;
9770 tree fn_context;
9771
9772 if (type == error_mark_node)
9773 return error_mark_node;
9774
9775 if (COMPLETE_OR_OPEN_TYPE_P (type)
9776 || uses_template_parms (type))
9777 return type;
9778
9779 /* Figure out which template is being instantiated. */
9780 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9781 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9782
9783 /* Determine what specialization of the original template to
9784 instantiate. */
9785 t = most_specialized_partial_spec (type, tf_warning_or_error);
9786 if (t == error_mark_node)
9787 {
9788 TYPE_BEING_DEFINED (type) = 1;
9789 return error_mark_node;
9790 }
9791 else if (t)
9792 {
9793 /* This TYPE is actually an instantiation of a partial
9794 specialization. We replace the innermost set of ARGS with
9795 the arguments appropriate for substitution. For example,
9796 given:
9797
9798 template <class T> struct S {};
9799 template <class T> struct S<T*> {};
9800
9801 and supposing that we are instantiating S<int*>, ARGS will
9802 presently be {int*} -- but we need {int}. */
9803 pattern = TREE_TYPE (t);
9804 args = TREE_PURPOSE (t);
9805 }
9806 else
9807 {
9808 pattern = TREE_TYPE (templ);
9809 args = CLASSTYPE_TI_ARGS (type);
9810 }
9811
9812 /* If the template we're instantiating is incomplete, then clearly
9813 there's nothing we can do. */
9814 if (!COMPLETE_TYPE_P (pattern))
9815 return type;
9816
9817 /* If we've recursively instantiated too many templates, stop. */
9818 if (! push_tinst_level (type))
9819 return type;
9820
9821 /* Now we're really doing the instantiation. Mark the type as in
9822 the process of being defined. */
9823 TYPE_BEING_DEFINED (type) = 1;
9824
9825 /* We may be in the middle of deferred access check. Disable
9826 it now. */
9827 push_deferring_access_checks (dk_no_deferred);
9828
9829 int saved_unevaluated_operand = cp_unevaluated_operand;
9830 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9831
9832 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9833 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9834 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9835 fn_context = error_mark_node;
9836 if (!fn_context)
9837 push_to_top_level ();
9838 else
9839 {
9840 cp_unevaluated_operand = 0;
9841 c_inhibit_evaluation_warnings = 0;
9842 }
9843 /* Use #pragma pack from the template context. */
9844 saved_maximum_field_alignment = maximum_field_alignment;
9845 maximum_field_alignment = TYPE_PRECISION (pattern);
9846
9847 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9848
9849 /* Set the input location to the most specialized template definition.
9850 This is needed if tsubsting causes an error. */
9851 typedecl = TYPE_MAIN_DECL (pattern);
9852 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9853 DECL_SOURCE_LOCATION (typedecl);
9854
9855 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9856 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9857 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9858 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9859 if (ANON_AGGR_TYPE_P (pattern))
9860 SET_ANON_AGGR_TYPE_P (type);
9861 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9862 {
9863 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9864 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9865 /* Adjust visibility for template arguments. */
9866 determine_visibility (TYPE_MAIN_DECL (type));
9867 }
9868 if (CLASS_TYPE_P (type))
9869 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9870
9871 pbinfo = TYPE_BINFO (pattern);
9872
9873 /* We should never instantiate a nested class before its enclosing
9874 class; we need to look up the nested class by name before we can
9875 instantiate it, and that lookup should instantiate the enclosing
9876 class. */
9877 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9878 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9879
9880 base_list = NULL_TREE;
9881 if (BINFO_N_BASE_BINFOS (pbinfo))
9882 {
9883 tree pbase_binfo;
9884 tree pushed_scope;
9885 int i;
9886
9887 /* We must enter the scope containing the type, as that is where
9888 the accessibility of types named in dependent bases are
9889 looked up from. */
9890 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9891
9892 /* Substitute into each of the bases to determine the actual
9893 basetypes. */
9894 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9895 {
9896 tree base;
9897 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9898 tree expanded_bases = NULL_TREE;
9899 int idx, len = 1;
9900
9901 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9902 {
9903 expanded_bases =
9904 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9905 args, tf_error, NULL_TREE);
9906 if (expanded_bases == error_mark_node)
9907 continue;
9908
9909 len = TREE_VEC_LENGTH (expanded_bases);
9910 }
9911
9912 for (idx = 0; idx < len; idx++)
9913 {
9914 if (expanded_bases)
9915 /* Extract the already-expanded base class. */
9916 base = TREE_VEC_ELT (expanded_bases, idx);
9917 else
9918 /* Substitute to figure out the base class. */
9919 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9920 NULL_TREE);
9921
9922 if (base == error_mark_node)
9923 continue;
9924
9925 base_list = tree_cons (access, base, base_list);
9926 if (BINFO_VIRTUAL_P (pbase_binfo))
9927 TREE_TYPE (base_list) = integer_type_node;
9928 }
9929 }
9930
9931 /* The list is now in reverse order; correct that. */
9932 base_list = nreverse (base_list);
9933
9934 if (pushed_scope)
9935 pop_scope (pushed_scope);
9936 }
9937 /* Now call xref_basetypes to set up all the base-class
9938 information. */
9939 xref_basetypes (type, base_list);
9940
9941 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9942 (int) ATTR_FLAG_TYPE_IN_PLACE,
9943 args, tf_error, NULL_TREE);
9944 fixup_attribute_variants (type);
9945
9946 /* Now that our base classes are set up, enter the scope of the
9947 class, so that name lookups into base classes, etc. will work
9948 correctly. This is precisely analogous to what we do in
9949 begin_class_definition when defining an ordinary non-template
9950 class, except we also need to push the enclosing classes. */
9951 push_nested_class (type);
9952
9953 /* Now members are processed in the order of declaration. */
9954 for (member = CLASSTYPE_DECL_LIST (pattern);
9955 member; member = TREE_CHAIN (member))
9956 {
9957 tree t = TREE_VALUE (member);
9958
9959 if (TREE_PURPOSE (member))
9960 {
9961 if (TYPE_P (t))
9962 {
9963 /* Build new CLASSTYPE_NESTED_UTDS. */
9964
9965 tree newtag;
9966 bool class_template_p;
9967
9968 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9969 && TYPE_LANG_SPECIFIC (t)
9970 && CLASSTYPE_IS_TEMPLATE (t));
9971 /* If the member is a class template, then -- even after
9972 substitution -- there may be dependent types in the
9973 template argument list for the class. We increment
9974 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9975 that function will assume that no types are dependent
9976 when outside of a template. */
9977 if (class_template_p)
9978 ++processing_template_decl;
9979 newtag = tsubst (t, args, tf_error, NULL_TREE);
9980 if (class_template_p)
9981 --processing_template_decl;
9982 if (newtag == error_mark_node)
9983 continue;
9984
9985 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9986 {
9987 tree name = TYPE_IDENTIFIER (t);
9988
9989 if (class_template_p)
9990 /* Unfortunately, lookup_template_class sets
9991 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9992 instantiation (i.e., for the type of a member
9993 template class nested within a template class.)
9994 This behavior is required for
9995 maybe_process_partial_specialization to work
9996 correctly, but is not accurate in this case;
9997 the TAG is not an instantiation of anything.
9998 (The corresponding TEMPLATE_DECL is an
9999 instantiation, but the TYPE is not.) */
10000 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
10001
10002 /* Now, we call pushtag to put this NEWTAG into the scope of
10003 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10004 pushtag calling push_template_decl. We don't have to do
10005 this for enums because it will already have been done in
10006 tsubst_enum. */
10007 if (name)
10008 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
10009 pushtag (name, newtag, /*tag_scope=*/ts_current);
10010 }
10011 }
10012 else if (DECL_DECLARES_FUNCTION_P (t))
10013 {
10014 /* Build new TYPE_METHODS. */
10015 tree r;
10016
10017 if (TREE_CODE (t) == TEMPLATE_DECL)
10018 ++processing_template_decl;
10019 r = tsubst (t, args, tf_error, NULL_TREE);
10020 if (TREE_CODE (t) == TEMPLATE_DECL)
10021 --processing_template_decl;
10022 set_current_access_from_decl (r);
10023 finish_member_declaration (r);
10024 /* Instantiate members marked with attribute used. */
10025 if (r != error_mark_node && DECL_PRESERVE_P (r))
10026 mark_used (r);
10027 if (TREE_CODE (r) == FUNCTION_DECL
10028 && DECL_OMP_DECLARE_REDUCTION_P (r))
10029 cp_check_omp_declare_reduction (r);
10030 }
10031 else if (DECL_CLASS_TEMPLATE_P (t)
10032 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10033 /* A closure type for a lambda in a default argument for a
10034 member template. Ignore it; it will be instantiated with
10035 the default argument. */;
10036 else
10037 {
10038 /* Build new TYPE_FIELDS. */
10039 if (TREE_CODE (t) == STATIC_ASSERT)
10040 {
10041 tree condition;
10042
10043 ++c_inhibit_evaluation_warnings;
10044 condition =
10045 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10046 tf_warning_or_error, NULL_TREE,
10047 /*integral_constant_expression_p=*/true);
10048 --c_inhibit_evaluation_warnings;
10049
10050 finish_static_assert (condition,
10051 STATIC_ASSERT_MESSAGE (t),
10052 STATIC_ASSERT_SOURCE_LOCATION (t),
10053 /*member_p=*/true);
10054 }
10055 else if (TREE_CODE (t) != CONST_DECL)
10056 {
10057 tree r;
10058 tree vec = NULL_TREE;
10059 int len = 1;
10060
10061 /* The file and line for this declaration, to
10062 assist in error message reporting. Since we
10063 called push_tinst_level above, we don't need to
10064 restore these. */
10065 input_location = DECL_SOURCE_LOCATION (t);
10066
10067 if (TREE_CODE (t) == TEMPLATE_DECL)
10068 ++processing_template_decl;
10069 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10070 if (TREE_CODE (t) == TEMPLATE_DECL)
10071 --processing_template_decl;
10072
10073 if (TREE_CODE (r) == TREE_VEC)
10074 {
10075 /* A capture pack became multiple fields. */
10076 vec = r;
10077 len = TREE_VEC_LENGTH (vec);
10078 }
10079
10080 for (int i = 0; i < len; ++i)
10081 {
10082 if (vec)
10083 r = TREE_VEC_ELT (vec, i);
10084 if (VAR_P (r))
10085 {
10086 /* In [temp.inst]:
10087
10088 [t]he initialization (and any associated
10089 side-effects) of a static data member does
10090 not occur unless the static data member is
10091 itself used in a way that requires the
10092 definition of the static data member to
10093 exist.
10094
10095 Therefore, we do not substitute into the
10096 initialized for the static data member here. */
10097 finish_static_data_member_decl
10098 (r,
10099 /*init=*/NULL_TREE,
10100 /*init_const_expr_p=*/false,
10101 /*asmspec_tree=*/NULL_TREE,
10102 /*flags=*/0);
10103 /* Instantiate members marked with attribute used. */
10104 if (r != error_mark_node && DECL_PRESERVE_P (r))
10105 mark_used (r);
10106 }
10107 else if (TREE_CODE (r) == FIELD_DECL)
10108 {
10109 /* Determine whether R has a valid type and can be
10110 completed later. If R is invalid, then its type
10111 is replaced by error_mark_node. */
10112 tree rtype = TREE_TYPE (r);
10113 if (can_complete_type_without_circularity (rtype))
10114 complete_type (rtype);
10115
10116 if (TREE_CODE (r) == FIELD_DECL
10117 && TREE_CODE (rtype) == ARRAY_TYPE
10118 && COMPLETE_TYPE_P (TREE_TYPE (rtype))
10119 && !COMPLETE_TYPE_P (rtype))
10120 {
10121 /* Flexible array mmembers of elements
10122 of complete type have an incomplete type
10123 and that's okay. */
10124 }
10125 else if (!COMPLETE_TYPE_P (rtype))
10126 {
10127 cxx_incomplete_type_error (r, rtype);
10128 TREE_TYPE (r) = error_mark_node;
10129 }
10130 }
10131
10132 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10133 such a thing will already have been added to the field
10134 list by tsubst_enum in finish_member_declaration in the
10135 CLASSTYPE_NESTED_UTDS case above. */
10136 if (!(TREE_CODE (r) == TYPE_DECL
10137 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10138 && DECL_ARTIFICIAL (r)))
10139 {
10140 set_current_access_from_decl (r);
10141 finish_member_declaration (r);
10142 }
10143 }
10144 }
10145 }
10146 }
10147 else
10148 {
10149 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10150 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10151 {
10152 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10153
10154 tree friend_type = t;
10155 bool adjust_processing_template_decl = false;
10156
10157 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10158 {
10159 /* template <class T> friend class C; */
10160 friend_type = tsubst_friend_class (friend_type, args);
10161 adjust_processing_template_decl = true;
10162 }
10163 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10164 {
10165 /* template <class T> friend class C::D; */
10166 friend_type = tsubst (friend_type, args,
10167 tf_warning_or_error, NULL_TREE);
10168 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10169 friend_type = TREE_TYPE (friend_type);
10170 adjust_processing_template_decl = true;
10171 }
10172 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10173 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10174 {
10175 /* This could be either
10176
10177 friend class T::C;
10178
10179 when dependent_type_p is false or
10180
10181 template <class U> friend class T::C;
10182
10183 otherwise. */
10184 /* Bump processing_template_decl in case this is something like
10185 template <class T> friend struct A<T>::B. */
10186 ++processing_template_decl;
10187 friend_type = tsubst (friend_type, args,
10188 tf_warning_or_error, NULL_TREE);
10189 if (dependent_type_p (friend_type))
10190 adjust_processing_template_decl = true;
10191 --processing_template_decl;
10192 }
10193 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10194 && hidden_name_p (TYPE_NAME (friend_type)))
10195 {
10196 /* friend class C;
10197
10198 where C hasn't been declared yet. Let's lookup name
10199 from namespace scope directly, bypassing any name that
10200 come from dependent base class. */
10201 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10202
10203 /* The call to xref_tag_from_type does injection for friend
10204 classes. */
10205 push_nested_namespace (ns);
10206 friend_type =
10207 xref_tag_from_type (friend_type, NULL_TREE,
10208 /*tag_scope=*/ts_current);
10209 pop_nested_namespace (ns);
10210 }
10211 else if (uses_template_parms (friend_type))
10212 /* friend class C<T>; */
10213 friend_type = tsubst (friend_type, args,
10214 tf_warning_or_error, NULL_TREE);
10215 /* Otherwise it's
10216
10217 friend class C;
10218
10219 where C is already declared or
10220
10221 friend class C<int>;
10222
10223 We don't have to do anything in these cases. */
10224
10225 if (adjust_processing_template_decl)
10226 /* Trick make_friend_class into realizing that the friend
10227 we're adding is a template, not an ordinary class. It's
10228 important that we use make_friend_class since it will
10229 perform some error-checking and output cross-reference
10230 information. */
10231 ++processing_template_decl;
10232
10233 if (friend_type != error_mark_node)
10234 make_friend_class (type, friend_type, /*complain=*/false);
10235
10236 if (adjust_processing_template_decl)
10237 --processing_template_decl;
10238 }
10239 else
10240 {
10241 /* Build new DECL_FRIENDLIST. */
10242 tree r;
10243
10244 /* The file and line for this declaration, to
10245 assist in error message reporting. Since we
10246 called push_tinst_level above, we don't need to
10247 restore these. */
10248 input_location = DECL_SOURCE_LOCATION (t);
10249
10250 if (TREE_CODE (t) == TEMPLATE_DECL)
10251 {
10252 ++processing_template_decl;
10253 push_deferring_access_checks (dk_no_check);
10254 }
10255
10256 r = tsubst_friend_function (t, args);
10257 add_friend (type, r, /*complain=*/false);
10258 if (TREE_CODE (t) == TEMPLATE_DECL)
10259 {
10260 pop_deferring_access_checks ();
10261 --processing_template_decl;
10262 }
10263 }
10264 }
10265 }
10266
10267 if (fn_context)
10268 {
10269 /* Restore these before substituting into the lambda capture
10270 initializers. */
10271 cp_unevaluated_operand = saved_unevaluated_operand;
10272 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10273 }
10274
10275 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10276 {
10277 tree decl = lambda_function (type);
10278 if (decl)
10279 {
10280 if (!DECL_TEMPLATE_INFO (decl)
10281 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10282 {
10283 /* Set function_depth to avoid garbage collection. */
10284 ++function_depth;
10285 instantiate_decl (decl, false, false);
10286 --function_depth;
10287 }
10288
10289 /* We need to instantiate the capture list from the template
10290 after we've instantiated the closure members, but before we
10291 consider adding the conversion op. Also keep any captures
10292 that may have been added during instantiation of the op(). */
10293 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10294 tree tmpl_cap
10295 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10296 args, tf_warning_or_error, NULL_TREE,
10297 false, false);
10298
10299 LAMBDA_EXPR_CAPTURE_LIST (expr)
10300 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10301
10302 maybe_add_lambda_conv_op (type);
10303 }
10304 else
10305 gcc_assert (errorcount);
10306 }
10307
10308 /* Set the file and line number information to whatever is given for
10309 the class itself. This puts error messages involving generated
10310 implicit functions at a predictable point, and the same point
10311 that would be used for non-template classes. */
10312 input_location = DECL_SOURCE_LOCATION (typedecl);
10313
10314 unreverse_member_declarations (type);
10315 finish_struct_1 (type);
10316 TYPE_BEING_DEFINED (type) = 0;
10317
10318 /* We don't instantiate default arguments for member functions. 14.7.1:
10319
10320 The implicit instantiation of a class template specialization causes
10321 the implicit instantiation of the declarations, but not of the
10322 definitions or default arguments, of the class member functions,
10323 member classes, static data members and member templates.... */
10324
10325 /* Some typedefs referenced from within the template code need to be access
10326 checked at template instantiation time, i.e now. These types were
10327 added to the template at parsing time. Let's get those and perform
10328 the access checks then. */
10329 perform_typedefs_access_check (pattern, args);
10330 perform_deferred_access_checks (tf_warning_or_error);
10331 pop_nested_class ();
10332 maximum_field_alignment = saved_maximum_field_alignment;
10333 if (!fn_context)
10334 pop_from_top_level ();
10335 pop_deferring_access_checks ();
10336 pop_tinst_level ();
10337
10338 /* The vtable for a template class can be emitted in any translation
10339 unit in which the class is instantiated. When there is no key
10340 method, however, finish_struct_1 will already have added TYPE to
10341 the keyed_classes list. */
10342 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10343 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10344
10345 return type;
10346 }
10347
10348 /* Wrapper for instantiate_class_template_1. */
10349
10350 tree
10351 instantiate_class_template (tree type)
10352 {
10353 tree ret;
10354 timevar_push (TV_TEMPLATE_INST);
10355 ret = instantiate_class_template_1 (type);
10356 timevar_pop (TV_TEMPLATE_INST);
10357 return ret;
10358 }
10359
10360 static tree
10361 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10362 {
10363 tree r;
10364
10365 if (!t)
10366 r = t;
10367 else if (TYPE_P (t))
10368 r = tsubst (t, args, complain, in_decl);
10369 else
10370 {
10371 if (!(complain & tf_warning))
10372 ++c_inhibit_evaluation_warnings;
10373 r = tsubst_expr (t, args, complain, in_decl,
10374 /*integral_constant_expression_p=*/true);
10375 if (!(complain & tf_warning))
10376 --c_inhibit_evaluation_warnings;
10377 }
10378 return r;
10379 }
10380
10381 /* Given a function parameter pack TMPL_PARM and some function parameters
10382 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10383 and set *SPEC_P to point at the next point in the list. */
10384
10385 tree
10386 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10387 {
10388 /* Collect all of the extra "packed" parameters into an
10389 argument pack. */
10390 tree parmvec;
10391 tree parmtypevec;
10392 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10393 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10394 tree spec_parm = *spec_p;
10395 int i, len;
10396
10397 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10398 if (tmpl_parm
10399 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10400 break;
10401
10402 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10403 parmvec = make_tree_vec (len);
10404 parmtypevec = make_tree_vec (len);
10405 spec_parm = *spec_p;
10406 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10407 {
10408 TREE_VEC_ELT (parmvec, i) = spec_parm;
10409 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10410 }
10411
10412 /* Build the argument packs. */
10413 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10414 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10415 TREE_TYPE (argpack) = argtypepack;
10416 *spec_p = spec_parm;
10417
10418 return argpack;
10419 }
10420
10421 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10422 NONTYPE_ARGUMENT_PACK. */
10423
10424 static tree
10425 make_fnparm_pack (tree spec_parm)
10426 {
10427 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10428 }
10429
10430 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10431 pack expansion with no extra args, 2 if it has extra args, or 0
10432 if it is not a pack expansion. */
10433
10434 static int
10435 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10436 {
10437 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10438 if (i >= TREE_VEC_LENGTH (vec))
10439 return 0;
10440 tree elt = TREE_VEC_ELT (vec, i);
10441 if (DECL_P (elt))
10442 /* A decl pack is itself an expansion. */
10443 elt = TREE_TYPE (elt);
10444 if (!PACK_EXPANSION_P (elt))
10445 return 0;
10446 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10447 return 2;
10448 return 1;
10449 }
10450
10451
10452 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10453
10454 static tree
10455 make_argument_pack_select (tree arg_pack, unsigned index)
10456 {
10457 tree aps = make_node (ARGUMENT_PACK_SELECT);
10458
10459 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10460 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10461
10462 return aps;
10463 }
10464
10465 /* This is a subroutine of tsubst_pack_expansion.
10466
10467 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10468 mechanism to store the (non complete list of) arguments of the
10469 substitution and return a non substituted pack expansion, in order
10470 to wait for when we have enough arguments to really perform the
10471 substitution. */
10472
10473 static bool
10474 use_pack_expansion_extra_args_p (tree parm_packs,
10475 int arg_pack_len,
10476 bool has_empty_arg)
10477 {
10478 /* If one pack has an expansion and another pack has a normal
10479 argument or if one pack has an empty argument and an another
10480 one hasn't then tsubst_pack_expansion cannot perform the
10481 substitution and need to fall back on the
10482 PACK_EXPANSION_EXTRA mechanism. */
10483 if (parm_packs == NULL_TREE)
10484 return false;
10485 else if (has_empty_arg)
10486 return true;
10487
10488 bool has_expansion_arg = false;
10489 for (int i = 0 ; i < arg_pack_len; ++i)
10490 {
10491 bool has_non_expansion_arg = false;
10492 for (tree parm_pack = parm_packs;
10493 parm_pack;
10494 parm_pack = TREE_CHAIN (parm_pack))
10495 {
10496 tree arg = TREE_VALUE (parm_pack);
10497
10498 int exp = argument_pack_element_is_expansion_p (arg, i);
10499 if (exp == 2)
10500 /* We can't substitute a pack expansion with extra args into
10501 our pattern. */
10502 return true;
10503 else if (exp)
10504 has_expansion_arg = true;
10505 else
10506 has_non_expansion_arg = true;
10507 }
10508
10509 if (has_expansion_arg && has_non_expansion_arg)
10510 return true;
10511 }
10512 return false;
10513 }
10514
10515 /* [temp.variadic]/6 says that:
10516
10517 The instantiation of a pack expansion [...]
10518 produces a list E1,E2, ..., En, where N is the number of elements
10519 in the pack expansion parameters.
10520
10521 This subroutine of tsubst_pack_expansion produces one of these Ei.
10522
10523 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10524 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10525 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10526 INDEX is the index 'i' of the element Ei to produce. ARGS,
10527 COMPLAIN, and IN_DECL are the same parameters as for the
10528 tsubst_pack_expansion function.
10529
10530 The function returns the resulting Ei upon successful completion,
10531 or error_mark_node.
10532
10533 Note that this function possibly modifies the ARGS parameter, so
10534 it's the responsibility of the caller to restore it. */
10535
10536 static tree
10537 gen_elem_of_pack_expansion_instantiation (tree pattern,
10538 tree parm_packs,
10539 unsigned index,
10540 tree args /* This parm gets
10541 modified. */,
10542 tsubst_flags_t complain,
10543 tree in_decl)
10544 {
10545 tree t;
10546 bool ith_elem_is_expansion = false;
10547
10548 /* For each parameter pack, change the substitution of the parameter
10549 pack to the ith argument in its argument pack, then expand the
10550 pattern. */
10551 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10552 {
10553 tree parm = TREE_PURPOSE (pack);
10554 tree arg_pack = TREE_VALUE (pack);
10555 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10556
10557 ith_elem_is_expansion |=
10558 argument_pack_element_is_expansion_p (arg_pack, index);
10559
10560 /* Select the Ith argument from the pack. */
10561 if (TREE_CODE (parm) == PARM_DECL
10562 || TREE_CODE (parm) == FIELD_DECL)
10563 {
10564 if (index == 0)
10565 {
10566 aps = make_argument_pack_select (arg_pack, index);
10567 if (!mark_used (parm, complain) && !(complain & tf_error))
10568 return error_mark_node;
10569 register_local_specialization (aps, parm);
10570 }
10571 else
10572 aps = retrieve_local_specialization (parm);
10573 }
10574 else
10575 {
10576 int idx, level;
10577 template_parm_level_and_index (parm, &level, &idx);
10578
10579 if (index == 0)
10580 {
10581 aps = make_argument_pack_select (arg_pack, index);
10582 /* Update the corresponding argument. */
10583 TMPL_ARG (args, level, idx) = aps;
10584 }
10585 else
10586 /* Re-use the ARGUMENT_PACK_SELECT. */
10587 aps = TMPL_ARG (args, level, idx);
10588 }
10589 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10590 }
10591
10592 /* Substitute into the PATTERN with the (possibly altered)
10593 arguments. */
10594 if (pattern == in_decl)
10595 /* Expanding a fixed parameter pack from
10596 coerce_template_parameter_pack. */
10597 t = tsubst_decl (pattern, args, complain);
10598 else if (pattern == error_mark_node)
10599 t = error_mark_node;
10600 else if (constraint_p (pattern))
10601 {
10602 if (processing_template_decl)
10603 t = tsubst_constraint (pattern, args, complain, in_decl);
10604 else
10605 t = (constraints_satisfied_p (pattern, args)
10606 ? boolean_true_node : boolean_false_node);
10607 }
10608 else if (!TYPE_P (pattern))
10609 t = tsubst_expr (pattern, args, complain, in_decl,
10610 /*integral_constant_expression_p=*/false);
10611 else
10612 t = tsubst (pattern, args, complain, in_decl);
10613
10614 /* If the Ith argument pack element is a pack expansion, then
10615 the Ith element resulting from the substituting is going to
10616 be a pack expansion as well. */
10617 if (ith_elem_is_expansion)
10618 t = make_pack_expansion (t);
10619
10620 return t;
10621 }
10622
10623 /* When the unexpanded parameter pack in a fold expression expands to an empty
10624 sequence, the value of the expression is as follows; the program is
10625 ill-formed if the operator is not listed in this table.
10626
10627 * 1
10628 + 0
10629 & -1
10630 | 0
10631 && true
10632 || false
10633 , void() */
10634
10635 tree
10636 expand_empty_fold (tree t, tsubst_flags_t complain)
10637 {
10638 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10639 if (!FOLD_EXPR_MODIFY_P (t))
10640 switch (code)
10641 {
10642 case MULT_EXPR:
10643 return integer_one_node;
10644 case PLUS_EXPR:
10645 return integer_zero_node;
10646 case BIT_AND_EXPR:
10647 return integer_minus_one_node;
10648 case BIT_IOR_EXPR:
10649 return integer_zero_node;
10650 case TRUTH_ANDIF_EXPR:
10651 return boolean_true_node;
10652 case TRUTH_ORIF_EXPR:
10653 return boolean_false_node;
10654 case COMPOUND_EXPR:
10655 return void_node;
10656 default:
10657 break;
10658 }
10659
10660 if (complain & tf_error)
10661 error_at (location_of (t),
10662 "fold of empty expansion over %O", code);
10663 return error_mark_node;
10664 }
10665
10666 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10667 form an expression that combines the two terms using the
10668 operator of T. */
10669
10670 static tree
10671 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10672 {
10673 tree op = FOLD_EXPR_OP (t);
10674 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10675
10676 // Handle compound assignment operators.
10677 if (FOLD_EXPR_MODIFY_P (t))
10678 return build_x_modify_expr (input_location, left, code, right, complain);
10679
10680 switch (code)
10681 {
10682 case COMPOUND_EXPR:
10683 return build_x_compound_expr (input_location, left, right, complain);
10684 case DOTSTAR_EXPR:
10685 return build_m_component_ref (left, right, complain);
10686 default:
10687 return build_x_binary_op (input_location, code,
10688 left, TREE_CODE (left),
10689 right, TREE_CODE (right),
10690 /*overload=*/NULL,
10691 complain);
10692 }
10693 }
10694
10695 /* Substitute ARGS into the pack of a fold expression T. */
10696
10697 static inline tree
10698 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10699 {
10700 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10701 }
10702
10703 /* Substitute ARGS into the pack of a fold expression T. */
10704
10705 static inline tree
10706 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10707 {
10708 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10709 }
10710
10711 /* Expand a PACK of arguments into a grouped as left fold.
10712 Given a pack containing elements A0, A1, ..., An and an
10713 operator @, this builds the expression:
10714
10715 ((A0 @ A1) @ A2) ... @ An
10716
10717 Note that PACK must not be empty.
10718
10719 The operator is defined by the original fold expression T. */
10720
10721 static tree
10722 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10723 {
10724 tree left = TREE_VEC_ELT (pack, 0);
10725 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10726 {
10727 tree right = TREE_VEC_ELT (pack, i);
10728 left = fold_expression (t, left, right, complain);
10729 }
10730 return left;
10731 }
10732
10733 /* Substitute into a unary left fold expression. */
10734
10735 static tree
10736 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10737 tree in_decl)
10738 {
10739 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10740 if (pack == error_mark_node)
10741 return error_mark_node;
10742 if (TREE_VEC_LENGTH (pack) == 0)
10743 return expand_empty_fold (t, complain);
10744 else
10745 return expand_left_fold (t, pack, complain);
10746 }
10747
10748 /* Substitute into a binary left fold expression.
10749
10750 Do ths by building a single (non-empty) vector of argumnts and
10751 building the expression from those elements. */
10752
10753 static tree
10754 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10755 tree in_decl)
10756 {
10757 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10758 if (pack == error_mark_node)
10759 return error_mark_node;
10760 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10761 if (init == error_mark_node)
10762 return error_mark_node;
10763
10764 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10765 TREE_VEC_ELT (vec, 0) = init;
10766 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10767 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10768
10769 return expand_left_fold (t, vec, complain);
10770 }
10771
10772 /* Expand a PACK of arguments into a grouped as right fold.
10773 Given a pack containing elementns A0, A1, ..., and an
10774 operator @, this builds the expression:
10775
10776 A0@ ... (An-2 @ (An-1 @ An))
10777
10778 Note that PACK must not be empty.
10779
10780 The operator is defined by the original fold expression T. */
10781
10782 tree
10783 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10784 {
10785 // Build the expression.
10786 int n = TREE_VEC_LENGTH (pack);
10787 tree right = TREE_VEC_ELT (pack, n - 1);
10788 for (--n; n != 0; --n)
10789 {
10790 tree left = TREE_VEC_ELT (pack, n - 1);
10791 right = fold_expression (t, left, right, complain);
10792 }
10793 return right;
10794 }
10795
10796 /* Substitute into a unary right fold expression. */
10797
10798 static tree
10799 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10800 tree in_decl)
10801 {
10802 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10803 if (pack == error_mark_node)
10804 return error_mark_node;
10805 if (TREE_VEC_LENGTH (pack) == 0)
10806 return expand_empty_fold (t, complain);
10807 else
10808 return expand_right_fold (t, pack, complain);
10809 }
10810
10811 /* Substitute into a binary right fold expression.
10812
10813 Do ths by building a single (non-empty) vector of arguments and
10814 building the expression from those elements. */
10815
10816 static tree
10817 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10818 tree in_decl)
10819 {
10820 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10821 if (pack == error_mark_node)
10822 return error_mark_node;
10823 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10824 if (init == error_mark_node)
10825 return error_mark_node;
10826
10827 int n = TREE_VEC_LENGTH (pack);
10828 tree vec = make_tree_vec (n + 1);
10829 for (int i = 0; i < n; ++i)
10830 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10831 TREE_VEC_ELT (vec, n) = init;
10832
10833 return expand_right_fold (t, vec, complain);
10834 }
10835
10836
10837 /* Substitute ARGS into T, which is an pack expansion
10838 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10839 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10840 (if only a partial substitution could be performed) or
10841 ERROR_MARK_NODE if there was an error. */
10842 tree
10843 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10844 tree in_decl)
10845 {
10846 tree pattern;
10847 tree pack, packs = NULL_TREE;
10848 bool unsubstituted_packs = false;
10849 int i, len = -1;
10850 tree result;
10851 hash_map<tree, tree> *saved_local_specializations = NULL;
10852 bool need_local_specializations = false;
10853 int levels;
10854
10855 gcc_assert (PACK_EXPANSION_P (t));
10856 pattern = PACK_EXPANSION_PATTERN (t);
10857
10858 /* Add in any args remembered from an earlier partial instantiation. */
10859 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10860
10861 levels = TMPL_ARGS_DEPTH (args);
10862
10863 /* Determine the argument packs that will instantiate the parameter
10864 packs used in the expansion expression. While we're at it,
10865 compute the number of arguments to be expanded and make sure it
10866 is consistent. */
10867 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10868 pack = TREE_CHAIN (pack))
10869 {
10870 tree parm_pack = TREE_VALUE (pack);
10871 tree arg_pack = NULL_TREE;
10872 tree orig_arg = NULL_TREE;
10873 int level = 0;
10874
10875 if (TREE_CODE (parm_pack) == BASES)
10876 {
10877 if (BASES_DIRECT (parm_pack))
10878 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10879 args, complain, in_decl, false));
10880 else
10881 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10882 args, complain, in_decl, false));
10883 }
10884 if (TREE_CODE (parm_pack) == PARM_DECL)
10885 {
10886 /* We know we have correct local_specializations if this
10887 expansion is at function scope, or if we're dealing with a
10888 local parameter in a requires expression; for the latter,
10889 tsubst_requires_expr set it up appropriately. */
10890 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10891 arg_pack = retrieve_local_specialization (parm_pack);
10892 else
10893 /* We can't rely on local_specializations for a parameter
10894 name used later in a function declaration (such as in a
10895 late-specified return type). Even if it exists, it might
10896 have the wrong value for a recursive call. */
10897 need_local_specializations = true;
10898
10899 if (!arg_pack)
10900 {
10901 /* This parameter pack was used in an unevaluated context. Just
10902 make a dummy decl, since it's only used for its type. */
10903 arg_pack = tsubst_decl (parm_pack, args, complain);
10904 if (arg_pack && DECL_PACK_P (arg_pack))
10905 /* Partial instantiation of the parm_pack, we can't build
10906 up an argument pack yet. */
10907 arg_pack = NULL_TREE;
10908 else
10909 arg_pack = make_fnparm_pack (arg_pack);
10910 }
10911 }
10912 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10913 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10914 else
10915 {
10916 int idx;
10917 template_parm_level_and_index (parm_pack, &level, &idx);
10918
10919 if (level <= levels)
10920 arg_pack = TMPL_ARG (args, level, idx);
10921 }
10922
10923 orig_arg = arg_pack;
10924 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10925 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10926
10927 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10928 /* This can only happen if we forget to expand an argument
10929 pack somewhere else. Just return an error, silently. */
10930 {
10931 result = make_tree_vec (1);
10932 TREE_VEC_ELT (result, 0) = error_mark_node;
10933 return result;
10934 }
10935
10936 if (arg_pack)
10937 {
10938 int my_len =
10939 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10940
10941 /* Don't bother trying to do a partial substitution with
10942 incomplete packs; we'll try again after deduction. */
10943 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10944 return t;
10945
10946 if (len < 0)
10947 len = my_len;
10948 else if (len != my_len)
10949 {
10950 if (!(complain & tf_error))
10951 /* Fail quietly. */;
10952 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10953 error ("mismatched argument pack lengths while expanding "
10954 "%<%T%>",
10955 pattern);
10956 else
10957 error ("mismatched argument pack lengths while expanding "
10958 "%<%E%>",
10959 pattern);
10960 return error_mark_node;
10961 }
10962
10963 /* Keep track of the parameter packs and their corresponding
10964 argument packs. */
10965 packs = tree_cons (parm_pack, arg_pack, packs);
10966 TREE_TYPE (packs) = orig_arg;
10967 }
10968 else
10969 {
10970 /* We can't substitute for this parameter pack. We use a flag as
10971 well as the missing_level counter because function parameter
10972 packs don't have a level. */
10973 unsubstituted_packs = true;
10974 }
10975 }
10976
10977 /* If the expansion is just T..., return the matching argument pack, unless
10978 we need to call convert_from_reference on all the elements. This is an
10979 important optimization; see c++/68422. */
10980 if (!unsubstituted_packs
10981 && TREE_PURPOSE (packs) == pattern)
10982 {
10983 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10984 /* Types need no adjustment, nor does sizeof..., and if we still have
10985 some pack expansion args we won't do anything yet. */
10986 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10987 || PACK_EXPANSION_SIZEOF_P (t)
10988 || pack_expansion_args_count (args))
10989 return args;
10990 /* Also optimize expression pack expansions if we can tell that the
10991 elements won't have reference type. */
10992 tree type = TREE_TYPE (pattern);
10993 if (type && TREE_CODE (type) != REFERENCE_TYPE
10994 && !PACK_EXPANSION_P (type)
10995 && !WILDCARD_TYPE_P (type))
10996 return args;
10997 /* Otherwise use the normal path so we get convert_from_reference. */
10998 }
10999
11000 /* We cannot expand this expansion expression, because we don't have
11001 all of the argument packs we need. */
11002 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
11003 {
11004 /* We got some full packs, but we can't substitute them in until we
11005 have values for all the packs. So remember these until then. */
11006
11007 t = make_pack_expansion (pattern);
11008 PACK_EXPANSION_EXTRA_ARGS (t) = args;
11009 return t;
11010 }
11011 else if (unsubstituted_packs)
11012 {
11013 /* There were no real arguments, we're just replacing a parameter
11014 pack with another version of itself. Substitute into the
11015 pattern and return a PACK_EXPANSION_*. The caller will need to
11016 deal with that. */
11017 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
11018 t = tsubst_expr (pattern, args, complain, in_decl,
11019 /*integral_constant_expression_p=*/false);
11020 else
11021 t = tsubst (pattern, args, complain, in_decl);
11022 t = make_pack_expansion (t);
11023 return t;
11024 }
11025
11026 gcc_assert (len >= 0);
11027
11028 if (need_local_specializations)
11029 {
11030 /* We're in a late-specified return type, so create our own local
11031 specializations map; the current map is either NULL or (in the
11032 case of recursive unification) might have bindings that we don't
11033 want to use or alter. */
11034 saved_local_specializations = local_specializations;
11035 local_specializations = new hash_map<tree, tree>;
11036 }
11037
11038 /* For each argument in each argument pack, substitute into the
11039 pattern. */
11040 result = make_tree_vec (len);
11041 tree elem_args = copy_template_args (args);
11042 for (i = 0; i < len; ++i)
11043 {
11044 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11045 i,
11046 elem_args, complain,
11047 in_decl);
11048 TREE_VEC_ELT (result, i) = t;
11049 if (t == error_mark_node)
11050 {
11051 result = error_mark_node;
11052 break;
11053 }
11054 }
11055
11056 /* Update ARGS to restore the substitution from parameter packs to
11057 their argument packs. */
11058 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11059 {
11060 tree parm = TREE_PURPOSE (pack);
11061
11062 if (TREE_CODE (parm) == PARM_DECL
11063 || TREE_CODE (parm) == FIELD_DECL)
11064 register_local_specialization (TREE_TYPE (pack), parm);
11065 else
11066 {
11067 int idx, level;
11068
11069 if (TREE_VALUE (pack) == NULL_TREE)
11070 continue;
11071
11072 template_parm_level_and_index (parm, &level, &idx);
11073
11074 /* Update the corresponding argument. */
11075 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11076 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11077 TREE_TYPE (pack);
11078 else
11079 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11080 }
11081 }
11082
11083 if (need_local_specializations)
11084 {
11085 delete local_specializations;
11086 local_specializations = saved_local_specializations;
11087 }
11088
11089 return result;
11090 }
11091
11092 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11093 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11094 parameter packs; all parms generated from a function parameter pack will
11095 have the same DECL_PARM_INDEX. */
11096
11097 tree
11098 get_pattern_parm (tree parm, tree tmpl)
11099 {
11100 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11101 tree patparm;
11102
11103 if (DECL_ARTIFICIAL (parm))
11104 {
11105 for (patparm = DECL_ARGUMENTS (pattern);
11106 patparm; patparm = DECL_CHAIN (patparm))
11107 if (DECL_ARTIFICIAL (patparm)
11108 && DECL_NAME (parm) == DECL_NAME (patparm))
11109 break;
11110 }
11111 else
11112 {
11113 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11114 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11115 gcc_assert (DECL_PARM_INDEX (patparm)
11116 == DECL_PARM_INDEX (parm));
11117 }
11118
11119 return patparm;
11120 }
11121
11122 /* Make an argument pack out of the TREE_VEC VEC. */
11123
11124 static tree
11125 make_argument_pack (tree vec)
11126 {
11127 tree pack;
11128 tree elt = TREE_VEC_ELT (vec, 0);
11129 if (TYPE_P (elt))
11130 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
11131 else
11132 {
11133 pack = make_node (NONTYPE_ARGUMENT_PACK);
11134 TREE_TYPE (pack) = TREE_TYPE (elt);
11135 TREE_CONSTANT (pack) = 1;
11136 }
11137 SET_ARGUMENT_PACK_ARGS (pack, vec);
11138 return pack;
11139 }
11140
11141 /* Return an exact copy of template args T that can be modified
11142 independently. */
11143
11144 static tree
11145 copy_template_args (tree t)
11146 {
11147 if (t == error_mark_node)
11148 return t;
11149
11150 int len = TREE_VEC_LENGTH (t);
11151 tree new_vec = make_tree_vec (len);
11152
11153 for (int i = 0; i < len; ++i)
11154 {
11155 tree elt = TREE_VEC_ELT (t, i);
11156 if (elt && TREE_CODE (elt) == TREE_VEC)
11157 elt = copy_template_args (elt);
11158 TREE_VEC_ELT (new_vec, i) = elt;
11159 }
11160
11161 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
11162 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
11163
11164 return new_vec;
11165 }
11166
11167 /* Substitute ARGS into the vector or list of template arguments T. */
11168
11169 static tree
11170 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11171 {
11172 tree orig_t = t;
11173 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11174 tree *elts;
11175
11176 if (t == error_mark_node)
11177 return error_mark_node;
11178
11179 len = TREE_VEC_LENGTH (t);
11180 elts = XALLOCAVEC (tree, len);
11181
11182 for (i = 0; i < len; i++)
11183 {
11184 tree orig_arg = TREE_VEC_ELT (t, i);
11185 tree new_arg;
11186
11187 if (TREE_CODE (orig_arg) == TREE_VEC)
11188 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11189 else if (PACK_EXPANSION_P (orig_arg))
11190 {
11191 /* Substitute into an expansion expression. */
11192 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11193
11194 if (TREE_CODE (new_arg) == TREE_VEC)
11195 /* Add to the expanded length adjustment the number of
11196 expanded arguments. We subtract one from this
11197 measurement, because the argument pack expression
11198 itself is already counted as 1 in
11199 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11200 the argument pack is empty. */
11201 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11202 }
11203 else if (ARGUMENT_PACK_P (orig_arg))
11204 {
11205 /* Substitute into each of the arguments. */
11206 new_arg = TYPE_P (orig_arg)
11207 ? cxx_make_type (TREE_CODE (orig_arg))
11208 : make_node (TREE_CODE (orig_arg));
11209
11210 SET_ARGUMENT_PACK_ARGS (
11211 new_arg,
11212 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11213 args, complain, in_decl));
11214
11215 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11216 new_arg = error_mark_node;
11217
11218 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11219 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11220 complain, in_decl);
11221 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11222
11223 if (TREE_TYPE (new_arg) == error_mark_node)
11224 new_arg = error_mark_node;
11225 }
11226 }
11227 else
11228 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11229
11230 if (new_arg == error_mark_node)
11231 return error_mark_node;
11232
11233 elts[i] = new_arg;
11234 if (new_arg != orig_arg)
11235 need_new = 1;
11236 }
11237
11238 if (!need_new)
11239 return t;
11240
11241 /* Make space for the expanded arguments coming from template
11242 argument packs. */
11243 t = make_tree_vec (len + expanded_len_adjust);
11244 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11245 arguments for a member template.
11246 In that case each TREE_VEC in ORIG_T represents a level of template
11247 arguments, and ORIG_T won't carry any non defaulted argument count.
11248 It will rather be the nested TREE_VECs that will carry one.
11249 In other words, ORIG_T carries a non defaulted argument count only
11250 if it doesn't contain any nested TREE_VEC. */
11251 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11252 {
11253 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11254 count += expanded_len_adjust;
11255 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11256 }
11257 for (i = 0, out = 0; i < len; i++)
11258 {
11259 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11260 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11261 && TREE_CODE (elts[i]) == TREE_VEC)
11262 {
11263 int idx;
11264
11265 /* Now expand the template argument pack "in place". */
11266 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11267 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11268 }
11269 else
11270 {
11271 TREE_VEC_ELT (t, out) = elts[i];
11272 out++;
11273 }
11274 }
11275
11276 return t;
11277 }
11278
11279 /* Return the result of substituting ARGS into the template parameters
11280 given by PARMS. If there are m levels of ARGS and m + n levels of
11281 PARMS, then the result will contain n levels of PARMS. For
11282 example, if PARMS is `template <class T> template <class U>
11283 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11284 result will be `template <int*, double, class V>'. */
11285
11286 static tree
11287 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11288 {
11289 tree r = NULL_TREE;
11290 tree* new_parms;
11291
11292 /* When substituting into a template, we must set
11293 PROCESSING_TEMPLATE_DECL as the template parameters may be
11294 dependent if they are based on one-another, and the dependency
11295 predicates are short-circuit outside of templates. */
11296 ++processing_template_decl;
11297
11298 for (new_parms = &r;
11299 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11300 new_parms = &(TREE_CHAIN (*new_parms)),
11301 parms = TREE_CHAIN (parms))
11302 {
11303 tree new_vec =
11304 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11305 int i;
11306
11307 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11308 {
11309 tree tuple;
11310
11311 if (parms == error_mark_node)
11312 continue;
11313
11314 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11315
11316 if (tuple == error_mark_node)
11317 continue;
11318
11319 TREE_VEC_ELT (new_vec, i) =
11320 tsubst_template_parm (tuple, args, complain);
11321 }
11322
11323 *new_parms =
11324 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11325 - TMPL_ARGS_DEPTH (args)),
11326 new_vec, NULL_TREE);
11327 }
11328
11329 --processing_template_decl;
11330
11331 return r;
11332 }
11333
11334 /* Return the result of substituting ARGS into one template parameter
11335 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11336 parameter and which TREE_PURPOSE is the default argument of the
11337 template parameter. */
11338
11339 static tree
11340 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11341 {
11342 tree default_value, parm_decl;
11343
11344 if (args == NULL_TREE
11345 || t == NULL_TREE
11346 || t == error_mark_node)
11347 return t;
11348
11349 gcc_assert (TREE_CODE (t) == TREE_LIST);
11350
11351 default_value = TREE_PURPOSE (t);
11352 parm_decl = TREE_VALUE (t);
11353
11354 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11355 if (TREE_CODE (parm_decl) == PARM_DECL
11356 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11357 parm_decl = error_mark_node;
11358 default_value = tsubst_template_arg (default_value, args,
11359 complain, NULL_TREE);
11360
11361 return build_tree_list (default_value, parm_decl);
11362 }
11363
11364 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11365 type T. If T is not an aggregate or enumeration type, it is
11366 handled as if by tsubst. IN_DECL is as for tsubst. If
11367 ENTERING_SCOPE is nonzero, T is the context for a template which
11368 we are presently tsubst'ing. Return the substituted value. */
11369
11370 static tree
11371 tsubst_aggr_type (tree t,
11372 tree args,
11373 tsubst_flags_t complain,
11374 tree in_decl,
11375 int entering_scope)
11376 {
11377 if (t == NULL_TREE)
11378 return NULL_TREE;
11379
11380 switch (TREE_CODE (t))
11381 {
11382 case RECORD_TYPE:
11383 if (TYPE_PTRMEMFUNC_P (t))
11384 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11385
11386 /* Else fall through. */
11387 case ENUMERAL_TYPE:
11388 case UNION_TYPE:
11389 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11390 {
11391 tree argvec;
11392 tree context;
11393 tree r;
11394 int saved_unevaluated_operand;
11395 int saved_inhibit_evaluation_warnings;
11396
11397 /* In "sizeof(X<I>)" we need to evaluate "I". */
11398 saved_unevaluated_operand = cp_unevaluated_operand;
11399 cp_unevaluated_operand = 0;
11400 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11401 c_inhibit_evaluation_warnings = 0;
11402
11403 /* First, determine the context for the type we are looking
11404 up. */
11405 context = TYPE_CONTEXT (t);
11406 if (context && TYPE_P (context))
11407 {
11408 context = tsubst_aggr_type (context, args, complain,
11409 in_decl, /*entering_scope=*/1);
11410 /* If context is a nested class inside a class template,
11411 it may still need to be instantiated (c++/33959). */
11412 context = complete_type (context);
11413 }
11414
11415 /* Then, figure out what arguments are appropriate for the
11416 type we are trying to find. For example, given:
11417
11418 template <class T> struct S;
11419 template <class T, class U> void f(T, U) { S<U> su; }
11420
11421 and supposing that we are instantiating f<int, double>,
11422 then our ARGS will be {int, double}, but, when looking up
11423 S we only want {double}. */
11424 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11425 complain, in_decl);
11426 if (argvec == error_mark_node)
11427 r = error_mark_node;
11428 else
11429 {
11430 r = lookup_template_class (t, argvec, in_decl, context,
11431 entering_scope, complain);
11432 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11433 }
11434
11435 cp_unevaluated_operand = saved_unevaluated_operand;
11436 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11437
11438 return r;
11439 }
11440 else
11441 /* This is not a template type, so there's nothing to do. */
11442 return t;
11443
11444 default:
11445 return tsubst (t, args, complain, in_decl);
11446 }
11447 }
11448
11449 /* Substitute into the default argument ARG (a default argument for
11450 FN), which has the indicated TYPE. */
11451
11452 tree
11453 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11454 {
11455 tree saved_class_ptr = NULL_TREE;
11456 tree saved_class_ref = NULL_TREE;
11457 int errs = errorcount + sorrycount;
11458
11459 /* This can happen in invalid code. */
11460 if (TREE_CODE (arg) == DEFAULT_ARG)
11461 return arg;
11462
11463 /* This default argument came from a template. Instantiate the
11464 default argument here, not in tsubst. In the case of
11465 something like:
11466
11467 template <class T>
11468 struct S {
11469 static T t();
11470 void f(T = t());
11471 };
11472
11473 we must be careful to do name lookup in the scope of S<T>,
11474 rather than in the current class. */
11475 push_access_scope (fn);
11476 /* The "this" pointer is not valid in a default argument. */
11477 if (cfun)
11478 {
11479 saved_class_ptr = current_class_ptr;
11480 cp_function_chain->x_current_class_ptr = NULL_TREE;
11481 saved_class_ref = current_class_ref;
11482 cp_function_chain->x_current_class_ref = NULL_TREE;
11483 }
11484
11485 push_deferring_access_checks(dk_no_deferred);
11486 /* The default argument expression may cause implicitly defined
11487 member functions to be synthesized, which will result in garbage
11488 collection. We must treat this situation as if we were within
11489 the body of function so as to avoid collecting live data on the
11490 stack. */
11491 ++function_depth;
11492 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11493 complain, NULL_TREE,
11494 /*integral_constant_expression_p=*/false);
11495 --function_depth;
11496 pop_deferring_access_checks();
11497
11498 /* Restore the "this" pointer. */
11499 if (cfun)
11500 {
11501 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11502 cp_function_chain->x_current_class_ref = saved_class_ref;
11503 }
11504
11505 if (errorcount+sorrycount > errs
11506 && (complain & tf_warning_or_error))
11507 inform (input_location,
11508 " when instantiating default argument for call to %D", fn);
11509
11510 /* Make sure the default argument is reasonable. */
11511 arg = check_default_argument (type, arg, complain);
11512
11513 pop_access_scope (fn);
11514
11515 return arg;
11516 }
11517
11518 /* Substitute into all the default arguments for FN. */
11519
11520 static void
11521 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11522 {
11523 tree arg;
11524 tree tmpl_args;
11525
11526 tmpl_args = DECL_TI_ARGS (fn);
11527
11528 /* If this function is not yet instantiated, we certainly don't need
11529 its default arguments. */
11530 if (uses_template_parms (tmpl_args))
11531 return;
11532 /* Don't do this again for clones. */
11533 if (DECL_CLONED_FUNCTION_P (fn))
11534 return;
11535
11536 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11537 arg;
11538 arg = TREE_CHAIN (arg))
11539 if (TREE_PURPOSE (arg))
11540 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11541 TREE_VALUE (arg),
11542 TREE_PURPOSE (arg),
11543 complain);
11544 }
11545
11546 /* Substitute the ARGS into the T, which is a _DECL. Return the
11547 result of the substitution. Issue error and warning messages under
11548 control of COMPLAIN. */
11549
11550 static tree
11551 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11552 {
11553 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11554 location_t saved_loc;
11555 tree r = NULL_TREE;
11556 tree in_decl = t;
11557 hashval_t hash = 0;
11558
11559 /* Set the filename and linenumber to improve error-reporting. */
11560 saved_loc = input_location;
11561 input_location = DECL_SOURCE_LOCATION (t);
11562
11563 switch (TREE_CODE (t))
11564 {
11565 case TEMPLATE_DECL:
11566 {
11567 /* We can get here when processing a member function template,
11568 member class template, or template template parameter. */
11569 tree decl = DECL_TEMPLATE_RESULT (t);
11570 tree spec;
11571 tree tmpl_args;
11572 tree full_args;
11573
11574 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11575 {
11576 /* Template template parameter is treated here. */
11577 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11578 if (new_type == error_mark_node)
11579 r = error_mark_node;
11580 /* If we get a real template back, return it. This can happen in
11581 the context of most_specialized_partial_spec. */
11582 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11583 r = new_type;
11584 else
11585 /* The new TEMPLATE_DECL was built in
11586 reduce_template_parm_level. */
11587 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11588 break;
11589 }
11590
11591 /* We might already have an instance of this template.
11592 The ARGS are for the surrounding class type, so the
11593 full args contain the tsubst'd args for the context,
11594 plus the innermost args from the template decl. */
11595 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11596 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11597 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11598 /* Because this is a template, the arguments will still be
11599 dependent, even after substitution. If
11600 PROCESSING_TEMPLATE_DECL is not set, the dependency
11601 predicates will short-circuit. */
11602 ++processing_template_decl;
11603 full_args = tsubst_template_args (tmpl_args, args,
11604 complain, in_decl);
11605 --processing_template_decl;
11606 if (full_args == error_mark_node)
11607 RETURN (error_mark_node);
11608
11609 /* If this is a default template template argument,
11610 tsubst might not have changed anything. */
11611 if (full_args == tmpl_args)
11612 RETURN (t);
11613
11614 hash = hash_tmpl_and_args (t, full_args);
11615 spec = retrieve_specialization (t, full_args, hash);
11616 if (spec != NULL_TREE)
11617 {
11618 r = spec;
11619 break;
11620 }
11621
11622 /* Make a new template decl. It will be similar to the
11623 original, but will record the current template arguments.
11624 We also create a new function declaration, which is just
11625 like the old one, but points to this new template, rather
11626 than the old one. */
11627 r = copy_decl (t);
11628 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11629 DECL_CHAIN (r) = NULL_TREE;
11630
11631 // Build new template info linking to the original template decl.
11632 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11633
11634 if (TREE_CODE (decl) == TYPE_DECL
11635 && !TYPE_DECL_ALIAS_P (decl))
11636 {
11637 tree new_type;
11638 ++processing_template_decl;
11639 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11640 --processing_template_decl;
11641 if (new_type == error_mark_node)
11642 RETURN (error_mark_node);
11643
11644 TREE_TYPE (r) = new_type;
11645 /* For a partial specialization, we need to keep pointing to
11646 the primary template. */
11647 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11648 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11649 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11650 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11651 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11652 }
11653 else
11654 {
11655 tree new_decl;
11656 ++processing_template_decl;
11657 new_decl = tsubst (decl, args, complain, in_decl);
11658 --processing_template_decl;
11659 if (new_decl == error_mark_node)
11660 RETURN (error_mark_node);
11661
11662 DECL_TEMPLATE_RESULT (r) = new_decl;
11663 DECL_TI_TEMPLATE (new_decl) = r;
11664 TREE_TYPE (r) = TREE_TYPE (new_decl);
11665 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11666 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11667 }
11668
11669 SET_DECL_IMPLICIT_INSTANTIATION (r);
11670 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11671 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11672
11673 /* The template parameters for this new template are all the
11674 template parameters for the old template, except the
11675 outermost level of parameters. */
11676 DECL_TEMPLATE_PARMS (r)
11677 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11678 complain);
11679
11680 if (PRIMARY_TEMPLATE_P (t))
11681 DECL_PRIMARY_TEMPLATE (r) = r;
11682
11683 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11684 /* Record this non-type partial instantiation. */
11685 register_specialization (r, t,
11686 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11687 false, hash);
11688 }
11689 break;
11690
11691 case FUNCTION_DECL:
11692 {
11693 tree ctx;
11694 tree argvec = NULL_TREE;
11695 tree *friends;
11696 tree gen_tmpl;
11697 tree type;
11698 int member;
11699 int args_depth;
11700 int parms_depth;
11701
11702 /* Nobody should be tsubst'ing into non-template functions. */
11703 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11704
11705 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11706 {
11707 tree spec;
11708 bool dependent_p;
11709
11710 /* If T is not dependent, just return it. We have to
11711 increment PROCESSING_TEMPLATE_DECL because
11712 value_dependent_expression_p assumes that nothing is
11713 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11714 ++processing_template_decl;
11715 dependent_p = value_dependent_expression_p (t);
11716 --processing_template_decl;
11717 if (!dependent_p)
11718 RETURN (t);
11719
11720 /* Calculate the most general template of which R is a
11721 specialization, and the complete set of arguments used to
11722 specialize R. */
11723 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11724 argvec = tsubst_template_args (DECL_TI_ARGS
11725 (DECL_TEMPLATE_RESULT
11726 (DECL_TI_TEMPLATE (t))),
11727 args, complain, in_decl);
11728 if (argvec == error_mark_node)
11729 RETURN (error_mark_node);
11730
11731 /* Check to see if we already have this specialization. */
11732 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11733 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11734
11735 if (spec)
11736 {
11737 r = spec;
11738 break;
11739 }
11740
11741 /* We can see more levels of arguments than parameters if
11742 there was a specialization of a member template, like
11743 this:
11744
11745 template <class T> struct S { template <class U> void f(); }
11746 template <> template <class U> void S<int>::f(U);
11747
11748 Here, we'll be substituting into the specialization,
11749 because that's where we can find the code we actually
11750 want to generate, but we'll have enough arguments for
11751 the most general template.
11752
11753 We also deal with the peculiar case:
11754
11755 template <class T> struct S {
11756 template <class U> friend void f();
11757 };
11758 template <class U> void f() {}
11759 template S<int>;
11760 template void f<double>();
11761
11762 Here, the ARGS for the instantiation of will be {int,
11763 double}. But, we only need as many ARGS as there are
11764 levels of template parameters in CODE_PATTERN. We are
11765 careful not to get fooled into reducing the ARGS in
11766 situations like:
11767
11768 template <class T> struct S { template <class U> void f(U); }
11769 template <class T> template <> void S<T>::f(int) {}
11770
11771 which we can spot because the pattern will be a
11772 specialization in this case. */
11773 args_depth = TMPL_ARGS_DEPTH (args);
11774 parms_depth =
11775 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11776 if (args_depth > parms_depth
11777 && !DECL_TEMPLATE_SPECIALIZATION (t))
11778 args = get_innermost_template_args (args, parms_depth);
11779 }
11780 else
11781 {
11782 /* This special case arises when we have something like this:
11783
11784 template <class T> struct S {
11785 friend void f<int>(int, double);
11786 };
11787
11788 Here, the DECL_TI_TEMPLATE for the friend declaration
11789 will be an IDENTIFIER_NODE. We are being called from
11790 tsubst_friend_function, and we want only to create a
11791 new decl (R) with appropriate types so that we can call
11792 determine_specialization. */
11793 gen_tmpl = NULL_TREE;
11794 }
11795
11796 if (DECL_CLASS_SCOPE_P (t))
11797 {
11798 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11799 member = 2;
11800 else
11801 member = 1;
11802 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11803 complain, t, /*entering_scope=*/1);
11804 }
11805 else
11806 {
11807 member = 0;
11808 ctx = DECL_CONTEXT (t);
11809 }
11810 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11811 if (type == error_mark_node)
11812 RETURN (error_mark_node);
11813
11814 /* If we hit excessive deduction depth, the type is bogus even if
11815 it isn't error_mark_node, so don't build a decl. */
11816 if (excessive_deduction_depth)
11817 RETURN (error_mark_node);
11818
11819 /* We do NOT check for matching decls pushed separately at this
11820 point, as they may not represent instantiations of this
11821 template, and in any case are considered separate under the
11822 discrete model. */
11823 r = copy_decl (t);
11824 DECL_USE_TEMPLATE (r) = 0;
11825 TREE_TYPE (r) = type;
11826 /* Clear out the mangled name and RTL for the instantiation. */
11827 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11828 SET_DECL_RTL (r, NULL);
11829 /* Leave DECL_INITIAL set on deleted instantiations. */
11830 if (!DECL_DELETED_FN (r))
11831 DECL_INITIAL (r) = NULL_TREE;
11832 DECL_CONTEXT (r) = ctx;
11833
11834 /* OpenMP UDRs have the only argument a reference to the declared
11835 type. We want to diagnose if the declared type is a reference,
11836 which is invalid, but as references to references are usually
11837 quietly merged, diagnose it here. */
11838 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11839 {
11840 tree argtype
11841 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11842 argtype = tsubst (argtype, args, complain, in_decl);
11843 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11844 error_at (DECL_SOURCE_LOCATION (t),
11845 "reference type %qT in "
11846 "%<#pragma omp declare reduction%>", argtype);
11847 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11848 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11849 argtype);
11850 }
11851
11852 if (member && DECL_CONV_FN_P (r))
11853 /* Type-conversion operator. Reconstruct the name, in
11854 case it's the name of one of the template's parameters. */
11855 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11856
11857 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11858 complain, t);
11859 DECL_RESULT (r) = NULL_TREE;
11860
11861 TREE_STATIC (r) = 0;
11862 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11863 DECL_EXTERNAL (r) = 1;
11864 /* If this is an instantiation of a function with internal
11865 linkage, we already know what object file linkage will be
11866 assigned to the instantiation. */
11867 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11868 DECL_DEFER_OUTPUT (r) = 0;
11869 DECL_CHAIN (r) = NULL_TREE;
11870 DECL_PENDING_INLINE_INFO (r) = 0;
11871 DECL_PENDING_INLINE_P (r) = 0;
11872 DECL_SAVED_TREE (r) = NULL_TREE;
11873 DECL_STRUCT_FUNCTION (r) = NULL;
11874 TREE_USED (r) = 0;
11875 /* We'll re-clone as appropriate in instantiate_template. */
11876 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11877
11878 /* If we aren't complaining now, return on error before we register
11879 the specialization so that we'll complain eventually. */
11880 if ((complain & tf_error) == 0
11881 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11882 && !grok_op_properties (r, /*complain=*/false))
11883 RETURN (error_mark_node);
11884
11885 /* When instantiating a constrained member, substitute
11886 into the constraints to create a new constraint. */
11887 if (tree ci = get_constraints (t))
11888 if (member)
11889 {
11890 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11891 set_constraints (r, ci);
11892 }
11893
11894 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11895 this in the special friend case mentioned above where
11896 GEN_TMPL is NULL. */
11897 if (gen_tmpl)
11898 {
11899 DECL_TEMPLATE_INFO (r)
11900 = build_template_info (gen_tmpl, argvec);
11901 SET_DECL_IMPLICIT_INSTANTIATION (r);
11902
11903 tree new_r
11904 = register_specialization (r, gen_tmpl, argvec, false, hash);
11905 if (new_r != r)
11906 /* We instantiated this while substituting into
11907 the type earlier (template/friend54.C). */
11908 RETURN (new_r);
11909
11910 /* We're not supposed to instantiate default arguments
11911 until they are called, for a template. But, for a
11912 declaration like:
11913
11914 template <class T> void f ()
11915 { extern void g(int i = T()); }
11916
11917 we should do the substitution when the template is
11918 instantiated. We handle the member function case in
11919 instantiate_class_template since the default arguments
11920 might refer to other members of the class. */
11921 if (!member
11922 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11923 && !uses_template_parms (argvec))
11924 tsubst_default_arguments (r, complain);
11925 }
11926 else
11927 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11928
11929 /* Copy the list of befriending classes. */
11930 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11931 *friends;
11932 friends = &TREE_CHAIN (*friends))
11933 {
11934 *friends = copy_node (*friends);
11935 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11936 args, complain,
11937 in_decl);
11938 }
11939
11940 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11941 {
11942 maybe_retrofit_in_chrg (r);
11943 if (DECL_CONSTRUCTOR_P (r))
11944 grok_ctor_properties (ctx, r);
11945 if (DECL_INHERITED_CTOR_BASE (r))
11946 deduce_inheriting_ctor (r);
11947 /* If this is an instantiation of a member template, clone it.
11948 If it isn't, that'll be handled by
11949 clone_constructors_and_destructors. */
11950 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11951 clone_function_decl (r, /*update_method_vec_p=*/0);
11952 }
11953 else if ((complain & tf_error) != 0
11954 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11955 && !grok_op_properties (r, /*complain=*/true))
11956 RETURN (error_mark_node);
11957
11958 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11959 SET_DECL_FRIEND_CONTEXT (r,
11960 tsubst (DECL_FRIEND_CONTEXT (t),
11961 args, complain, in_decl));
11962
11963 /* Possibly limit visibility based on template args. */
11964 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11965 if (DECL_VISIBILITY_SPECIFIED (t))
11966 {
11967 DECL_VISIBILITY_SPECIFIED (r) = 0;
11968 DECL_ATTRIBUTES (r)
11969 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11970 }
11971 determine_visibility (r);
11972 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11973 && !processing_template_decl)
11974 defaulted_late_check (r);
11975
11976 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11977 args, complain, in_decl);
11978 }
11979 break;
11980
11981 case PARM_DECL:
11982 {
11983 tree type = NULL_TREE;
11984 int i, len = 1;
11985 tree expanded_types = NULL_TREE;
11986 tree prev_r = NULL_TREE;
11987 tree first_r = NULL_TREE;
11988
11989 if (DECL_PACK_P (t))
11990 {
11991 /* If there is a local specialization that isn't a
11992 parameter pack, it means that we're doing a "simple"
11993 substitution from inside tsubst_pack_expansion. Just
11994 return the local specialization (which will be a single
11995 parm). */
11996 tree spec = retrieve_local_specialization (t);
11997 if (spec
11998 && TREE_CODE (spec) == PARM_DECL
11999 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
12000 RETURN (spec);
12001
12002 /* Expand the TYPE_PACK_EXPANSION that provides the types for
12003 the parameters in this function parameter pack. */
12004 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12005 complain, in_decl);
12006 if (TREE_CODE (expanded_types) == TREE_VEC)
12007 {
12008 len = TREE_VEC_LENGTH (expanded_types);
12009
12010 /* Zero-length parameter packs are boring. Just substitute
12011 into the chain. */
12012 if (len == 0)
12013 RETURN (tsubst (TREE_CHAIN (t), args, complain,
12014 TREE_CHAIN (t)));
12015 }
12016 else
12017 {
12018 /* All we did was update the type. Make a note of that. */
12019 type = expanded_types;
12020 expanded_types = NULL_TREE;
12021 }
12022 }
12023
12024 /* Loop through all of the parameters we'll build. When T is
12025 a function parameter pack, LEN is the number of expanded
12026 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12027 r = NULL_TREE;
12028 for (i = 0; i < len; ++i)
12029 {
12030 prev_r = r;
12031 r = copy_node (t);
12032 if (DECL_TEMPLATE_PARM_P (t))
12033 SET_DECL_TEMPLATE_PARM_P (r);
12034
12035 if (expanded_types)
12036 /* We're on the Ith parameter of the function parameter
12037 pack. */
12038 {
12039 /* Get the Ith type. */
12040 type = TREE_VEC_ELT (expanded_types, i);
12041
12042 /* Rename the parameter to include the index. */
12043 DECL_NAME (r)
12044 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12045 }
12046 else if (!type)
12047 /* We're dealing with a normal parameter. */
12048 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12049
12050 type = type_decays_to (type);
12051 TREE_TYPE (r) = type;
12052 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12053
12054 if (DECL_INITIAL (r))
12055 {
12056 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
12057 DECL_INITIAL (r) = TREE_TYPE (r);
12058 else
12059 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
12060 complain, in_decl);
12061 }
12062
12063 DECL_CONTEXT (r) = NULL_TREE;
12064
12065 if (!DECL_TEMPLATE_PARM_P (r))
12066 DECL_ARG_TYPE (r) = type_passed_as (type);
12067
12068 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12069 args, complain, in_decl);
12070
12071 /* Keep track of the first new parameter we
12072 generate. That's what will be returned to the
12073 caller. */
12074 if (!first_r)
12075 first_r = r;
12076
12077 /* Build a proper chain of parameters when substituting
12078 into a function parameter pack. */
12079 if (prev_r)
12080 DECL_CHAIN (prev_r) = r;
12081 }
12082
12083 /* If cp_unevaluated_operand is set, we're just looking for a
12084 single dummy parameter, so don't keep going. */
12085 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12086 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12087 complain, DECL_CHAIN (t));
12088
12089 /* FIRST_R contains the start of the chain we've built. */
12090 r = first_r;
12091 }
12092 break;
12093
12094 case FIELD_DECL:
12095 {
12096 tree type = NULL_TREE;
12097 tree vec = NULL_TREE;
12098 tree expanded_types = NULL_TREE;
12099 int len = 1;
12100
12101 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12102 {
12103 /* This field is a lambda capture pack. Return a TREE_VEC of
12104 the expanded fields to instantiate_class_template_1 and
12105 store them in the specializations hash table as a
12106 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12107 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12108 complain, in_decl);
12109 if (TREE_CODE (expanded_types) == TREE_VEC)
12110 {
12111 len = TREE_VEC_LENGTH (expanded_types);
12112 vec = make_tree_vec (len);
12113 }
12114 else
12115 {
12116 /* All we did was update the type. Make a note of that. */
12117 type = expanded_types;
12118 expanded_types = NULL_TREE;
12119 }
12120 }
12121
12122 for (int i = 0; i < len; ++i)
12123 {
12124 r = copy_decl (t);
12125 if (expanded_types)
12126 {
12127 type = TREE_VEC_ELT (expanded_types, i);
12128 DECL_NAME (r)
12129 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12130 }
12131 else if (!type)
12132 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12133
12134 if (type == error_mark_node)
12135 RETURN (error_mark_node);
12136 TREE_TYPE (r) = type;
12137 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12138
12139 if (DECL_C_BIT_FIELD (r))
12140 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12141 non-bit-fields DECL_INITIAL is a non-static data member
12142 initializer, which gets deferred instantiation. */
12143 DECL_INITIAL (r)
12144 = tsubst_expr (DECL_INITIAL (t), args,
12145 complain, in_decl,
12146 /*integral_constant_expression_p=*/true);
12147 else if (DECL_INITIAL (t))
12148 {
12149 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12150 NSDMI in perform_member_init. Still set DECL_INITIAL
12151 so that we know there is one. */
12152 DECL_INITIAL (r) = void_node;
12153 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12154 retrofit_lang_decl (r);
12155 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12156 }
12157 /* We don't have to set DECL_CONTEXT here; it is set by
12158 finish_member_declaration. */
12159 DECL_CHAIN (r) = NULL_TREE;
12160
12161 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12162 args, complain, in_decl);
12163
12164 if (vec)
12165 TREE_VEC_ELT (vec, i) = r;
12166 }
12167
12168 if (vec)
12169 {
12170 r = vec;
12171 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12172 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12173 SET_ARGUMENT_PACK_ARGS (pack, vec);
12174 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12175 TREE_TYPE (pack) = tpack;
12176 register_specialization (pack, t, args, false, 0);
12177 }
12178 }
12179 break;
12180
12181 case USING_DECL:
12182 /* We reach here only for member using decls. We also need to check
12183 uses_template_parms because DECL_DEPENDENT_P is not set for a
12184 using-declaration that designates a member of the current
12185 instantiation (c++/53549). */
12186 if (DECL_DEPENDENT_P (t)
12187 || uses_template_parms (USING_DECL_SCOPE (t)))
12188 {
12189 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12190 complain, in_decl);
12191 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12192 r = do_class_using_decl (inst_scope, name);
12193 if (!r)
12194 r = error_mark_node;
12195 else
12196 {
12197 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12198 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12199 }
12200 }
12201 else
12202 {
12203 r = copy_node (t);
12204 DECL_CHAIN (r) = NULL_TREE;
12205 }
12206 break;
12207
12208 case TYPE_DECL:
12209 case VAR_DECL:
12210 {
12211 tree argvec = NULL_TREE;
12212 tree gen_tmpl = NULL_TREE;
12213 tree spec;
12214 tree tmpl = NULL_TREE;
12215 tree ctx;
12216 tree type = NULL_TREE;
12217 bool local_p;
12218
12219 if (TREE_TYPE (t) == error_mark_node)
12220 RETURN (error_mark_node);
12221
12222 if (TREE_CODE (t) == TYPE_DECL
12223 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12224 {
12225 /* If this is the canonical decl, we don't have to
12226 mess with instantiations, and often we can't (for
12227 typename, template type parms and such). Note that
12228 TYPE_NAME is not correct for the above test if
12229 we've copied the type for a typedef. */
12230 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12231 if (type == error_mark_node)
12232 RETURN (error_mark_node);
12233 r = TYPE_NAME (type);
12234 break;
12235 }
12236
12237 /* Check to see if we already have the specialization we
12238 need. */
12239 spec = NULL_TREE;
12240 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12241 {
12242 /* T is a static data member or namespace-scope entity.
12243 We have to substitute into namespace-scope variables
12244 (not just variable templates) because of cases like:
12245
12246 template <class T> void f() { extern T t; }
12247
12248 where the entity referenced is not known until
12249 instantiation time. */
12250 local_p = false;
12251 ctx = DECL_CONTEXT (t);
12252 if (DECL_CLASS_SCOPE_P (t))
12253 {
12254 ctx = tsubst_aggr_type (ctx, args,
12255 complain,
12256 in_decl, /*entering_scope=*/1);
12257 /* If CTX is unchanged, then T is in fact the
12258 specialization we want. That situation occurs when
12259 referencing a static data member within in its own
12260 class. We can use pointer equality, rather than
12261 same_type_p, because DECL_CONTEXT is always
12262 canonical... */
12263 if (ctx == DECL_CONTEXT (t)
12264 /* ... unless T is a member template; in which
12265 case our caller can be willing to create a
12266 specialization of that template represented
12267 by T. */
12268 && !(DECL_TI_TEMPLATE (t)
12269 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12270 spec = t;
12271 }
12272
12273 if (!spec)
12274 {
12275 tmpl = DECL_TI_TEMPLATE (t);
12276 gen_tmpl = most_general_template (tmpl);
12277 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12278 if (argvec != error_mark_node)
12279 argvec = (coerce_innermost_template_parms
12280 (DECL_TEMPLATE_PARMS (gen_tmpl),
12281 argvec, t, complain,
12282 /*all*/true, /*defarg*/true));
12283 if (argvec == error_mark_node)
12284 RETURN (error_mark_node);
12285 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12286 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12287 }
12288 }
12289 else
12290 {
12291 /* A local variable. */
12292 local_p = true;
12293 /* Subsequent calls to pushdecl will fill this in. */
12294 ctx = NULL_TREE;
12295 spec = retrieve_local_specialization (t);
12296 }
12297 /* If we already have the specialization we need, there is
12298 nothing more to do. */
12299 if (spec)
12300 {
12301 r = spec;
12302 break;
12303 }
12304
12305 /* Create a new node for the specialization we need. */
12306 r = copy_decl (t);
12307 if (type == NULL_TREE)
12308 {
12309 if (is_typedef_decl (t))
12310 type = DECL_ORIGINAL_TYPE (t);
12311 else
12312 type = TREE_TYPE (t);
12313 if (VAR_P (t)
12314 && VAR_HAD_UNKNOWN_BOUND (t)
12315 && type != error_mark_node)
12316 type = strip_array_domain (type);
12317 type = tsubst (type, args, complain, in_decl);
12318 }
12319 if (VAR_P (r))
12320 {
12321 /* Even if the original location is out of scope, the
12322 newly substituted one is not. */
12323 DECL_DEAD_FOR_LOCAL (r) = 0;
12324 DECL_INITIALIZED_P (r) = 0;
12325 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12326 if (type == error_mark_node)
12327 RETURN (error_mark_node);
12328 if (TREE_CODE (type) == FUNCTION_TYPE)
12329 {
12330 /* It may seem that this case cannot occur, since:
12331
12332 typedef void f();
12333 void g() { f x; }
12334
12335 declares a function, not a variable. However:
12336
12337 typedef void f();
12338 template <typename T> void g() { T t; }
12339 template void g<f>();
12340
12341 is an attempt to declare a variable with function
12342 type. */
12343 error ("variable %qD has function type",
12344 /* R is not yet sufficiently initialized, so we
12345 just use its name. */
12346 DECL_NAME (r));
12347 RETURN (error_mark_node);
12348 }
12349 type = complete_type (type);
12350 /* Wait until cp_finish_decl to set this again, to handle
12351 circular dependency (template/instantiate6.C). */
12352 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12353 type = check_var_type (DECL_NAME (r), type);
12354
12355 if (DECL_HAS_VALUE_EXPR_P (t))
12356 {
12357 tree ve = DECL_VALUE_EXPR (t);
12358 ve = tsubst_expr (ve, args, complain, in_decl,
12359 /*constant_expression_p=*/false);
12360 if (REFERENCE_REF_P (ve))
12361 {
12362 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12363 ve = TREE_OPERAND (ve, 0);
12364 }
12365 SET_DECL_VALUE_EXPR (r, ve);
12366 }
12367 if (CP_DECL_THREAD_LOCAL_P (r)
12368 && !processing_template_decl)
12369 set_decl_tls_model (r, decl_default_tls_model (r));
12370 }
12371 else if (DECL_SELF_REFERENCE_P (t))
12372 SET_DECL_SELF_REFERENCE_P (r);
12373 TREE_TYPE (r) = type;
12374 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12375 DECL_CONTEXT (r) = ctx;
12376 /* Clear out the mangled name and RTL for the instantiation. */
12377 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12378 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12379 SET_DECL_RTL (r, NULL);
12380 /* The initializer must not be expanded until it is required;
12381 see [temp.inst]. */
12382 DECL_INITIAL (r) = NULL_TREE;
12383 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12384 SET_DECL_RTL (r, NULL);
12385 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12386 if (VAR_P (r))
12387 {
12388 /* Possibly limit visibility based on template args. */
12389 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12390 if (DECL_VISIBILITY_SPECIFIED (t))
12391 {
12392 DECL_VISIBILITY_SPECIFIED (r) = 0;
12393 DECL_ATTRIBUTES (r)
12394 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12395 }
12396 determine_visibility (r);
12397 }
12398
12399 if (!local_p)
12400 {
12401 /* A static data member declaration is always marked
12402 external when it is declared in-class, even if an
12403 initializer is present. We mimic the non-template
12404 processing here. */
12405 DECL_EXTERNAL (r) = 1;
12406 if (DECL_NAMESPACE_SCOPE_P (t))
12407 DECL_NOT_REALLY_EXTERN (r) = 1;
12408
12409 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12410 SET_DECL_IMPLICIT_INSTANTIATION (r);
12411 register_specialization (r, gen_tmpl, argvec, false, hash);
12412 }
12413 else
12414 {
12415 if (DECL_LANG_SPECIFIC (r))
12416 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12417 if (!cp_unevaluated_operand)
12418 register_local_specialization (r, t);
12419 }
12420
12421 DECL_CHAIN (r) = NULL_TREE;
12422
12423 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12424 /*flags=*/0,
12425 args, complain, in_decl);
12426
12427 /* Preserve a typedef that names a type. */
12428 if (is_typedef_decl (r))
12429 {
12430 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12431 set_underlying_type (r);
12432 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12433 /* An alias template specialization can be dependent
12434 even if its underlying type is not. */
12435 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12436 }
12437
12438 layout_decl (r, 0);
12439 }
12440 break;
12441
12442 default:
12443 gcc_unreachable ();
12444 }
12445 #undef RETURN
12446
12447 out:
12448 /* Restore the file and line information. */
12449 input_location = saved_loc;
12450
12451 return r;
12452 }
12453
12454 /* Substitute into the ARG_TYPES of a function type.
12455 If END is a TREE_CHAIN, leave it and any following types
12456 un-substituted. */
12457
12458 static tree
12459 tsubst_arg_types (tree arg_types,
12460 tree args,
12461 tree end,
12462 tsubst_flags_t complain,
12463 tree in_decl)
12464 {
12465 tree remaining_arg_types;
12466 tree type = NULL_TREE;
12467 int i = 1;
12468 tree expanded_args = NULL_TREE;
12469 tree default_arg;
12470
12471 if (!arg_types || arg_types == void_list_node || arg_types == end)
12472 return arg_types;
12473
12474 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12475 args, end, complain, in_decl);
12476 if (remaining_arg_types == error_mark_node)
12477 return error_mark_node;
12478
12479 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12480 {
12481 /* For a pack expansion, perform substitution on the
12482 entire expression. Later on, we'll handle the arguments
12483 one-by-one. */
12484 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12485 args, complain, in_decl);
12486
12487 if (TREE_CODE (expanded_args) == TREE_VEC)
12488 /* So that we'll spin through the parameters, one by one. */
12489 i = TREE_VEC_LENGTH (expanded_args);
12490 else
12491 {
12492 /* We only partially substituted into the parameter
12493 pack. Our type is TYPE_PACK_EXPANSION. */
12494 type = expanded_args;
12495 expanded_args = NULL_TREE;
12496 }
12497 }
12498
12499 while (i > 0) {
12500 --i;
12501
12502 if (expanded_args)
12503 type = TREE_VEC_ELT (expanded_args, i);
12504 else if (!type)
12505 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12506
12507 if (type == error_mark_node)
12508 return error_mark_node;
12509 if (VOID_TYPE_P (type))
12510 {
12511 if (complain & tf_error)
12512 {
12513 error ("invalid parameter type %qT", type);
12514 if (in_decl)
12515 error ("in declaration %q+D", in_decl);
12516 }
12517 return error_mark_node;
12518 }
12519 /* DR 657. */
12520 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12521 return error_mark_node;
12522
12523 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12524 top-level qualifiers as required. */
12525 type = cv_unqualified (type_decays_to (type));
12526
12527 /* We do not substitute into default arguments here. The standard
12528 mandates that they be instantiated only when needed, which is
12529 done in build_over_call. */
12530 default_arg = TREE_PURPOSE (arg_types);
12531
12532 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12533 {
12534 /* We've instantiated a template before its default arguments
12535 have been parsed. This can happen for a nested template
12536 class, and is not an error unless we require the default
12537 argument in a call of this function. */
12538 remaining_arg_types =
12539 tree_cons (default_arg, type, remaining_arg_types);
12540 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12541 }
12542 else
12543 remaining_arg_types =
12544 hash_tree_cons (default_arg, type, remaining_arg_types);
12545 }
12546
12547 return remaining_arg_types;
12548 }
12549
12550 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12551 *not* handle the exception-specification for FNTYPE, because the
12552 initial substitution of explicitly provided template parameters
12553 during argument deduction forbids substitution into the
12554 exception-specification:
12555
12556 [temp.deduct]
12557
12558 All references in the function type of the function template to the
12559 corresponding template parameters are replaced by the specified tem-
12560 plate argument values. If a substitution in a template parameter or
12561 in the function type of the function template results in an invalid
12562 type, type deduction fails. [Note: The equivalent substitution in
12563 exception specifications is done only when the function is instanti-
12564 ated, at which point a program is ill-formed if the substitution
12565 results in an invalid type.] */
12566
12567 static tree
12568 tsubst_function_type (tree t,
12569 tree args,
12570 tsubst_flags_t complain,
12571 tree in_decl)
12572 {
12573 tree return_type;
12574 tree arg_types = NULL_TREE;
12575 tree fntype;
12576
12577 /* The TYPE_CONTEXT is not used for function/method types. */
12578 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12579
12580 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12581 failure. */
12582 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12583
12584 if (late_return_type_p)
12585 {
12586 /* Substitute the argument types. */
12587 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12588 complain, in_decl);
12589 if (arg_types == error_mark_node)
12590 return error_mark_node;
12591
12592 tree save_ccp = current_class_ptr;
12593 tree save_ccr = current_class_ref;
12594 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12595 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12596 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12597 if (do_inject)
12598 {
12599 /* DR 1207: 'this' is in scope in the trailing return type. */
12600 inject_this_parameter (this_type, cp_type_quals (this_type));
12601 }
12602
12603 /* Substitute the return type. */
12604 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12605
12606 if (do_inject)
12607 {
12608 current_class_ptr = save_ccp;
12609 current_class_ref = save_ccr;
12610 }
12611 }
12612 else
12613 /* Substitute the return type. */
12614 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12615
12616 if (return_type == error_mark_node)
12617 return error_mark_node;
12618 /* DR 486 clarifies that creation of a function type with an
12619 invalid return type is a deduction failure. */
12620 if (TREE_CODE (return_type) == ARRAY_TYPE
12621 || TREE_CODE (return_type) == FUNCTION_TYPE)
12622 {
12623 if (complain & tf_error)
12624 {
12625 if (TREE_CODE (return_type) == ARRAY_TYPE)
12626 error ("function returning an array");
12627 else
12628 error ("function returning a function");
12629 }
12630 return error_mark_node;
12631 }
12632 /* And DR 657. */
12633 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12634 return error_mark_node;
12635
12636 if (!late_return_type_p)
12637 {
12638 /* Substitute the argument types. */
12639 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12640 complain, in_decl);
12641 if (arg_types == error_mark_node)
12642 return error_mark_node;
12643 }
12644
12645 /* Construct a new type node and return it. */
12646 if (TREE_CODE (t) == FUNCTION_TYPE)
12647 {
12648 fntype = build_function_type (return_type, arg_types);
12649 fntype = apply_memfn_quals (fntype,
12650 type_memfn_quals (t),
12651 type_memfn_rqual (t));
12652 }
12653 else
12654 {
12655 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12656 /* Don't pick up extra function qualifiers from the basetype. */
12657 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12658 if (! MAYBE_CLASS_TYPE_P (r))
12659 {
12660 /* [temp.deduct]
12661
12662 Type deduction may fail for any of the following
12663 reasons:
12664
12665 -- Attempting to create "pointer to member of T" when T
12666 is not a class type. */
12667 if (complain & tf_error)
12668 error ("creating pointer to member function of non-class type %qT",
12669 r);
12670 return error_mark_node;
12671 }
12672
12673 fntype = build_method_type_directly (r, return_type,
12674 TREE_CHAIN (arg_types));
12675 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12676 }
12677 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12678
12679 if (late_return_type_p)
12680 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12681
12682 return fntype;
12683 }
12684
12685 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12686 ARGS into that specification, and return the substituted
12687 specification. If there is no specification, return NULL_TREE. */
12688
12689 static tree
12690 tsubst_exception_specification (tree fntype,
12691 tree args,
12692 tsubst_flags_t complain,
12693 tree in_decl,
12694 bool defer_ok)
12695 {
12696 tree specs;
12697 tree new_specs;
12698
12699 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12700 new_specs = NULL_TREE;
12701 if (specs && TREE_PURPOSE (specs))
12702 {
12703 /* A noexcept-specifier. */
12704 tree expr = TREE_PURPOSE (specs);
12705 if (TREE_CODE (expr) == INTEGER_CST)
12706 new_specs = expr;
12707 else if (defer_ok)
12708 {
12709 /* Defer instantiation of noexcept-specifiers to avoid
12710 excessive instantiations (c++/49107). */
12711 new_specs = make_node (DEFERRED_NOEXCEPT);
12712 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12713 {
12714 /* We already partially instantiated this member template,
12715 so combine the new args with the old. */
12716 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12717 = DEFERRED_NOEXCEPT_PATTERN (expr);
12718 DEFERRED_NOEXCEPT_ARGS (new_specs)
12719 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12720 }
12721 else
12722 {
12723 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12724 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12725 }
12726 }
12727 else
12728 new_specs = tsubst_copy_and_build
12729 (expr, args, complain, in_decl, /*function_p=*/false,
12730 /*integral_constant_expression_p=*/true);
12731 new_specs = build_noexcept_spec (new_specs, complain);
12732 }
12733 else if (specs)
12734 {
12735 if (! TREE_VALUE (specs))
12736 new_specs = specs;
12737 else
12738 while (specs)
12739 {
12740 tree spec;
12741 int i, len = 1;
12742 tree expanded_specs = NULL_TREE;
12743
12744 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12745 {
12746 /* Expand the pack expansion type. */
12747 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12748 args, complain,
12749 in_decl);
12750
12751 if (expanded_specs == error_mark_node)
12752 return error_mark_node;
12753 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12754 len = TREE_VEC_LENGTH (expanded_specs);
12755 else
12756 {
12757 /* We're substituting into a member template, so
12758 we got a TYPE_PACK_EXPANSION back. Add that
12759 expansion and move on. */
12760 gcc_assert (TREE_CODE (expanded_specs)
12761 == TYPE_PACK_EXPANSION);
12762 new_specs = add_exception_specifier (new_specs,
12763 expanded_specs,
12764 complain);
12765 specs = TREE_CHAIN (specs);
12766 continue;
12767 }
12768 }
12769
12770 for (i = 0; i < len; ++i)
12771 {
12772 if (expanded_specs)
12773 spec = TREE_VEC_ELT (expanded_specs, i);
12774 else
12775 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12776 if (spec == error_mark_node)
12777 return spec;
12778 new_specs = add_exception_specifier (new_specs, spec,
12779 complain);
12780 }
12781
12782 specs = TREE_CHAIN (specs);
12783 }
12784 }
12785 return new_specs;
12786 }
12787
12788 /* Take the tree structure T and replace template parameters used
12789 therein with the argument vector ARGS. IN_DECL is an associated
12790 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12791 Issue error and warning messages under control of COMPLAIN. Note
12792 that we must be relatively non-tolerant of extensions here, in
12793 order to preserve conformance; if we allow substitutions that
12794 should not be allowed, we may allow argument deductions that should
12795 not succeed, and therefore report ambiguous overload situations
12796 where there are none. In theory, we could allow the substitution,
12797 but indicate that it should have failed, and allow our caller to
12798 make sure that the right thing happens, but we don't try to do this
12799 yet.
12800
12801 This function is used for dealing with types, decls and the like;
12802 for expressions, use tsubst_expr or tsubst_copy. */
12803
12804 tree
12805 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12806 {
12807 enum tree_code code;
12808 tree type, r = NULL_TREE;
12809
12810 if (t == NULL_TREE || t == error_mark_node
12811 || t == integer_type_node
12812 || t == void_type_node
12813 || t == char_type_node
12814 || t == unknown_type_node
12815 || TREE_CODE (t) == NAMESPACE_DECL
12816 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12817 return t;
12818
12819 if (DECL_P (t))
12820 return tsubst_decl (t, args, complain);
12821
12822 if (args == NULL_TREE)
12823 return t;
12824
12825 code = TREE_CODE (t);
12826
12827 if (code == IDENTIFIER_NODE)
12828 type = IDENTIFIER_TYPE_VALUE (t);
12829 else
12830 type = TREE_TYPE (t);
12831
12832 gcc_assert (type != unknown_type_node);
12833
12834 /* Reuse typedefs. We need to do this to handle dependent attributes,
12835 such as attribute aligned. */
12836 if (TYPE_P (t)
12837 && typedef_variant_p (t))
12838 {
12839 tree decl = TYPE_NAME (t);
12840
12841 if (alias_template_specialization_p (t))
12842 {
12843 /* DECL represents an alias template and we want to
12844 instantiate it. */
12845 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12846 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12847 r = instantiate_alias_template (tmpl, gen_args, complain);
12848 }
12849 else if (DECL_CLASS_SCOPE_P (decl)
12850 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12851 && uses_template_parms (DECL_CONTEXT (decl)))
12852 {
12853 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12854 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12855 r = retrieve_specialization (tmpl, gen_args, 0);
12856 }
12857 else if (DECL_FUNCTION_SCOPE_P (decl)
12858 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12859 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12860 r = retrieve_local_specialization (decl);
12861 else
12862 /* The typedef is from a non-template context. */
12863 return t;
12864
12865 if (r)
12866 {
12867 r = TREE_TYPE (r);
12868 r = cp_build_qualified_type_real
12869 (r, cp_type_quals (t) | cp_type_quals (r),
12870 complain | tf_ignore_bad_quals);
12871 return r;
12872 }
12873 else
12874 {
12875 /* We don't have an instantiation yet, so drop the typedef. */
12876 int quals = cp_type_quals (t);
12877 t = DECL_ORIGINAL_TYPE (decl);
12878 t = cp_build_qualified_type_real (t, quals,
12879 complain | tf_ignore_bad_quals);
12880 }
12881 }
12882
12883 if (type
12884 && code != TYPENAME_TYPE
12885 && code != TEMPLATE_TYPE_PARM
12886 && code != IDENTIFIER_NODE
12887 && code != FUNCTION_TYPE
12888 && code != METHOD_TYPE)
12889 type = tsubst (type, args, complain, in_decl);
12890 if (type == error_mark_node)
12891 return error_mark_node;
12892
12893 switch (code)
12894 {
12895 case RECORD_TYPE:
12896 case UNION_TYPE:
12897 case ENUMERAL_TYPE:
12898 return tsubst_aggr_type (t, args, complain, in_decl,
12899 /*entering_scope=*/0);
12900
12901 case ERROR_MARK:
12902 case IDENTIFIER_NODE:
12903 case VOID_TYPE:
12904 case REAL_TYPE:
12905 case COMPLEX_TYPE:
12906 case VECTOR_TYPE:
12907 case BOOLEAN_TYPE:
12908 case NULLPTR_TYPE:
12909 case LANG_TYPE:
12910 return t;
12911
12912 case INTEGER_TYPE:
12913 if (t == integer_type_node)
12914 return t;
12915
12916 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12917 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12918 return t;
12919
12920 {
12921 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12922
12923 max = tsubst_expr (omax, args, complain, in_decl,
12924 /*integral_constant_expression_p=*/false);
12925
12926 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12927 needed. */
12928 if (TREE_CODE (max) == NOP_EXPR
12929 && TREE_SIDE_EFFECTS (omax)
12930 && !TREE_TYPE (max))
12931 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12932
12933 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12934 with TREE_SIDE_EFFECTS that indicates this is not an integral
12935 constant expression. */
12936 if (processing_template_decl
12937 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12938 {
12939 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12940 TREE_SIDE_EFFECTS (max) = 1;
12941 }
12942
12943 return compute_array_index_type (NULL_TREE, max, complain);
12944 }
12945
12946 case TEMPLATE_TYPE_PARM:
12947 case TEMPLATE_TEMPLATE_PARM:
12948 case BOUND_TEMPLATE_TEMPLATE_PARM:
12949 case TEMPLATE_PARM_INDEX:
12950 {
12951 int idx;
12952 int level;
12953 int levels;
12954 tree arg = NULL_TREE;
12955
12956 /* Early in template argument deduction substitution, we don't
12957 want to reduce the level of 'auto', or it will be confused
12958 with a normal template parm in subsequent deduction. */
12959 if (is_auto (t) && (complain & tf_partial))
12960 return t;
12961
12962 r = NULL_TREE;
12963
12964 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12965 template_parm_level_and_index (t, &level, &idx);
12966
12967 levels = TMPL_ARGS_DEPTH (args);
12968 if (level <= levels
12969 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12970 {
12971 arg = TMPL_ARG (args, level, idx);
12972
12973 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12974 {
12975 /* See through ARGUMENT_PACK_SELECT arguments. */
12976 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12977 /* If the selected argument is an expansion E, that most
12978 likely means we were called from
12979 gen_elem_of_pack_expansion_instantiation during the
12980 substituting of pack an argument pack (which Ith
12981 element is a pack expansion, where I is
12982 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12983 In this case, the Ith element resulting from this
12984 substituting is going to be a pack expansion, which
12985 pattern is the pattern of E. Let's return the
12986 pattern of E, and
12987 gen_elem_of_pack_expansion_instantiation will
12988 build the resulting pack expansion from it. */
12989 if (PACK_EXPANSION_P (arg))
12990 {
12991 /* Make sure we aren't throwing away arg info. */
12992 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12993 arg = PACK_EXPANSION_PATTERN (arg);
12994 }
12995 }
12996 }
12997
12998 if (arg == error_mark_node)
12999 return error_mark_node;
13000 else if (arg != NULL_TREE)
13001 {
13002 if (ARGUMENT_PACK_P (arg))
13003 /* If ARG is an argument pack, we don't actually want to
13004 perform a substitution here, because substitutions
13005 for argument packs are only done
13006 element-by-element. We can get to this point when
13007 substituting the type of a non-type template
13008 parameter pack, when that type actually contains
13009 template parameter packs from an outer template, e.g.,
13010
13011 template<typename... Types> struct A {
13012 template<Types... Values> struct B { };
13013 }; */
13014 return t;
13015
13016 if (code == TEMPLATE_TYPE_PARM)
13017 {
13018 int quals;
13019 gcc_assert (TYPE_P (arg));
13020
13021 quals = cp_type_quals (arg) | cp_type_quals (t);
13022
13023 return cp_build_qualified_type_real
13024 (arg, quals, complain | tf_ignore_bad_quals);
13025 }
13026 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13027 {
13028 /* We are processing a type constructed from a
13029 template template parameter. */
13030 tree argvec = tsubst (TYPE_TI_ARGS (t),
13031 args, complain, in_decl);
13032 if (argvec == error_mark_node)
13033 return error_mark_node;
13034
13035 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
13036 || TREE_CODE (arg) == TEMPLATE_DECL
13037 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
13038
13039 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
13040 /* Consider this code:
13041
13042 template <template <class> class Template>
13043 struct Internal {
13044 template <class Arg> using Bind = Template<Arg>;
13045 };
13046
13047 template <template <class> class Template, class Arg>
13048 using Instantiate = Template<Arg>; //#0
13049
13050 template <template <class> class Template,
13051 class Argument>
13052 using Bind =
13053 Instantiate<Internal<Template>::template Bind,
13054 Argument>; //#1
13055
13056 When #1 is parsed, the
13057 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13058 parameter `Template' in #0 matches the
13059 UNBOUND_CLASS_TEMPLATE representing the argument
13060 `Internal<Template>::template Bind'; We then want
13061 to assemble the type `Bind<Argument>' that can't
13062 be fully created right now, because
13063 `Internal<Template>' not being complete, the Bind
13064 template cannot be looked up in that context. So
13065 we need to "store" `Bind<Argument>' for later
13066 when the context of Bind becomes complete. Let's
13067 store that in a TYPENAME_TYPE. */
13068 return make_typename_type (TYPE_CONTEXT (arg),
13069 build_nt (TEMPLATE_ID_EXPR,
13070 TYPE_IDENTIFIER (arg),
13071 argvec),
13072 typename_type,
13073 complain);
13074
13075 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13076 are resolving nested-types in the signature of a
13077 member function templates. Otherwise ARG is a
13078 TEMPLATE_DECL and is the real template to be
13079 instantiated. */
13080 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13081 arg = TYPE_NAME (arg);
13082
13083 r = lookup_template_class (arg,
13084 argvec, in_decl,
13085 DECL_CONTEXT (arg),
13086 /*entering_scope=*/0,
13087 complain);
13088 return cp_build_qualified_type_real
13089 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13090 }
13091 else
13092 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
13093 return convert_from_reference (unshare_expr (arg));
13094 }
13095
13096 if (level == 1)
13097 /* This can happen during the attempted tsubst'ing in
13098 unify. This means that we don't yet have any information
13099 about the template parameter in question. */
13100 return t;
13101
13102 /* If we get here, we must have been looking at a parm for a
13103 more deeply nested template. Make a new version of this
13104 template parameter, but with a lower level. */
13105 switch (code)
13106 {
13107 case TEMPLATE_TYPE_PARM:
13108 case TEMPLATE_TEMPLATE_PARM:
13109 case BOUND_TEMPLATE_TEMPLATE_PARM:
13110 if (cp_type_quals (t))
13111 {
13112 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13113 r = cp_build_qualified_type_real
13114 (r, cp_type_quals (t),
13115 complain | (code == TEMPLATE_TYPE_PARM
13116 ? tf_ignore_bad_quals : 0));
13117 }
13118 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13119 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13120 && (r = (TEMPLATE_PARM_DESCENDANTS
13121 (TEMPLATE_TYPE_PARM_INDEX (t))))
13122 && (r = TREE_TYPE (r))
13123 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13124 /* Break infinite recursion when substituting the constraints
13125 of a constrained placeholder. */;
13126 else
13127 {
13128 r = copy_type (t);
13129 TEMPLATE_TYPE_PARM_INDEX (r)
13130 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13131 r, levels, args, complain);
13132 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13133 TYPE_MAIN_VARIANT (r) = r;
13134 TYPE_POINTER_TO (r) = NULL_TREE;
13135 TYPE_REFERENCE_TO (r) = NULL_TREE;
13136
13137 /* Propagate constraints on placeholders. */
13138 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13139 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13140 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13141 = tsubst_constraint (constr, args, complain, in_decl);
13142
13143 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13144 /* We have reduced the level of the template
13145 template parameter, but not the levels of its
13146 template parameters, so canonical_type_parameter
13147 will not be able to find the canonical template
13148 template parameter for this level. Thus, we
13149 require structural equality checking to compare
13150 TEMPLATE_TEMPLATE_PARMs. */
13151 SET_TYPE_STRUCTURAL_EQUALITY (r);
13152 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13153 SET_TYPE_STRUCTURAL_EQUALITY (r);
13154 else
13155 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13156
13157 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13158 {
13159 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
13160 complain, in_decl);
13161 if (argvec == error_mark_node)
13162 return error_mark_node;
13163
13164 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13165 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
13166 }
13167 }
13168 break;
13169
13170 case TEMPLATE_PARM_INDEX:
13171 r = reduce_template_parm_level (t, type, levels, args, complain);
13172 break;
13173
13174 default:
13175 gcc_unreachable ();
13176 }
13177
13178 return r;
13179 }
13180
13181 case TREE_LIST:
13182 {
13183 tree purpose, value, chain;
13184
13185 if (t == void_list_node)
13186 return t;
13187
13188 purpose = TREE_PURPOSE (t);
13189 if (purpose)
13190 {
13191 purpose = tsubst (purpose, args, complain, in_decl);
13192 if (purpose == error_mark_node)
13193 return error_mark_node;
13194 }
13195 value = TREE_VALUE (t);
13196 if (value)
13197 {
13198 value = tsubst (value, args, complain, in_decl);
13199 if (value == error_mark_node)
13200 return error_mark_node;
13201 }
13202 chain = TREE_CHAIN (t);
13203 if (chain && chain != void_type_node)
13204 {
13205 chain = tsubst (chain, args, complain, in_decl);
13206 if (chain == error_mark_node)
13207 return error_mark_node;
13208 }
13209 if (purpose == TREE_PURPOSE (t)
13210 && value == TREE_VALUE (t)
13211 && chain == TREE_CHAIN (t))
13212 return t;
13213 return hash_tree_cons (purpose, value, chain);
13214 }
13215
13216 case TREE_BINFO:
13217 /* We should never be tsubsting a binfo. */
13218 gcc_unreachable ();
13219
13220 case TREE_VEC:
13221 /* A vector of template arguments. */
13222 gcc_assert (!type);
13223 return tsubst_template_args (t, args, complain, in_decl);
13224
13225 case POINTER_TYPE:
13226 case REFERENCE_TYPE:
13227 {
13228 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13229 return t;
13230
13231 /* [temp.deduct]
13232
13233 Type deduction may fail for any of the following
13234 reasons:
13235
13236 -- Attempting to create a pointer to reference type.
13237 -- Attempting to create a reference to a reference type or
13238 a reference to void.
13239
13240 Core issue 106 says that creating a reference to a reference
13241 during instantiation is no longer a cause for failure. We
13242 only enforce this check in strict C++98 mode. */
13243 if ((TREE_CODE (type) == REFERENCE_TYPE
13244 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13245 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13246 {
13247 static location_t last_loc;
13248
13249 /* We keep track of the last time we issued this error
13250 message to avoid spewing a ton of messages during a
13251 single bad template instantiation. */
13252 if (complain & tf_error
13253 && last_loc != input_location)
13254 {
13255 if (VOID_TYPE_P (type))
13256 error ("forming reference to void");
13257 else if (code == POINTER_TYPE)
13258 error ("forming pointer to reference type %qT", type);
13259 else
13260 error ("forming reference to reference type %qT", type);
13261 last_loc = input_location;
13262 }
13263
13264 return error_mark_node;
13265 }
13266 else if (TREE_CODE (type) == FUNCTION_TYPE
13267 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13268 || type_memfn_rqual (type) != REF_QUAL_NONE))
13269 {
13270 if (complain & tf_error)
13271 {
13272 if (code == POINTER_TYPE)
13273 error ("forming pointer to qualified function type %qT",
13274 type);
13275 else
13276 error ("forming reference to qualified function type %qT",
13277 type);
13278 }
13279 return error_mark_node;
13280 }
13281 else if (code == POINTER_TYPE)
13282 {
13283 r = build_pointer_type (type);
13284 if (TREE_CODE (type) == METHOD_TYPE)
13285 r = build_ptrmemfunc_type (r);
13286 }
13287 else if (TREE_CODE (type) == REFERENCE_TYPE)
13288 /* In C++0x, during template argument substitution, when there is an
13289 attempt to create a reference to a reference type, reference
13290 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13291
13292 "If a template-argument for a template-parameter T names a type
13293 that is a reference to a type A, an attempt to create the type
13294 'lvalue reference to cv T' creates the type 'lvalue reference to
13295 A,' while an attempt to create the type type rvalue reference to
13296 cv T' creates the type T"
13297 */
13298 r = cp_build_reference_type
13299 (TREE_TYPE (type),
13300 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13301 else
13302 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13303 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13304
13305 if (r != error_mark_node)
13306 /* Will this ever be needed for TYPE_..._TO values? */
13307 layout_type (r);
13308
13309 return r;
13310 }
13311 case OFFSET_TYPE:
13312 {
13313 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13314 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13315 {
13316 /* [temp.deduct]
13317
13318 Type deduction may fail for any of the following
13319 reasons:
13320
13321 -- Attempting to create "pointer to member of T" when T
13322 is not a class type. */
13323 if (complain & tf_error)
13324 error ("creating pointer to member of non-class type %qT", r);
13325 return error_mark_node;
13326 }
13327 if (TREE_CODE (type) == REFERENCE_TYPE)
13328 {
13329 if (complain & tf_error)
13330 error ("creating pointer to member reference type %qT", type);
13331 return error_mark_node;
13332 }
13333 if (VOID_TYPE_P (type))
13334 {
13335 if (complain & tf_error)
13336 error ("creating pointer to member of type void");
13337 return error_mark_node;
13338 }
13339 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13340 if (TREE_CODE (type) == FUNCTION_TYPE)
13341 {
13342 /* The type of the implicit object parameter gets its
13343 cv-qualifiers from the FUNCTION_TYPE. */
13344 tree memptr;
13345 tree method_type
13346 = build_memfn_type (type, r, type_memfn_quals (type),
13347 type_memfn_rqual (type));
13348 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13349 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13350 complain);
13351 }
13352 else
13353 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13354 cp_type_quals (t),
13355 complain);
13356 }
13357 case FUNCTION_TYPE:
13358 case METHOD_TYPE:
13359 {
13360 tree fntype;
13361 tree specs;
13362 fntype = tsubst_function_type (t, args, complain, in_decl);
13363 if (fntype == error_mark_node)
13364 return error_mark_node;
13365
13366 /* Substitute the exception specification. */
13367 specs = tsubst_exception_specification (t, args, complain,
13368 in_decl, /*defer_ok*/true);
13369 if (specs == error_mark_node)
13370 return error_mark_node;
13371 if (specs)
13372 fntype = build_exception_variant (fntype, specs);
13373 return fntype;
13374 }
13375 case ARRAY_TYPE:
13376 {
13377 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13378 if (domain == error_mark_node)
13379 return error_mark_node;
13380
13381 /* As an optimization, we avoid regenerating the array type if
13382 it will obviously be the same as T. */
13383 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13384 return t;
13385
13386 /* These checks should match the ones in create_array_type_for_decl.
13387
13388 [temp.deduct]
13389
13390 The deduction may fail for any of the following reasons:
13391
13392 -- Attempting to create an array with an element type that
13393 is void, a function type, or a reference type, or [DR337]
13394 an abstract class type. */
13395 if (VOID_TYPE_P (type)
13396 || TREE_CODE (type) == FUNCTION_TYPE
13397 || (TREE_CODE (type) == ARRAY_TYPE
13398 && TYPE_DOMAIN (type) == NULL_TREE)
13399 || TREE_CODE (type) == REFERENCE_TYPE)
13400 {
13401 if (complain & tf_error)
13402 error ("creating array of %qT", type);
13403 return error_mark_node;
13404 }
13405
13406 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13407 return error_mark_node;
13408
13409 r = build_cplus_array_type (type, domain);
13410
13411 if (TYPE_USER_ALIGN (t))
13412 {
13413 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13414 TYPE_USER_ALIGN (r) = 1;
13415 }
13416
13417 return r;
13418 }
13419
13420 case TYPENAME_TYPE:
13421 {
13422 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13423 in_decl, /*entering_scope=*/1);
13424 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13425 complain, in_decl);
13426
13427 if (ctx == error_mark_node || f == error_mark_node)
13428 return error_mark_node;
13429
13430 if (!MAYBE_CLASS_TYPE_P (ctx))
13431 {
13432 if (complain & tf_error)
13433 error ("%qT is not a class, struct, or union type", ctx);
13434 return error_mark_node;
13435 }
13436 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13437 {
13438 /* Normally, make_typename_type does not require that the CTX
13439 have complete type in order to allow things like:
13440
13441 template <class T> struct S { typename S<T>::X Y; };
13442
13443 But, such constructs have already been resolved by this
13444 point, so here CTX really should have complete type, unless
13445 it's a partial instantiation. */
13446 ctx = complete_type (ctx);
13447 if (!COMPLETE_TYPE_P (ctx))
13448 {
13449 if (complain & tf_error)
13450 cxx_incomplete_type_error (NULL_TREE, ctx);
13451 return error_mark_node;
13452 }
13453 }
13454
13455 f = make_typename_type (ctx, f, typename_type,
13456 complain | tf_keep_type_decl);
13457 if (f == error_mark_node)
13458 return f;
13459 if (TREE_CODE (f) == TYPE_DECL)
13460 {
13461 complain |= tf_ignore_bad_quals;
13462 f = TREE_TYPE (f);
13463 }
13464
13465 if (TREE_CODE (f) != TYPENAME_TYPE)
13466 {
13467 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13468 {
13469 if (complain & tf_error)
13470 error ("%qT resolves to %qT, which is not an enumeration type",
13471 t, f);
13472 else
13473 return error_mark_node;
13474 }
13475 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13476 {
13477 if (complain & tf_error)
13478 error ("%qT resolves to %qT, which is is not a class type",
13479 t, f);
13480 else
13481 return error_mark_node;
13482 }
13483 }
13484
13485 return cp_build_qualified_type_real
13486 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13487 }
13488
13489 case UNBOUND_CLASS_TEMPLATE:
13490 {
13491 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13492 in_decl, /*entering_scope=*/1);
13493 tree name = TYPE_IDENTIFIER (t);
13494 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13495
13496 if (ctx == error_mark_node || name == error_mark_node)
13497 return error_mark_node;
13498
13499 if (parm_list)
13500 parm_list = tsubst_template_parms (parm_list, args, complain);
13501 return make_unbound_class_template (ctx, name, parm_list, complain);
13502 }
13503
13504 case TYPEOF_TYPE:
13505 {
13506 tree type;
13507
13508 ++cp_unevaluated_operand;
13509 ++c_inhibit_evaluation_warnings;
13510
13511 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13512 complain, in_decl,
13513 /*integral_constant_expression_p=*/false);
13514
13515 --cp_unevaluated_operand;
13516 --c_inhibit_evaluation_warnings;
13517
13518 type = finish_typeof (type);
13519 return cp_build_qualified_type_real (type,
13520 cp_type_quals (t)
13521 | cp_type_quals (type),
13522 complain);
13523 }
13524
13525 case DECLTYPE_TYPE:
13526 {
13527 tree type;
13528
13529 ++cp_unevaluated_operand;
13530 ++c_inhibit_evaluation_warnings;
13531
13532 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13533 complain|tf_decltype, in_decl,
13534 /*function_p*/false,
13535 /*integral_constant_expression*/false);
13536
13537 --cp_unevaluated_operand;
13538 --c_inhibit_evaluation_warnings;
13539
13540 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13541 type = lambda_capture_field_type (type,
13542 DECLTYPE_FOR_INIT_CAPTURE (t));
13543 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13544 type = lambda_proxy_type (type);
13545 else
13546 {
13547 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13548 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13549 && EXPR_P (type))
13550 /* In a template ~id could be either a complement expression
13551 or an unqualified-id naming a destructor; if instantiating
13552 it produces an expression, it's not an id-expression or
13553 member access. */
13554 id = false;
13555 type = finish_decltype_type (type, id, complain);
13556 }
13557 return cp_build_qualified_type_real (type,
13558 cp_type_quals (t)
13559 | cp_type_quals (type),
13560 complain | tf_ignore_bad_quals);
13561 }
13562
13563 case UNDERLYING_TYPE:
13564 {
13565 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13566 complain, in_decl);
13567 return finish_underlying_type (type);
13568 }
13569
13570 case TYPE_ARGUMENT_PACK:
13571 case NONTYPE_ARGUMENT_PACK:
13572 {
13573 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13574 tree packed_out =
13575 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13576 args,
13577 complain,
13578 in_decl);
13579 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13580
13581 /* For template nontype argument packs, also substitute into
13582 the type. */
13583 if (code == NONTYPE_ARGUMENT_PACK)
13584 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13585
13586 return r;
13587 }
13588 break;
13589
13590 case VOID_CST:
13591 case INTEGER_CST:
13592 case REAL_CST:
13593 case STRING_CST:
13594 case PLUS_EXPR:
13595 case MINUS_EXPR:
13596 case NEGATE_EXPR:
13597 case NOP_EXPR:
13598 case INDIRECT_REF:
13599 case ADDR_EXPR:
13600 case CALL_EXPR:
13601 case ARRAY_REF:
13602 case SCOPE_REF:
13603 /* We should use one of the expression tsubsts for these codes. */
13604 gcc_unreachable ();
13605
13606 default:
13607 sorry ("use of %qs in template", get_tree_code_name (code));
13608 return error_mark_node;
13609 }
13610 }
13611
13612 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13613 type of the expression on the left-hand side of the "." or "->"
13614 operator. */
13615
13616 static tree
13617 tsubst_baselink (tree baselink, tree object_type,
13618 tree args, tsubst_flags_t complain, tree in_decl)
13619 {
13620 tree name;
13621 tree qualifying_scope;
13622 tree fns;
13623 tree optype;
13624 tree template_args = 0;
13625 bool template_id_p = false;
13626 bool qualified = BASELINK_QUALIFIED_P (baselink);
13627
13628 /* A baselink indicates a function from a base class. Both the
13629 BASELINK_ACCESS_BINFO and the base class referenced may
13630 indicate bases of the template class, rather than the
13631 instantiated class. In addition, lookups that were not
13632 ambiguous before may be ambiguous now. Therefore, we perform
13633 the lookup again. */
13634 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13635 qualifying_scope = tsubst (qualifying_scope, args,
13636 complain, in_decl);
13637 fns = BASELINK_FUNCTIONS (baselink);
13638 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13639 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13640 {
13641 template_id_p = true;
13642 template_args = TREE_OPERAND (fns, 1);
13643 fns = TREE_OPERAND (fns, 0);
13644 if (template_args)
13645 template_args = tsubst_template_args (template_args, args,
13646 complain, in_decl);
13647 }
13648 name = DECL_NAME (get_first_fn (fns));
13649 if (IDENTIFIER_TYPENAME_P (name))
13650 name = mangle_conv_op_name_for_type (optype);
13651 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13652 if (!baselink)
13653 {
13654 if (constructor_name_p (name, qualifying_scope))
13655 {
13656 if (complain & tf_error)
13657 error ("cannot call constructor %<%T::%D%> directly",
13658 qualifying_scope, name);
13659 }
13660 return error_mark_node;
13661 }
13662
13663 /* If lookup found a single function, mark it as used at this
13664 point. (If it lookup found multiple functions the one selected
13665 later by overload resolution will be marked as used at that
13666 point.) */
13667 if (BASELINK_P (baselink))
13668 fns = BASELINK_FUNCTIONS (baselink);
13669 if (!template_id_p && !really_overloaded_fn (fns)
13670 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13671 return error_mark_node;
13672
13673 /* Add back the template arguments, if present. */
13674 if (BASELINK_P (baselink) && template_id_p)
13675 BASELINK_FUNCTIONS (baselink)
13676 = build_nt (TEMPLATE_ID_EXPR,
13677 BASELINK_FUNCTIONS (baselink),
13678 template_args);
13679 /* Update the conversion operator type. */
13680 BASELINK_OPTYPE (baselink) = optype;
13681
13682 if (!object_type)
13683 object_type = current_class_type;
13684
13685 if (qualified)
13686 baselink = adjust_result_of_qualified_name_lookup (baselink,
13687 qualifying_scope,
13688 object_type);
13689 return baselink;
13690 }
13691
13692 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13693 true if the qualified-id will be a postfix-expression in-and-of
13694 itself; false if more of the postfix-expression follows the
13695 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13696 of "&". */
13697
13698 static tree
13699 tsubst_qualified_id (tree qualified_id, tree args,
13700 tsubst_flags_t complain, tree in_decl,
13701 bool done, bool address_p)
13702 {
13703 tree expr;
13704 tree scope;
13705 tree name;
13706 bool is_template;
13707 tree template_args;
13708 location_t loc = UNKNOWN_LOCATION;
13709
13710 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13711
13712 /* Figure out what name to look up. */
13713 name = TREE_OPERAND (qualified_id, 1);
13714 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13715 {
13716 is_template = true;
13717 loc = EXPR_LOCATION (name);
13718 template_args = TREE_OPERAND (name, 1);
13719 if (template_args)
13720 template_args = tsubst_template_args (template_args, args,
13721 complain, in_decl);
13722 name = TREE_OPERAND (name, 0);
13723 }
13724 else
13725 {
13726 is_template = false;
13727 template_args = NULL_TREE;
13728 }
13729
13730 /* Substitute into the qualifying scope. When there are no ARGS, we
13731 are just trying to simplify a non-dependent expression. In that
13732 case the qualifying scope may be dependent, and, in any case,
13733 substituting will not help. */
13734 scope = TREE_OPERAND (qualified_id, 0);
13735 if (args)
13736 {
13737 scope = tsubst (scope, args, complain, in_decl);
13738 expr = tsubst_copy (name, args, complain, in_decl);
13739 }
13740 else
13741 expr = name;
13742
13743 if (dependent_scope_p (scope))
13744 {
13745 if (is_template)
13746 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13747 return build_qualified_name (NULL_TREE, scope, expr,
13748 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13749 }
13750
13751 if (!BASELINK_P (name) && !DECL_P (expr))
13752 {
13753 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13754 {
13755 /* A BIT_NOT_EXPR is used to represent a destructor. */
13756 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13757 {
13758 error ("qualifying type %qT does not match destructor name ~%qT",
13759 scope, TREE_OPERAND (expr, 0));
13760 expr = error_mark_node;
13761 }
13762 else
13763 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13764 /*is_type_p=*/0, false);
13765 }
13766 else
13767 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13768 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13769 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13770 {
13771 if (complain & tf_error)
13772 {
13773 error ("dependent-name %qE is parsed as a non-type, but "
13774 "instantiation yields a type", qualified_id);
13775 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13776 }
13777 return error_mark_node;
13778 }
13779 }
13780
13781 if (DECL_P (expr))
13782 {
13783 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13784 scope);
13785 /* Remember that there was a reference to this entity. */
13786 if (!mark_used (expr, complain) && !(complain & tf_error))
13787 return error_mark_node;
13788 }
13789
13790 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13791 {
13792 if (complain & tf_error)
13793 qualified_name_lookup_error (scope,
13794 TREE_OPERAND (qualified_id, 1),
13795 expr, input_location);
13796 return error_mark_node;
13797 }
13798
13799 if (is_template)
13800 {
13801 if (variable_template_p (expr))
13802 expr = lookup_and_finish_template_variable (expr, template_args,
13803 complain);
13804 else
13805 expr = lookup_template_function (expr, template_args);
13806 }
13807
13808 if (expr == error_mark_node && complain & tf_error)
13809 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13810 expr, input_location);
13811 else if (TYPE_P (scope))
13812 {
13813 expr = (adjust_result_of_qualified_name_lookup
13814 (expr, scope, current_nonlambda_class_type ()));
13815 expr = (finish_qualified_id_expr
13816 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13817 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13818 /*template_arg_p=*/false, complain));
13819 }
13820
13821 /* Expressions do not generally have reference type. */
13822 if (TREE_CODE (expr) != SCOPE_REF
13823 /* However, if we're about to form a pointer-to-member, we just
13824 want the referenced member referenced. */
13825 && TREE_CODE (expr) != OFFSET_REF)
13826 expr = convert_from_reference (expr);
13827
13828 return expr;
13829 }
13830
13831 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13832 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13833 for tsubst. */
13834
13835 static tree
13836 tsubst_init (tree init, tree decl, tree args,
13837 tsubst_flags_t complain, tree in_decl)
13838 {
13839 if (!init)
13840 return NULL_TREE;
13841
13842 init = tsubst_expr (init, args, complain, in_decl, false);
13843
13844 if (!init)
13845 {
13846 /* If we had an initializer but it
13847 instantiated to nothing,
13848 value-initialize the object. This will
13849 only occur when the initializer was a
13850 pack expansion where the parameter packs
13851 used in that expansion were of length
13852 zero. */
13853 init = build_value_init (TREE_TYPE (decl),
13854 complain);
13855 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13856 init = get_target_expr_sfinae (init, complain);
13857 }
13858
13859 return init;
13860 }
13861
13862 /* Like tsubst, but deals with expressions. This function just replaces
13863 template parms; to finish processing the resultant expression, use
13864 tsubst_copy_and_build or tsubst_expr. */
13865
13866 static tree
13867 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13868 {
13869 enum tree_code code;
13870 tree r;
13871
13872 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13873 return t;
13874
13875 code = TREE_CODE (t);
13876
13877 switch (code)
13878 {
13879 case PARM_DECL:
13880 r = retrieve_local_specialization (t);
13881
13882 if (r == NULL_TREE)
13883 {
13884 /* We get here for a use of 'this' in an NSDMI. */
13885 if (DECL_NAME (t) == this_identifier
13886 && current_function_decl
13887 && DECL_CONSTRUCTOR_P (current_function_decl))
13888 return current_class_ptr;
13889
13890 /* This can happen for a parameter name used later in a function
13891 declaration (such as in a late-specified return type). Just
13892 make a dummy decl, since it's only used for its type. */
13893 gcc_assert (cp_unevaluated_operand != 0);
13894 r = tsubst_decl (t, args, complain);
13895 /* Give it the template pattern as its context; its true context
13896 hasn't been instantiated yet and this is good enough for
13897 mangling. */
13898 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13899 }
13900
13901 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13902 r = ARGUMENT_PACK_SELECT_ARG (r);
13903 if (!mark_used (r, complain) && !(complain & tf_error))
13904 return error_mark_node;
13905 return r;
13906
13907 case CONST_DECL:
13908 {
13909 tree enum_type;
13910 tree v;
13911
13912 if (DECL_TEMPLATE_PARM_P (t))
13913 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13914 /* There is no need to substitute into namespace-scope
13915 enumerators. */
13916 if (DECL_NAMESPACE_SCOPE_P (t))
13917 return t;
13918 /* If ARGS is NULL, then T is known to be non-dependent. */
13919 if (args == NULL_TREE)
13920 return scalar_constant_value (t);
13921
13922 /* Unfortunately, we cannot just call lookup_name here.
13923 Consider:
13924
13925 template <int I> int f() {
13926 enum E { a = I };
13927 struct S { void g() { E e = a; } };
13928 };
13929
13930 When we instantiate f<7>::S::g(), say, lookup_name is not
13931 clever enough to find f<7>::a. */
13932 enum_type
13933 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13934 /*entering_scope=*/0);
13935
13936 for (v = TYPE_VALUES (enum_type);
13937 v != NULL_TREE;
13938 v = TREE_CHAIN (v))
13939 if (TREE_PURPOSE (v) == DECL_NAME (t))
13940 return TREE_VALUE (v);
13941
13942 /* We didn't find the name. That should never happen; if
13943 name-lookup found it during preliminary parsing, we
13944 should find it again here during instantiation. */
13945 gcc_unreachable ();
13946 }
13947 return t;
13948
13949 case FIELD_DECL:
13950 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13951 {
13952 /* Check for a local specialization set up by
13953 tsubst_pack_expansion. */
13954 if (tree r = retrieve_local_specialization (t))
13955 {
13956 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13957 r = ARGUMENT_PACK_SELECT_ARG (r);
13958 return r;
13959 }
13960
13961 /* When retrieving a capture pack from a generic lambda, remove the
13962 lambda call op's own template argument list from ARGS. Only the
13963 template arguments active for the closure type should be used to
13964 retrieve the pack specialization. */
13965 if (LAMBDA_FUNCTION_P (current_function_decl)
13966 && (template_class_depth (DECL_CONTEXT (t))
13967 != TMPL_ARGS_DEPTH (args)))
13968 args = strip_innermost_template_args (args, 1);
13969
13970 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13971 tsubst_decl put in the hash table. */
13972 return retrieve_specialization (t, args, 0);
13973 }
13974
13975 if (DECL_CONTEXT (t))
13976 {
13977 tree ctx;
13978
13979 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13980 /*entering_scope=*/1);
13981 if (ctx != DECL_CONTEXT (t))
13982 {
13983 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13984 if (!r)
13985 {
13986 if (complain & tf_error)
13987 error ("using invalid field %qD", t);
13988 return error_mark_node;
13989 }
13990 return r;
13991 }
13992 }
13993
13994 return t;
13995
13996 case VAR_DECL:
13997 case FUNCTION_DECL:
13998 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13999 r = tsubst (t, args, complain, in_decl);
14000 else if (local_variable_p (t))
14001 {
14002 r = retrieve_local_specialization (t);
14003 if (r == NULL_TREE)
14004 {
14005 /* First try name lookup to find the instantiation. */
14006 r = lookup_name (DECL_NAME (t));
14007 if (r)
14008 {
14009 /* Make sure that the one we found is the one we want. */
14010 tree ctx = DECL_CONTEXT (t);
14011 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
14012 ctx = tsubst (ctx, args, complain, in_decl);
14013 if (ctx != DECL_CONTEXT (r))
14014 r = NULL_TREE;
14015 }
14016
14017 if (r)
14018 /* OK */;
14019 else
14020 {
14021 /* This can happen for a variable used in a
14022 late-specified return type of a local lambda, or for a
14023 local static or constant. Building a new VAR_DECL
14024 should be OK in all those cases. */
14025 r = tsubst_decl (t, args, complain);
14026 if (decl_maybe_constant_var_p (r))
14027 {
14028 /* We can't call cp_finish_decl, so handle the
14029 initializer by hand. */
14030 tree init = tsubst_init (DECL_INITIAL (t), r, args,
14031 complain, in_decl);
14032 if (!processing_template_decl)
14033 init = maybe_constant_init (init);
14034 if (processing_template_decl
14035 ? potential_constant_expression (init)
14036 : reduced_constant_expression_p (init))
14037 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
14038 = TREE_CONSTANT (r) = true;
14039 DECL_INITIAL (r) = init;
14040 }
14041 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
14042 || decl_constant_var_p (r)
14043 || errorcount || sorrycount);
14044 if (!processing_template_decl)
14045 {
14046 if (TREE_STATIC (r))
14047 rest_of_decl_compilation (r, toplevel_bindings_p (),
14048 at_eof);
14049 else
14050 r = process_outer_var_ref (r, complain);
14051 }
14052 }
14053 /* Remember this for subsequent uses. */
14054 if (local_specializations)
14055 register_local_specialization (r, t);
14056 }
14057 }
14058 else
14059 r = t;
14060 if (!mark_used (r, complain) && !(complain & tf_error))
14061 return error_mark_node;
14062 return r;
14063
14064 case NAMESPACE_DECL:
14065 return t;
14066
14067 case OVERLOAD:
14068 /* An OVERLOAD will always be a non-dependent overload set; an
14069 overload set from function scope will just be represented with an
14070 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14071 gcc_assert (!uses_template_parms (t));
14072 return t;
14073
14074 case BASELINK:
14075 return tsubst_baselink (t, current_nonlambda_class_type (),
14076 args, complain, in_decl);
14077
14078 case TEMPLATE_DECL:
14079 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14080 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14081 args, complain, in_decl);
14082 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14083 return tsubst (t, args, complain, in_decl);
14084 else if (DECL_CLASS_SCOPE_P (t)
14085 && uses_template_parms (DECL_CONTEXT (t)))
14086 {
14087 /* Template template argument like the following example need
14088 special treatment:
14089
14090 template <template <class> class TT> struct C {};
14091 template <class T> struct D {
14092 template <class U> struct E {};
14093 C<E> c; // #1
14094 };
14095 D<int> d; // #2
14096
14097 We are processing the template argument `E' in #1 for
14098 the template instantiation #2. Originally, `E' is a
14099 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14100 have to substitute this with one having context `D<int>'. */
14101
14102 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14103 return lookup_field (context, DECL_NAME(t), 0, false);
14104 }
14105 else
14106 /* Ordinary template template argument. */
14107 return t;
14108
14109 case CAST_EXPR:
14110 case REINTERPRET_CAST_EXPR:
14111 case CONST_CAST_EXPR:
14112 case STATIC_CAST_EXPR:
14113 case DYNAMIC_CAST_EXPR:
14114 case IMPLICIT_CONV_EXPR:
14115 case CONVERT_EXPR:
14116 case NOP_EXPR:
14117 {
14118 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14119 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14120 return build1 (code, type, op0);
14121 }
14122
14123 case SIZEOF_EXPR:
14124 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
14125 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
14126 {
14127 tree expanded, op = TREE_OPERAND (t, 0);
14128 int len = 0;
14129
14130 if (SIZEOF_EXPR_TYPE_P (t))
14131 op = TREE_TYPE (op);
14132
14133 ++cp_unevaluated_operand;
14134 ++c_inhibit_evaluation_warnings;
14135 /* We only want to compute the number of arguments. */
14136 if (PACK_EXPANSION_P (op))
14137 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14138 else
14139 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
14140 args, complain, in_decl);
14141 --cp_unevaluated_operand;
14142 --c_inhibit_evaluation_warnings;
14143
14144 if (TREE_CODE (expanded) == TREE_VEC)
14145 {
14146 len = TREE_VEC_LENGTH (expanded);
14147 /* Set TREE_USED for the benefit of -Wunused. */
14148 for (int i = 0; i < len; i++)
14149 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14150 }
14151
14152 if (expanded == error_mark_node)
14153 return error_mark_node;
14154 else if (PACK_EXPANSION_P (expanded)
14155 || (TREE_CODE (expanded) == TREE_VEC
14156 && pack_expansion_args_count (expanded)))
14157
14158 {
14159 if (PACK_EXPANSION_P (expanded))
14160 /* OK. */;
14161 else if (TREE_VEC_LENGTH (expanded) == 1)
14162 expanded = TREE_VEC_ELT (expanded, 0);
14163 else
14164 expanded = make_argument_pack (expanded);
14165
14166 if (TYPE_P (expanded))
14167 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14168 complain & tf_error);
14169 else
14170 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14171 complain & tf_error);
14172 }
14173 else
14174 return build_int_cst (size_type_node, len);
14175 }
14176 if (SIZEOF_EXPR_TYPE_P (t))
14177 {
14178 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14179 args, complain, in_decl);
14180 r = build1 (NOP_EXPR, r, error_mark_node);
14181 r = build1 (SIZEOF_EXPR,
14182 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14183 SIZEOF_EXPR_TYPE_P (r) = 1;
14184 return r;
14185 }
14186 /* Fall through */
14187
14188 case INDIRECT_REF:
14189 case NEGATE_EXPR:
14190 case TRUTH_NOT_EXPR:
14191 case BIT_NOT_EXPR:
14192 case ADDR_EXPR:
14193 case UNARY_PLUS_EXPR: /* Unary + */
14194 case ALIGNOF_EXPR:
14195 case AT_ENCODE_EXPR:
14196 case ARROW_EXPR:
14197 case THROW_EXPR:
14198 case TYPEID_EXPR:
14199 case REALPART_EXPR:
14200 case IMAGPART_EXPR:
14201 case PAREN_EXPR:
14202 {
14203 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14204 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14205 return build1 (code, type, op0);
14206 }
14207
14208 case COMPONENT_REF:
14209 {
14210 tree object;
14211 tree name;
14212
14213 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14214 name = TREE_OPERAND (t, 1);
14215 if (TREE_CODE (name) == BIT_NOT_EXPR)
14216 {
14217 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14218 complain, in_decl);
14219 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14220 }
14221 else if (TREE_CODE (name) == SCOPE_REF
14222 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14223 {
14224 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14225 complain, in_decl);
14226 name = TREE_OPERAND (name, 1);
14227 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14228 complain, in_decl);
14229 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14230 name = build_qualified_name (/*type=*/NULL_TREE,
14231 base, name,
14232 /*template_p=*/false);
14233 }
14234 else if (BASELINK_P (name))
14235 name = tsubst_baselink (name,
14236 non_reference (TREE_TYPE (object)),
14237 args, complain,
14238 in_decl);
14239 else
14240 name = tsubst_copy (name, args, complain, in_decl);
14241 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14242 }
14243
14244 case PLUS_EXPR:
14245 case MINUS_EXPR:
14246 case MULT_EXPR:
14247 case TRUNC_DIV_EXPR:
14248 case CEIL_DIV_EXPR:
14249 case FLOOR_DIV_EXPR:
14250 case ROUND_DIV_EXPR:
14251 case EXACT_DIV_EXPR:
14252 case BIT_AND_EXPR:
14253 case BIT_IOR_EXPR:
14254 case BIT_XOR_EXPR:
14255 case TRUNC_MOD_EXPR:
14256 case FLOOR_MOD_EXPR:
14257 case TRUTH_ANDIF_EXPR:
14258 case TRUTH_ORIF_EXPR:
14259 case TRUTH_AND_EXPR:
14260 case TRUTH_OR_EXPR:
14261 case RSHIFT_EXPR:
14262 case LSHIFT_EXPR:
14263 case RROTATE_EXPR:
14264 case LROTATE_EXPR:
14265 case EQ_EXPR:
14266 case NE_EXPR:
14267 case MAX_EXPR:
14268 case MIN_EXPR:
14269 case LE_EXPR:
14270 case GE_EXPR:
14271 case LT_EXPR:
14272 case GT_EXPR:
14273 case COMPOUND_EXPR:
14274 case DOTSTAR_EXPR:
14275 case MEMBER_REF:
14276 case PREDECREMENT_EXPR:
14277 case PREINCREMENT_EXPR:
14278 case POSTDECREMENT_EXPR:
14279 case POSTINCREMENT_EXPR:
14280 {
14281 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14282 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14283 return build_nt (code, op0, op1);
14284 }
14285
14286 case SCOPE_REF:
14287 {
14288 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14289 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14290 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14291 QUALIFIED_NAME_IS_TEMPLATE (t));
14292 }
14293
14294 case ARRAY_REF:
14295 {
14296 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14297 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14298 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14299 }
14300
14301 case CALL_EXPR:
14302 {
14303 int n = VL_EXP_OPERAND_LENGTH (t);
14304 tree result = build_vl_exp (CALL_EXPR, n);
14305 int i;
14306 for (i = 0; i < n; i++)
14307 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14308 complain, in_decl);
14309 return result;
14310 }
14311
14312 case COND_EXPR:
14313 case MODOP_EXPR:
14314 case PSEUDO_DTOR_EXPR:
14315 case VEC_PERM_EXPR:
14316 {
14317 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14318 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14319 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14320 r = build_nt (code, op0, op1, op2);
14321 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14322 return r;
14323 }
14324
14325 case NEW_EXPR:
14326 {
14327 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14328 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14329 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14330 r = build_nt (code, op0, op1, op2);
14331 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14332 return r;
14333 }
14334
14335 case DELETE_EXPR:
14336 {
14337 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14338 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14339 r = build_nt (code, op0, op1);
14340 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14341 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14342 return r;
14343 }
14344
14345 case TEMPLATE_ID_EXPR:
14346 {
14347 /* Substituted template arguments */
14348 tree fn = TREE_OPERAND (t, 0);
14349 tree targs = TREE_OPERAND (t, 1);
14350
14351 fn = tsubst_copy (fn, args, complain, in_decl);
14352 if (targs)
14353 targs = tsubst_template_args (targs, args, complain, in_decl);
14354
14355 return lookup_template_function (fn, targs);
14356 }
14357
14358 case TREE_LIST:
14359 {
14360 tree purpose, value, chain;
14361
14362 if (t == void_list_node)
14363 return t;
14364
14365 purpose = TREE_PURPOSE (t);
14366 if (purpose)
14367 purpose = tsubst_copy (purpose, args, complain, in_decl);
14368 value = TREE_VALUE (t);
14369 if (value)
14370 value = tsubst_copy (value, args, complain, in_decl);
14371 chain = TREE_CHAIN (t);
14372 if (chain && chain != void_type_node)
14373 chain = tsubst_copy (chain, args, complain, in_decl);
14374 if (purpose == TREE_PURPOSE (t)
14375 && value == TREE_VALUE (t)
14376 && chain == TREE_CHAIN (t))
14377 return t;
14378 return tree_cons (purpose, value, chain);
14379 }
14380
14381 case RECORD_TYPE:
14382 case UNION_TYPE:
14383 case ENUMERAL_TYPE:
14384 case INTEGER_TYPE:
14385 case TEMPLATE_TYPE_PARM:
14386 case TEMPLATE_TEMPLATE_PARM:
14387 case BOUND_TEMPLATE_TEMPLATE_PARM:
14388 case TEMPLATE_PARM_INDEX:
14389 case POINTER_TYPE:
14390 case REFERENCE_TYPE:
14391 case OFFSET_TYPE:
14392 case FUNCTION_TYPE:
14393 case METHOD_TYPE:
14394 case ARRAY_TYPE:
14395 case TYPENAME_TYPE:
14396 case UNBOUND_CLASS_TEMPLATE:
14397 case TYPEOF_TYPE:
14398 case DECLTYPE_TYPE:
14399 case TYPE_DECL:
14400 return tsubst (t, args, complain, in_decl);
14401
14402 case USING_DECL:
14403 t = DECL_NAME (t);
14404 /* Fall through. */
14405 case IDENTIFIER_NODE:
14406 if (IDENTIFIER_TYPENAME_P (t))
14407 {
14408 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14409 return mangle_conv_op_name_for_type (new_type);
14410 }
14411 else
14412 return t;
14413
14414 case CONSTRUCTOR:
14415 /* This is handled by tsubst_copy_and_build. */
14416 gcc_unreachable ();
14417
14418 case VA_ARG_EXPR:
14419 {
14420 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14421 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14422 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14423 }
14424
14425 case CLEANUP_POINT_EXPR:
14426 /* We shouldn't have built any of these during initial template
14427 generation. Instead, they should be built during instantiation
14428 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14429 gcc_unreachable ();
14430
14431 case OFFSET_REF:
14432 {
14433 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14434 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14435 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14436 r = build2 (code, type, op0, op1);
14437 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14438 if (!mark_used (TREE_OPERAND (r, 1), complain)
14439 && !(complain & tf_error))
14440 return error_mark_node;
14441 return r;
14442 }
14443
14444 case EXPR_PACK_EXPANSION:
14445 error ("invalid use of pack expansion expression");
14446 return error_mark_node;
14447
14448 case NONTYPE_ARGUMENT_PACK:
14449 error ("use %<...%> to expand argument pack");
14450 return error_mark_node;
14451
14452 case VOID_CST:
14453 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14454 return t;
14455
14456 case INTEGER_CST:
14457 case REAL_CST:
14458 case STRING_CST:
14459 case COMPLEX_CST:
14460 {
14461 /* Instantiate any typedefs in the type. */
14462 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14463 r = fold_convert (type, t);
14464 gcc_assert (TREE_CODE (r) == code);
14465 return r;
14466 }
14467
14468 case PTRMEM_CST:
14469 /* These can sometimes show up in a partial instantiation, but never
14470 involve template parms. */
14471 gcc_assert (!uses_template_parms (t));
14472 return t;
14473
14474 case UNARY_LEFT_FOLD_EXPR:
14475 return tsubst_unary_left_fold (t, args, complain, in_decl);
14476 case UNARY_RIGHT_FOLD_EXPR:
14477 return tsubst_unary_right_fold (t, args, complain, in_decl);
14478 case BINARY_LEFT_FOLD_EXPR:
14479 return tsubst_binary_left_fold (t, args, complain, in_decl);
14480 case BINARY_RIGHT_FOLD_EXPR:
14481 return tsubst_binary_right_fold (t, args, complain, in_decl);
14482
14483 default:
14484 /* We shouldn't get here, but keep going if !flag_checking. */
14485 if (flag_checking)
14486 gcc_unreachable ();
14487 return t;
14488 }
14489 }
14490
14491 /* Helper function for tsubst_omp_clauses, used for instantiation of
14492 OMP_CLAUSE_DECL of clauses. */
14493
14494 static tree
14495 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14496 tree in_decl)
14497 {
14498 if (decl == NULL_TREE)
14499 return NULL_TREE;
14500
14501 /* Handle an OpenMP array section represented as a TREE_LIST (or
14502 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14503 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14504 TREE_LIST. We can handle it exactly the same as an array section
14505 (purpose, value, and a chain), even though the nomenclature
14506 (low_bound, length, etc) is different. */
14507 if (TREE_CODE (decl) == TREE_LIST)
14508 {
14509 tree low_bound
14510 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14511 /*integral_constant_expression_p=*/false);
14512 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14513 /*integral_constant_expression_p=*/false);
14514 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14515 in_decl);
14516 if (TREE_PURPOSE (decl) == low_bound
14517 && TREE_VALUE (decl) == length
14518 && TREE_CHAIN (decl) == chain)
14519 return decl;
14520 tree ret = tree_cons (low_bound, length, chain);
14521 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14522 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14523 return ret;
14524 }
14525 tree ret = tsubst_expr (decl, args, complain, in_decl,
14526 /*integral_constant_expression_p=*/false);
14527 /* Undo convert_from_reference tsubst_expr could have called. */
14528 if (decl
14529 && REFERENCE_REF_P (ret)
14530 && !REFERENCE_REF_P (decl))
14531 ret = TREE_OPERAND (ret, 0);
14532 return ret;
14533 }
14534
14535 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14536
14537 static tree
14538 tsubst_omp_clauses (tree clauses, bool declare_simd, bool allow_fields,
14539 tree args, tsubst_flags_t complain, tree in_decl)
14540 {
14541 tree new_clauses = NULL_TREE, nc, oc;
14542 tree linear_no_step = NULL_TREE;
14543
14544 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14545 {
14546 nc = copy_node (oc);
14547 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14548 new_clauses = nc;
14549
14550 switch (OMP_CLAUSE_CODE (nc))
14551 {
14552 case OMP_CLAUSE_LASTPRIVATE:
14553 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14554 {
14555 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14556 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14557 in_decl, /*integral_constant_expression_p=*/false);
14558 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14559 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14560 }
14561 /* FALLTHRU */
14562 case OMP_CLAUSE_PRIVATE:
14563 case OMP_CLAUSE_SHARED:
14564 case OMP_CLAUSE_FIRSTPRIVATE:
14565 case OMP_CLAUSE_COPYIN:
14566 case OMP_CLAUSE_COPYPRIVATE:
14567 case OMP_CLAUSE_UNIFORM:
14568 case OMP_CLAUSE_DEPEND:
14569 case OMP_CLAUSE_FROM:
14570 case OMP_CLAUSE_TO:
14571 case OMP_CLAUSE_MAP:
14572 case OMP_CLAUSE_USE_DEVICE_PTR:
14573 case OMP_CLAUSE_IS_DEVICE_PTR:
14574 OMP_CLAUSE_DECL (nc)
14575 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14576 in_decl);
14577 break;
14578 case OMP_CLAUSE_IF:
14579 case OMP_CLAUSE_NUM_THREADS:
14580 case OMP_CLAUSE_SCHEDULE:
14581 case OMP_CLAUSE_COLLAPSE:
14582 case OMP_CLAUSE_FINAL:
14583 case OMP_CLAUSE_DEVICE:
14584 case OMP_CLAUSE_DIST_SCHEDULE:
14585 case OMP_CLAUSE_NUM_TEAMS:
14586 case OMP_CLAUSE_THREAD_LIMIT:
14587 case OMP_CLAUSE_SAFELEN:
14588 case OMP_CLAUSE_SIMDLEN:
14589 case OMP_CLAUSE_NUM_TASKS:
14590 case OMP_CLAUSE_GRAINSIZE:
14591 case OMP_CLAUSE_PRIORITY:
14592 case OMP_CLAUSE_ORDERED:
14593 case OMP_CLAUSE_HINT:
14594 case OMP_CLAUSE_NUM_GANGS:
14595 case OMP_CLAUSE_NUM_WORKERS:
14596 case OMP_CLAUSE_VECTOR_LENGTH:
14597 case OMP_CLAUSE_WORKER:
14598 case OMP_CLAUSE_VECTOR:
14599 case OMP_CLAUSE_ASYNC:
14600 case OMP_CLAUSE_WAIT:
14601 OMP_CLAUSE_OPERAND (nc, 0)
14602 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14603 in_decl, /*integral_constant_expression_p=*/false);
14604 break;
14605 case OMP_CLAUSE_REDUCTION:
14606 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14607 {
14608 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14609 if (TREE_CODE (placeholder) == SCOPE_REF)
14610 {
14611 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14612 complain, in_decl);
14613 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14614 = build_qualified_name (NULL_TREE, scope,
14615 TREE_OPERAND (placeholder, 1),
14616 false);
14617 }
14618 else
14619 gcc_assert (identifier_p (placeholder));
14620 }
14621 OMP_CLAUSE_DECL (nc)
14622 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14623 in_decl);
14624 break;
14625 case OMP_CLAUSE_GANG:
14626 case OMP_CLAUSE_ALIGNED:
14627 OMP_CLAUSE_DECL (nc)
14628 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14629 in_decl);
14630 OMP_CLAUSE_OPERAND (nc, 1)
14631 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14632 in_decl, /*integral_constant_expression_p=*/false);
14633 break;
14634 case OMP_CLAUSE_LINEAR:
14635 OMP_CLAUSE_DECL (nc)
14636 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14637 in_decl);
14638 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14639 {
14640 gcc_assert (!linear_no_step);
14641 linear_no_step = nc;
14642 }
14643 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14644 OMP_CLAUSE_LINEAR_STEP (nc)
14645 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14646 complain, in_decl);
14647 else
14648 OMP_CLAUSE_LINEAR_STEP (nc)
14649 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14650 in_decl,
14651 /*integral_constant_expression_p=*/false);
14652 break;
14653 case OMP_CLAUSE_NOWAIT:
14654 case OMP_CLAUSE_DEFAULT:
14655 case OMP_CLAUSE_UNTIED:
14656 case OMP_CLAUSE_MERGEABLE:
14657 case OMP_CLAUSE_INBRANCH:
14658 case OMP_CLAUSE_NOTINBRANCH:
14659 case OMP_CLAUSE_PROC_BIND:
14660 case OMP_CLAUSE_FOR:
14661 case OMP_CLAUSE_PARALLEL:
14662 case OMP_CLAUSE_SECTIONS:
14663 case OMP_CLAUSE_TASKGROUP:
14664 case OMP_CLAUSE_NOGROUP:
14665 case OMP_CLAUSE_THREADS:
14666 case OMP_CLAUSE_SIMD:
14667 case OMP_CLAUSE_DEFAULTMAP:
14668 case OMP_CLAUSE_INDEPENDENT:
14669 case OMP_CLAUSE_AUTO:
14670 case OMP_CLAUSE_SEQ:
14671 break;
14672 case OMP_CLAUSE_TILE:
14673 {
14674 tree lnc, loc;
14675 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14676 loc = OMP_CLAUSE_TILE_LIST (oc);
14677 loc;
14678 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14679 {
14680 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14681 complain, in_decl, false);
14682 }
14683 }
14684 break;
14685 default:
14686 gcc_unreachable ();
14687 }
14688 if (allow_fields)
14689 switch (OMP_CLAUSE_CODE (nc))
14690 {
14691 case OMP_CLAUSE_SHARED:
14692 case OMP_CLAUSE_PRIVATE:
14693 case OMP_CLAUSE_FIRSTPRIVATE:
14694 case OMP_CLAUSE_LASTPRIVATE:
14695 case OMP_CLAUSE_COPYPRIVATE:
14696 case OMP_CLAUSE_LINEAR:
14697 case OMP_CLAUSE_REDUCTION:
14698 case OMP_CLAUSE_USE_DEVICE_PTR:
14699 case OMP_CLAUSE_IS_DEVICE_PTR:
14700 /* tsubst_expr on SCOPE_REF results in returning
14701 finish_non_static_data_member result. Undo that here. */
14702 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14703 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14704 == IDENTIFIER_NODE))
14705 {
14706 tree t = OMP_CLAUSE_DECL (nc);
14707 tree v = t;
14708 while (v)
14709 switch (TREE_CODE (v))
14710 {
14711 case COMPONENT_REF:
14712 case MEM_REF:
14713 case INDIRECT_REF:
14714 CASE_CONVERT:
14715 case POINTER_PLUS_EXPR:
14716 v = TREE_OPERAND (v, 0);
14717 continue;
14718 case PARM_DECL:
14719 if (DECL_CONTEXT (v) == current_function_decl
14720 && DECL_ARTIFICIAL (v)
14721 && DECL_NAME (v) == this_identifier)
14722 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14723 /* FALLTHRU */
14724 default:
14725 v = NULL_TREE;
14726 break;
14727 }
14728 }
14729 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14730 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14731 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14732 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14733 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14734 {
14735 tree decl = OMP_CLAUSE_DECL (nc);
14736 if (VAR_P (decl))
14737 {
14738 if (!DECL_LANG_SPECIFIC (decl))
14739 retrofit_lang_decl (decl);
14740 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14741 }
14742 }
14743 break;
14744 default:
14745 break;
14746 }
14747 }
14748
14749 new_clauses = nreverse (new_clauses);
14750 if (!declare_simd)
14751 {
14752 new_clauses = finish_omp_clauses (new_clauses, allow_fields);
14753 if (linear_no_step)
14754 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14755 if (nc == linear_no_step)
14756 {
14757 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14758 break;
14759 }
14760 }
14761 return new_clauses;
14762 }
14763
14764 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14765
14766 static tree
14767 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14768 tree in_decl)
14769 {
14770 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14771
14772 tree purpose, value, chain;
14773
14774 if (t == NULL)
14775 return t;
14776
14777 if (TREE_CODE (t) != TREE_LIST)
14778 return tsubst_copy_and_build (t, args, complain, in_decl,
14779 /*function_p=*/false,
14780 /*integral_constant_expression_p=*/false);
14781
14782 if (t == void_list_node)
14783 return t;
14784
14785 purpose = TREE_PURPOSE (t);
14786 if (purpose)
14787 purpose = RECUR (purpose);
14788 value = TREE_VALUE (t);
14789 if (value)
14790 {
14791 if (TREE_CODE (value) != LABEL_DECL)
14792 value = RECUR (value);
14793 else
14794 {
14795 value = lookup_label (DECL_NAME (value));
14796 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14797 TREE_USED (value) = 1;
14798 }
14799 }
14800 chain = TREE_CHAIN (t);
14801 if (chain && chain != void_type_node)
14802 chain = RECUR (chain);
14803 return tree_cons (purpose, value, chain);
14804 #undef RECUR
14805 }
14806
14807 /* Used to temporarily communicate the list of #pragma omp parallel
14808 clauses to #pragma omp for instantiation if they are combined
14809 together. */
14810
14811 static tree *omp_parallel_combined_clauses;
14812
14813 /* Substitute one OMP_FOR iterator. */
14814
14815 static void
14816 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14817 tree initv, tree condv, tree incrv, tree *clauses,
14818 tree args, tsubst_flags_t complain, tree in_decl,
14819 bool integral_constant_expression_p)
14820 {
14821 #define RECUR(NODE) \
14822 tsubst_expr ((NODE), args, complain, in_decl, \
14823 integral_constant_expression_p)
14824 tree decl, init, cond, incr;
14825
14826 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14827 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14828
14829 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14830 {
14831 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14832 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14833 }
14834
14835 decl = TREE_OPERAND (init, 0);
14836 init = TREE_OPERAND (init, 1);
14837 tree decl_expr = NULL_TREE;
14838 if (init && TREE_CODE (init) == DECL_EXPR)
14839 {
14840 /* We need to jump through some hoops to handle declarations in the
14841 for-init-statement, since we might need to handle auto deduction,
14842 but we need to keep control of initialization. */
14843 decl_expr = init;
14844 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14845 decl = tsubst_decl (decl, args, complain);
14846 }
14847 else
14848 {
14849 if (TREE_CODE (decl) == SCOPE_REF)
14850 {
14851 decl = RECUR (decl);
14852 if (TREE_CODE (decl) == COMPONENT_REF)
14853 {
14854 tree v = decl;
14855 while (v)
14856 switch (TREE_CODE (v))
14857 {
14858 case COMPONENT_REF:
14859 case MEM_REF:
14860 case INDIRECT_REF:
14861 CASE_CONVERT:
14862 case POINTER_PLUS_EXPR:
14863 v = TREE_OPERAND (v, 0);
14864 continue;
14865 case PARM_DECL:
14866 if (DECL_CONTEXT (v) == current_function_decl
14867 && DECL_ARTIFICIAL (v)
14868 && DECL_NAME (v) == this_identifier)
14869 {
14870 decl = TREE_OPERAND (decl, 1);
14871 decl = omp_privatize_field (decl, false);
14872 }
14873 /* FALLTHRU */
14874 default:
14875 v = NULL_TREE;
14876 break;
14877 }
14878 }
14879 }
14880 else
14881 decl = RECUR (decl);
14882 }
14883 init = RECUR (init);
14884
14885 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14886 if (auto_node && init)
14887 TREE_TYPE (decl)
14888 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14889
14890 gcc_assert (!type_dependent_expression_p (decl));
14891
14892 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14893 {
14894 if (decl_expr)
14895 {
14896 /* Declare the variable, but don't let that initialize it. */
14897 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14898 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14899 RECUR (decl_expr);
14900 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14901 }
14902
14903 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14904 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14905 if (TREE_CODE (incr) == MODIFY_EXPR)
14906 {
14907 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14908 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14909 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14910 NOP_EXPR, rhs, complain);
14911 }
14912 else
14913 incr = RECUR (incr);
14914 TREE_VEC_ELT (declv, i) = decl;
14915 TREE_VEC_ELT (initv, i) = init;
14916 TREE_VEC_ELT (condv, i) = cond;
14917 TREE_VEC_ELT (incrv, i) = incr;
14918 return;
14919 }
14920
14921 if (decl_expr)
14922 {
14923 /* Declare and initialize the variable. */
14924 RECUR (decl_expr);
14925 init = NULL_TREE;
14926 }
14927 else if (init)
14928 {
14929 tree *pc;
14930 int j;
14931 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14932 {
14933 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14934 {
14935 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14936 && OMP_CLAUSE_DECL (*pc) == decl)
14937 break;
14938 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14939 && OMP_CLAUSE_DECL (*pc) == decl)
14940 {
14941 if (j)
14942 break;
14943 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14944 tree c = *pc;
14945 *pc = OMP_CLAUSE_CHAIN (c);
14946 OMP_CLAUSE_CHAIN (c) = *clauses;
14947 *clauses = c;
14948 }
14949 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14950 && OMP_CLAUSE_DECL (*pc) == decl)
14951 {
14952 error ("iteration variable %qD should not be firstprivate",
14953 decl);
14954 *pc = OMP_CLAUSE_CHAIN (*pc);
14955 }
14956 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14957 && OMP_CLAUSE_DECL (*pc) == decl)
14958 {
14959 error ("iteration variable %qD should not be reduction",
14960 decl);
14961 *pc = OMP_CLAUSE_CHAIN (*pc);
14962 }
14963 else
14964 pc = &OMP_CLAUSE_CHAIN (*pc);
14965 }
14966 if (*pc)
14967 break;
14968 }
14969 if (*pc == NULL_TREE)
14970 {
14971 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14972 OMP_CLAUSE_DECL (c) = decl;
14973 c = finish_omp_clauses (c, true);
14974 if (c)
14975 {
14976 OMP_CLAUSE_CHAIN (c) = *clauses;
14977 *clauses = c;
14978 }
14979 }
14980 }
14981 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14982 if (COMPARISON_CLASS_P (cond))
14983 {
14984 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14985 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14986 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14987 }
14988 else
14989 cond = RECUR (cond);
14990 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14991 switch (TREE_CODE (incr))
14992 {
14993 case PREINCREMENT_EXPR:
14994 case PREDECREMENT_EXPR:
14995 case POSTINCREMENT_EXPR:
14996 case POSTDECREMENT_EXPR:
14997 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14998 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14999 break;
15000 case MODIFY_EXPR:
15001 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15002 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15003 {
15004 tree rhs = TREE_OPERAND (incr, 1);
15005 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15006 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15007 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15008 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15009 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15010 rhs0, rhs1));
15011 }
15012 else
15013 incr = RECUR (incr);
15014 break;
15015 case MODOP_EXPR:
15016 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15017 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15018 {
15019 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15020 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15021 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
15022 TREE_TYPE (decl), lhs,
15023 RECUR (TREE_OPERAND (incr, 2))));
15024 }
15025 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
15026 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
15027 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
15028 {
15029 tree rhs = TREE_OPERAND (incr, 2);
15030 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15031 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15032 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15033 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15034 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15035 rhs0, rhs1));
15036 }
15037 else
15038 incr = RECUR (incr);
15039 break;
15040 default:
15041 incr = RECUR (incr);
15042 break;
15043 }
15044
15045 TREE_VEC_ELT (declv, i) = decl;
15046 TREE_VEC_ELT (initv, i) = init;
15047 TREE_VEC_ELT (condv, i) = cond;
15048 TREE_VEC_ELT (incrv, i) = incr;
15049 #undef RECUR
15050 }
15051
15052 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15053 of OMP_TARGET's body. */
15054
15055 static tree
15056 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
15057 {
15058 *walk_subtrees = 0;
15059 switch (TREE_CODE (*tp))
15060 {
15061 case OMP_TEAMS:
15062 return *tp;
15063 case BIND_EXPR:
15064 case STATEMENT_LIST:
15065 *walk_subtrees = 1;
15066 break;
15067 default:
15068 break;
15069 }
15070 return NULL_TREE;
15071 }
15072
15073 /* Like tsubst_copy for expressions, etc. but also does semantic
15074 processing. */
15075
15076 tree
15077 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15078 bool integral_constant_expression_p)
15079 {
15080 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15081 #define RECUR(NODE) \
15082 tsubst_expr ((NODE), args, complain, in_decl, \
15083 integral_constant_expression_p)
15084
15085 tree stmt, tmp;
15086 tree r;
15087 location_t loc;
15088
15089 if (t == NULL_TREE || t == error_mark_node)
15090 return t;
15091
15092 loc = input_location;
15093 if (EXPR_HAS_LOCATION (t))
15094 input_location = EXPR_LOCATION (t);
15095 if (STATEMENT_CODE_P (TREE_CODE (t)))
15096 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15097
15098 switch (TREE_CODE (t))
15099 {
15100 case STATEMENT_LIST:
15101 {
15102 tree_stmt_iterator i;
15103 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15104 RECUR (tsi_stmt (i));
15105 break;
15106 }
15107
15108 case CTOR_INITIALIZER:
15109 finish_mem_initializers (tsubst_initializer_list
15110 (TREE_OPERAND (t, 0), args));
15111 break;
15112
15113 case RETURN_EXPR:
15114 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15115 break;
15116
15117 case EXPR_STMT:
15118 tmp = RECUR (EXPR_STMT_EXPR (t));
15119 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15120 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15121 else
15122 finish_expr_stmt (tmp);
15123 break;
15124
15125 case USING_STMT:
15126 do_using_directive (USING_STMT_NAMESPACE (t));
15127 break;
15128
15129 case DECL_EXPR:
15130 {
15131 tree decl, pattern_decl;
15132 tree init;
15133
15134 pattern_decl = decl = DECL_EXPR_DECL (t);
15135 if (TREE_CODE (decl) == LABEL_DECL)
15136 finish_label_decl (DECL_NAME (decl));
15137 else if (TREE_CODE (decl) == USING_DECL)
15138 {
15139 tree scope = USING_DECL_SCOPE (decl);
15140 tree name = DECL_NAME (decl);
15141 tree decl;
15142
15143 scope = tsubst (scope, args, complain, in_decl);
15144 decl = lookup_qualified_name (scope, name,
15145 /*is_type_p=*/false,
15146 /*complain=*/false);
15147 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15148 qualified_name_lookup_error (scope, name, decl, input_location);
15149 else
15150 do_local_using_decl (decl, scope, name);
15151 }
15152 else if (DECL_PACK_P (decl))
15153 {
15154 /* Don't build up decls for a variadic capture proxy, we'll
15155 instantiate the elements directly as needed. */
15156 break;
15157 }
15158 else
15159 {
15160 init = DECL_INITIAL (decl);
15161 decl = tsubst (decl, args, complain, in_decl);
15162 if (decl != error_mark_node)
15163 {
15164 /* By marking the declaration as instantiated, we avoid
15165 trying to instantiate it. Since instantiate_decl can't
15166 handle local variables, and since we've already done
15167 all that needs to be done, that's the right thing to
15168 do. */
15169 if (VAR_P (decl))
15170 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15171 if (VAR_P (decl)
15172 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15173 /* Anonymous aggregates are a special case. */
15174 finish_anon_union (decl);
15175 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15176 {
15177 DECL_CONTEXT (decl) = current_function_decl;
15178 if (DECL_NAME (decl) == this_identifier)
15179 {
15180 tree lam = DECL_CONTEXT (current_function_decl);
15181 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15182 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15183 }
15184 insert_capture_proxy (decl);
15185 }
15186 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15187 /* We already did a pushtag. */;
15188 else if (TREE_CODE (decl) == FUNCTION_DECL
15189 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15190 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15191 {
15192 DECL_CONTEXT (decl) = NULL_TREE;
15193 pushdecl (decl);
15194 DECL_CONTEXT (decl) = current_function_decl;
15195 cp_check_omp_declare_reduction (decl);
15196 }
15197 else
15198 {
15199 int const_init = false;
15200 maybe_push_decl (decl);
15201 if (VAR_P (decl)
15202 && DECL_PRETTY_FUNCTION_P (decl))
15203 {
15204 /* For __PRETTY_FUNCTION__ we have to adjust the
15205 initializer. */
15206 const char *const name
15207 = cxx_printable_name (current_function_decl, 2);
15208 init = cp_fname_init (name, &TREE_TYPE (decl));
15209 }
15210 else
15211 init = tsubst_init (init, decl, args, complain, in_decl);
15212
15213 if (VAR_P (decl))
15214 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15215 (pattern_decl));
15216 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15217 }
15218 }
15219 }
15220
15221 break;
15222 }
15223
15224 case FOR_STMT:
15225 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15226 RECUR (FOR_INIT_STMT (t));
15227 finish_for_init_stmt (stmt);
15228 tmp = RECUR (FOR_COND (t));
15229 finish_for_cond (tmp, stmt, false);
15230 tmp = RECUR (FOR_EXPR (t));
15231 finish_for_expr (tmp, stmt);
15232 RECUR (FOR_BODY (t));
15233 finish_for_stmt (stmt);
15234 break;
15235
15236 case RANGE_FOR_STMT:
15237 {
15238 tree decl, expr;
15239 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15240 decl = RANGE_FOR_DECL (t);
15241 decl = tsubst (decl, args, complain, in_decl);
15242 maybe_push_decl (decl);
15243 expr = RECUR (RANGE_FOR_EXPR (t));
15244 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15245 RECUR (RANGE_FOR_BODY (t));
15246 finish_for_stmt (stmt);
15247 }
15248 break;
15249
15250 case WHILE_STMT:
15251 stmt = begin_while_stmt ();
15252 tmp = RECUR (WHILE_COND (t));
15253 finish_while_stmt_cond (tmp, stmt, false);
15254 RECUR (WHILE_BODY (t));
15255 finish_while_stmt (stmt);
15256 break;
15257
15258 case DO_STMT:
15259 stmt = begin_do_stmt ();
15260 RECUR (DO_BODY (t));
15261 finish_do_body (stmt);
15262 tmp = RECUR (DO_COND (t));
15263 finish_do_stmt (tmp, stmt, false);
15264 break;
15265
15266 case IF_STMT:
15267 stmt = begin_if_stmt ();
15268 tmp = RECUR (IF_COND (t));
15269 finish_if_stmt_cond (tmp, stmt);
15270 RECUR (THEN_CLAUSE (t));
15271 finish_then_clause (stmt);
15272
15273 if (ELSE_CLAUSE (t))
15274 {
15275 begin_else_clause (stmt);
15276 RECUR (ELSE_CLAUSE (t));
15277 finish_else_clause (stmt);
15278 }
15279
15280 finish_if_stmt (stmt);
15281 break;
15282
15283 case BIND_EXPR:
15284 if (BIND_EXPR_BODY_BLOCK (t))
15285 stmt = begin_function_body ();
15286 else
15287 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15288 ? BCS_TRY_BLOCK : 0);
15289
15290 RECUR (BIND_EXPR_BODY (t));
15291
15292 if (BIND_EXPR_BODY_BLOCK (t))
15293 finish_function_body (stmt);
15294 else
15295 finish_compound_stmt (stmt);
15296 break;
15297
15298 case BREAK_STMT:
15299 finish_break_stmt ();
15300 break;
15301
15302 case CONTINUE_STMT:
15303 finish_continue_stmt ();
15304 break;
15305
15306 case SWITCH_STMT:
15307 stmt = begin_switch_stmt ();
15308 tmp = RECUR (SWITCH_STMT_COND (t));
15309 finish_switch_cond (tmp, stmt);
15310 RECUR (SWITCH_STMT_BODY (t));
15311 finish_switch_stmt (stmt);
15312 break;
15313
15314 case CASE_LABEL_EXPR:
15315 {
15316 tree low = RECUR (CASE_LOW (t));
15317 tree high = RECUR (CASE_HIGH (t));
15318 finish_case_label (EXPR_LOCATION (t), low, high);
15319 }
15320 break;
15321
15322 case LABEL_EXPR:
15323 {
15324 tree decl = LABEL_EXPR_LABEL (t);
15325 tree label;
15326
15327 label = finish_label_stmt (DECL_NAME (decl));
15328 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15329 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15330 }
15331 break;
15332
15333 case GOTO_EXPR:
15334 tmp = GOTO_DESTINATION (t);
15335 if (TREE_CODE (tmp) != LABEL_DECL)
15336 /* Computed goto's must be tsubst'd into. On the other hand,
15337 non-computed gotos must not be; the identifier in question
15338 will have no binding. */
15339 tmp = RECUR (tmp);
15340 else
15341 tmp = DECL_NAME (tmp);
15342 finish_goto_stmt (tmp);
15343 break;
15344
15345 case ASM_EXPR:
15346 {
15347 tree string = RECUR (ASM_STRING (t));
15348 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15349 complain, in_decl);
15350 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15351 complain, in_decl);
15352 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15353 complain, in_decl);
15354 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15355 complain, in_decl);
15356 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15357 clobbers, labels);
15358 tree asm_expr = tmp;
15359 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15360 asm_expr = TREE_OPERAND (asm_expr, 0);
15361 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15362 }
15363 break;
15364
15365 case TRY_BLOCK:
15366 if (CLEANUP_P (t))
15367 {
15368 stmt = begin_try_block ();
15369 RECUR (TRY_STMTS (t));
15370 finish_cleanup_try_block (stmt);
15371 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15372 }
15373 else
15374 {
15375 tree compound_stmt = NULL_TREE;
15376
15377 if (FN_TRY_BLOCK_P (t))
15378 stmt = begin_function_try_block (&compound_stmt);
15379 else
15380 stmt = begin_try_block ();
15381
15382 RECUR (TRY_STMTS (t));
15383
15384 if (FN_TRY_BLOCK_P (t))
15385 finish_function_try_block (stmt);
15386 else
15387 finish_try_block (stmt);
15388
15389 RECUR (TRY_HANDLERS (t));
15390 if (FN_TRY_BLOCK_P (t))
15391 finish_function_handler_sequence (stmt, compound_stmt);
15392 else
15393 finish_handler_sequence (stmt);
15394 }
15395 break;
15396
15397 case HANDLER:
15398 {
15399 tree decl = HANDLER_PARMS (t);
15400
15401 if (decl)
15402 {
15403 decl = tsubst (decl, args, complain, in_decl);
15404 /* Prevent instantiate_decl from trying to instantiate
15405 this variable. We've already done all that needs to be
15406 done. */
15407 if (decl != error_mark_node)
15408 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15409 }
15410 stmt = begin_handler ();
15411 finish_handler_parms (decl, stmt);
15412 RECUR (HANDLER_BODY (t));
15413 finish_handler (stmt);
15414 }
15415 break;
15416
15417 case TAG_DEFN:
15418 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15419 if (CLASS_TYPE_P (tmp))
15420 {
15421 /* Local classes are not independent templates; they are
15422 instantiated along with their containing function. And this
15423 way we don't have to deal with pushing out of one local class
15424 to instantiate a member of another local class. */
15425 tree fn;
15426 /* Closures are handled by the LAMBDA_EXPR. */
15427 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15428 complete_type (tmp);
15429 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15430 if (!DECL_ARTIFICIAL (fn))
15431 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15432 }
15433 break;
15434
15435 case STATIC_ASSERT:
15436 {
15437 tree condition;
15438
15439 ++c_inhibit_evaluation_warnings;
15440 condition =
15441 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15442 args,
15443 complain, in_decl,
15444 /*integral_constant_expression_p=*/true);
15445 --c_inhibit_evaluation_warnings;
15446
15447 finish_static_assert (condition,
15448 STATIC_ASSERT_MESSAGE (t),
15449 STATIC_ASSERT_SOURCE_LOCATION (t),
15450 /*member_p=*/false);
15451 }
15452 break;
15453
15454 case OACC_KERNELS:
15455 case OACC_PARALLEL:
15456 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, false, args, complain,
15457 in_decl);
15458 stmt = begin_omp_parallel ();
15459 RECUR (OMP_BODY (t));
15460 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15461 break;
15462
15463 case OMP_PARALLEL:
15464 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15465 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false, true,
15466 args, complain, in_decl);
15467 if (OMP_PARALLEL_COMBINED (t))
15468 omp_parallel_combined_clauses = &tmp;
15469 stmt = begin_omp_parallel ();
15470 RECUR (OMP_PARALLEL_BODY (t));
15471 gcc_assert (omp_parallel_combined_clauses == NULL);
15472 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15473 = OMP_PARALLEL_COMBINED (t);
15474 pop_omp_privatization_clauses (r);
15475 break;
15476
15477 case OMP_TASK:
15478 r = push_omp_privatization_clauses (false);
15479 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false, true,
15480 args, complain, in_decl);
15481 stmt = begin_omp_task ();
15482 RECUR (OMP_TASK_BODY (t));
15483 finish_omp_task (tmp, stmt);
15484 pop_omp_privatization_clauses (r);
15485 break;
15486
15487 case OMP_FOR:
15488 case OMP_SIMD:
15489 case CILK_SIMD:
15490 case CILK_FOR:
15491 case OMP_DISTRIBUTE:
15492 case OMP_TASKLOOP:
15493 case OACC_LOOP:
15494 {
15495 tree clauses, body, pre_body;
15496 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15497 tree orig_declv = NULL_TREE;
15498 tree incrv = NULL_TREE;
15499 int i;
15500
15501 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15502 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
15503 TREE_CODE (t) != OACC_LOOP,
15504 args, complain, in_decl);
15505 if (OMP_FOR_INIT (t) != NULL_TREE)
15506 {
15507 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15508 if (OMP_FOR_ORIG_DECLS (t))
15509 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15510 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15511 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15512 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15513 }
15514
15515 stmt = begin_omp_structured_block ();
15516
15517 pre_body = push_stmt_list ();
15518 RECUR (OMP_FOR_PRE_BODY (t));
15519 pre_body = pop_stmt_list (pre_body);
15520
15521 if (OMP_FOR_INIT (t) != NULL_TREE)
15522 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15523 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15524 incrv, &clauses, args, complain, in_decl,
15525 integral_constant_expression_p);
15526 omp_parallel_combined_clauses = NULL;
15527
15528 body = push_stmt_list ();
15529 RECUR (OMP_FOR_BODY (t));
15530 body = pop_stmt_list (body);
15531
15532 if (OMP_FOR_INIT (t) != NULL_TREE)
15533 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15534 orig_declv, initv, condv, incrv, body, pre_body,
15535 NULL, clauses);
15536 else
15537 {
15538 t = make_node (TREE_CODE (t));
15539 TREE_TYPE (t) = void_type_node;
15540 OMP_FOR_BODY (t) = body;
15541 OMP_FOR_PRE_BODY (t) = pre_body;
15542 OMP_FOR_CLAUSES (t) = clauses;
15543 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15544 add_stmt (t);
15545 }
15546
15547 add_stmt (finish_omp_structured_block (stmt));
15548 pop_omp_privatization_clauses (r);
15549 }
15550 break;
15551
15552 case OMP_SECTIONS:
15553 omp_parallel_combined_clauses = NULL;
15554 /* FALLTHRU */
15555 case OMP_SINGLE:
15556 case OMP_TEAMS:
15557 case OMP_CRITICAL:
15558 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15559 && OMP_TEAMS_COMBINED (t));
15560 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15561 args, complain, in_decl);
15562 stmt = push_stmt_list ();
15563 RECUR (OMP_BODY (t));
15564 stmt = pop_stmt_list (stmt);
15565
15566 t = copy_node (t);
15567 OMP_BODY (t) = stmt;
15568 OMP_CLAUSES (t) = tmp;
15569 add_stmt (t);
15570 pop_omp_privatization_clauses (r);
15571 break;
15572
15573 case OACC_DATA:
15574 case OMP_TARGET_DATA:
15575 case OMP_TARGET:
15576 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15577 TREE_CODE (t) != OACC_DATA,
15578 args, complain, in_decl);
15579 keep_next_level (true);
15580 stmt = begin_omp_structured_block ();
15581
15582 RECUR (OMP_BODY (t));
15583 stmt = finish_omp_structured_block (stmt);
15584
15585 t = copy_node (t);
15586 OMP_BODY (t) = stmt;
15587 OMP_CLAUSES (t) = tmp;
15588 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15589 {
15590 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15591 if (teams)
15592 {
15593 /* For combined target teams, ensure the num_teams and
15594 thread_limit clause expressions are evaluated on the host,
15595 before entering the target construct. */
15596 tree c;
15597 for (c = OMP_TEAMS_CLAUSES (teams);
15598 c; c = OMP_CLAUSE_CHAIN (c))
15599 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15600 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15601 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15602 {
15603 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15604 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15605 if (expr == error_mark_node)
15606 continue;
15607 tmp = TARGET_EXPR_SLOT (expr);
15608 add_stmt (expr);
15609 OMP_CLAUSE_OPERAND (c, 0) = expr;
15610 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15611 OMP_CLAUSE_FIRSTPRIVATE);
15612 OMP_CLAUSE_DECL (tc) = tmp;
15613 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15614 OMP_TARGET_CLAUSES (t) = tc;
15615 }
15616 }
15617 }
15618 add_stmt (t);
15619 break;
15620
15621 case OACC_DECLARE:
15622 t = copy_node (t);
15623 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), false, false,
15624 args, complain, in_decl);
15625 OACC_DECLARE_CLAUSES (t) = tmp;
15626 add_stmt (t);
15627 break;
15628
15629 case OMP_TARGET_UPDATE:
15630 case OMP_TARGET_ENTER_DATA:
15631 case OMP_TARGET_EXIT_DATA:
15632 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, true,
15633 args, complain, in_decl);
15634 t = copy_node (t);
15635 OMP_STANDALONE_CLAUSES (t) = tmp;
15636 add_stmt (t);
15637 break;
15638
15639 case OACC_ENTER_DATA:
15640 case OACC_EXIT_DATA:
15641 case OACC_UPDATE:
15642 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, false,
15643 args, complain, in_decl);
15644 t = copy_node (t);
15645 OMP_STANDALONE_CLAUSES (t) = tmp;
15646 add_stmt (t);
15647 break;
15648
15649 case OMP_ORDERED:
15650 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), false, true,
15651 args, complain, in_decl);
15652 stmt = push_stmt_list ();
15653 RECUR (OMP_BODY (t));
15654 stmt = pop_stmt_list (stmt);
15655
15656 t = copy_node (t);
15657 OMP_BODY (t) = stmt;
15658 OMP_ORDERED_CLAUSES (t) = tmp;
15659 add_stmt (t);
15660 break;
15661
15662 case OMP_SECTION:
15663 case OMP_MASTER:
15664 case OMP_TASKGROUP:
15665 stmt = push_stmt_list ();
15666 RECUR (OMP_BODY (t));
15667 stmt = pop_stmt_list (stmt);
15668
15669 t = copy_node (t);
15670 OMP_BODY (t) = stmt;
15671 add_stmt (t);
15672 break;
15673
15674 case OMP_ATOMIC:
15675 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15676 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15677 {
15678 tree op1 = TREE_OPERAND (t, 1);
15679 tree rhs1 = NULL_TREE;
15680 tree lhs, rhs;
15681 if (TREE_CODE (op1) == COMPOUND_EXPR)
15682 {
15683 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15684 op1 = TREE_OPERAND (op1, 1);
15685 }
15686 lhs = RECUR (TREE_OPERAND (op1, 0));
15687 rhs = RECUR (TREE_OPERAND (op1, 1));
15688 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15689 NULL_TREE, NULL_TREE, rhs1,
15690 OMP_ATOMIC_SEQ_CST (t));
15691 }
15692 else
15693 {
15694 tree op1 = TREE_OPERAND (t, 1);
15695 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15696 tree rhs1 = NULL_TREE;
15697 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15698 enum tree_code opcode = NOP_EXPR;
15699 if (code == OMP_ATOMIC_READ)
15700 {
15701 v = RECUR (TREE_OPERAND (op1, 0));
15702 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15703 }
15704 else if (code == OMP_ATOMIC_CAPTURE_OLD
15705 || code == OMP_ATOMIC_CAPTURE_NEW)
15706 {
15707 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15708 v = RECUR (TREE_OPERAND (op1, 0));
15709 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15710 if (TREE_CODE (op11) == COMPOUND_EXPR)
15711 {
15712 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15713 op11 = TREE_OPERAND (op11, 1);
15714 }
15715 lhs = RECUR (TREE_OPERAND (op11, 0));
15716 rhs = RECUR (TREE_OPERAND (op11, 1));
15717 opcode = TREE_CODE (op11);
15718 if (opcode == MODIFY_EXPR)
15719 opcode = NOP_EXPR;
15720 }
15721 else
15722 {
15723 code = OMP_ATOMIC;
15724 lhs = RECUR (TREE_OPERAND (op1, 0));
15725 rhs = RECUR (TREE_OPERAND (op1, 1));
15726 }
15727 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15728 OMP_ATOMIC_SEQ_CST (t));
15729 }
15730 break;
15731
15732 case TRANSACTION_EXPR:
15733 {
15734 int flags = 0;
15735 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15736 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15737
15738 if (TRANSACTION_EXPR_IS_STMT (t))
15739 {
15740 tree body = TRANSACTION_EXPR_BODY (t);
15741 tree noex = NULL_TREE;
15742 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15743 {
15744 noex = MUST_NOT_THROW_COND (body);
15745 if (noex == NULL_TREE)
15746 noex = boolean_true_node;
15747 body = TREE_OPERAND (body, 0);
15748 }
15749 stmt = begin_transaction_stmt (input_location, NULL, flags);
15750 RECUR (body);
15751 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15752 }
15753 else
15754 {
15755 stmt = build_transaction_expr (EXPR_LOCATION (t),
15756 RECUR (TRANSACTION_EXPR_BODY (t)),
15757 flags, NULL_TREE);
15758 RETURN (stmt);
15759 }
15760 }
15761 break;
15762
15763 case MUST_NOT_THROW_EXPR:
15764 {
15765 tree op0 = RECUR (TREE_OPERAND (t, 0));
15766 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15767 RETURN (build_must_not_throw_expr (op0, cond));
15768 }
15769
15770 case EXPR_PACK_EXPANSION:
15771 error ("invalid use of pack expansion expression");
15772 RETURN (error_mark_node);
15773
15774 case NONTYPE_ARGUMENT_PACK:
15775 error ("use %<...%> to expand argument pack");
15776 RETURN (error_mark_node);
15777
15778 case CILK_SPAWN_STMT:
15779 cfun->calls_cilk_spawn = 1;
15780 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15781
15782 case CILK_SYNC_STMT:
15783 RETURN (build_cilk_sync ());
15784
15785 case COMPOUND_EXPR:
15786 tmp = RECUR (TREE_OPERAND (t, 0));
15787 if (tmp == NULL_TREE)
15788 /* If the first operand was a statement, we're done with it. */
15789 RETURN (RECUR (TREE_OPERAND (t, 1)));
15790 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15791 RECUR (TREE_OPERAND (t, 1)),
15792 complain));
15793
15794 case ANNOTATE_EXPR:
15795 tmp = RECUR (TREE_OPERAND (t, 0));
15796 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15797 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15798
15799 default:
15800 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15801
15802 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15803 /*function_p=*/false,
15804 integral_constant_expression_p));
15805 }
15806
15807 RETURN (NULL_TREE);
15808 out:
15809 input_location = loc;
15810 return r;
15811 #undef RECUR
15812 #undef RETURN
15813 }
15814
15815 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15816 function. For description of the body see comment above
15817 cp_parser_omp_declare_reduction_exprs. */
15818
15819 static void
15820 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15821 {
15822 if (t == NULL_TREE || t == error_mark_node)
15823 return;
15824
15825 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15826
15827 tree_stmt_iterator tsi;
15828 int i;
15829 tree stmts[7];
15830 memset (stmts, 0, sizeof stmts);
15831 for (i = 0, tsi = tsi_start (t);
15832 i < 7 && !tsi_end_p (tsi);
15833 i++, tsi_next (&tsi))
15834 stmts[i] = tsi_stmt (tsi);
15835 gcc_assert (tsi_end_p (tsi));
15836
15837 if (i >= 3)
15838 {
15839 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15840 && TREE_CODE (stmts[1]) == DECL_EXPR);
15841 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15842 args, complain, in_decl);
15843 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15844 args, complain, in_decl);
15845 DECL_CONTEXT (omp_out) = current_function_decl;
15846 DECL_CONTEXT (omp_in) = current_function_decl;
15847 keep_next_level (true);
15848 tree block = begin_omp_structured_block ();
15849 tsubst_expr (stmts[2], args, complain, in_decl, false);
15850 block = finish_omp_structured_block (block);
15851 block = maybe_cleanup_point_expr_void (block);
15852 add_decl_expr (omp_out);
15853 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15854 TREE_NO_WARNING (omp_out) = 1;
15855 add_decl_expr (omp_in);
15856 finish_expr_stmt (block);
15857 }
15858 if (i >= 6)
15859 {
15860 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15861 && TREE_CODE (stmts[4]) == DECL_EXPR);
15862 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15863 args, complain, in_decl);
15864 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15865 args, complain, in_decl);
15866 DECL_CONTEXT (omp_priv) = current_function_decl;
15867 DECL_CONTEXT (omp_orig) = current_function_decl;
15868 keep_next_level (true);
15869 tree block = begin_omp_structured_block ();
15870 tsubst_expr (stmts[5], args, complain, in_decl, false);
15871 block = finish_omp_structured_block (block);
15872 block = maybe_cleanup_point_expr_void (block);
15873 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15874 add_decl_expr (omp_priv);
15875 add_decl_expr (omp_orig);
15876 finish_expr_stmt (block);
15877 if (i == 7)
15878 add_decl_expr (omp_orig);
15879 }
15880 }
15881
15882 /* T is a postfix-expression that is not being used in a function
15883 call. Return the substituted version of T. */
15884
15885 static tree
15886 tsubst_non_call_postfix_expression (tree t, tree args,
15887 tsubst_flags_t complain,
15888 tree in_decl)
15889 {
15890 if (TREE_CODE (t) == SCOPE_REF)
15891 t = tsubst_qualified_id (t, args, complain, in_decl,
15892 /*done=*/false, /*address_p=*/false);
15893 else
15894 t = tsubst_copy_and_build (t, args, complain, in_decl,
15895 /*function_p=*/false,
15896 /*integral_constant_expression_p=*/false);
15897
15898 return t;
15899 }
15900
15901 /* Like tsubst but deals with expressions and performs semantic
15902 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15903
15904 tree
15905 tsubst_copy_and_build (tree t,
15906 tree args,
15907 tsubst_flags_t complain,
15908 tree in_decl,
15909 bool function_p,
15910 bool integral_constant_expression_p)
15911 {
15912 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15913 #define RECUR(NODE) \
15914 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15915 /*function_p=*/false, \
15916 integral_constant_expression_p)
15917
15918 tree retval, op1;
15919 location_t loc;
15920
15921 if (t == NULL_TREE || t == error_mark_node)
15922 return t;
15923
15924 loc = input_location;
15925 if (EXPR_HAS_LOCATION (t))
15926 input_location = EXPR_LOCATION (t);
15927
15928 /* N3276 decltype magic only applies to calls at the top level or on the
15929 right side of a comma. */
15930 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15931 complain &= ~tf_decltype;
15932
15933 switch (TREE_CODE (t))
15934 {
15935 case USING_DECL:
15936 t = DECL_NAME (t);
15937 /* Fall through. */
15938 case IDENTIFIER_NODE:
15939 {
15940 tree decl;
15941 cp_id_kind idk;
15942 bool non_integral_constant_expression_p;
15943 const char *error_msg;
15944
15945 if (IDENTIFIER_TYPENAME_P (t))
15946 {
15947 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15948 t = mangle_conv_op_name_for_type (new_type);
15949 }
15950
15951 /* Look up the name. */
15952 decl = lookup_name (t);
15953
15954 /* By convention, expressions use ERROR_MARK_NODE to indicate
15955 failure, not NULL_TREE. */
15956 if (decl == NULL_TREE)
15957 decl = error_mark_node;
15958
15959 decl = finish_id_expression (t, decl, NULL_TREE,
15960 &idk,
15961 integral_constant_expression_p,
15962 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15963 &non_integral_constant_expression_p,
15964 /*template_p=*/false,
15965 /*done=*/true,
15966 /*address_p=*/false,
15967 /*template_arg_p=*/false,
15968 &error_msg,
15969 input_location);
15970 if (error_msg)
15971 error (error_msg);
15972 if (!function_p && identifier_p (decl))
15973 {
15974 if (complain & tf_error)
15975 unqualified_name_lookup_error (decl);
15976 decl = error_mark_node;
15977 }
15978 RETURN (decl);
15979 }
15980
15981 case TEMPLATE_ID_EXPR:
15982 {
15983 tree object;
15984 tree templ = RECUR (TREE_OPERAND (t, 0));
15985 tree targs = TREE_OPERAND (t, 1);
15986
15987 if (targs)
15988 targs = tsubst_template_args (targs, args, complain, in_decl);
15989 if (targs == error_mark_node)
15990 return error_mark_node;
15991
15992 if (variable_template_p (templ))
15993 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
15994
15995 if (TREE_CODE (templ) == COMPONENT_REF)
15996 {
15997 object = TREE_OPERAND (templ, 0);
15998 templ = TREE_OPERAND (templ, 1);
15999 }
16000 else
16001 object = NULL_TREE;
16002 templ = lookup_template_function (templ, targs);
16003
16004 if (object)
16005 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
16006 object, templ, NULL_TREE));
16007 else
16008 RETURN (baselink_for_fns (templ));
16009 }
16010
16011 case INDIRECT_REF:
16012 {
16013 tree r = RECUR (TREE_OPERAND (t, 0));
16014
16015 if (REFERENCE_REF_P (t))
16016 {
16017 /* A type conversion to reference type will be enclosed in
16018 such an indirect ref, but the substitution of the cast
16019 will have also added such an indirect ref. */
16020 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
16021 r = convert_from_reference (r);
16022 }
16023 else
16024 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
16025 complain|decltype_flag);
16026
16027 if (TREE_CODE (r) == INDIRECT_REF)
16028 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16029
16030 RETURN (r);
16031 }
16032
16033 case NOP_EXPR:
16034 {
16035 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16036 tree op0 = RECUR (TREE_OPERAND (t, 0));
16037 RETURN (build_nop (type, op0));
16038 }
16039
16040 case IMPLICIT_CONV_EXPR:
16041 {
16042 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16043 tree expr = RECUR (TREE_OPERAND (t, 0));
16044 int flags = LOOKUP_IMPLICIT;
16045 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
16046 flags = LOOKUP_NORMAL;
16047 RETURN (perform_implicit_conversion_flags (type, expr, complain,
16048 flags));
16049 }
16050
16051 case CONVERT_EXPR:
16052 {
16053 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16054 tree op0 = RECUR (TREE_OPERAND (t, 0));
16055 RETURN (build1 (CONVERT_EXPR, type, op0));
16056 }
16057
16058 case CAST_EXPR:
16059 case REINTERPRET_CAST_EXPR:
16060 case CONST_CAST_EXPR:
16061 case DYNAMIC_CAST_EXPR:
16062 case STATIC_CAST_EXPR:
16063 {
16064 tree type;
16065 tree op, r = NULL_TREE;
16066
16067 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16068 if (integral_constant_expression_p
16069 && !cast_valid_in_integral_constant_expression_p (type))
16070 {
16071 if (complain & tf_error)
16072 error ("a cast to a type other than an integral or "
16073 "enumeration type cannot appear in a constant-expression");
16074 RETURN (error_mark_node);
16075 }
16076
16077 op = RECUR (TREE_OPERAND (t, 0));
16078
16079 warning_sentinel s(warn_useless_cast);
16080 switch (TREE_CODE (t))
16081 {
16082 case CAST_EXPR:
16083 r = build_functional_cast (type, op, complain);
16084 break;
16085 case REINTERPRET_CAST_EXPR:
16086 r = build_reinterpret_cast (type, op, complain);
16087 break;
16088 case CONST_CAST_EXPR:
16089 r = build_const_cast (type, op, complain);
16090 break;
16091 case DYNAMIC_CAST_EXPR:
16092 r = build_dynamic_cast (type, op, complain);
16093 break;
16094 case STATIC_CAST_EXPR:
16095 r = build_static_cast (type, op, complain);
16096 break;
16097 default:
16098 gcc_unreachable ();
16099 }
16100
16101 RETURN (r);
16102 }
16103
16104 case POSTDECREMENT_EXPR:
16105 case POSTINCREMENT_EXPR:
16106 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16107 args, complain, in_decl);
16108 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16109 complain|decltype_flag));
16110
16111 case PREDECREMENT_EXPR:
16112 case PREINCREMENT_EXPR:
16113 case NEGATE_EXPR:
16114 case BIT_NOT_EXPR:
16115 case ABS_EXPR:
16116 case TRUTH_NOT_EXPR:
16117 case UNARY_PLUS_EXPR: /* Unary + */
16118 case REALPART_EXPR:
16119 case IMAGPART_EXPR:
16120 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16121 RECUR (TREE_OPERAND (t, 0)),
16122 complain|decltype_flag));
16123
16124 case FIX_TRUNC_EXPR:
16125 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16126 0, complain));
16127
16128 case ADDR_EXPR:
16129 op1 = TREE_OPERAND (t, 0);
16130 if (TREE_CODE (op1) == LABEL_DECL)
16131 RETURN (finish_label_address_expr (DECL_NAME (op1),
16132 EXPR_LOCATION (op1)));
16133 if (TREE_CODE (op1) == SCOPE_REF)
16134 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16135 /*done=*/true, /*address_p=*/true);
16136 else
16137 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16138 in_decl);
16139 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16140 complain|decltype_flag));
16141
16142 case PLUS_EXPR:
16143 case MINUS_EXPR:
16144 case MULT_EXPR:
16145 case TRUNC_DIV_EXPR:
16146 case CEIL_DIV_EXPR:
16147 case FLOOR_DIV_EXPR:
16148 case ROUND_DIV_EXPR:
16149 case EXACT_DIV_EXPR:
16150 case BIT_AND_EXPR:
16151 case BIT_IOR_EXPR:
16152 case BIT_XOR_EXPR:
16153 case TRUNC_MOD_EXPR:
16154 case FLOOR_MOD_EXPR:
16155 case TRUTH_ANDIF_EXPR:
16156 case TRUTH_ORIF_EXPR:
16157 case TRUTH_AND_EXPR:
16158 case TRUTH_OR_EXPR:
16159 case RSHIFT_EXPR:
16160 case LSHIFT_EXPR:
16161 case RROTATE_EXPR:
16162 case LROTATE_EXPR:
16163 case EQ_EXPR:
16164 case NE_EXPR:
16165 case MAX_EXPR:
16166 case MIN_EXPR:
16167 case LE_EXPR:
16168 case GE_EXPR:
16169 case LT_EXPR:
16170 case GT_EXPR:
16171 case MEMBER_REF:
16172 case DOTSTAR_EXPR:
16173 {
16174 warning_sentinel s1(warn_type_limits);
16175 warning_sentinel s2(warn_div_by_zero);
16176 warning_sentinel s3(warn_logical_op);
16177 warning_sentinel s4(warn_tautological_compare);
16178 tree op0 = RECUR (TREE_OPERAND (t, 0));
16179 tree op1 = RECUR (TREE_OPERAND (t, 1));
16180 tree r = build_x_binary_op
16181 (input_location, TREE_CODE (t),
16182 op0,
16183 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16184 ? ERROR_MARK
16185 : TREE_CODE (TREE_OPERAND (t, 0))),
16186 op1,
16187 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16188 ? ERROR_MARK
16189 : TREE_CODE (TREE_OPERAND (t, 1))),
16190 /*overload=*/NULL,
16191 complain|decltype_flag);
16192 if (EXPR_P (r) && TREE_NO_WARNING (t))
16193 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16194
16195 RETURN (r);
16196 }
16197
16198 case POINTER_PLUS_EXPR:
16199 {
16200 tree op0 = RECUR (TREE_OPERAND (t, 0));
16201 tree op1 = RECUR (TREE_OPERAND (t, 1));
16202 return fold_build_pointer_plus (op0, op1);
16203 }
16204
16205 case SCOPE_REF:
16206 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16207 /*address_p=*/false));
16208 case ARRAY_REF:
16209 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16210 args, complain, in_decl);
16211 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16212 RECUR (TREE_OPERAND (t, 1)),
16213 complain|decltype_flag));
16214
16215 case ARRAY_NOTATION_REF:
16216 {
16217 tree start_index, length, stride;
16218 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16219 args, complain, in_decl);
16220 start_index = RECUR (ARRAY_NOTATION_START (t));
16221 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16222 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16223 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16224 length, stride, TREE_TYPE (op1)));
16225 }
16226 case SIZEOF_EXPR:
16227 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
16228 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
16229 RETURN (tsubst_copy (t, args, complain, in_decl));
16230 /* Fall through */
16231
16232 case ALIGNOF_EXPR:
16233 {
16234 tree r;
16235
16236 op1 = TREE_OPERAND (t, 0);
16237 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16238 op1 = TREE_TYPE (op1);
16239 if (!args)
16240 {
16241 /* When there are no ARGS, we are trying to evaluate a
16242 non-dependent expression from the parser. Trying to do
16243 the substitutions may not work. */
16244 if (!TYPE_P (op1))
16245 op1 = TREE_TYPE (op1);
16246 }
16247 else
16248 {
16249 ++cp_unevaluated_operand;
16250 ++c_inhibit_evaluation_warnings;
16251 if (TYPE_P (op1))
16252 op1 = tsubst (op1, args, complain, in_decl);
16253 else
16254 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16255 /*function_p=*/false,
16256 /*integral_constant_expression_p=*/
16257 false);
16258 --cp_unevaluated_operand;
16259 --c_inhibit_evaluation_warnings;
16260 }
16261 if (TYPE_P (op1))
16262 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16263 complain & tf_error);
16264 else
16265 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16266 complain & tf_error);
16267 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16268 {
16269 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16270 {
16271 if (!processing_template_decl && TYPE_P (op1))
16272 {
16273 r = build_min (SIZEOF_EXPR, size_type_node,
16274 build1 (NOP_EXPR, op1, error_mark_node));
16275 SIZEOF_EXPR_TYPE_P (r) = 1;
16276 }
16277 else
16278 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16279 TREE_SIDE_EFFECTS (r) = 0;
16280 TREE_READONLY (r) = 1;
16281 }
16282 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16283 }
16284 RETURN (r);
16285 }
16286
16287 case AT_ENCODE_EXPR:
16288 {
16289 op1 = TREE_OPERAND (t, 0);
16290 ++cp_unevaluated_operand;
16291 ++c_inhibit_evaluation_warnings;
16292 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16293 /*function_p=*/false,
16294 /*integral_constant_expression_p=*/false);
16295 --cp_unevaluated_operand;
16296 --c_inhibit_evaluation_warnings;
16297 RETURN (objc_build_encode_expr (op1));
16298 }
16299
16300 case NOEXCEPT_EXPR:
16301 op1 = TREE_OPERAND (t, 0);
16302 ++cp_unevaluated_operand;
16303 ++c_inhibit_evaluation_warnings;
16304 ++cp_noexcept_operand;
16305 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16306 /*function_p=*/false,
16307 /*integral_constant_expression_p=*/false);
16308 --cp_unevaluated_operand;
16309 --c_inhibit_evaluation_warnings;
16310 --cp_noexcept_operand;
16311 RETURN (finish_noexcept_expr (op1, complain));
16312
16313 case MODOP_EXPR:
16314 {
16315 warning_sentinel s(warn_div_by_zero);
16316 tree lhs = RECUR (TREE_OPERAND (t, 0));
16317 tree rhs = RECUR (TREE_OPERAND (t, 2));
16318 tree r = build_x_modify_expr
16319 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16320 complain|decltype_flag);
16321 /* TREE_NO_WARNING must be set if either the expression was
16322 parenthesized or it uses an operator such as >>= rather
16323 than plain assignment. In the former case, it was already
16324 set and must be copied. In the latter case,
16325 build_x_modify_expr sets it and it must not be reset
16326 here. */
16327 if (TREE_NO_WARNING (t))
16328 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16329
16330 RETURN (r);
16331 }
16332
16333 case ARROW_EXPR:
16334 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16335 args, complain, in_decl);
16336 /* Remember that there was a reference to this entity. */
16337 if (DECL_P (op1)
16338 && !mark_used (op1, complain) && !(complain & tf_error))
16339 RETURN (error_mark_node);
16340 RETURN (build_x_arrow (input_location, op1, complain));
16341
16342 case NEW_EXPR:
16343 {
16344 tree placement = RECUR (TREE_OPERAND (t, 0));
16345 tree init = RECUR (TREE_OPERAND (t, 3));
16346 vec<tree, va_gc> *placement_vec;
16347 vec<tree, va_gc> *init_vec;
16348 tree ret;
16349
16350 if (placement == NULL_TREE)
16351 placement_vec = NULL;
16352 else
16353 {
16354 placement_vec = make_tree_vector ();
16355 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16356 vec_safe_push (placement_vec, TREE_VALUE (placement));
16357 }
16358
16359 /* If there was an initializer in the original tree, but it
16360 instantiated to an empty list, then we should pass a
16361 non-NULL empty vector to tell build_new that it was an
16362 empty initializer() rather than no initializer. This can
16363 only happen when the initializer is a pack expansion whose
16364 parameter packs are of length zero. */
16365 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16366 init_vec = NULL;
16367 else
16368 {
16369 init_vec = make_tree_vector ();
16370 if (init == void_node)
16371 gcc_assert (init_vec != NULL);
16372 else
16373 {
16374 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16375 vec_safe_push (init_vec, TREE_VALUE (init));
16376 }
16377 }
16378
16379 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16380 tree op2 = RECUR (TREE_OPERAND (t, 2));
16381 ret = build_new (&placement_vec, op1, op2, &init_vec,
16382 NEW_EXPR_USE_GLOBAL (t),
16383 complain);
16384
16385 if (placement_vec != NULL)
16386 release_tree_vector (placement_vec);
16387 if (init_vec != NULL)
16388 release_tree_vector (init_vec);
16389
16390 RETURN (ret);
16391 }
16392
16393 case DELETE_EXPR:
16394 {
16395 tree op0 = RECUR (TREE_OPERAND (t, 0));
16396 tree op1 = RECUR (TREE_OPERAND (t, 1));
16397 RETURN (delete_sanity (op0, op1,
16398 DELETE_EXPR_USE_VEC (t),
16399 DELETE_EXPR_USE_GLOBAL (t),
16400 complain));
16401 }
16402
16403 case COMPOUND_EXPR:
16404 {
16405 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16406 complain & ~tf_decltype, in_decl,
16407 /*function_p=*/false,
16408 integral_constant_expression_p);
16409 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16410 op0,
16411 RECUR (TREE_OPERAND (t, 1)),
16412 complain|decltype_flag));
16413 }
16414
16415 case CALL_EXPR:
16416 {
16417 tree function;
16418 vec<tree, va_gc> *call_args;
16419 unsigned int nargs, i;
16420 bool qualified_p;
16421 bool koenig_p;
16422 tree ret;
16423
16424 function = CALL_EXPR_FN (t);
16425 /* When we parsed the expression, we determined whether or
16426 not Koenig lookup should be performed. */
16427 koenig_p = KOENIG_LOOKUP_P (t);
16428 if (TREE_CODE (function) == SCOPE_REF)
16429 {
16430 qualified_p = true;
16431 function = tsubst_qualified_id (function, args, complain, in_decl,
16432 /*done=*/false,
16433 /*address_p=*/false);
16434 }
16435 else if (koenig_p && identifier_p (function))
16436 {
16437 /* Do nothing; calling tsubst_copy_and_build on an identifier
16438 would incorrectly perform unqualified lookup again.
16439
16440 Note that we can also have an IDENTIFIER_NODE if the earlier
16441 unqualified lookup found a member function; in that case
16442 koenig_p will be false and we do want to do the lookup
16443 again to find the instantiated member function.
16444
16445 FIXME but doing that causes c++/15272, so we need to stop
16446 using IDENTIFIER_NODE in that situation. */
16447 qualified_p = false;
16448 }
16449 else
16450 {
16451 if (TREE_CODE (function) == COMPONENT_REF)
16452 {
16453 tree op = TREE_OPERAND (function, 1);
16454
16455 qualified_p = (TREE_CODE (op) == SCOPE_REF
16456 || (BASELINK_P (op)
16457 && BASELINK_QUALIFIED_P (op)));
16458 }
16459 else
16460 qualified_p = false;
16461
16462 if (TREE_CODE (function) == ADDR_EXPR
16463 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16464 /* Avoid error about taking the address of a constructor. */
16465 function = TREE_OPERAND (function, 0);
16466
16467 function = tsubst_copy_and_build (function, args, complain,
16468 in_decl,
16469 !qualified_p,
16470 integral_constant_expression_p);
16471
16472 if (BASELINK_P (function))
16473 qualified_p = true;
16474 }
16475
16476 nargs = call_expr_nargs (t);
16477 call_args = make_tree_vector ();
16478 for (i = 0; i < nargs; ++i)
16479 {
16480 tree arg = CALL_EXPR_ARG (t, i);
16481
16482 if (!PACK_EXPANSION_P (arg))
16483 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16484 else
16485 {
16486 /* Expand the pack expansion and push each entry onto
16487 CALL_ARGS. */
16488 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16489 if (TREE_CODE (arg) == TREE_VEC)
16490 {
16491 unsigned int len, j;
16492
16493 len = TREE_VEC_LENGTH (arg);
16494 for (j = 0; j < len; ++j)
16495 {
16496 tree value = TREE_VEC_ELT (arg, j);
16497 if (value != NULL_TREE)
16498 value = convert_from_reference (value);
16499 vec_safe_push (call_args, value);
16500 }
16501 }
16502 else
16503 {
16504 /* A partial substitution. Add one entry. */
16505 vec_safe_push (call_args, arg);
16506 }
16507 }
16508 }
16509
16510 /* We do not perform argument-dependent lookup if normal
16511 lookup finds a non-function, in accordance with the
16512 expected resolution of DR 218. */
16513 if (koenig_p
16514 && ((is_overloaded_fn (function)
16515 /* If lookup found a member function, the Koenig lookup is
16516 not appropriate, even if an unqualified-name was used
16517 to denote the function. */
16518 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16519 || identifier_p (function))
16520 /* Only do this when substitution turns a dependent call
16521 into a non-dependent call. */
16522 && type_dependent_expression_p_push (t)
16523 && !any_type_dependent_arguments_p (call_args))
16524 function = perform_koenig_lookup (function, call_args, tf_none);
16525
16526 if (identifier_p (function)
16527 && !any_type_dependent_arguments_p (call_args))
16528 {
16529 if (koenig_p && (complain & tf_warning_or_error))
16530 {
16531 /* For backwards compatibility and good diagnostics, try
16532 the unqualified lookup again if we aren't in SFINAE
16533 context. */
16534 tree unq = (tsubst_copy_and_build
16535 (function, args, complain, in_decl, true,
16536 integral_constant_expression_p));
16537 if (unq == error_mark_node)
16538 RETURN (error_mark_node);
16539
16540 if (unq != function)
16541 {
16542 tree fn = unq;
16543 if (INDIRECT_REF_P (fn))
16544 fn = TREE_OPERAND (fn, 0);
16545 if (TREE_CODE (fn) == COMPONENT_REF)
16546 fn = TREE_OPERAND (fn, 1);
16547 if (is_overloaded_fn (fn))
16548 fn = get_first_fn (fn);
16549 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16550 "%qD was not declared in this scope, "
16551 "and no declarations were found by "
16552 "argument-dependent lookup at the point "
16553 "of instantiation", function))
16554 {
16555 if (!DECL_P (fn))
16556 /* Can't say anything more. */;
16557 else if (DECL_CLASS_SCOPE_P (fn))
16558 {
16559 location_t loc = EXPR_LOC_OR_LOC (t,
16560 input_location);
16561 inform (loc,
16562 "declarations in dependent base %qT are "
16563 "not found by unqualified lookup",
16564 DECL_CLASS_CONTEXT (fn));
16565 if (current_class_ptr)
16566 inform (loc,
16567 "use %<this->%D%> instead", function);
16568 else
16569 inform (loc,
16570 "use %<%T::%D%> instead",
16571 current_class_name, function);
16572 }
16573 else
16574 inform (DECL_SOURCE_LOCATION (fn),
16575 "%qD declared here, later in the "
16576 "translation unit", fn);
16577 }
16578 function = unq;
16579 }
16580 }
16581 if (identifier_p (function))
16582 {
16583 if (complain & tf_error)
16584 unqualified_name_lookup_error (function);
16585 release_tree_vector (call_args);
16586 RETURN (error_mark_node);
16587 }
16588 }
16589
16590 /* Remember that there was a reference to this entity. */
16591 if (DECL_P (function)
16592 && !mark_used (function, complain) && !(complain & tf_error))
16593 RETURN (error_mark_node);
16594
16595 /* Put back tf_decltype for the actual call. */
16596 complain |= decltype_flag;
16597
16598 if (TREE_CODE (function) == OFFSET_REF)
16599 ret = build_offset_ref_call_from_tree (function, &call_args,
16600 complain);
16601 else if (TREE_CODE (function) == COMPONENT_REF)
16602 {
16603 tree instance = TREE_OPERAND (function, 0);
16604 tree fn = TREE_OPERAND (function, 1);
16605
16606 if (processing_template_decl
16607 && (type_dependent_expression_p (instance)
16608 || (!BASELINK_P (fn)
16609 && TREE_CODE (fn) != FIELD_DECL)
16610 || type_dependent_expression_p (fn)
16611 || any_type_dependent_arguments_p (call_args)))
16612 ret = build_nt_call_vec (function, call_args);
16613 else if (!BASELINK_P (fn))
16614 ret = finish_call_expr (function, &call_args,
16615 /*disallow_virtual=*/false,
16616 /*koenig_p=*/false,
16617 complain);
16618 else
16619 ret = (build_new_method_call
16620 (instance, fn,
16621 &call_args, NULL_TREE,
16622 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16623 /*fn_p=*/NULL,
16624 complain));
16625 }
16626 else
16627 ret = finish_call_expr (function, &call_args,
16628 /*disallow_virtual=*/qualified_p,
16629 koenig_p,
16630 complain);
16631
16632 release_tree_vector (call_args);
16633
16634 RETURN (ret);
16635 }
16636
16637 case COND_EXPR:
16638 {
16639 tree cond = RECUR (TREE_OPERAND (t, 0));
16640 tree folded_cond = fold_non_dependent_expr (cond);
16641 tree exp1, exp2;
16642
16643 if (TREE_CODE (folded_cond) == INTEGER_CST)
16644 {
16645 if (integer_zerop (folded_cond))
16646 {
16647 ++c_inhibit_evaluation_warnings;
16648 exp1 = RECUR (TREE_OPERAND (t, 1));
16649 --c_inhibit_evaluation_warnings;
16650 exp2 = RECUR (TREE_OPERAND (t, 2));
16651 }
16652 else
16653 {
16654 exp1 = RECUR (TREE_OPERAND (t, 1));
16655 ++c_inhibit_evaluation_warnings;
16656 exp2 = RECUR (TREE_OPERAND (t, 2));
16657 --c_inhibit_evaluation_warnings;
16658 }
16659 cond = folded_cond;
16660 }
16661 else
16662 {
16663 exp1 = RECUR (TREE_OPERAND (t, 1));
16664 exp2 = RECUR (TREE_OPERAND (t, 2));
16665 }
16666
16667 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16668 cond, exp1, exp2, complain));
16669 }
16670
16671 case PSEUDO_DTOR_EXPR:
16672 {
16673 tree op0 = RECUR (TREE_OPERAND (t, 0));
16674 tree op1 = RECUR (TREE_OPERAND (t, 1));
16675 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16676 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16677 input_location));
16678 }
16679
16680 case TREE_LIST:
16681 {
16682 tree purpose, value, chain;
16683
16684 if (t == void_list_node)
16685 RETURN (t);
16686
16687 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16688 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16689 {
16690 /* We have pack expansions, so expand those and
16691 create a new list out of it. */
16692 tree purposevec = NULL_TREE;
16693 tree valuevec = NULL_TREE;
16694 tree chain;
16695 int i, len = -1;
16696
16697 /* Expand the argument expressions. */
16698 if (TREE_PURPOSE (t))
16699 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16700 complain, in_decl);
16701 if (TREE_VALUE (t))
16702 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16703 complain, in_decl);
16704
16705 /* Build the rest of the list. */
16706 chain = TREE_CHAIN (t);
16707 if (chain && chain != void_type_node)
16708 chain = RECUR (chain);
16709
16710 /* Determine the number of arguments. */
16711 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16712 {
16713 len = TREE_VEC_LENGTH (purposevec);
16714 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16715 }
16716 else if (TREE_CODE (valuevec) == TREE_VEC)
16717 len = TREE_VEC_LENGTH (valuevec);
16718 else
16719 {
16720 /* Since we only performed a partial substitution into
16721 the argument pack, we only RETURN (a single list
16722 node. */
16723 if (purposevec == TREE_PURPOSE (t)
16724 && valuevec == TREE_VALUE (t)
16725 && chain == TREE_CHAIN (t))
16726 RETURN (t);
16727
16728 RETURN (tree_cons (purposevec, valuevec, chain));
16729 }
16730
16731 /* Convert the argument vectors into a TREE_LIST */
16732 i = len;
16733 while (i > 0)
16734 {
16735 /* Grab the Ith values. */
16736 i--;
16737 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16738 : NULL_TREE;
16739 value
16740 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16741 : NULL_TREE;
16742
16743 /* Build the list (backwards). */
16744 chain = tree_cons (purpose, value, chain);
16745 }
16746
16747 RETURN (chain);
16748 }
16749
16750 purpose = TREE_PURPOSE (t);
16751 if (purpose)
16752 purpose = RECUR (purpose);
16753 value = TREE_VALUE (t);
16754 if (value)
16755 value = RECUR (value);
16756 chain = TREE_CHAIN (t);
16757 if (chain && chain != void_type_node)
16758 chain = RECUR (chain);
16759 if (purpose == TREE_PURPOSE (t)
16760 && value == TREE_VALUE (t)
16761 && chain == TREE_CHAIN (t))
16762 RETURN (t);
16763 RETURN (tree_cons (purpose, value, chain));
16764 }
16765
16766 case COMPONENT_REF:
16767 {
16768 tree object;
16769 tree object_type;
16770 tree member;
16771 tree r;
16772
16773 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16774 args, complain, in_decl);
16775 /* Remember that there was a reference to this entity. */
16776 if (DECL_P (object)
16777 && !mark_used (object, complain) && !(complain & tf_error))
16778 RETURN (error_mark_node);
16779 object_type = TREE_TYPE (object);
16780
16781 member = TREE_OPERAND (t, 1);
16782 if (BASELINK_P (member))
16783 member = tsubst_baselink (member,
16784 non_reference (TREE_TYPE (object)),
16785 args, complain, in_decl);
16786 else
16787 member = tsubst_copy (member, args, complain, in_decl);
16788 if (member == error_mark_node)
16789 RETURN (error_mark_node);
16790
16791 if (type_dependent_expression_p (object))
16792 /* We can't do much here. */;
16793 else if (!CLASS_TYPE_P (object_type))
16794 {
16795 if (scalarish_type_p (object_type))
16796 {
16797 tree s = NULL_TREE;
16798 tree dtor = member;
16799
16800 if (TREE_CODE (dtor) == SCOPE_REF)
16801 {
16802 s = TREE_OPERAND (dtor, 0);
16803 dtor = TREE_OPERAND (dtor, 1);
16804 }
16805 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16806 {
16807 dtor = TREE_OPERAND (dtor, 0);
16808 if (TYPE_P (dtor))
16809 RETURN (finish_pseudo_destructor_expr
16810 (object, s, dtor, input_location));
16811 }
16812 }
16813 }
16814 else if (TREE_CODE (member) == SCOPE_REF
16815 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16816 {
16817 /* Lookup the template functions now that we know what the
16818 scope is. */
16819 tree scope = TREE_OPERAND (member, 0);
16820 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16821 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16822 member = lookup_qualified_name (scope, tmpl,
16823 /*is_type_p=*/false,
16824 /*complain=*/false);
16825 if (BASELINK_P (member))
16826 {
16827 BASELINK_FUNCTIONS (member)
16828 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16829 args);
16830 member = (adjust_result_of_qualified_name_lookup
16831 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16832 object_type));
16833 }
16834 else
16835 {
16836 qualified_name_lookup_error (scope, tmpl, member,
16837 input_location);
16838 RETURN (error_mark_node);
16839 }
16840 }
16841 else if (TREE_CODE (member) == SCOPE_REF
16842 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16843 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16844 {
16845 if (complain & tf_error)
16846 {
16847 if (TYPE_P (TREE_OPERAND (member, 0)))
16848 error ("%qT is not a class or namespace",
16849 TREE_OPERAND (member, 0));
16850 else
16851 error ("%qD is not a class or namespace",
16852 TREE_OPERAND (member, 0));
16853 }
16854 RETURN (error_mark_node);
16855 }
16856 else if (TREE_CODE (member) == FIELD_DECL)
16857 {
16858 r = finish_non_static_data_member (member, object, NULL_TREE);
16859 if (TREE_CODE (r) == COMPONENT_REF)
16860 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16861 RETURN (r);
16862 }
16863
16864 r = finish_class_member_access_expr (object, member,
16865 /*template_p=*/false,
16866 complain);
16867 if (TREE_CODE (r) == COMPONENT_REF)
16868 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16869 RETURN (r);
16870 }
16871
16872 case THROW_EXPR:
16873 RETURN (build_throw
16874 (RECUR (TREE_OPERAND (t, 0))));
16875
16876 case CONSTRUCTOR:
16877 {
16878 vec<constructor_elt, va_gc> *n;
16879 constructor_elt *ce;
16880 unsigned HOST_WIDE_INT idx;
16881 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16882 bool process_index_p;
16883 int newlen;
16884 bool need_copy_p = false;
16885 tree r;
16886
16887 if (type == error_mark_node)
16888 RETURN (error_mark_node);
16889
16890 /* digest_init will do the wrong thing if we let it. */
16891 if (type && TYPE_PTRMEMFUNC_P (type))
16892 RETURN (t);
16893
16894 /* We do not want to process the index of aggregate
16895 initializers as they are identifier nodes which will be
16896 looked up by digest_init. */
16897 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16898
16899 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16900 newlen = vec_safe_length (n);
16901 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16902 {
16903 if (ce->index && process_index_p
16904 /* An identifier index is looked up in the type
16905 being initialized, not the current scope. */
16906 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16907 ce->index = RECUR (ce->index);
16908
16909 if (PACK_EXPANSION_P (ce->value))
16910 {
16911 /* Substitute into the pack expansion. */
16912 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16913 in_decl);
16914
16915 if (ce->value == error_mark_node
16916 || PACK_EXPANSION_P (ce->value))
16917 ;
16918 else if (TREE_VEC_LENGTH (ce->value) == 1)
16919 /* Just move the argument into place. */
16920 ce->value = TREE_VEC_ELT (ce->value, 0);
16921 else
16922 {
16923 /* Update the length of the final CONSTRUCTOR
16924 arguments vector, and note that we will need to
16925 copy.*/
16926 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16927 need_copy_p = true;
16928 }
16929 }
16930 else
16931 ce->value = RECUR (ce->value);
16932 }
16933
16934 if (need_copy_p)
16935 {
16936 vec<constructor_elt, va_gc> *old_n = n;
16937
16938 vec_alloc (n, newlen);
16939 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16940 {
16941 if (TREE_CODE (ce->value) == TREE_VEC)
16942 {
16943 int i, len = TREE_VEC_LENGTH (ce->value);
16944 for (i = 0; i < len; ++i)
16945 CONSTRUCTOR_APPEND_ELT (n, 0,
16946 TREE_VEC_ELT (ce->value, i));
16947 }
16948 else
16949 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16950 }
16951 }
16952
16953 r = build_constructor (init_list_type_node, n);
16954 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16955
16956 if (TREE_HAS_CONSTRUCTOR (t))
16957 RETURN (finish_compound_literal (type, r, complain));
16958
16959 TREE_TYPE (r) = type;
16960 RETURN (r);
16961 }
16962
16963 case TYPEID_EXPR:
16964 {
16965 tree operand_0 = TREE_OPERAND (t, 0);
16966 if (TYPE_P (operand_0))
16967 {
16968 operand_0 = tsubst (operand_0, args, complain, in_decl);
16969 RETURN (get_typeid (operand_0, complain));
16970 }
16971 else
16972 {
16973 operand_0 = RECUR (operand_0);
16974 RETURN (build_typeid (operand_0, complain));
16975 }
16976 }
16977
16978 case VAR_DECL:
16979 if (!args)
16980 RETURN (t);
16981 else if (DECL_PACK_P (t))
16982 {
16983 /* We don't build decls for an instantiation of a
16984 variadic capture proxy, we instantiate the elements
16985 when needed. */
16986 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16987 return RECUR (DECL_VALUE_EXPR (t));
16988 }
16989 /* Fall through */
16990
16991 case PARM_DECL:
16992 {
16993 tree r = tsubst_copy (t, args, complain, in_decl);
16994 /* ??? We're doing a subset of finish_id_expression here. */
16995 if (VAR_P (r)
16996 && !processing_template_decl
16997 && !cp_unevaluated_operand
16998 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16999 && CP_DECL_THREAD_LOCAL_P (r))
17000 {
17001 if (tree wrap = get_tls_wrapper_fn (r))
17002 /* Replace an evaluated use of the thread_local variable with
17003 a call to its wrapper. */
17004 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
17005 }
17006 else if (outer_automatic_var_p (r))
17007 {
17008 r = process_outer_var_ref (r, complain);
17009 if (is_capture_proxy (r))
17010 register_local_specialization (r, t);
17011 }
17012
17013 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
17014 /* If the original type was a reference, we'll be wrapped in
17015 the appropriate INDIRECT_REF. */
17016 r = convert_from_reference (r);
17017 RETURN (r);
17018 }
17019
17020 case VA_ARG_EXPR:
17021 {
17022 tree op0 = RECUR (TREE_OPERAND (t, 0));
17023 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17024 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
17025 }
17026
17027 case OFFSETOF_EXPR:
17028 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
17029 EXPR_LOCATION (t)));
17030
17031 case TRAIT_EXPR:
17032 {
17033 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
17034 complain, in_decl);
17035
17036 tree type2 = TRAIT_EXPR_TYPE2 (t);
17037 if (type2 && TREE_CODE (type2) == TREE_LIST)
17038 type2 = RECUR (type2);
17039 else if (type2)
17040 type2 = tsubst (type2, args, complain, in_decl);
17041
17042 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
17043 }
17044
17045 case STMT_EXPR:
17046 {
17047 tree old_stmt_expr = cur_stmt_expr;
17048 tree stmt_expr = begin_stmt_expr ();
17049
17050 cur_stmt_expr = stmt_expr;
17051 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
17052 integral_constant_expression_p);
17053 stmt_expr = finish_stmt_expr (stmt_expr, false);
17054 cur_stmt_expr = old_stmt_expr;
17055
17056 /* If the resulting list of expression statement is empty,
17057 fold it further into void_node. */
17058 if (empty_expr_stmt_p (stmt_expr))
17059 stmt_expr = void_node;
17060
17061 RETURN (stmt_expr);
17062 }
17063
17064 case LAMBDA_EXPR:
17065 {
17066 tree r = build_lambda_expr ();
17067
17068 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
17069 LAMBDA_EXPR_CLOSURE (r) = type;
17070 CLASSTYPE_LAMBDA_EXPR (type) = r;
17071
17072 LAMBDA_EXPR_LOCATION (r)
17073 = LAMBDA_EXPR_LOCATION (t);
17074 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17075 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17076 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17077 LAMBDA_EXPR_DISCRIMINATOR (r)
17078 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17079 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17080 if (!scope)
17081 /* No substitution needed. */;
17082 else if (VAR_OR_FUNCTION_DECL_P (scope))
17083 /* For a function or variable scope, we want to use tsubst so that we
17084 don't complain about referring to an auto before deduction. */
17085 scope = tsubst (scope, args, complain, in_decl);
17086 else if (TREE_CODE (scope) == PARM_DECL)
17087 {
17088 /* Look up the parameter we want directly, as tsubst_copy
17089 doesn't do what we need. */
17090 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17091 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17092 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17093 parm = DECL_CHAIN (parm);
17094 scope = parm;
17095 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17096 if (DECL_CONTEXT (scope) == NULL_TREE)
17097 DECL_CONTEXT (scope) = fn;
17098 }
17099 else if (TREE_CODE (scope) == FIELD_DECL)
17100 /* For a field, use tsubst_copy so that we look up the existing field
17101 rather than build a new one. */
17102 scope = RECUR (scope);
17103 else
17104 gcc_unreachable ();
17105 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17106 LAMBDA_EXPR_RETURN_TYPE (r)
17107 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
17108
17109 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17110 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17111
17112 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17113 determine_visibility (TYPE_NAME (type));
17114 /* Now that we know visibility, instantiate the type so we have a
17115 declaration of the op() for later calls to lambda_function. */
17116 complete_type (type);
17117
17118 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17119
17120 insert_pending_capture_proxies ();
17121
17122 RETURN (build_lambda_object (r));
17123 }
17124
17125 case TARGET_EXPR:
17126 /* We can get here for a constant initializer of non-dependent type.
17127 FIXME stop folding in cp_parser_initializer_clause. */
17128 {
17129 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17130 complain);
17131 RETURN (r);
17132 }
17133
17134 case TRANSACTION_EXPR:
17135 RETURN (tsubst_expr(t, args, complain, in_decl,
17136 integral_constant_expression_p));
17137
17138 case PAREN_EXPR:
17139 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17140
17141 case VEC_PERM_EXPR:
17142 {
17143 tree op0 = RECUR (TREE_OPERAND (t, 0));
17144 tree op1 = RECUR (TREE_OPERAND (t, 1));
17145 tree op2 = RECUR (TREE_OPERAND (t, 2));
17146 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17147 complain));
17148 }
17149
17150 case REQUIRES_EXPR:
17151 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17152
17153 default:
17154 /* Handle Objective-C++ constructs, if appropriate. */
17155 {
17156 tree subst
17157 = objcp_tsubst_copy_and_build (t, args, complain,
17158 in_decl, /*function_p=*/false);
17159 if (subst)
17160 RETURN (subst);
17161 }
17162 RETURN (tsubst_copy (t, args, complain, in_decl));
17163 }
17164
17165 #undef RECUR
17166 #undef RETURN
17167 out:
17168 input_location = loc;
17169 return retval;
17170 }
17171
17172 /* Verify that the instantiated ARGS are valid. For type arguments,
17173 make sure that the type's linkage is ok. For non-type arguments,
17174 make sure they are constants if they are integral or enumerations.
17175 Emit an error under control of COMPLAIN, and return TRUE on error. */
17176
17177 static bool
17178 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17179 {
17180 if (dependent_template_arg_p (t))
17181 return false;
17182 if (ARGUMENT_PACK_P (t))
17183 {
17184 tree vec = ARGUMENT_PACK_ARGS (t);
17185 int len = TREE_VEC_LENGTH (vec);
17186 bool result = false;
17187 int i;
17188
17189 for (i = 0; i < len; ++i)
17190 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17191 result = true;
17192 return result;
17193 }
17194 else if (TYPE_P (t))
17195 {
17196 /* [basic.link]: A name with no linkage (notably, the name
17197 of a class or enumeration declared in a local scope)
17198 shall not be used to declare an entity with linkage.
17199 This implies that names with no linkage cannot be used as
17200 template arguments
17201
17202 DR 757 relaxes this restriction for C++0x. */
17203 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17204 : no_linkage_check (t, /*relaxed_p=*/false));
17205
17206 if (nt)
17207 {
17208 /* DR 488 makes use of a type with no linkage cause
17209 type deduction to fail. */
17210 if (complain & tf_error)
17211 {
17212 if (TYPE_ANONYMOUS_P (nt))
17213 error ("%qT is/uses anonymous type", t);
17214 else
17215 error ("template argument for %qD uses local type %qT",
17216 tmpl, t);
17217 }
17218 return true;
17219 }
17220 /* In order to avoid all sorts of complications, we do not
17221 allow variably-modified types as template arguments. */
17222 else if (variably_modified_type_p (t, NULL_TREE))
17223 {
17224 if (complain & tf_error)
17225 error ("%qT is a variably modified type", t);
17226 return true;
17227 }
17228 }
17229 /* Class template and alias template arguments should be OK. */
17230 else if (DECL_TYPE_TEMPLATE_P (t))
17231 ;
17232 /* A non-type argument of integral or enumerated type must be a
17233 constant. */
17234 else if (TREE_TYPE (t)
17235 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17236 && !REFERENCE_REF_P (t)
17237 && !TREE_CONSTANT (t))
17238 {
17239 if (complain & tf_error)
17240 error ("integral expression %qE is not constant", t);
17241 return true;
17242 }
17243 return false;
17244 }
17245
17246 static bool
17247 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17248 {
17249 int ix, len = DECL_NTPARMS (tmpl);
17250 bool result = false;
17251
17252 for (ix = 0; ix != len; ix++)
17253 {
17254 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17255 result = true;
17256 }
17257 if (result && (complain & tf_error))
17258 error (" trying to instantiate %qD", tmpl);
17259 return result;
17260 }
17261
17262 /* We're out of SFINAE context now, so generate diagnostics for the access
17263 errors we saw earlier when instantiating D from TMPL and ARGS. */
17264
17265 static void
17266 recheck_decl_substitution (tree d, tree tmpl, tree args)
17267 {
17268 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17269 tree type = TREE_TYPE (pattern);
17270 location_t loc = input_location;
17271
17272 push_access_scope (d);
17273 push_deferring_access_checks (dk_no_deferred);
17274 input_location = DECL_SOURCE_LOCATION (pattern);
17275 tsubst (type, args, tf_warning_or_error, d);
17276 input_location = loc;
17277 pop_deferring_access_checks ();
17278 pop_access_scope (d);
17279 }
17280
17281 /* Instantiate the indicated variable, function, or alias template TMPL with
17282 the template arguments in TARG_PTR. */
17283
17284 static tree
17285 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17286 {
17287 tree targ_ptr = orig_args;
17288 tree fndecl;
17289 tree gen_tmpl;
17290 tree spec;
17291 bool access_ok = true;
17292
17293 if (tmpl == error_mark_node)
17294 return error_mark_node;
17295
17296 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17297
17298 /* If this function is a clone, handle it specially. */
17299 if (DECL_CLONED_FUNCTION_P (tmpl))
17300 {
17301 tree spec;
17302 tree clone;
17303
17304 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17305 DECL_CLONED_FUNCTION. */
17306 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17307 targ_ptr, complain);
17308 if (spec == error_mark_node)
17309 return error_mark_node;
17310
17311 /* Look for the clone. */
17312 FOR_EACH_CLONE (clone, spec)
17313 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17314 return clone;
17315 /* We should always have found the clone by now. */
17316 gcc_unreachable ();
17317 return NULL_TREE;
17318 }
17319
17320 if (targ_ptr == error_mark_node)
17321 return error_mark_node;
17322
17323 /* Check to see if we already have this specialization. */
17324 gen_tmpl = most_general_template (tmpl);
17325 if (tmpl != gen_tmpl)
17326 /* The TMPL is a partial instantiation. To get a full set of
17327 arguments we must add the arguments used to perform the
17328 partial instantiation. */
17329 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
17330 targ_ptr);
17331
17332 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17333 but it doesn't seem to be on the hot path. */
17334 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17335
17336 gcc_assert (tmpl == gen_tmpl
17337 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17338 == spec)
17339 || fndecl == NULL_TREE);
17340
17341 if (spec != NULL_TREE)
17342 {
17343 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17344 {
17345 if (complain & tf_error)
17346 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17347 return error_mark_node;
17348 }
17349 return spec;
17350 }
17351
17352 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17353 complain))
17354 return error_mark_node;
17355
17356 /* We are building a FUNCTION_DECL, during which the access of its
17357 parameters and return types have to be checked. However this
17358 FUNCTION_DECL which is the desired context for access checking
17359 is not built yet. We solve this chicken-and-egg problem by
17360 deferring all checks until we have the FUNCTION_DECL. */
17361 push_deferring_access_checks (dk_deferred);
17362
17363 /* Instantiation of the function happens in the context of the function
17364 template, not the context of the overload resolution we're doing. */
17365 push_to_top_level ();
17366 /* If there are dependent arguments, e.g. because we're doing partial
17367 ordering, make sure processing_template_decl stays set. */
17368 if (uses_template_parms (targ_ptr))
17369 ++processing_template_decl;
17370 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17371 {
17372 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17373 complain, gen_tmpl, true);
17374 push_nested_class (ctx);
17375 }
17376
17377 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17378
17379 if (VAR_P (pattern))
17380 {
17381 /* We need to determine if we're using a partial or explicit
17382 specialization now, because the type of the variable could be
17383 different. */
17384 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17385 tree elt = most_specialized_partial_spec (tid, complain);
17386 if (elt == error_mark_node)
17387 pattern = error_mark_node;
17388 else if (elt)
17389 {
17390 tmpl = TREE_VALUE (elt);
17391 pattern = DECL_TEMPLATE_RESULT (tmpl);
17392 targ_ptr = TREE_PURPOSE (elt);
17393 }
17394 }
17395
17396 /* Substitute template parameters to obtain the specialization. */
17397 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17398 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17399 pop_nested_class ();
17400 pop_from_top_level ();
17401
17402 if (fndecl == error_mark_node)
17403 {
17404 pop_deferring_access_checks ();
17405 return error_mark_node;
17406 }
17407
17408 /* The DECL_TI_TEMPLATE should always be the immediate parent
17409 template, not the most general template. */
17410 DECL_TI_TEMPLATE (fndecl) = tmpl;
17411 DECL_TI_ARGS (fndecl) = targ_ptr;
17412
17413 /* Now we know the specialization, compute access previously
17414 deferred. */
17415 push_access_scope (fndecl);
17416 if (!perform_deferred_access_checks (complain))
17417 access_ok = false;
17418 pop_access_scope (fndecl);
17419 pop_deferring_access_checks ();
17420
17421 /* If we've just instantiated the main entry point for a function,
17422 instantiate all the alternate entry points as well. We do this
17423 by cloning the instantiation of the main entry point, not by
17424 instantiating the template clones. */
17425 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17426 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17427
17428 if (!access_ok)
17429 {
17430 if (!(complain & tf_error))
17431 {
17432 /* Remember to reinstantiate when we're out of SFINAE so the user
17433 can see the errors. */
17434 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17435 }
17436 return error_mark_node;
17437 }
17438 return fndecl;
17439 }
17440
17441 /* Wrapper for instantiate_template_1. */
17442
17443 tree
17444 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17445 {
17446 tree ret;
17447 timevar_push (TV_TEMPLATE_INST);
17448 ret = instantiate_template_1 (tmpl, orig_args, complain);
17449 timevar_pop (TV_TEMPLATE_INST);
17450 return ret;
17451 }
17452
17453 /* Instantiate the alias template TMPL with ARGS. Also push a template
17454 instantiation level, which instantiate_template doesn't do because
17455 functions and variables have sufficient context established by the
17456 callers. */
17457
17458 static tree
17459 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17460 {
17461 struct pending_template *old_last_pend = last_pending_template;
17462 struct tinst_level *old_error_tinst = last_error_tinst_level;
17463 if (tmpl == error_mark_node || args == error_mark_node)
17464 return error_mark_node;
17465 tree tinst = build_tree_list (tmpl, args);
17466 if (!push_tinst_level (tinst))
17467 {
17468 ggc_free (tinst);
17469 return error_mark_node;
17470 }
17471
17472 args =
17473 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17474 args, tmpl, complain,
17475 /*require_all_args=*/true,
17476 /*use_default_args=*/true);
17477
17478 tree r = instantiate_template (tmpl, args, complain);
17479 pop_tinst_level ();
17480 /* We can't free this if a pending_template entry or last_error_tinst_level
17481 is pointing at it. */
17482 if (last_pending_template == old_last_pend
17483 && last_error_tinst_level == old_error_tinst)
17484 ggc_free (tinst);
17485
17486 return r;
17487 }
17488
17489 /* PARM is a template parameter pack for FN. Returns true iff
17490 PARM is used in a deducible way in the argument list of FN. */
17491
17492 static bool
17493 pack_deducible_p (tree parm, tree fn)
17494 {
17495 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17496 for (; t; t = TREE_CHAIN (t))
17497 {
17498 tree type = TREE_VALUE (t);
17499 tree packs;
17500 if (!PACK_EXPANSION_P (type))
17501 continue;
17502 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17503 packs; packs = TREE_CHAIN (packs))
17504 if (template_args_equal (TREE_VALUE (packs), parm))
17505 {
17506 /* The template parameter pack is used in a function parameter
17507 pack. If this is the end of the parameter list, the
17508 template parameter pack is deducible. */
17509 if (TREE_CHAIN (t) == void_list_node)
17510 return true;
17511 else
17512 /* Otherwise, not. Well, it could be deduced from
17513 a non-pack parameter, but doing so would end up with
17514 a deduction mismatch, so don't bother. */
17515 return false;
17516 }
17517 }
17518 /* The template parameter pack isn't used in any function parameter
17519 packs, but it might be used deeper, e.g. tuple<Args...>. */
17520 return true;
17521 }
17522
17523 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17524 NARGS elements of the arguments that are being used when calling
17525 it. TARGS is a vector into which the deduced template arguments
17526 are placed.
17527
17528 Returns either a FUNCTION_DECL for the matching specialization of FN or
17529 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17530 true, diagnostics will be printed to explain why it failed.
17531
17532 If FN is a conversion operator, or we are trying to produce a specific
17533 specialization, RETURN_TYPE is the return type desired.
17534
17535 The EXPLICIT_TARGS are explicit template arguments provided via a
17536 template-id.
17537
17538 The parameter STRICT is one of:
17539
17540 DEDUCE_CALL:
17541 We are deducing arguments for a function call, as in
17542 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17543 deducing arguments for a call to the result of a conversion
17544 function template, as in [over.call.object].
17545
17546 DEDUCE_CONV:
17547 We are deducing arguments for a conversion function, as in
17548 [temp.deduct.conv].
17549
17550 DEDUCE_EXACT:
17551 We are deducing arguments when doing an explicit instantiation
17552 as in [temp.explicit], when determining an explicit specialization
17553 as in [temp.expl.spec], or when taking the address of a function
17554 template, as in [temp.deduct.funcaddr]. */
17555
17556 tree
17557 fn_type_unification (tree fn,
17558 tree explicit_targs,
17559 tree targs,
17560 const tree *args,
17561 unsigned int nargs,
17562 tree return_type,
17563 unification_kind_t strict,
17564 int flags,
17565 bool explain_p,
17566 bool decltype_p)
17567 {
17568 tree parms;
17569 tree fntype;
17570 tree decl = NULL_TREE;
17571 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17572 bool ok;
17573 static int deduction_depth;
17574 struct pending_template *old_last_pend = last_pending_template;
17575 struct tinst_level *old_error_tinst = last_error_tinst_level;
17576 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17577 tree tinst;
17578 tree r = error_mark_node;
17579
17580 if (decltype_p)
17581 complain |= tf_decltype;
17582
17583 /* In C++0x, it's possible to have a function template whose type depends
17584 on itself recursively. This is most obvious with decltype, but can also
17585 occur with enumeration scope (c++/48969). So we need to catch infinite
17586 recursion and reject the substitution at deduction time; this function
17587 will return error_mark_node for any repeated substitution.
17588
17589 This also catches excessive recursion such as when f<N> depends on
17590 f<N-1> across all integers, and returns error_mark_node for all the
17591 substitutions back up to the initial one.
17592
17593 This is, of course, not reentrant. */
17594 if (excessive_deduction_depth)
17595 return error_mark_node;
17596 tinst = build_tree_list (fn, NULL_TREE);
17597 ++deduction_depth;
17598
17599 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17600
17601 fntype = TREE_TYPE (fn);
17602 if (explicit_targs)
17603 {
17604 /* [temp.deduct]
17605
17606 The specified template arguments must match the template
17607 parameters in kind (i.e., type, nontype, template), and there
17608 must not be more arguments than there are parameters;
17609 otherwise type deduction fails.
17610
17611 Nontype arguments must match the types of the corresponding
17612 nontype template parameters, or must be convertible to the
17613 types of the corresponding nontype parameters as specified in
17614 _temp.arg.nontype_, otherwise type deduction fails.
17615
17616 All references in the function type of the function template
17617 to the corresponding template parameters are replaced by the
17618 specified template argument values. If a substitution in a
17619 template parameter or in the function type of the function
17620 template results in an invalid type, type deduction fails. */
17621 int i, len = TREE_VEC_LENGTH (tparms);
17622 location_t loc = input_location;
17623 bool incomplete = false;
17624
17625 /* Adjust any explicit template arguments before entering the
17626 substitution context. */
17627 explicit_targs
17628 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17629 complain,
17630 /*require_all_args=*/false,
17631 /*use_default_args=*/false));
17632 if (explicit_targs == error_mark_node)
17633 goto fail;
17634
17635 /* Substitute the explicit args into the function type. This is
17636 necessary so that, for instance, explicitly declared function
17637 arguments can match null pointed constants. If we were given
17638 an incomplete set of explicit args, we must not do semantic
17639 processing during substitution as we could create partial
17640 instantiations. */
17641 for (i = 0; i < len; i++)
17642 {
17643 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17644 bool parameter_pack = false;
17645 tree targ = TREE_VEC_ELT (explicit_targs, i);
17646
17647 /* Dig out the actual parm. */
17648 if (TREE_CODE (parm) == TYPE_DECL
17649 || TREE_CODE (parm) == TEMPLATE_DECL)
17650 {
17651 parm = TREE_TYPE (parm);
17652 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17653 }
17654 else if (TREE_CODE (parm) == PARM_DECL)
17655 {
17656 parm = DECL_INITIAL (parm);
17657 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17658 }
17659
17660 if (!parameter_pack && targ == NULL_TREE)
17661 /* No explicit argument for this template parameter. */
17662 incomplete = true;
17663
17664 if (parameter_pack && pack_deducible_p (parm, fn))
17665 {
17666 /* Mark the argument pack as "incomplete". We could
17667 still deduce more arguments during unification.
17668 We remove this mark in type_unification_real. */
17669 if (targ)
17670 {
17671 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17672 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17673 = ARGUMENT_PACK_ARGS (targ);
17674 }
17675
17676 /* We have some incomplete argument packs. */
17677 incomplete = true;
17678 }
17679 }
17680
17681 TREE_VALUE (tinst) = explicit_targs;
17682 if (!push_tinst_level (tinst))
17683 {
17684 excessive_deduction_depth = true;
17685 goto fail;
17686 }
17687 processing_template_decl += incomplete;
17688 input_location = DECL_SOURCE_LOCATION (fn);
17689 /* Ignore any access checks; we'll see them again in
17690 instantiate_template and they might have the wrong
17691 access path at this point. */
17692 push_deferring_access_checks (dk_deferred);
17693 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17694 complain | tf_partial, NULL_TREE);
17695 pop_deferring_access_checks ();
17696 input_location = loc;
17697 processing_template_decl -= incomplete;
17698 pop_tinst_level ();
17699
17700 if (fntype == error_mark_node)
17701 goto fail;
17702
17703 /* Place the explicitly specified arguments in TARGS. */
17704 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17705 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17706 }
17707
17708 /* Never do unification on the 'this' parameter. */
17709 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17710
17711 if (return_type && strict == DEDUCE_CALL)
17712 {
17713 /* We're deducing for a call to the result of a template conversion
17714 function. The parms we really want are in return_type. */
17715 if (POINTER_TYPE_P (return_type))
17716 return_type = TREE_TYPE (return_type);
17717 parms = TYPE_ARG_TYPES (return_type);
17718 }
17719 else if (return_type)
17720 {
17721 tree *new_args;
17722
17723 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17724 new_args = XALLOCAVEC (tree, nargs + 1);
17725 new_args[0] = return_type;
17726 memcpy (new_args + 1, args, nargs * sizeof (tree));
17727 args = new_args;
17728 ++nargs;
17729 }
17730
17731 /* We allow incomplete unification without an error message here
17732 because the standard doesn't seem to explicitly prohibit it. Our
17733 callers must be ready to deal with unification failures in any
17734 event. */
17735
17736 TREE_VALUE (tinst) = targs;
17737 /* If we aren't explaining yet, push tinst context so we can see where
17738 any errors (e.g. from class instantiations triggered by instantiation
17739 of default template arguments) come from. If we are explaining, this
17740 context is redundant. */
17741 if (!explain_p && !push_tinst_level (tinst))
17742 {
17743 excessive_deduction_depth = true;
17744 goto fail;
17745 }
17746
17747 /* type_unification_real will pass back any access checks from default
17748 template argument substitution. */
17749 vec<deferred_access_check, va_gc> *checks;
17750 checks = NULL;
17751
17752 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17753 targs, parms, args, nargs, /*subr=*/0,
17754 strict, flags, &checks, explain_p);
17755 if (!explain_p)
17756 pop_tinst_level ();
17757 if (!ok)
17758 goto fail;
17759
17760 /* Now that we have bindings for all of the template arguments,
17761 ensure that the arguments deduced for the template template
17762 parameters have compatible template parameter lists. We cannot
17763 check this property before we have deduced all template
17764 arguments, because the template parameter types of a template
17765 template parameter might depend on prior template parameters
17766 deduced after the template template parameter. The following
17767 ill-formed example illustrates this issue:
17768
17769 template<typename T, template<T> class C> void f(C<5>, T);
17770
17771 template<int N> struct X {};
17772
17773 void g() {
17774 f(X<5>(), 5l); // error: template argument deduction fails
17775 }
17776
17777 The template parameter list of 'C' depends on the template type
17778 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17779 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17780 time that we deduce 'C'. */
17781 if (!template_template_parm_bindings_ok_p
17782 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17783 {
17784 unify_inconsistent_template_template_parameters (explain_p);
17785 goto fail;
17786 }
17787
17788 /* All is well so far. Now, check:
17789
17790 [temp.deduct]
17791
17792 When all template arguments have been deduced, all uses of
17793 template parameters in nondeduced contexts are replaced with
17794 the corresponding deduced argument values. If the
17795 substitution results in an invalid type, as described above,
17796 type deduction fails. */
17797 TREE_VALUE (tinst) = targs;
17798 if (!push_tinst_level (tinst))
17799 {
17800 excessive_deduction_depth = true;
17801 goto fail;
17802 }
17803
17804 /* Also collect access checks from the instantiation. */
17805 reopen_deferring_access_checks (checks);
17806
17807 decl = instantiate_template (fn, targs, complain);
17808
17809 checks = get_deferred_access_checks ();
17810 pop_deferring_access_checks ();
17811
17812 pop_tinst_level ();
17813
17814 if (decl == error_mark_node)
17815 goto fail;
17816
17817 /* Now perform any access checks encountered during substitution. */
17818 push_access_scope (decl);
17819 ok = perform_access_checks (checks, complain);
17820 pop_access_scope (decl);
17821 if (!ok)
17822 goto fail;
17823
17824 /* If we're looking for an exact match, check that what we got
17825 is indeed an exact match. It might not be if some template
17826 parameters are used in non-deduced contexts. But don't check
17827 for an exact match if we have dependent template arguments;
17828 in that case we're doing partial ordering, and we already know
17829 that we have two candidates that will provide the actual type. */
17830 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17831 {
17832 tree substed = TREE_TYPE (decl);
17833 unsigned int i;
17834
17835 tree sarg
17836 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17837 if (return_type)
17838 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17839 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17840 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17841 {
17842 unify_type_mismatch (explain_p, args[i],
17843 TREE_VALUE (sarg));
17844 goto fail;
17845 }
17846 }
17847
17848 r = decl;
17849
17850 fail:
17851 --deduction_depth;
17852 if (excessive_deduction_depth)
17853 {
17854 if (deduction_depth == 0)
17855 /* Reset once we're all the way out. */
17856 excessive_deduction_depth = false;
17857 }
17858
17859 /* We can't free this if a pending_template entry or last_error_tinst_level
17860 is pointing at it. */
17861 if (last_pending_template == old_last_pend
17862 && last_error_tinst_level == old_error_tinst)
17863 ggc_free (tinst);
17864
17865 return r;
17866 }
17867
17868 /* Adjust types before performing type deduction, as described in
17869 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17870 sections are symmetric. PARM is the type of a function parameter
17871 or the return type of the conversion function. ARG is the type of
17872 the argument passed to the call, or the type of the value
17873 initialized with the result of the conversion function.
17874 ARG_EXPR is the original argument expression, which may be null. */
17875
17876 static int
17877 maybe_adjust_types_for_deduction (unification_kind_t strict,
17878 tree* parm,
17879 tree* arg,
17880 tree arg_expr)
17881 {
17882 int result = 0;
17883
17884 switch (strict)
17885 {
17886 case DEDUCE_CALL:
17887 break;
17888
17889 case DEDUCE_CONV:
17890 /* Swap PARM and ARG throughout the remainder of this
17891 function; the handling is precisely symmetric since PARM
17892 will initialize ARG rather than vice versa. */
17893 std::swap (parm, arg);
17894 break;
17895
17896 case DEDUCE_EXACT:
17897 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17898 too, but here handle it by stripping the reference from PARM
17899 rather than by adding it to ARG. */
17900 if (TREE_CODE (*parm) == REFERENCE_TYPE
17901 && TYPE_REF_IS_RVALUE (*parm)
17902 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17903 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17904 && TREE_CODE (*arg) == REFERENCE_TYPE
17905 && !TYPE_REF_IS_RVALUE (*arg))
17906 *parm = TREE_TYPE (*parm);
17907 /* Nothing else to do in this case. */
17908 return 0;
17909
17910 default:
17911 gcc_unreachable ();
17912 }
17913
17914 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17915 {
17916 /* [temp.deduct.call]
17917
17918 If P is not a reference type:
17919
17920 --If A is an array type, the pointer type produced by the
17921 array-to-pointer standard conversion (_conv.array_) is
17922 used in place of A for type deduction; otherwise,
17923
17924 --If A is a function type, the pointer type produced by
17925 the function-to-pointer standard conversion
17926 (_conv.func_) is used in place of A for type deduction;
17927 otherwise,
17928
17929 --If A is a cv-qualified type, the top level
17930 cv-qualifiers of A's type are ignored for type
17931 deduction. */
17932 if (TREE_CODE (*arg) == ARRAY_TYPE)
17933 *arg = build_pointer_type (TREE_TYPE (*arg));
17934 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17935 *arg = build_pointer_type (*arg);
17936 else
17937 *arg = TYPE_MAIN_VARIANT (*arg);
17938 }
17939
17940 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17941 of the form T&&, where T is a template parameter, and the argument
17942 is an lvalue, T is deduced as A& */
17943 if (TREE_CODE (*parm) == REFERENCE_TYPE
17944 && TYPE_REF_IS_RVALUE (*parm)
17945 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17946 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17947 && (arg_expr ? real_lvalue_p (arg_expr)
17948 /* try_one_overload doesn't provide an arg_expr, but
17949 functions are always lvalues. */
17950 : TREE_CODE (*arg) == FUNCTION_TYPE))
17951 *arg = build_reference_type (*arg);
17952
17953 /* [temp.deduct.call]
17954
17955 If P is a cv-qualified type, the top level cv-qualifiers
17956 of P's type are ignored for type deduction. If P is a
17957 reference type, the type referred to by P is used for
17958 type deduction. */
17959 *parm = TYPE_MAIN_VARIANT (*parm);
17960 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17961 {
17962 *parm = TREE_TYPE (*parm);
17963 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17964 }
17965
17966 /* DR 322. For conversion deduction, remove a reference type on parm
17967 too (which has been swapped into ARG). */
17968 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17969 *arg = TREE_TYPE (*arg);
17970
17971 return result;
17972 }
17973
17974 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17975 template which does contain any deducible template parameters; check if
17976 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17977 unify_one_argument. */
17978
17979 static int
17980 check_non_deducible_conversion (tree parm, tree arg, int strict,
17981 int flags, bool explain_p)
17982 {
17983 tree type;
17984
17985 if (!TYPE_P (arg))
17986 type = TREE_TYPE (arg);
17987 else
17988 type = arg;
17989
17990 if (same_type_p (parm, type))
17991 return unify_success (explain_p);
17992
17993 if (strict == DEDUCE_CONV)
17994 {
17995 if (can_convert_arg (type, parm, NULL_TREE, flags,
17996 explain_p ? tf_warning_or_error : tf_none))
17997 return unify_success (explain_p);
17998 }
17999 else if (strict != DEDUCE_EXACT)
18000 {
18001 if (can_convert_arg (parm, type,
18002 TYPE_P (arg) ? NULL_TREE : arg,
18003 flags, explain_p ? tf_warning_or_error : tf_none))
18004 return unify_success (explain_p);
18005 }
18006
18007 if (strict == DEDUCE_EXACT)
18008 return unify_type_mismatch (explain_p, parm, arg);
18009 else
18010 return unify_arg_conversion (explain_p, parm, type, arg);
18011 }
18012
18013 static bool uses_deducible_template_parms (tree type);
18014
18015 /* Returns true iff the expression EXPR is one from which a template
18016 argument can be deduced. In other words, if it's an undecorated
18017 use of a template non-type parameter. */
18018
18019 static bool
18020 deducible_expression (tree expr)
18021 {
18022 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
18023 }
18024
18025 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18026 deducible way; that is, if it has a max value of <PARM> - 1. */
18027
18028 static bool
18029 deducible_array_bound (tree domain)
18030 {
18031 if (domain == NULL_TREE)
18032 return false;
18033
18034 tree max = TYPE_MAX_VALUE (domain);
18035 if (TREE_CODE (max) != MINUS_EXPR)
18036 return false;
18037
18038 return deducible_expression (TREE_OPERAND (max, 0));
18039 }
18040
18041 /* Returns true iff the template arguments ARGS use a template parameter
18042 in a deducible way. */
18043
18044 static bool
18045 deducible_template_args (tree args)
18046 {
18047 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
18048 {
18049 bool deducible;
18050 tree elt = TREE_VEC_ELT (args, i);
18051 if (ARGUMENT_PACK_P (elt))
18052 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
18053 else
18054 {
18055 if (PACK_EXPANSION_P (elt))
18056 elt = PACK_EXPANSION_PATTERN (elt);
18057 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
18058 deducible = true;
18059 else if (TYPE_P (elt))
18060 deducible = uses_deducible_template_parms (elt);
18061 else
18062 deducible = deducible_expression (elt);
18063 }
18064 if (deducible)
18065 return true;
18066 }
18067 return false;
18068 }
18069
18070 /* Returns true iff TYPE contains any deducible references to template
18071 parameters, as per 14.8.2.5. */
18072
18073 static bool
18074 uses_deducible_template_parms (tree type)
18075 {
18076 if (PACK_EXPANSION_P (type))
18077 type = PACK_EXPANSION_PATTERN (type);
18078
18079 /* T
18080 cv-list T
18081 TT<T>
18082 TT<i>
18083 TT<> */
18084 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18085 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18086 return true;
18087
18088 /* T*
18089 T&
18090 T&& */
18091 if (POINTER_TYPE_P (type))
18092 return uses_deducible_template_parms (TREE_TYPE (type));
18093
18094 /* T[integer-constant ]
18095 type [i] */
18096 if (TREE_CODE (type) == ARRAY_TYPE)
18097 return (uses_deducible_template_parms (TREE_TYPE (type))
18098 || deducible_array_bound (TYPE_DOMAIN (type)));
18099
18100 /* T type ::*
18101 type T::*
18102 T T::*
18103 T (type ::*)()
18104 type (T::*)()
18105 type (type ::*)(T)
18106 type (T::*)(T)
18107 T (type ::*)(T)
18108 T (T::*)()
18109 T (T::*)(T) */
18110 if (TYPE_PTRMEM_P (type))
18111 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18112 || (uses_deducible_template_parms
18113 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18114
18115 /* template-name <T> (where template-name refers to a class template)
18116 template-name <i> (where template-name refers to a class template) */
18117 if (CLASS_TYPE_P (type)
18118 && CLASSTYPE_TEMPLATE_INFO (type)
18119 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18120 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18121 (CLASSTYPE_TI_ARGS (type)));
18122
18123 /* type (T)
18124 T()
18125 T(T) */
18126 if (TREE_CODE (type) == FUNCTION_TYPE
18127 || TREE_CODE (type) == METHOD_TYPE)
18128 {
18129 if (uses_deducible_template_parms (TREE_TYPE (type)))
18130 return true;
18131 tree parm = TYPE_ARG_TYPES (type);
18132 if (TREE_CODE (type) == METHOD_TYPE)
18133 parm = TREE_CHAIN (parm);
18134 for (; parm; parm = TREE_CHAIN (parm))
18135 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18136 return true;
18137 }
18138
18139 return false;
18140 }
18141
18142 /* Subroutine of type_unification_real and unify_pack_expansion to
18143 handle unification of a single P/A pair. Parameters are as
18144 for those functions. */
18145
18146 static int
18147 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18148 int subr, unification_kind_t strict,
18149 bool explain_p)
18150 {
18151 tree arg_expr = NULL_TREE;
18152 int arg_strict;
18153
18154 if (arg == error_mark_node || parm == error_mark_node)
18155 return unify_invalid (explain_p);
18156 if (arg == unknown_type_node)
18157 /* We can't deduce anything from this, but we might get all the
18158 template args from other function args. */
18159 return unify_success (explain_p);
18160
18161 /* Implicit conversions (Clause 4) will be performed on a function
18162 argument to convert it to the type of the corresponding function
18163 parameter if the parameter type contains no template-parameters that
18164 participate in template argument deduction. */
18165 if (strict != DEDUCE_EXACT
18166 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18167 /* For function parameters with no deducible template parameters,
18168 just return. We'll check non-dependent conversions later. */
18169 return unify_success (explain_p);
18170
18171 switch (strict)
18172 {
18173 case DEDUCE_CALL:
18174 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18175 | UNIFY_ALLOW_MORE_CV_QUAL
18176 | UNIFY_ALLOW_DERIVED);
18177 break;
18178
18179 case DEDUCE_CONV:
18180 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18181 break;
18182
18183 case DEDUCE_EXACT:
18184 arg_strict = UNIFY_ALLOW_NONE;
18185 break;
18186
18187 default:
18188 gcc_unreachable ();
18189 }
18190
18191 /* We only do these transformations if this is the top-level
18192 parameter_type_list in a call or declaration matching; in other
18193 situations (nested function declarators, template argument lists) we
18194 won't be comparing a type to an expression, and we don't do any type
18195 adjustments. */
18196 if (!subr)
18197 {
18198 if (!TYPE_P (arg))
18199 {
18200 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18201 if (type_unknown_p (arg))
18202 {
18203 /* [temp.deduct.type] A template-argument can be
18204 deduced from a pointer to function or pointer
18205 to member function argument if the set of
18206 overloaded functions does not contain function
18207 templates and at most one of a set of
18208 overloaded functions provides a unique
18209 match. */
18210
18211 if (resolve_overloaded_unification
18212 (tparms, targs, parm, arg, strict,
18213 arg_strict, explain_p))
18214 return unify_success (explain_p);
18215 return unify_overload_resolution_failure (explain_p, arg);
18216 }
18217
18218 arg_expr = arg;
18219 arg = unlowered_expr_type (arg);
18220 if (arg == error_mark_node)
18221 return unify_invalid (explain_p);
18222 }
18223
18224 arg_strict |=
18225 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18226 }
18227 else
18228 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18229 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18230 return unify_template_argument_mismatch (explain_p, parm, arg);
18231
18232 /* For deduction from an init-list we need the actual list. */
18233 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18234 arg = arg_expr;
18235 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18236 }
18237
18238 /* Most parms like fn_type_unification.
18239
18240 If SUBR is 1, we're being called recursively (to unify the
18241 arguments of a function or method parameter of a function
18242 template).
18243
18244 CHECKS is a pointer to a vector of access checks encountered while
18245 substituting default template arguments. */
18246
18247 static int
18248 type_unification_real (tree tparms,
18249 tree targs,
18250 tree xparms,
18251 const tree *xargs,
18252 unsigned int xnargs,
18253 int subr,
18254 unification_kind_t strict,
18255 int flags,
18256 vec<deferred_access_check, va_gc> **checks,
18257 bool explain_p)
18258 {
18259 tree parm, arg;
18260 int i;
18261 int ntparms = TREE_VEC_LENGTH (tparms);
18262 int saw_undeduced = 0;
18263 tree parms;
18264 const tree *args;
18265 unsigned int nargs;
18266 unsigned int ia;
18267
18268 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18269 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18270 gcc_assert (ntparms > 0);
18271
18272 /* Reset the number of non-defaulted template arguments contained
18273 in TARGS. */
18274 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18275
18276 again:
18277 parms = xparms;
18278 args = xargs;
18279 nargs = xnargs;
18280
18281 ia = 0;
18282 while (parms && parms != void_list_node
18283 && ia < nargs)
18284 {
18285 parm = TREE_VALUE (parms);
18286
18287 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18288 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18289 /* For a function parameter pack that occurs at the end of the
18290 parameter-declaration-list, the type A of each remaining
18291 argument of the call is compared with the type P of the
18292 declarator-id of the function parameter pack. */
18293 break;
18294
18295 parms = TREE_CHAIN (parms);
18296
18297 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18298 /* For a function parameter pack that does not occur at the
18299 end of the parameter-declaration-list, the type of the
18300 parameter pack is a non-deduced context. */
18301 continue;
18302
18303 arg = args[ia];
18304 ++ia;
18305
18306 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18307 explain_p))
18308 return 1;
18309 }
18310
18311 if (parms
18312 && parms != void_list_node
18313 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18314 {
18315 /* Unify the remaining arguments with the pack expansion type. */
18316 tree argvec;
18317 tree parmvec = make_tree_vec (1);
18318
18319 /* Allocate a TREE_VEC and copy in all of the arguments */
18320 argvec = make_tree_vec (nargs - ia);
18321 for (i = 0; ia < nargs; ++ia, ++i)
18322 TREE_VEC_ELT (argvec, i) = args[ia];
18323
18324 /* Copy the parameter into parmvec. */
18325 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18326 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18327 /*subr=*/subr, explain_p))
18328 return 1;
18329
18330 /* Advance to the end of the list of parameters. */
18331 parms = TREE_CHAIN (parms);
18332 }
18333
18334 /* Fail if we've reached the end of the parm list, and more args
18335 are present, and the parm list isn't variadic. */
18336 if (ia < nargs && parms == void_list_node)
18337 return unify_too_many_arguments (explain_p, nargs, ia);
18338 /* Fail if parms are left and they don't have default values and
18339 they aren't all deduced as empty packs (c++/57397). This is
18340 consistent with sufficient_parms_p. */
18341 if (parms && parms != void_list_node
18342 && TREE_PURPOSE (parms) == NULL_TREE)
18343 {
18344 unsigned int count = nargs;
18345 tree p = parms;
18346 bool type_pack_p;
18347 do
18348 {
18349 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18350 if (!type_pack_p)
18351 count++;
18352 p = TREE_CHAIN (p);
18353 }
18354 while (p && p != void_list_node);
18355 if (count != nargs)
18356 return unify_too_few_arguments (explain_p, ia, count,
18357 type_pack_p);
18358 }
18359
18360 if (!subr)
18361 {
18362 tsubst_flags_t complain = (explain_p
18363 ? tf_warning_or_error
18364 : tf_none);
18365
18366 for (i = 0; i < ntparms; i++)
18367 {
18368 tree targ = TREE_VEC_ELT (targs, i);
18369 tree tparm = TREE_VEC_ELT (tparms, i);
18370
18371 /* Clear the "incomplete" flags on all argument packs now so that
18372 substituting them into later default arguments works. */
18373 if (targ && ARGUMENT_PACK_P (targ))
18374 {
18375 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18376 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18377 }
18378
18379 if (targ || tparm == error_mark_node)
18380 continue;
18381 tparm = TREE_VALUE (tparm);
18382
18383 /* If this is an undeduced nontype parameter that depends on
18384 a type parameter, try another pass; its type may have been
18385 deduced from a later argument than the one from which
18386 this parameter can be deduced. */
18387 if (TREE_CODE (tparm) == PARM_DECL
18388 && uses_template_parms (TREE_TYPE (tparm))
18389 && saw_undeduced < 2)
18390 {
18391 saw_undeduced = 1;
18392 continue;
18393 }
18394
18395 /* Core issue #226 (C++0x) [temp.deduct]:
18396
18397 If a template argument has not been deduced, its
18398 default template argument, if any, is used.
18399
18400 When we are in C++98 mode, TREE_PURPOSE will either
18401 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18402 to explicitly check cxx_dialect here. */
18403 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18404 /* OK, there is a default argument. Wait until after the
18405 conversion check to do substitution. */
18406 continue;
18407
18408 /* If the type parameter is a parameter pack, then it will
18409 be deduced to an empty parameter pack. */
18410 if (template_parameter_pack_p (tparm))
18411 {
18412 tree arg;
18413
18414 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18415 {
18416 arg = make_node (NONTYPE_ARGUMENT_PACK);
18417 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18418 TREE_CONSTANT (arg) = 1;
18419 }
18420 else
18421 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18422
18423 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18424
18425 TREE_VEC_ELT (targs, i) = arg;
18426 continue;
18427 }
18428
18429 return unify_parameter_deduction_failure (explain_p, tparm);
18430 }
18431
18432 /* DR 1391: All parameters have args, now check non-dependent parms for
18433 convertibility. */
18434 if (saw_undeduced < 2)
18435 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18436 parms && parms != void_list_node && ia < nargs; )
18437 {
18438 parm = TREE_VALUE (parms);
18439
18440 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18441 && (!TREE_CHAIN (parms)
18442 || TREE_CHAIN (parms) == void_list_node))
18443 /* For a function parameter pack that occurs at the end of the
18444 parameter-declaration-list, the type A of each remaining
18445 argument of the call is compared with the type P of the
18446 declarator-id of the function parameter pack. */
18447 break;
18448
18449 parms = TREE_CHAIN (parms);
18450
18451 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18452 /* For a function parameter pack that does not occur at the
18453 end of the parameter-declaration-list, the type of the
18454 parameter pack is a non-deduced context. */
18455 continue;
18456
18457 arg = args[ia];
18458 ++ia;
18459
18460 if (uses_template_parms (parm))
18461 continue;
18462 if (check_non_deducible_conversion (parm, arg, strict, flags,
18463 explain_p))
18464 return 1;
18465 }
18466
18467 /* Now substitute into the default template arguments. */
18468 for (i = 0; i < ntparms; i++)
18469 {
18470 tree targ = TREE_VEC_ELT (targs, i);
18471 tree tparm = TREE_VEC_ELT (tparms, i);
18472
18473 if (targ || tparm == error_mark_node)
18474 continue;
18475 tree parm = TREE_VALUE (tparm);
18476
18477 if (TREE_CODE (parm) == PARM_DECL
18478 && uses_template_parms (TREE_TYPE (parm))
18479 && saw_undeduced < 2)
18480 continue;
18481
18482 tree arg = TREE_PURPOSE (tparm);
18483 reopen_deferring_access_checks (*checks);
18484 location_t save_loc = input_location;
18485 if (DECL_P (parm))
18486 input_location = DECL_SOURCE_LOCATION (parm);
18487 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18488 arg = convert_template_argument (parm, arg, targs, complain,
18489 i, NULL_TREE);
18490 input_location = save_loc;
18491 *checks = get_deferred_access_checks ();
18492 pop_deferring_access_checks ();
18493 if (arg == error_mark_node)
18494 return 1;
18495 else
18496 {
18497 TREE_VEC_ELT (targs, i) = arg;
18498 /* The position of the first default template argument,
18499 is also the number of non-defaulted arguments in TARGS.
18500 Record that. */
18501 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18502 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18503 continue;
18504 }
18505 }
18506
18507 if (saw_undeduced++ == 1)
18508 goto again;
18509 }
18510
18511 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18512 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18513
18514 return unify_success (explain_p);
18515 }
18516
18517 /* Subroutine of type_unification_real. Args are like the variables
18518 at the call site. ARG is an overloaded function (or template-id);
18519 we try deducing template args from each of the overloads, and if
18520 only one succeeds, we go with that. Modifies TARGS and returns
18521 true on success. */
18522
18523 static bool
18524 resolve_overloaded_unification (tree tparms,
18525 tree targs,
18526 tree parm,
18527 tree arg,
18528 unification_kind_t strict,
18529 int sub_strict,
18530 bool explain_p)
18531 {
18532 tree tempargs = copy_node (targs);
18533 int good = 0;
18534 tree goodfn = NULL_TREE;
18535 bool addr_p;
18536
18537 if (TREE_CODE (arg) == ADDR_EXPR)
18538 {
18539 arg = TREE_OPERAND (arg, 0);
18540 addr_p = true;
18541 }
18542 else
18543 addr_p = false;
18544
18545 if (TREE_CODE (arg) == COMPONENT_REF)
18546 /* Handle `&x' where `x' is some static or non-static member
18547 function name. */
18548 arg = TREE_OPERAND (arg, 1);
18549
18550 if (TREE_CODE (arg) == OFFSET_REF)
18551 arg = TREE_OPERAND (arg, 1);
18552
18553 /* Strip baselink information. */
18554 if (BASELINK_P (arg))
18555 arg = BASELINK_FUNCTIONS (arg);
18556
18557 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18558 {
18559 /* If we got some explicit template args, we need to plug them into
18560 the affected templates before we try to unify, in case the
18561 explicit args will completely resolve the templates in question. */
18562
18563 int ok = 0;
18564 tree expl_subargs = TREE_OPERAND (arg, 1);
18565 arg = TREE_OPERAND (arg, 0);
18566
18567 for (; arg; arg = OVL_NEXT (arg))
18568 {
18569 tree fn = OVL_CURRENT (arg);
18570 tree subargs, elem;
18571
18572 if (TREE_CODE (fn) != TEMPLATE_DECL)
18573 continue;
18574
18575 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18576 expl_subargs, NULL_TREE, tf_none,
18577 /*require_all_args=*/true,
18578 /*use_default_args=*/true);
18579 if (subargs != error_mark_node
18580 && !any_dependent_template_arguments_p (subargs))
18581 {
18582 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18583 if (try_one_overload (tparms, targs, tempargs, parm,
18584 elem, strict, sub_strict, addr_p, explain_p)
18585 && (!goodfn || !same_type_p (goodfn, elem)))
18586 {
18587 goodfn = elem;
18588 ++good;
18589 }
18590 }
18591 else if (subargs)
18592 ++ok;
18593 }
18594 /* If no templates (or more than one) are fully resolved by the
18595 explicit arguments, this template-id is a non-deduced context; it
18596 could still be OK if we deduce all template arguments for the
18597 enclosing call through other arguments. */
18598 if (good != 1)
18599 good = ok;
18600 }
18601 else if (TREE_CODE (arg) != OVERLOAD
18602 && TREE_CODE (arg) != FUNCTION_DECL)
18603 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18604 -- but the deduction does not succeed because the expression is
18605 not just the function on its own. */
18606 return false;
18607 else
18608 for (; arg; arg = OVL_NEXT (arg))
18609 if (try_one_overload (tparms, targs, tempargs, parm,
18610 TREE_TYPE (OVL_CURRENT (arg)),
18611 strict, sub_strict, addr_p, explain_p)
18612 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18613 {
18614 goodfn = OVL_CURRENT (arg);
18615 ++good;
18616 }
18617
18618 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18619 to function or pointer to member function argument if the set of
18620 overloaded functions does not contain function templates and at most
18621 one of a set of overloaded functions provides a unique match.
18622
18623 So if we found multiple possibilities, we return success but don't
18624 deduce anything. */
18625
18626 if (good == 1)
18627 {
18628 int i = TREE_VEC_LENGTH (targs);
18629 for (; i--; )
18630 if (TREE_VEC_ELT (tempargs, i))
18631 {
18632 tree old = TREE_VEC_ELT (targs, i);
18633 tree new_ = TREE_VEC_ELT (tempargs, i);
18634 if (new_ && old && ARGUMENT_PACK_P (old)
18635 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18636 /* Don't forget explicit template arguments in a pack. */
18637 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18638 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18639 TREE_VEC_ELT (targs, i) = new_;
18640 }
18641 }
18642 if (good)
18643 return true;
18644
18645 return false;
18646 }
18647
18648 /* Core DR 115: In contexts where deduction is done and fails, or in
18649 contexts where deduction is not done, if a template argument list is
18650 specified and it, along with any default template arguments, identifies
18651 a single function template specialization, then the template-id is an
18652 lvalue for the function template specialization. */
18653
18654 tree
18655 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
18656 {
18657 tree expr, offset, baselink;
18658 bool addr;
18659
18660 if (!type_unknown_p (orig_expr))
18661 return orig_expr;
18662
18663 expr = orig_expr;
18664 addr = false;
18665 offset = NULL_TREE;
18666 baselink = NULL_TREE;
18667
18668 if (TREE_CODE (expr) == ADDR_EXPR)
18669 {
18670 expr = TREE_OPERAND (expr, 0);
18671 addr = true;
18672 }
18673 if (TREE_CODE (expr) == OFFSET_REF)
18674 {
18675 offset = expr;
18676 expr = TREE_OPERAND (expr, 1);
18677 }
18678 if (BASELINK_P (expr))
18679 {
18680 baselink = expr;
18681 expr = BASELINK_FUNCTIONS (expr);
18682 }
18683
18684 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18685 {
18686 int good = 0;
18687 tree goodfn = NULL_TREE;
18688
18689 /* If we got some explicit template args, we need to plug them into
18690 the affected templates before we try to unify, in case the
18691 explicit args will completely resolve the templates in question. */
18692
18693 tree expl_subargs = TREE_OPERAND (expr, 1);
18694 tree arg = TREE_OPERAND (expr, 0);
18695 tree badfn = NULL_TREE;
18696 tree badargs = NULL_TREE;
18697
18698 for (; arg; arg = OVL_NEXT (arg))
18699 {
18700 tree fn = OVL_CURRENT (arg);
18701 tree subargs, elem;
18702
18703 if (TREE_CODE (fn) != TEMPLATE_DECL)
18704 continue;
18705
18706 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18707 expl_subargs, NULL_TREE, tf_none,
18708 /*require_all_args=*/true,
18709 /*use_default_args=*/true);
18710 if (subargs != error_mark_node
18711 && !any_dependent_template_arguments_p (subargs))
18712 {
18713 elem = instantiate_template (fn, subargs, tf_none);
18714 if (elem == error_mark_node)
18715 {
18716 badfn = fn;
18717 badargs = subargs;
18718 }
18719 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18720 {
18721 goodfn = elem;
18722 ++good;
18723 }
18724 }
18725 }
18726 if (good == 1)
18727 {
18728 mark_used (goodfn);
18729 expr = goodfn;
18730 if (baselink)
18731 expr = build_baselink (BASELINK_BINFO (baselink),
18732 BASELINK_ACCESS_BINFO (baselink),
18733 expr, BASELINK_OPTYPE (baselink));
18734 if (offset)
18735 {
18736 tree base
18737 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18738 expr = build_offset_ref (base, expr, addr, complain);
18739 }
18740 if (addr)
18741 expr = cp_build_addr_expr (expr, complain);
18742 return expr;
18743 }
18744 else if (good == 0 && badargs && (complain & tf_error))
18745 /* There were no good options and at least one bad one, so let the
18746 user know what the problem is. */
18747 instantiate_template (badfn, badargs, complain);
18748 }
18749 return orig_expr;
18750 }
18751
18752 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18753 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18754 different overloads deduce different arguments for a given parm.
18755 ADDR_P is true if the expression for which deduction is being
18756 performed was of the form "& fn" rather than simply "fn".
18757
18758 Returns 1 on success. */
18759
18760 static int
18761 try_one_overload (tree tparms,
18762 tree orig_targs,
18763 tree targs,
18764 tree parm,
18765 tree arg,
18766 unification_kind_t strict,
18767 int sub_strict,
18768 bool addr_p,
18769 bool explain_p)
18770 {
18771 int nargs;
18772 tree tempargs;
18773 int i;
18774
18775 if (arg == error_mark_node)
18776 return 0;
18777
18778 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18779 to function or pointer to member function argument if the set of
18780 overloaded functions does not contain function templates and at most
18781 one of a set of overloaded functions provides a unique match.
18782
18783 So if this is a template, just return success. */
18784
18785 if (uses_template_parms (arg))
18786 return 1;
18787
18788 if (TREE_CODE (arg) == METHOD_TYPE)
18789 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18790 else if (addr_p)
18791 arg = build_pointer_type (arg);
18792
18793 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18794
18795 /* We don't copy orig_targs for this because if we have already deduced
18796 some template args from previous args, unify would complain when we
18797 try to deduce a template parameter for the same argument, even though
18798 there isn't really a conflict. */
18799 nargs = TREE_VEC_LENGTH (targs);
18800 tempargs = make_tree_vec (nargs);
18801
18802 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18803 return 0;
18804
18805 /* First make sure we didn't deduce anything that conflicts with
18806 explicitly specified args. */
18807 for (i = nargs; i--; )
18808 {
18809 tree elt = TREE_VEC_ELT (tempargs, i);
18810 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18811
18812 if (!elt)
18813 /*NOP*/;
18814 else if (uses_template_parms (elt))
18815 /* Since we're unifying against ourselves, we will fill in
18816 template args used in the function parm list with our own
18817 template parms. Discard them. */
18818 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18819 else if (oldelt && ARGUMENT_PACK_P (oldelt))
18820 {
18821 /* Check that the argument at each index of the deduced argument pack
18822 is equivalent to the corresponding explicitly specified argument.
18823 We may have deduced more arguments than were explicitly specified,
18824 and that's OK. */
18825 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt));
18826 gcc_assert (ARGUMENT_PACK_ARGS (oldelt)
18827 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt));
18828
18829 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
18830 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
18831
18832 if (TREE_VEC_LENGTH (deduced_pack)
18833 < TREE_VEC_LENGTH (explicit_pack))
18834 return 0;
18835
18836 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
18837 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
18838 TREE_VEC_ELT (deduced_pack, j)))
18839 return 0;
18840 }
18841 else if (oldelt && !template_args_equal (oldelt, elt))
18842 return 0;
18843 }
18844
18845 for (i = nargs; i--; )
18846 {
18847 tree elt = TREE_VEC_ELT (tempargs, i);
18848
18849 if (elt)
18850 TREE_VEC_ELT (targs, i) = elt;
18851 }
18852
18853 return 1;
18854 }
18855
18856 /* PARM is a template class (perhaps with unbound template
18857 parameters). ARG is a fully instantiated type. If ARG can be
18858 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18859 TARGS are as for unify. */
18860
18861 static tree
18862 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18863 bool explain_p)
18864 {
18865 tree copy_of_targs;
18866
18867 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18868 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18869 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18870 return NULL_TREE;
18871
18872 /* We need to make a new template argument vector for the call to
18873 unify. If we used TARGS, we'd clutter it up with the result of
18874 the attempted unification, even if this class didn't work out.
18875 We also don't want to commit ourselves to all the unifications
18876 we've already done, since unification is supposed to be done on
18877 an argument-by-argument basis. In other words, consider the
18878 following pathological case:
18879
18880 template <int I, int J, int K>
18881 struct S {};
18882
18883 template <int I, int J>
18884 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18885
18886 template <int I, int J, int K>
18887 void f(S<I, J, K>, S<I, I, I>);
18888
18889 void g() {
18890 S<0, 0, 0> s0;
18891 S<0, 1, 2> s2;
18892
18893 f(s0, s2);
18894 }
18895
18896 Now, by the time we consider the unification involving `s2', we
18897 already know that we must have `f<0, 0, 0>'. But, even though
18898 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18899 because there are two ways to unify base classes of S<0, 1, 2>
18900 with S<I, I, I>. If we kept the already deduced knowledge, we
18901 would reject the possibility I=1. */
18902 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18903
18904 /* If unification failed, we're done. */
18905 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18906 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18907 return NULL_TREE;
18908
18909 return arg;
18910 }
18911
18912 /* Given a template type PARM and a class type ARG, find the unique
18913 base type in ARG that is an instance of PARM. We do not examine
18914 ARG itself; only its base-classes. If there is not exactly one
18915 appropriate base class, return NULL_TREE. PARM may be the type of
18916 a partial specialization, as well as a plain template type. Used
18917 by unify. */
18918
18919 static enum template_base_result
18920 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18921 bool explain_p, tree *result)
18922 {
18923 tree rval = NULL_TREE;
18924 tree binfo;
18925
18926 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18927
18928 binfo = TYPE_BINFO (complete_type (arg));
18929 if (!binfo)
18930 {
18931 /* The type could not be completed. */
18932 *result = NULL_TREE;
18933 return tbr_incomplete_type;
18934 }
18935
18936 /* Walk in inheritance graph order. The search order is not
18937 important, and this avoids multiple walks of virtual bases. */
18938 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18939 {
18940 tree r = try_class_unification (tparms, targs, parm,
18941 BINFO_TYPE (binfo), explain_p);
18942
18943 if (r)
18944 {
18945 /* If there is more than one satisfactory baseclass, then:
18946
18947 [temp.deduct.call]
18948
18949 If they yield more than one possible deduced A, the type
18950 deduction fails.
18951
18952 applies. */
18953 if (rval && !same_type_p (r, rval))
18954 {
18955 *result = NULL_TREE;
18956 return tbr_ambiguous_baseclass;
18957 }
18958
18959 rval = r;
18960 }
18961 }
18962
18963 *result = rval;
18964 return tbr_success;
18965 }
18966
18967 /* Returns the level of DECL, which declares a template parameter. */
18968
18969 static int
18970 template_decl_level (tree decl)
18971 {
18972 switch (TREE_CODE (decl))
18973 {
18974 case TYPE_DECL:
18975 case TEMPLATE_DECL:
18976 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18977
18978 case PARM_DECL:
18979 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18980
18981 default:
18982 gcc_unreachable ();
18983 }
18984 return 0;
18985 }
18986
18987 /* Decide whether ARG can be unified with PARM, considering only the
18988 cv-qualifiers of each type, given STRICT as documented for unify.
18989 Returns nonzero iff the unification is OK on that basis. */
18990
18991 static int
18992 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18993 {
18994 int arg_quals = cp_type_quals (arg);
18995 int parm_quals = cp_type_quals (parm);
18996
18997 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18998 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18999 {
19000 /* Although a CVR qualifier is ignored when being applied to a
19001 substituted template parameter ([8.3.2]/1 for example), that
19002 does not allow us to unify "const T" with "int&" because both
19003 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19004 It is ok when we're allowing additional CV qualifiers
19005 at the outer level [14.8.2.1]/3,1st bullet. */
19006 if ((TREE_CODE (arg) == REFERENCE_TYPE
19007 || TREE_CODE (arg) == FUNCTION_TYPE
19008 || TREE_CODE (arg) == METHOD_TYPE)
19009 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
19010 return 0;
19011
19012 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
19013 && (parm_quals & TYPE_QUAL_RESTRICT))
19014 return 0;
19015 }
19016
19017 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19018 && (arg_quals & parm_quals) != parm_quals)
19019 return 0;
19020
19021 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
19022 && (parm_quals & arg_quals) != arg_quals)
19023 return 0;
19024
19025 return 1;
19026 }
19027
19028 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19029 void
19030 template_parm_level_and_index (tree parm, int* level, int* index)
19031 {
19032 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19033 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19034 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19035 {
19036 *index = TEMPLATE_TYPE_IDX (parm);
19037 *level = TEMPLATE_TYPE_LEVEL (parm);
19038 }
19039 else
19040 {
19041 *index = TEMPLATE_PARM_IDX (parm);
19042 *level = TEMPLATE_PARM_LEVEL (parm);
19043 }
19044 }
19045
19046 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19047 do { \
19048 if (unify (TP, TA, P, A, S, EP)) \
19049 return 1; \
19050 } while (0);
19051
19052 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19053 expansion at the end of PACKED_PARMS. Returns 0 if the type
19054 deduction succeeds, 1 otherwise. STRICT is the same as in
19055 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
19056 call argument list. We'll need to adjust the arguments to make them
19057 types. SUBR tells us if this is from a recursive call to
19058 type_unification_real, or for comparing two template argument
19059 lists. */
19060
19061 static int
19062 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
19063 tree packed_args, unification_kind_t strict,
19064 bool subr, bool explain_p)
19065 {
19066 tree parm
19067 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
19068 tree pattern = PACK_EXPANSION_PATTERN (parm);
19069 tree pack, packs = NULL_TREE;
19070 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
19071
19072 packed_args = expand_template_argument_pack (packed_args);
19073
19074 int len = TREE_VEC_LENGTH (packed_args);
19075
19076 /* Determine the parameter packs we will be deducing from the
19077 pattern, and record their current deductions. */
19078 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19079 pack; pack = TREE_CHAIN (pack))
19080 {
19081 tree parm_pack = TREE_VALUE (pack);
19082 int idx, level;
19083
19084 /* Determine the index and level of this parameter pack. */
19085 template_parm_level_and_index (parm_pack, &level, &idx);
19086
19087 /* Keep track of the parameter packs and their corresponding
19088 argument packs. */
19089 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19090 TREE_TYPE (packs) = make_tree_vec (len - start);
19091 }
19092
19093 /* Loop through all of the arguments that have not yet been
19094 unified and unify each with the pattern. */
19095 for (i = start; i < len; i++)
19096 {
19097 tree parm;
19098 bool any_explicit = false;
19099 tree arg = TREE_VEC_ELT (packed_args, i);
19100
19101 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19102 or the element of its argument pack at the current index if
19103 this argument was explicitly specified. */
19104 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19105 {
19106 int idx, level;
19107 tree arg, pargs;
19108 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19109
19110 arg = NULL_TREE;
19111 if (TREE_VALUE (pack)
19112 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19113 && (i - start < TREE_VEC_LENGTH (pargs)))
19114 {
19115 any_explicit = true;
19116 arg = TREE_VEC_ELT (pargs, i - start);
19117 }
19118 TMPL_ARG (targs, level, idx) = arg;
19119 }
19120
19121 /* If we had explicit template arguments, substitute them into the
19122 pattern before deduction. */
19123 if (any_explicit)
19124 {
19125 /* Some arguments might still be unspecified or dependent. */
19126 bool dependent;
19127 ++processing_template_decl;
19128 dependent = any_dependent_template_arguments_p (targs);
19129 if (!dependent)
19130 --processing_template_decl;
19131 parm = tsubst (pattern, targs,
19132 explain_p ? tf_warning_or_error : tf_none,
19133 NULL_TREE);
19134 if (dependent)
19135 --processing_template_decl;
19136 if (parm == error_mark_node)
19137 return 1;
19138 }
19139 else
19140 parm = pattern;
19141
19142 /* Unify the pattern with the current argument. */
19143 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19144 explain_p))
19145 return 1;
19146
19147 /* For each parameter pack, collect the deduced value. */
19148 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19149 {
19150 int idx, level;
19151 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19152
19153 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19154 TMPL_ARG (targs, level, idx);
19155 }
19156 }
19157
19158 /* Verify that the results of unification with the parameter packs
19159 produce results consistent with what we've seen before, and make
19160 the deduced argument packs available. */
19161 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19162 {
19163 tree old_pack = TREE_VALUE (pack);
19164 tree new_args = TREE_TYPE (pack);
19165 int i, len = TREE_VEC_LENGTH (new_args);
19166 int idx, level;
19167 bool nondeduced_p = false;
19168
19169 /* By default keep the original deduced argument pack.
19170 If necessary, more specific code is going to update the
19171 resulting deduced argument later down in this function. */
19172 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19173 TMPL_ARG (targs, level, idx) = old_pack;
19174
19175 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19176 actually deduce anything. */
19177 for (i = 0; i < len && !nondeduced_p; ++i)
19178 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19179 nondeduced_p = true;
19180 if (nondeduced_p)
19181 continue;
19182
19183 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19184 {
19185 /* If we had fewer function args than explicit template args,
19186 just use the explicits. */
19187 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19188 int explicit_len = TREE_VEC_LENGTH (explicit_args);
19189 if (len < explicit_len)
19190 new_args = explicit_args;
19191 }
19192
19193 if (!old_pack)
19194 {
19195 tree result;
19196 /* Build the deduced *_ARGUMENT_PACK. */
19197 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
19198 {
19199 result = make_node (NONTYPE_ARGUMENT_PACK);
19200 TREE_TYPE (result) =
19201 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
19202 TREE_CONSTANT (result) = 1;
19203 }
19204 else
19205 result = cxx_make_type (TYPE_ARGUMENT_PACK);
19206
19207 SET_ARGUMENT_PACK_ARGS (result, new_args);
19208
19209 /* Note the deduced argument packs for this parameter
19210 pack. */
19211 TMPL_ARG (targs, level, idx) = result;
19212 }
19213 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
19214 && (ARGUMENT_PACK_ARGS (old_pack)
19215 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
19216 {
19217 /* We only had the explicitly-provided arguments before, but
19218 now we have a complete set of arguments. */
19219 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19220
19221 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
19222 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
19223 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
19224 }
19225 else
19226 {
19227 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
19228 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
19229
19230 if (!comp_template_args (old_args, new_args,
19231 &bad_old_arg, &bad_new_arg))
19232 /* Inconsistent unification of this parameter pack. */
19233 return unify_parameter_pack_inconsistent (explain_p,
19234 bad_old_arg,
19235 bad_new_arg);
19236 }
19237 }
19238
19239 return unify_success (explain_p);
19240 }
19241
19242 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19243 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19244 parameters and return value are as for unify. */
19245
19246 static int
19247 unify_array_domain (tree tparms, tree targs,
19248 tree parm_dom, tree arg_dom,
19249 bool explain_p)
19250 {
19251 tree parm_max;
19252 tree arg_max;
19253 bool parm_cst;
19254 bool arg_cst;
19255
19256 /* Our representation of array types uses "N - 1" as the
19257 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19258 not an integer constant. We cannot unify arbitrarily
19259 complex expressions, so we eliminate the MINUS_EXPRs
19260 here. */
19261 parm_max = TYPE_MAX_VALUE (parm_dom);
19262 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19263 if (!parm_cst)
19264 {
19265 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19266 parm_max = TREE_OPERAND (parm_max, 0);
19267 }
19268 arg_max = TYPE_MAX_VALUE (arg_dom);
19269 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19270 if (!arg_cst)
19271 {
19272 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19273 trying to unify the type of a variable with the type
19274 of a template parameter. For example:
19275
19276 template <unsigned int N>
19277 void f (char (&) [N]);
19278 int g();
19279 void h(int i) {
19280 char a[g(i)];
19281 f(a);
19282 }
19283
19284 Here, the type of the ARG will be "int [g(i)]", and
19285 may be a SAVE_EXPR, etc. */
19286 if (TREE_CODE (arg_max) != MINUS_EXPR)
19287 return unify_vla_arg (explain_p, arg_dom);
19288 arg_max = TREE_OPERAND (arg_max, 0);
19289 }
19290
19291 /* If only one of the bounds used a MINUS_EXPR, compensate
19292 by adding one to the other bound. */
19293 if (parm_cst && !arg_cst)
19294 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19295 integer_type_node,
19296 parm_max,
19297 integer_one_node);
19298 else if (arg_cst && !parm_cst)
19299 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19300 integer_type_node,
19301 arg_max,
19302 integer_one_node);
19303
19304 return unify (tparms, targs, parm_max, arg_max,
19305 UNIFY_ALLOW_INTEGER, explain_p);
19306 }
19307
19308 /* Deduce the value of template parameters. TPARMS is the (innermost)
19309 set of template parameters to a template. TARGS is the bindings
19310 for those template parameters, as determined thus far; TARGS may
19311 include template arguments for outer levels of template parameters
19312 as well. PARM is a parameter to a template function, or a
19313 subcomponent of that parameter; ARG is the corresponding argument.
19314 This function attempts to match PARM with ARG in a manner
19315 consistent with the existing assignments in TARGS. If more values
19316 are deduced, then TARGS is updated.
19317
19318 Returns 0 if the type deduction succeeds, 1 otherwise. The
19319 parameter STRICT is a bitwise or of the following flags:
19320
19321 UNIFY_ALLOW_NONE:
19322 Require an exact match between PARM and ARG.
19323 UNIFY_ALLOW_MORE_CV_QUAL:
19324 Allow the deduced ARG to be more cv-qualified (by qualification
19325 conversion) than ARG.
19326 UNIFY_ALLOW_LESS_CV_QUAL:
19327 Allow the deduced ARG to be less cv-qualified than ARG.
19328 UNIFY_ALLOW_DERIVED:
19329 Allow the deduced ARG to be a template base class of ARG,
19330 or a pointer to a template base class of the type pointed to by
19331 ARG.
19332 UNIFY_ALLOW_INTEGER:
19333 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19334 case for more information.
19335 UNIFY_ALLOW_OUTER_LEVEL:
19336 This is the outermost level of a deduction. Used to determine validity
19337 of qualification conversions. A valid qualification conversion must
19338 have const qualified pointers leading up to the inner type which
19339 requires additional CV quals, except at the outer level, where const
19340 is not required [conv.qual]. It would be normal to set this flag in
19341 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19342 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19343 This is the outermost level of a deduction, and PARM can be more CV
19344 qualified at this point.
19345 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19346 This is the outermost level of a deduction, and PARM can be less CV
19347 qualified at this point. */
19348
19349 static int
19350 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19351 bool explain_p)
19352 {
19353 int idx;
19354 tree targ;
19355 tree tparm;
19356 int strict_in = strict;
19357
19358 /* I don't think this will do the right thing with respect to types.
19359 But the only case I've seen it in so far has been array bounds, where
19360 signedness is the only information lost, and I think that will be
19361 okay. */
19362 while (TREE_CODE (parm) == NOP_EXPR)
19363 parm = TREE_OPERAND (parm, 0);
19364
19365 if (arg == error_mark_node)
19366 return unify_invalid (explain_p);
19367 if (arg == unknown_type_node
19368 || arg == init_list_type_node)
19369 /* We can't deduce anything from this, but we might get all the
19370 template args from other function args. */
19371 return unify_success (explain_p);
19372
19373 /* If PARM uses template parameters, then we can't bail out here,
19374 even if ARG == PARM, since we won't record unifications for the
19375 template parameters. We might need them if we're trying to
19376 figure out which of two things is more specialized. */
19377 if (arg == parm && !uses_template_parms (parm))
19378 return unify_success (explain_p);
19379
19380 /* Handle init lists early, so the rest of the function can assume
19381 we're dealing with a type. */
19382 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19383 {
19384 tree elt, elttype;
19385 unsigned i;
19386 tree orig_parm = parm;
19387
19388 /* Replace T with std::initializer_list<T> for deduction. */
19389 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19390 && flag_deduce_init_list)
19391 parm = listify (parm);
19392
19393 if (!is_std_init_list (parm)
19394 && TREE_CODE (parm) != ARRAY_TYPE)
19395 /* We can only deduce from an initializer list argument if the
19396 parameter is std::initializer_list or an array; otherwise this
19397 is a non-deduced context. */
19398 return unify_success (explain_p);
19399
19400 if (TREE_CODE (parm) == ARRAY_TYPE)
19401 elttype = TREE_TYPE (parm);
19402 else
19403 {
19404 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19405 /* Deduction is defined in terms of a single type, so just punt
19406 on the (bizarre) std::initializer_list<T...>. */
19407 if (PACK_EXPANSION_P (elttype))
19408 return unify_success (explain_p);
19409 }
19410
19411 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19412 {
19413 int elt_strict = strict;
19414
19415 if (elt == error_mark_node)
19416 return unify_invalid (explain_p);
19417
19418 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19419 {
19420 tree type = TREE_TYPE (elt);
19421 if (type == error_mark_node)
19422 return unify_invalid (explain_p);
19423 /* It should only be possible to get here for a call. */
19424 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19425 elt_strict |= maybe_adjust_types_for_deduction
19426 (DEDUCE_CALL, &elttype, &type, elt);
19427 elt = type;
19428 }
19429
19430 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19431 explain_p);
19432 }
19433
19434 if (TREE_CODE (parm) == ARRAY_TYPE
19435 && deducible_array_bound (TYPE_DOMAIN (parm)))
19436 {
19437 /* Also deduce from the length of the initializer list. */
19438 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19439 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19440 if (idx == error_mark_node)
19441 return unify_invalid (explain_p);
19442 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19443 idx, explain_p);
19444 }
19445
19446 /* If the std::initializer_list<T> deduction worked, replace the
19447 deduced A with std::initializer_list<A>. */
19448 if (orig_parm != parm)
19449 {
19450 idx = TEMPLATE_TYPE_IDX (orig_parm);
19451 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19452 targ = listify (targ);
19453 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19454 }
19455 return unify_success (explain_p);
19456 }
19457
19458 /* Immediately reject some pairs that won't unify because of
19459 cv-qualification mismatches. */
19460 if (TREE_CODE (arg) == TREE_CODE (parm)
19461 && TYPE_P (arg)
19462 /* It is the elements of the array which hold the cv quals of an array
19463 type, and the elements might be template type parms. We'll check
19464 when we recurse. */
19465 && TREE_CODE (arg) != ARRAY_TYPE
19466 /* We check the cv-qualifiers when unifying with template type
19467 parameters below. We want to allow ARG `const T' to unify with
19468 PARM `T' for example, when computing which of two templates
19469 is more specialized, for example. */
19470 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19471 && !check_cv_quals_for_unify (strict_in, arg, parm))
19472 return unify_cv_qual_mismatch (explain_p, parm, arg);
19473
19474 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19475 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19476 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19477 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19478 strict &= ~UNIFY_ALLOW_DERIVED;
19479 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19480 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19481
19482 switch (TREE_CODE (parm))
19483 {
19484 case TYPENAME_TYPE:
19485 case SCOPE_REF:
19486 case UNBOUND_CLASS_TEMPLATE:
19487 /* In a type which contains a nested-name-specifier, template
19488 argument values cannot be deduced for template parameters used
19489 within the nested-name-specifier. */
19490 return unify_success (explain_p);
19491
19492 case TEMPLATE_TYPE_PARM:
19493 case TEMPLATE_TEMPLATE_PARM:
19494 case BOUND_TEMPLATE_TEMPLATE_PARM:
19495 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19496 if (error_operand_p (tparm))
19497 return unify_invalid (explain_p);
19498
19499 if (TEMPLATE_TYPE_LEVEL (parm)
19500 != template_decl_level (tparm))
19501 /* The PARM is not one we're trying to unify. Just check
19502 to see if it matches ARG. */
19503 {
19504 if (TREE_CODE (arg) == TREE_CODE (parm)
19505 && (is_auto (parm) ? is_auto (arg)
19506 : same_type_p (parm, arg)))
19507 return unify_success (explain_p);
19508 else
19509 return unify_type_mismatch (explain_p, parm, arg);
19510 }
19511 idx = TEMPLATE_TYPE_IDX (parm);
19512 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19513 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19514 if (error_operand_p (tparm))
19515 return unify_invalid (explain_p);
19516
19517 /* Check for mixed types and values. */
19518 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19519 && TREE_CODE (tparm) != TYPE_DECL)
19520 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19521 && TREE_CODE (tparm) != TEMPLATE_DECL))
19522 gcc_unreachable ();
19523
19524 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19525 {
19526 /* ARG must be constructed from a template class or a template
19527 template parameter. */
19528 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19529 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19530 return unify_template_deduction_failure (explain_p, parm, arg);
19531 {
19532 tree parmvec = TYPE_TI_ARGS (parm);
19533 /* An alias template name is never deduced. */
19534 if (TYPE_ALIAS_P (arg))
19535 arg = strip_typedefs (arg);
19536 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19537 tree full_argvec = add_to_template_args (targs, argvec);
19538 tree parm_parms
19539 = DECL_INNERMOST_TEMPLATE_PARMS
19540 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19541 int i, len;
19542 int parm_variadic_p = 0;
19543
19544 /* The resolution to DR150 makes clear that default
19545 arguments for an N-argument may not be used to bind T
19546 to a template template parameter with fewer than N
19547 parameters. It is not safe to permit the binding of
19548 default arguments as an extension, as that may change
19549 the meaning of a conforming program. Consider:
19550
19551 struct Dense { static const unsigned int dim = 1; };
19552
19553 template <template <typename> class View,
19554 typename Block>
19555 void operator+(float, View<Block> const&);
19556
19557 template <typename Block,
19558 unsigned int Dim = Block::dim>
19559 struct Lvalue_proxy { operator float() const; };
19560
19561 void
19562 test_1d (void) {
19563 Lvalue_proxy<Dense> p;
19564 float b;
19565 b + p;
19566 }
19567
19568 Here, if Lvalue_proxy is permitted to bind to View, then
19569 the global operator+ will be used; if they are not, the
19570 Lvalue_proxy will be converted to float. */
19571 if (coerce_template_parms (parm_parms,
19572 full_argvec,
19573 TYPE_TI_TEMPLATE (parm),
19574 (explain_p
19575 ? tf_warning_or_error
19576 : tf_none),
19577 /*require_all_args=*/true,
19578 /*use_default_args=*/false)
19579 == error_mark_node)
19580 return 1;
19581
19582 /* Deduce arguments T, i from TT<T> or TT<i>.
19583 We check each element of PARMVEC and ARGVEC individually
19584 rather than the whole TREE_VEC since they can have
19585 different number of elements. */
19586
19587 parmvec = expand_template_argument_pack (parmvec);
19588 argvec = expand_template_argument_pack (argvec);
19589
19590 len = TREE_VEC_LENGTH (parmvec);
19591
19592 /* Check if the parameters end in a pack, making them
19593 variadic. */
19594 if (len > 0
19595 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19596 parm_variadic_p = 1;
19597
19598 for (i = 0; i < len - parm_variadic_p; ++i)
19599 /* If the template argument list of P contains a pack
19600 expansion that is not the last template argument, the
19601 entire template argument list is a non-deduced
19602 context. */
19603 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19604 return unify_success (explain_p);
19605
19606 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19607 return unify_too_few_arguments (explain_p,
19608 TREE_VEC_LENGTH (argvec), len);
19609
19610 for (i = 0; i < len - parm_variadic_p; ++i)
19611 {
19612 RECUR_AND_CHECK_FAILURE (tparms, targs,
19613 TREE_VEC_ELT (parmvec, i),
19614 TREE_VEC_ELT (argvec, i),
19615 UNIFY_ALLOW_NONE, explain_p);
19616 }
19617
19618 if (parm_variadic_p
19619 && unify_pack_expansion (tparms, targs,
19620 parmvec, argvec,
19621 DEDUCE_EXACT,
19622 /*subr=*/true, explain_p))
19623 return 1;
19624 }
19625 arg = TYPE_TI_TEMPLATE (arg);
19626
19627 /* Fall through to deduce template name. */
19628 }
19629
19630 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19631 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19632 {
19633 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19634
19635 /* Simple cases: Value already set, does match or doesn't. */
19636 if (targ != NULL_TREE && template_args_equal (targ, arg))
19637 return unify_success (explain_p);
19638 else if (targ)
19639 return unify_inconsistency (explain_p, parm, targ, arg);
19640 }
19641 else
19642 {
19643 /* If PARM is `const T' and ARG is only `int', we don't have
19644 a match unless we are allowing additional qualification.
19645 If ARG is `const int' and PARM is just `T' that's OK;
19646 that binds `const int' to `T'. */
19647 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19648 arg, parm))
19649 return unify_cv_qual_mismatch (explain_p, parm, arg);
19650
19651 /* Consider the case where ARG is `const volatile int' and
19652 PARM is `const T'. Then, T should be `volatile int'. */
19653 arg = cp_build_qualified_type_real
19654 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19655 if (arg == error_mark_node)
19656 return unify_invalid (explain_p);
19657
19658 /* Simple cases: Value already set, does match or doesn't. */
19659 if (targ != NULL_TREE && same_type_p (targ, arg))
19660 return unify_success (explain_p);
19661 else if (targ)
19662 return unify_inconsistency (explain_p, parm, targ, arg);
19663
19664 /* Make sure that ARG is not a variable-sized array. (Note
19665 that were talking about variable-sized arrays (like
19666 `int[n]'), rather than arrays of unknown size (like
19667 `int[]').) We'll get very confused by such a type since
19668 the bound of the array is not constant, and therefore
19669 not mangleable. Besides, such types are not allowed in
19670 ISO C++, so we can do as we please here. We do allow
19671 them for 'auto' deduction, since that isn't ABI-exposed. */
19672 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19673 return unify_vla_arg (explain_p, arg);
19674
19675 /* Strip typedefs as in convert_template_argument. */
19676 arg = canonicalize_type_argument (arg, tf_none);
19677 }
19678
19679 /* If ARG is a parameter pack or an expansion, we cannot unify
19680 against it unless PARM is also a parameter pack. */
19681 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19682 && !template_parameter_pack_p (parm))
19683 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19684
19685 /* If the argument deduction results is a METHOD_TYPE,
19686 then there is a problem.
19687 METHOD_TYPE doesn't map to any real C++ type the result of
19688 the deduction can not be of that type. */
19689 if (TREE_CODE (arg) == METHOD_TYPE)
19690 return unify_method_type_error (explain_p, arg);
19691
19692 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19693 return unify_success (explain_p);
19694
19695 case TEMPLATE_PARM_INDEX:
19696 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19697 if (error_operand_p (tparm))
19698 return unify_invalid (explain_p);
19699
19700 if (TEMPLATE_PARM_LEVEL (parm)
19701 != template_decl_level (tparm))
19702 {
19703 /* The PARM is not one we're trying to unify. Just check
19704 to see if it matches ARG. */
19705 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19706 && cp_tree_equal (parm, arg));
19707 if (result)
19708 unify_expression_unequal (explain_p, parm, arg);
19709 return result;
19710 }
19711
19712 idx = TEMPLATE_PARM_IDX (parm);
19713 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19714
19715 if (targ)
19716 {
19717 int x = !cp_tree_equal (targ, arg);
19718 if (x)
19719 unify_inconsistency (explain_p, parm, targ, arg);
19720 return x;
19721 }
19722
19723 /* [temp.deduct.type] If, in the declaration of a function template
19724 with a non-type template-parameter, the non-type
19725 template-parameter is used in an expression in the function
19726 parameter-list and, if the corresponding template-argument is
19727 deduced, the template-argument type shall match the type of the
19728 template-parameter exactly, except that a template-argument
19729 deduced from an array bound may be of any integral type.
19730 The non-type parameter might use already deduced type parameters. */
19731 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19732 if (!TREE_TYPE (arg))
19733 /* Template-parameter dependent expression. Just accept it for now.
19734 It will later be processed in convert_template_argument. */
19735 ;
19736 else if (same_type_p (TREE_TYPE (arg), tparm))
19737 /* OK */;
19738 else if ((strict & UNIFY_ALLOW_INTEGER)
19739 && CP_INTEGRAL_TYPE_P (tparm))
19740 /* Convert the ARG to the type of PARM; the deduced non-type
19741 template argument must exactly match the types of the
19742 corresponding parameter. */
19743 arg = fold (build_nop (tparm, arg));
19744 else if (uses_template_parms (tparm))
19745 /* We haven't deduced the type of this parameter yet. Try again
19746 later. */
19747 return unify_success (explain_p);
19748 else
19749 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19750
19751 /* If ARG is a parameter pack or an expansion, we cannot unify
19752 against it unless PARM is also a parameter pack. */
19753 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19754 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19755 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19756
19757 {
19758 bool removed_attr = false;
19759 arg = strip_typedefs_expr (arg, &removed_attr);
19760 }
19761 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19762 return unify_success (explain_p);
19763
19764 case PTRMEM_CST:
19765 {
19766 /* A pointer-to-member constant can be unified only with
19767 another constant. */
19768 if (TREE_CODE (arg) != PTRMEM_CST)
19769 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19770
19771 /* Just unify the class member. It would be useless (and possibly
19772 wrong, depending on the strict flags) to unify also
19773 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19774 arg refer to the same variable, even if through different
19775 classes. For instance:
19776
19777 struct A { int x; };
19778 struct B : A { };
19779
19780 Unification of &A::x and &B::x must succeed. */
19781 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19782 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19783 }
19784
19785 case POINTER_TYPE:
19786 {
19787 if (!TYPE_PTR_P (arg))
19788 return unify_type_mismatch (explain_p, parm, arg);
19789
19790 /* [temp.deduct.call]
19791
19792 A can be another pointer or pointer to member type that can
19793 be converted to the deduced A via a qualification
19794 conversion (_conv.qual_).
19795
19796 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19797 This will allow for additional cv-qualification of the
19798 pointed-to types if appropriate. */
19799
19800 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19801 /* The derived-to-base conversion only persists through one
19802 level of pointers. */
19803 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19804
19805 return unify (tparms, targs, TREE_TYPE (parm),
19806 TREE_TYPE (arg), strict, explain_p);
19807 }
19808
19809 case REFERENCE_TYPE:
19810 if (TREE_CODE (arg) != REFERENCE_TYPE)
19811 return unify_type_mismatch (explain_p, parm, arg);
19812 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19813 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19814
19815 case ARRAY_TYPE:
19816 if (TREE_CODE (arg) != ARRAY_TYPE)
19817 return unify_type_mismatch (explain_p, parm, arg);
19818 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19819 != (TYPE_DOMAIN (arg) == NULL_TREE))
19820 return unify_type_mismatch (explain_p, parm, arg);
19821 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19822 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19823 if (TYPE_DOMAIN (parm) != NULL_TREE)
19824 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19825 TYPE_DOMAIN (arg), explain_p);
19826 return unify_success (explain_p);
19827
19828 case REAL_TYPE:
19829 case COMPLEX_TYPE:
19830 case VECTOR_TYPE:
19831 case INTEGER_TYPE:
19832 case BOOLEAN_TYPE:
19833 case ENUMERAL_TYPE:
19834 case VOID_TYPE:
19835 case NULLPTR_TYPE:
19836 if (TREE_CODE (arg) != TREE_CODE (parm))
19837 return unify_type_mismatch (explain_p, parm, arg);
19838
19839 /* We have already checked cv-qualification at the top of the
19840 function. */
19841 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19842 return unify_type_mismatch (explain_p, parm, arg);
19843
19844 /* As far as unification is concerned, this wins. Later checks
19845 will invalidate it if necessary. */
19846 return unify_success (explain_p);
19847
19848 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19849 /* Type INTEGER_CST can come from ordinary constant template args. */
19850 case INTEGER_CST:
19851 while (TREE_CODE (arg) == NOP_EXPR)
19852 arg = TREE_OPERAND (arg, 0);
19853
19854 if (TREE_CODE (arg) != INTEGER_CST)
19855 return unify_template_argument_mismatch (explain_p, parm, arg);
19856 return (tree_int_cst_equal (parm, arg)
19857 ? unify_success (explain_p)
19858 : unify_template_argument_mismatch (explain_p, parm, arg));
19859
19860 case TREE_VEC:
19861 {
19862 int i, len, argslen;
19863 int parm_variadic_p = 0;
19864
19865 if (TREE_CODE (arg) != TREE_VEC)
19866 return unify_template_argument_mismatch (explain_p, parm, arg);
19867
19868 len = TREE_VEC_LENGTH (parm);
19869 argslen = TREE_VEC_LENGTH (arg);
19870
19871 /* Check for pack expansions in the parameters. */
19872 for (i = 0; i < len; ++i)
19873 {
19874 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19875 {
19876 if (i == len - 1)
19877 /* We can unify against something with a trailing
19878 parameter pack. */
19879 parm_variadic_p = 1;
19880 else
19881 /* [temp.deduct.type]/9: If the template argument list of
19882 P contains a pack expansion that is not the last
19883 template argument, the entire template argument list
19884 is a non-deduced context. */
19885 return unify_success (explain_p);
19886 }
19887 }
19888
19889 /* If we don't have enough arguments to satisfy the parameters
19890 (not counting the pack expression at the end), or we have
19891 too many arguments for a parameter list that doesn't end in
19892 a pack expression, we can't unify. */
19893 if (parm_variadic_p
19894 ? argslen < len - parm_variadic_p
19895 : argslen != len)
19896 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19897
19898 /* Unify all of the parameters that precede the (optional)
19899 pack expression. */
19900 for (i = 0; i < len - parm_variadic_p; ++i)
19901 {
19902 RECUR_AND_CHECK_FAILURE (tparms, targs,
19903 TREE_VEC_ELT (parm, i),
19904 TREE_VEC_ELT (arg, i),
19905 UNIFY_ALLOW_NONE, explain_p);
19906 }
19907 if (parm_variadic_p)
19908 return unify_pack_expansion (tparms, targs, parm, arg,
19909 DEDUCE_EXACT,
19910 /*subr=*/true, explain_p);
19911 return unify_success (explain_p);
19912 }
19913
19914 case RECORD_TYPE:
19915 case UNION_TYPE:
19916 if (TREE_CODE (arg) != TREE_CODE (parm))
19917 return unify_type_mismatch (explain_p, parm, arg);
19918
19919 if (TYPE_PTRMEMFUNC_P (parm))
19920 {
19921 if (!TYPE_PTRMEMFUNC_P (arg))
19922 return unify_type_mismatch (explain_p, parm, arg);
19923
19924 return unify (tparms, targs,
19925 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19926 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19927 strict, explain_p);
19928 }
19929 else if (TYPE_PTRMEMFUNC_P (arg))
19930 return unify_type_mismatch (explain_p, parm, arg);
19931
19932 if (CLASSTYPE_TEMPLATE_INFO (parm))
19933 {
19934 tree t = NULL_TREE;
19935
19936 if (strict_in & UNIFY_ALLOW_DERIVED)
19937 {
19938 /* First, we try to unify the PARM and ARG directly. */
19939 t = try_class_unification (tparms, targs,
19940 parm, arg, explain_p);
19941
19942 if (!t)
19943 {
19944 /* Fallback to the special case allowed in
19945 [temp.deduct.call]:
19946
19947 If P is a class, and P has the form
19948 template-id, then A can be a derived class of
19949 the deduced A. Likewise, if P is a pointer to
19950 a class of the form template-id, A can be a
19951 pointer to a derived class pointed to by the
19952 deduced A. */
19953 enum template_base_result r;
19954 r = get_template_base (tparms, targs, parm, arg,
19955 explain_p, &t);
19956
19957 if (!t)
19958 {
19959 /* Don't give the derived diagnostic if we're
19960 already dealing with the same template. */
19961 bool same_template
19962 = (CLASSTYPE_TEMPLATE_INFO (arg)
19963 && (CLASSTYPE_TI_TEMPLATE (parm)
19964 == CLASSTYPE_TI_TEMPLATE (arg)));
19965 return unify_no_common_base (explain_p && !same_template,
19966 r, parm, arg);
19967 }
19968 }
19969 }
19970 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19971 && (CLASSTYPE_TI_TEMPLATE (parm)
19972 == CLASSTYPE_TI_TEMPLATE (arg)))
19973 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19974 Then, we should unify `int' and `U'. */
19975 t = arg;
19976 else
19977 /* There's no chance of unification succeeding. */
19978 return unify_type_mismatch (explain_p, parm, arg);
19979
19980 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19981 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19982 }
19983 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19984 return unify_type_mismatch (explain_p, parm, arg);
19985 return unify_success (explain_p);
19986
19987 case METHOD_TYPE:
19988 case FUNCTION_TYPE:
19989 {
19990 unsigned int nargs;
19991 tree *args;
19992 tree a;
19993 unsigned int i;
19994
19995 if (TREE_CODE (arg) != TREE_CODE (parm))
19996 return unify_type_mismatch (explain_p, parm, arg);
19997
19998 /* CV qualifications for methods can never be deduced, they must
19999 match exactly. We need to check them explicitly here,
20000 because type_unification_real treats them as any other
20001 cv-qualified parameter. */
20002 if (TREE_CODE (parm) == METHOD_TYPE
20003 && (!check_cv_quals_for_unify
20004 (UNIFY_ALLOW_NONE,
20005 class_of_this_parm (arg),
20006 class_of_this_parm (parm))))
20007 return unify_cv_qual_mismatch (explain_p, parm, arg);
20008
20009 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
20010 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
20011
20012 nargs = list_length (TYPE_ARG_TYPES (arg));
20013 args = XALLOCAVEC (tree, nargs);
20014 for (a = TYPE_ARG_TYPES (arg), i = 0;
20015 a != NULL_TREE && a != void_list_node;
20016 a = TREE_CHAIN (a), ++i)
20017 args[i] = TREE_VALUE (a);
20018 nargs = i;
20019
20020 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
20021 args, nargs, 1, DEDUCE_EXACT,
20022 LOOKUP_NORMAL, NULL, explain_p);
20023 }
20024
20025 case OFFSET_TYPE:
20026 /* Unify a pointer to member with a pointer to member function, which
20027 deduces the type of the member as a function type. */
20028 if (TYPE_PTRMEMFUNC_P (arg))
20029 {
20030 /* Check top-level cv qualifiers */
20031 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
20032 return unify_cv_qual_mismatch (explain_p, parm, arg);
20033
20034 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20035 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
20036 UNIFY_ALLOW_NONE, explain_p);
20037
20038 /* Determine the type of the function we are unifying against. */
20039 tree fntype = static_fn_type (arg);
20040
20041 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
20042 }
20043
20044 if (TREE_CODE (arg) != OFFSET_TYPE)
20045 return unify_type_mismatch (explain_p, parm, arg);
20046 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20047 TYPE_OFFSET_BASETYPE (arg),
20048 UNIFY_ALLOW_NONE, explain_p);
20049 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20050 strict, explain_p);
20051
20052 case CONST_DECL:
20053 if (DECL_TEMPLATE_PARM_P (parm))
20054 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
20055 if (arg != scalar_constant_value (parm))
20056 return unify_template_argument_mismatch (explain_p, parm, arg);
20057 return unify_success (explain_p);
20058
20059 case FIELD_DECL:
20060 case TEMPLATE_DECL:
20061 /* Matched cases are handled by the ARG == PARM test above. */
20062 return unify_template_argument_mismatch (explain_p, parm, arg);
20063
20064 case VAR_DECL:
20065 /* We might get a variable as a non-type template argument in parm if the
20066 corresponding parameter is type-dependent. Make any necessary
20067 adjustments based on whether arg is a reference. */
20068 if (CONSTANT_CLASS_P (arg))
20069 parm = fold_non_dependent_expr (parm);
20070 else if (REFERENCE_REF_P (arg))
20071 {
20072 tree sub = TREE_OPERAND (arg, 0);
20073 STRIP_NOPS (sub);
20074 if (TREE_CODE (sub) == ADDR_EXPR)
20075 arg = TREE_OPERAND (sub, 0);
20076 }
20077 /* Now use the normal expression code to check whether they match. */
20078 goto expr;
20079
20080 case TYPE_ARGUMENT_PACK:
20081 case NONTYPE_ARGUMENT_PACK:
20082 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20083 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20084
20085 case TYPEOF_TYPE:
20086 case DECLTYPE_TYPE:
20087 case UNDERLYING_TYPE:
20088 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20089 or UNDERLYING_TYPE nodes. */
20090 return unify_success (explain_p);
20091
20092 case ERROR_MARK:
20093 /* Unification fails if we hit an error node. */
20094 return unify_invalid (explain_p);
20095
20096 case INDIRECT_REF:
20097 if (REFERENCE_REF_P (parm))
20098 {
20099 if (REFERENCE_REF_P (arg))
20100 arg = TREE_OPERAND (arg, 0);
20101 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20102 strict, explain_p);
20103 }
20104 /* FALLTHRU */
20105
20106 default:
20107 /* An unresolved overload is a nondeduced context. */
20108 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20109 return unify_success (explain_p);
20110 gcc_assert (EXPR_P (parm));
20111 expr:
20112 /* We must be looking at an expression. This can happen with
20113 something like:
20114
20115 template <int I>
20116 void foo(S<I>, S<I + 2>);
20117
20118 This is a "nondeduced context":
20119
20120 [deduct.type]
20121
20122 The nondeduced contexts are:
20123
20124 --A type that is a template-id in which one or more of
20125 the template-arguments is an expression that references
20126 a template-parameter.
20127
20128 In these cases, we assume deduction succeeded, but don't
20129 actually infer any unifications. */
20130
20131 if (!uses_template_parms (parm)
20132 && !template_args_equal (parm, arg))
20133 return unify_expression_unequal (explain_p, parm, arg);
20134 else
20135 return unify_success (explain_p);
20136 }
20137 }
20138 #undef RECUR_AND_CHECK_FAILURE
20139 \f
20140 /* Note that DECL can be defined in this translation unit, if
20141 required. */
20142
20143 static void
20144 mark_definable (tree decl)
20145 {
20146 tree clone;
20147 DECL_NOT_REALLY_EXTERN (decl) = 1;
20148 FOR_EACH_CLONE (clone, decl)
20149 DECL_NOT_REALLY_EXTERN (clone) = 1;
20150 }
20151
20152 /* Called if RESULT is explicitly instantiated, or is a member of an
20153 explicitly instantiated class. */
20154
20155 void
20156 mark_decl_instantiated (tree result, int extern_p)
20157 {
20158 SET_DECL_EXPLICIT_INSTANTIATION (result);
20159
20160 /* If this entity has already been written out, it's too late to
20161 make any modifications. */
20162 if (TREE_ASM_WRITTEN (result))
20163 return;
20164
20165 /* For anonymous namespace we don't need to do anything. */
20166 if (decl_anon_ns_mem_p (result))
20167 {
20168 gcc_assert (!TREE_PUBLIC (result));
20169 return;
20170 }
20171
20172 if (TREE_CODE (result) != FUNCTION_DECL)
20173 /* The TREE_PUBLIC flag for function declarations will have been
20174 set correctly by tsubst. */
20175 TREE_PUBLIC (result) = 1;
20176
20177 /* This might have been set by an earlier implicit instantiation. */
20178 DECL_COMDAT (result) = 0;
20179
20180 if (extern_p)
20181 DECL_NOT_REALLY_EXTERN (result) = 0;
20182 else
20183 {
20184 mark_definable (result);
20185 mark_needed (result);
20186 /* Always make artificials weak. */
20187 if (DECL_ARTIFICIAL (result) && flag_weak)
20188 comdat_linkage (result);
20189 /* For WIN32 we also want to put explicit instantiations in
20190 linkonce sections. */
20191 else if (TREE_PUBLIC (result))
20192 maybe_make_one_only (result);
20193 }
20194
20195 /* If EXTERN_P, then this function will not be emitted -- unless
20196 followed by an explicit instantiation, at which point its linkage
20197 will be adjusted. If !EXTERN_P, then this function will be
20198 emitted here. In neither circumstance do we want
20199 import_export_decl to adjust the linkage. */
20200 DECL_INTERFACE_KNOWN (result) = 1;
20201 }
20202
20203 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
20204 important template arguments. If any are missing, we check whether
20205 they're important by using error_mark_node for substituting into any
20206 args that were used for partial ordering (the ones between ARGS and END)
20207 and seeing if it bubbles up. */
20208
20209 static bool
20210 check_undeduced_parms (tree targs, tree args, tree end)
20211 {
20212 bool found = false;
20213 int i;
20214 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
20215 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
20216 {
20217 found = true;
20218 TREE_VEC_ELT (targs, i) = error_mark_node;
20219 }
20220 if (found)
20221 {
20222 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
20223 if (substed == error_mark_node)
20224 return true;
20225 }
20226 return false;
20227 }
20228
20229 /* Given two function templates PAT1 and PAT2, return:
20230
20231 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20232 -1 if PAT2 is more specialized than PAT1.
20233 0 if neither is more specialized.
20234
20235 LEN indicates the number of parameters we should consider
20236 (defaulted parameters should not be considered).
20237
20238 The 1998 std underspecified function template partial ordering, and
20239 DR214 addresses the issue. We take pairs of arguments, one from
20240 each of the templates, and deduce them against each other. One of
20241 the templates will be more specialized if all the *other*
20242 template's arguments deduce against its arguments and at least one
20243 of its arguments *does* *not* deduce against the other template's
20244 corresponding argument. Deduction is done as for class templates.
20245 The arguments used in deduction have reference and top level cv
20246 qualifiers removed. Iff both arguments were originally reference
20247 types *and* deduction succeeds in both directions, an lvalue reference
20248 wins against an rvalue reference and otherwise the template
20249 with the more cv-qualified argument wins for that pairing (if
20250 neither is more cv-qualified, they both are equal). Unlike regular
20251 deduction, after all the arguments have been deduced in this way,
20252 we do *not* verify the deduced template argument values can be
20253 substituted into non-deduced contexts.
20254
20255 The logic can be a bit confusing here, because we look at deduce1 and
20256 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20257 can find template arguments for pat1 to make arg1 look like arg2, that
20258 means that arg2 is at least as specialized as arg1. */
20259
20260 int
20261 more_specialized_fn (tree pat1, tree pat2, int len)
20262 {
20263 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20264 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20265 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20266 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20267 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20268 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20269 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20270 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20271 tree origs1, origs2;
20272 bool lose1 = false;
20273 bool lose2 = false;
20274
20275 /* Remove the this parameter from non-static member functions. If
20276 one is a non-static member function and the other is not a static
20277 member function, remove the first parameter from that function
20278 also. This situation occurs for operator functions where we
20279 locate both a member function (with this pointer) and non-member
20280 operator (with explicit first operand). */
20281 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20282 {
20283 len--; /* LEN is the number of significant arguments for DECL1 */
20284 args1 = TREE_CHAIN (args1);
20285 if (!DECL_STATIC_FUNCTION_P (decl2))
20286 args2 = TREE_CHAIN (args2);
20287 }
20288 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20289 {
20290 args2 = TREE_CHAIN (args2);
20291 if (!DECL_STATIC_FUNCTION_P (decl1))
20292 {
20293 len--;
20294 args1 = TREE_CHAIN (args1);
20295 }
20296 }
20297
20298 /* If only one is a conversion operator, they are unordered. */
20299 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20300 return 0;
20301
20302 /* Consider the return type for a conversion function */
20303 if (DECL_CONV_FN_P (decl1))
20304 {
20305 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20306 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20307 len++;
20308 }
20309
20310 processing_template_decl++;
20311
20312 origs1 = args1;
20313 origs2 = args2;
20314
20315 while (len--
20316 /* Stop when an ellipsis is seen. */
20317 && args1 != NULL_TREE && args2 != NULL_TREE)
20318 {
20319 tree arg1 = TREE_VALUE (args1);
20320 tree arg2 = TREE_VALUE (args2);
20321 int deduce1, deduce2;
20322 int quals1 = -1;
20323 int quals2 = -1;
20324 int ref1 = 0;
20325 int ref2 = 0;
20326
20327 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20328 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20329 {
20330 /* When both arguments are pack expansions, we need only
20331 unify the patterns themselves. */
20332 arg1 = PACK_EXPANSION_PATTERN (arg1);
20333 arg2 = PACK_EXPANSION_PATTERN (arg2);
20334
20335 /* This is the last comparison we need to do. */
20336 len = 0;
20337 }
20338
20339 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20340 {
20341 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20342 arg1 = TREE_TYPE (arg1);
20343 quals1 = cp_type_quals (arg1);
20344 }
20345
20346 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20347 {
20348 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20349 arg2 = TREE_TYPE (arg2);
20350 quals2 = cp_type_quals (arg2);
20351 }
20352
20353 arg1 = TYPE_MAIN_VARIANT (arg1);
20354 arg2 = TYPE_MAIN_VARIANT (arg2);
20355
20356 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20357 {
20358 int i, len2 = remaining_arguments (args2);
20359 tree parmvec = make_tree_vec (1);
20360 tree argvec = make_tree_vec (len2);
20361 tree ta = args2;
20362
20363 /* Setup the parameter vector, which contains only ARG1. */
20364 TREE_VEC_ELT (parmvec, 0) = arg1;
20365
20366 /* Setup the argument vector, which contains the remaining
20367 arguments. */
20368 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20369 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20370
20371 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20372 argvec, DEDUCE_EXACT,
20373 /*subr=*/true, /*explain_p=*/false)
20374 == 0);
20375
20376 /* We cannot deduce in the other direction, because ARG1 is
20377 a pack expansion but ARG2 is not. */
20378 deduce2 = 0;
20379 }
20380 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20381 {
20382 int i, len1 = remaining_arguments (args1);
20383 tree parmvec = make_tree_vec (1);
20384 tree argvec = make_tree_vec (len1);
20385 tree ta = args1;
20386
20387 /* Setup the parameter vector, which contains only ARG1. */
20388 TREE_VEC_ELT (parmvec, 0) = arg2;
20389
20390 /* Setup the argument vector, which contains the remaining
20391 arguments. */
20392 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20393 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20394
20395 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20396 argvec, DEDUCE_EXACT,
20397 /*subr=*/true, /*explain_p=*/false)
20398 == 0);
20399
20400 /* We cannot deduce in the other direction, because ARG2 is
20401 a pack expansion but ARG1 is not.*/
20402 deduce1 = 0;
20403 }
20404
20405 else
20406 {
20407 /* The normal case, where neither argument is a pack
20408 expansion. */
20409 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20410 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20411 == 0);
20412 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20413 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20414 == 0);
20415 }
20416
20417 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20418 arg2, then arg2 is not as specialized as arg1. */
20419 if (!deduce1)
20420 lose2 = true;
20421 if (!deduce2)
20422 lose1 = true;
20423
20424 /* "If, for a given type, deduction succeeds in both directions
20425 (i.e., the types are identical after the transformations above)
20426 and both P and A were reference types (before being replaced with
20427 the type referred to above):
20428 - if the type from the argument template was an lvalue reference and
20429 the type from the parameter template was not, the argument type is
20430 considered to be more specialized than the other; otherwise,
20431 - if the type from the argument template is more cv-qualified
20432 than the type from the parameter template (as described above),
20433 the argument type is considered to be more specialized than the other;
20434 otherwise,
20435 - neither type is more specialized than the other." */
20436
20437 if (deduce1 && deduce2)
20438 {
20439 if (ref1 && ref2 && ref1 != ref2)
20440 {
20441 if (ref1 > ref2)
20442 lose1 = true;
20443 else
20444 lose2 = true;
20445 }
20446 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20447 {
20448 if ((quals1 & quals2) == quals2)
20449 lose2 = true;
20450 if ((quals1 & quals2) == quals1)
20451 lose1 = true;
20452 }
20453 }
20454
20455 if (lose1 && lose2)
20456 /* We've failed to deduce something in either direction.
20457 These must be unordered. */
20458 break;
20459
20460 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20461 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20462 /* We have already processed all of the arguments in our
20463 handing of the pack expansion type. */
20464 len = 0;
20465
20466 args1 = TREE_CHAIN (args1);
20467 args2 = TREE_CHAIN (args2);
20468 }
20469
20470 /* "In most cases, all template parameters must have values in order for
20471 deduction to succeed, but for partial ordering purposes a template
20472 parameter may remain without a value provided it is not used in the
20473 types being used for partial ordering."
20474
20475 Thus, if we are missing any of the targs1 we need to substitute into
20476 origs1, then pat2 is not as specialized as pat1. This can happen when
20477 there is a nondeduced context. */
20478 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20479 lose2 = true;
20480 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20481 lose1 = true;
20482
20483 processing_template_decl--;
20484
20485 /* If both deductions succeed, the partial ordering selects the more
20486 constrained template. */
20487 if (!lose1 && !lose2)
20488 {
20489 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20490 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20491 lose1 = !subsumes_constraints (c1, c2);
20492 lose2 = !subsumes_constraints (c2, c1);
20493 }
20494
20495 /* All things being equal, if the next argument is a pack expansion
20496 for one function but not for the other, prefer the
20497 non-variadic function. FIXME this is bogus; see c++/41958. */
20498 if (lose1 == lose2
20499 && args1 && TREE_VALUE (args1)
20500 && args2 && TREE_VALUE (args2))
20501 {
20502 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20503 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20504 }
20505
20506 if (lose1 == lose2)
20507 return 0;
20508 else if (!lose1)
20509 return 1;
20510 else
20511 return -1;
20512 }
20513
20514 /* Determine which of two partial specializations of TMPL is more
20515 specialized.
20516
20517 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20518 to the first partial specialization. The TREE_PURPOSE is the
20519 innermost set of template parameters for the partial
20520 specialization. PAT2 is similar, but for the second template.
20521
20522 Return 1 if the first partial specialization is more specialized;
20523 -1 if the second is more specialized; 0 if neither is more
20524 specialized.
20525
20526 See [temp.class.order] for information about determining which of
20527 two templates is more specialized. */
20528
20529 static int
20530 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20531 {
20532 tree targs;
20533 int winner = 0;
20534 bool any_deductions = false;
20535
20536 tree tmpl1 = TREE_VALUE (pat1);
20537 tree tmpl2 = TREE_VALUE (pat2);
20538 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20539 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20540 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20541 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20542
20543 /* Just like what happens for functions, if we are ordering between
20544 different template specializations, we may encounter dependent
20545 types in the arguments, and we need our dependency check functions
20546 to behave correctly. */
20547 ++processing_template_decl;
20548 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20549 if (targs)
20550 {
20551 --winner;
20552 any_deductions = true;
20553 }
20554
20555 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20556 if (targs)
20557 {
20558 ++winner;
20559 any_deductions = true;
20560 }
20561 --processing_template_decl;
20562
20563 /* If both deductions succeed, the partial ordering selects the more
20564 constrained template. */
20565 if (!winner && any_deductions)
20566 return more_constrained (tmpl1, tmpl2);
20567
20568 /* In the case of a tie where at least one of the templates
20569 has a parameter pack at the end, the template with the most
20570 non-packed parameters wins. */
20571 if (winner == 0
20572 && any_deductions
20573 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20574 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20575 {
20576 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20577 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20578 int len1 = TREE_VEC_LENGTH (args1);
20579 int len2 = TREE_VEC_LENGTH (args2);
20580
20581 /* We don't count the pack expansion at the end. */
20582 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20583 --len1;
20584 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20585 --len2;
20586
20587 if (len1 > len2)
20588 return 1;
20589 else if (len1 < len2)
20590 return -1;
20591 }
20592
20593 return winner;
20594 }
20595
20596 /* Return the template arguments that will produce the function signature
20597 DECL from the function template FN, with the explicit template
20598 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20599 also match. Return NULL_TREE if no satisfactory arguments could be
20600 found. */
20601
20602 static tree
20603 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20604 {
20605 int ntparms = DECL_NTPARMS (fn);
20606 tree targs = make_tree_vec (ntparms);
20607 tree decl_type = TREE_TYPE (decl);
20608 tree decl_arg_types;
20609 tree *args;
20610 unsigned int nargs, ix;
20611 tree arg;
20612
20613 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20614
20615 /* Never do unification on the 'this' parameter. */
20616 decl_arg_types = skip_artificial_parms_for (decl,
20617 TYPE_ARG_TYPES (decl_type));
20618
20619 nargs = list_length (decl_arg_types);
20620 args = XALLOCAVEC (tree, nargs);
20621 for (arg = decl_arg_types, ix = 0;
20622 arg != NULL_TREE && arg != void_list_node;
20623 arg = TREE_CHAIN (arg), ++ix)
20624 args[ix] = TREE_VALUE (arg);
20625
20626 if (fn_type_unification (fn, explicit_args, targs,
20627 args, ix,
20628 (check_rettype || DECL_CONV_FN_P (fn)
20629 ? TREE_TYPE (decl_type) : NULL_TREE),
20630 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20631 /*decltype*/false)
20632 == error_mark_node)
20633 return NULL_TREE;
20634
20635 return targs;
20636 }
20637
20638 /* Return the innermost template arguments that, when applied to a partial
20639 specialization of TMPL whose innermost template parameters are
20640 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20641 ARGS.
20642
20643 For example, suppose we have:
20644
20645 template <class T, class U> struct S {};
20646 template <class T> struct S<T*, int> {};
20647
20648 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20649 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20650 int}. The resulting vector will be {double}, indicating that `T'
20651 is bound to `double'. */
20652
20653 static tree
20654 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20655 {
20656 int i, ntparms = TREE_VEC_LENGTH (tparms);
20657 tree deduced_args;
20658 tree innermost_deduced_args;
20659
20660 innermost_deduced_args = make_tree_vec (ntparms);
20661 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20662 {
20663 deduced_args = copy_node (args);
20664 SET_TMPL_ARGS_LEVEL (deduced_args,
20665 TMPL_ARGS_DEPTH (deduced_args),
20666 innermost_deduced_args);
20667 }
20668 else
20669 deduced_args = innermost_deduced_args;
20670
20671 if (unify (tparms, deduced_args,
20672 INNERMOST_TEMPLATE_ARGS (spec_args),
20673 INNERMOST_TEMPLATE_ARGS (args),
20674 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20675 return NULL_TREE;
20676
20677 for (i = 0; i < ntparms; ++i)
20678 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20679 return NULL_TREE;
20680
20681 /* Verify that nondeduced template arguments agree with the type
20682 obtained from argument deduction.
20683
20684 For example:
20685
20686 struct A { typedef int X; };
20687 template <class T, class U> struct C {};
20688 template <class T> struct C<T, typename T::X> {};
20689
20690 Then with the instantiation `C<A, int>', we can deduce that
20691 `T' is `A' but unify () does not check whether `typename T::X'
20692 is `int'. */
20693 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20694 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20695 spec_args, tmpl,
20696 tf_none, false, false);
20697 if (spec_args == error_mark_node
20698 /* We only need to check the innermost arguments; the other
20699 arguments will always agree. */
20700 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20701 INNERMOST_TEMPLATE_ARGS (args)))
20702 return NULL_TREE;
20703
20704 /* Now that we have bindings for all of the template arguments,
20705 ensure that the arguments deduced for the template template
20706 parameters have compatible template parameter lists. See the use
20707 of template_template_parm_bindings_ok_p in fn_type_unification
20708 for more information. */
20709 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20710 return NULL_TREE;
20711
20712 return deduced_args;
20713 }
20714
20715 // Compare two function templates T1 and T2 by deducing bindings
20716 // from one against the other. If both deductions succeed, compare
20717 // constraints to see which is more constrained.
20718 static int
20719 more_specialized_inst (tree t1, tree t2)
20720 {
20721 int fate = 0;
20722 int count = 0;
20723
20724 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20725 {
20726 --fate;
20727 ++count;
20728 }
20729
20730 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20731 {
20732 ++fate;
20733 ++count;
20734 }
20735
20736 // If both deductions succeed, then one may be more constrained.
20737 if (count == 2 && fate == 0)
20738 fate = more_constrained (t1, t2);
20739
20740 return fate;
20741 }
20742
20743 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20744 Return the TREE_LIST node with the most specialized template, if
20745 any. If there is no most specialized template, the error_mark_node
20746 is returned.
20747
20748 Note that this function does not look at, or modify, the
20749 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20750 returned is one of the elements of INSTANTIATIONS, callers may
20751 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20752 and retrieve it from the value returned. */
20753
20754 tree
20755 most_specialized_instantiation (tree templates)
20756 {
20757 tree fn, champ;
20758
20759 ++processing_template_decl;
20760
20761 champ = templates;
20762 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20763 {
20764 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20765 if (fate == -1)
20766 champ = fn;
20767 else if (!fate)
20768 {
20769 /* Equally specialized, move to next function. If there
20770 is no next function, nothing's most specialized. */
20771 fn = TREE_CHAIN (fn);
20772 champ = fn;
20773 if (!fn)
20774 break;
20775 }
20776 }
20777
20778 if (champ)
20779 /* Now verify that champ is better than everything earlier in the
20780 instantiation list. */
20781 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20782 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20783 {
20784 champ = NULL_TREE;
20785 break;
20786 }
20787 }
20788
20789 processing_template_decl--;
20790
20791 if (!champ)
20792 return error_mark_node;
20793
20794 return champ;
20795 }
20796
20797 /* If DECL is a specialization of some template, return the most
20798 general such template. Otherwise, returns NULL_TREE.
20799
20800 For example, given:
20801
20802 template <class T> struct S { template <class U> void f(U); };
20803
20804 if TMPL is `template <class U> void S<int>::f(U)' this will return
20805 the full template. This function will not trace past partial
20806 specializations, however. For example, given in addition:
20807
20808 template <class T> struct S<T*> { template <class U> void f(U); };
20809
20810 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20811 `template <class T> template <class U> S<T*>::f(U)'. */
20812
20813 tree
20814 most_general_template (tree decl)
20815 {
20816 if (TREE_CODE (decl) != TEMPLATE_DECL)
20817 {
20818 if (tree tinfo = get_template_info (decl))
20819 decl = TI_TEMPLATE (tinfo);
20820 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20821 template friend, or a FIELD_DECL for a capture pack. */
20822 if (TREE_CODE (decl) != TEMPLATE_DECL)
20823 return NULL_TREE;
20824 }
20825
20826 /* Look for more and more general templates. */
20827 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20828 {
20829 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20830 (See cp-tree.h for details.) */
20831 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20832 break;
20833
20834 if (CLASS_TYPE_P (TREE_TYPE (decl))
20835 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20836 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20837 break;
20838
20839 /* Stop if we run into an explicitly specialized class template. */
20840 if (!DECL_NAMESPACE_SCOPE_P (decl)
20841 && DECL_CONTEXT (decl)
20842 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20843 break;
20844
20845 decl = DECL_TI_TEMPLATE (decl);
20846 }
20847
20848 return decl;
20849 }
20850
20851 /* True iff the TEMPLATE_DECL tmpl is a partial specialization. */
20852
20853 static bool
20854 partial_specialization_p (tree tmpl)
20855 {
20856 /* Any specialization has DECL_TEMPLATE_SPECIALIZATION. */
20857 if (!DECL_TEMPLATE_SPECIALIZATION (tmpl))
20858 return false;
20859 tree t = DECL_TI_TEMPLATE (tmpl);
20860 /* A specialization that fully specializes one of the containing classes is
20861 not a partial specialization. */
20862 return (list_length (DECL_TEMPLATE_PARMS (tmpl))
20863 == list_length (DECL_TEMPLATE_PARMS (t)));
20864 }
20865
20866 /* If TMPL is a partial specialization, return the arguments for its primary
20867 template. */
20868
20869 static tree
20870 impartial_args (tree tmpl, tree args)
20871 {
20872 if (!partial_specialization_p (tmpl))
20873 return args;
20874
20875 /* If TMPL is a partial specialization, we need to substitute to get
20876 the args for the primary template. */
20877 return tsubst_template_args (DECL_TI_ARGS (tmpl), args,
20878 tf_warning_or_error, tmpl);
20879 }
20880
20881 /* Return the most specialized of the template partial specializations
20882 which can produce TARGET, a specialization of some class or variable
20883 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20884 a TEMPLATE_DECL node corresponding to the partial specialization, while
20885 the TREE_PURPOSE is the set of template arguments that must be
20886 substituted into the template pattern in order to generate TARGET.
20887
20888 If the choice of partial specialization is ambiguous, a diagnostic
20889 is issued, and the error_mark_node is returned. If there are no
20890 partial specializations matching TARGET, then NULL_TREE is
20891 returned, indicating that the primary template should be used. */
20892
20893 static tree
20894 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20895 {
20896 tree list = NULL_TREE;
20897 tree t;
20898 tree champ;
20899 int fate;
20900 bool ambiguous_p;
20901 tree outer_args = NULL_TREE;
20902 tree tmpl, args;
20903
20904 if (TYPE_P (target))
20905 {
20906 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20907 tmpl = TI_TEMPLATE (tinfo);
20908 args = TI_ARGS (tinfo);
20909 }
20910 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20911 {
20912 tmpl = TREE_OPERAND (target, 0);
20913 args = TREE_OPERAND (target, 1);
20914 }
20915 else if (VAR_P (target))
20916 {
20917 tree tinfo = DECL_TEMPLATE_INFO (target);
20918 tmpl = TI_TEMPLATE (tinfo);
20919 args = TI_ARGS (tinfo);
20920 }
20921 else
20922 gcc_unreachable ();
20923
20924 tree main_tmpl = most_general_template (tmpl);
20925
20926 /* For determining which partial specialization to use, only the
20927 innermost args are interesting. */
20928 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20929 {
20930 outer_args = strip_innermost_template_args (args, 1);
20931 args = INNERMOST_TEMPLATE_ARGS (args);
20932 }
20933
20934 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20935 {
20936 tree partial_spec_args;
20937 tree spec_args;
20938 tree spec_tmpl = TREE_VALUE (t);
20939
20940 partial_spec_args = TREE_PURPOSE (t);
20941
20942 ++processing_template_decl;
20943
20944 if (outer_args)
20945 {
20946 /* Discard the outer levels of args, and then substitute in the
20947 template args from the enclosing class. */
20948 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20949 partial_spec_args = tsubst_template_args
20950 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20951
20952 /* And the same for the partial specialization TEMPLATE_DECL. */
20953 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20954 }
20955
20956 partial_spec_args =
20957 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20958 partial_spec_args,
20959 tmpl, tf_none,
20960 /*require_all_args=*/true,
20961 /*use_default_args=*/true);
20962
20963 --processing_template_decl;
20964
20965 if (partial_spec_args == error_mark_node)
20966 return error_mark_node;
20967 if (spec_tmpl == error_mark_node)
20968 return error_mark_node;
20969
20970 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20971 spec_args = get_partial_spec_bindings (tmpl, parms,
20972 partial_spec_args,
20973 args);
20974 if (spec_args)
20975 {
20976 if (outer_args)
20977 spec_args = add_to_template_args (outer_args, spec_args);
20978
20979 /* Keep the candidate only if the constraints are satisfied,
20980 or if we're not compiling with concepts. */
20981 if (!flag_concepts
20982 || constraints_satisfied_p (spec_tmpl, spec_args))
20983 {
20984 list = tree_cons (spec_args, TREE_VALUE (t), list);
20985 TREE_TYPE (list) = TREE_TYPE (t);
20986 }
20987 }
20988 }
20989
20990 if (! list)
20991 return NULL_TREE;
20992
20993 ambiguous_p = false;
20994 t = list;
20995 champ = t;
20996 t = TREE_CHAIN (t);
20997 for (; t; t = TREE_CHAIN (t))
20998 {
20999 fate = more_specialized_partial_spec (tmpl, champ, t);
21000 if (fate == 1)
21001 ;
21002 else
21003 {
21004 if (fate == 0)
21005 {
21006 t = TREE_CHAIN (t);
21007 if (! t)
21008 {
21009 ambiguous_p = true;
21010 break;
21011 }
21012 }
21013 champ = t;
21014 }
21015 }
21016
21017 if (!ambiguous_p)
21018 for (t = list; t && t != champ; t = TREE_CHAIN (t))
21019 {
21020 fate = more_specialized_partial_spec (tmpl, champ, t);
21021 if (fate != 1)
21022 {
21023 ambiguous_p = true;
21024 break;
21025 }
21026 }
21027
21028 if (ambiguous_p)
21029 {
21030 const char *str;
21031 char *spaces = NULL;
21032 if (!(complain & tf_error))
21033 return error_mark_node;
21034 if (TYPE_P (target))
21035 error ("ambiguous template instantiation for %q#T", target);
21036 else
21037 error ("ambiguous template instantiation for %q#D", target);
21038 str = ngettext ("candidate is:", "candidates are:", list_length (list));
21039 for (t = list; t; t = TREE_CHAIN (t))
21040 {
21041 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
21042 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
21043 "%s %#S", spaces ? spaces : str, subst);
21044 spaces = spaces ? spaces : get_spaces (str);
21045 }
21046 free (spaces);
21047 return error_mark_node;
21048 }
21049
21050 return champ;
21051 }
21052
21053 /* Explicitly instantiate DECL. */
21054
21055 void
21056 do_decl_instantiation (tree decl, tree storage)
21057 {
21058 tree result = NULL_TREE;
21059 int extern_p = 0;
21060
21061 if (!decl || decl == error_mark_node)
21062 /* An error occurred, for which grokdeclarator has already issued
21063 an appropriate message. */
21064 return;
21065 else if (! DECL_LANG_SPECIFIC (decl))
21066 {
21067 error ("explicit instantiation of non-template %q#D", decl);
21068 return;
21069 }
21070
21071 bool var_templ = (DECL_TEMPLATE_INFO (decl)
21072 && variable_template_p (DECL_TI_TEMPLATE (decl)));
21073
21074 if (VAR_P (decl) && !var_templ)
21075 {
21076 /* There is an asymmetry here in the way VAR_DECLs and
21077 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21078 the latter, the DECL we get back will be marked as a
21079 template instantiation, and the appropriate
21080 DECL_TEMPLATE_INFO will be set up. This does not happen for
21081 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21082 should handle VAR_DECLs as it currently handles
21083 FUNCTION_DECLs. */
21084 if (!DECL_CLASS_SCOPE_P (decl))
21085 {
21086 error ("%qD is not a static data member of a class template", decl);
21087 return;
21088 }
21089 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21090 if (!result || !VAR_P (result))
21091 {
21092 error ("no matching template for %qD found", decl);
21093 return;
21094 }
21095 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21096 {
21097 error ("type %qT for explicit instantiation %qD does not match "
21098 "declared type %qT", TREE_TYPE (result), decl,
21099 TREE_TYPE (decl));
21100 return;
21101 }
21102 }
21103 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21104 {
21105 error ("explicit instantiation of %q#D", decl);
21106 return;
21107 }
21108 else
21109 result = decl;
21110
21111 /* Check for various error cases. Note that if the explicit
21112 instantiation is valid the RESULT will currently be marked as an
21113 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21114 until we get here. */
21115
21116 if (DECL_TEMPLATE_SPECIALIZATION (result))
21117 {
21118 /* DR 259 [temp.spec].
21119
21120 Both an explicit instantiation and a declaration of an explicit
21121 specialization shall not appear in a program unless the explicit
21122 instantiation follows a declaration of the explicit specialization.
21123
21124 For a given set of template parameters, if an explicit
21125 instantiation of a template appears after a declaration of an
21126 explicit specialization for that template, the explicit
21127 instantiation has no effect. */
21128 return;
21129 }
21130 else if (DECL_EXPLICIT_INSTANTIATION (result))
21131 {
21132 /* [temp.spec]
21133
21134 No program shall explicitly instantiate any template more
21135 than once.
21136
21137 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21138 the first instantiation was `extern' and the second is not,
21139 and EXTERN_P for the opposite case. */
21140 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21141 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21142 /* If an "extern" explicit instantiation follows an ordinary
21143 explicit instantiation, the template is instantiated. */
21144 if (extern_p)
21145 return;
21146 }
21147 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21148 {
21149 error ("no matching template for %qD found", result);
21150 return;
21151 }
21152 else if (!DECL_TEMPLATE_INFO (result))
21153 {
21154 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21155 return;
21156 }
21157
21158 if (storage == NULL_TREE)
21159 ;
21160 else if (storage == ridpointers[(int) RID_EXTERN])
21161 {
21162 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21163 pedwarn (input_location, OPT_Wpedantic,
21164 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21165 "instantiations");
21166 extern_p = 1;
21167 }
21168 else
21169 error ("storage class %qD applied to template instantiation", storage);
21170
21171 check_explicit_instantiation_namespace (result);
21172 mark_decl_instantiated (result, extern_p);
21173 if (! extern_p)
21174 instantiate_decl (result, /*defer_ok=*/1,
21175 /*expl_inst_class_mem_p=*/false);
21176 }
21177
21178 static void
21179 mark_class_instantiated (tree t, int extern_p)
21180 {
21181 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21182 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21183 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21184 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21185 if (! extern_p)
21186 {
21187 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21188 rest_of_type_compilation (t, 1);
21189 }
21190 }
21191
21192 /* Called from do_type_instantiation through binding_table_foreach to
21193 do recursive instantiation for the type bound in ENTRY. */
21194 static void
21195 bt_instantiate_type_proc (binding_entry entry, void *data)
21196 {
21197 tree storage = *(tree *) data;
21198
21199 if (MAYBE_CLASS_TYPE_P (entry->type)
21200 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21201 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21202 }
21203
21204 /* Called from do_type_instantiation to instantiate a member
21205 (a member function or a static member variable) of an
21206 explicitly instantiated class template. */
21207 static void
21208 instantiate_class_member (tree decl, int extern_p)
21209 {
21210 mark_decl_instantiated (decl, extern_p);
21211 if (! extern_p)
21212 instantiate_decl (decl, /*defer_ok=*/1,
21213 /*expl_inst_class_mem_p=*/true);
21214 }
21215
21216 /* Perform an explicit instantiation of template class T. STORAGE, if
21217 non-null, is the RID for extern, inline or static. COMPLAIN is
21218 nonzero if this is called from the parser, zero if called recursively,
21219 since the standard is unclear (as detailed below). */
21220
21221 void
21222 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
21223 {
21224 int extern_p = 0;
21225 int nomem_p = 0;
21226 int static_p = 0;
21227 int previous_instantiation_extern_p = 0;
21228
21229 if (TREE_CODE (t) == TYPE_DECL)
21230 t = TREE_TYPE (t);
21231
21232 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
21233 {
21234 tree tmpl =
21235 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
21236 if (tmpl)
21237 error ("explicit instantiation of non-class template %qD", tmpl);
21238 else
21239 error ("explicit instantiation of non-template type %qT", t);
21240 return;
21241 }
21242
21243 complete_type (t);
21244
21245 if (!COMPLETE_TYPE_P (t))
21246 {
21247 if (complain & tf_error)
21248 error ("explicit instantiation of %q#T before definition of template",
21249 t);
21250 return;
21251 }
21252
21253 if (storage != NULL_TREE)
21254 {
21255 if (!in_system_header_at (input_location))
21256 {
21257 if (storage == ridpointers[(int) RID_EXTERN])
21258 {
21259 if (cxx_dialect == cxx98)
21260 pedwarn (input_location, OPT_Wpedantic,
21261 "ISO C++ 1998 forbids the use of %<extern%> on "
21262 "explicit instantiations");
21263 }
21264 else
21265 pedwarn (input_location, OPT_Wpedantic,
21266 "ISO C++ forbids the use of %qE"
21267 " on explicit instantiations", storage);
21268 }
21269
21270 if (storage == ridpointers[(int) RID_INLINE])
21271 nomem_p = 1;
21272 else if (storage == ridpointers[(int) RID_EXTERN])
21273 extern_p = 1;
21274 else if (storage == ridpointers[(int) RID_STATIC])
21275 static_p = 1;
21276 else
21277 {
21278 error ("storage class %qD applied to template instantiation",
21279 storage);
21280 extern_p = 0;
21281 }
21282 }
21283
21284 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21285 {
21286 /* DR 259 [temp.spec].
21287
21288 Both an explicit instantiation and a declaration of an explicit
21289 specialization shall not appear in a program unless the explicit
21290 instantiation follows a declaration of the explicit specialization.
21291
21292 For a given set of template parameters, if an explicit
21293 instantiation of a template appears after a declaration of an
21294 explicit specialization for that template, the explicit
21295 instantiation has no effect. */
21296 return;
21297 }
21298 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21299 {
21300 /* [temp.spec]
21301
21302 No program shall explicitly instantiate any template more
21303 than once.
21304
21305 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21306 instantiation was `extern'. If EXTERN_P then the second is.
21307 These cases are OK. */
21308 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21309
21310 if (!previous_instantiation_extern_p && !extern_p
21311 && (complain & tf_error))
21312 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21313
21314 /* If we've already instantiated the template, just return now. */
21315 if (!CLASSTYPE_INTERFACE_ONLY (t))
21316 return;
21317 }
21318
21319 check_explicit_instantiation_namespace (TYPE_NAME (t));
21320 mark_class_instantiated (t, extern_p);
21321
21322 if (nomem_p)
21323 return;
21324
21325 {
21326 tree tmp;
21327
21328 /* In contrast to implicit instantiation, where only the
21329 declarations, and not the definitions, of members are
21330 instantiated, we have here:
21331
21332 [temp.explicit]
21333
21334 The explicit instantiation of a class template specialization
21335 implies the instantiation of all of its members not
21336 previously explicitly specialized in the translation unit
21337 containing the explicit instantiation.
21338
21339 Of course, we can't instantiate member template classes, since
21340 we don't have any arguments for them. Note that the standard
21341 is unclear on whether the instantiation of the members are
21342 *explicit* instantiations or not. However, the most natural
21343 interpretation is that it should be an explicit instantiation. */
21344
21345 if (! static_p)
21346 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21347 if (TREE_CODE (tmp) == FUNCTION_DECL
21348 && DECL_TEMPLATE_INSTANTIATION (tmp))
21349 instantiate_class_member (tmp, extern_p);
21350
21351 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21352 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21353 instantiate_class_member (tmp, extern_p);
21354
21355 if (CLASSTYPE_NESTED_UTDS (t))
21356 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21357 bt_instantiate_type_proc, &storage);
21358 }
21359 }
21360
21361 /* Given a function DECL, which is a specialization of TMPL, modify
21362 DECL to be a re-instantiation of TMPL with the same template
21363 arguments. TMPL should be the template into which tsubst'ing
21364 should occur for DECL, not the most general template.
21365
21366 One reason for doing this is a scenario like this:
21367
21368 template <class T>
21369 void f(const T&, int i);
21370
21371 void g() { f(3, 7); }
21372
21373 template <class T>
21374 void f(const T& t, const int i) { }
21375
21376 Note that when the template is first instantiated, with
21377 instantiate_template, the resulting DECL will have no name for the
21378 first parameter, and the wrong type for the second. So, when we go
21379 to instantiate the DECL, we regenerate it. */
21380
21381 static void
21382 regenerate_decl_from_template (tree decl, tree tmpl)
21383 {
21384 /* The arguments used to instantiate DECL, from the most general
21385 template. */
21386 tree args;
21387 tree code_pattern;
21388
21389 args = DECL_TI_ARGS (decl);
21390 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21391
21392 /* Make sure that we can see identifiers, and compute access
21393 correctly. */
21394 push_access_scope (decl);
21395
21396 if (TREE_CODE (decl) == FUNCTION_DECL)
21397 {
21398 tree decl_parm;
21399 tree pattern_parm;
21400 tree specs;
21401 int args_depth;
21402 int parms_depth;
21403
21404 args_depth = TMPL_ARGS_DEPTH (args);
21405 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21406 if (args_depth > parms_depth)
21407 args = get_innermost_template_args (args, parms_depth);
21408
21409 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21410 args, tf_error, NULL_TREE,
21411 /*defer_ok*/false);
21412 if (specs && specs != error_mark_node)
21413 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21414 specs);
21415
21416 /* Merge parameter declarations. */
21417 decl_parm = skip_artificial_parms_for (decl,
21418 DECL_ARGUMENTS (decl));
21419 pattern_parm
21420 = skip_artificial_parms_for (code_pattern,
21421 DECL_ARGUMENTS (code_pattern));
21422 while (decl_parm && !DECL_PACK_P (pattern_parm))
21423 {
21424 tree parm_type;
21425 tree attributes;
21426
21427 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21428 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21429 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21430 NULL_TREE);
21431 parm_type = type_decays_to (parm_type);
21432 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21433 TREE_TYPE (decl_parm) = parm_type;
21434 attributes = DECL_ATTRIBUTES (pattern_parm);
21435 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21436 {
21437 DECL_ATTRIBUTES (decl_parm) = attributes;
21438 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21439 }
21440 decl_parm = DECL_CHAIN (decl_parm);
21441 pattern_parm = DECL_CHAIN (pattern_parm);
21442 }
21443 /* Merge any parameters that match with the function parameter
21444 pack. */
21445 if (pattern_parm && DECL_PACK_P (pattern_parm))
21446 {
21447 int i, len;
21448 tree expanded_types;
21449 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21450 the parameters in this function parameter pack. */
21451 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21452 args, tf_error, NULL_TREE);
21453 len = TREE_VEC_LENGTH (expanded_types);
21454 for (i = 0; i < len; i++)
21455 {
21456 tree parm_type;
21457 tree attributes;
21458
21459 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21460 /* Rename the parameter to include the index. */
21461 DECL_NAME (decl_parm) =
21462 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21463 parm_type = TREE_VEC_ELT (expanded_types, i);
21464 parm_type = type_decays_to (parm_type);
21465 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21466 TREE_TYPE (decl_parm) = parm_type;
21467 attributes = DECL_ATTRIBUTES (pattern_parm);
21468 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21469 {
21470 DECL_ATTRIBUTES (decl_parm) = attributes;
21471 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21472 }
21473 decl_parm = DECL_CHAIN (decl_parm);
21474 }
21475 }
21476 /* Merge additional specifiers from the CODE_PATTERN. */
21477 if (DECL_DECLARED_INLINE_P (code_pattern)
21478 && !DECL_DECLARED_INLINE_P (decl))
21479 DECL_DECLARED_INLINE_P (decl) = 1;
21480 }
21481 else if (VAR_P (decl))
21482 {
21483 DECL_INITIAL (decl) =
21484 tsubst_expr (DECL_INITIAL (code_pattern), args,
21485 tf_error, DECL_TI_TEMPLATE (decl),
21486 /*integral_constant_expression_p=*/false);
21487 if (VAR_HAD_UNKNOWN_BOUND (decl))
21488 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21489 tf_error, DECL_TI_TEMPLATE (decl));
21490 }
21491 else
21492 gcc_unreachable ();
21493
21494 pop_access_scope (decl);
21495 }
21496
21497 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21498 substituted to get DECL. */
21499
21500 tree
21501 template_for_substitution (tree decl)
21502 {
21503 tree tmpl = DECL_TI_TEMPLATE (decl);
21504
21505 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21506 for the instantiation. This is not always the most general
21507 template. Consider, for example:
21508
21509 template <class T>
21510 struct S { template <class U> void f();
21511 template <> void f<int>(); };
21512
21513 and an instantiation of S<double>::f<int>. We want TD to be the
21514 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21515 while (/* An instantiation cannot have a definition, so we need a
21516 more general template. */
21517 DECL_TEMPLATE_INSTANTIATION (tmpl)
21518 /* We must also deal with friend templates. Given:
21519
21520 template <class T> struct S {
21521 template <class U> friend void f() {};
21522 };
21523
21524 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21525 so far as the language is concerned, but that's still
21526 where we get the pattern for the instantiation from. On
21527 other hand, if the definition comes outside the class, say:
21528
21529 template <class T> struct S {
21530 template <class U> friend void f();
21531 };
21532 template <class U> friend void f() {}
21533
21534 we don't need to look any further. That's what the check for
21535 DECL_INITIAL is for. */
21536 || (TREE_CODE (decl) == FUNCTION_DECL
21537 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21538 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21539 {
21540 /* The present template, TD, should not be a definition. If it
21541 were a definition, we should be using it! Note that we
21542 cannot restructure the loop to just keep going until we find
21543 a template with a definition, since that might go too far if
21544 a specialization was declared, but not defined. */
21545
21546 /* Fetch the more general template. */
21547 tmpl = DECL_TI_TEMPLATE (tmpl);
21548 }
21549
21550 return tmpl;
21551 }
21552
21553 /* Returns true if we need to instantiate this template instance even if we
21554 know we aren't going to emit it. */
21555
21556 bool
21557 always_instantiate_p (tree decl)
21558 {
21559 /* We always instantiate inline functions so that we can inline them. An
21560 explicit instantiation declaration prohibits implicit instantiation of
21561 non-inline functions. With high levels of optimization, we would
21562 normally inline non-inline functions -- but we're not allowed to do
21563 that for "extern template" functions. Therefore, we check
21564 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21565 return ((TREE_CODE (decl) == FUNCTION_DECL
21566 && (DECL_DECLARED_INLINE_P (decl)
21567 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21568 /* And we need to instantiate static data members so that
21569 their initializers are available in integral constant
21570 expressions. */
21571 || (VAR_P (decl)
21572 && decl_maybe_constant_var_p (decl)));
21573 }
21574
21575 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21576 instantiate it now, modifying TREE_TYPE (fn). */
21577
21578 void
21579 maybe_instantiate_noexcept (tree fn)
21580 {
21581 tree fntype, spec, noex, clone;
21582
21583 /* Don't instantiate a noexcept-specification from template context. */
21584 if (processing_template_decl)
21585 return;
21586
21587 if (DECL_CLONED_FUNCTION_P (fn))
21588 fn = DECL_CLONED_FUNCTION (fn);
21589 fntype = TREE_TYPE (fn);
21590 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21591
21592 if (!spec || !TREE_PURPOSE (spec))
21593 return;
21594
21595 noex = TREE_PURPOSE (spec);
21596
21597 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21598 {
21599 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21600 spec = get_defaulted_eh_spec (fn);
21601 else if (push_tinst_level (fn))
21602 {
21603 push_access_scope (fn);
21604 push_deferring_access_checks (dk_no_deferred);
21605 input_location = DECL_SOURCE_LOCATION (fn);
21606 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21607 DEFERRED_NOEXCEPT_ARGS (noex),
21608 tf_warning_or_error, fn,
21609 /*function_p=*/false,
21610 /*integral_constant_expression_p=*/true);
21611 pop_deferring_access_checks ();
21612 pop_access_scope (fn);
21613 pop_tinst_level ();
21614 spec = build_noexcept_spec (noex, tf_warning_or_error);
21615 if (spec == error_mark_node)
21616 spec = noexcept_false_spec;
21617 }
21618 else
21619 spec = noexcept_false_spec;
21620
21621 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21622 }
21623
21624 FOR_EACH_CLONE (clone, fn)
21625 {
21626 if (TREE_TYPE (clone) == fntype)
21627 TREE_TYPE (clone) = TREE_TYPE (fn);
21628 else
21629 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21630 }
21631 }
21632
21633 /* Produce the definition of D, a _DECL generated from a template. If
21634 DEFER_OK is nonzero, then we don't have to actually do the
21635 instantiation now; we just have to do it sometime. Normally it is
21636 an error if this is an explicit instantiation but D is undefined.
21637 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21638 explicitly instantiated class template. */
21639
21640 tree
21641 instantiate_decl (tree d, int defer_ok,
21642 bool expl_inst_class_mem_p)
21643 {
21644 tree tmpl = DECL_TI_TEMPLATE (d);
21645 tree gen_args;
21646 tree args;
21647 tree td;
21648 tree code_pattern;
21649 tree spec;
21650 tree gen_tmpl;
21651 bool pattern_defined;
21652 location_t saved_loc = input_location;
21653 int saved_unevaluated_operand = cp_unevaluated_operand;
21654 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21655 bool external_p;
21656 bool deleted_p;
21657 tree fn_context;
21658 bool nested = false;
21659
21660 /* This function should only be used to instantiate templates for
21661 functions and static member variables. */
21662 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21663
21664 /* A concept is never instantiated. */
21665 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21666
21667 /* Variables are never deferred; if instantiation is required, they
21668 are instantiated right away. That allows for better code in the
21669 case that an expression refers to the value of the variable --
21670 if the variable has a constant value the referring expression can
21671 take advantage of that fact. */
21672 if (VAR_P (d)
21673 || DECL_DECLARED_CONSTEXPR_P (d))
21674 defer_ok = 0;
21675
21676 /* Don't instantiate cloned functions. Instead, instantiate the
21677 functions they cloned. */
21678 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21679 d = DECL_CLONED_FUNCTION (d);
21680
21681 if (DECL_TEMPLATE_INSTANTIATED (d)
21682 || (TREE_CODE (d) == FUNCTION_DECL
21683 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21684 || DECL_TEMPLATE_SPECIALIZATION (d))
21685 /* D has already been instantiated or explicitly specialized, so
21686 there's nothing for us to do here.
21687
21688 It might seem reasonable to check whether or not D is an explicit
21689 instantiation, and, if so, stop here. But when an explicit
21690 instantiation is deferred until the end of the compilation,
21691 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21692 the instantiation. */
21693 return d;
21694
21695 /* Check to see whether we know that this template will be
21696 instantiated in some other file, as with "extern template"
21697 extension. */
21698 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21699
21700 /* In general, we do not instantiate such templates. */
21701 if (external_p && !always_instantiate_p (d))
21702 return d;
21703
21704 gen_tmpl = most_general_template (tmpl);
21705 gen_args = impartial_args (tmpl, DECL_TI_ARGS (d));
21706
21707 if (tmpl != gen_tmpl)
21708 /* We should already have the extra args. */
21709 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21710 == TMPL_ARGS_DEPTH (gen_args));
21711 /* And what's in the hash table should match D. */
21712 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21713 || spec == NULL_TREE);
21714
21715 /* This needs to happen before any tsubsting. */
21716 if (! push_tinst_level (d))
21717 return d;
21718
21719 timevar_push (TV_TEMPLATE_INST);
21720
21721 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21722 for the instantiation. */
21723 td = template_for_substitution (d);
21724 code_pattern = DECL_TEMPLATE_RESULT (td);
21725
21726 /* We should never be trying to instantiate a member of a class
21727 template or partial specialization. */
21728 gcc_assert (d != code_pattern);
21729
21730 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21731 || DECL_TEMPLATE_SPECIALIZATION (td))
21732 /* In the case of a friend template whose definition is provided
21733 outside the class, we may have too many arguments. Drop the
21734 ones we don't need. The same is true for specializations. */
21735 args = get_innermost_template_args
21736 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21737 else
21738 args = gen_args;
21739
21740 if (TREE_CODE (d) == FUNCTION_DECL)
21741 {
21742 deleted_p = DECL_DELETED_FN (code_pattern);
21743 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21744 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21745 || deleted_p);
21746 }
21747 else
21748 {
21749 deleted_p = false;
21750 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21751 }
21752
21753 /* We may be in the middle of deferred access check. Disable it now. */
21754 push_deferring_access_checks (dk_no_deferred);
21755
21756 /* Unless an explicit instantiation directive has already determined
21757 the linkage of D, remember that a definition is available for
21758 this entity. */
21759 if (pattern_defined
21760 && !DECL_INTERFACE_KNOWN (d)
21761 && !DECL_NOT_REALLY_EXTERN (d))
21762 mark_definable (d);
21763
21764 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21765 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21766 input_location = DECL_SOURCE_LOCATION (d);
21767
21768 /* If D is a member of an explicitly instantiated class template,
21769 and no definition is available, treat it like an implicit
21770 instantiation. */
21771 if (!pattern_defined && expl_inst_class_mem_p
21772 && DECL_EXPLICIT_INSTANTIATION (d))
21773 {
21774 /* Leave linkage flags alone on instantiations with anonymous
21775 visibility. */
21776 if (TREE_PUBLIC (d))
21777 {
21778 DECL_NOT_REALLY_EXTERN (d) = 0;
21779 DECL_INTERFACE_KNOWN (d) = 0;
21780 }
21781 SET_DECL_IMPLICIT_INSTANTIATION (d);
21782 }
21783
21784 /* Defer all other templates, unless we have been explicitly
21785 forbidden from doing so. */
21786 if (/* If there is no definition, we cannot instantiate the
21787 template. */
21788 ! pattern_defined
21789 /* If it's OK to postpone instantiation, do so. */
21790 || defer_ok
21791 /* If this is a static data member that will be defined
21792 elsewhere, we don't want to instantiate the entire data
21793 member, but we do want to instantiate the initializer so that
21794 we can substitute that elsewhere. */
21795 || (external_p && VAR_P (d))
21796 /* Handle here a deleted function too, avoid generating
21797 its body (c++/61080). */
21798 || deleted_p)
21799 {
21800 /* The definition of the static data member is now required so
21801 we must substitute the initializer. */
21802 if (VAR_P (d)
21803 && !DECL_INITIAL (d)
21804 && DECL_INITIAL (code_pattern))
21805 {
21806 tree ns;
21807 tree init;
21808 bool const_init = false;
21809 bool enter_context = DECL_CLASS_SCOPE_P (d);
21810
21811 ns = decl_namespace_context (d);
21812 push_nested_namespace (ns);
21813 if (enter_context)
21814 push_nested_class (DECL_CONTEXT (d));
21815 init = tsubst_expr (DECL_INITIAL (code_pattern),
21816 args,
21817 tf_warning_or_error, NULL_TREE,
21818 /*integral_constant_expression_p=*/false);
21819 /* If instantiating the initializer involved instantiating this
21820 again, don't call cp_finish_decl twice. */
21821 if (!DECL_INITIAL (d))
21822 {
21823 /* Make sure the initializer is still constant, in case of
21824 circular dependency (template/instantiate6.C). */
21825 const_init
21826 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21827 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21828 /*asmspec_tree=*/NULL_TREE,
21829 LOOKUP_ONLYCONVERTING);
21830 }
21831 if (enter_context)
21832 pop_nested_class ();
21833 pop_nested_namespace (ns);
21834 }
21835
21836 /* We restore the source position here because it's used by
21837 add_pending_template. */
21838 input_location = saved_loc;
21839
21840 if (at_eof && !pattern_defined
21841 && DECL_EXPLICIT_INSTANTIATION (d)
21842 && DECL_NOT_REALLY_EXTERN (d))
21843 /* [temp.explicit]
21844
21845 The definition of a non-exported function template, a
21846 non-exported member function template, or a non-exported
21847 member function or static data member of a class template
21848 shall be present in every translation unit in which it is
21849 explicitly instantiated. */
21850 permerror (input_location, "explicit instantiation of %qD "
21851 "but no definition available", d);
21852
21853 /* If we're in unevaluated context, we just wanted to get the
21854 constant value; this isn't an odr use, so don't queue
21855 a full instantiation. */
21856 if (cp_unevaluated_operand != 0)
21857 goto out;
21858 /* ??? Historically, we have instantiated inline functions, even
21859 when marked as "extern template". */
21860 if (!(external_p && VAR_P (d)))
21861 add_pending_template (d);
21862 goto out;
21863 }
21864 /* Tell the repository that D is available in this translation unit
21865 -- and see if it is supposed to be instantiated here. */
21866 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21867 {
21868 /* In a PCH file, despite the fact that the repository hasn't
21869 requested instantiation in the PCH it is still possible that
21870 an instantiation will be required in a file that includes the
21871 PCH. */
21872 if (pch_file)
21873 add_pending_template (d);
21874 /* Instantiate inline functions so that the inliner can do its
21875 job, even though we'll not be emitting a copy of this
21876 function. */
21877 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21878 goto out;
21879 }
21880
21881 fn_context = decl_function_context (d);
21882 nested = (current_function_decl != NULL_TREE);
21883 vec<tree> omp_privatization_save;
21884 if (nested)
21885 save_omp_privatization_clauses (omp_privatization_save);
21886
21887 if (!fn_context)
21888 push_to_top_level ();
21889 else
21890 {
21891 if (nested)
21892 push_function_context ();
21893 cp_unevaluated_operand = 0;
21894 c_inhibit_evaluation_warnings = 0;
21895 }
21896
21897 /* Mark D as instantiated so that recursive calls to
21898 instantiate_decl do not try to instantiate it again. */
21899 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21900
21901 /* Regenerate the declaration in case the template has been modified
21902 by a subsequent redeclaration. */
21903 regenerate_decl_from_template (d, td);
21904
21905 /* We already set the file and line above. Reset them now in case
21906 they changed as a result of calling regenerate_decl_from_template. */
21907 input_location = DECL_SOURCE_LOCATION (d);
21908
21909 if (VAR_P (d))
21910 {
21911 tree init;
21912 bool const_init = false;
21913
21914 /* Clear out DECL_RTL; whatever was there before may not be right
21915 since we've reset the type of the declaration. */
21916 SET_DECL_RTL (d, NULL);
21917 DECL_IN_AGGR_P (d) = 0;
21918
21919 /* The initializer is placed in DECL_INITIAL by
21920 regenerate_decl_from_template so we don't need to
21921 push/pop_access_scope again here. Pull it out so that
21922 cp_finish_decl can process it. */
21923 init = DECL_INITIAL (d);
21924 DECL_INITIAL (d) = NULL_TREE;
21925 DECL_INITIALIZED_P (d) = 0;
21926
21927 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21928 initializer. That function will defer actual emission until
21929 we have a chance to determine linkage. */
21930 DECL_EXTERNAL (d) = 0;
21931
21932 /* Enter the scope of D so that access-checking works correctly. */
21933 bool enter_context = DECL_CLASS_SCOPE_P (d);
21934 if (enter_context)
21935 push_nested_class (DECL_CONTEXT (d));
21936
21937 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21938 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21939
21940 if (enter_context)
21941 pop_nested_class ();
21942
21943 if (variable_template_p (td))
21944 note_variable_template_instantiation (d);
21945 }
21946 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21947 synthesize_method (d);
21948 else if (TREE_CODE (d) == FUNCTION_DECL)
21949 {
21950 hash_map<tree, tree> *saved_local_specializations;
21951 tree subst_decl;
21952 tree tmpl_parm;
21953 tree spec_parm;
21954 tree block = NULL_TREE;
21955
21956 /* Save away the current list, in case we are instantiating one
21957 template from within the body of another. */
21958 saved_local_specializations = local_specializations;
21959
21960 /* Set up the list of local specializations. */
21961 local_specializations = new hash_map<tree, tree>;
21962
21963 /* Set up context. */
21964 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21965 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21966 block = push_stmt_list ();
21967 else
21968 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21969
21970 /* Some typedefs referenced from within the template code need to be
21971 access checked at template instantiation time, i.e now. These
21972 types were added to the template at parsing time. Let's get those
21973 and perform the access checks then. */
21974 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21975 gen_args);
21976
21977 /* Create substitution entries for the parameters. */
21978 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21979 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21980 spec_parm = DECL_ARGUMENTS (d);
21981 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21982 {
21983 register_local_specialization (spec_parm, tmpl_parm);
21984 spec_parm = skip_artificial_parms_for (d, spec_parm);
21985 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21986 }
21987 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21988 {
21989 if (!DECL_PACK_P (tmpl_parm))
21990 {
21991 register_local_specialization (spec_parm, tmpl_parm);
21992 spec_parm = DECL_CHAIN (spec_parm);
21993 }
21994 else
21995 {
21996 /* Register the (value) argument pack as a specialization of
21997 TMPL_PARM, then move on. */
21998 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21999 register_local_specialization (argpack, tmpl_parm);
22000 }
22001 }
22002 gcc_assert (!spec_parm);
22003
22004 /* Substitute into the body of the function. */
22005 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22006 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
22007 tf_warning_or_error, tmpl);
22008 else
22009 {
22010 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
22011 tf_warning_or_error, tmpl,
22012 /*integral_constant_expression_p=*/false);
22013
22014 /* Set the current input_location to the end of the function
22015 so that finish_function knows where we are. */
22016 input_location
22017 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
22018
22019 /* Remember if we saw an infinite loop in the template. */
22020 current_function_infinite_loop
22021 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
22022 }
22023
22024 /* We don't need the local specializations any more. */
22025 delete local_specializations;
22026 local_specializations = saved_local_specializations;
22027
22028 /* Finish the function. */
22029 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22030 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22031 DECL_SAVED_TREE (d) = pop_stmt_list (block);
22032 else
22033 {
22034 d = finish_function (0);
22035 expand_or_defer_fn (d);
22036 }
22037
22038 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22039 cp_check_omp_declare_reduction (d);
22040 }
22041
22042 /* We're not deferring instantiation any more. */
22043 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
22044
22045 if (!fn_context)
22046 pop_from_top_level ();
22047 else if (nested)
22048 pop_function_context ();
22049
22050 out:
22051 input_location = saved_loc;
22052 cp_unevaluated_operand = saved_unevaluated_operand;
22053 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
22054 pop_deferring_access_checks ();
22055 pop_tinst_level ();
22056 if (nested)
22057 restore_omp_privatization_clauses (omp_privatization_save);
22058
22059 timevar_pop (TV_TEMPLATE_INST);
22060
22061 return d;
22062 }
22063
22064 /* Run through the list of templates that we wish we could
22065 instantiate, and instantiate any we can. RETRIES is the
22066 number of times we retry pending template instantiation. */
22067
22068 void
22069 instantiate_pending_templates (int retries)
22070 {
22071 int reconsider;
22072 location_t saved_loc = input_location;
22073
22074 /* Instantiating templates may trigger vtable generation. This in turn
22075 may require further template instantiations. We place a limit here
22076 to avoid infinite loop. */
22077 if (pending_templates && retries >= max_tinst_depth)
22078 {
22079 tree decl = pending_templates->tinst->decl;
22080
22081 fatal_error (input_location,
22082 "template instantiation depth exceeds maximum of %d"
22083 " instantiating %q+D, possibly from virtual table generation"
22084 " (use -ftemplate-depth= to increase the maximum)",
22085 max_tinst_depth, decl);
22086 if (TREE_CODE (decl) == FUNCTION_DECL)
22087 /* Pretend that we defined it. */
22088 DECL_INITIAL (decl) = error_mark_node;
22089 return;
22090 }
22091
22092 do
22093 {
22094 struct pending_template **t = &pending_templates;
22095 struct pending_template *last = NULL;
22096 reconsider = 0;
22097 while (*t)
22098 {
22099 tree instantiation = reopen_tinst_level ((*t)->tinst);
22100 bool complete = false;
22101
22102 if (TYPE_P (instantiation))
22103 {
22104 tree fn;
22105
22106 if (!COMPLETE_TYPE_P (instantiation))
22107 {
22108 instantiate_class_template (instantiation);
22109 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22110 for (fn = TYPE_METHODS (instantiation);
22111 fn;
22112 fn = TREE_CHAIN (fn))
22113 if (! DECL_ARTIFICIAL (fn))
22114 instantiate_decl (fn,
22115 /*defer_ok=*/0,
22116 /*expl_inst_class_mem_p=*/false);
22117 if (COMPLETE_TYPE_P (instantiation))
22118 reconsider = 1;
22119 }
22120
22121 complete = COMPLETE_TYPE_P (instantiation);
22122 }
22123 else
22124 {
22125 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22126 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22127 {
22128 instantiation
22129 = instantiate_decl (instantiation,
22130 /*defer_ok=*/0,
22131 /*expl_inst_class_mem_p=*/false);
22132 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22133 reconsider = 1;
22134 }
22135
22136 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22137 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22138 }
22139
22140 if (complete)
22141 /* If INSTANTIATION has been instantiated, then we don't
22142 need to consider it again in the future. */
22143 *t = (*t)->next;
22144 else
22145 {
22146 last = *t;
22147 t = &(*t)->next;
22148 }
22149 tinst_depth = 0;
22150 current_tinst_level = NULL;
22151 }
22152 last_pending_template = last;
22153 }
22154 while (reconsider);
22155
22156 input_location = saved_loc;
22157 }
22158
22159 /* Substitute ARGVEC into T, which is a list of initializers for
22160 either base class or a non-static data member. The TREE_PURPOSEs
22161 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22162 instantiate_decl. */
22163
22164 static tree
22165 tsubst_initializer_list (tree t, tree argvec)
22166 {
22167 tree inits = NULL_TREE;
22168
22169 for (; t; t = TREE_CHAIN (t))
22170 {
22171 tree decl;
22172 tree init;
22173 tree expanded_bases = NULL_TREE;
22174 tree expanded_arguments = NULL_TREE;
22175 int i, len = 1;
22176
22177 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22178 {
22179 tree expr;
22180 tree arg;
22181
22182 /* Expand the base class expansion type into separate base
22183 classes. */
22184 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22185 tf_warning_or_error,
22186 NULL_TREE);
22187 if (expanded_bases == error_mark_node)
22188 continue;
22189
22190 /* We'll be building separate TREE_LISTs of arguments for
22191 each base. */
22192 len = TREE_VEC_LENGTH (expanded_bases);
22193 expanded_arguments = make_tree_vec (len);
22194 for (i = 0; i < len; i++)
22195 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
22196
22197 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22198 expand each argument in the TREE_VALUE of t. */
22199 expr = make_node (EXPR_PACK_EXPANSION);
22200 PACK_EXPANSION_LOCAL_P (expr) = true;
22201 PACK_EXPANSION_PARAMETER_PACKS (expr) =
22202 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
22203
22204 if (TREE_VALUE (t) == void_type_node)
22205 /* VOID_TYPE_NODE is used to indicate
22206 value-initialization. */
22207 {
22208 for (i = 0; i < len; i++)
22209 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
22210 }
22211 else
22212 {
22213 /* Substitute parameter packs into each argument in the
22214 TREE_LIST. */
22215 in_base_initializer = 1;
22216 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
22217 {
22218 tree expanded_exprs;
22219
22220 /* Expand the argument. */
22221 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
22222 expanded_exprs
22223 = tsubst_pack_expansion (expr, argvec,
22224 tf_warning_or_error,
22225 NULL_TREE);
22226 if (expanded_exprs == error_mark_node)
22227 continue;
22228
22229 /* Prepend each of the expanded expressions to the
22230 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
22231 for (i = 0; i < len; i++)
22232 {
22233 TREE_VEC_ELT (expanded_arguments, i) =
22234 tree_cons (NULL_TREE,
22235 TREE_VEC_ELT (expanded_exprs, i),
22236 TREE_VEC_ELT (expanded_arguments, i));
22237 }
22238 }
22239 in_base_initializer = 0;
22240
22241 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22242 since we built them backwards. */
22243 for (i = 0; i < len; i++)
22244 {
22245 TREE_VEC_ELT (expanded_arguments, i) =
22246 nreverse (TREE_VEC_ELT (expanded_arguments, i));
22247 }
22248 }
22249 }
22250
22251 for (i = 0; i < len; ++i)
22252 {
22253 if (expanded_bases)
22254 {
22255 decl = TREE_VEC_ELT (expanded_bases, i);
22256 decl = expand_member_init (decl);
22257 init = TREE_VEC_ELT (expanded_arguments, i);
22258 }
22259 else
22260 {
22261 tree tmp;
22262 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
22263 tf_warning_or_error, NULL_TREE);
22264
22265 decl = expand_member_init (decl);
22266 if (decl && !DECL_P (decl))
22267 in_base_initializer = 1;
22268
22269 init = TREE_VALUE (t);
22270 tmp = init;
22271 if (init != void_type_node)
22272 init = tsubst_expr (init, argvec,
22273 tf_warning_or_error, NULL_TREE,
22274 /*integral_constant_expression_p=*/false);
22275 if (init == NULL_TREE && tmp != NULL_TREE)
22276 /* If we had an initializer but it instantiated to nothing,
22277 value-initialize the object. This will only occur when
22278 the initializer was a pack expansion where the parameter
22279 packs used in that expansion were of length zero. */
22280 init = void_type_node;
22281 in_base_initializer = 0;
22282 }
22283
22284 if (decl)
22285 {
22286 init = build_tree_list (decl, init);
22287 TREE_CHAIN (init) = inits;
22288 inits = init;
22289 }
22290 }
22291 }
22292 return inits;
22293 }
22294
22295 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22296
22297 static void
22298 set_current_access_from_decl (tree decl)
22299 {
22300 if (TREE_PRIVATE (decl))
22301 current_access_specifier = access_private_node;
22302 else if (TREE_PROTECTED (decl))
22303 current_access_specifier = access_protected_node;
22304 else
22305 current_access_specifier = access_public_node;
22306 }
22307
22308 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22309 is the instantiation (which should have been created with
22310 start_enum) and ARGS are the template arguments to use. */
22311
22312 static void
22313 tsubst_enum (tree tag, tree newtag, tree args)
22314 {
22315 tree e;
22316
22317 if (SCOPED_ENUM_P (newtag))
22318 begin_scope (sk_scoped_enum, newtag);
22319
22320 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22321 {
22322 tree value;
22323 tree decl;
22324
22325 decl = TREE_VALUE (e);
22326 /* Note that in a template enum, the TREE_VALUE is the
22327 CONST_DECL, not the corresponding INTEGER_CST. */
22328 value = tsubst_expr (DECL_INITIAL (decl),
22329 args, tf_warning_or_error, NULL_TREE,
22330 /*integral_constant_expression_p=*/true);
22331
22332 /* Give this enumeration constant the correct access. */
22333 set_current_access_from_decl (decl);
22334
22335 /* Actually build the enumerator itself. Here we're assuming that
22336 enumerators can't have dependent attributes. */
22337 build_enumerator (DECL_NAME (decl), value, newtag,
22338 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22339 }
22340
22341 if (SCOPED_ENUM_P (newtag))
22342 finish_scope ();
22343
22344 finish_enum_value_list (newtag);
22345 finish_enum (newtag);
22346
22347 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22348 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22349 }
22350
22351 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22352 its type -- but without substituting the innermost set of template
22353 arguments. So, innermost set of template parameters will appear in
22354 the type. */
22355
22356 tree
22357 get_mostly_instantiated_function_type (tree decl)
22358 {
22359 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22360 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22361 }
22362
22363 /* Return truthvalue if we're processing a template different from
22364 the last one involved in diagnostics. */
22365 bool
22366 problematic_instantiation_changed (void)
22367 {
22368 return current_tinst_level != last_error_tinst_level;
22369 }
22370
22371 /* Remember current template involved in diagnostics. */
22372 void
22373 record_last_problematic_instantiation (void)
22374 {
22375 last_error_tinst_level = current_tinst_level;
22376 }
22377
22378 struct tinst_level *
22379 current_instantiation (void)
22380 {
22381 return current_tinst_level;
22382 }
22383
22384 /* Return TRUE if current_function_decl is being instantiated, false
22385 otherwise. */
22386
22387 bool
22388 instantiating_current_function_p (void)
22389 {
22390 return (current_instantiation ()
22391 && current_instantiation ()->decl == current_function_decl);
22392 }
22393
22394 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22395 type. Return zero for ok, nonzero for disallowed. Issue error and
22396 warning messages under control of COMPLAIN. */
22397
22398 static int
22399 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22400 {
22401 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22402 return 0;
22403 else if (POINTER_TYPE_P (type))
22404 return 0;
22405 else if (TYPE_PTRMEM_P (type))
22406 return 0;
22407 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22408 return 0;
22409 else if (TREE_CODE (type) == TYPENAME_TYPE)
22410 return 0;
22411 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22412 return 0;
22413 else if (TREE_CODE (type) == NULLPTR_TYPE)
22414 return 0;
22415 /* A bound template template parm could later be instantiated to have a valid
22416 nontype parm type via an alias template. */
22417 else if (cxx_dialect >= cxx11
22418 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22419 return 0;
22420
22421 if (complain & tf_error)
22422 {
22423 if (type == error_mark_node)
22424 inform (input_location, "invalid template non-type parameter");
22425 else
22426 error ("%q#T is not a valid type for a template non-type parameter",
22427 type);
22428 }
22429 return 1;
22430 }
22431
22432 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22433 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22434
22435 static bool
22436 dependent_type_p_r (tree type)
22437 {
22438 tree scope;
22439
22440 /* [temp.dep.type]
22441
22442 A type is dependent if it is:
22443
22444 -- a template parameter. Template template parameters are types
22445 for us (since TYPE_P holds true for them) so we handle
22446 them here. */
22447 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22448 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22449 return true;
22450 /* -- a qualified-id with a nested-name-specifier which contains a
22451 class-name that names a dependent type or whose unqualified-id
22452 names a dependent type. */
22453 if (TREE_CODE (type) == TYPENAME_TYPE)
22454 return true;
22455
22456 /* An alias template specialization can be dependent even if the
22457 resulting type is not. */
22458 if (dependent_alias_template_spec_p (type))
22459 return true;
22460
22461 /* -- a cv-qualified type where the cv-unqualified type is
22462 dependent.
22463 No code is necessary for this bullet; the code below handles
22464 cv-qualified types, and we don't want to strip aliases with
22465 TYPE_MAIN_VARIANT because of DR 1558. */
22466 /* -- a compound type constructed from any dependent type. */
22467 if (TYPE_PTRMEM_P (type))
22468 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22469 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22470 (type)));
22471 else if (TYPE_PTR_P (type)
22472 || TREE_CODE (type) == REFERENCE_TYPE)
22473 return dependent_type_p (TREE_TYPE (type));
22474 else if (TREE_CODE (type) == FUNCTION_TYPE
22475 || TREE_CODE (type) == METHOD_TYPE)
22476 {
22477 tree arg_type;
22478
22479 if (dependent_type_p (TREE_TYPE (type)))
22480 return true;
22481 for (arg_type = TYPE_ARG_TYPES (type);
22482 arg_type;
22483 arg_type = TREE_CHAIN (arg_type))
22484 if (dependent_type_p (TREE_VALUE (arg_type)))
22485 return true;
22486 return false;
22487 }
22488 /* -- an array type constructed from any dependent type or whose
22489 size is specified by a constant expression that is
22490 value-dependent.
22491
22492 We checked for type- and value-dependence of the bounds in
22493 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22494 if (TREE_CODE (type) == ARRAY_TYPE)
22495 {
22496 if (TYPE_DOMAIN (type)
22497 && dependent_type_p (TYPE_DOMAIN (type)))
22498 return true;
22499 return dependent_type_p (TREE_TYPE (type));
22500 }
22501
22502 /* -- a template-id in which either the template name is a template
22503 parameter ... */
22504 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22505 return true;
22506 /* ... or any of the template arguments is a dependent type or
22507 an expression that is type-dependent or value-dependent. */
22508 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22509 && (any_dependent_template_arguments_p
22510 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22511 return true;
22512
22513 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22514 dependent; if the argument of the `typeof' expression is not
22515 type-dependent, then it should already been have resolved. */
22516 if (TREE_CODE (type) == TYPEOF_TYPE
22517 || TREE_CODE (type) == DECLTYPE_TYPE
22518 || TREE_CODE (type) == UNDERLYING_TYPE)
22519 return true;
22520
22521 /* A template argument pack is dependent if any of its packed
22522 arguments are. */
22523 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22524 {
22525 tree args = ARGUMENT_PACK_ARGS (type);
22526 int i, len = TREE_VEC_LENGTH (args);
22527 for (i = 0; i < len; ++i)
22528 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22529 return true;
22530 }
22531
22532 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22533 be template parameters. */
22534 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22535 return true;
22536
22537 /* The standard does not specifically mention types that are local
22538 to template functions or local classes, but they should be
22539 considered dependent too. For example:
22540
22541 template <int I> void f() {
22542 enum E { a = I };
22543 S<sizeof (E)> s;
22544 }
22545
22546 The size of `E' cannot be known until the value of `I' has been
22547 determined. Therefore, `E' must be considered dependent. */
22548 scope = TYPE_CONTEXT (type);
22549 if (scope && TYPE_P (scope))
22550 return dependent_type_p (scope);
22551 /* Don't use type_dependent_expression_p here, as it can lead
22552 to infinite recursion trying to determine whether a lambda
22553 nested in a lambda is dependent (c++/47687). */
22554 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22555 && DECL_LANG_SPECIFIC (scope)
22556 && DECL_TEMPLATE_INFO (scope)
22557 && (any_dependent_template_arguments_p
22558 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22559 return true;
22560
22561 /* Other types are non-dependent. */
22562 return false;
22563 }
22564
22565 /* Returns TRUE if TYPE is dependent, in the sense of
22566 [temp.dep.type]. Note that a NULL type is considered dependent. */
22567
22568 bool
22569 dependent_type_p (tree type)
22570 {
22571 /* If there are no template parameters in scope, then there can't be
22572 any dependent types. */
22573 if (!processing_template_decl)
22574 {
22575 /* If we are not processing a template, then nobody should be
22576 providing us with a dependent type. */
22577 gcc_assert (type);
22578 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22579 return false;
22580 }
22581
22582 /* If the type is NULL, we have not computed a type for the entity
22583 in question; in that case, the type is dependent. */
22584 if (!type)
22585 return true;
22586
22587 /* Erroneous types can be considered non-dependent. */
22588 if (type == error_mark_node)
22589 return false;
22590
22591 /* If we have not already computed the appropriate value for TYPE,
22592 do so now. */
22593 if (!TYPE_DEPENDENT_P_VALID (type))
22594 {
22595 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22596 TYPE_DEPENDENT_P_VALID (type) = 1;
22597 }
22598
22599 return TYPE_DEPENDENT_P (type);
22600 }
22601
22602 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22603 lookup. In other words, a dependent type that is not the current
22604 instantiation. */
22605
22606 bool
22607 dependent_scope_p (tree scope)
22608 {
22609 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22610 && !currently_open_class (scope));
22611 }
22612
22613 /* T is a SCOPE_REF; return whether we need to consider it
22614 instantiation-dependent so that we can check access at instantiation
22615 time even though we know which member it resolves to. */
22616
22617 static bool
22618 instantiation_dependent_scope_ref_p (tree t)
22619 {
22620 if (DECL_P (TREE_OPERAND (t, 1))
22621 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22622 && accessible_in_template_p (TREE_OPERAND (t, 0),
22623 TREE_OPERAND (t, 1)))
22624 return false;
22625 else
22626 return true;
22627 }
22628
22629 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22630 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22631 expression. */
22632
22633 /* Note that this predicate is not appropriate for general expressions;
22634 only constant expressions (that satisfy potential_constant_expression)
22635 can be tested for value dependence. */
22636
22637 bool
22638 value_dependent_expression_p (tree expression)
22639 {
22640 if (!processing_template_decl)
22641 return false;
22642
22643 /* A name declared with a dependent type. */
22644 if (DECL_P (expression) && type_dependent_expression_p (expression))
22645 return true;
22646
22647 switch (TREE_CODE (expression))
22648 {
22649 case IDENTIFIER_NODE:
22650 /* A name that has not been looked up -- must be dependent. */
22651 return true;
22652
22653 case TEMPLATE_PARM_INDEX:
22654 /* A non-type template parm. */
22655 return true;
22656
22657 case CONST_DECL:
22658 /* A non-type template parm. */
22659 if (DECL_TEMPLATE_PARM_P (expression))
22660 return true;
22661 return value_dependent_expression_p (DECL_INITIAL (expression));
22662
22663 case VAR_DECL:
22664 /* A constant with literal type and is initialized
22665 with an expression that is value-dependent.
22666
22667 Note that a non-dependent parenthesized initializer will have
22668 already been replaced with its constant value, so if we see
22669 a TREE_LIST it must be dependent. */
22670 if (DECL_INITIAL (expression)
22671 && decl_constant_var_p (expression)
22672 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22673 /* cp_finish_decl doesn't fold reference initializers. */
22674 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22675 || value_dependent_expression_p (DECL_INITIAL (expression))))
22676 return true;
22677 return false;
22678
22679 case DYNAMIC_CAST_EXPR:
22680 case STATIC_CAST_EXPR:
22681 case CONST_CAST_EXPR:
22682 case REINTERPRET_CAST_EXPR:
22683 case CAST_EXPR:
22684 /* These expressions are value-dependent if the type to which
22685 the cast occurs is dependent or the expression being casted
22686 is value-dependent. */
22687 {
22688 tree type = TREE_TYPE (expression);
22689
22690 if (dependent_type_p (type))
22691 return true;
22692
22693 /* A functional cast has a list of operands. */
22694 expression = TREE_OPERAND (expression, 0);
22695 if (!expression)
22696 {
22697 /* If there are no operands, it must be an expression such
22698 as "int()". This should not happen for aggregate types
22699 because it would form non-constant expressions. */
22700 gcc_assert (cxx_dialect >= cxx11
22701 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22702
22703 return false;
22704 }
22705
22706 if (TREE_CODE (expression) == TREE_LIST)
22707 return any_value_dependent_elements_p (expression);
22708
22709 return value_dependent_expression_p (expression);
22710 }
22711
22712 case SIZEOF_EXPR:
22713 if (SIZEOF_EXPR_TYPE_P (expression))
22714 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22715 /* FALLTHRU */
22716 case ALIGNOF_EXPR:
22717 case TYPEID_EXPR:
22718 /* A `sizeof' expression is value-dependent if the operand is
22719 type-dependent or is a pack expansion. */
22720 expression = TREE_OPERAND (expression, 0);
22721 if (PACK_EXPANSION_P (expression))
22722 return true;
22723 else if (TYPE_P (expression))
22724 return dependent_type_p (expression);
22725 return instantiation_dependent_expression_p (expression);
22726
22727 case AT_ENCODE_EXPR:
22728 /* An 'encode' expression is value-dependent if the operand is
22729 type-dependent. */
22730 expression = TREE_OPERAND (expression, 0);
22731 return dependent_type_p (expression);
22732
22733 case NOEXCEPT_EXPR:
22734 expression = TREE_OPERAND (expression, 0);
22735 return instantiation_dependent_expression_p (expression);
22736
22737 case SCOPE_REF:
22738 /* All instantiation-dependent expressions should also be considered
22739 value-dependent. */
22740 return instantiation_dependent_scope_ref_p (expression);
22741
22742 case COMPONENT_REF:
22743 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22744 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22745
22746 case NONTYPE_ARGUMENT_PACK:
22747 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22748 is value-dependent. */
22749 {
22750 tree values = ARGUMENT_PACK_ARGS (expression);
22751 int i, len = TREE_VEC_LENGTH (values);
22752
22753 for (i = 0; i < len; ++i)
22754 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22755 return true;
22756
22757 return false;
22758 }
22759
22760 case TRAIT_EXPR:
22761 {
22762 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22763 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22764 || (type2 ? dependent_type_p (type2) : false));
22765 }
22766
22767 case MODOP_EXPR:
22768 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22769 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22770
22771 case ARRAY_REF:
22772 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22773 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22774
22775 case ADDR_EXPR:
22776 {
22777 tree op = TREE_OPERAND (expression, 0);
22778 return (value_dependent_expression_p (op)
22779 || has_value_dependent_address (op));
22780 }
22781
22782 case REQUIRES_EXPR:
22783 /* Treat all requires-expressions as value-dependent so
22784 we don't try to fold them. */
22785 return true;
22786
22787 case TYPE_REQ:
22788 return dependent_type_p (TREE_OPERAND (expression, 0));
22789
22790 case CALL_EXPR:
22791 {
22792 tree fn = get_callee_fndecl (expression);
22793 int i, nargs;
22794 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22795 return true;
22796 nargs = call_expr_nargs (expression);
22797 for (i = 0; i < nargs; ++i)
22798 {
22799 tree op = CALL_EXPR_ARG (expression, i);
22800 /* In a call to a constexpr member function, look through the
22801 implicit ADDR_EXPR on the object argument so that it doesn't
22802 cause the call to be considered value-dependent. We also
22803 look through it in potential_constant_expression. */
22804 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22805 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22806 && TREE_CODE (op) == ADDR_EXPR)
22807 op = TREE_OPERAND (op, 0);
22808 if (value_dependent_expression_p (op))
22809 return true;
22810 }
22811 return false;
22812 }
22813
22814 case TEMPLATE_ID_EXPR:
22815 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22816 type-dependent. */
22817 return type_dependent_expression_p (expression)
22818 || variable_concept_p (TREE_OPERAND (expression, 0));
22819
22820 case CONSTRUCTOR:
22821 {
22822 unsigned ix;
22823 tree val;
22824 if (dependent_type_p (TREE_TYPE (expression)))
22825 return true;
22826 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22827 if (value_dependent_expression_p (val))
22828 return true;
22829 return false;
22830 }
22831
22832 case STMT_EXPR:
22833 /* Treat a GNU statement expression as dependent to avoid crashing
22834 under instantiate_non_dependent_expr; it can't be constant. */
22835 return true;
22836
22837 default:
22838 /* A constant expression is value-dependent if any subexpression is
22839 value-dependent. */
22840 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22841 {
22842 case tcc_reference:
22843 case tcc_unary:
22844 case tcc_comparison:
22845 case tcc_binary:
22846 case tcc_expression:
22847 case tcc_vl_exp:
22848 {
22849 int i, len = cp_tree_operand_length (expression);
22850
22851 for (i = 0; i < len; i++)
22852 {
22853 tree t = TREE_OPERAND (expression, i);
22854
22855 /* In some cases, some of the operands may be missing.l
22856 (For example, in the case of PREDECREMENT_EXPR, the
22857 amount to increment by may be missing.) That doesn't
22858 make the expression dependent. */
22859 if (t && value_dependent_expression_p (t))
22860 return true;
22861 }
22862 }
22863 break;
22864 default:
22865 break;
22866 }
22867 break;
22868 }
22869
22870 /* The expression is not value-dependent. */
22871 return false;
22872 }
22873
22874 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22875 [temp.dep.expr]. Note that an expression with no type is
22876 considered dependent. Other parts of the compiler arrange for an
22877 expression with type-dependent subexpressions to have no type, so
22878 this function doesn't have to be fully recursive. */
22879
22880 bool
22881 type_dependent_expression_p (tree expression)
22882 {
22883 if (!processing_template_decl)
22884 return false;
22885
22886 if (expression == NULL_TREE || expression == error_mark_node)
22887 return false;
22888
22889 /* An unresolved name is always dependent. */
22890 if (identifier_p (expression)
22891 || TREE_CODE (expression) == USING_DECL
22892 || TREE_CODE (expression) == WILDCARD_DECL)
22893 return true;
22894
22895 /* A fold expression is type-dependent. */
22896 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22897 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22898 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22899 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22900 return true;
22901
22902 /* Some expression forms are never type-dependent. */
22903 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22904 || TREE_CODE (expression) == SIZEOF_EXPR
22905 || TREE_CODE (expression) == ALIGNOF_EXPR
22906 || TREE_CODE (expression) == AT_ENCODE_EXPR
22907 || TREE_CODE (expression) == NOEXCEPT_EXPR
22908 || TREE_CODE (expression) == TRAIT_EXPR
22909 || TREE_CODE (expression) == TYPEID_EXPR
22910 || TREE_CODE (expression) == DELETE_EXPR
22911 || TREE_CODE (expression) == VEC_DELETE_EXPR
22912 || TREE_CODE (expression) == THROW_EXPR
22913 || TREE_CODE (expression) == REQUIRES_EXPR)
22914 return false;
22915
22916 /* The types of these expressions depends only on the type to which
22917 the cast occurs. */
22918 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22919 || TREE_CODE (expression) == STATIC_CAST_EXPR
22920 || TREE_CODE (expression) == CONST_CAST_EXPR
22921 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22922 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22923 || TREE_CODE (expression) == CAST_EXPR)
22924 return dependent_type_p (TREE_TYPE (expression));
22925
22926 /* The types of these expressions depends only on the type created
22927 by the expression. */
22928 if (TREE_CODE (expression) == NEW_EXPR
22929 || TREE_CODE (expression) == VEC_NEW_EXPR)
22930 {
22931 /* For NEW_EXPR tree nodes created inside a template, either
22932 the object type itself or a TREE_LIST may appear as the
22933 operand 1. */
22934 tree type = TREE_OPERAND (expression, 1);
22935 if (TREE_CODE (type) == TREE_LIST)
22936 /* This is an array type. We need to check array dimensions
22937 as well. */
22938 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22939 || value_dependent_expression_p
22940 (TREE_OPERAND (TREE_VALUE (type), 1));
22941 else
22942 return dependent_type_p (type);
22943 }
22944
22945 if (TREE_CODE (expression) == SCOPE_REF)
22946 {
22947 tree scope = TREE_OPERAND (expression, 0);
22948 tree name = TREE_OPERAND (expression, 1);
22949
22950 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22951 contains an identifier associated by name lookup with one or more
22952 declarations declared with a dependent type, or...a
22953 nested-name-specifier or qualified-id that names a member of an
22954 unknown specialization. */
22955 return (type_dependent_expression_p (name)
22956 || dependent_scope_p (scope));
22957 }
22958
22959 /* A function template specialization is type-dependent if it has any
22960 dependent template arguments. */
22961 if (TREE_CODE (expression) == FUNCTION_DECL
22962 && DECL_LANG_SPECIFIC (expression)
22963 && DECL_TEMPLATE_INFO (expression))
22964 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22965
22966 if (TREE_CODE (expression) == TEMPLATE_DECL
22967 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22968 return false;
22969
22970 if (TREE_CODE (expression) == STMT_EXPR)
22971 expression = stmt_expr_value_expr (expression);
22972
22973 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22974 {
22975 tree elt;
22976 unsigned i;
22977
22978 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22979 {
22980 if (type_dependent_expression_p (elt))
22981 return true;
22982 }
22983 return false;
22984 }
22985
22986 /* A static data member of the current instantiation with incomplete
22987 array type is type-dependent, as the definition and specializations
22988 can have different bounds. */
22989 if (VAR_P (expression)
22990 && DECL_CLASS_SCOPE_P (expression)
22991 && dependent_type_p (DECL_CONTEXT (expression))
22992 && VAR_HAD_UNKNOWN_BOUND (expression))
22993 return true;
22994
22995 /* An array of unknown bound depending on a variadic parameter, eg:
22996
22997 template<typename... Args>
22998 void foo (Args... args)
22999 {
23000 int arr[] = { args... };
23001 }
23002
23003 template<int... vals>
23004 void bar ()
23005 {
23006 int arr[] = { vals... };
23007 }
23008
23009 If the array has no length and has an initializer, it must be that
23010 we couldn't determine its length in cp_complete_array_type because
23011 it is dependent. */
23012 if (VAR_P (expression)
23013 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
23014 && !TYPE_DOMAIN (TREE_TYPE (expression))
23015 && DECL_INITIAL (expression))
23016 return true;
23017
23018 /* A variable template specialization is type-dependent if it has any
23019 dependent template arguments. */
23020 if (VAR_P (expression)
23021 && DECL_LANG_SPECIFIC (expression)
23022 && DECL_TEMPLATE_INFO (expression)
23023 && variable_template_p (DECL_TI_TEMPLATE (expression)))
23024 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
23025
23026 /* Always dependent, on the number of arguments if nothing else. */
23027 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
23028 return true;
23029
23030 if (TREE_TYPE (expression) == unknown_type_node)
23031 {
23032 if (TREE_CODE (expression) == ADDR_EXPR)
23033 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
23034 if (TREE_CODE (expression) == COMPONENT_REF
23035 || TREE_CODE (expression) == OFFSET_REF)
23036 {
23037 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
23038 return true;
23039 expression = TREE_OPERAND (expression, 1);
23040 if (identifier_p (expression))
23041 return false;
23042 }
23043 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23044 if (TREE_CODE (expression) == SCOPE_REF)
23045 return false;
23046
23047 if (BASELINK_P (expression))
23048 {
23049 if (BASELINK_OPTYPE (expression)
23050 && dependent_type_p (BASELINK_OPTYPE (expression)))
23051 return true;
23052 expression = BASELINK_FUNCTIONS (expression);
23053 }
23054
23055 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
23056 {
23057 if (any_dependent_template_arguments_p
23058 (TREE_OPERAND (expression, 1)))
23059 return true;
23060 expression = TREE_OPERAND (expression, 0);
23061 if (identifier_p (expression))
23062 return true;
23063 }
23064
23065 gcc_assert (TREE_CODE (expression) == OVERLOAD
23066 || TREE_CODE (expression) == FUNCTION_DECL);
23067
23068 while (expression)
23069 {
23070 if (type_dependent_expression_p (OVL_CURRENT (expression)))
23071 return true;
23072 expression = OVL_NEXT (expression);
23073 }
23074 return false;
23075 }
23076
23077 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23078
23079 return (dependent_type_p (TREE_TYPE (expression)));
23080 }
23081
23082 /* walk_tree callback function for instantiation_dependent_expression_p,
23083 below. Returns non-zero if a dependent subexpression is found. */
23084
23085 static tree
23086 instantiation_dependent_r (tree *tp, int *walk_subtrees,
23087 void * /*data*/)
23088 {
23089 if (TYPE_P (*tp))
23090 {
23091 /* We don't have to worry about decltype currently because decltype
23092 of an instantiation-dependent expr is a dependent type. This
23093 might change depending on the resolution of DR 1172. */
23094 *walk_subtrees = false;
23095 return NULL_TREE;
23096 }
23097 enum tree_code code = TREE_CODE (*tp);
23098 switch (code)
23099 {
23100 /* Don't treat an argument list as dependent just because it has no
23101 TREE_TYPE. */
23102 case TREE_LIST:
23103 case TREE_VEC:
23104 return NULL_TREE;
23105
23106 case VAR_DECL:
23107 case CONST_DECL:
23108 /* A constant with a dependent initializer is dependent. */
23109 if (value_dependent_expression_p (*tp))
23110 return *tp;
23111 break;
23112
23113 case TEMPLATE_PARM_INDEX:
23114 return *tp;
23115
23116 /* Handle expressions with type operands. */
23117 case SIZEOF_EXPR:
23118 case ALIGNOF_EXPR:
23119 case TYPEID_EXPR:
23120 case AT_ENCODE_EXPR:
23121 {
23122 tree op = TREE_OPERAND (*tp, 0);
23123 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23124 op = TREE_TYPE (op);
23125 if (TYPE_P (op))
23126 {
23127 if (dependent_type_p (op))
23128 return *tp;
23129 else
23130 {
23131 *walk_subtrees = false;
23132 return NULL_TREE;
23133 }
23134 }
23135 break;
23136 }
23137
23138 case TRAIT_EXPR:
23139 if (value_dependent_expression_p (*tp))
23140 return *tp;
23141 *walk_subtrees = false;
23142 return NULL_TREE;
23143
23144 case COMPONENT_REF:
23145 if (identifier_p (TREE_OPERAND (*tp, 1)))
23146 /* In a template, finish_class_member_access_expr creates a
23147 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23148 type-dependent, so that we can check access control at
23149 instantiation time (PR 42277). See also Core issue 1273. */
23150 return *tp;
23151 break;
23152
23153 case SCOPE_REF:
23154 if (instantiation_dependent_scope_ref_p (*tp))
23155 return *tp;
23156 else
23157 break;
23158
23159 /* Treat statement-expressions as dependent. */
23160 case BIND_EXPR:
23161 return *tp;
23162
23163 /* Treat requires-expressions as dependent. */
23164 case REQUIRES_EXPR:
23165 return *tp;
23166
23167 case CALL_EXPR:
23168 /* Treat calls to function concepts as dependent. */
23169 if (function_concept_check_p (*tp))
23170 return *tp;
23171 break;
23172
23173 case TEMPLATE_ID_EXPR:
23174 /* And variable concepts. */
23175 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
23176 return *tp;
23177 break;
23178
23179 default:
23180 break;
23181 }
23182
23183 if (type_dependent_expression_p (*tp))
23184 return *tp;
23185 else
23186 return NULL_TREE;
23187 }
23188
23189 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
23190 sense defined by the ABI:
23191
23192 "An expression is instantiation-dependent if it is type-dependent
23193 or value-dependent, or it has a subexpression that is type-dependent
23194 or value-dependent." */
23195
23196 bool
23197 instantiation_dependent_expression_p (tree expression)
23198 {
23199 tree result;
23200
23201 if (!processing_template_decl)
23202 return false;
23203
23204 if (expression == error_mark_node)
23205 return false;
23206
23207 result = cp_walk_tree_without_duplicates (&expression,
23208 instantiation_dependent_r, NULL);
23209 return result != NULL_TREE;
23210 }
23211
23212 /* Like type_dependent_expression_p, but it also works while not processing
23213 a template definition, i.e. during substitution or mangling. */
23214
23215 bool
23216 type_dependent_expression_p_push (tree expr)
23217 {
23218 bool b;
23219 ++processing_template_decl;
23220 b = type_dependent_expression_p (expr);
23221 --processing_template_decl;
23222 return b;
23223 }
23224
23225 /* Returns TRUE if ARGS contains a type-dependent expression. */
23226
23227 bool
23228 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
23229 {
23230 unsigned int i;
23231 tree arg;
23232
23233 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
23234 {
23235 if (type_dependent_expression_p (arg))
23236 return true;
23237 }
23238 return false;
23239 }
23240
23241 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23242 expressions) contains any type-dependent expressions. */
23243
23244 bool
23245 any_type_dependent_elements_p (const_tree list)
23246 {
23247 for (; list; list = TREE_CHAIN (list))
23248 if (type_dependent_expression_p (TREE_VALUE (list)))
23249 return true;
23250
23251 return false;
23252 }
23253
23254 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23255 expressions) contains any value-dependent expressions. */
23256
23257 bool
23258 any_value_dependent_elements_p (const_tree list)
23259 {
23260 for (; list; list = TREE_CHAIN (list))
23261 if (value_dependent_expression_p (TREE_VALUE (list)))
23262 return true;
23263
23264 return false;
23265 }
23266
23267 /* Returns TRUE if the ARG (a template argument) is dependent. */
23268
23269 bool
23270 dependent_template_arg_p (tree arg)
23271 {
23272 if (!processing_template_decl)
23273 return false;
23274
23275 /* Assume a template argument that was wrongly written by the user
23276 is dependent. This is consistent with what
23277 any_dependent_template_arguments_p [that calls this function]
23278 does. */
23279 if (!arg || arg == error_mark_node)
23280 return true;
23281
23282 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23283 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23284
23285 if (TREE_CODE (arg) == TEMPLATE_DECL
23286 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23287 return dependent_template_p (arg);
23288 else if (ARGUMENT_PACK_P (arg))
23289 {
23290 tree args = ARGUMENT_PACK_ARGS (arg);
23291 int i, len = TREE_VEC_LENGTH (args);
23292 for (i = 0; i < len; ++i)
23293 {
23294 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23295 return true;
23296 }
23297
23298 return false;
23299 }
23300 else if (TYPE_P (arg))
23301 return dependent_type_p (arg);
23302 else
23303 return (type_dependent_expression_p (arg)
23304 || value_dependent_expression_p (arg));
23305 }
23306
23307 /* Returns true if ARGS (a collection of template arguments) contains
23308 any types that require structural equality testing. */
23309
23310 bool
23311 any_template_arguments_need_structural_equality_p (tree args)
23312 {
23313 int i;
23314 int j;
23315
23316 if (!args)
23317 return false;
23318 if (args == error_mark_node)
23319 return true;
23320
23321 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23322 {
23323 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23324 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23325 {
23326 tree arg = TREE_VEC_ELT (level, j);
23327 tree packed_args = NULL_TREE;
23328 int k, len = 1;
23329
23330 if (ARGUMENT_PACK_P (arg))
23331 {
23332 /* Look inside the argument pack. */
23333 packed_args = ARGUMENT_PACK_ARGS (arg);
23334 len = TREE_VEC_LENGTH (packed_args);
23335 }
23336
23337 for (k = 0; k < len; ++k)
23338 {
23339 if (packed_args)
23340 arg = TREE_VEC_ELT (packed_args, k);
23341
23342 if (error_operand_p (arg))
23343 return true;
23344 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23345 continue;
23346 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23347 return true;
23348 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23349 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23350 return true;
23351 }
23352 }
23353 }
23354
23355 return false;
23356 }
23357
23358 /* Returns true if ARGS (a collection of template arguments) contains
23359 any dependent arguments. */
23360
23361 bool
23362 any_dependent_template_arguments_p (const_tree args)
23363 {
23364 int i;
23365 int j;
23366
23367 if (!args)
23368 return false;
23369 if (args == error_mark_node)
23370 return true;
23371
23372 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23373 {
23374 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23375 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23376 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23377 return true;
23378 }
23379
23380 return false;
23381 }
23382
23383 /* Returns TRUE if the template TMPL is dependent. */
23384
23385 bool
23386 dependent_template_p (tree tmpl)
23387 {
23388 if (TREE_CODE (tmpl) == OVERLOAD)
23389 {
23390 while (tmpl)
23391 {
23392 if (dependent_template_p (OVL_CURRENT (tmpl)))
23393 return true;
23394 tmpl = OVL_NEXT (tmpl);
23395 }
23396 return false;
23397 }
23398
23399 /* Template template parameters are dependent. */
23400 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23401 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23402 return true;
23403 /* So are names that have not been looked up. */
23404 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23405 return true;
23406 /* So are member templates of dependent classes. */
23407 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
23408 return dependent_type_p (DECL_CONTEXT (tmpl));
23409 return false;
23410 }
23411
23412 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23413
23414 bool
23415 dependent_template_id_p (tree tmpl, tree args)
23416 {
23417 return (dependent_template_p (tmpl)
23418 || any_dependent_template_arguments_p (args));
23419 }
23420
23421 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23422 are dependent. */
23423
23424 bool
23425 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23426 {
23427 int i;
23428
23429 if (!processing_template_decl)
23430 return false;
23431
23432 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23433 {
23434 tree decl = TREE_VEC_ELT (declv, i);
23435 tree init = TREE_VEC_ELT (initv, i);
23436 tree cond = TREE_VEC_ELT (condv, i);
23437 tree incr = TREE_VEC_ELT (incrv, i);
23438
23439 if (type_dependent_expression_p (decl)
23440 || TREE_CODE (decl) == SCOPE_REF)
23441 return true;
23442
23443 if (init && type_dependent_expression_p (init))
23444 return true;
23445
23446 if (type_dependent_expression_p (cond))
23447 return true;
23448
23449 if (COMPARISON_CLASS_P (cond)
23450 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23451 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23452 return true;
23453
23454 if (TREE_CODE (incr) == MODOP_EXPR)
23455 {
23456 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23457 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23458 return true;
23459 }
23460 else if (type_dependent_expression_p (incr))
23461 return true;
23462 else if (TREE_CODE (incr) == MODIFY_EXPR)
23463 {
23464 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23465 return true;
23466 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23467 {
23468 tree t = TREE_OPERAND (incr, 1);
23469 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23470 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23471 return true;
23472 }
23473 }
23474 }
23475
23476 return false;
23477 }
23478
23479 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23480 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23481 no such TYPE can be found. Note that this function peers inside
23482 uninstantiated templates and therefore should be used only in
23483 extremely limited situations. ONLY_CURRENT_P restricts this
23484 peering to the currently open classes hierarchy (which is required
23485 when comparing types). */
23486
23487 tree
23488 resolve_typename_type (tree type, bool only_current_p)
23489 {
23490 tree scope;
23491 tree name;
23492 tree decl;
23493 int quals;
23494 tree pushed_scope;
23495 tree result;
23496
23497 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23498
23499 scope = TYPE_CONTEXT (type);
23500 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23501 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23502 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23503 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23504 identifier of the TYPENAME_TYPE anymore.
23505 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23506 TYPENAME_TYPE instead, we avoid messing up with a possible
23507 typedef variant case. */
23508 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23509
23510 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23511 it first before we can figure out what NAME refers to. */
23512 if (TREE_CODE (scope) == TYPENAME_TYPE)
23513 {
23514 if (TYPENAME_IS_RESOLVING_P (scope))
23515 /* Given a class template A with a dependent base with nested type C,
23516 typedef typename A::C::C C will land us here, as trying to resolve
23517 the initial A::C leads to the local C typedef, which leads back to
23518 A::C::C. So we break the recursion now. */
23519 return type;
23520 else
23521 scope = resolve_typename_type (scope, only_current_p);
23522 }
23523 /* If we don't know what SCOPE refers to, then we cannot resolve the
23524 TYPENAME_TYPE. */
23525 if (TREE_CODE (scope) == TYPENAME_TYPE)
23526 return type;
23527 /* If the SCOPE is a template type parameter, we have no way of
23528 resolving the name. */
23529 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23530 return type;
23531 /* If the SCOPE is not the current instantiation, there's no reason
23532 to look inside it. */
23533 if (only_current_p && !currently_open_class (scope))
23534 return type;
23535 /* If this is a typedef, we don't want to look inside (c++/11987). */
23536 if (typedef_variant_p (type))
23537 return type;
23538 /* If SCOPE isn't the template itself, it will not have a valid
23539 TYPE_FIELDS list. */
23540 if (CLASS_TYPE_P (scope)
23541 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23542 /* scope is either the template itself or a compatible instantiation
23543 like X<T>, so look up the name in the original template. */
23544 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23545 else
23546 /* scope is a partial instantiation, so we can't do the lookup or we
23547 will lose the template arguments. */
23548 return type;
23549 /* Enter the SCOPE so that name lookup will be resolved as if we
23550 were in the class definition. In particular, SCOPE will no
23551 longer be considered a dependent type. */
23552 pushed_scope = push_scope (scope);
23553 /* Look up the declaration. */
23554 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23555 tf_warning_or_error);
23556
23557 result = NULL_TREE;
23558
23559 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23560 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23561 if (!decl)
23562 /*nop*/;
23563 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23564 && TREE_CODE (decl) == TYPE_DECL)
23565 {
23566 result = TREE_TYPE (decl);
23567 if (result == error_mark_node)
23568 result = NULL_TREE;
23569 }
23570 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23571 && DECL_CLASS_TEMPLATE_P (decl))
23572 {
23573 tree tmpl;
23574 tree args;
23575 /* Obtain the template and the arguments. */
23576 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23577 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23578 /* Instantiate the template. */
23579 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23580 /*entering_scope=*/0,
23581 tf_error | tf_user);
23582 if (result == error_mark_node)
23583 result = NULL_TREE;
23584 }
23585
23586 /* Leave the SCOPE. */
23587 if (pushed_scope)
23588 pop_scope (pushed_scope);
23589
23590 /* If we failed to resolve it, return the original typename. */
23591 if (!result)
23592 return type;
23593
23594 /* If lookup found a typename type, resolve that too. */
23595 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23596 {
23597 /* Ill-formed programs can cause infinite recursion here, so we
23598 must catch that. */
23599 TYPENAME_IS_RESOLVING_P (type) = 1;
23600 result = resolve_typename_type (result, only_current_p);
23601 TYPENAME_IS_RESOLVING_P (type) = 0;
23602 }
23603
23604 /* Qualify the resulting type. */
23605 quals = cp_type_quals (type);
23606 if (quals)
23607 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23608
23609 return result;
23610 }
23611
23612 /* EXPR is an expression which is not type-dependent. Return a proxy
23613 for EXPR that can be used to compute the types of larger
23614 expressions containing EXPR. */
23615
23616 tree
23617 build_non_dependent_expr (tree expr)
23618 {
23619 tree inner_expr;
23620
23621 /* When checking, try to get a constant value for all non-dependent
23622 expressions in order to expose bugs in *_dependent_expression_p
23623 and constexpr. */
23624 if (flag_checking && cxx_dialect >= cxx11
23625 /* Don't do this during nsdmi parsing as it can lead to
23626 unexpected recursive instantiations. */
23627 && !parsing_nsdmi ())
23628 fold_non_dependent_expr (expr);
23629
23630 /* Preserve OVERLOADs; the functions must be available to resolve
23631 types. */
23632 inner_expr = expr;
23633 if (TREE_CODE (inner_expr) == STMT_EXPR)
23634 inner_expr = stmt_expr_value_expr (inner_expr);
23635 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23636 inner_expr = TREE_OPERAND (inner_expr, 0);
23637 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23638 inner_expr = TREE_OPERAND (inner_expr, 1);
23639 if (is_overloaded_fn (inner_expr)
23640 || TREE_CODE (inner_expr) == OFFSET_REF)
23641 return expr;
23642 /* There is no need to return a proxy for a variable. */
23643 if (VAR_P (expr))
23644 return expr;
23645 /* Preserve string constants; conversions from string constants to
23646 "char *" are allowed, even though normally a "const char *"
23647 cannot be used to initialize a "char *". */
23648 if (TREE_CODE (expr) == STRING_CST)
23649 return expr;
23650 /* Preserve void and arithmetic constants, as an optimization -- there is no
23651 reason to create a new node. */
23652 if (TREE_CODE (expr) == VOID_CST
23653 || TREE_CODE (expr) == INTEGER_CST
23654 || TREE_CODE (expr) == REAL_CST)
23655 return expr;
23656 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23657 There is at least one place where we want to know that a
23658 particular expression is a throw-expression: when checking a ?:
23659 expression, there are special rules if the second or third
23660 argument is a throw-expression. */
23661 if (TREE_CODE (expr) == THROW_EXPR)
23662 return expr;
23663
23664 /* Don't wrap an initializer list, we need to be able to look inside. */
23665 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23666 return expr;
23667
23668 /* Don't wrap a dummy object, we need to be able to test for it. */
23669 if (is_dummy_object (expr))
23670 return expr;
23671
23672 if (TREE_CODE (expr) == COND_EXPR)
23673 return build3 (COND_EXPR,
23674 TREE_TYPE (expr),
23675 TREE_OPERAND (expr, 0),
23676 (TREE_OPERAND (expr, 1)
23677 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23678 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23679 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23680 if (TREE_CODE (expr) == COMPOUND_EXPR
23681 && !COMPOUND_EXPR_OVERLOADED (expr))
23682 return build2 (COMPOUND_EXPR,
23683 TREE_TYPE (expr),
23684 TREE_OPERAND (expr, 0),
23685 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23686
23687 /* If the type is unknown, it can't really be non-dependent */
23688 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23689
23690 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23691 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23692 }
23693
23694 /* ARGS is a vector of expressions as arguments to a function call.
23695 Replace the arguments with equivalent non-dependent expressions.
23696 This modifies ARGS in place. */
23697
23698 void
23699 make_args_non_dependent (vec<tree, va_gc> *args)
23700 {
23701 unsigned int ix;
23702 tree arg;
23703
23704 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23705 {
23706 tree newarg = build_non_dependent_expr (arg);
23707 if (newarg != arg)
23708 (*args)[ix] = newarg;
23709 }
23710 }
23711
23712 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23713 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23714 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23715
23716 static tree
23717 make_auto_1 (tree name, bool set_canonical)
23718 {
23719 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23720 TYPE_NAME (au) = build_decl (input_location,
23721 TYPE_DECL, name, au);
23722 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23723 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23724 (0, processing_template_decl + 1, processing_template_decl + 1,
23725 TYPE_NAME (au), NULL_TREE);
23726 if (set_canonical)
23727 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23728 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23729 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23730
23731 return au;
23732 }
23733
23734 tree
23735 make_decltype_auto (void)
23736 {
23737 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23738 }
23739
23740 tree
23741 make_auto (void)
23742 {
23743 return make_auto_1 (get_identifier ("auto"), true);
23744 }
23745
23746 /* Make a "constrained auto" type-specifier. This is an
23747 auto type with constraints that must be associated after
23748 deduction. The constraint is formed from the given
23749 CONC and its optional sequence of arguments, which are
23750 non-null if written as partial-concept-id. */
23751
23752 tree
23753 make_constrained_auto (tree con, tree args)
23754 {
23755 tree type = make_auto_1 (get_identifier ("auto"), false);
23756
23757 /* Build the constraint. */
23758 tree tmpl = DECL_TI_TEMPLATE (con);
23759 tree expr;
23760 if (VAR_P (con))
23761 expr = build_concept_check (tmpl, type, args);
23762 else
23763 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
23764
23765 tree constr = make_predicate_constraint (expr);
23766 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
23767
23768 /* Our canonical type depends on the constraint. */
23769 TYPE_CANONICAL (type) = canonical_type_parameter (type);
23770
23771 /* Attach the constraint to the type declaration. */
23772 tree decl = TYPE_NAME (type);
23773 return decl;
23774 }
23775
23776 /* Given type ARG, return std::initializer_list<ARG>. */
23777
23778 static tree
23779 listify (tree arg)
23780 {
23781 tree std_init_list = namespace_binding
23782 (get_identifier ("initializer_list"), std_node);
23783 tree argvec;
23784 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23785 {
23786 error ("deducing from brace-enclosed initializer list requires "
23787 "#include <initializer_list>");
23788 return error_mark_node;
23789 }
23790 argvec = make_tree_vec (1);
23791 TREE_VEC_ELT (argvec, 0) = arg;
23792 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23793 NULL_TREE, 0, tf_warning_or_error);
23794 }
23795
23796 /* Replace auto in TYPE with std::initializer_list<auto>. */
23797
23798 static tree
23799 listify_autos (tree type, tree auto_node)
23800 {
23801 tree init_auto = listify (auto_node);
23802 tree argvec = make_tree_vec (1);
23803 TREE_VEC_ELT (argvec, 0) = init_auto;
23804 if (processing_template_decl)
23805 argvec = add_to_template_args (current_template_args (), argvec);
23806 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23807 }
23808
23809 /* Hash traits for hashing possibly constrained 'auto'
23810 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23811
23812 struct auto_hash : default_hash_traits<tree>
23813 {
23814 static inline hashval_t hash (tree);
23815 static inline bool equal (tree, tree);
23816 };
23817
23818 /* Hash the 'auto' T. */
23819
23820 inline hashval_t
23821 auto_hash::hash (tree t)
23822 {
23823 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23824 /* Matching constrained-type-specifiers denote the same template
23825 parameter, so hash the constraint. */
23826 return hash_placeholder_constraint (c);
23827 else
23828 /* But unconstrained autos are all separate, so just hash the pointer. */
23829 return iterative_hash_object (t, 0);
23830 }
23831
23832 /* Compare two 'auto's. */
23833
23834 inline bool
23835 auto_hash::equal (tree t1, tree t2)
23836 {
23837 if (t1 == t2)
23838 return true;
23839
23840 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23841 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23842
23843 /* Two unconstrained autos are distinct. */
23844 if (!c1 || !c2)
23845 return false;
23846
23847 return equivalent_placeholder_constraints (c1, c2);
23848 }
23849
23850 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23851 constrained) auto, add it to the vector. */
23852
23853 static int
23854 extract_autos_r (tree t, void *data)
23855 {
23856 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23857 if (is_auto_or_concept (t))
23858 {
23859 /* All the autos were built with index 0; fix that up now. */
23860 tree *p = hash.find_slot (t, INSERT);
23861 unsigned idx;
23862 if (*p)
23863 /* If this is a repeated constrained-type-specifier, use the index we
23864 chose before. */
23865 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23866 else
23867 {
23868 /* Otherwise this is new, so use the current count. */
23869 *p = t;
23870 idx = hash.elements () - 1;
23871 }
23872 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23873 }
23874
23875 /* Always keep walking. */
23876 return 0;
23877 }
23878
23879 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23880 says they can appear anywhere in the type. */
23881
23882 static tree
23883 extract_autos (tree type)
23884 {
23885 hash_set<tree> visited;
23886 hash_table<auto_hash> hash (2);
23887
23888 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23889
23890 tree tree_vec = make_tree_vec (hash.elements());
23891 for (hash_table<auto_hash>::iterator iter = hash.begin();
23892 iter != hash.end(); ++iter)
23893 {
23894 tree elt = *iter;
23895 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23896 TREE_VEC_ELT (tree_vec, i)
23897 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23898 }
23899
23900 return tree_vec;
23901 }
23902
23903 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23904 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23905
23906 tree
23907 do_auto_deduction (tree type, tree init, tree auto_node)
23908 {
23909 return do_auto_deduction (type, init, auto_node,
23910 tf_warning_or_error,
23911 adc_unspecified);
23912 }
23913
23914 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23915 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23916 The CONTEXT determines the context in which auto deduction is performed
23917 and is used to control error diagnostics. */
23918
23919 tree
23920 do_auto_deduction (tree type, tree init, tree auto_node,
23921 tsubst_flags_t complain, auto_deduction_context context)
23922 {
23923 tree targs;
23924
23925 if (init == error_mark_node)
23926 return error_mark_node;
23927
23928 if (type_dependent_expression_p (init))
23929 /* Defining a subset of type-dependent expressions that we can deduce
23930 from ahead of time isn't worth the trouble. */
23931 return type;
23932
23933 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23934 with either a new invented type template parameter U or, if the
23935 initializer is a braced-init-list (8.5.4), with
23936 std::initializer_list<U>. */
23937 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23938 {
23939 if (!DIRECT_LIST_INIT_P (init))
23940 type = listify_autos (type, auto_node);
23941 else if (CONSTRUCTOR_NELTS (init) == 1)
23942 init = CONSTRUCTOR_ELT (init, 0)->value;
23943 else
23944 {
23945 if (complain & tf_warning_or_error)
23946 {
23947 if (permerror (input_location, "direct-list-initialization of "
23948 "%<auto%> requires exactly one element"))
23949 inform (input_location,
23950 "for deduction to %<std::initializer_list%>, use copy-"
23951 "list-initialization (i.e. add %<=%> before the %<{%>)");
23952 }
23953 type = listify_autos (type, auto_node);
23954 }
23955 }
23956
23957 if (type == error_mark_node)
23958 return error_mark_node;
23959
23960 init = resolve_nondeduced_context (init, complain);
23961
23962 if (AUTO_IS_DECLTYPE (auto_node))
23963 {
23964 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23965 && !REF_PARENTHESIZED_P (init)));
23966 targs = make_tree_vec (1);
23967 TREE_VEC_ELT (targs, 0)
23968 = finish_decltype_type (init, id, tf_warning_or_error);
23969 if (type != auto_node)
23970 {
23971 if (complain & tf_error)
23972 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23973 return error_mark_node;
23974 }
23975 }
23976 else
23977 {
23978 tree parms = build_tree_list (NULL_TREE, type);
23979 tree tparms;
23980
23981 if (flag_concepts)
23982 tparms = extract_autos (type);
23983 else
23984 {
23985 tparms = make_tree_vec (1);
23986 TREE_VEC_ELT (tparms, 0)
23987 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23988 }
23989
23990 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
23991 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23992 DEDUCE_CALL, LOOKUP_NORMAL,
23993 NULL, /*explain_p=*/false);
23994 if (val > 0)
23995 {
23996 if (processing_template_decl)
23997 /* Try again at instantiation time. */
23998 return type;
23999 if (type && type != error_mark_node
24000 && (complain & tf_error))
24001 /* If type is error_mark_node a diagnostic must have been
24002 emitted by now. Also, having a mention to '<type error>'
24003 in the diagnostic is not really useful to the user. */
24004 {
24005 if (cfun && auto_node == current_function_auto_return_pattern
24006 && LAMBDA_FUNCTION_P (current_function_decl))
24007 error ("unable to deduce lambda return type from %qE", init);
24008 else
24009 error ("unable to deduce %qT from %qE", type, init);
24010 type_unification_real (tparms, targs, parms, &init, 1, 0,
24011 DEDUCE_CALL, LOOKUP_NORMAL,
24012 NULL, /*explain_p=*/true);
24013 }
24014 return error_mark_node;
24015 }
24016 }
24017
24018 /* Check any placeholder constraints against the deduced type. */
24019 if (flag_concepts && !processing_template_decl)
24020 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
24021 {
24022 /* Use the deduced type to check the associated constraints. */
24023 if (!constraints_satisfied_p (constr, targs))
24024 {
24025 if (complain & tf_warning_or_error)
24026 {
24027 switch (context)
24028 {
24029 case adc_unspecified:
24030 error("placeholder constraints not satisfied");
24031 break;
24032 case adc_variable_type:
24033 error ("deduced initializer does not satisfy "
24034 "placeholder constraints");
24035 break;
24036 case adc_return_type:
24037 error ("deduced return type does not satisfy "
24038 "placeholder constraints");
24039 break;
24040 case adc_requirement:
24041 error ("deduced expression type does not saatisy "
24042 "placeholder constraints");
24043 break;
24044 }
24045 diagnose_constraints (input_location, constr, targs);
24046 }
24047 return error_mark_node;
24048 }
24049 }
24050
24051 if (processing_template_decl)
24052 targs = add_to_template_args (current_template_args (), targs);
24053 return tsubst (type, targs, complain, NULL_TREE);
24054 }
24055
24056 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
24057 result. */
24058
24059 tree
24060 splice_late_return_type (tree type, tree late_return_type)
24061 {
24062 if (is_auto (type))
24063 {
24064 if (late_return_type)
24065 return late_return_type;
24066
24067 tree idx = get_template_parm_index (type);
24068 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
24069 /* In an abbreviated function template we didn't know we were dealing
24070 with a function template when we saw the auto return type, so update
24071 it to have the correct level. */
24072 return make_auto_1 (TYPE_IDENTIFIER (type), true);
24073 }
24074 return type;
24075 }
24076
24077 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
24078 'decltype(auto)'. */
24079
24080 bool
24081 is_auto (const_tree type)
24082 {
24083 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
24084 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
24085 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
24086 return true;
24087 else
24088 return false;
24089 }
24090
24091 /* for_each_template_parm callback for type_uses_auto. */
24092
24093 int
24094 is_auto_r (tree tp, void */*data*/)
24095 {
24096 return is_auto_or_concept (tp);
24097 }
24098
24099 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
24100 a use of `auto'. Returns NULL_TREE otherwise. */
24101
24102 tree
24103 type_uses_auto (tree type)
24104 {
24105 if (type == NULL_TREE)
24106 return NULL_TREE;
24107 else if (flag_concepts)
24108 {
24109 /* The Concepts TS allows multiple autos in one type-specifier; just
24110 return the first one we find, do_auto_deduction will collect all of
24111 them. */
24112 if (uses_template_parms (type))
24113 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
24114 /*visited*/NULL, /*nondeduced*/true);
24115 else
24116 return NULL_TREE;
24117 }
24118 else
24119 return find_type_usage (type, is_auto);
24120 }
24121
24122 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
24123 'decltype(auto)' or a concept. */
24124
24125 bool
24126 is_auto_or_concept (const_tree type)
24127 {
24128 return is_auto (type); // or concept
24129 }
24130
24131 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
24132 a concept identifier) iff TYPE contains a use of a generic type. Returns
24133 NULL_TREE otherwise. */
24134
24135 tree
24136 type_uses_auto_or_concept (tree type)
24137 {
24138 return find_type_usage (type, is_auto_or_concept);
24139 }
24140
24141
24142 /* For a given template T, return the vector of typedefs referenced
24143 in T for which access check is needed at T instantiation time.
24144 T is either a FUNCTION_DECL or a RECORD_TYPE.
24145 Those typedefs were added to T by the function
24146 append_type_to_template_for_access_check. */
24147
24148 vec<qualified_typedef_usage_t, va_gc> *
24149 get_types_needing_access_check (tree t)
24150 {
24151 tree ti;
24152 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
24153
24154 if (!t || t == error_mark_node)
24155 return NULL;
24156
24157 if (!(ti = get_template_info (t)))
24158 return NULL;
24159
24160 if (CLASS_TYPE_P (t)
24161 || TREE_CODE (t) == FUNCTION_DECL)
24162 {
24163 if (!TI_TEMPLATE (ti))
24164 return NULL;
24165
24166 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
24167 }
24168
24169 return result;
24170 }
24171
24172 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
24173 tied to T. That list of typedefs will be access checked at
24174 T instantiation time.
24175 T is either a FUNCTION_DECL or a RECORD_TYPE.
24176 TYPE_DECL is a TYPE_DECL node representing a typedef.
24177 SCOPE is the scope through which TYPE_DECL is accessed.
24178 LOCATION is the location of the usage point of TYPE_DECL.
24179
24180 This function is a subroutine of
24181 append_type_to_template_for_access_check. */
24182
24183 static void
24184 append_type_to_template_for_access_check_1 (tree t,
24185 tree type_decl,
24186 tree scope,
24187 location_t location)
24188 {
24189 qualified_typedef_usage_t typedef_usage;
24190 tree ti;
24191
24192 if (!t || t == error_mark_node)
24193 return;
24194
24195 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
24196 || CLASS_TYPE_P (t))
24197 && type_decl
24198 && TREE_CODE (type_decl) == TYPE_DECL
24199 && scope);
24200
24201 if (!(ti = get_template_info (t)))
24202 return;
24203
24204 gcc_assert (TI_TEMPLATE (ti));
24205
24206 typedef_usage.typedef_decl = type_decl;
24207 typedef_usage.context = scope;
24208 typedef_usage.locus = location;
24209
24210 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
24211 }
24212
24213 /* Append TYPE_DECL to the template TEMPL.
24214 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
24215 At TEMPL instanciation time, TYPE_DECL will be checked to see
24216 if it can be accessed through SCOPE.
24217 LOCATION is the location of the usage point of TYPE_DECL.
24218
24219 e.g. consider the following code snippet:
24220
24221 class C
24222 {
24223 typedef int myint;
24224 };
24225
24226 template<class U> struct S
24227 {
24228 C::myint mi; // <-- usage point of the typedef C::myint
24229 };
24230
24231 S<char> s;
24232
24233 At S<char> instantiation time, we need to check the access of C::myint
24234 In other words, we need to check the access of the myint typedef through
24235 the C scope. For that purpose, this function will add the myint typedef
24236 and the scope C through which its being accessed to a list of typedefs
24237 tied to the template S. That list will be walked at template instantiation
24238 time and access check performed on each typedefs it contains.
24239 Note that this particular code snippet should yield an error because
24240 myint is private to C. */
24241
24242 void
24243 append_type_to_template_for_access_check (tree templ,
24244 tree type_decl,
24245 tree scope,
24246 location_t location)
24247 {
24248 qualified_typedef_usage_t *iter;
24249 unsigned i;
24250
24251 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
24252
24253 /* Make sure we don't append the type to the template twice. */
24254 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
24255 if (iter->typedef_decl == type_decl && scope == iter->context)
24256 return;
24257
24258 append_type_to_template_for_access_check_1 (templ, type_decl,
24259 scope, location);
24260 }
24261
24262 /* Convert the generic type parameters in PARM that match the types given in the
24263 range [START_IDX, END_IDX) from the current_template_parms into generic type
24264 packs. */
24265
24266 tree
24267 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
24268 {
24269 tree current = current_template_parms;
24270 int depth = TMPL_PARMS_DEPTH (current);
24271 current = INNERMOST_TEMPLATE_PARMS (current);
24272 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
24273
24274 for (int i = 0; i < start_idx; ++i)
24275 TREE_VEC_ELT (replacement, i)
24276 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24277
24278 for (int i = start_idx; i < end_idx; ++i)
24279 {
24280 /* Create a distinct parameter pack type from the current parm and add it
24281 to the replacement args to tsubst below into the generic function
24282 parameter. */
24283
24284 tree o = TREE_TYPE (TREE_VALUE
24285 (TREE_VEC_ELT (current, i)));
24286 tree t = copy_type (o);
24287 TEMPLATE_TYPE_PARM_INDEX (t)
24288 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
24289 o, 0, 0, tf_none);
24290 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
24291 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
24292 TYPE_MAIN_VARIANT (t) = t;
24293 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
24294 TYPE_CANONICAL (t) = canonical_type_parameter (t);
24295 TREE_VEC_ELT (replacement, i) = t;
24296 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24297 }
24298
24299 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24300 TREE_VEC_ELT (replacement, i)
24301 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24302
24303 /* If there are more levels then build up the replacement with the outer
24304 template parms. */
24305 if (depth > 1)
24306 replacement = add_to_template_args (template_parms_to_args
24307 (TREE_CHAIN (current_template_parms)),
24308 replacement);
24309
24310 return tsubst (parm, replacement, tf_none, NULL_TREE);
24311 }
24312
24313 /* Entries in the decl_constraint hash table. */
24314 struct GTY((for_user)) constr_entry
24315 {
24316 tree decl;
24317 tree ci;
24318 };
24319
24320 /* Hashing function and equality for constraint entries. */
24321 struct constr_hasher : ggc_ptr_hash<constr_entry>
24322 {
24323 static hashval_t hash (constr_entry *e)
24324 {
24325 return (hashval_t)DECL_UID (e->decl);
24326 }
24327
24328 static bool equal (constr_entry *e1, constr_entry *e2)
24329 {
24330 return e1->decl == e2->decl;
24331 }
24332 };
24333
24334 /* A mapping from declarations to constraint information. Note that
24335 both templates and their underlying declarations are mapped to the
24336 same constraint information.
24337
24338 FIXME: This is defined in pt.c because garbage collection
24339 code is not being generated for constraint.cc. */
24340
24341 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24342
24343 /* Returns true iff cinfo contains a valid set of constraints.
24344 This is the case when the associated requirements have been
24345 successfully decomposed into lists of atomic constraints.
24346 That is, when the saved assumptions are not error_mark_node. */
24347
24348 bool
24349 valid_constraints_p (tree cinfo)
24350 {
24351 gcc_assert (cinfo);
24352 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
24353 }
24354
24355 /* Returns the template constraints of declaration T. If T is not
24356 constrained, return NULL_TREE. Note that T must be non-null. */
24357
24358 tree
24359 get_constraints (tree t)
24360 {
24361 gcc_assert (DECL_P (t));
24362 if (TREE_CODE (t) == TEMPLATE_DECL)
24363 t = DECL_TEMPLATE_RESULT (t);
24364 constr_entry elt = { t, NULL_TREE };
24365 constr_entry* found = decl_constraints->find (&elt);
24366 if (found)
24367 return found->ci;
24368 else
24369 return NULL_TREE;
24370 }
24371
24372 /* Associate the given constraint information CI with the declaration
24373 T. If T is a template, then the constraints are associated with
24374 its underlying declaration. Don't build associations if CI is
24375 NULL_TREE. */
24376
24377 void
24378 set_constraints (tree t, tree ci)
24379 {
24380 if (!ci)
24381 return;
24382 gcc_assert (t);
24383 if (TREE_CODE (t) == TEMPLATE_DECL)
24384 t = DECL_TEMPLATE_RESULT (t);
24385 gcc_assert (!get_constraints (t));
24386 constr_entry elt = {t, ci};
24387 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24388 constr_entry* entry = ggc_alloc<constr_entry> ();
24389 *entry = elt;
24390 *slot = entry;
24391 }
24392
24393 /* Remove the associated constraints of the declaration T. */
24394
24395 void
24396 remove_constraints (tree t)
24397 {
24398 gcc_assert (DECL_P (t));
24399 if (TREE_CODE (t) == TEMPLATE_DECL)
24400 t = DECL_TEMPLATE_RESULT (t);
24401
24402 constr_entry elt = {t, NULL_TREE};
24403 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24404 if (slot)
24405 decl_constraints->clear_slot (slot);
24406 }
24407
24408 /* Set up the hash table for constraint association. */
24409
24410 void
24411 init_constraint_processing (void)
24412 {
24413 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24414 }
24415
24416 /* Set up the hash tables for template instantiations. */
24417
24418 void
24419 init_template_processing (void)
24420 {
24421 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24422 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24423 }
24424
24425 /* Print stats about the template hash tables for -fstats. */
24426
24427 void
24428 print_template_statistics (void)
24429 {
24430 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24431 "%f collisions\n", (long) decl_specializations->size (),
24432 (long) decl_specializations->elements (),
24433 decl_specializations->collisions ());
24434 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24435 "%f collisions\n", (long) type_specializations->size (),
24436 (long) type_specializations->elements (),
24437 type_specializations->collisions ());
24438 }
24439
24440 #include "gt-cp-pt.h"