re PR c++/68726 (ice: tree check: expected tree_vec, have error_mark in comp_template...
[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 tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
182 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
183 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
184 static void regenerate_decl_from_template (tree, tree);
185 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
186 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
187 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
188 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
189 static bool check_specialization_scope (void);
190 static tree process_partial_specialization (tree);
191 static void set_current_access_from_decl (tree);
192 static enum template_base_result get_template_base (tree, tree, tree, tree,
193 bool , tree *);
194 static tree try_class_unification (tree, tree, tree, tree, bool);
195 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
196 tree, tree);
197 static bool template_template_parm_bindings_ok_p (tree, tree);
198 static int template_args_equal (tree, tree);
199 static void tsubst_default_arguments (tree, tsubst_flags_t);
200 static tree for_each_template_parm_r (tree *, int *, void *);
201 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
202 static void copy_default_args_to_explicit_spec (tree);
203 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
204 static bool dependent_template_arg_p (tree);
205 static bool any_template_arguments_need_structural_equality_p (tree);
206 static bool dependent_type_p_r (tree);
207 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
208 static tree tsubst_decl (tree, tree, tsubst_flags_t);
209 static void perform_typedefs_access_check (tree tmpl, tree targs);
210 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
211 location_t);
212 static tree listify (tree);
213 static tree listify_autos (tree, tree);
214 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
215 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
216 static bool complex_alias_template_p (const_tree tmpl);
217 static tree tsubst_attributes (tree, tree, tsubst_flags_t, tree);
218
219 /* Make the current scope suitable for access checking when we are
220 processing T. T can be FUNCTION_DECL for instantiated function
221 template, VAR_DECL for static member variable, or TYPE_DECL for
222 alias template (needed by instantiate_decl). */
223
224 static void
225 push_access_scope (tree t)
226 {
227 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
228 || TREE_CODE (t) == TYPE_DECL);
229
230 if (DECL_FRIEND_CONTEXT (t))
231 push_nested_class (DECL_FRIEND_CONTEXT (t));
232 else if (DECL_CLASS_SCOPE_P (t))
233 push_nested_class (DECL_CONTEXT (t));
234 else
235 push_to_top_level ();
236
237 if (TREE_CODE (t) == FUNCTION_DECL)
238 {
239 saved_access_scope = tree_cons
240 (NULL_TREE, current_function_decl, saved_access_scope);
241 current_function_decl = t;
242 }
243 }
244
245 /* Restore the scope set up by push_access_scope. T is the node we
246 are processing. */
247
248 static void
249 pop_access_scope (tree t)
250 {
251 if (TREE_CODE (t) == FUNCTION_DECL)
252 {
253 current_function_decl = TREE_VALUE (saved_access_scope);
254 saved_access_scope = TREE_CHAIN (saved_access_scope);
255 }
256
257 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
258 pop_nested_class ();
259 else
260 pop_from_top_level ();
261 }
262
263 /* Do any processing required when DECL (a member template
264 declaration) is finished. Returns the TEMPLATE_DECL corresponding
265 to DECL, unless it is a specialization, in which case the DECL
266 itself is returned. */
267
268 tree
269 finish_member_template_decl (tree decl)
270 {
271 if (decl == error_mark_node)
272 return error_mark_node;
273
274 gcc_assert (DECL_P (decl));
275
276 if (TREE_CODE (decl) == TYPE_DECL)
277 {
278 tree type;
279
280 type = TREE_TYPE (decl);
281 if (type == error_mark_node)
282 return error_mark_node;
283 if (MAYBE_CLASS_TYPE_P (type)
284 && CLASSTYPE_TEMPLATE_INFO (type)
285 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
286 {
287 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
288 check_member_template (tmpl);
289 return tmpl;
290 }
291 return NULL_TREE;
292 }
293 else if (TREE_CODE (decl) == FIELD_DECL)
294 error ("data member %qD cannot be a member template", decl);
295 else if (DECL_TEMPLATE_INFO (decl))
296 {
297 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
298 {
299 check_member_template (DECL_TI_TEMPLATE (decl));
300 return DECL_TI_TEMPLATE (decl);
301 }
302 else
303 return decl;
304 }
305 else
306 error ("invalid member template declaration %qD", decl);
307
308 return error_mark_node;
309 }
310
311 /* Create a template info node. */
312
313 tree
314 build_template_info (tree template_decl, tree template_args)
315 {
316 tree result = make_node (TEMPLATE_INFO);
317 TI_TEMPLATE (result) = template_decl;
318 TI_ARGS (result) = template_args;
319 return result;
320 }
321
322 /* Return the template info node corresponding to T, whatever T is. */
323
324 tree
325 get_template_info (const_tree t)
326 {
327 tree tinfo = NULL_TREE;
328
329 if (!t || t == error_mark_node)
330 return NULL;
331
332 if (TREE_CODE (t) == NAMESPACE_DECL)
333 return NULL;
334
335 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
336 tinfo = DECL_TEMPLATE_INFO (t);
337
338 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
339 t = TREE_TYPE (t);
340
341 if (OVERLOAD_TYPE_P (t))
342 tinfo = TYPE_TEMPLATE_INFO (t);
343 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
344 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
345
346 return tinfo;
347 }
348
349 /* Returns the template nesting level of the indicated class TYPE.
350
351 For example, in:
352 template <class T>
353 struct A
354 {
355 template <class U>
356 struct B {};
357 };
358
359 A<T>::B<U> has depth two, while A<T> has depth one.
360 Both A<T>::B<int> and A<int>::B<U> have depth one, if
361 they are instantiations, not specializations.
362
363 This function is guaranteed to return 0 if passed NULL_TREE so
364 that, for example, `template_class_depth (current_class_type)' is
365 always safe. */
366
367 int
368 template_class_depth (tree type)
369 {
370 int depth;
371
372 for (depth = 0;
373 type && TREE_CODE (type) != NAMESPACE_DECL;
374 type = (TREE_CODE (type) == FUNCTION_DECL)
375 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
376 {
377 tree tinfo = get_template_info (type);
378
379 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
380 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
381 ++depth;
382 }
383
384 return depth;
385 }
386
387 /* Subroutine of maybe_begin_member_template_processing.
388 Returns true if processing DECL needs us to push template parms. */
389
390 static bool
391 inline_needs_template_parms (tree decl, bool nsdmi)
392 {
393 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
394 return false;
395
396 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
397 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
398 }
399
400 /* Subroutine of maybe_begin_member_template_processing.
401 Push the template parms in PARMS, starting from LEVELS steps into the
402 chain, and ending at the beginning, since template parms are listed
403 innermost first. */
404
405 static void
406 push_inline_template_parms_recursive (tree parmlist, int levels)
407 {
408 tree parms = TREE_VALUE (parmlist);
409 int i;
410
411 if (levels > 1)
412 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
413
414 ++processing_template_decl;
415 current_template_parms
416 = tree_cons (size_int (processing_template_decl),
417 parms, current_template_parms);
418 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
419
420 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
421 NULL);
422 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
423 {
424 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
425
426 if (error_operand_p (parm))
427 continue;
428
429 gcc_assert (DECL_P (parm));
430
431 switch (TREE_CODE (parm))
432 {
433 case TYPE_DECL:
434 case TEMPLATE_DECL:
435 pushdecl (parm);
436 break;
437
438 case PARM_DECL:
439 /* Push the CONST_DECL. */
440 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
441 break;
442
443 default:
444 gcc_unreachable ();
445 }
446 }
447 }
448
449 /* Restore the template parameter context for a member template, a
450 friend template defined in a class definition, or a non-template
451 member of template class. */
452
453 void
454 maybe_begin_member_template_processing (tree decl)
455 {
456 tree parms;
457 int levels = 0;
458 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
459
460 if (nsdmi)
461 {
462 tree ctx = DECL_CONTEXT (decl);
463 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
464 /* Disregard full specializations (c++/60999). */
465 && uses_template_parms (ctx)
466 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
467 }
468
469 if (inline_needs_template_parms (decl, nsdmi))
470 {
471 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
472 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
473
474 if (DECL_TEMPLATE_SPECIALIZATION (decl))
475 {
476 --levels;
477 parms = TREE_CHAIN (parms);
478 }
479
480 push_inline_template_parms_recursive (parms, levels);
481 }
482
483 /* Remember how many levels of template parameters we pushed so that
484 we can pop them later. */
485 inline_parm_levels.safe_push (levels);
486 }
487
488 /* Undo the effects of maybe_begin_member_template_processing. */
489
490 void
491 maybe_end_member_template_processing (void)
492 {
493 int i;
494 int last;
495
496 if (inline_parm_levels.length () == 0)
497 return;
498
499 last = inline_parm_levels.pop ();
500 for (i = 0; i < last; ++i)
501 {
502 --processing_template_decl;
503 current_template_parms = TREE_CHAIN (current_template_parms);
504 poplevel (0, 0, 0);
505 }
506 }
507
508 /* Return a new template argument vector which contains all of ARGS,
509 but has as its innermost set of arguments the EXTRA_ARGS. */
510
511 static tree
512 add_to_template_args (tree args, tree extra_args)
513 {
514 tree new_args;
515 int extra_depth;
516 int i;
517 int j;
518
519 if (args == NULL_TREE || extra_args == error_mark_node)
520 return extra_args;
521
522 extra_depth = TMPL_ARGS_DEPTH (extra_args);
523 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
524
525 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
526 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
527
528 for (j = 1; j <= extra_depth; ++j, ++i)
529 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
530
531 return new_args;
532 }
533
534 /* Like add_to_template_args, but only the outermost ARGS are added to
535 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
536 (EXTRA_ARGS) levels are added. This function is used to combine
537 the template arguments from a partial instantiation with the
538 template arguments used to attain the full instantiation from the
539 partial instantiation. */
540
541 static tree
542 add_outermost_template_args (tree args, tree extra_args)
543 {
544 tree new_args;
545
546 /* If there are more levels of EXTRA_ARGS than there are ARGS,
547 something very fishy is going on. */
548 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
549
550 /* If *all* the new arguments will be the EXTRA_ARGS, just return
551 them. */
552 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
553 return extra_args;
554
555 /* For the moment, we make ARGS look like it contains fewer levels. */
556 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
557
558 new_args = add_to_template_args (args, extra_args);
559
560 /* Now, we restore ARGS to its full dimensions. */
561 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
562
563 return new_args;
564 }
565
566 /* Return the N levels of innermost template arguments from the ARGS. */
567
568 tree
569 get_innermost_template_args (tree args, int n)
570 {
571 tree new_args;
572 int extra_levels;
573 int i;
574
575 gcc_assert (n >= 0);
576
577 /* If N is 1, just return the innermost set of template arguments. */
578 if (n == 1)
579 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
580
581 /* If we're not removing anything, just return the arguments we were
582 given. */
583 extra_levels = TMPL_ARGS_DEPTH (args) - n;
584 gcc_assert (extra_levels >= 0);
585 if (extra_levels == 0)
586 return args;
587
588 /* Make a new set of arguments, not containing the outer arguments. */
589 new_args = make_tree_vec (n);
590 for (i = 1; i <= n; ++i)
591 SET_TMPL_ARGS_LEVEL (new_args, i,
592 TMPL_ARGS_LEVEL (args, i + extra_levels));
593
594 return new_args;
595 }
596
597 /* The inverse of get_innermost_template_args: Return all but the innermost
598 EXTRA_LEVELS levels of template arguments from the ARGS. */
599
600 static tree
601 strip_innermost_template_args (tree args, int extra_levels)
602 {
603 tree new_args;
604 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
605 int i;
606
607 gcc_assert (n >= 0);
608
609 /* If N is 1, just return the outermost set of template arguments. */
610 if (n == 1)
611 return TMPL_ARGS_LEVEL (args, 1);
612
613 /* If we're not removing anything, just return the arguments we were
614 given. */
615 gcc_assert (extra_levels >= 0);
616 if (extra_levels == 0)
617 return args;
618
619 /* Make a new set of arguments, not containing the inner arguments. */
620 new_args = make_tree_vec (n);
621 for (i = 1; i <= n; ++i)
622 SET_TMPL_ARGS_LEVEL (new_args, i,
623 TMPL_ARGS_LEVEL (args, i));
624
625 return new_args;
626 }
627
628 /* We've got a template header coming up; push to a new level for storing
629 the parms. */
630
631 void
632 begin_template_parm_list (void)
633 {
634 /* We use a non-tag-transparent scope here, which causes pushtag to
635 put tags in this scope, rather than in the enclosing class or
636 namespace scope. This is the right thing, since we want
637 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
638 global template class, push_template_decl handles putting the
639 TEMPLATE_DECL into top-level scope. For a nested template class,
640 e.g.:
641
642 template <class T> struct S1 {
643 template <class T> struct S2 {};
644 };
645
646 pushtag contains special code to call pushdecl_with_scope on the
647 TEMPLATE_DECL for S2. */
648 begin_scope (sk_template_parms, NULL);
649 ++processing_template_decl;
650 ++processing_template_parmlist;
651 note_template_header (0);
652
653 /* Add a dummy parameter level while we process the parameter list. */
654 current_template_parms
655 = tree_cons (size_int (processing_template_decl),
656 make_tree_vec (0),
657 current_template_parms);
658 }
659
660 /* This routine is called when a specialization is declared. If it is
661 invalid to declare a specialization here, an error is reported and
662 false is returned, otherwise this routine will return true. */
663
664 static bool
665 check_specialization_scope (void)
666 {
667 tree scope = current_scope ();
668
669 /* [temp.expl.spec]
670
671 An explicit specialization shall be declared in the namespace of
672 which the template is a member, or, for member templates, in the
673 namespace of which the enclosing class or enclosing class
674 template is a member. An explicit specialization of a member
675 function, member class or static data member of a class template
676 shall be declared in the namespace of which the class template
677 is a member. */
678 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
679 {
680 error ("explicit specialization in non-namespace scope %qD", scope);
681 return false;
682 }
683
684 /* [temp.expl.spec]
685
686 In an explicit specialization declaration for a member of a class
687 template or a member template that appears in namespace scope,
688 the member template and some of its enclosing class templates may
689 remain unspecialized, except that the declaration shall not
690 explicitly specialize a class member template if its enclosing
691 class templates are not explicitly specialized as well. */
692 if (current_template_parms)
693 {
694 error ("enclosing class templates are not explicitly specialized");
695 return false;
696 }
697
698 return true;
699 }
700
701 /* We've just seen template <>. */
702
703 bool
704 begin_specialization (void)
705 {
706 begin_scope (sk_template_spec, NULL);
707 note_template_header (1);
708 return check_specialization_scope ();
709 }
710
711 /* Called at then end of processing a declaration preceded by
712 template<>. */
713
714 void
715 end_specialization (void)
716 {
717 finish_scope ();
718 reset_specialization ();
719 }
720
721 /* Any template <>'s that we have seen thus far are not referring to a
722 function specialization. */
723
724 void
725 reset_specialization (void)
726 {
727 processing_specialization = 0;
728 template_header_count = 0;
729 }
730
731 /* We've just seen a template header. If SPECIALIZATION is nonzero,
732 it was of the form template <>. */
733
734 static void
735 note_template_header (int specialization)
736 {
737 processing_specialization = specialization;
738 template_header_count++;
739 }
740
741 /* We're beginning an explicit instantiation. */
742
743 void
744 begin_explicit_instantiation (void)
745 {
746 gcc_assert (!processing_explicit_instantiation);
747 processing_explicit_instantiation = true;
748 }
749
750
751 void
752 end_explicit_instantiation (void)
753 {
754 gcc_assert (processing_explicit_instantiation);
755 processing_explicit_instantiation = false;
756 }
757
758 /* An explicit specialization or partial specialization of TMPL is being
759 declared. Check that the namespace in which the specialization is
760 occurring is permissible. Returns false iff it is invalid to
761 specialize TMPL in the current namespace. */
762
763 static bool
764 check_specialization_namespace (tree tmpl)
765 {
766 tree tpl_ns = decl_namespace_context (tmpl);
767
768 /* [tmpl.expl.spec]
769
770 An explicit specialization shall be declared in the namespace of
771 which the template is a member, or, for member templates, in the
772 namespace of which the enclosing class or enclosing class
773 template is a member. An explicit specialization of a member
774 function, member class or static data member of a class template
775 shall be declared in the namespace of which the class template is
776 a member. */
777 if (current_scope() != DECL_CONTEXT (tmpl)
778 && !at_namespace_scope_p ())
779 {
780 error ("specialization of %qD must appear at namespace scope", tmpl);
781 return false;
782 }
783 if (is_associated_namespace (current_namespace, tpl_ns))
784 /* Same or super-using namespace. */
785 return true;
786 else
787 {
788 permerror (input_location,
789 "specialization of %qD in different namespace", tmpl);
790 permerror (DECL_SOURCE_LOCATION (tmpl),
791 " from definition of %q#D", tmpl);
792 return false;
793 }
794 }
795
796 /* SPEC is an explicit instantiation. Check that it is valid to
797 perform this explicit instantiation in the current namespace. */
798
799 static void
800 check_explicit_instantiation_namespace (tree spec)
801 {
802 tree ns;
803
804 /* DR 275: An explicit instantiation shall appear in an enclosing
805 namespace of its template. */
806 ns = decl_namespace_context (spec);
807 if (!is_ancestor (current_namespace, ns))
808 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
809 "(which does not enclose namespace %qD)",
810 spec, current_namespace, ns);
811 }
812
813 // Returns the type of a template specialization only if that
814 // specialization needs to be defined. Otherwise (e.g., if the type has
815 // already been defined), the function returns NULL_TREE.
816 static tree
817 maybe_new_partial_specialization (tree type)
818 {
819 // An implicit instantiation of an incomplete type implies
820 // the definition of a new class template.
821 //
822 // template<typename T>
823 // struct S;
824 //
825 // template<typename T>
826 // struct S<T*>;
827 //
828 // Here, S<T*> is an implicit instantiation of S whose type
829 // is incomplete.
830 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
831 return type;
832
833 // It can also be the case that TYPE is a completed specialization.
834 // Continuing the previous example, suppose we also declare:
835 //
836 // template<typename T>
837 // requires Integral<T>
838 // struct S<T*>;
839 //
840 // Here, S<T*> refers to the specialization S<T*> defined
841 // above. However, we need to differentiate definitions because
842 // we intend to define a new partial specialization. In this case,
843 // we rely on the fact that the constraints are different for
844 // this declaration than that above.
845 //
846 // Note that we also get here for injected class names and
847 // late-parsed template definitions. We must ensure that we
848 // do not create new type declarations for those cases.
849 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
850 {
851 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
852 tree args = CLASSTYPE_TI_ARGS (type);
853
854 // If there are no template parameters, this cannot be a new
855 // partial template specializtion?
856 if (!current_template_parms)
857 return NULL_TREE;
858
859 // The injected-class-name is not a new partial specialization.
860 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
861 return NULL_TREE;
862
863 // If the constraints are not the same as those of the primary
864 // then, we can probably create a new specialization.
865 tree type_constr = current_template_constraints ();
866
867 if (type == TREE_TYPE (tmpl))
868 {
869 tree main_constr = get_constraints (tmpl);
870 if (equivalent_constraints (type_constr, main_constr))
871 return NULL_TREE;
872 }
873
874 // Also, if there's a pre-existing specialization with matching
875 // constraints, then this also isn't new.
876 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
877 while (specs)
878 {
879 tree spec_tmpl = TREE_VALUE (specs);
880 tree spec_args = TREE_PURPOSE (specs);
881 tree spec_constr = get_constraints (spec_tmpl);
882 if (comp_template_args (args, spec_args)
883 && equivalent_constraints (type_constr, spec_constr))
884 return NULL_TREE;
885 specs = TREE_CHAIN (specs);
886 }
887
888 // Create a new type node (and corresponding type decl)
889 // for the newly declared specialization.
890 tree t = make_class_type (TREE_CODE (type));
891 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
892 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
893 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
894
895 /* We only need a separate type node for storing the definition of this
896 partial specialization; uses of S<T*> are unconstrained, so all are
897 equivalent. So keep TYPE_CANONICAL the same. */
898 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
899
900 // Build the corresponding type decl.
901 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
902 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
903 DECL_SOURCE_LOCATION (d) = input_location;
904
905 return t;
906 }
907
908 return NULL_TREE;
909 }
910
911 /* The TYPE is being declared. If it is a template type, that means it
912 is a partial specialization. Do appropriate error-checking. */
913
914 tree
915 maybe_process_partial_specialization (tree type)
916 {
917 tree context;
918
919 if (type == error_mark_node)
920 return error_mark_node;
921
922 /* A lambda that appears in specialization context is not itself a
923 specialization. */
924 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
925 return type;
926
927 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
928 {
929 error ("name of class shadows template template parameter %qD",
930 TYPE_NAME (type));
931 return error_mark_node;
932 }
933
934 context = TYPE_CONTEXT (type);
935
936 if (TYPE_ALIAS_P (type))
937 {
938 if (TYPE_TEMPLATE_INFO (type)
939 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
940 error ("specialization of alias template %qD",
941 TYPE_TI_TEMPLATE (type));
942 else
943 error ("explicit specialization of non-template %qT", type);
944 return error_mark_node;
945 }
946 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
947 {
948 /* This is for ordinary explicit specialization and partial
949 specialization of a template class such as:
950
951 template <> class C<int>;
952
953 or:
954
955 template <class T> class C<T*>;
956
957 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
958
959 if (tree t = maybe_new_partial_specialization (type))
960 {
961 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
962 && !at_namespace_scope_p ())
963 return error_mark_node;
964 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
965 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
966 if (processing_template_decl)
967 {
968 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
969 if (decl == error_mark_node)
970 return error_mark_node;
971 return TREE_TYPE (decl);
972 }
973 }
974 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
975 error ("specialization of %qT after instantiation", type);
976 else if (errorcount && !processing_specialization
977 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
978 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
979 /* Trying to define a specialization either without a template<> header
980 or in an inappropriate place. We've already given an error, so just
981 bail now so we don't actually define the specialization. */
982 return error_mark_node;
983 }
984 else if (CLASS_TYPE_P (type)
985 && !CLASSTYPE_USE_TEMPLATE (type)
986 && CLASSTYPE_TEMPLATE_INFO (type)
987 && context && CLASS_TYPE_P (context)
988 && CLASSTYPE_TEMPLATE_INFO (context))
989 {
990 /* This is for an explicit specialization of member class
991 template according to [temp.expl.spec/18]:
992
993 template <> template <class U> class C<int>::D;
994
995 The context `C<int>' must be an implicit instantiation.
996 Otherwise this is just a member class template declared
997 earlier like:
998
999 template <> class C<int> { template <class U> class D; };
1000 template <> template <class U> class C<int>::D;
1001
1002 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1003 while in the second case, `C<int>::D' is a primary template
1004 and `C<T>::D' may not exist. */
1005
1006 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1007 && !COMPLETE_TYPE_P (type))
1008 {
1009 tree t;
1010 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1011
1012 if (current_namespace
1013 != decl_namespace_context (tmpl))
1014 {
1015 permerror (input_location,
1016 "specializing %q#T in different namespace", type);
1017 permerror (DECL_SOURCE_LOCATION (tmpl),
1018 " from definition of %q#D", tmpl);
1019 }
1020
1021 /* Check for invalid specialization after instantiation:
1022
1023 template <> template <> class C<int>::D<int>;
1024 template <> template <class U> class C<int>::D; */
1025
1026 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1027 t; t = TREE_CHAIN (t))
1028 {
1029 tree inst = TREE_VALUE (t);
1030 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1031 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1032 {
1033 /* We already have a full specialization of this partial
1034 instantiation, or a full specialization has been
1035 looked up but not instantiated. Reassign it to the
1036 new member specialization template. */
1037 spec_entry elt;
1038 spec_entry *entry;
1039
1040 elt.tmpl = most_general_template (tmpl);
1041 elt.args = CLASSTYPE_TI_ARGS (inst);
1042 elt.spec = inst;
1043
1044 type_specializations->remove_elt (&elt);
1045
1046 elt.tmpl = tmpl;
1047 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1048
1049 spec_entry **slot
1050 = type_specializations->find_slot (&elt, INSERT);
1051 entry = ggc_alloc<spec_entry> ();
1052 *entry = elt;
1053 *slot = entry;
1054 }
1055 else
1056 /* But if we've had an implicit instantiation, that's a
1057 problem ([temp.expl.spec]/6). */
1058 error ("specialization %qT after instantiation %qT",
1059 type, inst);
1060 }
1061
1062 /* Mark TYPE as a specialization. And as a result, we only
1063 have one level of template argument for the innermost
1064 class template. */
1065 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1066 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1067 CLASSTYPE_TI_ARGS (type)
1068 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1069 }
1070 }
1071 else if (processing_specialization)
1072 {
1073 /* Someday C++0x may allow for enum template specialization. */
1074 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1075 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1076 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1077 "of %qD not allowed by ISO C++", type);
1078 else
1079 {
1080 error ("explicit specialization of non-template %qT", type);
1081 return error_mark_node;
1082 }
1083 }
1084
1085 return type;
1086 }
1087
1088 /* Returns nonzero if we can optimize the retrieval of specializations
1089 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1090 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1091
1092 static inline bool
1093 optimize_specialization_lookup_p (tree tmpl)
1094 {
1095 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1096 && DECL_CLASS_SCOPE_P (tmpl)
1097 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1098 parameter. */
1099 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1100 /* The optimized lookup depends on the fact that the
1101 template arguments for the member function template apply
1102 purely to the containing class, which is not true if the
1103 containing class is an explicit or partial
1104 specialization. */
1105 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1106 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1107 && !DECL_CONV_FN_P (tmpl)
1108 /* It is possible to have a template that is not a member
1109 template and is not a member of a template class:
1110
1111 template <typename T>
1112 struct S { friend A::f(); };
1113
1114 Here, the friend function is a template, but the context does
1115 not have template information. The optimized lookup relies
1116 on having ARGS be the template arguments for both the class
1117 and the function template. */
1118 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1119 }
1120
1121 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1122 gone through coerce_template_parms by now. */
1123
1124 static void
1125 verify_unstripped_args (tree args)
1126 {
1127 ++processing_template_decl;
1128 if (!any_dependent_template_arguments_p (args))
1129 {
1130 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1131 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1132 {
1133 tree arg = TREE_VEC_ELT (inner, i);
1134 if (TREE_CODE (arg) == TEMPLATE_DECL)
1135 /* OK */;
1136 else if (TYPE_P (arg))
1137 gcc_assert (strip_typedefs (arg, NULL) == arg);
1138 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1139 /* Allow typedefs on the type of a non-type argument, since a
1140 parameter can have them. */;
1141 else
1142 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1143 }
1144 }
1145 --processing_template_decl;
1146 }
1147
1148 /* Retrieve the specialization (in the sense of [temp.spec] - a
1149 specialization is either an instantiation or an explicit
1150 specialization) of TMPL for the given template ARGS. If there is
1151 no such specialization, return NULL_TREE. The ARGS are a vector of
1152 arguments, or a vector of vectors of arguments, in the case of
1153 templates with more than one level of parameters.
1154
1155 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1156 then we search for a partial specialization matching ARGS. This
1157 parameter is ignored if TMPL is not a class template.
1158
1159 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1160 result is a NONTYPE_ARGUMENT_PACK. */
1161
1162 static tree
1163 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1164 {
1165 if (tmpl == NULL_TREE)
1166 return NULL_TREE;
1167
1168 if (args == error_mark_node)
1169 return NULL_TREE;
1170
1171 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1172 || TREE_CODE (tmpl) == FIELD_DECL);
1173
1174 /* There should be as many levels of arguments as there are
1175 levels of parameters. */
1176 gcc_assert (TMPL_ARGS_DEPTH (args)
1177 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1178 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1179 : template_class_depth (DECL_CONTEXT (tmpl))));
1180
1181 if (flag_checking)
1182 verify_unstripped_args (args);
1183
1184 if (optimize_specialization_lookup_p (tmpl))
1185 {
1186 tree class_template;
1187 tree class_specialization;
1188 vec<tree, va_gc> *methods;
1189 tree fns;
1190 int idx;
1191
1192 /* The template arguments actually apply to the containing
1193 class. Find the class specialization with those
1194 arguments. */
1195 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1196 class_specialization
1197 = retrieve_specialization (class_template, args, 0);
1198 if (!class_specialization)
1199 return NULL_TREE;
1200 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1201 for the specialization. */
1202 idx = class_method_index_for_fn (class_specialization, tmpl);
1203 if (idx == -1)
1204 return NULL_TREE;
1205 /* Iterate through the methods with the indicated name, looking
1206 for the one that has an instance of TMPL. */
1207 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1208 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1209 {
1210 tree fn = OVL_CURRENT (fns);
1211 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1212 /* using-declarations can add base methods to the method vec,
1213 and we don't want those here. */
1214 && DECL_CONTEXT (fn) == class_specialization)
1215 return fn;
1216 }
1217 return NULL_TREE;
1218 }
1219 else
1220 {
1221 spec_entry *found;
1222 spec_entry elt;
1223 hash_table<spec_hasher> *specializations;
1224
1225 elt.tmpl = tmpl;
1226 elt.args = args;
1227 elt.spec = NULL_TREE;
1228
1229 if (DECL_CLASS_TEMPLATE_P (tmpl))
1230 specializations = type_specializations;
1231 else
1232 specializations = decl_specializations;
1233
1234 if (hash == 0)
1235 hash = spec_hasher::hash (&elt);
1236 found = specializations->find_with_hash (&elt, hash);
1237 if (found)
1238 return found->spec;
1239 }
1240
1241 return NULL_TREE;
1242 }
1243
1244 /* Like retrieve_specialization, but for local declarations. */
1245
1246 tree
1247 retrieve_local_specialization (tree tmpl)
1248 {
1249 if (local_specializations == NULL)
1250 return NULL_TREE;
1251
1252 tree *slot = local_specializations->get (tmpl);
1253 return slot ? *slot : NULL_TREE;
1254 }
1255
1256 /* Returns nonzero iff DECL is a specialization of TMPL. */
1257
1258 int
1259 is_specialization_of (tree decl, tree tmpl)
1260 {
1261 tree t;
1262
1263 if (TREE_CODE (decl) == FUNCTION_DECL)
1264 {
1265 for (t = decl;
1266 t != NULL_TREE;
1267 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1268 if (t == tmpl)
1269 return 1;
1270 }
1271 else
1272 {
1273 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1274
1275 for (t = TREE_TYPE (decl);
1276 t != NULL_TREE;
1277 t = CLASSTYPE_USE_TEMPLATE (t)
1278 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1279 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1280 return 1;
1281 }
1282
1283 return 0;
1284 }
1285
1286 /* Returns nonzero iff DECL is a specialization of friend declaration
1287 FRIEND_DECL according to [temp.friend]. */
1288
1289 bool
1290 is_specialization_of_friend (tree decl, tree friend_decl)
1291 {
1292 bool need_template = true;
1293 int template_depth;
1294
1295 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1296 || TREE_CODE (decl) == TYPE_DECL);
1297
1298 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1299 of a template class, we want to check if DECL is a specialization
1300 if this. */
1301 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1302 && DECL_TEMPLATE_INFO (friend_decl)
1303 && !DECL_USE_TEMPLATE (friend_decl))
1304 {
1305 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1306 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1307 need_template = false;
1308 }
1309 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1310 && !PRIMARY_TEMPLATE_P (friend_decl))
1311 need_template = false;
1312
1313 /* There is nothing to do if this is not a template friend. */
1314 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1315 return false;
1316
1317 if (is_specialization_of (decl, friend_decl))
1318 return true;
1319
1320 /* [temp.friend/6]
1321 A member of a class template may be declared to be a friend of a
1322 non-template class. In this case, the corresponding member of
1323 every specialization of the class template is a friend of the
1324 class granting friendship.
1325
1326 For example, given a template friend declaration
1327
1328 template <class T> friend void A<T>::f();
1329
1330 the member function below is considered a friend
1331
1332 template <> struct A<int> {
1333 void f();
1334 };
1335
1336 For this type of template friend, TEMPLATE_DEPTH below will be
1337 nonzero. To determine if DECL is a friend of FRIEND, we first
1338 check if the enclosing class is a specialization of another. */
1339
1340 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1341 if (template_depth
1342 && DECL_CLASS_SCOPE_P (decl)
1343 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1344 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1345 {
1346 /* Next, we check the members themselves. In order to handle
1347 a few tricky cases, such as when FRIEND_DECL's are
1348
1349 template <class T> friend void A<T>::g(T t);
1350 template <class T> template <T t> friend void A<T>::h();
1351
1352 and DECL's are
1353
1354 void A<int>::g(int);
1355 template <int> void A<int>::h();
1356
1357 we need to figure out ARGS, the template arguments from
1358 the context of DECL. This is required for template substitution
1359 of `T' in the function parameter of `g' and template parameter
1360 of `h' in the above examples. Here ARGS corresponds to `int'. */
1361
1362 tree context = DECL_CONTEXT (decl);
1363 tree args = NULL_TREE;
1364 int current_depth = 0;
1365
1366 while (current_depth < template_depth)
1367 {
1368 if (CLASSTYPE_TEMPLATE_INFO (context))
1369 {
1370 if (current_depth == 0)
1371 args = TYPE_TI_ARGS (context);
1372 else
1373 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1374 current_depth++;
1375 }
1376 context = TYPE_CONTEXT (context);
1377 }
1378
1379 if (TREE_CODE (decl) == FUNCTION_DECL)
1380 {
1381 bool is_template;
1382 tree friend_type;
1383 tree decl_type;
1384 tree friend_args_type;
1385 tree decl_args_type;
1386
1387 /* Make sure that both DECL and FRIEND_DECL are templates or
1388 non-templates. */
1389 is_template = DECL_TEMPLATE_INFO (decl)
1390 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1391 if (need_template ^ is_template)
1392 return false;
1393 else if (is_template)
1394 {
1395 /* If both are templates, check template parameter list. */
1396 tree friend_parms
1397 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1398 args, tf_none);
1399 if (!comp_template_parms
1400 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1401 friend_parms))
1402 return false;
1403
1404 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1405 }
1406 else
1407 decl_type = TREE_TYPE (decl);
1408
1409 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1410 tf_none, NULL_TREE);
1411 if (friend_type == error_mark_node)
1412 return false;
1413
1414 /* Check if return types match. */
1415 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1416 return false;
1417
1418 /* Check if function parameter types match, ignoring the
1419 `this' parameter. */
1420 friend_args_type = TYPE_ARG_TYPES (friend_type);
1421 decl_args_type = TYPE_ARG_TYPES (decl_type);
1422 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1423 friend_args_type = TREE_CHAIN (friend_args_type);
1424 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1425 decl_args_type = TREE_CHAIN (decl_args_type);
1426
1427 return compparms (decl_args_type, friend_args_type);
1428 }
1429 else
1430 {
1431 /* DECL is a TYPE_DECL */
1432 bool is_template;
1433 tree decl_type = TREE_TYPE (decl);
1434
1435 /* Make sure that both DECL and FRIEND_DECL are templates or
1436 non-templates. */
1437 is_template
1438 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1439 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1440
1441 if (need_template ^ is_template)
1442 return false;
1443 else if (is_template)
1444 {
1445 tree friend_parms;
1446 /* If both are templates, check the name of the two
1447 TEMPLATE_DECL's first because is_friend didn't. */
1448 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1449 != DECL_NAME (friend_decl))
1450 return false;
1451
1452 /* Now check template parameter list. */
1453 friend_parms
1454 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1455 args, tf_none);
1456 return comp_template_parms
1457 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1458 friend_parms);
1459 }
1460 else
1461 return (DECL_NAME (decl)
1462 == DECL_NAME (friend_decl));
1463 }
1464 }
1465 return false;
1466 }
1467
1468 /* Register the specialization SPEC as a specialization of TMPL with
1469 the indicated ARGS. IS_FRIEND indicates whether the specialization
1470 is actually just a friend declaration. Returns SPEC, or an
1471 equivalent prior declaration, if available.
1472
1473 We also store instantiations of field packs in the hash table, even
1474 though they are not themselves templates, to make lookup easier. */
1475
1476 static tree
1477 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1478 hashval_t hash)
1479 {
1480 tree fn;
1481 spec_entry **slot = NULL;
1482 spec_entry elt;
1483
1484 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1485 || (TREE_CODE (tmpl) == FIELD_DECL
1486 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1487
1488 if (TREE_CODE (spec) == FUNCTION_DECL
1489 && uses_template_parms (DECL_TI_ARGS (spec)))
1490 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1491 register it; we want the corresponding TEMPLATE_DECL instead.
1492 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1493 the more obvious `uses_template_parms (spec)' to avoid problems
1494 with default function arguments. In particular, given
1495 something like this:
1496
1497 template <class T> void f(T t1, T t = T())
1498
1499 the default argument expression is not substituted for in an
1500 instantiation unless and until it is actually needed. */
1501 return spec;
1502
1503 if (optimize_specialization_lookup_p (tmpl))
1504 /* We don't put these specializations in the hash table, but we might
1505 want to give an error about a mismatch. */
1506 fn = retrieve_specialization (tmpl, args, 0);
1507 else
1508 {
1509 elt.tmpl = tmpl;
1510 elt.args = args;
1511 elt.spec = spec;
1512
1513 if (hash == 0)
1514 hash = spec_hasher::hash (&elt);
1515
1516 slot =
1517 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1518 if (*slot)
1519 fn = ((spec_entry *) *slot)->spec;
1520 else
1521 fn = NULL_TREE;
1522 }
1523
1524 /* We can sometimes try to re-register a specialization that we've
1525 already got. In particular, regenerate_decl_from_template calls
1526 duplicate_decls which will update the specialization list. But,
1527 we'll still get called again here anyhow. It's more convenient
1528 to simply allow this than to try to prevent it. */
1529 if (fn == spec)
1530 return spec;
1531 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1532 {
1533 if (DECL_TEMPLATE_INSTANTIATION (fn))
1534 {
1535 if (DECL_ODR_USED (fn)
1536 || DECL_EXPLICIT_INSTANTIATION (fn))
1537 {
1538 error ("specialization of %qD after instantiation",
1539 fn);
1540 return error_mark_node;
1541 }
1542 else
1543 {
1544 tree clone;
1545 /* This situation should occur only if the first
1546 specialization is an implicit instantiation, the
1547 second is an explicit specialization, and the
1548 implicit instantiation has not yet been used. That
1549 situation can occur if we have implicitly
1550 instantiated a member function and then specialized
1551 it later.
1552
1553 We can also wind up here if a friend declaration that
1554 looked like an instantiation turns out to be a
1555 specialization:
1556
1557 template <class T> void foo(T);
1558 class S { friend void foo<>(int) };
1559 template <> void foo(int);
1560
1561 We transform the existing DECL in place so that any
1562 pointers to it become pointers to the updated
1563 declaration.
1564
1565 If there was a definition for the template, but not
1566 for the specialization, we want this to look as if
1567 there were no definition, and vice versa. */
1568 DECL_INITIAL (fn) = NULL_TREE;
1569 duplicate_decls (spec, fn, is_friend);
1570 /* The call to duplicate_decls will have applied
1571 [temp.expl.spec]:
1572
1573 An explicit specialization of a function template
1574 is inline only if it is explicitly declared to be,
1575 and independently of whether its function template
1576 is.
1577
1578 to the primary function; now copy the inline bits to
1579 the various clones. */
1580 FOR_EACH_CLONE (clone, fn)
1581 {
1582 DECL_DECLARED_INLINE_P (clone)
1583 = DECL_DECLARED_INLINE_P (fn);
1584 DECL_SOURCE_LOCATION (clone)
1585 = DECL_SOURCE_LOCATION (fn);
1586 DECL_DELETED_FN (clone)
1587 = DECL_DELETED_FN (fn);
1588 }
1589 check_specialization_namespace (tmpl);
1590
1591 return fn;
1592 }
1593 }
1594 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1595 {
1596 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1597 /* Dup decl failed, but this is a new definition. Set the
1598 line number so any errors match this new
1599 definition. */
1600 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1601
1602 return fn;
1603 }
1604 }
1605 else if (fn)
1606 return duplicate_decls (spec, fn, is_friend);
1607
1608 /* A specialization must be declared in the same namespace as the
1609 template it is specializing. */
1610 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1611 && !check_specialization_namespace (tmpl))
1612 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1613
1614 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1615 {
1616 spec_entry *entry = ggc_alloc<spec_entry> ();
1617 gcc_assert (tmpl && args && spec);
1618 *entry = elt;
1619 *slot = entry;
1620 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1621 && PRIMARY_TEMPLATE_P (tmpl)
1622 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1623 || variable_template_p (tmpl))
1624 /* If TMPL is a forward declaration of a template function, keep a list
1625 of all specializations in case we need to reassign them to a friend
1626 template later in tsubst_friend_function.
1627
1628 Also keep a list of all variable template instantiations so that
1629 process_partial_specialization can check whether a later partial
1630 specialization would have used it. */
1631 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1632 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1633 }
1634
1635 return spec;
1636 }
1637
1638 /* Returns true iff two spec_entry nodes are equivalent. */
1639
1640 int comparing_specializations;
1641
1642 bool
1643 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1644 {
1645 int equal;
1646
1647 ++comparing_specializations;
1648 equal = (e1->tmpl == e2->tmpl
1649 && comp_template_args (e1->args, e2->args));
1650 if (equal && flag_concepts
1651 /* tmpl could be a FIELD_DECL for a capture pack. */
1652 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1653 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1654 && uses_template_parms (e1->args))
1655 {
1656 /* Partial specializations of a variable template can be distinguished by
1657 constraints. */
1658 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1659 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1660 equal = equivalent_constraints (c1, c2);
1661 }
1662 --comparing_specializations;
1663
1664 return equal;
1665 }
1666
1667 /* Returns a hash for a template TMPL and template arguments ARGS. */
1668
1669 static hashval_t
1670 hash_tmpl_and_args (tree tmpl, tree args)
1671 {
1672 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1673 return iterative_hash_template_arg (args, val);
1674 }
1675
1676 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1677 ignoring SPEC. */
1678
1679 hashval_t
1680 spec_hasher::hash (spec_entry *e)
1681 {
1682 return hash_tmpl_and_args (e->tmpl, e->args);
1683 }
1684
1685 /* Recursively calculate a hash value for a template argument ARG, for use
1686 in the hash tables of template specializations. */
1687
1688 hashval_t
1689 iterative_hash_template_arg (tree arg, hashval_t val)
1690 {
1691 unsigned HOST_WIDE_INT i;
1692 enum tree_code code;
1693 char tclass;
1694
1695 if (arg == NULL_TREE)
1696 return iterative_hash_object (arg, val);
1697
1698 if (!TYPE_P (arg))
1699 STRIP_NOPS (arg);
1700
1701 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1702 /* We can get one of these when re-hashing a previous entry in the middle
1703 of substituting into a pack expansion. Just look through it. */
1704 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1705
1706 code = TREE_CODE (arg);
1707 tclass = TREE_CODE_CLASS (code);
1708
1709 val = iterative_hash_object (code, val);
1710
1711 switch (code)
1712 {
1713 case ERROR_MARK:
1714 return val;
1715
1716 case IDENTIFIER_NODE:
1717 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1718
1719 case TREE_VEC:
1720 {
1721 int i, len = TREE_VEC_LENGTH (arg);
1722 for (i = 0; i < len; ++i)
1723 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1724 return val;
1725 }
1726
1727 case TYPE_PACK_EXPANSION:
1728 case EXPR_PACK_EXPANSION:
1729 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1730 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1731
1732 case TYPE_ARGUMENT_PACK:
1733 case NONTYPE_ARGUMENT_PACK:
1734 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1735
1736 case TREE_LIST:
1737 for (; arg; arg = TREE_CHAIN (arg))
1738 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1739 return val;
1740
1741 case OVERLOAD:
1742 for (; arg; arg = OVL_NEXT (arg))
1743 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1744 return val;
1745
1746 case CONSTRUCTOR:
1747 {
1748 tree field, value;
1749 iterative_hash_template_arg (TREE_TYPE (arg), val);
1750 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1751 {
1752 val = iterative_hash_template_arg (field, val);
1753 val = iterative_hash_template_arg (value, val);
1754 }
1755 return val;
1756 }
1757
1758 case PARM_DECL:
1759 if (!DECL_ARTIFICIAL (arg))
1760 {
1761 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1762 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1763 }
1764 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1765
1766 case TARGET_EXPR:
1767 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1768
1769 case PTRMEM_CST:
1770 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1771 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1772
1773 case TEMPLATE_PARM_INDEX:
1774 val = iterative_hash_template_arg
1775 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1776 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1777 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1778
1779 case TRAIT_EXPR:
1780 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1781 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1782 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1783
1784 case BASELINK:
1785 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1786 val);
1787 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1788 val);
1789
1790 case MODOP_EXPR:
1791 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1792 code = TREE_CODE (TREE_OPERAND (arg, 1));
1793 val = iterative_hash_object (code, val);
1794 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1795
1796 case LAMBDA_EXPR:
1797 /* A lambda can't appear in a template arg, but don't crash on
1798 erroneous input. */
1799 gcc_assert (seen_error ());
1800 return val;
1801
1802 case CAST_EXPR:
1803 case IMPLICIT_CONV_EXPR:
1804 case STATIC_CAST_EXPR:
1805 case REINTERPRET_CAST_EXPR:
1806 case CONST_CAST_EXPR:
1807 case DYNAMIC_CAST_EXPR:
1808 case NEW_EXPR:
1809 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1810 /* Now hash operands as usual. */
1811 break;
1812
1813 default:
1814 break;
1815 }
1816
1817 switch (tclass)
1818 {
1819 case tcc_type:
1820 if (alias_template_specialization_p (arg))
1821 {
1822 // We want an alias specialization that survived strip_typedefs
1823 // to hash differently from its TYPE_CANONICAL, to avoid hash
1824 // collisions that compare as different in template_args_equal.
1825 // These could be dependent specializations that strip_typedefs
1826 // left alone, or untouched specializations because
1827 // coerce_template_parms returns the unconverted template
1828 // arguments if it sees incomplete argument packs.
1829 tree ti = TYPE_TEMPLATE_INFO (arg);
1830 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1831 }
1832 if (TYPE_CANONICAL (arg))
1833 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1834 val);
1835 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1836 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1837 /* Otherwise just compare the types during lookup. */
1838 return val;
1839
1840 case tcc_declaration:
1841 case tcc_constant:
1842 return iterative_hash_expr (arg, val);
1843
1844 default:
1845 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1846 {
1847 unsigned n = cp_tree_operand_length (arg);
1848 for (i = 0; i < n; ++i)
1849 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1850 return val;
1851 }
1852 }
1853 gcc_unreachable ();
1854 return 0;
1855 }
1856
1857 /* Unregister the specialization SPEC as a specialization of TMPL.
1858 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1859 if the SPEC was listed as a specialization of TMPL.
1860
1861 Note that SPEC has been ggc_freed, so we can't look inside it. */
1862
1863 bool
1864 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1865 {
1866 spec_entry *entry;
1867 spec_entry elt;
1868
1869 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1870 elt.args = TI_ARGS (tinfo);
1871 elt.spec = NULL_TREE;
1872
1873 entry = decl_specializations->find (&elt);
1874 if (entry != NULL)
1875 {
1876 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1877 gcc_assert (new_spec != NULL_TREE);
1878 entry->spec = new_spec;
1879 return 1;
1880 }
1881
1882 return 0;
1883 }
1884
1885 /* Like register_specialization, but for local declarations. We are
1886 registering SPEC, an instantiation of TMPL. */
1887
1888 void
1889 register_local_specialization (tree spec, tree tmpl)
1890 {
1891 local_specializations->put (tmpl, spec);
1892 }
1893
1894 /* TYPE is a class type. Returns true if TYPE is an explicitly
1895 specialized class. */
1896
1897 bool
1898 explicit_class_specialization_p (tree type)
1899 {
1900 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1901 return false;
1902 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1903 }
1904
1905 /* Print the list of functions at FNS, going through all the overloads
1906 for each element of the list. Alternatively, FNS can not be a
1907 TREE_LIST, in which case it will be printed together with all the
1908 overloads.
1909
1910 MORE and *STR should respectively be FALSE and NULL when the function
1911 is called from the outside. They are used internally on recursive
1912 calls. print_candidates manages the two parameters and leaves NULL
1913 in *STR when it ends. */
1914
1915 static void
1916 print_candidates_1 (tree fns, bool more, const char **str)
1917 {
1918 tree fn, fn2;
1919 char *spaces = NULL;
1920
1921 for (fn = fns; fn; fn = OVL_NEXT (fn))
1922 if (TREE_CODE (fn) == TREE_LIST)
1923 {
1924 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1925 print_candidates_1 (TREE_VALUE (fn2),
1926 TREE_CHAIN (fn2) || more, str);
1927 }
1928 else
1929 {
1930 tree cand = OVL_CURRENT (fn);
1931 if (!*str)
1932 {
1933 /* Pick the prefix string. */
1934 if (!more && !OVL_NEXT (fns))
1935 {
1936 inform (DECL_SOURCE_LOCATION (cand),
1937 "candidate is: %#D", cand);
1938 continue;
1939 }
1940
1941 *str = _("candidates are:");
1942 spaces = get_spaces (*str);
1943 }
1944 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1945 *str = spaces ? spaces : *str;
1946 }
1947
1948 if (!more)
1949 {
1950 free (spaces);
1951 *str = NULL;
1952 }
1953 }
1954
1955 /* Print the list of candidate FNS in an error message. FNS can also
1956 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1957
1958 void
1959 print_candidates (tree fns)
1960 {
1961 const char *str = NULL;
1962 print_candidates_1 (fns, false, &str);
1963 gcc_assert (str == NULL);
1964 }
1965
1966 /* Get a (possibly) constrained template declaration for the
1967 purpose of ordering candidates. */
1968 static tree
1969 get_template_for_ordering (tree list)
1970 {
1971 gcc_assert (TREE_CODE (list) == TREE_LIST);
1972 tree f = TREE_VALUE (list);
1973 if (tree ti = DECL_TEMPLATE_INFO (f))
1974 return TI_TEMPLATE (ti);
1975 return f;
1976 }
1977
1978 /* Among candidates having the same signature, return the
1979 most constrained or NULL_TREE if there is no best candidate.
1980 If the signatures of candidates vary (e.g., template
1981 specialization vs. member function), then there can be no
1982 most constrained.
1983
1984 Note that we don't compare constraints on the functions
1985 themselves, but rather those of their templates. */
1986 static tree
1987 most_constrained_function (tree candidates)
1988 {
1989 // Try to find the best candidate in a first pass.
1990 tree champ = candidates;
1991 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1992 {
1993 int winner = more_constrained (get_template_for_ordering (champ),
1994 get_template_for_ordering (c));
1995 if (winner == -1)
1996 champ = c; // The candidate is more constrained
1997 else if (winner == 0)
1998 return NULL_TREE; // Neither is more constrained
1999 }
2000
2001 // Verify that the champ is better than previous candidates.
2002 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2003 if (!more_constrained (get_template_for_ordering (champ),
2004 get_template_for_ordering (c)))
2005 return NULL_TREE;
2006 }
2007
2008 return champ;
2009 }
2010
2011
2012 /* Returns the template (one of the functions given by TEMPLATE_ID)
2013 which can be specialized to match the indicated DECL with the
2014 explicit template args given in TEMPLATE_ID. The DECL may be
2015 NULL_TREE if none is available. In that case, the functions in
2016 TEMPLATE_ID are non-members.
2017
2018 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2019 specialization of a member template.
2020
2021 The TEMPLATE_COUNT is the number of references to qualifying
2022 template classes that appeared in the name of the function. See
2023 check_explicit_specialization for a more accurate description.
2024
2025 TSK indicates what kind of template declaration (if any) is being
2026 declared. TSK_TEMPLATE indicates that the declaration given by
2027 DECL, though a FUNCTION_DECL, has template parameters, and is
2028 therefore a template function.
2029
2030 The template args (those explicitly specified and those deduced)
2031 are output in a newly created vector *TARGS_OUT.
2032
2033 If it is impossible to determine the result, an error message is
2034 issued. The error_mark_node is returned to indicate failure. */
2035
2036 static tree
2037 determine_specialization (tree template_id,
2038 tree decl,
2039 tree* targs_out,
2040 int need_member_template,
2041 int template_count,
2042 tmpl_spec_kind tsk)
2043 {
2044 tree fns;
2045 tree targs;
2046 tree explicit_targs;
2047 tree candidates = NULL_TREE;
2048
2049 /* A TREE_LIST of templates of which DECL may be a specialization.
2050 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2051 corresponding TREE_PURPOSE is the set of template arguments that,
2052 when used to instantiate the template, would produce a function
2053 with the signature of DECL. */
2054 tree templates = NULL_TREE;
2055 int header_count;
2056 cp_binding_level *b;
2057
2058 *targs_out = NULL_TREE;
2059
2060 if (template_id == error_mark_node || decl == error_mark_node)
2061 return error_mark_node;
2062
2063 /* We shouldn't be specializing a member template of an
2064 unspecialized class template; we already gave an error in
2065 check_specialization_scope, now avoid crashing. */
2066 if (template_count && DECL_CLASS_SCOPE_P (decl)
2067 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2068 {
2069 gcc_assert (errorcount);
2070 return error_mark_node;
2071 }
2072
2073 fns = TREE_OPERAND (template_id, 0);
2074 explicit_targs = TREE_OPERAND (template_id, 1);
2075
2076 if (fns == error_mark_node)
2077 return error_mark_node;
2078
2079 /* Check for baselinks. */
2080 if (BASELINK_P (fns))
2081 fns = BASELINK_FUNCTIONS (fns);
2082
2083 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2084 {
2085 error ("%qD is not a function template", fns);
2086 return error_mark_node;
2087 }
2088 else if (VAR_P (decl) && !variable_template_p (fns))
2089 {
2090 error ("%qD is not a variable template", fns);
2091 return error_mark_node;
2092 }
2093
2094 /* Count the number of template headers specified for this
2095 specialization. */
2096 header_count = 0;
2097 for (b = current_binding_level;
2098 b->kind == sk_template_parms;
2099 b = b->level_chain)
2100 ++header_count;
2101
2102 tree orig_fns = fns;
2103
2104 if (variable_template_p (fns))
2105 {
2106 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2107 targs = coerce_template_parms (parms, explicit_targs, fns,
2108 tf_warning_or_error,
2109 /*req_all*/true, /*use_defarg*/true);
2110 if (targs != error_mark_node)
2111 templates = tree_cons (targs, fns, templates);
2112 }
2113 else for (; fns; fns = OVL_NEXT (fns))
2114 {
2115 tree fn = OVL_CURRENT (fns);
2116
2117 if (TREE_CODE (fn) == TEMPLATE_DECL)
2118 {
2119 tree decl_arg_types;
2120 tree fn_arg_types;
2121 tree insttype;
2122
2123 /* In case of explicit specialization, we need to check if
2124 the number of template headers appearing in the specialization
2125 is correct. This is usually done in check_explicit_specialization,
2126 but the check done there cannot be exhaustive when specializing
2127 member functions. Consider the following code:
2128
2129 template <> void A<int>::f(int);
2130 template <> template <> void A<int>::f(int);
2131
2132 Assuming that A<int> is not itself an explicit specialization
2133 already, the first line specializes "f" which is a non-template
2134 member function, whilst the second line specializes "f" which
2135 is a template member function. So both lines are syntactically
2136 correct, and check_explicit_specialization does not reject
2137 them.
2138
2139 Here, we can do better, as we are matching the specialization
2140 against the declarations. We count the number of template
2141 headers, and we check if they match TEMPLATE_COUNT + 1
2142 (TEMPLATE_COUNT is the number of qualifying template classes,
2143 plus there must be another header for the member template
2144 itself).
2145
2146 Notice that if header_count is zero, this is not a
2147 specialization but rather a template instantiation, so there
2148 is no check we can perform here. */
2149 if (header_count && header_count != template_count + 1)
2150 continue;
2151
2152 /* Check that the number of template arguments at the
2153 innermost level for DECL is the same as for FN. */
2154 if (current_binding_level->kind == sk_template_parms
2155 && !current_binding_level->explicit_spec_p
2156 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2157 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2158 (current_template_parms))))
2159 continue;
2160
2161 /* DECL might be a specialization of FN. */
2162 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2163 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2164
2165 /* For a non-static member function, we need to make sure
2166 that the const qualification is the same. Since
2167 get_bindings does not try to merge the "this" parameter,
2168 we must do the comparison explicitly. */
2169 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2170 && !same_type_p (TREE_VALUE (fn_arg_types),
2171 TREE_VALUE (decl_arg_types)))
2172 continue;
2173
2174 /* Skip the "this" parameter and, for constructors of
2175 classes with virtual bases, the VTT parameter. A
2176 full specialization of a constructor will have a VTT
2177 parameter, but a template never will. */
2178 decl_arg_types
2179 = skip_artificial_parms_for (decl, decl_arg_types);
2180 fn_arg_types
2181 = skip_artificial_parms_for (fn, fn_arg_types);
2182
2183 /* Function templates cannot be specializations; there are
2184 no partial specializations of functions. Therefore, if
2185 the type of DECL does not match FN, there is no
2186 match.
2187
2188 Note that it should never be the case that we have both
2189 candidates added here, and for regular member functions
2190 below. */
2191 if (tsk == tsk_template)
2192 {
2193 if (compparms (fn_arg_types, decl_arg_types))
2194 candidates = tree_cons (NULL_TREE, fn, candidates);
2195 continue;
2196 }
2197
2198 /* See whether this function might be a specialization of this
2199 template. Suppress access control because we might be trying
2200 to make this specialization a friend, and we have already done
2201 access control for the declaration of the specialization. */
2202 push_deferring_access_checks (dk_no_check);
2203 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2204 pop_deferring_access_checks ();
2205
2206 if (!targs)
2207 /* We cannot deduce template arguments that when used to
2208 specialize TMPL will produce DECL. */
2209 continue;
2210
2211 /* Remove, from the set of candidates, all those functions
2212 whose constraints are not satisfied. */
2213 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2214 continue;
2215
2216 // Then, try to form the new function type.
2217 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2218 if (insttype == error_mark_node)
2219 continue;
2220 fn_arg_types
2221 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2222 if (!compparms (fn_arg_types, decl_arg_types))
2223 continue;
2224
2225 /* Save this template, and the arguments deduced. */
2226 templates = tree_cons (targs, fn, templates);
2227 }
2228 else if (need_member_template)
2229 /* FN is an ordinary member function, and we need a
2230 specialization of a member template. */
2231 ;
2232 else if (TREE_CODE (fn) != FUNCTION_DECL)
2233 /* We can get IDENTIFIER_NODEs here in certain erroneous
2234 cases. */
2235 ;
2236 else if (!DECL_FUNCTION_MEMBER_P (fn))
2237 /* This is just an ordinary non-member function. Nothing can
2238 be a specialization of that. */
2239 ;
2240 else if (DECL_ARTIFICIAL (fn))
2241 /* Cannot specialize functions that are created implicitly. */
2242 ;
2243 else
2244 {
2245 tree decl_arg_types;
2246
2247 /* This is an ordinary member function. However, since
2248 we're here, we can assume its enclosing class is a
2249 template class. For example,
2250
2251 template <typename T> struct S { void f(); };
2252 template <> void S<int>::f() {}
2253
2254 Here, S<int>::f is a non-template, but S<int> is a
2255 template class. If FN has the same type as DECL, we
2256 might be in business. */
2257
2258 if (!DECL_TEMPLATE_INFO (fn))
2259 /* Its enclosing class is an explicit specialization
2260 of a template class. This is not a candidate. */
2261 continue;
2262
2263 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2264 TREE_TYPE (TREE_TYPE (fn))))
2265 /* The return types differ. */
2266 continue;
2267
2268 /* Adjust the type of DECL in case FN is a static member. */
2269 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2270 if (DECL_STATIC_FUNCTION_P (fn)
2271 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2272 decl_arg_types = TREE_CHAIN (decl_arg_types);
2273
2274 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2275 decl_arg_types))
2276 continue;
2277
2278 // If the deduced arguments do not satisfy the constraints,
2279 // this is not a candidate.
2280 if (flag_concepts && !constraints_satisfied_p (fn))
2281 continue;
2282
2283 // Add the candidate.
2284 candidates = tree_cons (NULL_TREE, fn, candidates);
2285 }
2286 }
2287
2288 if (templates && TREE_CHAIN (templates))
2289 {
2290 /* We have:
2291
2292 [temp.expl.spec]
2293
2294 It is possible for a specialization with a given function
2295 signature to be instantiated from more than one function
2296 template. In such cases, explicit specification of the
2297 template arguments must be used to uniquely identify the
2298 function template specialization being specialized.
2299
2300 Note that here, there's no suggestion that we're supposed to
2301 determine which of the candidate templates is most
2302 specialized. However, we, also have:
2303
2304 [temp.func.order]
2305
2306 Partial ordering of overloaded function template
2307 declarations is used in the following contexts to select
2308 the function template to which a function template
2309 specialization refers:
2310
2311 -- when an explicit specialization refers to a function
2312 template.
2313
2314 So, we do use the partial ordering rules, at least for now.
2315 This extension can only serve to make invalid programs valid,
2316 so it's safe. And, there is strong anecdotal evidence that
2317 the committee intended the partial ordering rules to apply;
2318 the EDG front end has that behavior, and John Spicer claims
2319 that the committee simply forgot to delete the wording in
2320 [temp.expl.spec]. */
2321 tree tmpl = most_specialized_instantiation (templates);
2322 if (tmpl != error_mark_node)
2323 {
2324 templates = tmpl;
2325 TREE_CHAIN (templates) = NULL_TREE;
2326 }
2327 }
2328
2329 // Concepts allows multiple declarations of member functions
2330 // with the same signature. Like above, we need to rely on
2331 // on the partial ordering of those candidates to determine which
2332 // is the best.
2333 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2334 {
2335 if (tree cand = most_constrained_function (candidates))
2336 {
2337 candidates = cand;
2338 TREE_CHAIN (cand) = NULL_TREE;
2339 }
2340 }
2341
2342 if (templates == NULL_TREE && candidates == NULL_TREE)
2343 {
2344 error ("template-id %qD for %q+D does not match any template "
2345 "declaration", template_id, decl);
2346 if (header_count && header_count != template_count + 1)
2347 inform (input_location, "saw %d %<template<>%>, need %d for "
2348 "specializing a member function template",
2349 header_count, template_count + 1);
2350 else
2351 print_candidates (orig_fns);
2352 return error_mark_node;
2353 }
2354 else if ((templates && TREE_CHAIN (templates))
2355 || (candidates && TREE_CHAIN (candidates))
2356 || (templates && candidates))
2357 {
2358 error ("ambiguous template specialization %qD for %q+D",
2359 template_id, decl);
2360 candidates = chainon (candidates, templates);
2361 print_candidates (candidates);
2362 return error_mark_node;
2363 }
2364
2365 /* We have one, and exactly one, match. */
2366 if (candidates)
2367 {
2368 tree fn = TREE_VALUE (candidates);
2369 *targs_out = copy_node (DECL_TI_ARGS (fn));
2370
2371 // Propagate the candidate's constraints to the declaration.
2372 set_constraints (decl, get_constraints (fn));
2373
2374 /* DECL is a re-declaration or partial instantiation of a template
2375 function. */
2376 if (TREE_CODE (fn) == TEMPLATE_DECL)
2377 return fn;
2378 /* It was a specialization of an ordinary member function in a
2379 template class. */
2380 return DECL_TI_TEMPLATE (fn);
2381 }
2382
2383 /* It was a specialization of a template. */
2384 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2385 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2386 {
2387 *targs_out = copy_node (targs);
2388 SET_TMPL_ARGS_LEVEL (*targs_out,
2389 TMPL_ARGS_DEPTH (*targs_out),
2390 TREE_PURPOSE (templates));
2391 }
2392 else
2393 *targs_out = TREE_PURPOSE (templates);
2394 return TREE_VALUE (templates);
2395 }
2396
2397 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2398 but with the default argument values filled in from those in the
2399 TMPL_TYPES. */
2400
2401 static tree
2402 copy_default_args_to_explicit_spec_1 (tree spec_types,
2403 tree tmpl_types)
2404 {
2405 tree new_spec_types;
2406
2407 if (!spec_types)
2408 return NULL_TREE;
2409
2410 if (spec_types == void_list_node)
2411 return void_list_node;
2412
2413 /* Substitute into the rest of the list. */
2414 new_spec_types =
2415 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2416 TREE_CHAIN (tmpl_types));
2417
2418 /* Add the default argument for this parameter. */
2419 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2420 TREE_VALUE (spec_types),
2421 new_spec_types);
2422 }
2423
2424 /* DECL is an explicit specialization. Replicate default arguments
2425 from the template it specializes. (That way, code like:
2426
2427 template <class T> void f(T = 3);
2428 template <> void f(double);
2429 void g () { f (); }
2430
2431 works, as required.) An alternative approach would be to look up
2432 the correct default arguments at the call-site, but this approach
2433 is consistent with how implicit instantiations are handled. */
2434
2435 static void
2436 copy_default_args_to_explicit_spec (tree decl)
2437 {
2438 tree tmpl;
2439 tree spec_types;
2440 tree tmpl_types;
2441 tree new_spec_types;
2442 tree old_type;
2443 tree new_type;
2444 tree t;
2445 tree object_type = NULL_TREE;
2446 tree in_charge = NULL_TREE;
2447 tree vtt = NULL_TREE;
2448
2449 /* See if there's anything we need to do. */
2450 tmpl = DECL_TI_TEMPLATE (decl);
2451 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2452 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2453 if (TREE_PURPOSE (t))
2454 break;
2455 if (!t)
2456 return;
2457
2458 old_type = TREE_TYPE (decl);
2459 spec_types = TYPE_ARG_TYPES (old_type);
2460
2461 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2462 {
2463 /* Remove the this pointer, but remember the object's type for
2464 CV quals. */
2465 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2466 spec_types = TREE_CHAIN (spec_types);
2467 tmpl_types = TREE_CHAIN (tmpl_types);
2468
2469 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2470 {
2471 /* DECL may contain more parameters than TMPL due to the extra
2472 in-charge parameter in constructors and destructors. */
2473 in_charge = spec_types;
2474 spec_types = TREE_CHAIN (spec_types);
2475 }
2476 if (DECL_HAS_VTT_PARM_P (decl))
2477 {
2478 vtt = spec_types;
2479 spec_types = TREE_CHAIN (spec_types);
2480 }
2481 }
2482
2483 /* Compute the merged default arguments. */
2484 new_spec_types =
2485 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2486
2487 /* Compute the new FUNCTION_TYPE. */
2488 if (object_type)
2489 {
2490 if (vtt)
2491 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2492 TREE_VALUE (vtt),
2493 new_spec_types);
2494
2495 if (in_charge)
2496 /* Put the in-charge parameter back. */
2497 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2498 TREE_VALUE (in_charge),
2499 new_spec_types);
2500
2501 new_type = build_method_type_directly (object_type,
2502 TREE_TYPE (old_type),
2503 new_spec_types);
2504 }
2505 else
2506 new_type = build_function_type (TREE_TYPE (old_type),
2507 new_spec_types);
2508 new_type = cp_build_type_attribute_variant (new_type,
2509 TYPE_ATTRIBUTES (old_type));
2510 new_type = build_exception_variant (new_type,
2511 TYPE_RAISES_EXCEPTIONS (old_type));
2512
2513 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2514 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2515
2516 TREE_TYPE (decl) = new_type;
2517 }
2518
2519 /* Return the number of template headers we expect to see for a definition
2520 or specialization of CTYPE or one of its non-template members. */
2521
2522 int
2523 num_template_headers_for_class (tree ctype)
2524 {
2525 int num_templates = 0;
2526
2527 while (ctype && CLASS_TYPE_P (ctype))
2528 {
2529 /* You're supposed to have one `template <...>' for every
2530 template class, but you don't need one for a full
2531 specialization. For example:
2532
2533 template <class T> struct S{};
2534 template <> struct S<int> { void f(); };
2535 void S<int>::f () {}
2536
2537 is correct; there shouldn't be a `template <>' for the
2538 definition of `S<int>::f'. */
2539 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2540 /* If CTYPE does not have template information of any
2541 kind, then it is not a template, nor is it nested
2542 within a template. */
2543 break;
2544 if (explicit_class_specialization_p (ctype))
2545 break;
2546 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2547 ++num_templates;
2548
2549 ctype = TYPE_CONTEXT (ctype);
2550 }
2551
2552 return num_templates;
2553 }
2554
2555 /* Do a simple sanity check on the template headers that precede the
2556 variable declaration DECL. */
2557
2558 void
2559 check_template_variable (tree decl)
2560 {
2561 tree ctx = CP_DECL_CONTEXT (decl);
2562 int wanted = num_template_headers_for_class (ctx);
2563 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2564 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2565 {
2566 if (cxx_dialect < cxx14)
2567 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2568 "variable templates only available with "
2569 "-std=c++14 or -std=gnu++14");
2570
2571 // Namespace-scope variable templates should have a template header.
2572 ++wanted;
2573 }
2574 if (template_header_count > wanted)
2575 {
2576 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2577 "too many template headers for %D (should be %d)",
2578 decl, wanted);
2579 if (warned && CLASS_TYPE_P (ctx)
2580 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2581 inform (DECL_SOURCE_LOCATION (decl),
2582 "members of an explicitly specialized class are defined "
2583 "without a template header");
2584 }
2585 }
2586
2587 /* Check to see if the function just declared, as indicated in
2588 DECLARATOR, and in DECL, is a specialization of a function
2589 template. We may also discover that the declaration is an explicit
2590 instantiation at this point.
2591
2592 Returns DECL, or an equivalent declaration that should be used
2593 instead if all goes well. Issues an error message if something is
2594 amiss. Returns error_mark_node if the error is not easily
2595 recoverable.
2596
2597 FLAGS is a bitmask consisting of the following flags:
2598
2599 2: The function has a definition.
2600 4: The function is a friend.
2601
2602 The TEMPLATE_COUNT is the number of references to qualifying
2603 template classes that appeared in the name of the function. For
2604 example, in
2605
2606 template <class T> struct S { void f(); };
2607 void S<int>::f();
2608
2609 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2610 classes are not counted in the TEMPLATE_COUNT, so that in
2611
2612 template <class T> struct S {};
2613 template <> struct S<int> { void f(); }
2614 template <> void S<int>::f();
2615
2616 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2617 invalid; there should be no template <>.)
2618
2619 If the function is a specialization, it is marked as such via
2620 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2621 is set up correctly, and it is added to the list of specializations
2622 for that template. */
2623
2624 tree
2625 check_explicit_specialization (tree declarator,
2626 tree decl,
2627 int template_count,
2628 int flags)
2629 {
2630 int have_def = flags & 2;
2631 int is_friend = flags & 4;
2632 bool is_concept = flags & 8;
2633 int specialization = 0;
2634 int explicit_instantiation = 0;
2635 int member_specialization = 0;
2636 tree ctype = DECL_CLASS_CONTEXT (decl);
2637 tree dname = DECL_NAME (decl);
2638 tmpl_spec_kind tsk;
2639
2640 if (is_friend)
2641 {
2642 if (!processing_specialization)
2643 tsk = tsk_none;
2644 else
2645 tsk = tsk_excessive_parms;
2646 }
2647 else
2648 tsk = current_tmpl_spec_kind (template_count);
2649
2650 switch (tsk)
2651 {
2652 case tsk_none:
2653 if (processing_specialization && !VAR_P (decl))
2654 {
2655 specialization = 1;
2656 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2657 }
2658 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2659 {
2660 if (is_friend)
2661 /* This could be something like:
2662
2663 template <class T> void f(T);
2664 class S { friend void f<>(int); } */
2665 specialization = 1;
2666 else
2667 {
2668 /* This case handles bogus declarations like template <>
2669 template <class T> void f<int>(); */
2670
2671 error ("template-id %qD in declaration of primary template",
2672 declarator);
2673 return decl;
2674 }
2675 }
2676 break;
2677
2678 case tsk_invalid_member_spec:
2679 /* The error has already been reported in
2680 check_specialization_scope. */
2681 return error_mark_node;
2682
2683 case tsk_invalid_expl_inst:
2684 error ("template parameter list used in explicit instantiation");
2685
2686 /* Fall through. */
2687
2688 case tsk_expl_inst:
2689 if (have_def)
2690 error ("definition provided for explicit instantiation");
2691
2692 explicit_instantiation = 1;
2693 break;
2694
2695 case tsk_excessive_parms:
2696 case tsk_insufficient_parms:
2697 if (tsk == tsk_excessive_parms)
2698 error ("too many template parameter lists in declaration of %qD",
2699 decl);
2700 else if (template_header_count)
2701 error("too few template parameter lists in declaration of %qD", decl);
2702 else
2703 error("explicit specialization of %qD must be introduced by "
2704 "%<template <>%>", decl);
2705
2706 /* Fall through. */
2707 case tsk_expl_spec:
2708 if (is_concept)
2709 error ("explicit specialization declared %<concept%>");
2710
2711 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2712 /* In cases like template<> constexpr bool v = true;
2713 We'll give an error in check_template_variable. */
2714 break;
2715
2716 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2717 if (ctype)
2718 member_specialization = 1;
2719 else
2720 specialization = 1;
2721 break;
2722
2723 case tsk_template:
2724 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2725 {
2726 /* This case handles bogus declarations like template <>
2727 template <class T> void f<int>(); */
2728
2729 if (!uses_template_parms (declarator))
2730 error ("template-id %qD in declaration of primary template",
2731 declarator);
2732 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2733 {
2734 /* Partial specialization of variable template. */
2735 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2736 specialization = 1;
2737 goto ok;
2738 }
2739 else if (cxx_dialect < cxx14)
2740 error ("non-type partial specialization %qD "
2741 "is not allowed", declarator);
2742 else
2743 error ("non-class, non-variable partial specialization %qD "
2744 "is not allowed", declarator);
2745 return decl;
2746 ok:;
2747 }
2748
2749 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2750 /* This is a specialization of a member template, without
2751 specialization the containing class. Something like:
2752
2753 template <class T> struct S {
2754 template <class U> void f (U);
2755 };
2756 template <> template <class U> void S<int>::f(U) {}
2757
2758 That's a specialization -- but of the entire template. */
2759 specialization = 1;
2760 break;
2761
2762 default:
2763 gcc_unreachable ();
2764 }
2765
2766 if ((specialization || member_specialization)
2767 /* This doesn't apply to variable templates. */
2768 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2769 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2770 {
2771 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2772 for (; t; t = TREE_CHAIN (t))
2773 if (TREE_PURPOSE (t))
2774 {
2775 permerror (input_location,
2776 "default argument specified in explicit specialization");
2777 break;
2778 }
2779 }
2780
2781 if (specialization || member_specialization || explicit_instantiation)
2782 {
2783 tree tmpl = NULL_TREE;
2784 tree targs = NULL_TREE;
2785 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2786
2787 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2788 if (!was_template_id)
2789 {
2790 tree fns;
2791
2792 gcc_assert (identifier_p (declarator));
2793 if (ctype)
2794 fns = dname;
2795 else
2796 {
2797 /* If there is no class context, the explicit instantiation
2798 must be at namespace scope. */
2799 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2800
2801 /* Find the namespace binding, using the declaration
2802 context. */
2803 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2804 false, true);
2805 if (fns == error_mark_node || !is_overloaded_fn (fns))
2806 {
2807 error ("%qD is not a template function", dname);
2808 fns = error_mark_node;
2809 }
2810 }
2811
2812 declarator = lookup_template_function (fns, NULL_TREE);
2813 }
2814
2815 if (declarator == error_mark_node)
2816 return error_mark_node;
2817
2818 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2819 {
2820 if (!explicit_instantiation)
2821 /* A specialization in class scope. This is invalid,
2822 but the error will already have been flagged by
2823 check_specialization_scope. */
2824 return error_mark_node;
2825 else
2826 {
2827 /* It's not valid to write an explicit instantiation in
2828 class scope, e.g.:
2829
2830 class C { template void f(); }
2831
2832 This case is caught by the parser. However, on
2833 something like:
2834
2835 template class C { void f(); };
2836
2837 (which is invalid) we can get here. The error will be
2838 issued later. */
2839 ;
2840 }
2841
2842 return decl;
2843 }
2844 else if (ctype != NULL_TREE
2845 && (identifier_p (TREE_OPERAND (declarator, 0))))
2846 {
2847 // We'll match variable templates in start_decl.
2848 if (VAR_P (decl))
2849 return decl;
2850
2851 /* Find the list of functions in ctype that have the same
2852 name as the declared function. */
2853 tree name = TREE_OPERAND (declarator, 0);
2854 tree fns = NULL_TREE;
2855 int idx;
2856
2857 if (constructor_name_p (name, ctype))
2858 {
2859 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2860
2861 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2862 : !CLASSTYPE_DESTRUCTORS (ctype))
2863 {
2864 /* From [temp.expl.spec]:
2865
2866 If such an explicit specialization for the member
2867 of a class template names an implicitly-declared
2868 special member function (clause _special_), the
2869 program is ill-formed.
2870
2871 Similar language is found in [temp.explicit]. */
2872 error ("specialization of implicitly-declared special member function");
2873 return error_mark_node;
2874 }
2875
2876 name = is_constructor ? ctor_identifier : dtor_identifier;
2877 }
2878
2879 if (!DECL_CONV_FN_P (decl))
2880 {
2881 idx = lookup_fnfields_1 (ctype, name);
2882 if (idx >= 0)
2883 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2884 }
2885 else
2886 {
2887 vec<tree, va_gc> *methods;
2888 tree ovl;
2889
2890 /* For a type-conversion operator, we cannot do a
2891 name-based lookup. We might be looking for `operator
2892 int' which will be a specialization of `operator T'.
2893 So, we find *all* the conversion operators, and then
2894 select from them. */
2895 fns = NULL_TREE;
2896
2897 methods = CLASSTYPE_METHOD_VEC (ctype);
2898 if (methods)
2899 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2900 methods->iterate (idx, &ovl);
2901 ++idx)
2902 {
2903 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2904 /* There are no more conversion functions. */
2905 break;
2906
2907 /* Glue all these conversion functions together
2908 with those we already have. */
2909 for (; ovl; ovl = OVL_NEXT (ovl))
2910 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2911 }
2912 }
2913
2914 if (fns == NULL_TREE)
2915 {
2916 error ("no member function %qD declared in %qT", name, ctype);
2917 return error_mark_node;
2918 }
2919 else
2920 TREE_OPERAND (declarator, 0) = fns;
2921 }
2922
2923 /* Figure out what exactly is being specialized at this point.
2924 Note that for an explicit instantiation, even one for a
2925 member function, we cannot tell apriori whether the
2926 instantiation is for a member template, or just a member
2927 function of a template class. Even if a member template is
2928 being instantiated, the member template arguments may be
2929 elided if they can be deduced from the rest of the
2930 declaration. */
2931 tmpl = determine_specialization (declarator, decl,
2932 &targs,
2933 member_specialization,
2934 template_count,
2935 tsk);
2936
2937 if (!tmpl || tmpl == error_mark_node)
2938 /* We couldn't figure out what this declaration was
2939 specializing. */
2940 return error_mark_node;
2941 else
2942 {
2943 if (!ctype && !was_template_id
2944 && (specialization || member_specialization
2945 || explicit_instantiation)
2946 && !is_associated_namespace (CP_DECL_CONTEXT (decl),
2947 CP_DECL_CONTEXT (tmpl)))
2948 error ("%qD is not declared in %qD",
2949 tmpl, current_namespace);
2950
2951 tree gen_tmpl = most_general_template (tmpl);
2952
2953 if (explicit_instantiation)
2954 {
2955 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2956 is done by do_decl_instantiation later. */
2957
2958 int arg_depth = TMPL_ARGS_DEPTH (targs);
2959 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2960
2961 if (arg_depth > parm_depth)
2962 {
2963 /* If TMPL is not the most general template (for
2964 example, if TMPL is a friend template that is
2965 injected into namespace scope), then there will
2966 be too many levels of TARGS. Remove some of them
2967 here. */
2968 int i;
2969 tree new_targs;
2970
2971 new_targs = make_tree_vec (parm_depth);
2972 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2973 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2974 = TREE_VEC_ELT (targs, i);
2975 targs = new_targs;
2976 }
2977
2978 return instantiate_template (tmpl, targs, tf_error);
2979 }
2980
2981 /* If we thought that the DECL was a member function, but it
2982 turns out to be specializing a static member function,
2983 make DECL a static member function as well. */
2984 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2985 && DECL_STATIC_FUNCTION_P (tmpl)
2986 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2987 revert_static_member_fn (decl);
2988
2989 /* If this is a specialization of a member template of a
2990 template class, we want to return the TEMPLATE_DECL, not
2991 the specialization of it. */
2992 if (tsk == tsk_template && !was_template_id)
2993 {
2994 tree result = DECL_TEMPLATE_RESULT (tmpl);
2995 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2996 DECL_INITIAL (result) = NULL_TREE;
2997 if (have_def)
2998 {
2999 tree parm;
3000 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3001 DECL_SOURCE_LOCATION (result)
3002 = DECL_SOURCE_LOCATION (decl);
3003 /* We want to use the argument list specified in the
3004 definition, not in the original declaration. */
3005 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3006 for (parm = DECL_ARGUMENTS (result); parm;
3007 parm = DECL_CHAIN (parm))
3008 DECL_CONTEXT (parm) = result;
3009 }
3010 return register_specialization (tmpl, gen_tmpl, targs,
3011 is_friend, 0);
3012 }
3013
3014 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3015 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3016
3017 if (was_template_id)
3018 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3019
3020 /* Inherit default function arguments from the template
3021 DECL is specializing. */
3022 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3023 copy_default_args_to_explicit_spec (decl);
3024
3025 /* This specialization has the same protection as the
3026 template it specializes. */
3027 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3028 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3029
3030 /* 7.1.1-1 [dcl.stc]
3031
3032 A storage-class-specifier shall not be specified in an
3033 explicit specialization...
3034
3035 The parser rejects these, so unless action is taken here,
3036 explicit function specializations will always appear with
3037 global linkage.
3038
3039 The action recommended by the C++ CWG in response to C++
3040 defect report 605 is to make the storage class and linkage
3041 of the explicit specialization match the templated function:
3042
3043 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3044 */
3045 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3046 {
3047 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3048 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3049
3050 /* A concept cannot be specialized. */
3051 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3052 {
3053 error ("explicit specialization of function concept %qD",
3054 gen_tmpl);
3055 return error_mark_node;
3056 }
3057
3058 /* This specialization has the same linkage and visibility as
3059 the function template it specializes. */
3060 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3061 if (! TREE_PUBLIC (decl))
3062 {
3063 DECL_INTERFACE_KNOWN (decl) = 1;
3064 DECL_NOT_REALLY_EXTERN (decl) = 1;
3065 }
3066 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3067 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3068 {
3069 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3070 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3071 }
3072 }
3073
3074 /* If DECL is a friend declaration, declared using an
3075 unqualified name, the namespace associated with DECL may
3076 have been set incorrectly. For example, in:
3077
3078 template <typename T> void f(T);
3079 namespace N {
3080 struct S { friend void f<int>(int); }
3081 }
3082
3083 we will have set the DECL_CONTEXT for the friend
3084 declaration to N, rather than to the global namespace. */
3085 if (DECL_NAMESPACE_SCOPE_P (decl))
3086 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3087
3088 if (is_friend && !have_def)
3089 /* This is not really a declaration of a specialization.
3090 It's just the name of an instantiation. But, it's not
3091 a request for an instantiation, either. */
3092 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3093 else if (TREE_CODE (decl) == FUNCTION_DECL)
3094 /* A specialization is not necessarily COMDAT. */
3095 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3096 && DECL_DECLARED_INLINE_P (decl));
3097 else if (VAR_P (decl))
3098 DECL_COMDAT (decl) = false;
3099
3100 /* If this is a full specialization, register it so that we can find
3101 it again. Partial specializations will be registered in
3102 process_partial_specialization. */
3103 if (!processing_template_decl)
3104 decl = register_specialization (decl, gen_tmpl, targs,
3105 is_friend, 0);
3106
3107 /* A 'structor should already have clones. */
3108 gcc_assert (decl == error_mark_node
3109 || variable_template_p (tmpl)
3110 || !(DECL_CONSTRUCTOR_P (decl)
3111 || DECL_DESTRUCTOR_P (decl))
3112 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3113 }
3114 }
3115
3116 return decl;
3117 }
3118
3119 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3120 parameters. These are represented in the same format used for
3121 DECL_TEMPLATE_PARMS. */
3122
3123 int
3124 comp_template_parms (const_tree parms1, const_tree parms2)
3125 {
3126 const_tree p1;
3127 const_tree p2;
3128
3129 if (parms1 == parms2)
3130 return 1;
3131
3132 for (p1 = parms1, p2 = parms2;
3133 p1 != NULL_TREE && p2 != NULL_TREE;
3134 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3135 {
3136 tree t1 = TREE_VALUE (p1);
3137 tree t2 = TREE_VALUE (p2);
3138 int i;
3139
3140 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3141 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3142
3143 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3144 return 0;
3145
3146 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3147 {
3148 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3149 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3150
3151 /* If either of the template parameters are invalid, assume
3152 they match for the sake of error recovery. */
3153 if (error_operand_p (parm1) || error_operand_p (parm2))
3154 return 1;
3155
3156 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3157 return 0;
3158
3159 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3160 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3161 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3162 continue;
3163 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3164 return 0;
3165 }
3166 }
3167
3168 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3169 /* One set of parameters has more parameters lists than the
3170 other. */
3171 return 0;
3172
3173 return 1;
3174 }
3175
3176 /* Determine whether PARM is a parameter pack. */
3177
3178 bool
3179 template_parameter_pack_p (const_tree parm)
3180 {
3181 /* Determine if we have a non-type template parameter pack. */
3182 if (TREE_CODE (parm) == PARM_DECL)
3183 return (DECL_TEMPLATE_PARM_P (parm)
3184 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3185 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3186 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3187
3188 /* If this is a list of template parameters, we could get a
3189 TYPE_DECL or a TEMPLATE_DECL. */
3190 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3191 parm = TREE_TYPE (parm);
3192
3193 /* Otherwise it must be a type template parameter. */
3194 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3195 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3196 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3197 }
3198
3199 /* Determine if T is a function parameter pack. */
3200
3201 bool
3202 function_parameter_pack_p (const_tree t)
3203 {
3204 if (t && TREE_CODE (t) == PARM_DECL)
3205 return DECL_PACK_P (t);
3206 return false;
3207 }
3208
3209 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3210 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3211
3212 tree
3213 get_function_template_decl (const_tree primary_func_tmpl_inst)
3214 {
3215 if (! primary_func_tmpl_inst
3216 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3217 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3218 return NULL;
3219
3220 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3221 }
3222
3223 /* Return true iff the function parameter PARAM_DECL was expanded
3224 from the function parameter pack PACK. */
3225
3226 bool
3227 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3228 {
3229 if (DECL_ARTIFICIAL (param_decl)
3230 || !function_parameter_pack_p (pack))
3231 return false;
3232
3233 /* The parameter pack and its pack arguments have the same
3234 DECL_PARM_INDEX. */
3235 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3236 }
3237
3238 /* Determine whether ARGS describes a variadic template args list,
3239 i.e., one that is terminated by a template argument pack. */
3240
3241 static bool
3242 template_args_variadic_p (tree args)
3243 {
3244 int nargs;
3245 tree last_parm;
3246
3247 if (args == NULL_TREE)
3248 return false;
3249
3250 args = INNERMOST_TEMPLATE_ARGS (args);
3251 nargs = TREE_VEC_LENGTH (args);
3252
3253 if (nargs == 0)
3254 return false;
3255
3256 last_parm = TREE_VEC_ELT (args, nargs - 1);
3257
3258 return ARGUMENT_PACK_P (last_parm);
3259 }
3260
3261 /* Generate a new name for the parameter pack name NAME (an
3262 IDENTIFIER_NODE) that incorporates its */
3263
3264 static tree
3265 make_ith_pack_parameter_name (tree name, int i)
3266 {
3267 /* Munge the name to include the parameter index. */
3268 #define NUMBUF_LEN 128
3269 char numbuf[NUMBUF_LEN];
3270 char* newname;
3271 int newname_len;
3272
3273 if (name == NULL_TREE)
3274 return name;
3275 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3276 newname_len = IDENTIFIER_LENGTH (name)
3277 + strlen (numbuf) + 2;
3278 newname = (char*)alloca (newname_len);
3279 snprintf (newname, newname_len,
3280 "%s#%i", IDENTIFIER_POINTER (name), i);
3281 return get_identifier (newname);
3282 }
3283
3284 /* Return true if T is a primary function, class or alias template
3285 instantiation. */
3286
3287 bool
3288 primary_template_instantiation_p (const_tree t)
3289 {
3290 if (!t)
3291 return false;
3292
3293 if (TREE_CODE (t) == FUNCTION_DECL)
3294 return DECL_LANG_SPECIFIC (t)
3295 && DECL_TEMPLATE_INSTANTIATION (t)
3296 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3297 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3298 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3299 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3300 else if (alias_template_specialization_p (t))
3301 return true;
3302 return false;
3303 }
3304
3305 /* Return true if PARM is a template template parameter. */
3306
3307 bool
3308 template_template_parameter_p (const_tree parm)
3309 {
3310 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3311 }
3312
3313 /* Return true iff PARM is a DECL representing a type template
3314 parameter. */
3315
3316 bool
3317 template_type_parameter_p (const_tree parm)
3318 {
3319 return (parm
3320 && (TREE_CODE (parm) == TYPE_DECL
3321 || TREE_CODE (parm) == TEMPLATE_DECL)
3322 && DECL_TEMPLATE_PARM_P (parm));
3323 }
3324
3325 /* Return the template parameters of T if T is a
3326 primary template instantiation, NULL otherwise. */
3327
3328 tree
3329 get_primary_template_innermost_parameters (const_tree t)
3330 {
3331 tree parms = NULL, template_info = NULL;
3332
3333 if ((template_info = get_template_info (t))
3334 && primary_template_instantiation_p (t))
3335 parms = INNERMOST_TEMPLATE_PARMS
3336 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3337
3338 return parms;
3339 }
3340
3341 /* Return the template parameters of the LEVELth level from the full list
3342 of template parameters PARMS. */
3343
3344 tree
3345 get_template_parms_at_level (tree parms, int level)
3346 {
3347 tree p;
3348 if (!parms
3349 || TREE_CODE (parms) != TREE_LIST
3350 || level > TMPL_PARMS_DEPTH (parms))
3351 return NULL_TREE;
3352
3353 for (p = parms; p; p = TREE_CHAIN (p))
3354 if (TMPL_PARMS_DEPTH (p) == level)
3355 return p;
3356
3357 return NULL_TREE;
3358 }
3359
3360 /* Returns the template arguments of T if T is a template instantiation,
3361 NULL otherwise. */
3362
3363 tree
3364 get_template_innermost_arguments (const_tree t)
3365 {
3366 tree args = NULL, template_info = NULL;
3367
3368 if ((template_info = get_template_info (t))
3369 && TI_ARGS (template_info))
3370 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3371
3372 return args;
3373 }
3374
3375 /* Return the argument pack elements of T if T is a template argument pack,
3376 NULL otherwise. */
3377
3378 tree
3379 get_template_argument_pack_elems (const_tree t)
3380 {
3381 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3382 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3383 return NULL;
3384
3385 return ARGUMENT_PACK_ARGS (t);
3386 }
3387
3388 /* Structure used to track the progress of find_parameter_packs_r. */
3389 struct find_parameter_pack_data
3390 {
3391 /* TREE_LIST that will contain all of the parameter packs found by
3392 the traversal. */
3393 tree* parameter_packs;
3394
3395 /* Set of AST nodes that have been visited by the traversal. */
3396 hash_set<tree> *visited;
3397
3398 /* True iff we're making a type pack expansion. */
3399 bool type_pack_expansion_p;
3400 };
3401
3402 /* Identifies all of the argument packs that occur in a template
3403 argument and appends them to the TREE_LIST inside DATA, which is a
3404 find_parameter_pack_data structure. This is a subroutine of
3405 make_pack_expansion and uses_parameter_packs. */
3406 static tree
3407 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3408 {
3409 tree t = *tp;
3410 struct find_parameter_pack_data* ppd =
3411 (struct find_parameter_pack_data*)data;
3412 bool parameter_pack_p = false;
3413
3414 /* Handle type aliases/typedefs. */
3415 if (TYPE_ALIAS_P (t))
3416 {
3417 if (TYPE_TEMPLATE_INFO (t))
3418 cp_walk_tree (&TYPE_TI_ARGS (t),
3419 &find_parameter_packs_r,
3420 ppd, ppd->visited);
3421 *walk_subtrees = 0;
3422 return NULL_TREE;
3423 }
3424
3425 /* Identify whether this is a parameter pack or not. */
3426 switch (TREE_CODE (t))
3427 {
3428 case TEMPLATE_PARM_INDEX:
3429 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3430 parameter_pack_p = true;
3431 break;
3432
3433 case TEMPLATE_TYPE_PARM:
3434 t = TYPE_MAIN_VARIANT (t);
3435 case TEMPLATE_TEMPLATE_PARM:
3436 /* If the placeholder appears in the decl-specifier-seq of a function
3437 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3438 is a pack expansion, the invented template parameter is a template
3439 parameter pack. */
3440 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3441 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3442 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3443 parameter_pack_p = true;
3444 break;
3445
3446 case FIELD_DECL:
3447 case PARM_DECL:
3448 if (DECL_PACK_P (t))
3449 {
3450 /* We don't want to walk into the type of a PARM_DECL,
3451 because we don't want to see the type parameter pack. */
3452 *walk_subtrees = 0;
3453 parameter_pack_p = true;
3454 }
3455 break;
3456
3457 /* Look through a lambda capture proxy to the field pack. */
3458 case VAR_DECL:
3459 if (DECL_HAS_VALUE_EXPR_P (t))
3460 {
3461 tree v = DECL_VALUE_EXPR (t);
3462 cp_walk_tree (&v,
3463 &find_parameter_packs_r,
3464 ppd, ppd->visited);
3465 *walk_subtrees = 0;
3466 }
3467 else if (variable_template_specialization_p (t))
3468 {
3469 cp_walk_tree (&DECL_TI_ARGS (t),
3470 find_parameter_packs_r,
3471 ppd, ppd->visited);
3472 *walk_subtrees = 0;
3473 }
3474 break;
3475
3476 case BASES:
3477 parameter_pack_p = true;
3478 break;
3479 default:
3480 /* Not a parameter pack. */
3481 break;
3482 }
3483
3484 if (parameter_pack_p)
3485 {
3486 /* Add this parameter pack to the list. */
3487 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3488 }
3489
3490 if (TYPE_P (t))
3491 cp_walk_tree (&TYPE_CONTEXT (t),
3492 &find_parameter_packs_r, ppd, ppd->visited);
3493
3494 /* This switch statement will return immediately if we don't find a
3495 parameter pack. */
3496 switch (TREE_CODE (t))
3497 {
3498 case TEMPLATE_PARM_INDEX:
3499 return NULL_TREE;
3500
3501 case BOUND_TEMPLATE_TEMPLATE_PARM:
3502 /* Check the template itself. */
3503 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3504 &find_parameter_packs_r, ppd, ppd->visited);
3505 /* Check the template arguments. */
3506 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3507 ppd->visited);
3508 *walk_subtrees = 0;
3509 return NULL_TREE;
3510
3511 case TEMPLATE_TYPE_PARM:
3512 case TEMPLATE_TEMPLATE_PARM:
3513 return NULL_TREE;
3514
3515 case PARM_DECL:
3516 return NULL_TREE;
3517
3518 case RECORD_TYPE:
3519 if (TYPE_PTRMEMFUNC_P (t))
3520 return NULL_TREE;
3521 /* Fall through. */
3522
3523 case UNION_TYPE:
3524 case ENUMERAL_TYPE:
3525 if (TYPE_TEMPLATE_INFO (t))
3526 cp_walk_tree (&TYPE_TI_ARGS (t),
3527 &find_parameter_packs_r, ppd, ppd->visited);
3528
3529 *walk_subtrees = 0;
3530 return NULL_TREE;
3531
3532 case CONSTRUCTOR:
3533 case TEMPLATE_DECL:
3534 cp_walk_tree (&TREE_TYPE (t),
3535 &find_parameter_packs_r, ppd, ppd->visited);
3536 return NULL_TREE;
3537
3538 case TYPENAME_TYPE:
3539 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3540 ppd, ppd->visited);
3541 *walk_subtrees = 0;
3542 return NULL_TREE;
3543
3544 case TYPE_PACK_EXPANSION:
3545 case EXPR_PACK_EXPANSION:
3546 *walk_subtrees = 0;
3547 return NULL_TREE;
3548
3549 case INTEGER_TYPE:
3550 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3551 ppd, ppd->visited);
3552 *walk_subtrees = 0;
3553 return NULL_TREE;
3554
3555 case IDENTIFIER_NODE:
3556 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3557 ppd->visited);
3558 *walk_subtrees = 0;
3559 return NULL_TREE;
3560
3561 case DECLTYPE_TYPE:
3562 {
3563 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3564 type_pack_expansion_p to false so that any placeholders
3565 within the expression don't get marked as parameter packs. */
3566 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3567 ppd->type_pack_expansion_p = false;
3568 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3569 ppd, ppd->visited);
3570 ppd->type_pack_expansion_p = type_pack_expansion_p;
3571 *walk_subtrees = 0;
3572 return NULL_TREE;
3573 }
3574
3575 default:
3576 return NULL_TREE;
3577 }
3578
3579 return NULL_TREE;
3580 }
3581
3582 /* Determines if the expression or type T uses any parameter packs. */
3583 bool
3584 uses_parameter_packs (tree t)
3585 {
3586 tree parameter_packs = NULL_TREE;
3587 struct find_parameter_pack_data ppd;
3588 ppd.parameter_packs = &parameter_packs;
3589 ppd.visited = new hash_set<tree>;
3590 ppd.type_pack_expansion_p = false;
3591 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3592 delete ppd.visited;
3593 return parameter_packs != NULL_TREE;
3594 }
3595
3596 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3597 representation a base-class initializer into a parameter pack
3598 expansion. If all goes well, the resulting node will be an
3599 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3600 respectively. */
3601 tree
3602 make_pack_expansion (tree arg)
3603 {
3604 tree result;
3605 tree parameter_packs = NULL_TREE;
3606 bool for_types = false;
3607 struct find_parameter_pack_data ppd;
3608
3609 if (!arg || arg == error_mark_node)
3610 return arg;
3611
3612 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3613 {
3614 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3615 class initializer. In this case, the TREE_PURPOSE will be a
3616 _TYPE node (representing the base class expansion we're
3617 initializing) and the TREE_VALUE will be a TREE_LIST
3618 containing the initialization arguments.
3619
3620 The resulting expansion looks somewhat different from most
3621 expansions. Rather than returning just one _EXPANSION, we
3622 return a TREE_LIST whose TREE_PURPOSE is a
3623 TYPE_PACK_EXPANSION containing the bases that will be
3624 initialized. The TREE_VALUE will be identical to the
3625 original TREE_VALUE, which is a list of arguments that will
3626 be passed to each base. We do not introduce any new pack
3627 expansion nodes into the TREE_VALUE (although it is possible
3628 that some already exist), because the TREE_PURPOSE and
3629 TREE_VALUE all need to be expanded together with the same
3630 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3631 resulting TREE_PURPOSE will mention the parameter packs in
3632 both the bases and the arguments to the bases. */
3633 tree purpose;
3634 tree value;
3635 tree parameter_packs = NULL_TREE;
3636
3637 /* Determine which parameter packs will be used by the base
3638 class expansion. */
3639 ppd.visited = new hash_set<tree>;
3640 ppd.parameter_packs = &parameter_packs;
3641 ppd.type_pack_expansion_p = true;
3642 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3643 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3644 &ppd, ppd.visited);
3645
3646 if (parameter_packs == NULL_TREE)
3647 {
3648 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3649 delete ppd.visited;
3650 return error_mark_node;
3651 }
3652
3653 if (TREE_VALUE (arg) != void_type_node)
3654 {
3655 /* Collect the sets of parameter packs used in each of the
3656 initialization arguments. */
3657 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3658 {
3659 /* Determine which parameter packs will be expanded in this
3660 argument. */
3661 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3662 &ppd, ppd.visited);
3663 }
3664 }
3665
3666 delete ppd.visited;
3667
3668 /* Create the pack expansion type for the base type. */
3669 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3670 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3671 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3672
3673 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3674 they will rarely be compared to anything. */
3675 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3676
3677 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3678 }
3679
3680 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3681 for_types = true;
3682
3683 /* Build the PACK_EXPANSION_* node. */
3684 result = for_types
3685 ? cxx_make_type (TYPE_PACK_EXPANSION)
3686 : make_node (EXPR_PACK_EXPANSION);
3687 SET_PACK_EXPANSION_PATTERN (result, arg);
3688 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3689 {
3690 /* Propagate type and const-expression information. */
3691 TREE_TYPE (result) = TREE_TYPE (arg);
3692 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3693 }
3694 else
3695 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3696 they will rarely be compared to anything. */
3697 SET_TYPE_STRUCTURAL_EQUALITY (result);
3698
3699 /* Determine which parameter packs will be expanded. */
3700 ppd.parameter_packs = &parameter_packs;
3701 ppd.visited = new hash_set<tree>;
3702 ppd.type_pack_expansion_p = TYPE_P (arg);
3703 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3704 delete ppd.visited;
3705
3706 /* Make sure we found some parameter packs. */
3707 if (parameter_packs == NULL_TREE)
3708 {
3709 if (TYPE_P (arg))
3710 error ("expansion pattern %<%T%> contains no argument packs", arg);
3711 else
3712 error ("expansion pattern %<%E%> contains no argument packs", arg);
3713 return error_mark_node;
3714 }
3715 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3716
3717 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3718
3719 return result;
3720 }
3721
3722 /* Checks T for any "bare" parameter packs, which have not yet been
3723 expanded, and issues an error if any are found. This operation can
3724 only be done on full expressions or types (e.g., an expression
3725 statement, "if" condition, etc.), because we could have expressions like:
3726
3727 foo(f(g(h(args)))...)
3728
3729 where "args" is a parameter pack. check_for_bare_parameter_packs
3730 should not be called for the subexpressions args, h(args),
3731 g(h(args)), or f(g(h(args))), because we would produce erroneous
3732 error messages.
3733
3734 Returns TRUE and emits an error if there were bare parameter packs,
3735 returns FALSE otherwise. */
3736 bool
3737 check_for_bare_parameter_packs (tree t)
3738 {
3739 tree parameter_packs = NULL_TREE;
3740 struct find_parameter_pack_data ppd;
3741
3742 if (!processing_template_decl || !t || t == error_mark_node)
3743 return false;
3744
3745 if (TREE_CODE (t) == TYPE_DECL)
3746 t = TREE_TYPE (t);
3747
3748 ppd.parameter_packs = &parameter_packs;
3749 ppd.visited = new hash_set<tree>;
3750 ppd.type_pack_expansion_p = false;
3751 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3752 delete ppd.visited;
3753
3754 if (parameter_packs)
3755 {
3756 error ("parameter packs not expanded with %<...%>:");
3757 while (parameter_packs)
3758 {
3759 tree pack = TREE_VALUE (parameter_packs);
3760 tree name = NULL_TREE;
3761
3762 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3763 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3764 name = TYPE_NAME (pack);
3765 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3766 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3767 else
3768 name = DECL_NAME (pack);
3769
3770 if (name)
3771 inform (input_location, " %qD", name);
3772 else
3773 inform (input_location, " <anonymous>");
3774
3775 parameter_packs = TREE_CHAIN (parameter_packs);
3776 }
3777
3778 return true;
3779 }
3780
3781 return false;
3782 }
3783
3784 /* Expand any parameter packs that occur in the template arguments in
3785 ARGS. */
3786 tree
3787 expand_template_argument_pack (tree args)
3788 {
3789 tree result_args = NULL_TREE;
3790 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3791 int num_result_args = -1;
3792 int non_default_args_count = -1;
3793
3794 /* First, determine if we need to expand anything, and the number of
3795 slots we'll need. */
3796 for (in_arg = 0; in_arg < nargs; ++in_arg)
3797 {
3798 tree arg = TREE_VEC_ELT (args, in_arg);
3799 if (arg == NULL_TREE)
3800 return args;
3801 if (ARGUMENT_PACK_P (arg))
3802 {
3803 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3804 if (num_result_args < 0)
3805 num_result_args = in_arg + num_packed;
3806 else
3807 num_result_args += num_packed;
3808 }
3809 else
3810 {
3811 if (num_result_args >= 0)
3812 num_result_args++;
3813 }
3814 }
3815
3816 /* If no expansion is necessary, we're done. */
3817 if (num_result_args < 0)
3818 return args;
3819
3820 /* Expand arguments. */
3821 result_args = make_tree_vec (num_result_args);
3822 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3823 non_default_args_count =
3824 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3825 for (in_arg = 0; in_arg < nargs; ++in_arg)
3826 {
3827 tree arg = TREE_VEC_ELT (args, in_arg);
3828 if (ARGUMENT_PACK_P (arg))
3829 {
3830 tree packed = ARGUMENT_PACK_ARGS (arg);
3831 int i, num_packed = TREE_VEC_LENGTH (packed);
3832 for (i = 0; i < num_packed; ++i, ++out_arg)
3833 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3834 if (non_default_args_count > 0)
3835 non_default_args_count += num_packed - 1;
3836 }
3837 else
3838 {
3839 TREE_VEC_ELT (result_args, out_arg) = arg;
3840 ++out_arg;
3841 }
3842 }
3843 if (non_default_args_count >= 0)
3844 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3845 return result_args;
3846 }
3847
3848 /* Checks if DECL shadows a template parameter.
3849
3850 [temp.local]: A template-parameter shall not be redeclared within its
3851 scope (including nested scopes).
3852
3853 Emits an error and returns TRUE if the DECL shadows a parameter,
3854 returns FALSE otherwise. */
3855
3856 bool
3857 check_template_shadow (tree decl)
3858 {
3859 tree olddecl;
3860
3861 /* If we're not in a template, we can't possibly shadow a template
3862 parameter. */
3863 if (!current_template_parms)
3864 return true;
3865
3866 /* Figure out what we're shadowing. */
3867 if (TREE_CODE (decl) == OVERLOAD)
3868 decl = OVL_CURRENT (decl);
3869 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3870
3871 /* If there's no previous binding for this name, we're not shadowing
3872 anything, let alone a template parameter. */
3873 if (!olddecl)
3874 return true;
3875
3876 /* If we're not shadowing a template parameter, we're done. Note
3877 that OLDDECL might be an OVERLOAD (or perhaps even an
3878 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3879 node. */
3880 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3881 return true;
3882
3883 /* We check for decl != olddecl to avoid bogus errors for using a
3884 name inside a class. We check TPFI to avoid duplicate errors for
3885 inline member templates. */
3886 if (decl == olddecl
3887 || (DECL_TEMPLATE_PARM_P (decl)
3888 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3889 return true;
3890
3891 /* Don't complain about the injected class name, as we've already
3892 complained about the class itself. */
3893 if (DECL_SELF_REFERENCE_P (decl))
3894 return false;
3895
3896 if (DECL_TEMPLATE_PARM_P (decl))
3897 error ("declaration of template parameter %q+D shadows "
3898 "template parameter", decl);
3899 else
3900 error ("declaration of %q+#D shadows template parameter", decl);
3901 inform (DECL_SOURCE_LOCATION (olddecl),
3902 "template parameter %qD declared here", olddecl);
3903 return false;
3904 }
3905
3906 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3907 ORIG_LEVEL, DECL, and TYPE. */
3908
3909 static tree
3910 build_template_parm_index (int index,
3911 int level,
3912 int orig_level,
3913 tree decl,
3914 tree type)
3915 {
3916 tree t = make_node (TEMPLATE_PARM_INDEX);
3917 TEMPLATE_PARM_IDX (t) = index;
3918 TEMPLATE_PARM_LEVEL (t) = level;
3919 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3920 TEMPLATE_PARM_DECL (t) = decl;
3921 TREE_TYPE (t) = type;
3922 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3923 TREE_READONLY (t) = TREE_READONLY (decl);
3924
3925 return t;
3926 }
3927
3928 /* Find the canonical type parameter for the given template type
3929 parameter. Returns the canonical type parameter, which may be TYPE
3930 if no such parameter existed. */
3931
3932 static tree
3933 canonical_type_parameter (tree type)
3934 {
3935 tree list;
3936 int idx = TEMPLATE_TYPE_IDX (type);
3937 if (!canonical_template_parms)
3938 vec_alloc (canonical_template_parms, idx+1);
3939
3940 while (canonical_template_parms->length () <= (unsigned)idx)
3941 vec_safe_push (canonical_template_parms, NULL_TREE);
3942
3943 list = (*canonical_template_parms)[idx];
3944 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3945 list = TREE_CHAIN (list);
3946
3947 if (list)
3948 return TREE_VALUE (list);
3949 else
3950 {
3951 (*canonical_template_parms)[idx]
3952 = tree_cons (NULL_TREE, type,
3953 (*canonical_template_parms)[idx]);
3954 return type;
3955 }
3956 }
3957
3958 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3959 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3960 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3961 new one is created. */
3962
3963 static tree
3964 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3965 tsubst_flags_t complain)
3966 {
3967 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3968 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3969 != TEMPLATE_PARM_LEVEL (index) - levels)
3970 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3971 {
3972 tree orig_decl = TEMPLATE_PARM_DECL (index);
3973 tree decl, t;
3974
3975 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3976 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3977 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3978 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3979 DECL_ARTIFICIAL (decl) = 1;
3980 SET_DECL_TEMPLATE_PARM_P (decl);
3981
3982 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3983 TEMPLATE_PARM_LEVEL (index) - levels,
3984 TEMPLATE_PARM_ORIG_LEVEL (index),
3985 decl, type);
3986 TEMPLATE_PARM_DESCENDANTS (index) = t;
3987 TEMPLATE_PARM_PARAMETER_PACK (t)
3988 = TEMPLATE_PARM_PARAMETER_PACK (index);
3989
3990 /* Template template parameters need this. */
3991 if (TREE_CODE (decl) == TEMPLATE_DECL)
3992 {
3993 DECL_TEMPLATE_RESULT (decl)
3994 = build_decl (DECL_SOURCE_LOCATION (decl),
3995 TYPE_DECL, DECL_NAME (decl), type);
3996 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3997 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3998 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
3999 }
4000 }
4001
4002 return TEMPLATE_PARM_DESCENDANTS (index);
4003 }
4004
4005 /* Process information from new template parameter PARM and append it
4006 to the LIST being built. This new parameter is a non-type
4007 parameter iff IS_NON_TYPE is true. This new parameter is a
4008 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4009 is in PARM_LOC. */
4010
4011 tree
4012 process_template_parm (tree list, location_t parm_loc, tree parm,
4013 bool is_non_type, bool is_parameter_pack)
4014 {
4015 tree decl = 0;
4016 int idx = 0;
4017
4018 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4019 tree defval = TREE_PURPOSE (parm);
4020 tree constr = TREE_TYPE (parm);
4021
4022 if (list)
4023 {
4024 tree p = tree_last (list);
4025
4026 if (p && TREE_VALUE (p) != error_mark_node)
4027 {
4028 p = TREE_VALUE (p);
4029 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4030 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4031 else
4032 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4033 }
4034
4035 ++idx;
4036 }
4037
4038 if (is_non_type)
4039 {
4040 parm = TREE_VALUE (parm);
4041
4042 SET_DECL_TEMPLATE_PARM_P (parm);
4043
4044 if (TREE_TYPE (parm) != error_mark_node)
4045 {
4046 /* [temp.param]
4047
4048 The top-level cv-qualifiers on the template-parameter are
4049 ignored when determining its type. */
4050 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4051 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4052 TREE_TYPE (parm) = error_mark_node;
4053 else if (uses_parameter_packs (TREE_TYPE (parm))
4054 && !is_parameter_pack
4055 /* If we're in a nested template parameter list, the template
4056 template parameter could be a parameter pack. */
4057 && processing_template_parmlist == 1)
4058 {
4059 /* This template parameter is not a parameter pack, but it
4060 should be. Complain about "bare" parameter packs. */
4061 check_for_bare_parameter_packs (TREE_TYPE (parm));
4062
4063 /* Recover by calling this a parameter pack. */
4064 is_parameter_pack = true;
4065 }
4066 }
4067
4068 /* A template parameter is not modifiable. */
4069 TREE_CONSTANT (parm) = 1;
4070 TREE_READONLY (parm) = 1;
4071 decl = build_decl (parm_loc,
4072 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4073 TREE_CONSTANT (decl) = 1;
4074 TREE_READONLY (decl) = 1;
4075 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4076 = build_template_parm_index (idx, processing_template_decl,
4077 processing_template_decl,
4078 decl, TREE_TYPE (parm));
4079
4080 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4081 = is_parameter_pack;
4082 }
4083 else
4084 {
4085 tree t;
4086 parm = TREE_VALUE (TREE_VALUE (parm));
4087
4088 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4089 {
4090 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4091 /* This is for distinguishing between real templates and template
4092 template parameters */
4093 TREE_TYPE (parm) = t;
4094 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4095 decl = parm;
4096 }
4097 else
4098 {
4099 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4100 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4101 decl = build_decl (parm_loc,
4102 TYPE_DECL, parm, t);
4103 }
4104
4105 TYPE_NAME (t) = decl;
4106 TYPE_STUB_DECL (t) = decl;
4107 parm = decl;
4108 TEMPLATE_TYPE_PARM_INDEX (t)
4109 = build_template_parm_index (idx, processing_template_decl,
4110 processing_template_decl,
4111 decl, TREE_TYPE (parm));
4112 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4113 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4114 }
4115 DECL_ARTIFICIAL (decl) = 1;
4116 SET_DECL_TEMPLATE_PARM_P (decl);
4117
4118 /* Build requirements for the type/template parameter.
4119 This must be done after SET_DECL_TEMPLATE_PARM_P or
4120 process_template_parm could fail. */
4121 tree reqs = finish_shorthand_constraint (parm, constr);
4122
4123 pushdecl (decl);
4124
4125 /* Build the parameter node linking the parameter declaration,
4126 its default argument (if any), and its constraints (if any). */
4127 parm = build_tree_list (defval, parm);
4128 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4129
4130 return chainon (list, parm);
4131 }
4132
4133 /* The end of a template parameter list has been reached. Process the
4134 tree list into a parameter vector, converting each parameter into a more
4135 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4136 as PARM_DECLs. */
4137
4138 tree
4139 end_template_parm_list (tree parms)
4140 {
4141 int nparms;
4142 tree parm, next;
4143 tree saved_parmlist = make_tree_vec (list_length (parms));
4144
4145 /* Pop the dummy parameter level and add the real one. */
4146 current_template_parms = TREE_CHAIN (current_template_parms);
4147
4148 current_template_parms
4149 = tree_cons (size_int (processing_template_decl),
4150 saved_parmlist, current_template_parms);
4151
4152 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4153 {
4154 next = TREE_CHAIN (parm);
4155 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4156 TREE_CHAIN (parm) = NULL_TREE;
4157 }
4158
4159 --processing_template_parmlist;
4160
4161 return saved_parmlist;
4162 }
4163
4164 // Explicitly indicate the end of the template parameter list. We assume
4165 // that the current template parameters have been constructed and/or
4166 // managed explicitly, as when creating new template template parameters
4167 // from a shorthand constraint.
4168 void
4169 end_template_parm_list ()
4170 {
4171 --processing_template_parmlist;
4172 }
4173
4174 /* end_template_decl is called after a template declaration is seen. */
4175
4176 void
4177 end_template_decl (void)
4178 {
4179 reset_specialization ();
4180
4181 if (! processing_template_decl)
4182 return;
4183
4184 /* This matches the pushlevel in begin_template_parm_list. */
4185 finish_scope ();
4186
4187 --processing_template_decl;
4188 current_template_parms = TREE_CHAIN (current_template_parms);
4189 }
4190
4191 /* Takes a TREE_LIST representing a template parameter and convert it
4192 into an argument suitable to be passed to the type substitution
4193 functions. Note that If the TREE_LIST contains an error_mark
4194 node, the returned argument is error_mark_node. */
4195
4196 tree
4197 template_parm_to_arg (tree t)
4198 {
4199
4200 if (t == NULL_TREE
4201 || TREE_CODE (t) != TREE_LIST)
4202 return t;
4203
4204 if (error_operand_p (TREE_VALUE (t)))
4205 return error_mark_node;
4206
4207 t = TREE_VALUE (t);
4208
4209 if (TREE_CODE (t) == TYPE_DECL
4210 || TREE_CODE (t) == TEMPLATE_DECL)
4211 {
4212 t = TREE_TYPE (t);
4213
4214 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4215 {
4216 /* Turn this argument into a TYPE_ARGUMENT_PACK
4217 with a single element, which expands T. */
4218 tree vec = make_tree_vec (1);
4219 if (CHECKING_P)
4220 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4221
4222 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4223
4224 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4225 SET_ARGUMENT_PACK_ARGS (t, vec);
4226 }
4227 }
4228 else
4229 {
4230 t = DECL_INITIAL (t);
4231
4232 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4233 {
4234 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4235 with a single element, which expands T. */
4236 tree vec = make_tree_vec (1);
4237 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4238 if (CHECKING_P)
4239 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4240
4241 t = convert_from_reference (t);
4242 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4243
4244 t = make_node (NONTYPE_ARGUMENT_PACK);
4245 SET_ARGUMENT_PACK_ARGS (t, vec);
4246 TREE_TYPE (t) = type;
4247 }
4248 else
4249 t = convert_from_reference (t);
4250 }
4251 return t;
4252 }
4253
4254 /* Given a set of template parameters, return them as a set of template
4255 arguments. The template parameters are represented as a TREE_VEC, in
4256 the form documented in cp-tree.h for template arguments. */
4257
4258 static tree
4259 template_parms_to_args (tree parms)
4260 {
4261 tree header;
4262 tree args = NULL_TREE;
4263 int length = TMPL_PARMS_DEPTH (parms);
4264 int l = length;
4265
4266 /* If there is only one level of template parameters, we do not
4267 create a TREE_VEC of TREE_VECs. Instead, we return a single
4268 TREE_VEC containing the arguments. */
4269 if (length > 1)
4270 args = make_tree_vec (length);
4271
4272 for (header = parms; header; header = TREE_CHAIN (header))
4273 {
4274 tree a = copy_node (TREE_VALUE (header));
4275 int i;
4276
4277 TREE_TYPE (a) = NULL_TREE;
4278 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4279 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4280
4281 if (CHECKING_P)
4282 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4283
4284 if (length > 1)
4285 TREE_VEC_ELT (args, --l) = a;
4286 else
4287 args = a;
4288 }
4289
4290 return args;
4291 }
4292
4293 /* Within the declaration of a template, return the currently active
4294 template parameters as an argument TREE_VEC. */
4295
4296 static tree
4297 current_template_args (void)
4298 {
4299 return template_parms_to_args (current_template_parms);
4300 }
4301
4302 /* Update the declared TYPE by doing any lookups which were thought to be
4303 dependent, but are not now that we know the SCOPE of the declarator. */
4304
4305 tree
4306 maybe_update_decl_type (tree orig_type, tree scope)
4307 {
4308 tree type = orig_type;
4309
4310 if (type == NULL_TREE)
4311 return type;
4312
4313 if (TREE_CODE (orig_type) == TYPE_DECL)
4314 type = TREE_TYPE (type);
4315
4316 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4317 && dependent_type_p (type)
4318 /* Don't bother building up the args in this case. */
4319 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4320 {
4321 /* tsubst in the args corresponding to the template parameters,
4322 including auto if present. Most things will be unchanged, but
4323 make_typename_type and tsubst_qualified_id will resolve
4324 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4325 tree args = current_template_args ();
4326 tree auto_node = type_uses_auto (type);
4327 tree pushed;
4328 if (auto_node)
4329 {
4330 tree auto_vec = make_tree_vec (1);
4331 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4332 args = add_to_template_args (args, auto_vec);
4333 }
4334 pushed = push_scope (scope);
4335 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4336 if (pushed)
4337 pop_scope (scope);
4338 }
4339
4340 if (type == error_mark_node)
4341 return orig_type;
4342
4343 if (TREE_CODE (orig_type) == TYPE_DECL)
4344 {
4345 if (same_type_p (type, TREE_TYPE (orig_type)))
4346 type = orig_type;
4347 else
4348 type = TYPE_NAME (type);
4349 }
4350 return type;
4351 }
4352
4353 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4354 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4355 the new template is a member template. */
4356
4357 tree
4358 build_template_decl (tree decl, tree parms, bool member_template_p)
4359 {
4360 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4361 DECL_TEMPLATE_PARMS (tmpl) = parms;
4362 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4363 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4364 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4365
4366 return tmpl;
4367 }
4368
4369 struct template_parm_data
4370 {
4371 /* The level of the template parameters we are currently
4372 processing. */
4373 int level;
4374
4375 /* The index of the specialization argument we are currently
4376 processing. */
4377 int current_arg;
4378
4379 /* An array whose size is the number of template parameters. The
4380 elements are nonzero if the parameter has been used in any one
4381 of the arguments processed so far. */
4382 int* parms;
4383
4384 /* An array whose size is the number of template arguments. The
4385 elements are nonzero if the argument makes use of template
4386 parameters of this level. */
4387 int* arg_uses_template_parms;
4388 };
4389
4390 /* Subroutine of push_template_decl used to see if each template
4391 parameter in a partial specialization is used in the explicit
4392 argument list. If T is of the LEVEL given in DATA (which is
4393 treated as a template_parm_data*), then DATA->PARMS is marked
4394 appropriately. */
4395
4396 static int
4397 mark_template_parm (tree t, void* data)
4398 {
4399 int level;
4400 int idx;
4401 struct template_parm_data* tpd = (struct template_parm_data*) data;
4402
4403 template_parm_level_and_index (t, &level, &idx);
4404
4405 if (level == tpd->level)
4406 {
4407 tpd->parms[idx] = 1;
4408 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4409 }
4410
4411 /* Return zero so that for_each_template_parm will continue the
4412 traversal of the tree; we want to mark *every* template parm. */
4413 return 0;
4414 }
4415
4416 /* Process the partial specialization DECL. */
4417
4418 static tree
4419 process_partial_specialization (tree decl)
4420 {
4421 tree type = TREE_TYPE (decl);
4422 tree tinfo = get_template_info (decl);
4423 tree maintmpl = TI_TEMPLATE (tinfo);
4424 tree specargs = TI_ARGS (tinfo);
4425 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4426 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4427 tree inner_parms;
4428 tree inst;
4429 int nargs = TREE_VEC_LENGTH (inner_args);
4430 int ntparms;
4431 int i;
4432 bool did_error_intro = false;
4433 struct template_parm_data tpd;
4434 struct template_parm_data tpd2;
4435
4436 gcc_assert (current_template_parms);
4437
4438 /* A concept cannot be specialized. */
4439 if (flag_concepts && variable_concept_p (maintmpl))
4440 {
4441 error ("specialization of variable concept %q#D", maintmpl);
4442 return error_mark_node;
4443 }
4444
4445 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4446 ntparms = TREE_VEC_LENGTH (inner_parms);
4447
4448 /* We check that each of the template parameters given in the
4449 partial specialization is used in the argument list to the
4450 specialization. For example:
4451
4452 template <class T> struct S;
4453 template <class T> struct S<T*>;
4454
4455 The second declaration is OK because `T*' uses the template
4456 parameter T, whereas
4457
4458 template <class T> struct S<int>;
4459
4460 is no good. Even trickier is:
4461
4462 template <class T>
4463 struct S1
4464 {
4465 template <class U>
4466 struct S2;
4467 template <class U>
4468 struct S2<T>;
4469 };
4470
4471 The S2<T> declaration is actually invalid; it is a
4472 full-specialization. Of course,
4473
4474 template <class U>
4475 struct S2<T (*)(U)>;
4476
4477 or some such would have been OK. */
4478 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4479 tpd.parms = XALLOCAVEC (int, ntparms);
4480 memset (tpd.parms, 0, sizeof (int) * ntparms);
4481
4482 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4483 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4484 for (i = 0; i < nargs; ++i)
4485 {
4486 tpd.current_arg = i;
4487 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4488 &mark_template_parm,
4489 &tpd,
4490 NULL,
4491 /*include_nondeduced_p=*/false);
4492 }
4493 for (i = 0; i < ntparms; ++i)
4494 if (tpd.parms[i] == 0)
4495 {
4496 /* One of the template parms was not used in a deduced context in the
4497 specialization. */
4498 if (!did_error_intro)
4499 {
4500 error ("template parameters not deducible in "
4501 "partial specialization:");
4502 did_error_intro = true;
4503 }
4504
4505 inform (input_location, " %qD",
4506 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4507 }
4508
4509 if (did_error_intro)
4510 return error_mark_node;
4511
4512 /* [temp.class.spec]
4513
4514 The argument list of the specialization shall not be identical to
4515 the implicit argument list of the primary template. */
4516 tree main_args
4517 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4518 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4519 && (!flag_concepts
4520 || !strictly_subsumes (current_template_constraints (),
4521 get_constraints (maintmpl))))
4522 {
4523 if (!flag_concepts)
4524 error ("partial specialization %q+D does not specialize "
4525 "any template arguments", decl);
4526 else
4527 error ("partial specialization %q+D does not specialize any "
4528 "template arguments and is not more constrained than", decl);
4529 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4530 }
4531
4532 /* A partial specialization that replaces multiple parameters of the
4533 primary template with a pack expansion is less specialized for those
4534 parameters. */
4535 if (nargs < DECL_NTPARMS (maintmpl))
4536 {
4537 error ("partial specialization is not more specialized than the "
4538 "primary template because it replaces multiple parameters "
4539 "with a pack expansion");
4540 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4541 return decl;
4542 }
4543
4544 /* [temp.class.spec]
4545
4546 A partially specialized non-type argument expression shall not
4547 involve template parameters of the partial specialization except
4548 when the argument expression is a simple identifier.
4549
4550 The type of a template parameter corresponding to a specialized
4551 non-type argument shall not be dependent on a parameter of the
4552 specialization.
4553
4554 Also, we verify that pack expansions only occur at the
4555 end of the argument list. */
4556 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4557 tpd2.parms = 0;
4558 for (i = 0; i < nargs; ++i)
4559 {
4560 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4561 tree arg = TREE_VEC_ELT (inner_args, i);
4562 tree packed_args = NULL_TREE;
4563 int j, len = 1;
4564
4565 if (ARGUMENT_PACK_P (arg))
4566 {
4567 /* Extract the arguments from the argument pack. We'll be
4568 iterating over these in the following loop. */
4569 packed_args = ARGUMENT_PACK_ARGS (arg);
4570 len = TREE_VEC_LENGTH (packed_args);
4571 }
4572
4573 for (j = 0; j < len; j++)
4574 {
4575 if (packed_args)
4576 /* Get the Jth argument in the parameter pack. */
4577 arg = TREE_VEC_ELT (packed_args, j);
4578
4579 if (PACK_EXPANSION_P (arg))
4580 {
4581 /* Pack expansions must come at the end of the
4582 argument list. */
4583 if ((packed_args && j < len - 1)
4584 || (!packed_args && i < nargs - 1))
4585 {
4586 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4587 error ("parameter pack argument %qE must be at the "
4588 "end of the template argument list", arg);
4589 else
4590 error ("parameter pack argument %qT must be at the "
4591 "end of the template argument list", arg);
4592 }
4593 }
4594
4595 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4596 /* We only care about the pattern. */
4597 arg = PACK_EXPANSION_PATTERN (arg);
4598
4599 if (/* These first two lines are the `non-type' bit. */
4600 !TYPE_P (arg)
4601 && TREE_CODE (arg) != TEMPLATE_DECL
4602 /* This next two lines are the `argument expression is not just a
4603 simple identifier' condition and also the `specialized
4604 non-type argument' bit. */
4605 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4606 && !(REFERENCE_REF_P (arg)
4607 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4608 {
4609 if ((!packed_args && tpd.arg_uses_template_parms[i])
4610 || (packed_args && uses_template_parms (arg)))
4611 error ("template argument %qE involves template parameter(s)",
4612 arg);
4613 else
4614 {
4615 /* Look at the corresponding template parameter,
4616 marking which template parameters its type depends
4617 upon. */
4618 tree type = TREE_TYPE (parm);
4619
4620 if (!tpd2.parms)
4621 {
4622 /* We haven't yet initialized TPD2. Do so now. */
4623 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4624 /* The number of parameters here is the number in the
4625 main template, which, as checked in the assertion
4626 above, is NARGS. */
4627 tpd2.parms = XALLOCAVEC (int, nargs);
4628 tpd2.level =
4629 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4630 }
4631
4632 /* Mark the template parameters. But this time, we're
4633 looking for the template parameters of the main
4634 template, not in the specialization. */
4635 tpd2.current_arg = i;
4636 tpd2.arg_uses_template_parms[i] = 0;
4637 memset (tpd2.parms, 0, sizeof (int) * nargs);
4638 for_each_template_parm (type,
4639 &mark_template_parm,
4640 &tpd2,
4641 NULL,
4642 /*include_nondeduced_p=*/false);
4643
4644 if (tpd2.arg_uses_template_parms [i])
4645 {
4646 /* The type depended on some template parameters.
4647 If they are fully specialized in the
4648 specialization, that's OK. */
4649 int j;
4650 int count = 0;
4651 for (j = 0; j < nargs; ++j)
4652 if (tpd2.parms[j] != 0
4653 && tpd.arg_uses_template_parms [j])
4654 ++count;
4655 if (count != 0)
4656 error_n (input_location, count,
4657 "type %qT of template argument %qE depends "
4658 "on a template parameter",
4659 "type %qT of template argument %qE depends "
4660 "on template parameters",
4661 type,
4662 arg);
4663 }
4664 }
4665 }
4666 }
4667 }
4668
4669 /* We should only get here once. */
4670 if (TREE_CODE (decl) == TYPE_DECL)
4671 gcc_assert (!COMPLETE_TYPE_P (type));
4672
4673 // Build the template decl.
4674 tree tmpl = build_template_decl (decl, current_template_parms,
4675 DECL_MEMBER_TEMPLATE_P (maintmpl));
4676 TREE_TYPE (tmpl) = type;
4677 DECL_TEMPLATE_RESULT (tmpl) = decl;
4678 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4679 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4680 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4681
4682 if (VAR_P (decl))
4683 /* We didn't register this in check_explicit_specialization so we could
4684 wait until the constraints were set. */
4685 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4686 else
4687 associate_classtype_constraints (type);
4688
4689 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4690 = tree_cons (specargs, tmpl,
4691 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4692 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4693
4694 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4695 inst = TREE_CHAIN (inst))
4696 {
4697 tree instance = TREE_VALUE (inst);
4698 if (TYPE_P (instance)
4699 ? (COMPLETE_TYPE_P (instance)
4700 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4701 : DECL_TEMPLATE_INSTANTIATION (instance))
4702 {
4703 tree spec = most_specialized_partial_spec (instance, tf_none);
4704 tree inst_decl = (DECL_P (instance)
4705 ? instance : TYPE_NAME (instance));
4706 if (!spec)
4707 /* OK */;
4708 else if (spec == error_mark_node)
4709 permerror (input_location,
4710 "declaration of %qD ambiguates earlier template "
4711 "instantiation for %qD", decl, inst_decl);
4712 else if (TREE_VALUE (spec) == tmpl)
4713 permerror (input_location,
4714 "partial specialization of %qD after instantiation "
4715 "of %qD", decl, inst_decl);
4716 }
4717 }
4718
4719 return decl;
4720 }
4721
4722 /* PARM is a template parameter of some form; return the corresponding
4723 TEMPLATE_PARM_INDEX. */
4724
4725 static tree
4726 get_template_parm_index (tree parm)
4727 {
4728 if (TREE_CODE (parm) == PARM_DECL
4729 || TREE_CODE (parm) == CONST_DECL)
4730 parm = DECL_INITIAL (parm);
4731 else if (TREE_CODE (parm) == TYPE_DECL
4732 || TREE_CODE (parm) == TEMPLATE_DECL)
4733 parm = TREE_TYPE (parm);
4734 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4735 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4736 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4737 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4738 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4739 return parm;
4740 }
4741
4742 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4743 parameter packs used by the template parameter PARM. */
4744
4745 static void
4746 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4747 {
4748 /* A type parm can't refer to another parm. */
4749 if (TREE_CODE (parm) == TYPE_DECL)
4750 return;
4751 else if (TREE_CODE (parm) == PARM_DECL)
4752 {
4753 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4754 ppd, ppd->visited);
4755 return;
4756 }
4757
4758 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4759
4760 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4761 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4762 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4763 }
4764
4765 /* PARM is a template parameter pack. Return any parameter packs used in
4766 its type or the type of any of its template parameters. If there are
4767 any such packs, it will be instantiated into a fixed template parameter
4768 list by partial instantiation rather than be fully deduced. */
4769
4770 tree
4771 fixed_parameter_pack_p (tree parm)
4772 {
4773 /* This can only be true in a member template. */
4774 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4775 return NULL_TREE;
4776 /* This can only be true for a parameter pack. */
4777 if (!template_parameter_pack_p (parm))
4778 return NULL_TREE;
4779 /* A type parm can't refer to another parm. */
4780 if (TREE_CODE (parm) == TYPE_DECL)
4781 return NULL_TREE;
4782
4783 tree parameter_packs = NULL_TREE;
4784 struct find_parameter_pack_data ppd;
4785 ppd.parameter_packs = &parameter_packs;
4786 ppd.visited = new hash_set<tree>;
4787 ppd.type_pack_expansion_p = false;
4788
4789 fixed_parameter_pack_p_1 (parm, &ppd);
4790
4791 delete ppd.visited;
4792 return parameter_packs;
4793 }
4794
4795 /* Check that a template declaration's use of default arguments and
4796 parameter packs is not invalid. Here, PARMS are the template
4797 parameters. IS_PRIMARY is true if DECL is the thing declared by
4798 a primary template. IS_PARTIAL is true if DECL is a partial
4799 specialization.
4800
4801 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4802 declaration (but not a definition); 1 indicates a declaration, 2
4803 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4804 emitted for extraneous default arguments.
4805
4806 Returns TRUE if there were no errors found, FALSE otherwise. */
4807
4808 bool
4809 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4810 bool is_partial, int is_friend_decl)
4811 {
4812 const char *msg;
4813 int last_level_to_check;
4814 tree parm_level;
4815 bool no_errors = true;
4816
4817 /* [temp.param]
4818
4819 A default template-argument shall not be specified in a
4820 function template declaration or a function template definition, nor
4821 in the template-parameter-list of the definition of a member of a
4822 class template. */
4823
4824 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4825 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4826 /* You can't have a function template declaration in a local
4827 scope, nor you can you define a member of a class template in a
4828 local scope. */
4829 return true;
4830
4831 if ((TREE_CODE (decl) == TYPE_DECL
4832 && TREE_TYPE (decl)
4833 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4834 || (TREE_CODE (decl) == FUNCTION_DECL
4835 && LAMBDA_FUNCTION_P (decl)))
4836 /* A lambda doesn't have an explicit declaration; don't complain
4837 about the parms of the enclosing class. */
4838 return true;
4839
4840 if (current_class_type
4841 && !TYPE_BEING_DEFINED (current_class_type)
4842 && DECL_LANG_SPECIFIC (decl)
4843 && DECL_DECLARES_FUNCTION_P (decl)
4844 /* If this is either a friend defined in the scope of the class
4845 or a member function. */
4846 && (DECL_FUNCTION_MEMBER_P (decl)
4847 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4848 : DECL_FRIEND_CONTEXT (decl)
4849 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4850 : false)
4851 /* And, if it was a member function, it really was defined in
4852 the scope of the class. */
4853 && (!DECL_FUNCTION_MEMBER_P (decl)
4854 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4855 /* We already checked these parameters when the template was
4856 declared, so there's no need to do it again now. This function
4857 was defined in class scope, but we're processing its body now
4858 that the class is complete. */
4859 return true;
4860
4861 /* Core issue 226 (C++0x only): the following only applies to class
4862 templates. */
4863 if (is_primary
4864 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4865 {
4866 /* [temp.param]
4867
4868 If a template-parameter has a default template-argument, all
4869 subsequent template-parameters shall have a default
4870 template-argument supplied. */
4871 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4872 {
4873 tree inner_parms = TREE_VALUE (parm_level);
4874 int ntparms = TREE_VEC_LENGTH (inner_parms);
4875 int seen_def_arg_p = 0;
4876 int i;
4877
4878 for (i = 0; i < ntparms; ++i)
4879 {
4880 tree parm = TREE_VEC_ELT (inner_parms, i);
4881
4882 if (parm == error_mark_node)
4883 continue;
4884
4885 if (TREE_PURPOSE (parm))
4886 seen_def_arg_p = 1;
4887 else if (seen_def_arg_p
4888 && !template_parameter_pack_p (TREE_VALUE (parm)))
4889 {
4890 error ("no default argument for %qD", TREE_VALUE (parm));
4891 /* For better subsequent error-recovery, we indicate that
4892 there should have been a default argument. */
4893 TREE_PURPOSE (parm) = error_mark_node;
4894 no_errors = false;
4895 }
4896 else if (!is_partial
4897 && !is_friend_decl
4898 /* Don't complain about an enclosing partial
4899 specialization. */
4900 && parm_level == parms
4901 && TREE_CODE (decl) == TYPE_DECL
4902 && i < ntparms - 1
4903 && template_parameter_pack_p (TREE_VALUE (parm))
4904 /* A fixed parameter pack will be partially
4905 instantiated into a fixed length list. */
4906 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4907 {
4908 /* A primary class template can only have one
4909 parameter pack, at the end of the template
4910 parameter list. */
4911
4912 error ("parameter pack %q+D must be at the end of the"
4913 " template parameter list", TREE_VALUE (parm));
4914
4915 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4916 = error_mark_node;
4917 no_errors = false;
4918 }
4919 }
4920 }
4921 }
4922
4923 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4924 || is_partial
4925 || !is_primary
4926 || is_friend_decl)
4927 /* For an ordinary class template, default template arguments are
4928 allowed at the innermost level, e.g.:
4929 template <class T = int>
4930 struct S {};
4931 but, in a partial specialization, they're not allowed even
4932 there, as we have in [temp.class.spec]:
4933
4934 The template parameter list of a specialization shall not
4935 contain default template argument values.
4936
4937 So, for a partial specialization, or for a function template
4938 (in C++98/C++03), we look at all of them. */
4939 ;
4940 else
4941 /* But, for a primary class template that is not a partial
4942 specialization we look at all template parameters except the
4943 innermost ones. */
4944 parms = TREE_CHAIN (parms);
4945
4946 /* Figure out what error message to issue. */
4947 if (is_friend_decl == 2)
4948 msg = G_("default template arguments may not be used in function template "
4949 "friend re-declaration");
4950 else if (is_friend_decl)
4951 msg = G_("default template arguments may not be used in function template "
4952 "friend declarations");
4953 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4954 msg = G_("default template arguments may not be used in function templates "
4955 "without -std=c++11 or -std=gnu++11");
4956 else if (is_partial)
4957 msg = G_("default template arguments may not be used in "
4958 "partial specializations");
4959 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4960 msg = G_("default argument for template parameter for class enclosing %qD");
4961 else
4962 /* Per [temp.param]/9, "A default template-argument shall not be
4963 specified in the template-parameter-lists of the definition of
4964 a member of a class template that appears outside of the member's
4965 class.", thus if we aren't handling a member of a class template
4966 there is no need to examine the parameters. */
4967 return true;
4968
4969 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4970 /* If we're inside a class definition, there's no need to
4971 examine the parameters to the class itself. On the one
4972 hand, they will be checked when the class is defined, and,
4973 on the other, default arguments are valid in things like:
4974 template <class T = double>
4975 struct S { template <class U> void f(U); };
4976 Here the default argument for `S' has no bearing on the
4977 declaration of `f'. */
4978 last_level_to_check = template_class_depth (current_class_type) + 1;
4979 else
4980 /* Check everything. */
4981 last_level_to_check = 0;
4982
4983 for (parm_level = parms;
4984 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4985 parm_level = TREE_CHAIN (parm_level))
4986 {
4987 tree inner_parms = TREE_VALUE (parm_level);
4988 int i;
4989 int ntparms;
4990
4991 ntparms = TREE_VEC_LENGTH (inner_parms);
4992 for (i = 0; i < ntparms; ++i)
4993 {
4994 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4995 continue;
4996
4997 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4998 {
4999 if (msg)
5000 {
5001 no_errors = false;
5002 if (is_friend_decl == 2)
5003 return no_errors;
5004
5005 error (msg, decl);
5006 msg = 0;
5007 }
5008
5009 /* Clear out the default argument so that we are not
5010 confused later. */
5011 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5012 }
5013 }
5014
5015 /* At this point, if we're still interested in issuing messages,
5016 they must apply to classes surrounding the object declared. */
5017 if (msg)
5018 msg = G_("default argument for template parameter for class "
5019 "enclosing %qD");
5020 }
5021
5022 return no_errors;
5023 }
5024
5025 /* Worker for push_template_decl_real, called via
5026 for_each_template_parm. DATA is really an int, indicating the
5027 level of the parameters we are interested in. If T is a template
5028 parameter of that level, return nonzero. */
5029
5030 static int
5031 template_parm_this_level_p (tree t, void* data)
5032 {
5033 int this_level = *(int *)data;
5034 int level;
5035
5036 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5037 level = TEMPLATE_PARM_LEVEL (t);
5038 else
5039 level = TEMPLATE_TYPE_LEVEL (t);
5040 return level == this_level;
5041 }
5042
5043 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5044 parameters given by current_template_args, or reuses a
5045 previously existing one, if appropriate. Returns the DECL, or an
5046 equivalent one, if it is replaced via a call to duplicate_decls.
5047
5048 If IS_FRIEND is true, DECL is a friend declaration. */
5049
5050 tree
5051 push_template_decl_real (tree decl, bool is_friend)
5052 {
5053 tree tmpl;
5054 tree args;
5055 tree info;
5056 tree ctx;
5057 bool is_primary;
5058 bool is_partial;
5059 int new_template_p = 0;
5060 /* True if the template is a member template, in the sense of
5061 [temp.mem]. */
5062 bool member_template_p = false;
5063
5064 if (decl == error_mark_node || !current_template_parms)
5065 return error_mark_node;
5066
5067 /* See if this is a partial specialization. */
5068 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5069 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5070 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5071 || (VAR_P (decl)
5072 && DECL_LANG_SPECIFIC (decl)
5073 && DECL_TEMPLATE_SPECIALIZATION (decl)
5074 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5075
5076 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5077 is_friend = true;
5078
5079 if (is_friend)
5080 /* For a friend, we want the context of the friend function, not
5081 the type of which it is a friend. */
5082 ctx = CP_DECL_CONTEXT (decl);
5083 else if (CP_DECL_CONTEXT (decl)
5084 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5085 /* In the case of a virtual function, we want the class in which
5086 it is defined. */
5087 ctx = CP_DECL_CONTEXT (decl);
5088 else
5089 /* Otherwise, if we're currently defining some class, the DECL
5090 is assumed to be a member of the class. */
5091 ctx = current_scope ();
5092
5093 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5094 ctx = NULL_TREE;
5095
5096 if (!DECL_CONTEXT (decl))
5097 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5098
5099 /* See if this is a primary template. */
5100 if (is_friend && ctx
5101 && uses_template_parms_level (ctx, processing_template_decl))
5102 /* A friend template that specifies a class context, i.e.
5103 template <typename T> friend void A<T>::f();
5104 is not primary. */
5105 is_primary = false;
5106 else if (TREE_CODE (decl) == TYPE_DECL
5107 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5108 is_primary = false;
5109 else
5110 is_primary = template_parm_scope_p ();
5111
5112 if (is_primary)
5113 {
5114 warning (OPT_Wtemplates, "template %qD declared", decl);
5115
5116 if (DECL_CLASS_SCOPE_P (decl))
5117 member_template_p = true;
5118 if (TREE_CODE (decl) == TYPE_DECL
5119 && anon_aggrname_p (DECL_NAME (decl)))
5120 {
5121 error ("template class without a name");
5122 return error_mark_node;
5123 }
5124 else if (TREE_CODE (decl) == FUNCTION_DECL)
5125 {
5126 if (member_template_p)
5127 {
5128 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5129 error ("member template %qD may not have virt-specifiers", decl);
5130 }
5131 if (DECL_DESTRUCTOR_P (decl))
5132 {
5133 /* [temp.mem]
5134
5135 A destructor shall not be a member template. */
5136 error ("destructor %qD declared as member template", decl);
5137 return error_mark_node;
5138 }
5139 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5140 && (!prototype_p (TREE_TYPE (decl))
5141 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5142 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5143 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5144 == void_list_node)))
5145 {
5146 /* [basic.stc.dynamic.allocation]
5147
5148 An allocation function can be a function
5149 template. ... Template allocation functions shall
5150 have two or more parameters. */
5151 error ("invalid template declaration of %qD", decl);
5152 return error_mark_node;
5153 }
5154 }
5155 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5156 && CLASS_TYPE_P (TREE_TYPE (decl)))
5157 /* OK */;
5158 else if (TREE_CODE (decl) == TYPE_DECL
5159 && TYPE_DECL_ALIAS_P (decl))
5160 /* alias-declaration */
5161 gcc_assert (!DECL_ARTIFICIAL (decl));
5162 else if (VAR_P (decl))
5163 /* C++14 variable template. */;
5164 else
5165 {
5166 error ("template declaration of %q#D", decl);
5167 return error_mark_node;
5168 }
5169 }
5170
5171 /* Check to see that the rules regarding the use of default
5172 arguments are not being violated. */
5173 check_default_tmpl_args (decl, current_template_parms,
5174 is_primary, is_partial, /*is_friend_decl=*/0);
5175
5176 /* Ensure that there are no parameter packs in the type of this
5177 declaration that have not been expanded. */
5178 if (TREE_CODE (decl) == FUNCTION_DECL)
5179 {
5180 /* Check each of the arguments individually to see if there are
5181 any bare parameter packs. */
5182 tree type = TREE_TYPE (decl);
5183 tree arg = DECL_ARGUMENTS (decl);
5184 tree argtype = TYPE_ARG_TYPES (type);
5185
5186 while (arg && argtype)
5187 {
5188 if (!DECL_PACK_P (arg)
5189 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5190 {
5191 /* This is a PARM_DECL that contains unexpanded parameter
5192 packs. We have already complained about this in the
5193 check_for_bare_parameter_packs call, so just replace
5194 these types with ERROR_MARK_NODE. */
5195 TREE_TYPE (arg) = error_mark_node;
5196 TREE_VALUE (argtype) = error_mark_node;
5197 }
5198
5199 arg = DECL_CHAIN (arg);
5200 argtype = TREE_CHAIN (argtype);
5201 }
5202
5203 /* Check for bare parameter packs in the return type and the
5204 exception specifiers. */
5205 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5206 /* Errors were already issued, set return type to int
5207 as the frontend doesn't expect error_mark_node as
5208 the return type. */
5209 TREE_TYPE (type) = integer_type_node;
5210 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5211 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5212 }
5213 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5214 && TYPE_DECL_ALIAS_P (decl))
5215 ? DECL_ORIGINAL_TYPE (decl)
5216 : TREE_TYPE (decl)))
5217 {
5218 TREE_TYPE (decl) = error_mark_node;
5219 return error_mark_node;
5220 }
5221
5222 if (is_partial)
5223 return process_partial_specialization (decl);
5224
5225 args = current_template_args ();
5226
5227 if (!ctx
5228 || TREE_CODE (ctx) == FUNCTION_DECL
5229 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5230 || (TREE_CODE (decl) == TYPE_DECL
5231 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5232 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5233 {
5234 if (DECL_LANG_SPECIFIC (decl)
5235 && DECL_TEMPLATE_INFO (decl)
5236 && DECL_TI_TEMPLATE (decl))
5237 tmpl = DECL_TI_TEMPLATE (decl);
5238 /* If DECL is a TYPE_DECL for a class-template, then there won't
5239 be DECL_LANG_SPECIFIC. The information equivalent to
5240 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5241 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5242 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5243 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5244 {
5245 /* Since a template declaration already existed for this
5246 class-type, we must be redeclaring it here. Make sure
5247 that the redeclaration is valid. */
5248 redeclare_class_template (TREE_TYPE (decl),
5249 current_template_parms,
5250 current_template_constraints ());
5251 /* We don't need to create a new TEMPLATE_DECL; just use the
5252 one we already had. */
5253 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5254 }
5255 else
5256 {
5257 tmpl = build_template_decl (decl, current_template_parms,
5258 member_template_p);
5259 new_template_p = 1;
5260
5261 if (DECL_LANG_SPECIFIC (decl)
5262 && DECL_TEMPLATE_SPECIALIZATION (decl))
5263 {
5264 /* A specialization of a member template of a template
5265 class. */
5266 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5267 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5268 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5269 }
5270 }
5271 }
5272 else
5273 {
5274 tree a, t, current, parms;
5275 int i;
5276 tree tinfo = get_template_info (decl);
5277
5278 if (!tinfo)
5279 {
5280 error ("template definition of non-template %q#D", decl);
5281 return error_mark_node;
5282 }
5283
5284 tmpl = TI_TEMPLATE (tinfo);
5285
5286 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5287 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5288 && DECL_TEMPLATE_SPECIALIZATION (decl)
5289 && DECL_MEMBER_TEMPLATE_P (tmpl))
5290 {
5291 tree new_tmpl;
5292
5293 /* The declaration is a specialization of a member
5294 template, declared outside the class. Therefore, the
5295 innermost template arguments will be NULL, so we
5296 replace them with the arguments determined by the
5297 earlier call to check_explicit_specialization. */
5298 args = DECL_TI_ARGS (decl);
5299
5300 new_tmpl
5301 = build_template_decl (decl, current_template_parms,
5302 member_template_p);
5303 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5304 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5305 DECL_TI_TEMPLATE (decl) = new_tmpl;
5306 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5307 DECL_TEMPLATE_INFO (new_tmpl)
5308 = build_template_info (tmpl, args);
5309
5310 register_specialization (new_tmpl,
5311 most_general_template (tmpl),
5312 args,
5313 is_friend, 0);
5314 return decl;
5315 }
5316
5317 /* Make sure the template headers we got make sense. */
5318
5319 parms = DECL_TEMPLATE_PARMS (tmpl);
5320 i = TMPL_PARMS_DEPTH (parms);
5321 if (TMPL_ARGS_DEPTH (args) != i)
5322 {
5323 error ("expected %d levels of template parms for %q#D, got %d",
5324 i, decl, TMPL_ARGS_DEPTH (args));
5325 DECL_INTERFACE_KNOWN (decl) = 1;
5326 return error_mark_node;
5327 }
5328 else
5329 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5330 {
5331 a = TMPL_ARGS_LEVEL (args, i);
5332 t = INNERMOST_TEMPLATE_PARMS (parms);
5333
5334 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5335 {
5336 if (current == decl)
5337 error ("got %d template parameters for %q#D",
5338 TREE_VEC_LENGTH (a), decl);
5339 else
5340 error ("got %d template parameters for %q#T",
5341 TREE_VEC_LENGTH (a), current);
5342 error (" but %d required", TREE_VEC_LENGTH (t));
5343 /* Avoid crash in import_export_decl. */
5344 DECL_INTERFACE_KNOWN (decl) = 1;
5345 return error_mark_node;
5346 }
5347
5348 if (current == decl)
5349 current = ctx;
5350 else if (current == NULL_TREE)
5351 /* Can happen in erroneous input. */
5352 break;
5353 else
5354 current = get_containing_scope (current);
5355 }
5356
5357 /* Check that the parms are used in the appropriate qualifying scopes
5358 in the declarator. */
5359 if (!comp_template_args
5360 (TI_ARGS (tinfo),
5361 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5362 {
5363 error ("\
5364 template arguments to %qD do not match original template %qD",
5365 decl, DECL_TEMPLATE_RESULT (tmpl));
5366 if (!uses_template_parms (TI_ARGS (tinfo)))
5367 inform (input_location, "use template<> for an explicit specialization");
5368 /* Avoid crash in import_export_decl. */
5369 DECL_INTERFACE_KNOWN (decl) = 1;
5370 return error_mark_node;
5371 }
5372 }
5373
5374 DECL_TEMPLATE_RESULT (tmpl) = decl;
5375 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5376
5377 /* Push template declarations for global functions and types. Note
5378 that we do not try to push a global template friend declared in a
5379 template class; such a thing may well depend on the template
5380 parameters of the class. */
5381 if (new_template_p && !ctx
5382 && !(is_friend && template_class_depth (current_class_type) > 0))
5383 {
5384 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5385 if (tmpl == error_mark_node)
5386 return error_mark_node;
5387
5388 /* Hide template friend classes that haven't been declared yet. */
5389 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5390 {
5391 DECL_ANTICIPATED (tmpl) = 1;
5392 DECL_FRIEND_P (tmpl) = 1;
5393 }
5394 }
5395
5396 if (is_primary)
5397 {
5398 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5399 int i;
5400
5401 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5402 if (DECL_CONV_FN_P (tmpl))
5403 {
5404 int depth = TMPL_PARMS_DEPTH (parms);
5405
5406 /* It is a conversion operator. See if the type converted to
5407 depends on innermost template operands. */
5408
5409 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5410 depth))
5411 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5412 }
5413
5414 /* Give template template parms a DECL_CONTEXT of the template
5415 for which they are a parameter. */
5416 parms = INNERMOST_TEMPLATE_PARMS (parms);
5417 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5418 {
5419 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5420 if (TREE_CODE (parm) == TEMPLATE_DECL)
5421 DECL_CONTEXT (parm) = tmpl;
5422 }
5423
5424 if (TREE_CODE (decl) == TYPE_DECL
5425 && TYPE_DECL_ALIAS_P (decl)
5426 && complex_alias_template_p (tmpl))
5427 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5428 }
5429
5430 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5431 back to its most general template. If TMPL is a specialization,
5432 ARGS may only have the innermost set of arguments. Add the missing
5433 argument levels if necessary. */
5434 if (DECL_TEMPLATE_INFO (tmpl))
5435 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5436
5437 info = build_template_info (tmpl, args);
5438
5439 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5440 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5441 else
5442 {
5443 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5444 retrofit_lang_decl (decl);
5445 if (DECL_LANG_SPECIFIC (decl))
5446 DECL_TEMPLATE_INFO (decl) = info;
5447 }
5448
5449 if (flag_implicit_templates
5450 && !is_friend
5451 && TREE_PUBLIC (decl)
5452 && VAR_OR_FUNCTION_DECL_P (decl))
5453 /* Set DECL_COMDAT on template instantiations; if we force
5454 them to be emitted by explicit instantiation or -frepo,
5455 mark_needed will tell cgraph to do the right thing. */
5456 DECL_COMDAT (decl) = true;
5457
5458 return DECL_TEMPLATE_RESULT (tmpl);
5459 }
5460
5461 tree
5462 push_template_decl (tree decl)
5463 {
5464 return push_template_decl_real (decl, false);
5465 }
5466
5467 /* FN is an inheriting constructor that inherits from the constructor
5468 template INHERITED; turn FN into a constructor template with a matching
5469 template header. */
5470
5471 tree
5472 add_inherited_template_parms (tree fn, tree inherited)
5473 {
5474 tree inner_parms
5475 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5476 inner_parms = copy_node (inner_parms);
5477 tree parms
5478 = tree_cons (size_int (processing_template_decl + 1),
5479 inner_parms, current_template_parms);
5480 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5481 tree args = template_parms_to_args (parms);
5482 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5483 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5484 DECL_TEMPLATE_RESULT (tmpl) = fn;
5485 DECL_ARTIFICIAL (tmpl) = true;
5486 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5487 return tmpl;
5488 }
5489
5490 /* Called when a class template TYPE is redeclared with the indicated
5491 template PARMS, e.g.:
5492
5493 template <class T> struct S;
5494 template <class T> struct S {}; */
5495
5496 bool
5497 redeclare_class_template (tree type, tree parms, tree cons)
5498 {
5499 tree tmpl;
5500 tree tmpl_parms;
5501 int i;
5502
5503 if (!TYPE_TEMPLATE_INFO (type))
5504 {
5505 error ("%qT is not a template type", type);
5506 return false;
5507 }
5508
5509 tmpl = TYPE_TI_TEMPLATE (type);
5510 if (!PRIMARY_TEMPLATE_P (tmpl))
5511 /* The type is nested in some template class. Nothing to worry
5512 about here; there are no new template parameters for the nested
5513 type. */
5514 return true;
5515
5516 if (!parms)
5517 {
5518 error ("template specifiers not specified in declaration of %qD",
5519 tmpl);
5520 return false;
5521 }
5522
5523 parms = INNERMOST_TEMPLATE_PARMS (parms);
5524 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5525
5526 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5527 {
5528 error_n (input_location, TREE_VEC_LENGTH (parms),
5529 "redeclared with %d template parameter",
5530 "redeclared with %d template parameters",
5531 TREE_VEC_LENGTH (parms));
5532 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5533 "previous declaration %qD used %d template parameter",
5534 "previous declaration %qD used %d template parameters",
5535 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5536 return false;
5537 }
5538
5539 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5540 {
5541 tree tmpl_parm;
5542 tree parm;
5543 tree tmpl_default;
5544 tree parm_default;
5545
5546 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5547 || TREE_VEC_ELT (parms, i) == error_mark_node)
5548 continue;
5549
5550 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5551 if (error_operand_p (tmpl_parm))
5552 return false;
5553
5554 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5555 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5556 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5557
5558 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5559 TEMPLATE_DECL. */
5560 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5561 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5562 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5563 || (TREE_CODE (tmpl_parm) != PARM_DECL
5564 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5565 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5566 || (TREE_CODE (tmpl_parm) == PARM_DECL
5567 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5568 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5569 {
5570 error ("template parameter %q+#D", tmpl_parm);
5571 error ("redeclared here as %q#D", parm);
5572 return false;
5573 }
5574
5575 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5576 {
5577 /* We have in [temp.param]:
5578
5579 A template-parameter may not be given default arguments
5580 by two different declarations in the same scope. */
5581 error_at (input_location, "redefinition of default argument for %q#D", parm);
5582 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5583 "original definition appeared here");
5584 return false;
5585 }
5586
5587 if (parm_default != NULL_TREE)
5588 /* Update the previous template parameters (which are the ones
5589 that will really count) with the new default value. */
5590 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5591 else if (tmpl_default != NULL_TREE)
5592 /* Update the new parameters, too; they'll be used as the
5593 parameters for any members. */
5594 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5595
5596 /* Give each template template parm in this redeclaration a
5597 DECL_CONTEXT of the template for which they are a parameter. */
5598 if (TREE_CODE (parm) == TEMPLATE_DECL)
5599 {
5600 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5601 DECL_CONTEXT (parm) = tmpl;
5602 }
5603 }
5604
5605 // Cannot redeclare a class template with a different set of constraints.
5606 if (!equivalent_constraints (get_constraints (tmpl), cons))
5607 {
5608 error_at (input_location, "redeclaration %q#D with different "
5609 "constraints", tmpl);
5610 inform (DECL_SOURCE_LOCATION (tmpl),
5611 "original declaration appeared here");
5612 }
5613
5614 return true;
5615 }
5616
5617 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5618 to be used when the caller has already checked
5619 (processing_template_decl
5620 && !instantiation_dependent_expression_p (expr)
5621 && potential_constant_expression (expr))
5622 and cleared processing_template_decl. */
5623
5624 tree
5625 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5626 {
5627 return tsubst_copy_and_build (expr,
5628 /*args=*/NULL_TREE,
5629 complain,
5630 /*in_decl=*/NULL_TREE,
5631 /*function_p=*/false,
5632 /*integral_constant_expression_p=*/true);
5633 }
5634
5635 /* Simplify EXPR if it is a non-dependent expression. Returns the
5636 (possibly simplified) expression. */
5637
5638 tree
5639 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5640 {
5641 if (expr == NULL_TREE)
5642 return NULL_TREE;
5643
5644 /* If we're in a template, but EXPR isn't value dependent, simplify
5645 it. We're supposed to treat:
5646
5647 template <typename T> void f(T[1 + 1]);
5648 template <typename T> void f(T[2]);
5649
5650 as two declarations of the same function, for example. */
5651 if (processing_template_decl
5652 && !instantiation_dependent_expression_p (expr)
5653 && potential_constant_expression (expr))
5654 {
5655 processing_template_decl_sentinel s;
5656 expr = instantiate_non_dependent_expr_internal (expr, complain);
5657 }
5658 return expr;
5659 }
5660
5661 tree
5662 instantiate_non_dependent_expr (tree expr)
5663 {
5664 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5665 }
5666
5667 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5668 an uninstantiated expression. */
5669
5670 tree
5671 instantiate_non_dependent_or_null (tree expr)
5672 {
5673 if (expr == NULL_TREE)
5674 return NULL_TREE;
5675 if (processing_template_decl)
5676 {
5677 if (instantiation_dependent_expression_p (expr)
5678 || !potential_constant_expression (expr))
5679 expr = NULL_TREE;
5680 else
5681 {
5682 processing_template_decl_sentinel s;
5683 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5684 }
5685 }
5686 return expr;
5687 }
5688
5689 /* True iff T is a specialization of a variable template. */
5690
5691 bool
5692 variable_template_specialization_p (tree t)
5693 {
5694 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5695 return false;
5696 tree tmpl = DECL_TI_TEMPLATE (t);
5697 return variable_template_p (tmpl);
5698 }
5699
5700 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5701 template declaration, or a TYPE_DECL for an alias declaration. */
5702
5703 bool
5704 alias_type_or_template_p (tree t)
5705 {
5706 if (t == NULL_TREE)
5707 return false;
5708 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5709 || (TYPE_P (t)
5710 && TYPE_NAME (t)
5711 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5712 || DECL_ALIAS_TEMPLATE_P (t));
5713 }
5714
5715 /* Return TRUE iff T is a specialization of an alias template. */
5716
5717 bool
5718 alias_template_specialization_p (const_tree t)
5719 {
5720 /* It's an alias template specialization if it's an alias and its
5721 TYPE_NAME is a specialization of a primary template. */
5722 if (TYPE_ALIAS_P (t))
5723 {
5724 tree name = TYPE_NAME (t);
5725 if (DECL_LANG_SPECIFIC (name))
5726 if (tree ti = DECL_TEMPLATE_INFO (name))
5727 {
5728 tree tmpl = TI_TEMPLATE (ti);
5729 return PRIMARY_TEMPLATE_P (tmpl);
5730 }
5731 }
5732 return false;
5733 }
5734
5735 /* An alias template is complex from a SFINAE perspective if a template-id
5736 using that alias can be ill-formed when the expansion is not, as with
5737 the void_t template. We determine this by checking whether the
5738 expansion for the alias template uses all its template parameters. */
5739
5740 struct uses_all_template_parms_data
5741 {
5742 int level;
5743 bool *seen;
5744 };
5745
5746 static int
5747 uses_all_template_parms_r (tree t, void *data_)
5748 {
5749 struct uses_all_template_parms_data &data
5750 = *(struct uses_all_template_parms_data*)data_;
5751 tree idx = get_template_parm_index (t);
5752
5753 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5754 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5755 return 0;
5756 }
5757
5758 static bool
5759 complex_alias_template_p (const_tree tmpl)
5760 {
5761 struct uses_all_template_parms_data data;
5762 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5763 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5764 data.level = TMPL_PARMS_DEPTH (parms);
5765 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5766 data.seen = XALLOCAVEC (bool, len);
5767 for (int i = 0; i < len; ++i)
5768 data.seen[i] = false;
5769
5770 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5771 for (int i = 0; i < len; ++i)
5772 if (!data.seen[i])
5773 return true;
5774 return false;
5775 }
5776
5777 /* Return TRUE iff T is a specialization of a complex alias template with
5778 dependent template-arguments. */
5779
5780 bool
5781 dependent_alias_template_spec_p (const_tree t)
5782 {
5783 return (alias_template_specialization_p (t)
5784 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5785 && (any_dependent_template_arguments_p
5786 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5787 }
5788
5789 /* Return the number of innermost template parameters in TMPL. */
5790
5791 static int
5792 num_innermost_template_parms (tree tmpl)
5793 {
5794 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5795 return TREE_VEC_LENGTH (parms);
5796 }
5797
5798 /* Return either TMPL or another template that it is equivalent to under DR
5799 1286: An alias that just changes the name of a template is equivalent to
5800 the other template. */
5801
5802 static tree
5803 get_underlying_template (tree tmpl)
5804 {
5805 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5806 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5807 {
5808 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5809 if (TYPE_TEMPLATE_INFO (result))
5810 {
5811 tree sub = TYPE_TI_TEMPLATE (result);
5812 if (PRIMARY_TEMPLATE_P (sub)
5813 && (num_innermost_template_parms (tmpl)
5814 == num_innermost_template_parms (sub)))
5815 {
5816 tree alias_args = INNERMOST_TEMPLATE_ARGS
5817 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5818 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5819 break;
5820 /* The alias type is equivalent to the pattern of the
5821 underlying template, so strip the alias. */
5822 tmpl = sub;
5823 continue;
5824 }
5825 }
5826 break;
5827 }
5828 return tmpl;
5829 }
5830
5831 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5832 must be a function or a pointer-to-function type, as specified
5833 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5834 and check that the resulting function has external linkage. */
5835
5836 static tree
5837 convert_nontype_argument_function (tree type, tree expr,
5838 tsubst_flags_t complain)
5839 {
5840 tree fns = expr;
5841 tree fn, fn_no_ptr;
5842 linkage_kind linkage;
5843
5844 fn = instantiate_type (type, fns, tf_none);
5845 if (fn == error_mark_node)
5846 return error_mark_node;
5847
5848 fn_no_ptr = fn;
5849 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5850 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5851 if (BASELINK_P (fn_no_ptr))
5852 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5853
5854 /* [temp.arg.nontype]/1
5855
5856 A template-argument for a non-type, non-template template-parameter
5857 shall be one of:
5858 [...]
5859 -- the address of an object or function with external [C++11: or
5860 internal] linkage. */
5861
5862 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5863 {
5864 if (complain & tf_error)
5865 {
5866 error ("%qE is not a valid template argument for type %qT",
5867 expr, type);
5868 if (TYPE_PTR_P (type))
5869 error ("it must be the address of a function with "
5870 "external linkage");
5871 else
5872 error ("it must be the name of a function with "
5873 "external linkage");
5874 }
5875 return NULL_TREE;
5876 }
5877
5878 linkage = decl_linkage (fn_no_ptr);
5879 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5880 {
5881 if (complain & tf_error)
5882 {
5883 if (cxx_dialect >= cxx11)
5884 error ("%qE is not a valid template argument for type %qT "
5885 "because %qD has no linkage",
5886 expr, type, fn_no_ptr);
5887 else
5888 error ("%qE is not a valid template argument for type %qT "
5889 "because %qD does not have external linkage",
5890 expr, type, fn_no_ptr);
5891 }
5892 return NULL_TREE;
5893 }
5894
5895 return fn;
5896 }
5897
5898 /* Subroutine of convert_nontype_argument.
5899 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5900 Emit an error otherwise. */
5901
5902 static bool
5903 check_valid_ptrmem_cst_expr (tree type, tree expr,
5904 tsubst_flags_t complain)
5905 {
5906 STRIP_NOPS (expr);
5907 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5908 return true;
5909 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5910 return true;
5911 if (processing_template_decl
5912 && TREE_CODE (expr) == ADDR_EXPR
5913 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5914 return true;
5915 if (complain & tf_error)
5916 {
5917 error ("%qE is not a valid template argument for type %qT",
5918 expr, type);
5919 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5920 }
5921 return false;
5922 }
5923
5924 /* Returns TRUE iff the address of OP is value-dependent.
5925
5926 14.6.2.4 [temp.dep.temp]:
5927 A non-integral non-type template-argument is dependent if its type is
5928 dependent or it has either of the following forms
5929 qualified-id
5930 & qualified-id
5931 and contains a nested-name-specifier which specifies a class-name that
5932 names a dependent type.
5933
5934 We generalize this to just say that the address of a member of a
5935 dependent class is value-dependent; the above doesn't cover the
5936 address of a static data member named with an unqualified-id. */
5937
5938 static bool
5939 has_value_dependent_address (tree op)
5940 {
5941 /* We could use get_inner_reference here, but there's no need;
5942 this is only relevant for template non-type arguments, which
5943 can only be expressed as &id-expression. */
5944 if (DECL_P (op))
5945 {
5946 tree ctx = CP_DECL_CONTEXT (op);
5947 if (TYPE_P (ctx) && dependent_type_p (ctx))
5948 return true;
5949 }
5950
5951 return false;
5952 }
5953
5954 /* The next set of functions are used for providing helpful explanatory
5955 diagnostics for failed overload resolution. Their messages should be
5956 indented by two spaces for consistency with the messages in
5957 call.c */
5958
5959 static int
5960 unify_success (bool /*explain_p*/)
5961 {
5962 return 0;
5963 }
5964
5965 static int
5966 unify_parameter_deduction_failure (bool explain_p, tree parm)
5967 {
5968 if (explain_p)
5969 inform (input_location,
5970 " couldn't deduce template parameter %qD", parm);
5971 return 1;
5972 }
5973
5974 static int
5975 unify_invalid (bool /*explain_p*/)
5976 {
5977 return 1;
5978 }
5979
5980 static int
5981 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5982 {
5983 if (explain_p)
5984 inform (input_location,
5985 " types %qT and %qT have incompatible cv-qualifiers",
5986 parm, arg);
5987 return 1;
5988 }
5989
5990 static int
5991 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5992 {
5993 if (explain_p)
5994 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5995 return 1;
5996 }
5997
5998 static int
5999 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6000 {
6001 if (explain_p)
6002 inform (input_location,
6003 " template parameter %qD is not a parameter pack, but "
6004 "argument %qD is",
6005 parm, arg);
6006 return 1;
6007 }
6008
6009 static int
6010 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6011 {
6012 if (explain_p)
6013 inform (input_location,
6014 " template argument %qE does not match "
6015 "pointer-to-member constant %qE",
6016 arg, parm);
6017 return 1;
6018 }
6019
6020 static int
6021 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6022 {
6023 if (explain_p)
6024 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6025 return 1;
6026 }
6027
6028 static int
6029 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6030 {
6031 if (explain_p)
6032 inform (input_location,
6033 " inconsistent parameter pack deduction with %qT and %qT",
6034 old_arg, new_arg);
6035 return 1;
6036 }
6037
6038 static int
6039 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6040 {
6041 if (explain_p)
6042 {
6043 if (TYPE_P (parm))
6044 inform (input_location,
6045 " deduced conflicting types for parameter %qT (%qT and %qT)",
6046 parm, first, second);
6047 else
6048 inform (input_location,
6049 " deduced conflicting values for non-type parameter "
6050 "%qE (%qE and %qE)", parm, first, second);
6051 }
6052 return 1;
6053 }
6054
6055 static int
6056 unify_vla_arg (bool explain_p, tree arg)
6057 {
6058 if (explain_p)
6059 inform (input_location,
6060 " variable-sized array type %qT is not "
6061 "a valid template argument",
6062 arg);
6063 return 1;
6064 }
6065
6066 static int
6067 unify_method_type_error (bool explain_p, tree arg)
6068 {
6069 if (explain_p)
6070 inform (input_location,
6071 " member function type %qT is not a valid template argument",
6072 arg);
6073 return 1;
6074 }
6075
6076 static int
6077 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6078 {
6079 if (explain_p)
6080 {
6081 if (least_p)
6082 inform_n (input_location, wanted,
6083 " candidate expects at least %d argument, %d provided",
6084 " candidate expects at least %d arguments, %d provided",
6085 wanted, have);
6086 else
6087 inform_n (input_location, wanted,
6088 " candidate expects %d argument, %d provided",
6089 " candidate expects %d arguments, %d provided",
6090 wanted, have);
6091 }
6092 return 1;
6093 }
6094
6095 static int
6096 unify_too_many_arguments (bool explain_p, int have, int wanted)
6097 {
6098 return unify_arity (explain_p, have, wanted);
6099 }
6100
6101 static int
6102 unify_too_few_arguments (bool explain_p, int have, int wanted,
6103 bool least_p = false)
6104 {
6105 return unify_arity (explain_p, have, wanted, least_p);
6106 }
6107
6108 static int
6109 unify_arg_conversion (bool explain_p, tree to_type,
6110 tree from_type, tree arg)
6111 {
6112 if (explain_p)
6113 inform (EXPR_LOC_OR_LOC (arg, input_location),
6114 " cannot convert %qE (type %qT) to type %qT",
6115 arg, from_type, to_type);
6116 return 1;
6117 }
6118
6119 static int
6120 unify_no_common_base (bool explain_p, enum template_base_result r,
6121 tree parm, tree arg)
6122 {
6123 if (explain_p)
6124 switch (r)
6125 {
6126 case tbr_ambiguous_baseclass:
6127 inform (input_location, " %qT is an ambiguous base class of %qT",
6128 parm, arg);
6129 break;
6130 default:
6131 inform (input_location, " %qT is not derived from %qT", arg, parm);
6132 break;
6133 }
6134 return 1;
6135 }
6136
6137 static int
6138 unify_inconsistent_template_template_parameters (bool explain_p)
6139 {
6140 if (explain_p)
6141 inform (input_location,
6142 " template parameters of a template template argument are "
6143 "inconsistent with other deduced template arguments");
6144 return 1;
6145 }
6146
6147 static int
6148 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6149 {
6150 if (explain_p)
6151 inform (input_location,
6152 " can't deduce a template for %qT from non-template type %qT",
6153 parm, arg);
6154 return 1;
6155 }
6156
6157 static int
6158 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6159 {
6160 if (explain_p)
6161 inform (input_location,
6162 " template argument %qE does not match %qD", arg, parm);
6163 return 1;
6164 }
6165
6166 static int
6167 unify_overload_resolution_failure (bool explain_p, tree arg)
6168 {
6169 if (explain_p)
6170 inform (input_location,
6171 " could not resolve address from overloaded function %qE",
6172 arg);
6173 return 1;
6174 }
6175
6176 /* Attempt to convert the non-type template parameter EXPR to the
6177 indicated TYPE. If the conversion is successful, return the
6178 converted value. If the conversion is unsuccessful, return
6179 NULL_TREE if we issued an error message, or error_mark_node if we
6180 did not. We issue error messages for out-and-out bad template
6181 parameters, but not simply because the conversion failed, since we
6182 might be just trying to do argument deduction. Both TYPE and EXPR
6183 must be non-dependent.
6184
6185 The conversion follows the special rules described in
6186 [temp.arg.nontype], and it is much more strict than an implicit
6187 conversion.
6188
6189 This function is called twice for each template argument (see
6190 lookup_template_class for a more accurate description of this
6191 problem). This means that we need to handle expressions which
6192 are not valid in a C++ source, but can be created from the
6193 first call (for instance, casts to perform conversions). These
6194 hacks can go away after we fix the double coercion problem. */
6195
6196 static tree
6197 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6198 {
6199 tree expr_type;
6200
6201 /* Detect immediately string literals as invalid non-type argument.
6202 This special-case is not needed for correctness (we would easily
6203 catch this later), but only to provide better diagnostic for this
6204 common user mistake. As suggested by DR 100, we do not mention
6205 linkage issues in the diagnostic as this is not the point. */
6206 /* FIXME we're making this OK. */
6207 if (TREE_CODE (expr) == STRING_CST)
6208 {
6209 if (complain & tf_error)
6210 error ("%qE is not a valid template argument for type %qT "
6211 "because string literals can never be used in this context",
6212 expr, type);
6213 return NULL_TREE;
6214 }
6215
6216 /* Add the ADDR_EXPR now for the benefit of
6217 value_dependent_expression_p. */
6218 if (TYPE_PTROBV_P (type)
6219 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6220 {
6221 expr = decay_conversion (expr, complain);
6222 if (expr == error_mark_node)
6223 return error_mark_node;
6224 }
6225
6226 /* If we are in a template, EXPR may be non-dependent, but still
6227 have a syntactic, rather than semantic, form. For example, EXPR
6228 might be a SCOPE_REF, rather than the VAR_DECL to which the
6229 SCOPE_REF refers. Preserving the qualifying scope is necessary
6230 so that access checking can be performed when the template is
6231 instantiated -- but here we need the resolved form so that we can
6232 convert the argument. */
6233 bool non_dep = false;
6234 if (TYPE_REF_OBJ_P (type)
6235 && has_value_dependent_address (expr))
6236 /* If we want the address and it's value-dependent, don't fold. */;
6237 else if (!type_unknown_p (expr)
6238 && processing_template_decl
6239 && !instantiation_dependent_expression_p (expr)
6240 && potential_constant_expression (expr))
6241 non_dep = true;
6242 if (error_operand_p (expr))
6243 return error_mark_node;
6244 expr_type = TREE_TYPE (expr);
6245 if (TREE_CODE (type) == REFERENCE_TYPE)
6246 expr = mark_lvalue_use (expr);
6247 else
6248 expr = mark_rvalue_use (expr);
6249
6250 /* If the argument is non-dependent, perform any conversions in
6251 non-dependent context as well. */
6252 processing_template_decl_sentinel s (non_dep);
6253 if (non_dep)
6254 expr = instantiate_non_dependent_expr_internal (expr, complain);
6255
6256 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6257 to a non-type argument of "nullptr". */
6258 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6259 expr = fold_simple (convert (type, expr));
6260
6261 /* In C++11, integral or enumeration non-type template arguments can be
6262 arbitrary constant expressions. Pointer and pointer to
6263 member arguments can be general constant expressions that evaluate
6264 to a null value, but otherwise still need to be of a specific form. */
6265 if (cxx_dialect >= cxx11)
6266 {
6267 if (TREE_CODE (expr) == PTRMEM_CST)
6268 /* A PTRMEM_CST is already constant, and a valid template
6269 argument for a parameter of pointer to member type, we just want
6270 to leave it in that form rather than lower it to a
6271 CONSTRUCTOR. */;
6272 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6273 expr = maybe_constant_value (expr);
6274 else if (cxx_dialect >= cxx1z)
6275 {
6276 if (TREE_CODE (type) != REFERENCE_TYPE)
6277 expr = maybe_constant_value (expr);
6278 else if (REFERENCE_REF_P (expr))
6279 {
6280 expr = TREE_OPERAND (expr, 0);
6281 expr = maybe_constant_value (expr);
6282 expr = convert_from_reference (expr);
6283 }
6284 }
6285 else if (TYPE_PTR_OR_PTRMEM_P (type))
6286 {
6287 tree folded = maybe_constant_value (expr);
6288 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6289 : null_member_pointer_value_p (folded))
6290 expr = folded;
6291 }
6292 }
6293
6294 /* HACK: Due to double coercion, we can get a
6295 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6296 which is the tree that we built on the first call (see
6297 below when coercing to reference to object or to reference to
6298 function). We just strip everything and get to the arg.
6299 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6300 for examples. */
6301 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6302 {
6303 tree probe_type, probe = expr;
6304 if (REFERENCE_REF_P (probe))
6305 probe = TREE_OPERAND (probe, 0);
6306 probe_type = TREE_TYPE (probe);
6307 if (TREE_CODE (probe) == NOP_EXPR)
6308 {
6309 /* ??? Maybe we could use convert_from_reference here, but we
6310 would need to relax its constraints because the NOP_EXPR
6311 could actually change the type to something more cv-qualified,
6312 and this is not folded by convert_from_reference. */
6313 tree addr = TREE_OPERAND (probe, 0);
6314 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6315 && TREE_CODE (addr) == ADDR_EXPR
6316 && TYPE_PTR_P (TREE_TYPE (addr))
6317 && (same_type_ignoring_top_level_qualifiers_p
6318 (TREE_TYPE (probe_type),
6319 TREE_TYPE (TREE_TYPE (addr)))))
6320 {
6321 expr = TREE_OPERAND (addr, 0);
6322 expr_type = TREE_TYPE (probe_type);
6323 }
6324 }
6325 }
6326
6327 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6328 parameter is a pointer to object, through decay and
6329 qualification conversion. Let's strip everything. */
6330 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6331 {
6332 tree probe = expr;
6333 STRIP_NOPS (probe);
6334 if (TREE_CODE (probe) == ADDR_EXPR
6335 && TYPE_PTR_P (TREE_TYPE (probe)))
6336 {
6337 /* Skip the ADDR_EXPR only if it is part of the decay for
6338 an array. Otherwise, it is part of the original argument
6339 in the source code. */
6340 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6341 probe = TREE_OPERAND (probe, 0);
6342 expr = probe;
6343 expr_type = TREE_TYPE (expr);
6344 }
6345 }
6346
6347 /* [temp.arg.nontype]/5, bullet 1
6348
6349 For a non-type template-parameter of integral or enumeration type,
6350 integral promotions (_conv.prom_) and integral conversions
6351 (_conv.integral_) are applied. */
6352 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6353 {
6354 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6355 t = maybe_constant_value (t);
6356 if (t != error_mark_node)
6357 expr = t;
6358
6359 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6360 return error_mark_node;
6361
6362 /* Notice that there are constant expressions like '4 % 0' which
6363 do not fold into integer constants. */
6364 if (TREE_CODE (expr) != INTEGER_CST)
6365 {
6366 if (complain & tf_error)
6367 {
6368 int errs = errorcount, warns = warningcount + werrorcount;
6369 if (processing_template_decl
6370 && !require_potential_constant_expression (expr))
6371 return NULL_TREE;
6372 expr = cxx_constant_value (expr);
6373 if (errorcount > errs || warningcount + werrorcount > warns)
6374 inform (EXPR_LOC_OR_LOC (expr, input_location),
6375 "in template argument for type %qT ", type);
6376 if (expr == error_mark_node)
6377 return NULL_TREE;
6378 /* else cxx_constant_value complained but gave us
6379 a real constant, so go ahead. */
6380 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6381 }
6382 else
6383 return NULL_TREE;
6384 }
6385
6386 /* Avoid typedef problems. */
6387 if (TREE_TYPE (expr) != type)
6388 expr = fold_convert (type, expr);
6389 }
6390 /* [temp.arg.nontype]/5, bullet 2
6391
6392 For a non-type template-parameter of type pointer to object,
6393 qualification conversions (_conv.qual_) and the array-to-pointer
6394 conversion (_conv.array_) are applied. */
6395 else if (TYPE_PTROBV_P (type))
6396 {
6397 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6398
6399 A template-argument for a non-type, non-template template-parameter
6400 shall be one of: [...]
6401
6402 -- the name of a non-type template-parameter;
6403 -- the address of an object or function with external linkage, [...]
6404 expressed as "& id-expression" where the & is optional if the name
6405 refers to a function or array, or if the corresponding
6406 template-parameter is a reference.
6407
6408 Here, we do not care about functions, as they are invalid anyway
6409 for a parameter of type pointer-to-object. */
6410
6411 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6412 /* Non-type template parameters are OK. */
6413 ;
6414 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6415 /* Null pointer values are OK in C++11. */;
6416 else if (TREE_CODE (expr) != ADDR_EXPR
6417 && TREE_CODE (expr_type) != ARRAY_TYPE)
6418 {
6419 if (VAR_P (expr))
6420 {
6421 if (complain & tf_error)
6422 error ("%qD is not a valid template argument "
6423 "because %qD is a variable, not the address of "
6424 "a variable", expr, expr);
6425 return NULL_TREE;
6426 }
6427 if (POINTER_TYPE_P (expr_type))
6428 {
6429 if (complain & tf_error)
6430 error ("%qE is not a valid template argument for %qT "
6431 "because it is not the address of a variable",
6432 expr, type);
6433 return NULL_TREE;
6434 }
6435 /* Other values, like integer constants, might be valid
6436 non-type arguments of some other type. */
6437 return error_mark_node;
6438 }
6439 else
6440 {
6441 tree decl;
6442
6443 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6444 ? TREE_OPERAND (expr, 0) : expr);
6445 if (!VAR_P (decl))
6446 {
6447 if (complain & tf_error)
6448 error ("%qE is not a valid template argument of type %qT "
6449 "because %qE is not a variable", expr, type, decl);
6450 return NULL_TREE;
6451 }
6452 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6453 {
6454 if (complain & tf_error)
6455 error ("%qE is not a valid template argument of type %qT "
6456 "because %qD does not have external linkage",
6457 expr, type, decl);
6458 return NULL_TREE;
6459 }
6460 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6461 {
6462 if (complain & tf_error)
6463 error ("%qE is not a valid template argument of type %qT "
6464 "because %qD has no linkage", expr, type, decl);
6465 return NULL_TREE;
6466 }
6467 }
6468
6469 expr = decay_conversion (expr, complain);
6470 if (expr == error_mark_node)
6471 return error_mark_node;
6472
6473 expr = perform_qualification_conversions (type, expr);
6474 if (expr == error_mark_node)
6475 return error_mark_node;
6476 }
6477 /* [temp.arg.nontype]/5, bullet 3
6478
6479 For a non-type template-parameter of type reference to object, no
6480 conversions apply. The type referred to by the reference may be more
6481 cv-qualified than the (otherwise identical) type of the
6482 template-argument. The template-parameter is bound directly to the
6483 template-argument, which must be an lvalue. */
6484 else if (TYPE_REF_OBJ_P (type))
6485 {
6486 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6487 expr_type))
6488 return error_mark_node;
6489
6490 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6491 {
6492 if (complain & tf_error)
6493 error ("%qE is not a valid template argument for type %qT "
6494 "because of conflicts in cv-qualification", expr, type);
6495 return NULL_TREE;
6496 }
6497
6498 if (!real_lvalue_p (expr))
6499 {
6500 if (complain & tf_error)
6501 error ("%qE is not a valid template argument for type %qT "
6502 "because it is not an lvalue", expr, type);
6503 return NULL_TREE;
6504 }
6505
6506 /* [temp.arg.nontype]/1
6507
6508 A template-argument for a non-type, non-template template-parameter
6509 shall be one of: [...]
6510
6511 -- the address of an object or function with external linkage. */
6512 if (INDIRECT_REF_P (expr)
6513 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6514 {
6515 expr = TREE_OPERAND (expr, 0);
6516 if (DECL_P (expr))
6517 {
6518 if (complain & tf_error)
6519 error ("%q#D is not a valid template argument for type %qT "
6520 "because a reference variable does not have a constant "
6521 "address", expr, type);
6522 return NULL_TREE;
6523 }
6524 }
6525
6526 if (!DECL_P (expr))
6527 {
6528 if (complain & tf_error)
6529 error ("%qE is not a valid template argument for type %qT "
6530 "because it is not an object with linkage",
6531 expr, type);
6532 return NULL_TREE;
6533 }
6534
6535 /* DR 1155 allows internal linkage in C++11 and up. */
6536 linkage_kind linkage = decl_linkage (expr);
6537 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6538 {
6539 if (complain & tf_error)
6540 error ("%qE is not a valid template argument for type %qT "
6541 "because object %qD does not have linkage",
6542 expr, type, expr);
6543 return NULL_TREE;
6544 }
6545
6546 expr = build_nop (type, build_address (expr));
6547 }
6548 /* [temp.arg.nontype]/5, bullet 4
6549
6550 For a non-type template-parameter of type pointer to function, only
6551 the function-to-pointer conversion (_conv.func_) is applied. If the
6552 template-argument represents a set of overloaded functions (or a
6553 pointer to such), the matching function is selected from the set
6554 (_over.over_). */
6555 else if (TYPE_PTRFN_P (type))
6556 {
6557 /* If the argument is a template-id, we might not have enough
6558 context information to decay the pointer. */
6559 if (!type_unknown_p (expr_type))
6560 {
6561 expr = decay_conversion (expr, complain);
6562 if (expr == error_mark_node)
6563 return error_mark_node;
6564 }
6565
6566 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6567 /* Null pointer values are OK in C++11. */
6568 return perform_qualification_conversions (type, expr);
6569
6570 expr = convert_nontype_argument_function (type, expr, complain);
6571 if (!expr || expr == error_mark_node)
6572 return expr;
6573 }
6574 /* [temp.arg.nontype]/5, bullet 5
6575
6576 For a non-type template-parameter of type reference to function, no
6577 conversions apply. If the template-argument represents a set of
6578 overloaded functions, the matching function is selected from the set
6579 (_over.over_). */
6580 else if (TYPE_REFFN_P (type))
6581 {
6582 if (TREE_CODE (expr) == ADDR_EXPR)
6583 {
6584 if (complain & tf_error)
6585 {
6586 error ("%qE is not a valid template argument for type %qT "
6587 "because it is a pointer", expr, type);
6588 inform (input_location, "try using %qE instead",
6589 TREE_OPERAND (expr, 0));
6590 }
6591 return NULL_TREE;
6592 }
6593
6594 expr = convert_nontype_argument_function (type, expr, complain);
6595 if (!expr || expr == error_mark_node)
6596 return expr;
6597
6598 expr = build_nop (type, build_address (expr));
6599 }
6600 /* [temp.arg.nontype]/5, bullet 6
6601
6602 For a non-type template-parameter of type pointer to member function,
6603 no conversions apply. If the template-argument represents a set of
6604 overloaded member functions, the matching member function is selected
6605 from the set (_over.over_). */
6606 else if (TYPE_PTRMEMFUNC_P (type))
6607 {
6608 expr = instantiate_type (type, expr, tf_none);
6609 if (expr == error_mark_node)
6610 return error_mark_node;
6611
6612 /* [temp.arg.nontype] bullet 1 says the pointer to member
6613 expression must be a pointer-to-member constant. */
6614 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6615 return error_mark_node;
6616
6617 /* There is no way to disable standard conversions in
6618 resolve_address_of_overloaded_function (called by
6619 instantiate_type). It is possible that the call succeeded by
6620 converting &B::I to &D::I (where B is a base of D), so we need
6621 to reject this conversion here.
6622
6623 Actually, even if there was a way to disable standard conversions,
6624 it would still be better to reject them here so that we can
6625 provide a superior diagnostic. */
6626 if (!same_type_p (TREE_TYPE (expr), type))
6627 {
6628 if (complain & tf_error)
6629 {
6630 error ("%qE is not a valid template argument for type %qT "
6631 "because it is of type %qT", expr, type,
6632 TREE_TYPE (expr));
6633 /* If we are just one standard conversion off, explain. */
6634 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6635 inform (input_location,
6636 "standard conversions are not allowed in this context");
6637 }
6638 return NULL_TREE;
6639 }
6640 }
6641 /* [temp.arg.nontype]/5, bullet 7
6642
6643 For a non-type template-parameter of type pointer to data member,
6644 qualification conversions (_conv.qual_) are applied. */
6645 else if (TYPE_PTRDATAMEM_P (type))
6646 {
6647 /* [temp.arg.nontype] bullet 1 says the pointer to member
6648 expression must be a pointer-to-member constant. */
6649 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6650 return error_mark_node;
6651
6652 expr = perform_qualification_conversions (type, expr);
6653 if (expr == error_mark_node)
6654 return expr;
6655 }
6656 else if (NULLPTR_TYPE_P (type))
6657 {
6658 if (expr != nullptr_node)
6659 {
6660 if (complain & tf_error)
6661 error ("%qE is not a valid template argument for type %qT "
6662 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6663 return NULL_TREE;
6664 }
6665 return expr;
6666 }
6667 /* A template non-type parameter must be one of the above. */
6668 else
6669 gcc_unreachable ();
6670
6671 /* Sanity check: did we actually convert the argument to the
6672 right type? */
6673 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6674 (type, TREE_TYPE (expr)));
6675 return convert_from_reference (expr);
6676 }
6677
6678 /* Subroutine of coerce_template_template_parms, which returns 1 if
6679 PARM_PARM and ARG_PARM match using the rule for the template
6680 parameters of template template parameters. Both PARM and ARG are
6681 template parameters; the rest of the arguments are the same as for
6682 coerce_template_template_parms.
6683 */
6684 static int
6685 coerce_template_template_parm (tree parm,
6686 tree arg,
6687 tsubst_flags_t complain,
6688 tree in_decl,
6689 tree outer_args)
6690 {
6691 if (arg == NULL_TREE || error_operand_p (arg)
6692 || parm == NULL_TREE || error_operand_p (parm))
6693 return 0;
6694
6695 if (TREE_CODE (arg) != TREE_CODE (parm))
6696 return 0;
6697
6698 switch (TREE_CODE (parm))
6699 {
6700 case TEMPLATE_DECL:
6701 /* We encounter instantiations of templates like
6702 template <template <template <class> class> class TT>
6703 class C; */
6704 {
6705 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6706 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6707
6708 if (!coerce_template_template_parms
6709 (parmparm, argparm, complain, in_decl, outer_args))
6710 return 0;
6711 }
6712 /* Fall through. */
6713
6714 case TYPE_DECL:
6715 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6716 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6717 /* Argument is a parameter pack but parameter is not. */
6718 return 0;
6719 break;
6720
6721 case PARM_DECL:
6722 /* The tsubst call is used to handle cases such as
6723
6724 template <int> class C {};
6725 template <class T, template <T> class TT> class D {};
6726 D<int, C> d;
6727
6728 i.e. the parameter list of TT depends on earlier parameters. */
6729 if (!uses_template_parms (TREE_TYPE (arg)))
6730 {
6731 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6732 if (!uses_template_parms (t)
6733 && !same_type_p (t, TREE_TYPE (arg)))
6734 return 0;
6735 }
6736
6737 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6738 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6739 /* Argument is a parameter pack but parameter is not. */
6740 return 0;
6741
6742 break;
6743
6744 default:
6745 gcc_unreachable ();
6746 }
6747
6748 return 1;
6749 }
6750
6751
6752 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6753 template template parameters. Both PARM_PARMS and ARG_PARMS are
6754 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6755 or PARM_DECL.
6756
6757 Consider the example:
6758 template <class T> class A;
6759 template<template <class U> class TT> class B;
6760
6761 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6762 the parameters to A, and OUTER_ARGS contains A. */
6763
6764 static int
6765 coerce_template_template_parms (tree parm_parms,
6766 tree arg_parms,
6767 tsubst_flags_t complain,
6768 tree in_decl,
6769 tree outer_args)
6770 {
6771 int nparms, nargs, i;
6772 tree parm, arg;
6773 int variadic_p = 0;
6774
6775 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6776 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6777
6778 nparms = TREE_VEC_LENGTH (parm_parms);
6779 nargs = TREE_VEC_LENGTH (arg_parms);
6780
6781 /* Determine whether we have a parameter pack at the end of the
6782 template template parameter's template parameter list. */
6783 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6784 {
6785 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6786
6787 if (error_operand_p (parm))
6788 return 0;
6789
6790 switch (TREE_CODE (parm))
6791 {
6792 case TEMPLATE_DECL:
6793 case TYPE_DECL:
6794 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6795 variadic_p = 1;
6796 break;
6797
6798 case PARM_DECL:
6799 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6800 variadic_p = 1;
6801 break;
6802
6803 default:
6804 gcc_unreachable ();
6805 }
6806 }
6807
6808 if (nargs != nparms
6809 && !(variadic_p && nargs >= nparms - 1))
6810 return 0;
6811
6812 /* Check all of the template parameters except the parameter pack at
6813 the end (if any). */
6814 for (i = 0; i < nparms - variadic_p; ++i)
6815 {
6816 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6817 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6818 continue;
6819
6820 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6821 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6822
6823 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6824 outer_args))
6825 return 0;
6826
6827 }
6828
6829 if (variadic_p)
6830 {
6831 /* Check each of the template parameters in the template
6832 argument against the template parameter pack at the end of
6833 the template template parameter. */
6834 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6835 return 0;
6836
6837 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6838
6839 for (; i < nargs; ++i)
6840 {
6841 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6842 continue;
6843
6844 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6845
6846 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6847 outer_args))
6848 return 0;
6849 }
6850 }
6851
6852 return 1;
6853 }
6854
6855 /* Verifies that the deduced template arguments (in TARGS) for the
6856 template template parameters (in TPARMS) represent valid bindings,
6857 by comparing the template parameter list of each template argument
6858 to the template parameter list of its corresponding template
6859 template parameter, in accordance with DR150. This
6860 routine can only be called after all template arguments have been
6861 deduced. It will return TRUE if all of the template template
6862 parameter bindings are okay, FALSE otherwise. */
6863 bool
6864 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6865 {
6866 int i, ntparms = TREE_VEC_LENGTH (tparms);
6867 bool ret = true;
6868
6869 /* We're dealing with template parms in this process. */
6870 ++processing_template_decl;
6871
6872 targs = INNERMOST_TEMPLATE_ARGS (targs);
6873
6874 for (i = 0; i < ntparms; ++i)
6875 {
6876 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6877 tree targ = TREE_VEC_ELT (targs, i);
6878
6879 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6880 {
6881 tree packed_args = NULL_TREE;
6882 int idx, len = 1;
6883
6884 if (ARGUMENT_PACK_P (targ))
6885 {
6886 /* Look inside the argument pack. */
6887 packed_args = ARGUMENT_PACK_ARGS (targ);
6888 len = TREE_VEC_LENGTH (packed_args);
6889 }
6890
6891 for (idx = 0; idx < len; ++idx)
6892 {
6893 tree targ_parms = NULL_TREE;
6894
6895 if (packed_args)
6896 /* Extract the next argument from the argument
6897 pack. */
6898 targ = TREE_VEC_ELT (packed_args, idx);
6899
6900 if (PACK_EXPANSION_P (targ))
6901 /* Look at the pattern of the pack expansion. */
6902 targ = PACK_EXPANSION_PATTERN (targ);
6903
6904 /* Extract the template parameters from the template
6905 argument. */
6906 if (TREE_CODE (targ) == TEMPLATE_DECL)
6907 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6908 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6909 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6910
6911 /* Verify that we can coerce the template template
6912 parameters from the template argument to the template
6913 parameter. This requires an exact match. */
6914 if (targ_parms
6915 && !coerce_template_template_parms
6916 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6917 targ_parms,
6918 tf_none,
6919 tparm,
6920 targs))
6921 {
6922 ret = false;
6923 goto out;
6924 }
6925 }
6926 }
6927 }
6928
6929 out:
6930
6931 --processing_template_decl;
6932 return ret;
6933 }
6934
6935 /* Since type attributes aren't mangled, we need to strip them from
6936 template type arguments. */
6937
6938 static tree
6939 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6940 {
6941 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6942 return arg;
6943 bool removed_attributes = false;
6944 tree canon = strip_typedefs (arg, &removed_attributes);
6945 if (removed_attributes
6946 && (complain & tf_warning))
6947 warning (0, "ignoring attributes on template argument %qT", arg);
6948 return canon;
6949 }
6950
6951 // A template declaration can be substituted for a constrained
6952 // template template parameter only when the argument is more
6953 // constrained than the parameter.
6954 static bool
6955 is_compatible_template_arg (tree parm, tree arg)
6956 {
6957 tree parm_cons = get_constraints (parm);
6958
6959 /* For now, allow constrained template template arguments
6960 and unconstrained template template parameters. */
6961 if (parm_cons == NULL_TREE)
6962 return true;
6963
6964 tree arg_cons = get_constraints (arg);
6965
6966 // If the template parameter is constrained, we need to rewrite its
6967 // constraints in terms of the ARG's template parameters. This ensures
6968 // that all of the template parameter types will have the same depth.
6969 //
6970 // Note that this is only valid when coerce_template_template_parm is
6971 // true for the innermost template parameters of PARM and ARG. In other
6972 // words, because coercion is successful, this conversion will be valid.
6973 if (parm_cons)
6974 {
6975 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6976 parm_cons = tsubst_constraint_info (parm_cons,
6977 INNERMOST_TEMPLATE_ARGS (args),
6978 tf_none, NULL_TREE);
6979 if (parm_cons == error_mark_node)
6980 return false;
6981 }
6982
6983 return subsumes (parm_cons, arg_cons);
6984 }
6985
6986 // Convert a placeholder argument into a binding to the original
6987 // parameter. The original parameter is saved as the TREE_TYPE of
6988 // ARG.
6989 static inline tree
6990 convert_wildcard_argument (tree parm, tree arg)
6991 {
6992 TREE_TYPE (arg) = parm;
6993 return arg;
6994 }
6995
6996 /* Convert the indicated template ARG as necessary to match the
6997 indicated template PARM. Returns the converted ARG, or
6998 error_mark_node if the conversion was unsuccessful. Error and
6999 warning messages are issued under control of COMPLAIN. This
7000 conversion is for the Ith parameter in the parameter list. ARGS is
7001 the full set of template arguments deduced so far. */
7002
7003 static tree
7004 convert_template_argument (tree parm,
7005 tree arg,
7006 tree args,
7007 tsubst_flags_t complain,
7008 int i,
7009 tree in_decl)
7010 {
7011 tree orig_arg;
7012 tree val;
7013 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7014
7015 if (parm == error_mark_node)
7016 return error_mark_node;
7017
7018 /* Trivially convert placeholders. */
7019 if (TREE_CODE (arg) == WILDCARD_DECL)
7020 return convert_wildcard_argument (parm, arg);
7021
7022 if (TREE_CODE (arg) == TREE_LIST
7023 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7024 {
7025 /* The template argument was the name of some
7026 member function. That's usually
7027 invalid, but static members are OK. In any
7028 case, grab the underlying fields/functions
7029 and issue an error later if required. */
7030 orig_arg = TREE_VALUE (arg);
7031 TREE_TYPE (arg) = unknown_type_node;
7032 }
7033
7034 orig_arg = arg;
7035
7036 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7037 requires_type = (TREE_CODE (parm) == TYPE_DECL
7038 || requires_tmpl_type);
7039
7040 /* When determining whether an argument pack expansion is a template,
7041 look at the pattern. */
7042 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7043 arg = PACK_EXPANSION_PATTERN (arg);
7044
7045 /* Deal with an injected-class-name used as a template template arg. */
7046 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7047 {
7048 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7049 if (TREE_CODE (t) == TEMPLATE_DECL)
7050 {
7051 if (cxx_dialect >= cxx11)
7052 /* OK under DR 1004. */;
7053 else if (complain & tf_warning_or_error)
7054 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7055 " used as template template argument", TYPE_NAME (arg));
7056 else if (flag_pedantic_errors)
7057 t = arg;
7058
7059 arg = t;
7060 }
7061 }
7062
7063 is_tmpl_type =
7064 ((TREE_CODE (arg) == TEMPLATE_DECL
7065 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7066 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7067 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7068 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7069
7070 if (is_tmpl_type
7071 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7072 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7073 arg = TYPE_STUB_DECL (arg);
7074
7075 is_type = TYPE_P (arg) || is_tmpl_type;
7076
7077 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7078 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7079 {
7080 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7081 {
7082 if (complain & tf_error)
7083 error ("invalid use of destructor %qE as a type", orig_arg);
7084 return error_mark_node;
7085 }
7086
7087 permerror (input_location,
7088 "to refer to a type member of a template parameter, "
7089 "use %<typename %E%>", orig_arg);
7090
7091 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7092 TREE_OPERAND (arg, 1),
7093 typename_type,
7094 complain);
7095 arg = orig_arg;
7096 is_type = 1;
7097 }
7098 if (is_type != requires_type)
7099 {
7100 if (in_decl)
7101 {
7102 if (complain & tf_error)
7103 {
7104 error ("type/value mismatch at argument %d in template "
7105 "parameter list for %qD",
7106 i + 1, in_decl);
7107 if (is_type)
7108 inform (input_location,
7109 " expected a constant of type %qT, got %qT",
7110 TREE_TYPE (parm),
7111 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7112 else if (requires_tmpl_type)
7113 inform (input_location,
7114 " expected a class template, got %qE", orig_arg);
7115 else
7116 inform (input_location,
7117 " expected a type, got %qE", orig_arg);
7118 }
7119 }
7120 return error_mark_node;
7121 }
7122 if (is_tmpl_type ^ requires_tmpl_type)
7123 {
7124 if (in_decl && (complain & tf_error))
7125 {
7126 error ("type/value mismatch at argument %d in template "
7127 "parameter list for %qD",
7128 i + 1, in_decl);
7129 if (is_tmpl_type)
7130 inform (input_location,
7131 " expected a type, got %qT", DECL_NAME (arg));
7132 else
7133 inform (input_location,
7134 " expected a class template, got %qT", orig_arg);
7135 }
7136 return error_mark_node;
7137 }
7138
7139 if (is_type)
7140 {
7141 if (requires_tmpl_type)
7142 {
7143 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7144 val = orig_arg;
7145 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7146 /* The number of argument required is not known yet.
7147 Just accept it for now. */
7148 val = TREE_TYPE (arg);
7149 else
7150 {
7151 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7152 tree argparm;
7153
7154 /* Strip alias templates that are equivalent to another
7155 template. */
7156 arg = get_underlying_template (arg);
7157 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7158
7159 if (coerce_template_template_parms (parmparm, argparm,
7160 complain, in_decl,
7161 args))
7162 {
7163 val = arg;
7164
7165 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7166 TEMPLATE_DECL. */
7167 if (val != error_mark_node)
7168 {
7169 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7170 val = TREE_TYPE (val);
7171 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7172 val = make_pack_expansion (val);
7173 }
7174 }
7175 else
7176 {
7177 if (in_decl && (complain & tf_error))
7178 {
7179 error ("type/value mismatch at argument %d in "
7180 "template parameter list for %qD",
7181 i + 1, in_decl);
7182 inform (input_location,
7183 " expected a template of type %qD, got %qT",
7184 parm, orig_arg);
7185 }
7186
7187 val = error_mark_node;
7188 }
7189
7190 // Check that the constraints are compatible before allowing the
7191 // substitution.
7192 if (val != error_mark_node)
7193 if (!is_compatible_template_arg (parm, arg))
7194 {
7195 if (in_decl && (complain & tf_error))
7196 {
7197 error ("constraint mismatch at argument %d in "
7198 "template parameter list for %qD",
7199 i + 1, in_decl);
7200 inform (input_location, " expected %qD but got %qD",
7201 parm, arg);
7202 }
7203 val = error_mark_node;
7204 }
7205 }
7206 }
7207 else
7208 val = orig_arg;
7209 /* We only form one instance of each template specialization.
7210 Therefore, if we use a non-canonical variant (i.e., a
7211 typedef), any future messages referring to the type will use
7212 the typedef, which is confusing if those future uses do not
7213 themselves also use the typedef. */
7214 if (TYPE_P (val))
7215 val = canonicalize_type_argument (val, complain);
7216 }
7217 else
7218 {
7219 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7220
7221 if (invalid_nontype_parm_type_p (t, complain))
7222 return error_mark_node;
7223
7224 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7225 {
7226 if (same_type_p (t, TREE_TYPE (orig_arg)))
7227 val = orig_arg;
7228 else
7229 {
7230 /* Not sure if this is reachable, but it doesn't hurt
7231 to be robust. */
7232 error ("type mismatch in nontype parameter pack");
7233 val = error_mark_node;
7234 }
7235 }
7236 else if (!dependent_template_arg_p (orig_arg)
7237 && !uses_template_parms (t))
7238 /* We used to call digest_init here. However, digest_init
7239 will report errors, which we don't want when complain
7240 is zero. More importantly, digest_init will try too
7241 hard to convert things: for example, `0' should not be
7242 converted to pointer type at this point according to
7243 the standard. Accepting this is not merely an
7244 extension, since deciding whether or not these
7245 conversions can occur is part of determining which
7246 function template to call, or whether a given explicit
7247 argument specification is valid. */
7248 val = convert_nontype_argument (t, orig_arg, complain);
7249 else
7250 {
7251 bool removed_attr = false;
7252 val = strip_typedefs_expr (orig_arg, &removed_attr);
7253 }
7254
7255 if (val == NULL_TREE)
7256 val = error_mark_node;
7257 else if (val == error_mark_node && (complain & tf_error))
7258 error ("could not convert template argument %qE to %qT", orig_arg, t);
7259
7260 if (INDIRECT_REF_P (val))
7261 {
7262 /* Reject template arguments that are references to built-in
7263 functions with no library fallbacks. */
7264 const_tree inner = TREE_OPERAND (val, 0);
7265 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7266 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7267 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7268 && 0 < TREE_OPERAND_LENGTH (inner)
7269 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7270 return error_mark_node;
7271 }
7272
7273 if (TREE_CODE (val) == SCOPE_REF)
7274 {
7275 /* Strip typedefs from the SCOPE_REF. */
7276 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7277 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7278 complain);
7279 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7280 QUALIFIED_NAME_IS_TEMPLATE (val));
7281 }
7282 }
7283
7284 return val;
7285 }
7286
7287 /* Coerces the remaining template arguments in INNER_ARGS (from
7288 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7289 Returns the coerced argument pack. PARM_IDX is the position of this
7290 parameter in the template parameter list. ARGS is the original
7291 template argument list. */
7292 static tree
7293 coerce_template_parameter_pack (tree parms,
7294 int parm_idx,
7295 tree args,
7296 tree inner_args,
7297 int arg_idx,
7298 tree new_args,
7299 int* lost,
7300 tree in_decl,
7301 tsubst_flags_t complain)
7302 {
7303 tree parm = TREE_VEC_ELT (parms, parm_idx);
7304 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7305 tree packed_args;
7306 tree argument_pack;
7307 tree packed_parms = NULL_TREE;
7308
7309 if (arg_idx > nargs)
7310 arg_idx = nargs;
7311
7312 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7313 {
7314 /* When the template parameter is a non-type template parameter pack
7315 or template template parameter pack whose type or template
7316 parameters use parameter packs, we know exactly how many arguments
7317 we are looking for. Build a vector of the instantiated decls for
7318 these template parameters in PACKED_PARMS. */
7319 /* We can't use make_pack_expansion here because it would interpret a
7320 _DECL as a use rather than a declaration. */
7321 tree decl = TREE_VALUE (parm);
7322 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7323 SET_PACK_EXPANSION_PATTERN (exp, decl);
7324 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7325 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7326
7327 TREE_VEC_LENGTH (args)--;
7328 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7329 TREE_VEC_LENGTH (args)++;
7330
7331 if (packed_parms == error_mark_node)
7332 return error_mark_node;
7333
7334 /* If we're doing a partial instantiation of a member template,
7335 verify that all of the types used for the non-type
7336 template parameter pack are, in fact, valid for non-type
7337 template parameters. */
7338 if (arg_idx < nargs
7339 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7340 {
7341 int j, len = TREE_VEC_LENGTH (packed_parms);
7342 for (j = 0; j < len; ++j)
7343 {
7344 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7345 if (invalid_nontype_parm_type_p (t, complain))
7346 return error_mark_node;
7347 }
7348 /* We don't know how many args we have yet, just
7349 use the unconverted ones for now. */
7350 return NULL_TREE;
7351 }
7352
7353 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7354 }
7355 /* Check if we have a placeholder pack, which indicates we're
7356 in the context of a introduction list. In that case we want
7357 to match this pack to the single placeholder. */
7358 else if (arg_idx < nargs
7359 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7360 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7361 {
7362 nargs = arg_idx + 1;
7363 packed_args = make_tree_vec (1);
7364 }
7365 else
7366 packed_args = make_tree_vec (nargs - arg_idx);
7367
7368 /* Convert the remaining arguments, which will be a part of the
7369 parameter pack "parm". */
7370 for (; arg_idx < nargs; ++arg_idx)
7371 {
7372 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7373 tree actual_parm = TREE_VALUE (parm);
7374 int pack_idx = arg_idx - parm_idx;
7375
7376 if (packed_parms)
7377 {
7378 /* Once we've packed as many args as we have types, stop. */
7379 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7380 break;
7381 else if (PACK_EXPANSION_P (arg))
7382 /* We don't know how many args we have yet, just
7383 use the unconverted ones for now. */
7384 return NULL_TREE;
7385 else
7386 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7387 }
7388
7389 if (arg == error_mark_node)
7390 {
7391 if (complain & tf_error)
7392 error ("template argument %d is invalid", arg_idx + 1);
7393 }
7394 else
7395 arg = convert_template_argument (actual_parm,
7396 arg, new_args, complain, parm_idx,
7397 in_decl);
7398 if (arg == error_mark_node)
7399 (*lost)++;
7400 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7401 }
7402
7403 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7404 && TREE_VEC_LENGTH (packed_args) > 0)
7405 {
7406 if (complain & tf_error)
7407 error ("wrong number of template arguments (%d, should be %d)",
7408 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7409 return error_mark_node;
7410 }
7411
7412 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7413 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7414 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7415 else
7416 {
7417 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7418 TREE_TYPE (argument_pack)
7419 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7420 TREE_CONSTANT (argument_pack) = 1;
7421 }
7422
7423 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7424 if (CHECKING_P)
7425 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7426 TREE_VEC_LENGTH (packed_args));
7427 return argument_pack;
7428 }
7429
7430 /* Returns the number of pack expansions in the template argument vector
7431 ARGS. */
7432
7433 static int
7434 pack_expansion_args_count (tree args)
7435 {
7436 int i;
7437 int count = 0;
7438 if (args)
7439 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7440 {
7441 tree elt = TREE_VEC_ELT (args, i);
7442 if (elt && PACK_EXPANSION_P (elt))
7443 ++count;
7444 }
7445 return count;
7446 }
7447
7448 /* Convert all template arguments to their appropriate types, and
7449 return a vector containing the innermost resulting template
7450 arguments. If any error occurs, return error_mark_node. Error and
7451 warning messages are issued under control of COMPLAIN.
7452
7453 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7454 for arguments not specified in ARGS. Otherwise, if
7455 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7456 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7457 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7458 ARGS. */
7459
7460 static tree
7461 coerce_template_parms (tree parms,
7462 tree args,
7463 tree in_decl,
7464 tsubst_flags_t complain,
7465 bool require_all_args,
7466 bool use_default_args)
7467 {
7468 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7469 tree orig_inner_args;
7470 tree inner_args;
7471 tree new_args;
7472 tree new_inner_args;
7473 int saved_unevaluated_operand;
7474 int saved_inhibit_evaluation_warnings;
7475
7476 /* When used as a boolean value, indicates whether this is a
7477 variadic template parameter list. Since it's an int, we can also
7478 subtract it from nparms to get the number of non-variadic
7479 parameters. */
7480 int variadic_p = 0;
7481 int variadic_args_p = 0;
7482 int post_variadic_parms = 0;
7483
7484 /* Likewise for parameters with default arguments. */
7485 int default_p = 0;
7486
7487 if (args == error_mark_node)
7488 return error_mark_node;
7489
7490 nparms = TREE_VEC_LENGTH (parms);
7491
7492 /* Determine if there are any parameter packs or default arguments. */
7493 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7494 {
7495 tree parm = TREE_VEC_ELT (parms, parm_idx);
7496 if (variadic_p)
7497 ++post_variadic_parms;
7498 if (template_parameter_pack_p (TREE_VALUE (parm)))
7499 ++variadic_p;
7500 if (TREE_PURPOSE (parm))
7501 ++default_p;
7502 }
7503
7504 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7505 /* If there are no parameters that follow a parameter pack, we need to
7506 expand any argument packs so that we can deduce a parameter pack from
7507 some non-packed args followed by an argument pack, as in variadic85.C.
7508 If there are such parameters, we need to leave argument packs intact
7509 so the arguments are assigned properly. This can happen when dealing
7510 with a nested class inside a partial specialization of a class
7511 template, as in variadic92.C, or when deducing a template parameter pack
7512 from a sub-declarator, as in variadic114.C. */
7513 if (!post_variadic_parms)
7514 inner_args = expand_template_argument_pack (inner_args);
7515
7516 /* Count any pack expansion args. */
7517 variadic_args_p = pack_expansion_args_count (inner_args);
7518
7519 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7520 if ((nargs > nparms && !variadic_p)
7521 || (nargs < nparms - variadic_p
7522 && require_all_args
7523 && !variadic_args_p
7524 && (!use_default_args
7525 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7526 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7527 {
7528 if (complain & tf_error)
7529 {
7530 if (variadic_p || default_p)
7531 {
7532 nparms -= variadic_p + default_p;
7533 error ("wrong number of template arguments "
7534 "(%d, should be at least %d)", nargs, nparms);
7535 }
7536 else
7537 error ("wrong number of template arguments "
7538 "(%d, should be %d)", nargs, nparms);
7539
7540 if (in_decl)
7541 inform (DECL_SOURCE_LOCATION (in_decl),
7542 "provided for %qD", in_decl);
7543 }
7544
7545 return error_mark_node;
7546 }
7547 /* We can't pass a pack expansion to a non-pack parameter of an alias
7548 template (DR 1430). */
7549 else if (in_decl
7550 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7551 || concept_template_p (in_decl))
7552 && variadic_args_p
7553 && nargs - variadic_args_p < nparms - variadic_p)
7554 {
7555 if (complain & tf_error)
7556 {
7557 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7558 {
7559 tree arg = TREE_VEC_ELT (inner_args, i);
7560 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7561
7562 if (PACK_EXPANSION_P (arg)
7563 && !template_parameter_pack_p (parm))
7564 {
7565 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7566 error_at (location_of (arg),
7567 "pack expansion argument for non-pack parameter "
7568 "%qD of alias template %qD", parm, in_decl);
7569 else
7570 error_at (location_of (arg),
7571 "pack expansion argument for non-pack parameter "
7572 "%qD of concept %qD", parm, in_decl);
7573 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7574 goto found;
7575 }
7576 }
7577 gcc_unreachable ();
7578 found:;
7579 }
7580 return error_mark_node;
7581 }
7582
7583 /* We need to evaluate the template arguments, even though this
7584 template-id may be nested within a "sizeof". */
7585 saved_unevaluated_operand = cp_unevaluated_operand;
7586 cp_unevaluated_operand = 0;
7587 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7588 c_inhibit_evaluation_warnings = 0;
7589 new_inner_args = make_tree_vec (nparms);
7590 new_args = add_outermost_template_args (args, new_inner_args);
7591 int pack_adjust = 0;
7592 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7593 {
7594 tree arg;
7595 tree parm;
7596
7597 /* Get the Ith template parameter. */
7598 parm = TREE_VEC_ELT (parms, parm_idx);
7599
7600 if (parm == error_mark_node)
7601 {
7602 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7603 continue;
7604 }
7605
7606 /* Calculate the next argument. */
7607 if (arg_idx < nargs)
7608 arg = TREE_VEC_ELT (inner_args, arg_idx);
7609 else
7610 arg = NULL_TREE;
7611
7612 if (template_parameter_pack_p (TREE_VALUE (parm))
7613 && !(arg && ARGUMENT_PACK_P (arg)))
7614 {
7615 /* Some arguments will be placed in the
7616 template parameter pack PARM. */
7617 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7618 inner_args, arg_idx,
7619 new_args, &lost,
7620 in_decl, complain);
7621
7622 if (arg == NULL_TREE)
7623 {
7624 /* We don't know how many args we have yet, just use the
7625 unconverted (and still packed) ones for now. */
7626 new_inner_args = orig_inner_args;
7627 arg_idx = nargs;
7628 break;
7629 }
7630
7631 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7632
7633 /* Store this argument. */
7634 if (arg == error_mark_node)
7635 {
7636 lost++;
7637 /* We are done with all of the arguments. */
7638 arg_idx = nargs;
7639 }
7640 else
7641 {
7642 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7643 arg_idx += pack_adjust;
7644 }
7645
7646 continue;
7647 }
7648 else if (arg)
7649 {
7650 if (PACK_EXPANSION_P (arg))
7651 {
7652 /* "If every valid specialization of a variadic template
7653 requires an empty template parameter pack, the template is
7654 ill-formed, no diagnostic required." So check that the
7655 pattern works with this parameter. */
7656 tree pattern = PACK_EXPANSION_PATTERN (arg);
7657 tree conv = convert_template_argument (TREE_VALUE (parm),
7658 pattern, new_args,
7659 complain, parm_idx,
7660 in_decl);
7661 if (conv == error_mark_node)
7662 {
7663 inform (input_location, "so any instantiation with a "
7664 "non-empty parameter pack would be ill-formed");
7665 ++lost;
7666 }
7667 else if (TYPE_P (conv) && !TYPE_P (pattern))
7668 /* Recover from missing typename. */
7669 TREE_VEC_ELT (inner_args, arg_idx)
7670 = make_pack_expansion (conv);
7671
7672 /* We don't know how many args we have yet, just
7673 use the unconverted ones for now. */
7674 new_inner_args = inner_args;
7675 arg_idx = nargs;
7676 break;
7677 }
7678 }
7679 else if (require_all_args)
7680 {
7681 /* There must be a default arg in this case. */
7682 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7683 complain, in_decl);
7684 /* The position of the first default template argument,
7685 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7686 Record that. */
7687 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7688 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7689 arg_idx - pack_adjust);
7690 }
7691 else
7692 break;
7693
7694 if (arg == error_mark_node)
7695 {
7696 if (complain & tf_error)
7697 error ("template argument %d is invalid", arg_idx + 1);
7698 }
7699 else if (!arg)
7700 /* This only occurs if there was an error in the template
7701 parameter list itself (which we would already have
7702 reported) that we are trying to recover from, e.g., a class
7703 template with a parameter list such as
7704 template<typename..., typename>. */
7705 ++lost;
7706 else
7707 arg = convert_template_argument (TREE_VALUE (parm),
7708 arg, new_args, complain,
7709 parm_idx, in_decl);
7710
7711 if (arg == error_mark_node)
7712 lost++;
7713 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7714 }
7715 cp_unevaluated_operand = saved_unevaluated_operand;
7716 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7717
7718 if (variadic_p && arg_idx < nargs)
7719 {
7720 if (complain & tf_error)
7721 {
7722 error ("wrong number of template arguments "
7723 "(%d, should be %d)", nargs, arg_idx);
7724 if (in_decl)
7725 error ("provided for %q+D", in_decl);
7726 }
7727 return error_mark_node;
7728 }
7729
7730 if (lost)
7731 return error_mark_node;
7732
7733 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7734 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7735 TREE_VEC_LENGTH (new_inner_args));
7736
7737 return new_inner_args;
7738 }
7739
7740 /* Convert all template arguments to their appropriate types, and
7741 return a vector containing the innermost resulting template
7742 arguments. If any error occurs, return error_mark_node. Error and
7743 warning messages are not issued.
7744
7745 Note that no function argument deduction is performed, and default
7746 arguments are used to fill in unspecified arguments. */
7747 tree
7748 coerce_template_parms (tree parms, tree args, tree in_decl)
7749 {
7750 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7751 }
7752
7753 /* Convert all template arguments to their appropriate type, and
7754 instantiate default arguments as needed. This returns a vector
7755 containing the innermost resulting template arguments, or
7756 error_mark_node if unsuccessful. */
7757 tree
7758 coerce_template_parms (tree parms, tree args, tree in_decl,
7759 tsubst_flags_t complain)
7760 {
7761 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7762 }
7763
7764 /* Like coerce_template_parms. If PARMS represents all template
7765 parameters levels, this function returns a vector of vectors
7766 representing all the resulting argument levels. Note that in this
7767 case, only the innermost arguments are coerced because the
7768 outermost ones are supposed to have been coerced already.
7769
7770 Otherwise, if PARMS represents only (the innermost) vector of
7771 parameters, this function returns a vector containing just the
7772 innermost resulting arguments. */
7773
7774 static tree
7775 coerce_innermost_template_parms (tree parms,
7776 tree args,
7777 tree in_decl,
7778 tsubst_flags_t complain,
7779 bool require_all_args,
7780 bool use_default_args)
7781 {
7782 int parms_depth = TMPL_PARMS_DEPTH (parms);
7783 int args_depth = TMPL_ARGS_DEPTH (args);
7784 tree coerced_args;
7785
7786 if (parms_depth > 1)
7787 {
7788 coerced_args = make_tree_vec (parms_depth);
7789 tree level;
7790 int cur_depth;
7791
7792 for (level = parms, cur_depth = parms_depth;
7793 parms_depth > 0 && level != NULL_TREE;
7794 level = TREE_CHAIN (level), --cur_depth)
7795 {
7796 tree l;
7797 if (cur_depth == args_depth)
7798 l = coerce_template_parms (TREE_VALUE (level),
7799 args, in_decl, complain,
7800 require_all_args,
7801 use_default_args);
7802 else
7803 l = TMPL_ARGS_LEVEL (args, cur_depth);
7804
7805 if (l == error_mark_node)
7806 return error_mark_node;
7807
7808 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7809 }
7810 }
7811 else
7812 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7813 args, in_decl, complain,
7814 require_all_args,
7815 use_default_args);
7816 return coerced_args;
7817 }
7818
7819 /* Returns 1 if template args OT and NT are equivalent. */
7820
7821 static int
7822 template_args_equal (tree ot, tree nt)
7823 {
7824 if (nt == ot)
7825 return 1;
7826 if (nt == NULL_TREE || ot == NULL_TREE)
7827 return false;
7828
7829 if (TREE_CODE (nt) == TREE_VEC)
7830 /* For member templates */
7831 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7832 else if (PACK_EXPANSION_P (ot))
7833 return (PACK_EXPANSION_P (nt)
7834 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7835 PACK_EXPANSION_PATTERN (nt))
7836 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7837 PACK_EXPANSION_EXTRA_ARGS (nt)));
7838 else if (ARGUMENT_PACK_P (ot))
7839 {
7840 int i, len;
7841 tree opack, npack;
7842
7843 if (!ARGUMENT_PACK_P (nt))
7844 return 0;
7845
7846 opack = ARGUMENT_PACK_ARGS (ot);
7847 npack = ARGUMENT_PACK_ARGS (nt);
7848 len = TREE_VEC_LENGTH (opack);
7849 if (TREE_VEC_LENGTH (npack) != len)
7850 return 0;
7851 for (i = 0; i < len; ++i)
7852 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7853 TREE_VEC_ELT (npack, i)))
7854 return 0;
7855 return 1;
7856 }
7857 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7858 {
7859 /* We get here probably because we are in the middle of substituting
7860 into the pattern of a pack expansion. In that case the
7861 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7862 interested in. So we want to use the initial pack argument for
7863 the comparison. */
7864 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7865 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7866 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7867 return template_args_equal (ot, nt);
7868 }
7869 else if (TYPE_P (nt))
7870 {
7871 if (!TYPE_P (ot))
7872 return false;
7873 /* Don't treat an alias template specialization with dependent
7874 arguments as equivalent to its underlying type when used as a
7875 template argument; we need them to be distinct so that we
7876 substitute into the specialization arguments at instantiation
7877 time. And aliases can't be equivalent without being ==, so
7878 we don't need to look any deeper. */
7879 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7880 return false;
7881 else
7882 return same_type_p (ot, nt);
7883 }
7884 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7885 return 0;
7886 else
7887 {
7888 /* Try to treat a template non-type argument that has been converted
7889 to the parameter type as equivalent to one that hasn't yet. */
7890 for (enum tree_code code1 = TREE_CODE (ot);
7891 CONVERT_EXPR_CODE_P (code1)
7892 || code1 == NON_LVALUE_EXPR;
7893 code1 = TREE_CODE (ot))
7894 ot = TREE_OPERAND (ot, 0);
7895 for (enum tree_code code2 = TREE_CODE (nt);
7896 CONVERT_EXPR_CODE_P (code2)
7897 || code2 == NON_LVALUE_EXPR;
7898 code2 = TREE_CODE (nt))
7899 nt = TREE_OPERAND (nt, 0);
7900
7901 return cp_tree_equal (ot, nt);
7902 }
7903 }
7904
7905 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7906 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7907 NEWARG_PTR with the offending arguments if they are non-NULL. */
7908
7909 int
7910 comp_template_args (tree oldargs, tree newargs,
7911 tree *oldarg_ptr, tree *newarg_ptr)
7912 {
7913 int i;
7914
7915 if (oldargs == newargs)
7916 return 1;
7917
7918 if (!oldargs || !newargs)
7919 return 0;
7920
7921 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7922 return 0;
7923
7924 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7925 {
7926 tree nt = TREE_VEC_ELT (newargs, i);
7927 tree ot = TREE_VEC_ELT (oldargs, i);
7928
7929 if (! template_args_equal (ot, nt))
7930 {
7931 if (oldarg_ptr != NULL)
7932 *oldarg_ptr = ot;
7933 if (newarg_ptr != NULL)
7934 *newarg_ptr = nt;
7935 return 0;
7936 }
7937 }
7938 return 1;
7939 }
7940
7941 static void
7942 add_pending_template (tree d)
7943 {
7944 tree ti = (TYPE_P (d)
7945 ? CLASSTYPE_TEMPLATE_INFO (d)
7946 : DECL_TEMPLATE_INFO (d));
7947 struct pending_template *pt;
7948 int level;
7949
7950 if (TI_PENDING_TEMPLATE_FLAG (ti))
7951 return;
7952
7953 /* We are called both from instantiate_decl, where we've already had a
7954 tinst_level pushed, and instantiate_template, where we haven't.
7955 Compensate. */
7956 level = !current_tinst_level || current_tinst_level->decl != d;
7957
7958 if (level)
7959 push_tinst_level (d);
7960
7961 pt = ggc_alloc<pending_template> ();
7962 pt->next = NULL;
7963 pt->tinst = current_tinst_level;
7964 if (last_pending_template)
7965 last_pending_template->next = pt;
7966 else
7967 pending_templates = pt;
7968
7969 last_pending_template = pt;
7970
7971 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7972
7973 if (level)
7974 pop_tinst_level ();
7975 }
7976
7977
7978 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7979 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7980 documentation for TEMPLATE_ID_EXPR. */
7981
7982 tree
7983 lookup_template_function (tree fns, tree arglist)
7984 {
7985 tree type;
7986
7987 if (fns == error_mark_node || arglist == error_mark_node)
7988 return error_mark_node;
7989
7990 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7991
7992 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7993 {
7994 error ("%q#D is not a function template", fns);
7995 return error_mark_node;
7996 }
7997
7998 if (BASELINK_P (fns))
7999 {
8000 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8001 unknown_type_node,
8002 BASELINK_FUNCTIONS (fns),
8003 arglist);
8004 return fns;
8005 }
8006
8007 type = TREE_TYPE (fns);
8008 if (TREE_CODE (fns) == OVERLOAD || !type)
8009 type = unknown_type_node;
8010
8011 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8012 }
8013
8014 /* Within the scope of a template class S<T>, the name S gets bound
8015 (in build_self_reference) to a TYPE_DECL for the class, not a
8016 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8017 or one of its enclosing classes, and that type is a template,
8018 return the associated TEMPLATE_DECL. Otherwise, the original
8019 DECL is returned.
8020
8021 Also handle the case when DECL is a TREE_LIST of ambiguous
8022 injected-class-names from different bases. */
8023
8024 tree
8025 maybe_get_template_decl_from_type_decl (tree decl)
8026 {
8027 if (decl == NULL_TREE)
8028 return decl;
8029
8030 /* DR 176: A lookup that finds an injected-class-name (10.2
8031 [class.member.lookup]) can result in an ambiguity in certain cases
8032 (for example, if it is found in more than one base class). If all of
8033 the injected-class-names that are found refer to specializations of
8034 the same class template, and if the name is followed by a
8035 template-argument-list, the reference refers to the class template
8036 itself and not a specialization thereof, and is not ambiguous. */
8037 if (TREE_CODE (decl) == TREE_LIST)
8038 {
8039 tree t, tmpl = NULL_TREE;
8040 for (t = decl; t; t = TREE_CHAIN (t))
8041 {
8042 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8043 if (!tmpl)
8044 tmpl = elt;
8045 else if (tmpl != elt)
8046 break;
8047 }
8048 if (tmpl && t == NULL_TREE)
8049 return tmpl;
8050 else
8051 return decl;
8052 }
8053
8054 return (decl != NULL_TREE
8055 && DECL_SELF_REFERENCE_P (decl)
8056 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8057 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8058 }
8059
8060 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8061 parameters, find the desired type.
8062
8063 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8064
8065 IN_DECL, if non-NULL, is the template declaration we are trying to
8066 instantiate.
8067
8068 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8069 the class we are looking up.
8070
8071 Issue error and warning messages under control of COMPLAIN.
8072
8073 If the template class is really a local class in a template
8074 function, then the FUNCTION_CONTEXT is the function in which it is
8075 being instantiated.
8076
8077 ??? Note that this function is currently called *twice* for each
8078 template-id: the first time from the parser, while creating the
8079 incomplete type (finish_template_type), and the second type during the
8080 real instantiation (instantiate_template_class). This is surely something
8081 that we want to avoid. It also causes some problems with argument
8082 coercion (see convert_nontype_argument for more information on this). */
8083
8084 static tree
8085 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8086 int entering_scope, tsubst_flags_t complain)
8087 {
8088 tree templ = NULL_TREE, parmlist;
8089 tree t;
8090 spec_entry **slot;
8091 spec_entry *entry;
8092 spec_entry elt;
8093 hashval_t hash;
8094
8095 if (identifier_p (d1))
8096 {
8097 tree value = innermost_non_namespace_value (d1);
8098 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8099 templ = value;
8100 else
8101 {
8102 if (context)
8103 push_decl_namespace (context);
8104 templ = lookup_name (d1);
8105 templ = maybe_get_template_decl_from_type_decl (templ);
8106 if (context)
8107 pop_decl_namespace ();
8108 }
8109 if (templ)
8110 context = DECL_CONTEXT (templ);
8111 }
8112 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8113 {
8114 tree type = TREE_TYPE (d1);
8115
8116 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8117 an implicit typename for the second A. Deal with it. */
8118 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8119 type = TREE_TYPE (type);
8120
8121 if (CLASSTYPE_TEMPLATE_INFO (type))
8122 {
8123 templ = CLASSTYPE_TI_TEMPLATE (type);
8124 d1 = DECL_NAME (templ);
8125 }
8126 }
8127 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8128 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8129 {
8130 templ = TYPE_TI_TEMPLATE (d1);
8131 d1 = DECL_NAME (templ);
8132 }
8133 else if (DECL_TYPE_TEMPLATE_P (d1))
8134 {
8135 templ = d1;
8136 d1 = DECL_NAME (templ);
8137 context = DECL_CONTEXT (templ);
8138 }
8139 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8140 {
8141 templ = d1;
8142 d1 = DECL_NAME (templ);
8143 }
8144
8145 /* Issue an error message if we didn't find a template. */
8146 if (! templ)
8147 {
8148 if (complain & tf_error)
8149 error ("%qT is not a template", d1);
8150 return error_mark_node;
8151 }
8152
8153 if (TREE_CODE (templ) != TEMPLATE_DECL
8154 /* Make sure it's a user visible template, if it was named by
8155 the user. */
8156 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8157 && !PRIMARY_TEMPLATE_P (templ)))
8158 {
8159 if (complain & tf_error)
8160 {
8161 error ("non-template type %qT used as a template", d1);
8162 if (in_decl)
8163 error ("for template declaration %q+D", in_decl);
8164 }
8165 return error_mark_node;
8166 }
8167
8168 complain &= ~tf_user;
8169
8170 /* An alias that just changes the name of a template is equivalent to the
8171 other template, so if any of the arguments are pack expansions, strip
8172 the alias to avoid problems with a pack expansion passed to a non-pack
8173 alias template parameter (DR 1430). */
8174 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8175 templ = get_underlying_template (templ);
8176
8177 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8178 {
8179 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8180 template arguments */
8181
8182 tree parm;
8183 tree arglist2;
8184 tree outer;
8185
8186 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8187
8188 /* Consider an example where a template template parameter declared as
8189
8190 template <class T, class U = std::allocator<T> > class TT
8191
8192 The template parameter level of T and U are one level larger than
8193 of TT. To proper process the default argument of U, say when an
8194 instantiation `TT<int>' is seen, we need to build the full
8195 arguments containing {int} as the innermost level. Outer levels,
8196 available when not appearing as default template argument, can be
8197 obtained from the arguments of the enclosing template.
8198
8199 Suppose that TT is later substituted with std::vector. The above
8200 instantiation is `TT<int, std::allocator<T> >' with TT at
8201 level 1, and T at level 2, while the template arguments at level 1
8202 becomes {std::vector} and the inner level 2 is {int}. */
8203
8204 outer = DECL_CONTEXT (templ);
8205 if (outer)
8206 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8207 else if (current_template_parms)
8208 {
8209 /* This is an argument of the current template, so we haven't set
8210 DECL_CONTEXT yet. */
8211 tree relevant_template_parms;
8212
8213 /* Parameter levels that are greater than the level of the given
8214 template template parm are irrelevant. */
8215 relevant_template_parms = current_template_parms;
8216 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8217 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8218 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8219
8220 outer = template_parms_to_args (relevant_template_parms);
8221 }
8222
8223 if (outer)
8224 arglist = add_to_template_args (outer, arglist);
8225
8226 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8227 complain,
8228 /*require_all_args=*/true,
8229 /*use_default_args=*/true);
8230 if (arglist2 == error_mark_node
8231 || (!uses_template_parms (arglist2)
8232 && check_instantiated_args (templ, arglist2, complain)))
8233 return error_mark_node;
8234
8235 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8236 return parm;
8237 }
8238 else
8239 {
8240 tree template_type = TREE_TYPE (templ);
8241 tree gen_tmpl;
8242 tree type_decl;
8243 tree found = NULL_TREE;
8244 int arg_depth;
8245 int parm_depth;
8246 int is_dependent_type;
8247 int use_partial_inst_tmpl = false;
8248
8249 if (template_type == error_mark_node)
8250 /* An error occurred while building the template TEMPL, and a
8251 diagnostic has most certainly been emitted for that
8252 already. Let's propagate that error. */
8253 return error_mark_node;
8254
8255 gen_tmpl = most_general_template (templ);
8256 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8257 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8258 arg_depth = TMPL_ARGS_DEPTH (arglist);
8259
8260 if (arg_depth == 1 && parm_depth > 1)
8261 {
8262 /* We've been given an incomplete set of template arguments.
8263 For example, given:
8264
8265 template <class T> struct S1 {
8266 template <class U> struct S2 {};
8267 template <class U> struct S2<U*> {};
8268 };
8269
8270 we will be called with an ARGLIST of `U*', but the
8271 TEMPLATE will be `template <class T> template
8272 <class U> struct S1<T>::S2'. We must fill in the missing
8273 arguments. */
8274 arglist
8275 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8276 arglist);
8277 arg_depth = TMPL_ARGS_DEPTH (arglist);
8278 }
8279
8280 /* Now we should have enough arguments. */
8281 gcc_assert (parm_depth == arg_depth);
8282
8283 /* From here on, we're only interested in the most general
8284 template. */
8285
8286 /* Calculate the BOUND_ARGS. These will be the args that are
8287 actually tsubst'd into the definition to create the
8288 instantiation. */
8289 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8290 complain,
8291 /*require_all_args=*/true,
8292 /*use_default_args=*/true);
8293
8294 if (arglist == error_mark_node)
8295 /* We were unable to bind the arguments. */
8296 return error_mark_node;
8297
8298 /* In the scope of a template class, explicit references to the
8299 template class refer to the type of the template, not any
8300 instantiation of it. For example, in:
8301
8302 template <class T> class C { void f(C<T>); }
8303
8304 the `C<T>' is just the same as `C'. Outside of the
8305 class, however, such a reference is an instantiation. */
8306 if ((entering_scope
8307 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8308 || currently_open_class (template_type))
8309 /* comp_template_args is expensive, check it last. */
8310 && comp_template_args (TYPE_TI_ARGS (template_type),
8311 arglist))
8312 return template_type;
8313
8314 /* If we already have this specialization, return it. */
8315 elt.tmpl = gen_tmpl;
8316 elt.args = arglist;
8317 elt.spec = NULL_TREE;
8318 hash = spec_hasher::hash (&elt);
8319 entry = type_specializations->find_with_hash (&elt, hash);
8320
8321 if (entry)
8322 return entry->spec;
8323
8324 /* If the the template's constraints are not satisfied,
8325 then we cannot form a valid type.
8326
8327 Note that the check is deferred until after the hash
8328 lookup. This prevents redundant checks on previously
8329 instantiated specializations. */
8330 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8331 {
8332 if (complain & tf_error)
8333 {
8334 error ("template constraint failure");
8335 diagnose_constraints (input_location, gen_tmpl, arglist);
8336 }
8337 return error_mark_node;
8338 }
8339
8340 is_dependent_type = uses_template_parms (arglist);
8341
8342 /* If the deduced arguments are invalid, then the binding
8343 failed. */
8344 if (!is_dependent_type
8345 && check_instantiated_args (gen_tmpl,
8346 INNERMOST_TEMPLATE_ARGS (arglist),
8347 complain))
8348 return error_mark_node;
8349
8350 if (!is_dependent_type
8351 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8352 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8353 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8354 {
8355 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8356 DECL_NAME (gen_tmpl),
8357 /*tag_scope=*/ts_global);
8358 return found;
8359 }
8360
8361 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8362 complain, in_decl);
8363 if (context == error_mark_node)
8364 return error_mark_node;
8365
8366 if (!context)
8367 context = global_namespace;
8368
8369 /* Create the type. */
8370 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8371 {
8372 /* The user referred to a specialization of an alias
8373 template represented by GEN_TMPL.
8374
8375 [temp.alias]/2 says:
8376
8377 When a template-id refers to the specialization of an
8378 alias template, it is equivalent to the associated
8379 type obtained by substitution of its
8380 template-arguments for the template-parameters in the
8381 type-id of the alias template. */
8382
8383 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8384 /* Note that the call above (by indirectly calling
8385 register_specialization in tsubst_decl) registers the
8386 TYPE_DECL representing the specialization of the alias
8387 template. So next time someone substitutes ARGLIST for
8388 the template parms into the alias template (GEN_TMPL),
8389 she'll get that TYPE_DECL back. */
8390
8391 if (t == error_mark_node)
8392 return t;
8393 }
8394 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8395 {
8396 if (!is_dependent_type)
8397 {
8398 set_current_access_from_decl (TYPE_NAME (template_type));
8399 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8400 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8401 arglist, complain, in_decl),
8402 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8403 arglist, complain, in_decl),
8404 SCOPED_ENUM_P (template_type), NULL);
8405
8406 if (t == error_mark_node)
8407 return t;
8408 }
8409 else
8410 {
8411 /* We don't want to call start_enum for this type, since
8412 the values for the enumeration constants may involve
8413 template parameters. And, no one should be interested
8414 in the enumeration constants for such a type. */
8415 t = cxx_make_type (ENUMERAL_TYPE);
8416 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8417 }
8418 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8419 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8420 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8421 }
8422 else if (CLASS_TYPE_P (template_type))
8423 {
8424 t = make_class_type (TREE_CODE (template_type));
8425 CLASSTYPE_DECLARED_CLASS (t)
8426 = CLASSTYPE_DECLARED_CLASS (template_type);
8427 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8428 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8429
8430 /* A local class. Make sure the decl gets registered properly. */
8431 if (context == current_function_decl)
8432 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8433
8434 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8435 /* This instantiation is another name for the primary
8436 template type. Set the TYPE_CANONICAL field
8437 appropriately. */
8438 TYPE_CANONICAL (t) = template_type;
8439 else if (any_template_arguments_need_structural_equality_p (arglist))
8440 /* Some of the template arguments require structural
8441 equality testing, so this template class requires
8442 structural equality testing. */
8443 SET_TYPE_STRUCTURAL_EQUALITY (t);
8444 }
8445 else
8446 gcc_unreachable ();
8447
8448 /* If we called start_enum or pushtag above, this information
8449 will already be set up. */
8450 if (!TYPE_NAME (t))
8451 {
8452 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8453
8454 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8455 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8456 DECL_SOURCE_LOCATION (type_decl)
8457 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8458 }
8459 else
8460 type_decl = TYPE_NAME (t);
8461
8462 if (CLASS_TYPE_P (template_type))
8463 {
8464 TREE_PRIVATE (type_decl)
8465 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8466 TREE_PROTECTED (type_decl)
8467 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8468 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8469 {
8470 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8471 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8472 }
8473 }
8474
8475 if (OVERLOAD_TYPE_P (t)
8476 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8477 {
8478 static const char *tags[] = {"abi_tag", "may_alias"};
8479
8480 for (unsigned ix = 0; ix != 2; ix++)
8481 {
8482 tree attributes
8483 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8484
8485 if (attributes)
8486 TYPE_ATTRIBUTES (t)
8487 = tree_cons (TREE_PURPOSE (attributes),
8488 TREE_VALUE (attributes),
8489 TYPE_ATTRIBUTES (t));
8490 }
8491 }
8492
8493 /* Let's consider the explicit specialization of a member
8494 of a class template specialization that is implicitly instantiated,
8495 e.g.:
8496 template<class T>
8497 struct S
8498 {
8499 template<class U> struct M {}; //#0
8500 };
8501
8502 template<>
8503 template<>
8504 struct S<int>::M<char> //#1
8505 {
8506 int i;
8507 };
8508 [temp.expl.spec]/4 says this is valid.
8509
8510 In this case, when we write:
8511 S<int>::M<char> m;
8512
8513 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8514 the one of #0.
8515
8516 When we encounter #1, we want to store the partial instantiation
8517 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8518
8519 For all cases other than this "explicit specialization of member of a
8520 class template", we just want to store the most general template into
8521 the CLASSTYPE_TI_TEMPLATE of M.
8522
8523 This case of "explicit specialization of member of a class template"
8524 only happens when:
8525 1/ the enclosing class is an instantiation of, and therefore not
8526 the same as, the context of the most general template, and
8527 2/ we aren't looking at the partial instantiation itself, i.e.
8528 the innermost arguments are not the same as the innermost parms of
8529 the most general template.
8530
8531 So it's only when 1/ and 2/ happens that we want to use the partial
8532 instantiation of the member template in lieu of its most general
8533 template. */
8534
8535 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8536 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8537 /* the enclosing class must be an instantiation... */
8538 && CLASS_TYPE_P (context)
8539 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8540 {
8541 tree partial_inst_args;
8542 TREE_VEC_LENGTH (arglist)--;
8543 ++processing_template_decl;
8544 partial_inst_args =
8545 tsubst (INNERMOST_TEMPLATE_ARGS
8546 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8547 arglist, complain, NULL_TREE);
8548 --processing_template_decl;
8549 TREE_VEC_LENGTH (arglist)++;
8550 if (partial_inst_args == error_mark_node)
8551 return error_mark_node;
8552 use_partial_inst_tmpl =
8553 /*...and we must not be looking at the partial instantiation
8554 itself. */
8555 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8556 partial_inst_args);
8557 }
8558
8559 if (!use_partial_inst_tmpl)
8560 /* This case is easy; there are no member templates involved. */
8561 found = gen_tmpl;
8562 else
8563 {
8564 /* This is a full instantiation of a member template. Find
8565 the partial instantiation of which this is an instance. */
8566
8567 /* Temporarily reduce by one the number of levels in the ARGLIST
8568 so as to avoid comparing the last set of arguments. */
8569 TREE_VEC_LENGTH (arglist)--;
8570 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8571 TREE_VEC_LENGTH (arglist)++;
8572 /* FOUND is either a proper class type, or an alias
8573 template specialization. In the later case, it's a
8574 TYPE_DECL, resulting from the substituting of arguments
8575 for parameters in the TYPE_DECL of the alias template
8576 done earlier. So be careful while getting the template
8577 of FOUND. */
8578 found = TREE_CODE (found) == TYPE_DECL
8579 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8580 : CLASSTYPE_TI_TEMPLATE (found);
8581 }
8582
8583 // Build template info for the new specialization.
8584 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8585
8586 elt.spec = t;
8587 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8588 entry = ggc_alloc<spec_entry> ();
8589 *entry = elt;
8590 *slot = entry;
8591
8592 /* Note this use of the partial instantiation so we can check it
8593 later in maybe_process_partial_specialization. */
8594 DECL_TEMPLATE_INSTANTIATIONS (found)
8595 = tree_cons (arglist, t,
8596 DECL_TEMPLATE_INSTANTIATIONS (found));
8597
8598 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8599 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8600 /* Now that the type has been registered on the instantiations
8601 list, we set up the enumerators. Because the enumeration
8602 constants may involve the enumeration type itself, we make
8603 sure to register the type first, and then create the
8604 constants. That way, doing tsubst_expr for the enumeration
8605 constants won't result in recursive calls here; we'll find
8606 the instantiation and exit above. */
8607 tsubst_enum (template_type, t, arglist);
8608
8609 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8610 /* If the type makes use of template parameters, the
8611 code that generates debugging information will crash. */
8612 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8613
8614 /* Possibly limit visibility based on template args. */
8615 TREE_PUBLIC (type_decl) = 1;
8616 determine_visibility (type_decl);
8617
8618 inherit_targ_abi_tags (t);
8619
8620 return t;
8621 }
8622 }
8623
8624 /* Wrapper for lookup_template_class_1. */
8625
8626 tree
8627 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8628 int entering_scope, tsubst_flags_t complain)
8629 {
8630 tree ret;
8631 timevar_push (TV_TEMPLATE_INST);
8632 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8633 entering_scope, complain);
8634 timevar_pop (TV_TEMPLATE_INST);
8635 return ret;
8636 }
8637
8638 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8639
8640 tree
8641 lookup_template_variable (tree templ, tree arglist)
8642 {
8643 /* The type of the expression is NULL_TREE since the template-id could refer
8644 to an explicit or partial specialization. */
8645 tree type = NULL_TREE;
8646 if (flag_concepts && variable_concept_p (templ))
8647 /* Except that concepts are always bool. */
8648 type = boolean_type_node;
8649 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8650 }
8651
8652 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8653
8654 tree
8655 finish_template_variable (tree var, tsubst_flags_t complain)
8656 {
8657 tree templ = TREE_OPERAND (var, 0);
8658 tree arglist = TREE_OPERAND (var, 1);
8659
8660 /* We never want to return a VAR_DECL for a variable concept, since they
8661 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8662 bool concept_p = flag_concepts && variable_concept_p (templ);
8663 if (concept_p && processing_template_decl)
8664 return var;
8665
8666 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8667 arglist = add_outermost_template_args (tmpl_args, arglist);
8668
8669 tree parms = DECL_TEMPLATE_PARMS (templ);
8670 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8671 /*req_all*/true,
8672 /*use_default*/true);
8673
8674 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8675 {
8676 if (complain & tf_error)
8677 {
8678 error ("constraints for %qD not satisfied", templ);
8679 diagnose_constraints (location_of (var), templ, arglist);
8680 }
8681 return error_mark_node;
8682 }
8683
8684 /* If a template-id refers to a specialization of a variable
8685 concept, then the expression is true if and only if the
8686 concept's constraints are satisfied by the given template
8687 arguments.
8688
8689 NOTE: This is an extension of Concepts Lite TS that
8690 allows constraints to be used in expressions. */
8691 if (concept_p)
8692 {
8693 tree decl = DECL_TEMPLATE_RESULT (templ);
8694 return evaluate_variable_concept (decl, arglist);
8695 }
8696
8697 return instantiate_template (templ, arglist, complain);
8698 }
8699 \f
8700 struct pair_fn_data
8701 {
8702 tree_fn_t fn;
8703 void *data;
8704 /* True when we should also visit template parameters that occur in
8705 non-deduced contexts. */
8706 bool include_nondeduced_p;
8707 hash_set<tree> *visited;
8708 };
8709
8710 /* Called from for_each_template_parm via walk_tree. */
8711
8712 static tree
8713 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8714 {
8715 tree t = *tp;
8716 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8717 tree_fn_t fn = pfd->fn;
8718 void *data = pfd->data;
8719 tree result = NULL_TREE;
8720
8721 #define WALK_SUBTREE(NODE) \
8722 do \
8723 { \
8724 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8725 pfd->include_nondeduced_p); \
8726 if (result) goto out; \
8727 } \
8728 while (0)
8729
8730 if (TYPE_P (t)
8731 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8732 WALK_SUBTREE (TYPE_CONTEXT (t));
8733
8734 switch (TREE_CODE (t))
8735 {
8736 case RECORD_TYPE:
8737 if (TYPE_PTRMEMFUNC_P (t))
8738 break;
8739 /* Fall through. */
8740
8741 case UNION_TYPE:
8742 case ENUMERAL_TYPE:
8743 if (!TYPE_TEMPLATE_INFO (t))
8744 *walk_subtrees = 0;
8745 else
8746 WALK_SUBTREE (TYPE_TI_ARGS (t));
8747 break;
8748
8749 case INTEGER_TYPE:
8750 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8751 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8752 break;
8753
8754 case METHOD_TYPE:
8755 /* Since we're not going to walk subtrees, we have to do this
8756 explicitly here. */
8757 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8758 /* Fall through. */
8759
8760 case FUNCTION_TYPE:
8761 /* Check the return type. */
8762 WALK_SUBTREE (TREE_TYPE (t));
8763
8764 /* Check the parameter types. Since default arguments are not
8765 instantiated until they are needed, the TYPE_ARG_TYPES may
8766 contain expressions that involve template parameters. But,
8767 no-one should be looking at them yet. And, once they're
8768 instantiated, they don't contain template parameters, so
8769 there's no point in looking at them then, either. */
8770 {
8771 tree parm;
8772
8773 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8774 WALK_SUBTREE (TREE_VALUE (parm));
8775
8776 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8777 want walk_tree walking into them itself. */
8778 *walk_subtrees = 0;
8779 }
8780 break;
8781
8782 case TYPEOF_TYPE:
8783 case UNDERLYING_TYPE:
8784 if (pfd->include_nondeduced_p
8785 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8786 pfd->visited,
8787 pfd->include_nondeduced_p))
8788 return error_mark_node;
8789 break;
8790
8791 case FUNCTION_DECL:
8792 case VAR_DECL:
8793 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8794 WALK_SUBTREE (DECL_TI_ARGS (t));
8795 /* Fall through. */
8796
8797 case PARM_DECL:
8798 case CONST_DECL:
8799 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8800 WALK_SUBTREE (DECL_INITIAL (t));
8801 if (DECL_CONTEXT (t)
8802 && pfd->include_nondeduced_p)
8803 WALK_SUBTREE (DECL_CONTEXT (t));
8804 break;
8805
8806 case BOUND_TEMPLATE_TEMPLATE_PARM:
8807 /* Record template parameters such as `T' inside `TT<T>'. */
8808 WALK_SUBTREE (TYPE_TI_ARGS (t));
8809 /* Fall through. */
8810
8811 case TEMPLATE_TEMPLATE_PARM:
8812 case TEMPLATE_TYPE_PARM:
8813 case TEMPLATE_PARM_INDEX:
8814 if (fn && (*fn)(t, data))
8815 return t;
8816 else if (!fn)
8817 return t;
8818 break;
8819
8820 case TEMPLATE_DECL:
8821 /* A template template parameter is encountered. */
8822 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8823 WALK_SUBTREE (TREE_TYPE (t));
8824
8825 /* Already substituted template template parameter */
8826 *walk_subtrees = 0;
8827 break;
8828
8829 case TYPENAME_TYPE:
8830 if (!fn)
8831 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8832 break;
8833
8834 case CONSTRUCTOR:
8835 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8836 && pfd->include_nondeduced_p)
8837 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8838 break;
8839
8840 case INDIRECT_REF:
8841 case COMPONENT_REF:
8842 /* If there's no type, then this thing must be some expression
8843 involving template parameters. */
8844 if (!fn && !TREE_TYPE (t))
8845 return error_mark_node;
8846 break;
8847
8848 case MODOP_EXPR:
8849 case CAST_EXPR:
8850 case IMPLICIT_CONV_EXPR:
8851 case REINTERPRET_CAST_EXPR:
8852 case CONST_CAST_EXPR:
8853 case STATIC_CAST_EXPR:
8854 case DYNAMIC_CAST_EXPR:
8855 case ARROW_EXPR:
8856 case DOTSTAR_EXPR:
8857 case TYPEID_EXPR:
8858 case PSEUDO_DTOR_EXPR:
8859 if (!fn)
8860 return error_mark_node;
8861 break;
8862
8863 default:
8864 break;
8865 }
8866
8867 #undef WALK_SUBTREE
8868
8869 /* We didn't find any template parameters we liked. */
8870 out:
8871 return result;
8872 }
8873
8874 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8875 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8876 call FN with the parameter and the DATA.
8877 If FN returns nonzero, the iteration is terminated, and
8878 for_each_template_parm returns 1. Otherwise, the iteration
8879 continues. If FN never returns a nonzero value, the value
8880 returned by for_each_template_parm is 0. If FN is NULL, it is
8881 considered to be the function which always returns 1.
8882
8883 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8884 parameters that occur in non-deduced contexts. When false, only
8885 visits those template parameters that can be deduced. */
8886
8887 static tree
8888 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8889 hash_set<tree> *visited,
8890 bool include_nondeduced_p)
8891 {
8892 struct pair_fn_data pfd;
8893 tree result;
8894
8895 /* Set up. */
8896 pfd.fn = fn;
8897 pfd.data = data;
8898 pfd.include_nondeduced_p = include_nondeduced_p;
8899
8900 /* Walk the tree. (Conceptually, we would like to walk without
8901 duplicates, but for_each_template_parm_r recursively calls
8902 for_each_template_parm, so we would need to reorganize a fair
8903 bit to use walk_tree_without_duplicates, so we keep our own
8904 visited list.) */
8905 if (visited)
8906 pfd.visited = visited;
8907 else
8908 pfd.visited = new hash_set<tree>;
8909 result = cp_walk_tree (&t,
8910 for_each_template_parm_r,
8911 &pfd,
8912 pfd.visited);
8913
8914 /* Clean up. */
8915 if (!visited)
8916 {
8917 delete pfd.visited;
8918 pfd.visited = 0;
8919 }
8920
8921 return result;
8922 }
8923
8924 /* Returns true if T depends on any template parameter. */
8925
8926 int
8927 uses_template_parms (tree t)
8928 {
8929 if (t == NULL_TREE)
8930 return false;
8931
8932 bool dependent_p;
8933 int saved_processing_template_decl;
8934
8935 saved_processing_template_decl = processing_template_decl;
8936 if (!saved_processing_template_decl)
8937 processing_template_decl = 1;
8938 if (TYPE_P (t))
8939 dependent_p = dependent_type_p (t);
8940 else if (TREE_CODE (t) == TREE_VEC)
8941 dependent_p = any_dependent_template_arguments_p (t);
8942 else if (TREE_CODE (t) == TREE_LIST)
8943 dependent_p = (uses_template_parms (TREE_VALUE (t))
8944 || uses_template_parms (TREE_CHAIN (t)));
8945 else if (TREE_CODE (t) == TYPE_DECL)
8946 dependent_p = dependent_type_p (TREE_TYPE (t));
8947 else if (DECL_P (t)
8948 || EXPR_P (t)
8949 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8950 || TREE_CODE (t) == OVERLOAD
8951 || BASELINK_P (t)
8952 || identifier_p (t)
8953 || TREE_CODE (t) == TRAIT_EXPR
8954 || TREE_CODE (t) == CONSTRUCTOR
8955 || CONSTANT_CLASS_P (t))
8956 dependent_p = (type_dependent_expression_p (t)
8957 || value_dependent_expression_p (t));
8958 else
8959 {
8960 gcc_assert (t == error_mark_node);
8961 dependent_p = false;
8962 }
8963
8964 processing_template_decl = saved_processing_template_decl;
8965
8966 return dependent_p;
8967 }
8968
8969 /* Returns true iff current_function_decl is an incompletely instantiated
8970 template. Useful instead of processing_template_decl because the latter
8971 is set to 0 during instantiate_non_dependent_expr. */
8972
8973 bool
8974 in_template_function (void)
8975 {
8976 tree fn = current_function_decl;
8977 bool ret;
8978 ++processing_template_decl;
8979 ret = (fn && DECL_LANG_SPECIFIC (fn)
8980 && DECL_TEMPLATE_INFO (fn)
8981 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8982 --processing_template_decl;
8983 return ret;
8984 }
8985
8986 /* Returns true if T depends on any template parameter with level LEVEL. */
8987
8988 bool
8989 uses_template_parms_level (tree t, int level)
8990 {
8991 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8992 /*include_nondeduced_p=*/true);
8993 }
8994
8995 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8996 ill-formed translation unit, i.e. a variable or function that isn't
8997 usable in a constant expression. */
8998
8999 static inline bool
9000 neglectable_inst_p (tree d)
9001 {
9002 return (DECL_P (d)
9003 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9004 : decl_maybe_constant_var_p (d)));
9005 }
9006
9007 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9008 neglectable and instantiated from within an erroneous instantiation. */
9009
9010 static bool
9011 limit_bad_template_recursion (tree decl)
9012 {
9013 struct tinst_level *lev = current_tinst_level;
9014 int errs = errorcount + sorrycount;
9015 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9016 return false;
9017
9018 for (; lev; lev = lev->next)
9019 if (neglectable_inst_p (lev->decl))
9020 break;
9021
9022 return (lev && errs > lev->errors);
9023 }
9024
9025 static int tinst_depth;
9026 extern int max_tinst_depth;
9027 int depth_reached;
9028
9029 static GTY(()) struct tinst_level *last_error_tinst_level;
9030
9031 /* We're starting to instantiate D; record the template instantiation context
9032 for diagnostics and to restore it later. */
9033
9034 bool
9035 push_tinst_level (tree d)
9036 {
9037 return push_tinst_level_loc (d, input_location);
9038 }
9039
9040 /* We're starting to instantiate D; record the template instantiation context
9041 at LOC for diagnostics and to restore it later. */
9042
9043 bool
9044 push_tinst_level_loc (tree d, location_t loc)
9045 {
9046 struct tinst_level *new_level;
9047
9048 if (tinst_depth >= max_tinst_depth)
9049 {
9050 fatal_error (input_location,
9051 "template instantiation depth exceeds maximum of %d"
9052 " (use -ftemplate-depth= to increase the maximum)",
9053 max_tinst_depth);
9054 return false;
9055 }
9056
9057 /* If the current instantiation caused problems, don't let it instantiate
9058 anything else. Do allow deduction substitution and decls usable in
9059 constant expressions. */
9060 if (limit_bad_template_recursion (d))
9061 return false;
9062
9063 new_level = ggc_alloc<tinst_level> ();
9064 new_level->decl = d;
9065 new_level->locus = loc;
9066 new_level->errors = errorcount+sorrycount;
9067 new_level->in_system_header_p = in_system_header_at (input_location);
9068 new_level->next = current_tinst_level;
9069 current_tinst_level = new_level;
9070
9071 ++tinst_depth;
9072 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9073 depth_reached = tinst_depth;
9074
9075 return true;
9076 }
9077
9078 /* We're done instantiating this template; return to the instantiation
9079 context. */
9080
9081 void
9082 pop_tinst_level (void)
9083 {
9084 /* Restore the filename and line number stashed away when we started
9085 this instantiation. */
9086 input_location = current_tinst_level->locus;
9087 current_tinst_level = current_tinst_level->next;
9088 --tinst_depth;
9089 }
9090
9091 /* We're instantiating a deferred template; restore the template
9092 instantiation context in which the instantiation was requested, which
9093 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9094
9095 static tree
9096 reopen_tinst_level (struct tinst_level *level)
9097 {
9098 struct tinst_level *t;
9099
9100 tinst_depth = 0;
9101 for (t = level; t; t = t->next)
9102 ++tinst_depth;
9103
9104 current_tinst_level = level;
9105 pop_tinst_level ();
9106 if (current_tinst_level)
9107 current_tinst_level->errors = errorcount+sorrycount;
9108 return level->decl;
9109 }
9110
9111 /* Returns the TINST_LEVEL which gives the original instantiation
9112 context. */
9113
9114 struct tinst_level *
9115 outermost_tinst_level (void)
9116 {
9117 struct tinst_level *level = current_tinst_level;
9118 if (level)
9119 while (level->next)
9120 level = level->next;
9121 return level;
9122 }
9123
9124 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9125 vector of template arguments, as for tsubst.
9126
9127 Returns an appropriate tsubst'd friend declaration. */
9128
9129 static tree
9130 tsubst_friend_function (tree decl, tree args)
9131 {
9132 tree new_friend;
9133
9134 if (TREE_CODE (decl) == FUNCTION_DECL
9135 && DECL_TEMPLATE_INSTANTIATION (decl)
9136 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9137 /* This was a friend declared with an explicit template
9138 argument list, e.g.:
9139
9140 friend void f<>(T);
9141
9142 to indicate that f was a template instantiation, not a new
9143 function declaration. Now, we have to figure out what
9144 instantiation of what template. */
9145 {
9146 tree template_id, arglist, fns;
9147 tree new_args;
9148 tree tmpl;
9149 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9150
9151 /* Friend functions are looked up in the containing namespace scope.
9152 We must enter that scope, to avoid finding member functions of the
9153 current class with same name. */
9154 push_nested_namespace (ns);
9155 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9156 tf_warning_or_error, NULL_TREE,
9157 /*integral_constant_expression_p=*/false);
9158 pop_nested_namespace (ns);
9159 arglist = tsubst (DECL_TI_ARGS (decl), args,
9160 tf_warning_or_error, NULL_TREE);
9161 template_id = lookup_template_function (fns, arglist);
9162
9163 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9164 tmpl = determine_specialization (template_id, new_friend,
9165 &new_args,
9166 /*need_member_template=*/0,
9167 TREE_VEC_LENGTH (args),
9168 tsk_none);
9169 return instantiate_template (tmpl, new_args, tf_error);
9170 }
9171
9172 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9173
9174 /* The NEW_FRIEND will look like an instantiation, to the
9175 compiler, but is not an instantiation from the point of view of
9176 the language. For example, we might have had:
9177
9178 template <class T> struct S {
9179 template <class U> friend void f(T, U);
9180 };
9181
9182 Then, in S<int>, template <class U> void f(int, U) is not an
9183 instantiation of anything. */
9184 if (new_friend == error_mark_node)
9185 return error_mark_node;
9186
9187 DECL_USE_TEMPLATE (new_friend) = 0;
9188 if (TREE_CODE (decl) == TEMPLATE_DECL)
9189 {
9190 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9191 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9192 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9193 }
9194
9195 /* The mangled name for the NEW_FRIEND is incorrect. The function
9196 is not a template instantiation and should not be mangled like
9197 one. Therefore, we forget the mangling here; we'll recompute it
9198 later if we need it. */
9199 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9200 {
9201 SET_DECL_RTL (new_friend, NULL);
9202 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9203 }
9204
9205 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9206 {
9207 tree old_decl;
9208 tree new_friend_template_info;
9209 tree new_friend_result_template_info;
9210 tree ns;
9211 int new_friend_is_defn;
9212
9213 /* We must save some information from NEW_FRIEND before calling
9214 duplicate decls since that function will free NEW_FRIEND if
9215 possible. */
9216 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9217 new_friend_is_defn =
9218 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9219 (template_for_substitution (new_friend)))
9220 != NULL_TREE);
9221 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9222 {
9223 /* This declaration is a `primary' template. */
9224 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9225
9226 new_friend_result_template_info
9227 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9228 }
9229 else
9230 new_friend_result_template_info = NULL_TREE;
9231
9232 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9233 if (new_friend_is_defn)
9234 DECL_INITIAL (new_friend) = error_mark_node;
9235
9236 /* Inside pushdecl_namespace_level, we will push into the
9237 current namespace. However, the friend function should go
9238 into the namespace of the template. */
9239 ns = decl_namespace_context (new_friend);
9240 push_nested_namespace (ns);
9241 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9242 pop_nested_namespace (ns);
9243
9244 if (old_decl == error_mark_node)
9245 return error_mark_node;
9246
9247 if (old_decl != new_friend)
9248 {
9249 /* This new friend declaration matched an existing
9250 declaration. For example, given:
9251
9252 template <class T> void f(T);
9253 template <class U> class C {
9254 template <class T> friend void f(T) {}
9255 };
9256
9257 the friend declaration actually provides the definition
9258 of `f', once C has been instantiated for some type. So,
9259 old_decl will be the out-of-class template declaration,
9260 while new_friend is the in-class definition.
9261
9262 But, if `f' was called before this point, the
9263 instantiation of `f' will have DECL_TI_ARGS corresponding
9264 to `T' but not to `U', references to which might appear
9265 in the definition of `f'. Previously, the most general
9266 template for an instantiation of `f' was the out-of-class
9267 version; now it is the in-class version. Therefore, we
9268 run through all specialization of `f', adding to their
9269 DECL_TI_ARGS appropriately. In particular, they need a
9270 new set of outer arguments, corresponding to the
9271 arguments for this class instantiation.
9272
9273 The same situation can arise with something like this:
9274
9275 friend void f(int);
9276 template <class T> class C {
9277 friend void f(T) {}
9278 };
9279
9280 when `C<int>' is instantiated. Now, `f(int)' is defined
9281 in the class. */
9282
9283 if (!new_friend_is_defn)
9284 /* On the other hand, if the in-class declaration does
9285 *not* provide a definition, then we don't want to alter
9286 existing definitions. We can just leave everything
9287 alone. */
9288 ;
9289 else
9290 {
9291 tree new_template = TI_TEMPLATE (new_friend_template_info);
9292 tree new_args = TI_ARGS (new_friend_template_info);
9293
9294 /* Overwrite whatever template info was there before, if
9295 any, with the new template information pertaining to
9296 the declaration. */
9297 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9298
9299 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9300 {
9301 /* We should have called reregister_specialization in
9302 duplicate_decls. */
9303 gcc_assert (retrieve_specialization (new_template,
9304 new_args, 0)
9305 == old_decl);
9306
9307 /* Instantiate it if the global has already been used. */
9308 if (DECL_ODR_USED (old_decl))
9309 instantiate_decl (old_decl, /*defer_ok=*/true,
9310 /*expl_inst_class_mem_p=*/false);
9311 }
9312 else
9313 {
9314 tree t;
9315
9316 /* Indicate that the old function template is a partial
9317 instantiation. */
9318 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9319 = new_friend_result_template_info;
9320
9321 gcc_assert (new_template
9322 == most_general_template (new_template));
9323 gcc_assert (new_template != old_decl);
9324
9325 /* Reassign any specializations already in the hash table
9326 to the new more general template, and add the
9327 additional template args. */
9328 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9329 t != NULL_TREE;
9330 t = TREE_CHAIN (t))
9331 {
9332 tree spec = TREE_VALUE (t);
9333 spec_entry elt;
9334
9335 elt.tmpl = old_decl;
9336 elt.args = DECL_TI_ARGS (spec);
9337 elt.spec = NULL_TREE;
9338
9339 decl_specializations->remove_elt (&elt);
9340
9341 DECL_TI_ARGS (spec)
9342 = add_outermost_template_args (new_args,
9343 DECL_TI_ARGS (spec));
9344
9345 register_specialization
9346 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9347
9348 }
9349 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9350 }
9351 }
9352
9353 /* The information from NEW_FRIEND has been merged into OLD_DECL
9354 by duplicate_decls. */
9355 new_friend = old_decl;
9356 }
9357 }
9358 else
9359 {
9360 tree context = DECL_CONTEXT (new_friend);
9361 bool dependent_p;
9362
9363 /* In the code
9364 template <class T> class C {
9365 template <class U> friend void C1<U>::f (); // case 1
9366 friend void C2<T>::f (); // case 2
9367 };
9368 we only need to make sure CONTEXT is a complete type for
9369 case 2. To distinguish between the two cases, we note that
9370 CONTEXT of case 1 remains dependent type after tsubst while
9371 this isn't true for case 2. */
9372 ++processing_template_decl;
9373 dependent_p = dependent_type_p (context);
9374 --processing_template_decl;
9375
9376 if (!dependent_p
9377 && !complete_type_or_else (context, NULL_TREE))
9378 return error_mark_node;
9379
9380 if (COMPLETE_TYPE_P (context))
9381 {
9382 tree fn = new_friend;
9383 /* do_friend adds the TEMPLATE_DECL for any member friend
9384 template even if it isn't a member template, i.e.
9385 template <class T> friend A<T>::f();
9386 Look through it in that case. */
9387 if (TREE_CODE (fn) == TEMPLATE_DECL
9388 && !PRIMARY_TEMPLATE_P (fn))
9389 fn = DECL_TEMPLATE_RESULT (fn);
9390 /* Check to see that the declaration is really present, and,
9391 possibly obtain an improved declaration. */
9392 fn = check_classfn (context, fn, NULL_TREE);
9393
9394 if (fn)
9395 new_friend = fn;
9396 }
9397 }
9398
9399 return new_friend;
9400 }
9401
9402 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9403 template arguments, as for tsubst.
9404
9405 Returns an appropriate tsubst'd friend type or error_mark_node on
9406 failure. */
9407
9408 static tree
9409 tsubst_friend_class (tree friend_tmpl, tree args)
9410 {
9411 tree friend_type;
9412 tree tmpl;
9413 tree context;
9414
9415 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9416 {
9417 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9418 return TREE_TYPE (t);
9419 }
9420
9421 context = CP_DECL_CONTEXT (friend_tmpl);
9422
9423 if (context != global_namespace)
9424 {
9425 if (TREE_CODE (context) == NAMESPACE_DECL)
9426 push_nested_namespace (context);
9427 else
9428 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9429 }
9430
9431 /* Look for a class template declaration. We look for hidden names
9432 because two friend declarations of the same template are the
9433 same. For example, in:
9434
9435 struct A {
9436 template <typename> friend class F;
9437 };
9438 template <typename> struct B {
9439 template <typename> friend class F;
9440 };
9441
9442 both F templates are the same. */
9443 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9444 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9445
9446 /* But, if we don't find one, it might be because we're in a
9447 situation like this:
9448
9449 template <class T>
9450 struct S {
9451 template <class U>
9452 friend struct S;
9453 };
9454
9455 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9456 for `S<int>', not the TEMPLATE_DECL. */
9457 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9458 {
9459 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9460 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9461 }
9462
9463 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9464 {
9465 /* The friend template has already been declared. Just
9466 check to see that the declarations match, and install any new
9467 default parameters. We must tsubst the default parameters,
9468 of course. We only need the innermost template parameters
9469 because that is all that redeclare_class_template will look
9470 at. */
9471 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9472 > TMPL_ARGS_DEPTH (args))
9473 {
9474 tree parms;
9475 location_t saved_input_location;
9476 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9477 args, tf_warning_or_error);
9478
9479 saved_input_location = input_location;
9480 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9481 tree cons = get_constraints (tmpl);
9482 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9483 input_location = saved_input_location;
9484
9485 }
9486
9487 friend_type = TREE_TYPE (tmpl);
9488 }
9489 else
9490 {
9491 /* The friend template has not already been declared. In this
9492 case, the instantiation of the template class will cause the
9493 injection of this template into the global scope. */
9494 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9495 if (tmpl == error_mark_node)
9496 return error_mark_node;
9497
9498 /* The new TMPL is not an instantiation of anything, so we
9499 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9500 the new type because that is supposed to be the corresponding
9501 template decl, i.e., TMPL. */
9502 DECL_USE_TEMPLATE (tmpl) = 0;
9503 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9504 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9505 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9506 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9507
9508 /* Inject this template into the global scope. */
9509 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9510 }
9511
9512 if (context != global_namespace)
9513 {
9514 if (TREE_CODE (context) == NAMESPACE_DECL)
9515 pop_nested_namespace (context);
9516 else
9517 pop_nested_class ();
9518 }
9519
9520 return friend_type;
9521 }
9522
9523 /* Returns zero if TYPE cannot be completed later due to circularity.
9524 Otherwise returns one. */
9525
9526 static int
9527 can_complete_type_without_circularity (tree type)
9528 {
9529 if (type == NULL_TREE || type == error_mark_node)
9530 return 0;
9531 else if (COMPLETE_TYPE_P (type))
9532 return 1;
9533 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9534 return can_complete_type_without_circularity (TREE_TYPE (type));
9535 else if (CLASS_TYPE_P (type)
9536 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9537 return 0;
9538 else
9539 return 1;
9540 }
9541
9542 static tree tsubst_omp_clauses (tree, bool, bool, tree, tsubst_flags_t, tree);
9543
9544 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9545 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9546
9547 static tree
9548 tsubst_attribute (tree t, tree *decl_p, tree args,
9549 tsubst_flags_t complain, tree in_decl)
9550 {
9551 gcc_assert (ATTR_IS_DEPENDENT (t));
9552
9553 tree val = TREE_VALUE (t);
9554 if (val == NULL_TREE)
9555 /* Nothing to do. */;
9556 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9557 && is_attribute_p ("omp declare simd",
9558 get_attribute_name (t)))
9559 {
9560 tree clauses = TREE_VALUE (val);
9561 clauses = tsubst_omp_clauses (clauses, true, false, args,
9562 complain, in_decl);
9563 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9564 clauses = finish_omp_clauses (clauses, false, true);
9565 tree parms = DECL_ARGUMENTS (*decl_p);
9566 clauses
9567 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9568 if (clauses)
9569 val = build_tree_list (NULL_TREE, clauses);
9570 else
9571 val = NULL_TREE;
9572 }
9573 /* If the first attribute argument is an identifier, don't
9574 pass it through tsubst. Attributes like mode, format,
9575 cleanup and several target specific attributes expect it
9576 unmodified. */
9577 else if (attribute_takes_identifier_p (get_attribute_name (t)))
9578 {
9579 tree chain
9580 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
9581 /*integral_constant_expression_p=*/false);
9582 if (chain != TREE_CHAIN (val))
9583 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
9584 }
9585 else if (PACK_EXPANSION_P (val))
9586 {
9587 /* An attribute pack expansion. */
9588 tree purp = TREE_PURPOSE (t);
9589 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
9590 int len = TREE_VEC_LENGTH (pack);
9591 tree list = NULL_TREE;
9592 tree *q = &list;
9593 for (int i = 0; i < len; ++i)
9594 {
9595 tree elt = TREE_VEC_ELT (pack, i);
9596 *q = build_tree_list (purp, elt);
9597 q = &TREE_CHAIN (*q);
9598 }
9599 return list;
9600 }
9601 else
9602 val = tsubst_expr (val, args, complain, in_decl,
9603 /*integral_constant_expression_p=*/false);
9604
9605 if (val != TREE_VALUE (t))
9606 return build_tree_list (TREE_PURPOSE (t), val);
9607 return t;
9608 }
9609
9610 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
9611 unchanged or a new TREE_LIST chain. */
9612
9613 static tree
9614 tsubst_attributes (tree attributes, tree args,
9615 tsubst_flags_t complain, tree in_decl)
9616 {
9617 tree last_dep = NULL_TREE;
9618
9619 for (tree t = attributes; t; t = TREE_CHAIN (t))
9620 if (ATTR_IS_DEPENDENT (t))
9621 {
9622 last_dep = t;
9623 attributes = copy_list (attributes);
9624 break;
9625 }
9626
9627 if (last_dep)
9628 for (tree *p = &attributes; *p; p = &TREE_CHAIN (*p))
9629 {
9630 tree t = *p;
9631 if (ATTR_IS_DEPENDENT (t))
9632 {
9633 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
9634 if (subst == t)
9635 continue;
9636 *p = subst;
9637 do
9638 p = &TREE_CHAIN (*p);
9639 while (*p);
9640 *p = TREE_CHAIN (t);
9641 }
9642 }
9643
9644 return attributes;
9645 }
9646
9647 /* Apply any attributes which had to be deferred until instantiation
9648 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9649 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9650
9651 static void
9652 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9653 tree args, tsubst_flags_t complain, tree in_decl)
9654 {
9655 tree last_dep = NULL_TREE;
9656 tree t;
9657 tree *p;
9658
9659 for (t = attributes; t; t = TREE_CHAIN (t))
9660 if (ATTR_IS_DEPENDENT (t))
9661 {
9662 last_dep = t;
9663 attributes = copy_list (attributes);
9664 break;
9665 }
9666
9667 if (DECL_P (*decl_p))
9668 {
9669 if (TREE_TYPE (*decl_p) == error_mark_node)
9670 return;
9671 p = &DECL_ATTRIBUTES (*decl_p);
9672 }
9673 else
9674 p = &TYPE_ATTRIBUTES (*decl_p);
9675
9676 if (last_dep)
9677 {
9678 tree late_attrs = NULL_TREE;
9679 tree *q = &late_attrs;
9680
9681 for (*p = attributes; *p; )
9682 {
9683 t = *p;
9684 if (ATTR_IS_DEPENDENT (t))
9685 {
9686 *p = TREE_CHAIN (t);
9687 TREE_CHAIN (t) = NULL_TREE;
9688 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
9689 do
9690 q = &TREE_CHAIN (*q);
9691 while (*q);
9692 }
9693 else
9694 p = &TREE_CHAIN (t);
9695 }
9696
9697 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9698 }
9699 }
9700
9701 /* Perform (or defer) access check for typedefs that were referenced
9702 from within the template TMPL code.
9703 This is a subroutine of instantiate_decl and instantiate_class_template.
9704 TMPL is the template to consider and TARGS is the list of arguments of
9705 that template. */
9706
9707 static void
9708 perform_typedefs_access_check (tree tmpl, tree targs)
9709 {
9710 location_t saved_location;
9711 unsigned i;
9712 qualified_typedef_usage_t *iter;
9713
9714 if (!tmpl
9715 || (!CLASS_TYPE_P (tmpl)
9716 && TREE_CODE (tmpl) != FUNCTION_DECL))
9717 return;
9718
9719 saved_location = input_location;
9720 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9721 {
9722 tree type_decl = iter->typedef_decl;
9723 tree type_scope = iter->context;
9724
9725 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9726 continue;
9727
9728 if (uses_template_parms (type_decl))
9729 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9730 if (uses_template_parms (type_scope))
9731 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9732
9733 /* Make access check error messages point to the location
9734 of the use of the typedef. */
9735 input_location = iter->locus;
9736 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9737 type_decl, type_decl,
9738 tf_warning_or_error);
9739 }
9740 input_location = saved_location;
9741 }
9742
9743 static tree
9744 instantiate_class_template_1 (tree type)
9745 {
9746 tree templ, args, pattern, t, member;
9747 tree typedecl;
9748 tree pbinfo;
9749 tree base_list;
9750 unsigned int saved_maximum_field_alignment;
9751 tree fn_context;
9752
9753 if (type == error_mark_node)
9754 return error_mark_node;
9755
9756 if (COMPLETE_OR_OPEN_TYPE_P (type)
9757 || uses_template_parms (type))
9758 return type;
9759
9760 /* Figure out which template is being instantiated. */
9761 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9762 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9763
9764 /* Determine what specialization of the original template to
9765 instantiate. */
9766 t = most_specialized_partial_spec (type, tf_warning_or_error);
9767 if (t == error_mark_node)
9768 {
9769 TYPE_BEING_DEFINED (type) = 1;
9770 return error_mark_node;
9771 }
9772 else if (t)
9773 {
9774 /* This TYPE is actually an instantiation of a partial
9775 specialization. We replace the innermost set of ARGS with
9776 the arguments appropriate for substitution. For example,
9777 given:
9778
9779 template <class T> struct S {};
9780 template <class T> struct S<T*> {};
9781
9782 and supposing that we are instantiating S<int*>, ARGS will
9783 presently be {int*} -- but we need {int}. */
9784 pattern = TREE_TYPE (t);
9785 args = TREE_PURPOSE (t);
9786 }
9787 else
9788 {
9789 pattern = TREE_TYPE (templ);
9790 args = CLASSTYPE_TI_ARGS (type);
9791 }
9792
9793 /* If the template we're instantiating is incomplete, then clearly
9794 there's nothing we can do. */
9795 if (!COMPLETE_TYPE_P (pattern))
9796 return type;
9797
9798 /* If we've recursively instantiated too many templates, stop. */
9799 if (! push_tinst_level (type))
9800 return type;
9801
9802 /* Now we're really doing the instantiation. Mark the type as in
9803 the process of being defined. */
9804 TYPE_BEING_DEFINED (type) = 1;
9805
9806 /* We may be in the middle of deferred access check. Disable
9807 it now. */
9808 push_deferring_access_checks (dk_no_deferred);
9809
9810 int saved_unevaluated_operand = cp_unevaluated_operand;
9811 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9812
9813 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9814 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9815 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9816 fn_context = error_mark_node;
9817 if (!fn_context)
9818 push_to_top_level ();
9819 else
9820 {
9821 cp_unevaluated_operand = 0;
9822 c_inhibit_evaluation_warnings = 0;
9823 }
9824 /* Use #pragma pack from the template context. */
9825 saved_maximum_field_alignment = maximum_field_alignment;
9826 maximum_field_alignment = TYPE_PRECISION (pattern);
9827
9828 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9829
9830 /* Set the input location to the most specialized template definition.
9831 This is needed if tsubsting causes an error. */
9832 typedecl = TYPE_MAIN_DECL (pattern);
9833 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9834 DECL_SOURCE_LOCATION (typedecl);
9835
9836 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9837 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9838 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9839 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9840 if (ANON_AGGR_TYPE_P (pattern))
9841 SET_ANON_AGGR_TYPE_P (type);
9842 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9843 {
9844 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9845 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9846 /* Adjust visibility for template arguments. */
9847 determine_visibility (TYPE_MAIN_DECL (type));
9848 }
9849 if (CLASS_TYPE_P (type))
9850 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9851
9852 pbinfo = TYPE_BINFO (pattern);
9853
9854 /* We should never instantiate a nested class before its enclosing
9855 class; we need to look up the nested class by name before we can
9856 instantiate it, and that lookup should instantiate the enclosing
9857 class. */
9858 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9859 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9860
9861 base_list = NULL_TREE;
9862 if (BINFO_N_BASE_BINFOS (pbinfo))
9863 {
9864 tree pbase_binfo;
9865 tree pushed_scope;
9866 int i;
9867
9868 /* We must enter the scope containing the type, as that is where
9869 the accessibility of types named in dependent bases are
9870 looked up from. */
9871 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9872
9873 /* Substitute into each of the bases to determine the actual
9874 basetypes. */
9875 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9876 {
9877 tree base;
9878 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9879 tree expanded_bases = NULL_TREE;
9880 int idx, len = 1;
9881
9882 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9883 {
9884 expanded_bases =
9885 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9886 args, tf_error, NULL_TREE);
9887 if (expanded_bases == error_mark_node)
9888 continue;
9889
9890 len = TREE_VEC_LENGTH (expanded_bases);
9891 }
9892
9893 for (idx = 0; idx < len; idx++)
9894 {
9895 if (expanded_bases)
9896 /* Extract the already-expanded base class. */
9897 base = TREE_VEC_ELT (expanded_bases, idx);
9898 else
9899 /* Substitute to figure out the base class. */
9900 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9901 NULL_TREE);
9902
9903 if (base == error_mark_node)
9904 continue;
9905
9906 base_list = tree_cons (access, base, base_list);
9907 if (BINFO_VIRTUAL_P (pbase_binfo))
9908 TREE_TYPE (base_list) = integer_type_node;
9909 }
9910 }
9911
9912 /* The list is now in reverse order; correct that. */
9913 base_list = nreverse (base_list);
9914
9915 if (pushed_scope)
9916 pop_scope (pushed_scope);
9917 }
9918 /* Now call xref_basetypes to set up all the base-class
9919 information. */
9920 xref_basetypes (type, base_list);
9921
9922 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9923 (int) ATTR_FLAG_TYPE_IN_PLACE,
9924 args, tf_error, NULL_TREE);
9925 fixup_attribute_variants (type);
9926
9927 /* Now that our base classes are set up, enter the scope of the
9928 class, so that name lookups into base classes, etc. will work
9929 correctly. This is precisely analogous to what we do in
9930 begin_class_definition when defining an ordinary non-template
9931 class, except we also need to push the enclosing classes. */
9932 push_nested_class (type);
9933
9934 /* Now members are processed in the order of declaration. */
9935 for (member = CLASSTYPE_DECL_LIST (pattern);
9936 member; member = TREE_CHAIN (member))
9937 {
9938 tree t = TREE_VALUE (member);
9939
9940 if (TREE_PURPOSE (member))
9941 {
9942 if (TYPE_P (t))
9943 {
9944 /* Build new CLASSTYPE_NESTED_UTDS. */
9945
9946 tree newtag;
9947 bool class_template_p;
9948
9949 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9950 && TYPE_LANG_SPECIFIC (t)
9951 && CLASSTYPE_IS_TEMPLATE (t));
9952 /* If the member is a class template, then -- even after
9953 substitution -- there may be dependent types in the
9954 template argument list for the class. We increment
9955 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9956 that function will assume that no types are dependent
9957 when outside of a template. */
9958 if (class_template_p)
9959 ++processing_template_decl;
9960 newtag = tsubst (t, args, tf_error, NULL_TREE);
9961 if (class_template_p)
9962 --processing_template_decl;
9963 if (newtag == error_mark_node)
9964 continue;
9965
9966 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9967 {
9968 tree name = TYPE_IDENTIFIER (t);
9969
9970 if (class_template_p)
9971 /* Unfortunately, lookup_template_class sets
9972 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9973 instantiation (i.e., for the type of a member
9974 template class nested within a template class.)
9975 This behavior is required for
9976 maybe_process_partial_specialization to work
9977 correctly, but is not accurate in this case;
9978 the TAG is not an instantiation of anything.
9979 (The corresponding TEMPLATE_DECL is an
9980 instantiation, but the TYPE is not.) */
9981 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9982
9983 /* Now, we call pushtag to put this NEWTAG into the scope of
9984 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9985 pushtag calling push_template_decl. We don't have to do
9986 this for enums because it will already have been done in
9987 tsubst_enum. */
9988 if (name)
9989 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9990 pushtag (name, newtag, /*tag_scope=*/ts_current);
9991 }
9992 }
9993 else if (DECL_DECLARES_FUNCTION_P (t))
9994 {
9995 /* Build new TYPE_METHODS. */
9996 tree r;
9997
9998 if (TREE_CODE (t) == TEMPLATE_DECL)
9999 ++processing_template_decl;
10000 r = tsubst (t, args, tf_error, NULL_TREE);
10001 if (TREE_CODE (t) == TEMPLATE_DECL)
10002 --processing_template_decl;
10003 set_current_access_from_decl (r);
10004 finish_member_declaration (r);
10005 /* Instantiate members marked with attribute used. */
10006 if (r != error_mark_node && DECL_PRESERVE_P (r))
10007 mark_used (r);
10008 if (TREE_CODE (r) == FUNCTION_DECL
10009 && DECL_OMP_DECLARE_REDUCTION_P (r))
10010 cp_check_omp_declare_reduction (r);
10011 }
10012 else if (DECL_CLASS_TEMPLATE_P (t)
10013 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10014 /* A closure type for a lambda in a default argument for a
10015 member template. Ignore it; it will be instantiated with
10016 the default argument. */;
10017 else
10018 {
10019 /* Build new TYPE_FIELDS. */
10020 if (TREE_CODE (t) == STATIC_ASSERT)
10021 {
10022 tree condition;
10023
10024 ++c_inhibit_evaluation_warnings;
10025 condition =
10026 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10027 tf_warning_or_error, NULL_TREE,
10028 /*integral_constant_expression_p=*/true);
10029 --c_inhibit_evaluation_warnings;
10030
10031 finish_static_assert (condition,
10032 STATIC_ASSERT_MESSAGE (t),
10033 STATIC_ASSERT_SOURCE_LOCATION (t),
10034 /*member_p=*/true);
10035 }
10036 else if (TREE_CODE (t) != CONST_DECL)
10037 {
10038 tree r;
10039 tree vec = NULL_TREE;
10040 int len = 1;
10041
10042 /* The file and line for this declaration, to
10043 assist in error message reporting. Since we
10044 called push_tinst_level above, we don't need to
10045 restore these. */
10046 input_location = DECL_SOURCE_LOCATION (t);
10047
10048 if (TREE_CODE (t) == TEMPLATE_DECL)
10049 ++processing_template_decl;
10050 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10051 if (TREE_CODE (t) == TEMPLATE_DECL)
10052 --processing_template_decl;
10053
10054 if (TREE_CODE (r) == TREE_VEC)
10055 {
10056 /* A capture pack became multiple fields. */
10057 vec = r;
10058 len = TREE_VEC_LENGTH (vec);
10059 }
10060
10061 for (int i = 0; i < len; ++i)
10062 {
10063 if (vec)
10064 r = TREE_VEC_ELT (vec, i);
10065 if (VAR_P (r))
10066 {
10067 /* In [temp.inst]:
10068
10069 [t]he initialization (and any associated
10070 side-effects) of a static data member does
10071 not occur unless the static data member is
10072 itself used in a way that requires the
10073 definition of the static data member to
10074 exist.
10075
10076 Therefore, we do not substitute into the
10077 initialized for the static data member here. */
10078 finish_static_data_member_decl
10079 (r,
10080 /*init=*/NULL_TREE,
10081 /*init_const_expr_p=*/false,
10082 /*asmspec_tree=*/NULL_TREE,
10083 /*flags=*/0);
10084 /* Instantiate members marked with attribute used. */
10085 if (r != error_mark_node && DECL_PRESERVE_P (r))
10086 mark_used (r);
10087 }
10088 else if (TREE_CODE (r) == FIELD_DECL)
10089 {
10090 /* Determine whether R has a valid type and can be
10091 completed later. If R is invalid, then its type
10092 is replaced by error_mark_node. */
10093 tree rtype = TREE_TYPE (r);
10094 if (can_complete_type_without_circularity (rtype))
10095 complete_type (rtype);
10096
10097 if (TREE_CODE (r) == FIELD_DECL
10098 && TREE_CODE (rtype) == ARRAY_TYPE
10099 && COMPLETE_TYPE_P (TREE_TYPE (rtype))
10100 && !COMPLETE_TYPE_P (rtype))
10101 {
10102 /* Flexible array mmembers of elements
10103 of complete type have an incomplete type
10104 and that's okay. */
10105 }
10106 else if (!COMPLETE_TYPE_P (rtype))
10107 {
10108 cxx_incomplete_type_error (r, rtype);
10109 TREE_TYPE (r) = error_mark_node;
10110 }
10111 }
10112
10113 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10114 such a thing will already have been added to the field
10115 list by tsubst_enum in finish_member_declaration in the
10116 CLASSTYPE_NESTED_UTDS case above. */
10117 if (!(TREE_CODE (r) == TYPE_DECL
10118 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10119 && DECL_ARTIFICIAL (r)))
10120 {
10121 set_current_access_from_decl (r);
10122 finish_member_declaration (r);
10123 }
10124 }
10125 }
10126 }
10127 }
10128 else
10129 {
10130 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10131 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10132 {
10133 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10134
10135 tree friend_type = t;
10136 bool adjust_processing_template_decl = false;
10137
10138 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10139 {
10140 /* template <class T> friend class C; */
10141 friend_type = tsubst_friend_class (friend_type, args);
10142 adjust_processing_template_decl = true;
10143 }
10144 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10145 {
10146 /* template <class T> friend class C::D; */
10147 friend_type = tsubst (friend_type, args,
10148 tf_warning_or_error, NULL_TREE);
10149 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10150 friend_type = TREE_TYPE (friend_type);
10151 adjust_processing_template_decl = true;
10152 }
10153 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10154 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10155 {
10156 /* This could be either
10157
10158 friend class T::C;
10159
10160 when dependent_type_p is false or
10161
10162 template <class U> friend class T::C;
10163
10164 otherwise. */
10165 friend_type = tsubst (friend_type, args,
10166 tf_warning_or_error, NULL_TREE);
10167 /* Bump processing_template_decl for correct
10168 dependent_type_p calculation. */
10169 ++processing_template_decl;
10170 if (dependent_type_p (friend_type))
10171 adjust_processing_template_decl = true;
10172 --processing_template_decl;
10173 }
10174 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10175 && hidden_name_p (TYPE_NAME (friend_type)))
10176 {
10177 /* friend class C;
10178
10179 where C hasn't been declared yet. Let's lookup name
10180 from namespace scope directly, bypassing any name that
10181 come from dependent base class. */
10182 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10183
10184 /* The call to xref_tag_from_type does injection for friend
10185 classes. */
10186 push_nested_namespace (ns);
10187 friend_type =
10188 xref_tag_from_type (friend_type, NULL_TREE,
10189 /*tag_scope=*/ts_current);
10190 pop_nested_namespace (ns);
10191 }
10192 else if (uses_template_parms (friend_type))
10193 /* friend class C<T>; */
10194 friend_type = tsubst (friend_type, args,
10195 tf_warning_or_error, NULL_TREE);
10196 /* Otherwise it's
10197
10198 friend class C;
10199
10200 where C is already declared or
10201
10202 friend class C<int>;
10203
10204 We don't have to do anything in these cases. */
10205
10206 if (adjust_processing_template_decl)
10207 /* Trick make_friend_class into realizing that the friend
10208 we're adding is a template, not an ordinary class. It's
10209 important that we use make_friend_class since it will
10210 perform some error-checking and output cross-reference
10211 information. */
10212 ++processing_template_decl;
10213
10214 if (friend_type != error_mark_node)
10215 make_friend_class (type, friend_type, /*complain=*/false);
10216
10217 if (adjust_processing_template_decl)
10218 --processing_template_decl;
10219 }
10220 else
10221 {
10222 /* Build new DECL_FRIENDLIST. */
10223 tree r;
10224
10225 /* The file and line for this declaration, to
10226 assist in error message reporting. Since we
10227 called push_tinst_level above, we don't need to
10228 restore these. */
10229 input_location = DECL_SOURCE_LOCATION (t);
10230
10231 if (TREE_CODE (t) == TEMPLATE_DECL)
10232 {
10233 ++processing_template_decl;
10234 push_deferring_access_checks (dk_no_check);
10235 }
10236
10237 r = tsubst_friend_function (t, args);
10238 add_friend (type, r, /*complain=*/false);
10239 if (TREE_CODE (t) == TEMPLATE_DECL)
10240 {
10241 pop_deferring_access_checks ();
10242 --processing_template_decl;
10243 }
10244 }
10245 }
10246 }
10247
10248 if (fn_context)
10249 {
10250 /* Restore these before substituting into the lambda capture
10251 initializers. */
10252 cp_unevaluated_operand = saved_unevaluated_operand;
10253 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10254 }
10255
10256 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10257 {
10258 tree decl = lambda_function (type);
10259 if (decl)
10260 {
10261 if (!DECL_TEMPLATE_INFO (decl)
10262 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10263 {
10264 /* Set function_depth to avoid garbage collection. */
10265 ++function_depth;
10266 instantiate_decl (decl, false, false);
10267 --function_depth;
10268 }
10269
10270 /* We need to instantiate the capture list from the template
10271 after we've instantiated the closure members, but before we
10272 consider adding the conversion op. Also keep any captures
10273 that may have been added during instantiation of the op(). */
10274 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10275 tree tmpl_cap
10276 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10277 args, tf_warning_or_error, NULL_TREE,
10278 false, false);
10279
10280 LAMBDA_EXPR_CAPTURE_LIST (expr)
10281 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10282
10283 maybe_add_lambda_conv_op (type);
10284 }
10285 else
10286 gcc_assert (errorcount);
10287 }
10288
10289 /* Set the file and line number information to whatever is given for
10290 the class itself. This puts error messages involving generated
10291 implicit functions at a predictable point, and the same point
10292 that would be used for non-template classes. */
10293 input_location = DECL_SOURCE_LOCATION (typedecl);
10294
10295 unreverse_member_declarations (type);
10296 finish_struct_1 (type);
10297 TYPE_BEING_DEFINED (type) = 0;
10298
10299 /* We don't instantiate default arguments for member functions. 14.7.1:
10300
10301 The implicit instantiation of a class template specialization causes
10302 the implicit instantiation of the declarations, but not of the
10303 definitions or default arguments, of the class member functions,
10304 member classes, static data members and member templates.... */
10305
10306 /* Some typedefs referenced from within the template code need to be access
10307 checked at template instantiation time, i.e now. These types were
10308 added to the template at parsing time. Let's get those and perform
10309 the access checks then. */
10310 perform_typedefs_access_check (pattern, args);
10311 perform_deferred_access_checks (tf_warning_or_error);
10312 pop_nested_class ();
10313 maximum_field_alignment = saved_maximum_field_alignment;
10314 if (!fn_context)
10315 pop_from_top_level ();
10316 pop_deferring_access_checks ();
10317 pop_tinst_level ();
10318
10319 /* The vtable for a template class can be emitted in any translation
10320 unit in which the class is instantiated. When there is no key
10321 method, however, finish_struct_1 will already have added TYPE to
10322 the keyed_classes list. */
10323 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10324 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10325
10326 return type;
10327 }
10328
10329 /* Wrapper for instantiate_class_template_1. */
10330
10331 tree
10332 instantiate_class_template (tree type)
10333 {
10334 tree ret;
10335 timevar_push (TV_TEMPLATE_INST);
10336 ret = instantiate_class_template_1 (type);
10337 timevar_pop (TV_TEMPLATE_INST);
10338 return ret;
10339 }
10340
10341 static tree
10342 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10343 {
10344 tree r;
10345
10346 if (!t)
10347 r = t;
10348 else if (TYPE_P (t))
10349 r = tsubst (t, args, complain, in_decl);
10350 else
10351 {
10352 if (!(complain & tf_warning))
10353 ++c_inhibit_evaluation_warnings;
10354 r = tsubst_expr (t, args, complain, in_decl,
10355 /*integral_constant_expression_p=*/true);
10356 if (!(complain & tf_warning))
10357 --c_inhibit_evaluation_warnings;
10358 }
10359 return r;
10360 }
10361
10362 /* Given a function parameter pack TMPL_PARM and some function parameters
10363 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10364 and set *SPEC_P to point at the next point in the list. */
10365
10366 tree
10367 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10368 {
10369 /* Collect all of the extra "packed" parameters into an
10370 argument pack. */
10371 tree parmvec;
10372 tree parmtypevec;
10373 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10374 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10375 tree spec_parm = *spec_p;
10376 int i, len;
10377
10378 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10379 if (tmpl_parm
10380 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10381 break;
10382
10383 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10384 parmvec = make_tree_vec (len);
10385 parmtypevec = make_tree_vec (len);
10386 spec_parm = *spec_p;
10387 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10388 {
10389 TREE_VEC_ELT (parmvec, i) = spec_parm;
10390 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10391 }
10392
10393 /* Build the argument packs. */
10394 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10395 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10396 TREE_TYPE (argpack) = argtypepack;
10397 *spec_p = spec_parm;
10398
10399 return argpack;
10400 }
10401
10402 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10403 NONTYPE_ARGUMENT_PACK. */
10404
10405 static tree
10406 make_fnparm_pack (tree spec_parm)
10407 {
10408 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10409 }
10410
10411 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10412 pack expansion with no extra args, 2 if it has extra args, or 0
10413 if it is not a pack expansion. */
10414
10415 static int
10416 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10417 {
10418 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10419 if (i >= TREE_VEC_LENGTH (vec))
10420 return 0;
10421 tree elt = TREE_VEC_ELT (vec, i);
10422 if (DECL_P (elt))
10423 /* A decl pack is itself an expansion. */
10424 elt = TREE_TYPE (elt);
10425 if (!PACK_EXPANSION_P (elt))
10426 return 0;
10427 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10428 return 2;
10429 return 1;
10430 }
10431
10432
10433 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10434
10435 static tree
10436 make_argument_pack_select (tree arg_pack, unsigned index)
10437 {
10438 tree aps = make_node (ARGUMENT_PACK_SELECT);
10439
10440 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10441 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10442
10443 return aps;
10444 }
10445
10446 /* This is a subroutine of tsubst_pack_expansion.
10447
10448 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10449 mechanism to store the (non complete list of) arguments of the
10450 substitution and return a non substituted pack expansion, in order
10451 to wait for when we have enough arguments to really perform the
10452 substitution. */
10453
10454 static bool
10455 use_pack_expansion_extra_args_p (tree parm_packs,
10456 int arg_pack_len,
10457 bool has_empty_arg)
10458 {
10459 /* If one pack has an expansion and another pack has a normal
10460 argument or if one pack has an empty argument and an another
10461 one hasn't then tsubst_pack_expansion cannot perform the
10462 substitution and need to fall back on the
10463 PACK_EXPANSION_EXTRA mechanism. */
10464 if (parm_packs == NULL_TREE)
10465 return false;
10466 else if (has_empty_arg)
10467 return true;
10468
10469 bool has_expansion_arg = false;
10470 for (int i = 0 ; i < arg_pack_len; ++i)
10471 {
10472 bool has_non_expansion_arg = false;
10473 for (tree parm_pack = parm_packs;
10474 parm_pack;
10475 parm_pack = TREE_CHAIN (parm_pack))
10476 {
10477 tree arg = TREE_VALUE (parm_pack);
10478
10479 int exp = argument_pack_element_is_expansion_p (arg, i);
10480 if (exp == 2)
10481 /* We can't substitute a pack expansion with extra args into
10482 our pattern. */
10483 return true;
10484 else if (exp)
10485 has_expansion_arg = true;
10486 else
10487 has_non_expansion_arg = true;
10488 }
10489
10490 if (has_expansion_arg && has_non_expansion_arg)
10491 return true;
10492 }
10493 return false;
10494 }
10495
10496 /* [temp.variadic]/6 says that:
10497
10498 The instantiation of a pack expansion [...]
10499 produces a list E1,E2, ..., En, where N is the number of elements
10500 in the pack expansion parameters.
10501
10502 This subroutine of tsubst_pack_expansion produces one of these Ei.
10503
10504 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10505 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10506 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10507 INDEX is the index 'i' of the element Ei to produce. ARGS,
10508 COMPLAIN, and IN_DECL are the same parameters as for the
10509 tsubst_pack_expansion function.
10510
10511 The function returns the resulting Ei upon successful completion,
10512 or error_mark_node.
10513
10514 Note that this function possibly modifies the ARGS parameter, so
10515 it's the responsibility of the caller to restore it. */
10516
10517 static tree
10518 gen_elem_of_pack_expansion_instantiation (tree pattern,
10519 tree parm_packs,
10520 unsigned index,
10521 tree args /* This parm gets
10522 modified. */,
10523 tsubst_flags_t complain,
10524 tree in_decl)
10525 {
10526 tree t;
10527 bool ith_elem_is_expansion = false;
10528
10529 /* For each parameter pack, change the substitution of the parameter
10530 pack to the ith argument in its argument pack, then expand the
10531 pattern. */
10532 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10533 {
10534 tree parm = TREE_PURPOSE (pack);
10535 tree arg_pack = TREE_VALUE (pack);
10536 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10537
10538 ith_elem_is_expansion |=
10539 argument_pack_element_is_expansion_p (arg_pack, index);
10540
10541 /* Select the Ith argument from the pack. */
10542 if (TREE_CODE (parm) == PARM_DECL
10543 || TREE_CODE (parm) == FIELD_DECL)
10544 {
10545 if (index == 0)
10546 {
10547 aps = make_argument_pack_select (arg_pack, index);
10548 if (!mark_used (parm, complain) && !(complain & tf_error))
10549 return error_mark_node;
10550 register_local_specialization (aps, parm);
10551 }
10552 else
10553 aps = retrieve_local_specialization (parm);
10554 }
10555 else
10556 {
10557 int idx, level;
10558 template_parm_level_and_index (parm, &level, &idx);
10559
10560 if (index == 0)
10561 {
10562 aps = make_argument_pack_select (arg_pack, index);
10563 /* Update the corresponding argument. */
10564 TMPL_ARG (args, level, idx) = aps;
10565 }
10566 else
10567 /* Re-use the ARGUMENT_PACK_SELECT. */
10568 aps = TMPL_ARG (args, level, idx);
10569 }
10570 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10571 }
10572
10573 /* Substitute into the PATTERN with the (possibly altered)
10574 arguments. */
10575 if (pattern == in_decl)
10576 /* Expanding a fixed parameter pack from
10577 coerce_template_parameter_pack. */
10578 t = tsubst_decl (pattern, args, complain);
10579 else if (pattern == error_mark_node)
10580 t = error_mark_node;
10581 else if (constraint_p (pattern))
10582 {
10583 if (processing_template_decl)
10584 t = tsubst_constraint (pattern, args, complain, in_decl);
10585 else
10586 t = (constraints_satisfied_p (pattern, args)
10587 ? boolean_true_node : boolean_false_node);
10588 }
10589 else if (!TYPE_P (pattern))
10590 t = tsubst_expr (pattern, args, complain, in_decl,
10591 /*integral_constant_expression_p=*/false);
10592 else
10593 t = tsubst (pattern, args, complain, in_decl);
10594
10595 /* If the Ith argument pack element is a pack expansion, then
10596 the Ith element resulting from the substituting is going to
10597 be a pack expansion as well. */
10598 if (ith_elem_is_expansion)
10599 t = make_pack_expansion (t);
10600
10601 return t;
10602 }
10603
10604 /* When the unexpanded parameter pack in a fold expression expands to an empty
10605 sequence, the value of the expression is as follows; the program is
10606 ill-formed if the operator is not listed in this table.
10607
10608 * 1
10609 + 0
10610 & -1
10611 | 0
10612 && true
10613 || false
10614 , void() */
10615
10616 tree
10617 expand_empty_fold (tree t, tsubst_flags_t complain)
10618 {
10619 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10620 if (!FOLD_EXPR_MODIFY_P (t))
10621 switch (code)
10622 {
10623 case MULT_EXPR:
10624 return integer_one_node;
10625 case PLUS_EXPR:
10626 return integer_zero_node;
10627 case BIT_AND_EXPR:
10628 return integer_minus_one_node;
10629 case BIT_IOR_EXPR:
10630 return integer_zero_node;
10631 case TRUTH_ANDIF_EXPR:
10632 return boolean_true_node;
10633 case TRUTH_ORIF_EXPR:
10634 return boolean_false_node;
10635 case COMPOUND_EXPR:
10636 return void_node;
10637 default:
10638 break;
10639 }
10640
10641 if (complain & tf_error)
10642 error_at (location_of (t),
10643 "fold of empty expansion over %O", code);
10644 return error_mark_node;
10645 }
10646
10647 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10648 form an expression that combines the two terms using the
10649 operator of T. */
10650
10651 static tree
10652 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10653 {
10654 tree op = FOLD_EXPR_OP (t);
10655 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10656
10657 // Handle compound assignment operators.
10658 if (FOLD_EXPR_MODIFY_P (t))
10659 return build_x_modify_expr (input_location, left, code, right, complain);
10660
10661 switch (code)
10662 {
10663 case COMPOUND_EXPR:
10664 return build_x_compound_expr (input_location, left, right, complain);
10665 case DOTSTAR_EXPR:
10666 return build_m_component_ref (left, right, complain);
10667 default:
10668 return build_x_binary_op (input_location, code,
10669 left, TREE_CODE (left),
10670 right, TREE_CODE (right),
10671 /*overload=*/NULL,
10672 complain);
10673 }
10674 }
10675
10676 /* Substitute ARGS into the pack of a fold expression T. */
10677
10678 static inline tree
10679 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10680 {
10681 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10682 }
10683
10684 /* Substitute ARGS into the pack of a fold expression T. */
10685
10686 static inline tree
10687 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10688 {
10689 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10690 }
10691
10692 /* Expand a PACK of arguments into a grouped as left fold.
10693 Given a pack containing elements A0, A1, ..., An and an
10694 operator @, this builds the expression:
10695
10696 ((A0 @ A1) @ A2) ... @ An
10697
10698 Note that PACK must not be empty.
10699
10700 The operator is defined by the original fold expression T. */
10701
10702 static tree
10703 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10704 {
10705 tree left = TREE_VEC_ELT (pack, 0);
10706 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10707 {
10708 tree right = TREE_VEC_ELT (pack, i);
10709 left = fold_expression (t, left, right, complain);
10710 }
10711 return left;
10712 }
10713
10714 /* Substitute into a unary left fold expression. */
10715
10716 static tree
10717 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10718 tree in_decl)
10719 {
10720 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10721 if (pack == error_mark_node)
10722 return error_mark_node;
10723 if (TREE_VEC_LENGTH (pack) == 0)
10724 return expand_empty_fold (t, complain);
10725 else
10726 return expand_left_fold (t, pack, complain);
10727 }
10728
10729 /* Substitute into a binary left fold expression.
10730
10731 Do ths by building a single (non-empty) vector of argumnts and
10732 building the expression from those elements. */
10733
10734 static tree
10735 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10736 tree in_decl)
10737 {
10738 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10739 if (pack == error_mark_node)
10740 return error_mark_node;
10741 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10742 if (init == error_mark_node)
10743 return error_mark_node;
10744
10745 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10746 TREE_VEC_ELT (vec, 0) = init;
10747 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10748 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10749
10750 return expand_left_fold (t, vec, complain);
10751 }
10752
10753 /* Expand a PACK of arguments into a grouped as right fold.
10754 Given a pack containing elementns A0, A1, ..., and an
10755 operator @, this builds the expression:
10756
10757 A0@ ... (An-2 @ (An-1 @ An))
10758
10759 Note that PACK must not be empty.
10760
10761 The operator is defined by the original fold expression T. */
10762
10763 tree
10764 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10765 {
10766 // Build the expression.
10767 int n = TREE_VEC_LENGTH (pack);
10768 tree right = TREE_VEC_ELT (pack, n - 1);
10769 for (--n; n != 0; --n)
10770 {
10771 tree left = TREE_VEC_ELT (pack, n - 1);
10772 right = fold_expression (t, left, right, complain);
10773 }
10774 return right;
10775 }
10776
10777 /* Substitute into a unary right fold expression. */
10778
10779 static tree
10780 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10781 tree in_decl)
10782 {
10783 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10784 if (pack == error_mark_node)
10785 return error_mark_node;
10786 if (TREE_VEC_LENGTH (pack) == 0)
10787 return expand_empty_fold (t, complain);
10788 else
10789 return expand_right_fold (t, pack, complain);
10790 }
10791
10792 /* Substitute into a binary right fold expression.
10793
10794 Do ths by building a single (non-empty) vector of arguments and
10795 building the expression from those elements. */
10796
10797 static tree
10798 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10799 tree in_decl)
10800 {
10801 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10802 if (pack == error_mark_node)
10803 return error_mark_node;
10804 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10805 if (init == error_mark_node)
10806 return error_mark_node;
10807
10808 int n = TREE_VEC_LENGTH (pack);
10809 tree vec = make_tree_vec (n + 1);
10810 for (int i = 0; i < n; ++i)
10811 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10812 TREE_VEC_ELT (vec, n) = init;
10813
10814 return expand_right_fold (t, vec, complain);
10815 }
10816
10817
10818 /* Substitute ARGS into T, which is an pack expansion
10819 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10820 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10821 (if only a partial substitution could be performed) or
10822 ERROR_MARK_NODE if there was an error. */
10823 tree
10824 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10825 tree in_decl)
10826 {
10827 tree pattern;
10828 tree pack, packs = NULL_TREE;
10829 bool unsubstituted_packs = false;
10830 int i, len = -1;
10831 tree result;
10832 hash_map<tree, tree> *saved_local_specializations = NULL;
10833 bool need_local_specializations = false;
10834 int levels;
10835
10836 gcc_assert (PACK_EXPANSION_P (t));
10837 pattern = PACK_EXPANSION_PATTERN (t);
10838
10839 /* Add in any args remembered from an earlier partial instantiation. */
10840 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10841
10842 levels = TMPL_ARGS_DEPTH (args);
10843
10844 /* Determine the argument packs that will instantiate the parameter
10845 packs used in the expansion expression. While we're at it,
10846 compute the number of arguments to be expanded and make sure it
10847 is consistent. */
10848 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10849 pack = TREE_CHAIN (pack))
10850 {
10851 tree parm_pack = TREE_VALUE (pack);
10852 tree arg_pack = NULL_TREE;
10853 tree orig_arg = NULL_TREE;
10854 int level = 0;
10855
10856 if (TREE_CODE (parm_pack) == BASES)
10857 {
10858 if (BASES_DIRECT (parm_pack))
10859 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10860 args, complain, in_decl, false));
10861 else
10862 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10863 args, complain, in_decl, false));
10864 }
10865 if (TREE_CODE (parm_pack) == PARM_DECL)
10866 {
10867 /* We know we have correct local_specializations if this
10868 expansion is at function scope, or if we're dealing with a
10869 local parameter in a requires expression; for the latter,
10870 tsubst_requires_expr set it up appropriately. */
10871 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10872 arg_pack = retrieve_local_specialization (parm_pack);
10873 else
10874 /* We can't rely on local_specializations for a parameter
10875 name used later in a function declaration (such as in a
10876 late-specified return type). Even if it exists, it might
10877 have the wrong value for a recursive call. */
10878 need_local_specializations = true;
10879
10880 if (!arg_pack)
10881 {
10882 /* This parameter pack was used in an unevaluated context. Just
10883 make a dummy decl, since it's only used for its type. */
10884 arg_pack = tsubst_decl (parm_pack, args, complain);
10885 if (arg_pack && DECL_PACK_P (arg_pack))
10886 /* Partial instantiation of the parm_pack, we can't build
10887 up an argument pack yet. */
10888 arg_pack = NULL_TREE;
10889 else
10890 arg_pack = make_fnparm_pack (arg_pack);
10891 }
10892 }
10893 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10894 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10895 else
10896 {
10897 int idx;
10898 template_parm_level_and_index (parm_pack, &level, &idx);
10899
10900 if (level <= levels)
10901 arg_pack = TMPL_ARG (args, level, idx);
10902 }
10903
10904 orig_arg = arg_pack;
10905 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10906 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10907
10908 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10909 /* This can only happen if we forget to expand an argument
10910 pack somewhere else. Just return an error, silently. */
10911 {
10912 result = make_tree_vec (1);
10913 TREE_VEC_ELT (result, 0) = error_mark_node;
10914 return result;
10915 }
10916
10917 if (arg_pack)
10918 {
10919 int my_len =
10920 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10921
10922 /* Don't bother trying to do a partial substitution with
10923 incomplete packs; we'll try again after deduction. */
10924 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10925 return t;
10926
10927 if (len < 0)
10928 len = my_len;
10929 else if (len != my_len)
10930 {
10931 if (!(complain & tf_error))
10932 /* Fail quietly. */;
10933 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10934 error ("mismatched argument pack lengths while expanding "
10935 "%<%T%>",
10936 pattern);
10937 else
10938 error ("mismatched argument pack lengths while expanding "
10939 "%<%E%>",
10940 pattern);
10941 return error_mark_node;
10942 }
10943
10944 /* Keep track of the parameter packs and their corresponding
10945 argument packs. */
10946 packs = tree_cons (parm_pack, arg_pack, packs);
10947 TREE_TYPE (packs) = orig_arg;
10948 }
10949 else
10950 {
10951 /* We can't substitute for this parameter pack. We use a flag as
10952 well as the missing_level counter because function parameter
10953 packs don't have a level. */
10954 unsubstituted_packs = true;
10955 }
10956 }
10957
10958 /* If the expansion is just T..., return the matching argument pack, unless
10959 we need to call convert_from_reference on all the elements. This is an
10960 important optimization; see c++/68422. */
10961 if (!unsubstituted_packs
10962 && TREE_PURPOSE (packs) == pattern)
10963 {
10964 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10965 /* Types need no adjustment, nor does sizeof..., and if we still have
10966 some pack expansion args we won't do anything yet. */
10967 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10968 || PACK_EXPANSION_SIZEOF_P (t)
10969 || pack_expansion_args_count (args))
10970 return args;
10971 /* Also optimize expression pack expansions if we can tell that the
10972 elements won't have reference type. */
10973 tree type = TREE_TYPE (pattern);
10974 if (type && TREE_CODE (type) != REFERENCE_TYPE
10975 && !PACK_EXPANSION_P (type)
10976 && !WILDCARD_TYPE_P (type))
10977 return args;
10978 /* Otherwise use the normal path so we get convert_from_reference. */
10979 }
10980
10981 /* We cannot expand this expansion expression, because we don't have
10982 all of the argument packs we need. */
10983 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10984 {
10985 /* We got some full packs, but we can't substitute them in until we
10986 have values for all the packs. So remember these until then. */
10987
10988 t = make_pack_expansion (pattern);
10989 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10990 return t;
10991 }
10992 else if (unsubstituted_packs)
10993 {
10994 /* There were no real arguments, we're just replacing a parameter
10995 pack with another version of itself. Substitute into the
10996 pattern and return a PACK_EXPANSION_*. The caller will need to
10997 deal with that. */
10998 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10999 t = tsubst_expr (pattern, args, complain, in_decl,
11000 /*integral_constant_expression_p=*/false);
11001 else
11002 t = tsubst (pattern, args, complain, in_decl);
11003 t = make_pack_expansion (t);
11004 return t;
11005 }
11006
11007 gcc_assert (len >= 0);
11008
11009 if (need_local_specializations)
11010 {
11011 /* We're in a late-specified return type, so create our own local
11012 specializations map; the current map is either NULL or (in the
11013 case of recursive unification) might have bindings that we don't
11014 want to use or alter. */
11015 saved_local_specializations = local_specializations;
11016 local_specializations = new hash_map<tree, tree>;
11017 }
11018
11019 /* For each argument in each argument pack, substitute into the
11020 pattern. */
11021 result = make_tree_vec (len);
11022 for (i = 0; i < len; ++i)
11023 {
11024 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11025 i,
11026 args, complain,
11027 in_decl);
11028 TREE_VEC_ELT (result, i) = t;
11029 if (t == error_mark_node)
11030 {
11031 result = error_mark_node;
11032 break;
11033 }
11034 }
11035
11036 /* Update ARGS to restore the substitution from parameter packs to
11037 their argument packs. */
11038 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11039 {
11040 tree parm = TREE_PURPOSE (pack);
11041
11042 if (TREE_CODE (parm) == PARM_DECL
11043 || TREE_CODE (parm) == FIELD_DECL)
11044 register_local_specialization (TREE_TYPE (pack), parm);
11045 else
11046 {
11047 int idx, level;
11048
11049 if (TREE_VALUE (pack) == NULL_TREE)
11050 continue;
11051
11052 template_parm_level_and_index (parm, &level, &idx);
11053
11054 /* Update the corresponding argument. */
11055 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11056 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11057 TREE_TYPE (pack);
11058 else
11059 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11060 }
11061 }
11062
11063 if (need_local_specializations)
11064 {
11065 delete local_specializations;
11066 local_specializations = saved_local_specializations;
11067 }
11068
11069 return result;
11070 }
11071
11072 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11073 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11074 parameter packs; all parms generated from a function parameter pack will
11075 have the same DECL_PARM_INDEX. */
11076
11077 tree
11078 get_pattern_parm (tree parm, tree tmpl)
11079 {
11080 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11081 tree patparm;
11082
11083 if (DECL_ARTIFICIAL (parm))
11084 {
11085 for (patparm = DECL_ARGUMENTS (pattern);
11086 patparm; patparm = DECL_CHAIN (patparm))
11087 if (DECL_ARTIFICIAL (patparm)
11088 && DECL_NAME (parm) == DECL_NAME (patparm))
11089 break;
11090 }
11091 else
11092 {
11093 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11094 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11095 gcc_assert (DECL_PARM_INDEX (patparm)
11096 == DECL_PARM_INDEX (parm));
11097 }
11098
11099 return patparm;
11100 }
11101
11102 /* Substitute ARGS into the vector or list of template arguments T. */
11103
11104 static tree
11105 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11106 {
11107 tree orig_t = t;
11108 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11109 tree *elts;
11110
11111 if (t == error_mark_node)
11112 return error_mark_node;
11113
11114 len = TREE_VEC_LENGTH (t);
11115 elts = XALLOCAVEC (tree, len);
11116
11117 for (i = 0; i < len; i++)
11118 {
11119 tree orig_arg = TREE_VEC_ELT (t, i);
11120 tree new_arg;
11121
11122 if (TREE_CODE (orig_arg) == TREE_VEC)
11123 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11124 else if (PACK_EXPANSION_P (orig_arg))
11125 {
11126 /* Substitute into an expansion expression. */
11127 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11128
11129 if (TREE_CODE (new_arg) == TREE_VEC)
11130 /* Add to the expanded length adjustment the number of
11131 expanded arguments. We subtract one from this
11132 measurement, because the argument pack expression
11133 itself is already counted as 1 in
11134 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11135 the argument pack is empty. */
11136 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11137 }
11138 else if (ARGUMENT_PACK_P (orig_arg))
11139 {
11140 /* Substitute into each of the arguments. */
11141 new_arg = TYPE_P (orig_arg)
11142 ? cxx_make_type (TREE_CODE (orig_arg))
11143 : make_node (TREE_CODE (orig_arg));
11144
11145 SET_ARGUMENT_PACK_ARGS (
11146 new_arg,
11147 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11148 args, complain, in_decl));
11149
11150 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11151 new_arg = error_mark_node;
11152
11153 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11154 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11155 complain, in_decl);
11156 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11157
11158 if (TREE_TYPE (new_arg) == error_mark_node)
11159 new_arg = error_mark_node;
11160 }
11161 }
11162 else
11163 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11164
11165 if (new_arg == error_mark_node)
11166 return error_mark_node;
11167
11168 elts[i] = new_arg;
11169 if (new_arg != orig_arg)
11170 need_new = 1;
11171 }
11172
11173 if (!need_new)
11174 return t;
11175
11176 /* Make space for the expanded arguments coming from template
11177 argument packs. */
11178 t = make_tree_vec (len + expanded_len_adjust);
11179 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11180 arguments for a member template.
11181 In that case each TREE_VEC in ORIG_T represents a level of template
11182 arguments, and ORIG_T won't carry any non defaulted argument count.
11183 It will rather be the nested TREE_VECs that will carry one.
11184 In other words, ORIG_T carries a non defaulted argument count only
11185 if it doesn't contain any nested TREE_VEC. */
11186 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11187 {
11188 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11189 count += expanded_len_adjust;
11190 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11191 }
11192 for (i = 0, out = 0; i < len; i++)
11193 {
11194 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11195 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11196 && TREE_CODE (elts[i]) == TREE_VEC)
11197 {
11198 int idx;
11199
11200 /* Now expand the template argument pack "in place". */
11201 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11202 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11203 }
11204 else
11205 {
11206 TREE_VEC_ELT (t, out) = elts[i];
11207 out++;
11208 }
11209 }
11210
11211 return t;
11212 }
11213
11214 /* Return the result of substituting ARGS into the template parameters
11215 given by PARMS. If there are m levels of ARGS and m + n levels of
11216 PARMS, then the result will contain n levels of PARMS. For
11217 example, if PARMS is `template <class T> template <class U>
11218 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11219 result will be `template <int*, double, class V>'. */
11220
11221 static tree
11222 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11223 {
11224 tree r = NULL_TREE;
11225 tree* new_parms;
11226
11227 /* When substituting into a template, we must set
11228 PROCESSING_TEMPLATE_DECL as the template parameters may be
11229 dependent if they are based on one-another, and the dependency
11230 predicates are short-circuit outside of templates. */
11231 ++processing_template_decl;
11232
11233 for (new_parms = &r;
11234 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11235 new_parms = &(TREE_CHAIN (*new_parms)),
11236 parms = TREE_CHAIN (parms))
11237 {
11238 tree new_vec =
11239 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11240 int i;
11241
11242 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11243 {
11244 tree tuple;
11245
11246 if (parms == error_mark_node)
11247 continue;
11248
11249 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11250
11251 if (tuple == error_mark_node)
11252 continue;
11253
11254 TREE_VEC_ELT (new_vec, i) =
11255 tsubst_template_parm (tuple, args, complain);
11256 }
11257
11258 *new_parms =
11259 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11260 - TMPL_ARGS_DEPTH (args)),
11261 new_vec, NULL_TREE);
11262 }
11263
11264 --processing_template_decl;
11265
11266 return r;
11267 }
11268
11269 /* Return the result of substituting ARGS into one template parameter
11270 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11271 parameter and which TREE_PURPOSE is the default argument of the
11272 template parameter. */
11273
11274 static tree
11275 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11276 {
11277 tree default_value, parm_decl;
11278
11279 if (args == NULL_TREE
11280 || t == NULL_TREE
11281 || t == error_mark_node)
11282 return t;
11283
11284 gcc_assert (TREE_CODE (t) == TREE_LIST);
11285
11286 default_value = TREE_PURPOSE (t);
11287 parm_decl = TREE_VALUE (t);
11288
11289 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11290 if (TREE_CODE (parm_decl) == PARM_DECL
11291 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11292 parm_decl = error_mark_node;
11293 default_value = tsubst_template_arg (default_value, args,
11294 complain, NULL_TREE);
11295
11296 return build_tree_list (default_value, parm_decl);
11297 }
11298
11299 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11300 type T. If T is not an aggregate or enumeration type, it is
11301 handled as if by tsubst. IN_DECL is as for tsubst. If
11302 ENTERING_SCOPE is nonzero, T is the context for a template which
11303 we are presently tsubst'ing. Return the substituted value. */
11304
11305 static tree
11306 tsubst_aggr_type (tree t,
11307 tree args,
11308 tsubst_flags_t complain,
11309 tree in_decl,
11310 int entering_scope)
11311 {
11312 if (t == NULL_TREE)
11313 return NULL_TREE;
11314
11315 switch (TREE_CODE (t))
11316 {
11317 case RECORD_TYPE:
11318 if (TYPE_PTRMEMFUNC_P (t))
11319 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11320
11321 /* Else fall through. */
11322 case ENUMERAL_TYPE:
11323 case UNION_TYPE:
11324 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11325 {
11326 tree argvec;
11327 tree context;
11328 tree r;
11329 int saved_unevaluated_operand;
11330 int saved_inhibit_evaluation_warnings;
11331
11332 /* In "sizeof(X<I>)" we need to evaluate "I". */
11333 saved_unevaluated_operand = cp_unevaluated_operand;
11334 cp_unevaluated_operand = 0;
11335 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11336 c_inhibit_evaluation_warnings = 0;
11337
11338 /* First, determine the context for the type we are looking
11339 up. */
11340 context = TYPE_CONTEXT (t);
11341 if (context && TYPE_P (context))
11342 {
11343 context = tsubst_aggr_type (context, args, complain,
11344 in_decl, /*entering_scope=*/1);
11345 /* If context is a nested class inside a class template,
11346 it may still need to be instantiated (c++/33959). */
11347 context = complete_type (context);
11348 }
11349
11350 /* Then, figure out what arguments are appropriate for the
11351 type we are trying to find. For example, given:
11352
11353 template <class T> struct S;
11354 template <class T, class U> void f(T, U) { S<U> su; }
11355
11356 and supposing that we are instantiating f<int, double>,
11357 then our ARGS will be {int, double}, but, when looking up
11358 S we only want {double}. */
11359 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11360 complain, in_decl);
11361 if (argvec == error_mark_node)
11362 r = error_mark_node;
11363 else
11364 {
11365 r = lookup_template_class (t, argvec, in_decl, context,
11366 entering_scope, complain);
11367 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11368 }
11369
11370 cp_unevaluated_operand = saved_unevaluated_operand;
11371 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11372
11373 return r;
11374 }
11375 else
11376 /* This is not a template type, so there's nothing to do. */
11377 return t;
11378
11379 default:
11380 return tsubst (t, args, complain, in_decl);
11381 }
11382 }
11383
11384 /* Substitute into the default argument ARG (a default argument for
11385 FN), which has the indicated TYPE. */
11386
11387 tree
11388 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11389 {
11390 tree saved_class_ptr = NULL_TREE;
11391 tree saved_class_ref = NULL_TREE;
11392 int errs = errorcount + sorrycount;
11393
11394 /* This can happen in invalid code. */
11395 if (TREE_CODE (arg) == DEFAULT_ARG)
11396 return arg;
11397
11398 /* This default argument came from a template. Instantiate the
11399 default argument here, not in tsubst. In the case of
11400 something like:
11401
11402 template <class T>
11403 struct S {
11404 static T t();
11405 void f(T = t());
11406 };
11407
11408 we must be careful to do name lookup in the scope of S<T>,
11409 rather than in the current class. */
11410 push_access_scope (fn);
11411 /* The "this" pointer is not valid in a default argument. */
11412 if (cfun)
11413 {
11414 saved_class_ptr = current_class_ptr;
11415 cp_function_chain->x_current_class_ptr = NULL_TREE;
11416 saved_class_ref = current_class_ref;
11417 cp_function_chain->x_current_class_ref = NULL_TREE;
11418 }
11419
11420 push_deferring_access_checks(dk_no_deferred);
11421 /* The default argument expression may cause implicitly defined
11422 member functions to be synthesized, which will result in garbage
11423 collection. We must treat this situation as if we were within
11424 the body of function so as to avoid collecting live data on the
11425 stack. */
11426 ++function_depth;
11427 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11428 complain, NULL_TREE,
11429 /*integral_constant_expression_p=*/false);
11430 --function_depth;
11431 pop_deferring_access_checks();
11432
11433 /* Restore the "this" pointer. */
11434 if (cfun)
11435 {
11436 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11437 cp_function_chain->x_current_class_ref = saved_class_ref;
11438 }
11439
11440 if (errorcount+sorrycount > errs
11441 && (complain & tf_warning_or_error))
11442 inform (input_location,
11443 " when instantiating default argument for call to %D", fn);
11444
11445 /* Make sure the default argument is reasonable. */
11446 arg = check_default_argument (type, arg, complain);
11447
11448 pop_access_scope (fn);
11449
11450 return arg;
11451 }
11452
11453 /* Substitute into all the default arguments for FN. */
11454
11455 static void
11456 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11457 {
11458 tree arg;
11459 tree tmpl_args;
11460
11461 tmpl_args = DECL_TI_ARGS (fn);
11462
11463 /* If this function is not yet instantiated, we certainly don't need
11464 its default arguments. */
11465 if (uses_template_parms (tmpl_args))
11466 return;
11467 /* Don't do this again for clones. */
11468 if (DECL_CLONED_FUNCTION_P (fn))
11469 return;
11470
11471 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11472 arg;
11473 arg = TREE_CHAIN (arg))
11474 if (TREE_PURPOSE (arg))
11475 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11476 TREE_VALUE (arg),
11477 TREE_PURPOSE (arg),
11478 complain);
11479 }
11480
11481 /* Substitute the ARGS into the T, which is a _DECL. Return the
11482 result of the substitution. Issue error and warning messages under
11483 control of COMPLAIN. */
11484
11485 static tree
11486 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11487 {
11488 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11489 location_t saved_loc;
11490 tree r = NULL_TREE;
11491 tree in_decl = t;
11492 hashval_t hash = 0;
11493
11494 /* Set the filename and linenumber to improve error-reporting. */
11495 saved_loc = input_location;
11496 input_location = DECL_SOURCE_LOCATION (t);
11497
11498 switch (TREE_CODE (t))
11499 {
11500 case TEMPLATE_DECL:
11501 {
11502 /* We can get here when processing a member function template,
11503 member class template, or template template parameter. */
11504 tree decl = DECL_TEMPLATE_RESULT (t);
11505 tree spec;
11506 tree tmpl_args;
11507 tree full_args;
11508
11509 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11510 {
11511 /* Template template parameter is treated here. */
11512 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11513 if (new_type == error_mark_node)
11514 r = error_mark_node;
11515 /* If we get a real template back, return it. This can happen in
11516 the context of most_specialized_partial_spec. */
11517 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11518 r = new_type;
11519 else
11520 /* The new TEMPLATE_DECL was built in
11521 reduce_template_parm_level. */
11522 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11523 break;
11524 }
11525
11526 /* We might already have an instance of this template.
11527 The ARGS are for the surrounding class type, so the
11528 full args contain the tsubst'd args for the context,
11529 plus the innermost args from the template decl. */
11530 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11531 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11532 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11533 /* Because this is a template, the arguments will still be
11534 dependent, even after substitution. If
11535 PROCESSING_TEMPLATE_DECL is not set, the dependency
11536 predicates will short-circuit. */
11537 ++processing_template_decl;
11538 full_args = tsubst_template_args (tmpl_args, args,
11539 complain, in_decl);
11540 --processing_template_decl;
11541 if (full_args == error_mark_node)
11542 RETURN (error_mark_node);
11543
11544 /* If this is a default template template argument,
11545 tsubst might not have changed anything. */
11546 if (full_args == tmpl_args)
11547 RETURN (t);
11548
11549 hash = hash_tmpl_and_args (t, full_args);
11550 spec = retrieve_specialization (t, full_args, hash);
11551 if (spec != NULL_TREE)
11552 {
11553 r = spec;
11554 break;
11555 }
11556
11557 /* Make a new template decl. It will be similar to the
11558 original, but will record the current template arguments.
11559 We also create a new function declaration, which is just
11560 like the old one, but points to this new template, rather
11561 than the old one. */
11562 r = copy_decl (t);
11563 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11564 DECL_CHAIN (r) = NULL_TREE;
11565
11566 // Build new template info linking to the original template decl.
11567 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11568
11569 if (TREE_CODE (decl) == TYPE_DECL
11570 && !TYPE_DECL_ALIAS_P (decl))
11571 {
11572 tree new_type;
11573 ++processing_template_decl;
11574 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11575 --processing_template_decl;
11576 if (new_type == error_mark_node)
11577 RETURN (error_mark_node);
11578
11579 TREE_TYPE (r) = new_type;
11580 /* For a partial specialization, we need to keep pointing to
11581 the primary template. */
11582 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11583 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11584 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11585 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11586 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11587 }
11588 else
11589 {
11590 tree new_decl;
11591 ++processing_template_decl;
11592 new_decl = tsubst (decl, args, complain, in_decl);
11593 --processing_template_decl;
11594 if (new_decl == error_mark_node)
11595 RETURN (error_mark_node);
11596
11597 DECL_TEMPLATE_RESULT (r) = new_decl;
11598 DECL_TI_TEMPLATE (new_decl) = r;
11599 TREE_TYPE (r) = TREE_TYPE (new_decl);
11600 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11601 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11602 }
11603
11604 SET_DECL_IMPLICIT_INSTANTIATION (r);
11605 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11606 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11607
11608 /* The template parameters for this new template are all the
11609 template parameters for the old template, except the
11610 outermost level of parameters. */
11611 DECL_TEMPLATE_PARMS (r)
11612 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11613 complain);
11614
11615 if (PRIMARY_TEMPLATE_P (t))
11616 DECL_PRIMARY_TEMPLATE (r) = r;
11617
11618 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11619 /* Record this non-type partial instantiation. */
11620 register_specialization (r, t,
11621 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11622 false, hash);
11623 }
11624 break;
11625
11626 case FUNCTION_DECL:
11627 {
11628 tree ctx;
11629 tree argvec = NULL_TREE;
11630 tree *friends;
11631 tree gen_tmpl;
11632 tree type;
11633 int member;
11634 int args_depth;
11635 int parms_depth;
11636
11637 /* Nobody should be tsubst'ing into non-template functions. */
11638 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11639
11640 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11641 {
11642 tree spec;
11643 bool dependent_p;
11644
11645 /* If T is not dependent, just return it. We have to
11646 increment PROCESSING_TEMPLATE_DECL because
11647 value_dependent_expression_p assumes that nothing is
11648 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11649 ++processing_template_decl;
11650 dependent_p = value_dependent_expression_p (t);
11651 --processing_template_decl;
11652 if (!dependent_p)
11653 RETURN (t);
11654
11655 /* Calculate the most general template of which R is a
11656 specialization, and the complete set of arguments used to
11657 specialize R. */
11658 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11659 argvec = tsubst_template_args (DECL_TI_ARGS
11660 (DECL_TEMPLATE_RESULT
11661 (DECL_TI_TEMPLATE (t))),
11662 args, complain, in_decl);
11663 if (argvec == error_mark_node)
11664 RETURN (error_mark_node);
11665
11666 /* Check to see if we already have this specialization. */
11667 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11668 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11669
11670 if (spec)
11671 {
11672 r = spec;
11673 break;
11674 }
11675
11676 /* We can see more levels of arguments than parameters if
11677 there was a specialization of a member template, like
11678 this:
11679
11680 template <class T> struct S { template <class U> void f(); }
11681 template <> template <class U> void S<int>::f(U);
11682
11683 Here, we'll be substituting into the specialization,
11684 because that's where we can find the code we actually
11685 want to generate, but we'll have enough arguments for
11686 the most general template.
11687
11688 We also deal with the peculiar case:
11689
11690 template <class T> struct S {
11691 template <class U> friend void f();
11692 };
11693 template <class U> void f() {}
11694 template S<int>;
11695 template void f<double>();
11696
11697 Here, the ARGS for the instantiation of will be {int,
11698 double}. But, we only need as many ARGS as there are
11699 levels of template parameters in CODE_PATTERN. We are
11700 careful not to get fooled into reducing the ARGS in
11701 situations like:
11702
11703 template <class T> struct S { template <class U> void f(U); }
11704 template <class T> template <> void S<T>::f(int) {}
11705
11706 which we can spot because the pattern will be a
11707 specialization in this case. */
11708 args_depth = TMPL_ARGS_DEPTH (args);
11709 parms_depth =
11710 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11711 if (args_depth > parms_depth
11712 && !DECL_TEMPLATE_SPECIALIZATION (t))
11713 args = get_innermost_template_args (args, parms_depth);
11714 }
11715 else
11716 {
11717 /* This special case arises when we have something like this:
11718
11719 template <class T> struct S {
11720 friend void f<int>(int, double);
11721 };
11722
11723 Here, the DECL_TI_TEMPLATE for the friend declaration
11724 will be an IDENTIFIER_NODE. We are being called from
11725 tsubst_friend_function, and we want only to create a
11726 new decl (R) with appropriate types so that we can call
11727 determine_specialization. */
11728 gen_tmpl = NULL_TREE;
11729 }
11730
11731 if (DECL_CLASS_SCOPE_P (t))
11732 {
11733 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11734 member = 2;
11735 else
11736 member = 1;
11737 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11738 complain, t, /*entering_scope=*/1);
11739 }
11740 else
11741 {
11742 member = 0;
11743 ctx = DECL_CONTEXT (t);
11744 }
11745 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11746 if (type == error_mark_node)
11747 RETURN (error_mark_node);
11748
11749 /* If we hit excessive deduction depth, the type is bogus even if
11750 it isn't error_mark_node, so don't build a decl. */
11751 if (excessive_deduction_depth)
11752 RETURN (error_mark_node);
11753
11754 /* We do NOT check for matching decls pushed separately at this
11755 point, as they may not represent instantiations of this
11756 template, and in any case are considered separate under the
11757 discrete model. */
11758 r = copy_decl (t);
11759 DECL_USE_TEMPLATE (r) = 0;
11760 TREE_TYPE (r) = type;
11761 /* Clear out the mangled name and RTL for the instantiation. */
11762 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11763 SET_DECL_RTL (r, NULL);
11764 /* Leave DECL_INITIAL set on deleted instantiations. */
11765 if (!DECL_DELETED_FN (r))
11766 DECL_INITIAL (r) = NULL_TREE;
11767 DECL_CONTEXT (r) = ctx;
11768
11769 /* OpenMP UDRs have the only argument a reference to the declared
11770 type. We want to diagnose if the declared type is a reference,
11771 which is invalid, but as references to references are usually
11772 quietly merged, diagnose it here. */
11773 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11774 {
11775 tree argtype
11776 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11777 argtype = tsubst (argtype, args, complain, in_decl);
11778 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11779 error_at (DECL_SOURCE_LOCATION (t),
11780 "reference type %qT in "
11781 "%<#pragma omp declare reduction%>", argtype);
11782 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11783 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11784 argtype);
11785 }
11786
11787 if (member && DECL_CONV_FN_P (r))
11788 /* Type-conversion operator. Reconstruct the name, in
11789 case it's the name of one of the template's parameters. */
11790 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11791
11792 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11793 complain, t);
11794 DECL_RESULT (r) = NULL_TREE;
11795
11796 TREE_STATIC (r) = 0;
11797 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11798 DECL_EXTERNAL (r) = 1;
11799 /* If this is an instantiation of a function with internal
11800 linkage, we already know what object file linkage will be
11801 assigned to the instantiation. */
11802 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11803 DECL_DEFER_OUTPUT (r) = 0;
11804 DECL_CHAIN (r) = NULL_TREE;
11805 DECL_PENDING_INLINE_INFO (r) = 0;
11806 DECL_PENDING_INLINE_P (r) = 0;
11807 DECL_SAVED_TREE (r) = NULL_TREE;
11808 DECL_STRUCT_FUNCTION (r) = NULL;
11809 TREE_USED (r) = 0;
11810 /* We'll re-clone as appropriate in instantiate_template. */
11811 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11812
11813 /* If we aren't complaining now, return on error before we register
11814 the specialization so that we'll complain eventually. */
11815 if ((complain & tf_error) == 0
11816 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11817 && !grok_op_properties (r, /*complain=*/false))
11818 RETURN (error_mark_node);
11819
11820 /* When instantiating a constrained member, substitute
11821 into the constraints to create a new constraint. */
11822 if (tree ci = get_constraints (t))
11823 if (member)
11824 {
11825 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11826 set_constraints (r, ci);
11827 }
11828
11829 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11830 this in the special friend case mentioned above where
11831 GEN_TMPL is NULL. */
11832 if (gen_tmpl)
11833 {
11834 DECL_TEMPLATE_INFO (r)
11835 = build_template_info (gen_tmpl, argvec);
11836 SET_DECL_IMPLICIT_INSTANTIATION (r);
11837
11838 tree new_r
11839 = register_specialization (r, gen_tmpl, argvec, false, hash);
11840 if (new_r != r)
11841 /* We instantiated this while substituting into
11842 the type earlier (template/friend54.C). */
11843 RETURN (new_r);
11844
11845 /* We're not supposed to instantiate default arguments
11846 until they are called, for a template. But, for a
11847 declaration like:
11848
11849 template <class T> void f ()
11850 { extern void g(int i = T()); }
11851
11852 we should do the substitution when the template is
11853 instantiated. We handle the member function case in
11854 instantiate_class_template since the default arguments
11855 might refer to other members of the class. */
11856 if (!member
11857 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11858 && !uses_template_parms (argvec))
11859 tsubst_default_arguments (r, complain);
11860 }
11861 else
11862 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11863
11864 /* Copy the list of befriending classes. */
11865 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11866 *friends;
11867 friends = &TREE_CHAIN (*friends))
11868 {
11869 *friends = copy_node (*friends);
11870 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11871 args, complain,
11872 in_decl);
11873 }
11874
11875 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11876 {
11877 maybe_retrofit_in_chrg (r);
11878 if (DECL_CONSTRUCTOR_P (r))
11879 grok_ctor_properties (ctx, r);
11880 if (DECL_INHERITED_CTOR_BASE (r))
11881 deduce_inheriting_ctor (r);
11882 /* If this is an instantiation of a member template, clone it.
11883 If it isn't, that'll be handled by
11884 clone_constructors_and_destructors. */
11885 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11886 clone_function_decl (r, /*update_method_vec_p=*/0);
11887 }
11888 else if ((complain & tf_error) != 0
11889 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11890 && !grok_op_properties (r, /*complain=*/true))
11891 RETURN (error_mark_node);
11892
11893 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11894 SET_DECL_FRIEND_CONTEXT (r,
11895 tsubst (DECL_FRIEND_CONTEXT (t),
11896 args, complain, in_decl));
11897
11898 /* Possibly limit visibility based on template args. */
11899 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11900 if (DECL_VISIBILITY_SPECIFIED (t))
11901 {
11902 DECL_VISIBILITY_SPECIFIED (r) = 0;
11903 DECL_ATTRIBUTES (r)
11904 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11905 }
11906 determine_visibility (r);
11907 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11908 && !processing_template_decl)
11909 defaulted_late_check (r);
11910
11911 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11912 args, complain, in_decl);
11913 }
11914 break;
11915
11916 case PARM_DECL:
11917 {
11918 tree type = NULL_TREE;
11919 int i, len = 1;
11920 tree expanded_types = NULL_TREE;
11921 tree prev_r = NULL_TREE;
11922 tree first_r = NULL_TREE;
11923
11924 if (DECL_PACK_P (t))
11925 {
11926 /* If there is a local specialization that isn't a
11927 parameter pack, it means that we're doing a "simple"
11928 substitution from inside tsubst_pack_expansion. Just
11929 return the local specialization (which will be a single
11930 parm). */
11931 tree spec = retrieve_local_specialization (t);
11932 if (spec
11933 && TREE_CODE (spec) == PARM_DECL
11934 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11935 RETURN (spec);
11936
11937 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11938 the parameters in this function parameter pack. */
11939 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11940 complain, in_decl);
11941 if (TREE_CODE (expanded_types) == TREE_VEC)
11942 {
11943 len = TREE_VEC_LENGTH (expanded_types);
11944
11945 /* Zero-length parameter packs are boring. Just substitute
11946 into the chain. */
11947 if (len == 0)
11948 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11949 TREE_CHAIN (t)));
11950 }
11951 else
11952 {
11953 /* All we did was update the type. Make a note of that. */
11954 type = expanded_types;
11955 expanded_types = NULL_TREE;
11956 }
11957 }
11958
11959 /* Loop through all of the parameters we'll build. When T is
11960 a function parameter pack, LEN is the number of expanded
11961 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11962 r = NULL_TREE;
11963 for (i = 0; i < len; ++i)
11964 {
11965 prev_r = r;
11966 r = copy_node (t);
11967 if (DECL_TEMPLATE_PARM_P (t))
11968 SET_DECL_TEMPLATE_PARM_P (r);
11969
11970 if (expanded_types)
11971 /* We're on the Ith parameter of the function parameter
11972 pack. */
11973 {
11974 /* Get the Ith type. */
11975 type = TREE_VEC_ELT (expanded_types, i);
11976
11977 /* Rename the parameter to include the index. */
11978 DECL_NAME (r)
11979 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11980 }
11981 else if (!type)
11982 /* We're dealing with a normal parameter. */
11983 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11984
11985 type = type_decays_to (type);
11986 TREE_TYPE (r) = type;
11987 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11988
11989 if (DECL_INITIAL (r))
11990 {
11991 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11992 DECL_INITIAL (r) = TREE_TYPE (r);
11993 else
11994 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11995 complain, in_decl);
11996 }
11997
11998 DECL_CONTEXT (r) = NULL_TREE;
11999
12000 if (!DECL_TEMPLATE_PARM_P (r))
12001 DECL_ARG_TYPE (r) = type_passed_as (type);
12002
12003 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12004 args, complain, in_decl);
12005
12006 /* Keep track of the first new parameter we
12007 generate. That's what will be returned to the
12008 caller. */
12009 if (!first_r)
12010 first_r = r;
12011
12012 /* Build a proper chain of parameters when substituting
12013 into a function parameter pack. */
12014 if (prev_r)
12015 DECL_CHAIN (prev_r) = r;
12016 }
12017
12018 /* If cp_unevaluated_operand is set, we're just looking for a
12019 single dummy parameter, so don't keep going. */
12020 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12021 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12022 complain, DECL_CHAIN (t));
12023
12024 /* FIRST_R contains the start of the chain we've built. */
12025 r = first_r;
12026 }
12027 break;
12028
12029 case FIELD_DECL:
12030 {
12031 tree type = NULL_TREE;
12032 tree vec = NULL_TREE;
12033 tree expanded_types = NULL_TREE;
12034 int len = 1;
12035
12036 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12037 {
12038 /* This field is a lambda capture pack. Return a TREE_VEC of
12039 the expanded fields to instantiate_class_template_1 and
12040 store them in the specializations hash table as a
12041 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12042 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12043 complain, in_decl);
12044 if (TREE_CODE (expanded_types) == TREE_VEC)
12045 {
12046 len = TREE_VEC_LENGTH (expanded_types);
12047 vec = make_tree_vec (len);
12048 }
12049 else
12050 {
12051 /* All we did was update the type. Make a note of that. */
12052 type = expanded_types;
12053 expanded_types = NULL_TREE;
12054 }
12055 }
12056
12057 for (int i = 0; i < len; ++i)
12058 {
12059 r = copy_decl (t);
12060 if (expanded_types)
12061 {
12062 type = TREE_VEC_ELT (expanded_types, i);
12063 DECL_NAME (r)
12064 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12065 }
12066 else if (!type)
12067 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12068
12069 if (type == error_mark_node)
12070 RETURN (error_mark_node);
12071 TREE_TYPE (r) = type;
12072 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12073
12074 if (DECL_C_BIT_FIELD (r))
12075 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12076 non-bit-fields DECL_INITIAL is a non-static data member
12077 initializer, which gets deferred instantiation. */
12078 DECL_INITIAL (r)
12079 = tsubst_expr (DECL_INITIAL (t), args,
12080 complain, in_decl,
12081 /*integral_constant_expression_p=*/true);
12082 else if (DECL_INITIAL (t))
12083 {
12084 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12085 NSDMI in perform_member_init. Still set DECL_INITIAL
12086 so that we know there is one. */
12087 DECL_INITIAL (r) = void_node;
12088 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12089 retrofit_lang_decl (r);
12090 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12091 }
12092 /* We don't have to set DECL_CONTEXT here; it is set by
12093 finish_member_declaration. */
12094 DECL_CHAIN (r) = NULL_TREE;
12095
12096 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12097 args, complain, in_decl);
12098
12099 if (vec)
12100 TREE_VEC_ELT (vec, i) = r;
12101 }
12102
12103 if (vec)
12104 {
12105 r = vec;
12106 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12107 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12108 SET_ARGUMENT_PACK_ARGS (pack, vec);
12109 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12110 TREE_TYPE (pack) = tpack;
12111 register_specialization (pack, t, args, false, 0);
12112 }
12113 }
12114 break;
12115
12116 case USING_DECL:
12117 /* We reach here only for member using decls. We also need to check
12118 uses_template_parms because DECL_DEPENDENT_P is not set for a
12119 using-declaration that designates a member of the current
12120 instantiation (c++/53549). */
12121 if (DECL_DEPENDENT_P (t)
12122 || uses_template_parms (USING_DECL_SCOPE (t)))
12123 {
12124 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12125 complain, in_decl);
12126 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12127 r = do_class_using_decl (inst_scope, name);
12128 if (!r)
12129 r = error_mark_node;
12130 else
12131 {
12132 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12133 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12134 }
12135 }
12136 else
12137 {
12138 r = copy_node (t);
12139 DECL_CHAIN (r) = NULL_TREE;
12140 }
12141 break;
12142
12143 case TYPE_DECL:
12144 case VAR_DECL:
12145 {
12146 tree argvec = NULL_TREE;
12147 tree gen_tmpl = NULL_TREE;
12148 tree spec;
12149 tree tmpl = NULL_TREE;
12150 tree ctx;
12151 tree type = NULL_TREE;
12152 bool local_p;
12153
12154 if (TREE_TYPE (t) == error_mark_node)
12155 RETURN (error_mark_node);
12156
12157 if (TREE_CODE (t) == TYPE_DECL
12158 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12159 {
12160 /* If this is the canonical decl, we don't have to
12161 mess with instantiations, and often we can't (for
12162 typename, template type parms and such). Note that
12163 TYPE_NAME is not correct for the above test if
12164 we've copied the type for a typedef. */
12165 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12166 if (type == error_mark_node)
12167 RETURN (error_mark_node);
12168 r = TYPE_NAME (type);
12169 break;
12170 }
12171
12172 /* Check to see if we already have the specialization we
12173 need. */
12174 spec = NULL_TREE;
12175 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12176 {
12177 /* T is a static data member or namespace-scope entity.
12178 We have to substitute into namespace-scope variables
12179 (not just variable templates) because of cases like:
12180
12181 template <class T> void f() { extern T t; }
12182
12183 where the entity referenced is not known until
12184 instantiation time. */
12185 local_p = false;
12186 ctx = DECL_CONTEXT (t);
12187 if (DECL_CLASS_SCOPE_P (t))
12188 {
12189 ctx = tsubst_aggr_type (ctx, args,
12190 complain,
12191 in_decl, /*entering_scope=*/1);
12192 /* If CTX is unchanged, then T is in fact the
12193 specialization we want. That situation occurs when
12194 referencing a static data member within in its own
12195 class. We can use pointer equality, rather than
12196 same_type_p, because DECL_CONTEXT is always
12197 canonical... */
12198 if (ctx == DECL_CONTEXT (t)
12199 /* ... unless T is a member template; in which
12200 case our caller can be willing to create a
12201 specialization of that template represented
12202 by T. */
12203 && !(DECL_TI_TEMPLATE (t)
12204 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12205 spec = t;
12206 }
12207
12208 if (!spec)
12209 {
12210 tmpl = DECL_TI_TEMPLATE (t);
12211 gen_tmpl = most_general_template (tmpl);
12212 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12213 if (argvec != error_mark_node)
12214 argvec = (coerce_innermost_template_parms
12215 (DECL_TEMPLATE_PARMS (gen_tmpl),
12216 argvec, t, complain,
12217 /*all*/true, /*defarg*/true));
12218 if (argvec == error_mark_node)
12219 RETURN (error_mark_node);
12220 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12221 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12222 }
12223 }
12224 else
12225 {
12226 /* A local variable. */
12227 local_p = true;
12228 /* Subsequent calls to pushdecl will fill this in. */
12229 ctx = NULL_TREE;
12230 spec = retrieve_local_specialization (t);
12231 }
12232 /* If we already have the specialization we need, there is
12233 nothing more to do. */
12234 if (spec)
12235 {
12236 r = spec;
12237 break;
12238 }
12239
12240 /* Create a new node for the specialization we need. */
12241 r = copy_decl (t);
12242 if (type == NULL_TREE)
12243 {
12244 if (is_typedef_decl (t))
12245 type = DECL_ORIGINAL_TYPE (t);
12246 else
12247 type = TREE_TYPE (t);
12248 if (VAR_P (t)
12249 && VAR_HAD_UNKNOWN_BOUND (t)
12250 && type != error_mark_node)
12251 type = strip_array_domain (type);
12252 type = tsubst (type, args, complain, in_decl);
12253 }
12254 if (VAR_P (r))
12255 {
12256 /* Even if the original location is out of scope, the
12257 newly substituted one is not. */
12258 DECL_DEAD_FOR_LOCAL (r) = 0;
12259 DECL_INITIALIZED_P (r) = 0;
12260 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12261 if (type == error_mark_node)
12262 RETURN (error_mark_node);
12263 if (TREE_CODE (type) == FUNCTION_TYPE)
12264 {
12265 /* It may seem that this case cannot occur, since:
12266
12267 typedef void f();
12268 void g() { f x; }
12269
12270 declares a function, not a variable. However:
12271
12272 typedef void f();
12273 template <typename T> void g() { T t; }
12274 template void g<f>();
12275
12276 is an attempt to declare a variable with function
12277 type. */
12278 error ("variable %qD has function type",
12279 /* R is not yet sufficiently initialized, so we
12280 just use its name. */
12281 DECL_NAME (r));
12282 RETURN (error_mark_node);
12283 }
12284 type = complete_type (type);
12285 /* Wait until cp_finish_decl to set this again, to handle
12286 circular dependency (template/instantiate6.C). */
12287 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12288 type = check_var_type (DECL_NAME (r), type);
12289
12290 if (DECL_HAS_VALUE_EXPR_P (t))
12291 {
12292 tree ve = DECL_VALUE_EXPR (t);
12293 ve = tsubst_expr (ve, args, complain, in_decl,
12294 /*constant_expression_p=*/false);
12295 if (REFERENCE_REF_P (ve))
12296 {
12297 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12298 ve = TREE_OPERAND (ve, 0);
12299 }
12300 SET_DECL_VALUE_EXPR (r, ve);
12301 }
12302 if (CP_DECL_THREAD_LOCAL_P (r)
12303 && !processing_template_decl)
12304 set_decl_tls_model (r, decl_default_tls_model (r));
12305 }
12306 else if (DECL_SELF_REFERENCE_P (t))
12307 SET_DECL_SELF_REFERENCE_P (r);
12308 TREE_TYPE (r) = type;
12309 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12310 DECL_CONTEXT (r) = ctx;
12311 /* Clear out the mangled name and RTL for the instantiation. */
12312 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12313 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12314 SET_DECL_RTL (r, NULL);
12315 /* The initializer must not be expanded until it is required;
12316 see [temp.inst]. */
12317 DECL_INITIAL (r) = NULL_TREE;
12318 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12319 SET_DECL_RTL (r, NULL);
12320 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12321 if (VAR_P (r))
12322 {
12323 /* Possibly limit visibility based on template args. */
12324 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12325 if (DECL_VISIBILITY_SPECIFIED (t))
12326 {
12327 DECL_VISIBILITY_SPECIFIED (r) = 0;
12328 DECL_ATTRIBUTES (r)
12329 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12330 }
12331 determine_visibility (r);
12332 }
12333
12334 if (!local_p)
12335 {
12336 /* A static data member declaration is always marked
12337 external when it is declared in-class, even if an
12338 initializer is present. We mimic the non-template
12339 processing here. */
12340 DECL_EXTERNAL (r) = 1;
12341 if (DECL_NAMESPACE_SCOPE_P (t))
12342 DECL_NOT_REALLY_EXTERN (r) = 1;
12343
12344 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12345 SET_DECL_IMPLICIT_INSTANTIATION (r);
12346 register_specialization (r, gen_tmpl, argvec, false, hash);
12347 }
12348 else
12349 {
12350 if (DECL_LANG_SPECIFIC (r))
12351 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12352 if (!cp_unevaluated_operand)
12353 register_local_specialization (r, t);
12354 }
12355
12356 DECL_CHAIN (r) = NULL_TREE;
12357
12358 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12359 /*flags=*/0,
12360 args, complain, in_decl);
12361
12362 /* Preserve a typedef that names a type. */
12363 if (is_typedef_decl (r))
12364 {
12365 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12366 set_underlying_type (r);
12367 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12368 /* An alias template specialization can be dependent
12369 even if its underlying type is not. */
12370 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12371 }
12372
12373 layout_decl (r, 0);
12374 }
12375 break;
12376
12377 default:
12378 gcc_unreachable ();
12379 }
12380 #undef RETURN
12381
12382 out:
12383 /* Restore the file and line information. */
12384 input_location = saved_loc;
12385
12386 return r;
12387 }
12388
12389 /* Substitute into the ARG_TYPES of a function type.
12390 If END is a TREE_CHAIN, leave it and any following types
12391 un-substituted. */
12392
12393 static tree
12394 tsubst_arg_types (tree arg_types,
12395 tree args,
12396 tree end,
12397 tsubst_flags_t complain,
12398 tree in_decl)
12399 {
12400 tree remaining_arg_types;
12401 tree type = NULL_TREE;
12402 int i = 1;
12403 tree expanded_args = NULL_TREE;
12404 tree default_arg;
12405
12406 if (!arg_types || arg_types == void_list_node || arg_types == end)
12407 return arg_types;
12408
12409 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12410 args, end, complain, in_decl);
12411 if (remaining_arg_types == error_mark_node)
12412 return error_mark_node;
12413
12414 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12415 {
12416 /* For a pack expansion, perform substitution on the
12417 entire expression. Later on, we'll handle the arguments
12418 one-by-one. */
12419 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12420 args, complain, in_decl);
12421
12422 if (TREE_CODE (expanded_args) == TREE_VEC)
12423 /* So that we'll spin through the parameters, one by one. */
12424 i = TREE_VEC_LENGTH (expanded_args);
12425 else
12426 {
12427 /* We only partially substituted into the parameter
12428 pack. Our type is TYPE_PACK_EXPANSION. */
12429 type = expanded_args;
12430 expanded_args = NULL_TREE;
12431 }
12432 }
12433
12434 while (i > 0) {
12435 --i;
12436
12437 if (expanded_args)
12438 type = TREE_VEC_ELT (expanded_args, i);
12439 else if (!type)
12440 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12441
12442 if (type == error_mark_node)
12443 return error_mark_node;
12444 if (VOID_TYPE_P (type))
12445 {
12446 if (complain & tf_error)
12447 {
12448 error ("invalid parameter type %qT", type);
12449 if (in_decl)
12450 error ("in declaration %q+D", in_decl);
12451 }
12452 return error_mark_node;
12453 }
12454 /* DR 657. */
12455 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12456 return error_mark_node;
12457
12458 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12459 top-level qualifiers as required. */
12460 type = cv_unqualified (type_decays_to (type));
12461
12462 /* We do not substitute into default arguments here. The standard
12463 mandates that they be instantiated only when needed, which is
12464 done in build_over_call. */
12465 default_arg = TREE_PURPOSE (arg_types);
12466
12467 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12468 {
12469 /* We've instantiated a template before its default arguments
12470 have been parsed. This can happen for a nested template
12471 class, and is not an error unless we require the default
12472 argument in a call of this function. */
12473 remaining_arg_types =
12474 tree_cons (default_arg, type, remaining_arg_types);
12475 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12476 }
12477 else
12478 remaining_arg_types =
12479 hash_tree_cons (default_arg, type, remaining_arg_types);
12480 }
12481
12482 return remaining_arg_types;
12483 }
12484
12485 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12486 *not* handle the exception-specification for FNTYPE, because the
12487 initial substitution of explicitly provided template parameters
12488 during argument deduction forbids substitution into the
12489 exception-specification:
12490
12491 [temp.deduct]
12492
12493 All references in the function type of the function template to the
12494 corresponding template parameters are replaced by the specified tem-
12495 plate argument values. If a substitution in a template parameter or
12496 in the function type of the function template results in an invalid
12497 type, type deduction fails. [Note: The equivalent substitution in
12498 exception specifications is done only when the function is instanti-
12499 ated, at which point a program is ill-formed if the substitution
12500 results in an invalid type.] */
12501
12502 static tree
12503 tsubst_function_type (tree t,
12504 tree args,
12505 tsubst_flags_t complain,
12506 tree in_decl)
12507 {
12508 tree return_type;
12509 tree arg_types = NULL_TREE;
12510 tree fntype;
12511
12512 /* The TYPE_CONTEXT is not used for function/method types. */
12513 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12514
12515 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12516 failure. */
12517 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12518
12519 if (late_return_type_p)
12520 {
12521 /* Substitute the argument types. */
12522 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12523 complain, in_decl);
12524 if (arg_types == error_mark_node)
12525 return error_mark_node;
12526
12527 tree save_ccp = current_class_ptr;
12528 tree save_ccr = current_class_ref;
12529 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12530 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12531 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12532 if (do_inject)
12533 {
12534 /* DR 1207: 'this' is in scope in the trailing return type. */
12535 inject_this_parameter (this_type, cp_type_quals (this_type));
12536 }
12537
12538 /* Substitute the return type. */
12539 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12540
12541 if (do_inject)
12542 {
12543 current_class_ptr = save_ccp;
12544 current_class_ref = save_ccr;
12545 }
12546 }
12547 else
12548 /* Substitute the return type. */
12549 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12550
12551 if (return_type == error_mark_node)
12552 return error_mark_node;
12553 /* DR 486 clarifies that creation of a function type with an
12554 invalid return type is a deduction failure. */
12555 if (TREE_CODE (return_type) == ARRAY_TYPE
12556 || TREE_CODE (return_type) == FUNCTION_TYPE)
12557 {
12558 if (complain & tf_error)
12559 {
12560 if (TREE_CODE (return_type) == ARRAY_TYPE)
12561 error ("function returning an array");
12562 else
12563 error ("function returning a function");
12564 }
12565 return error_mark_node;
12566 }
12567 /* And DR 657. */
12568 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12569 return error_mark_node;
12570
12571 if (!late_return_type_p)
12572 {
12573 /* Substitute the argument types. */
12574 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12575 complain, in_decl);
12576 if (arg_types == error_mark_node)
12577 return error_mark_node;
12578 }
12579
12580 /* Construct a new type node and return it. */
12581 if (TREE_CODE (t) == FUNCTION_TYPE)
12582 {
12583 fntype = build_function_type (return_type, arg_types);
12584 fntype = apply_memfn_quals (fntype,
12585 type_memfn_quals (t),
12586 type_memfn_rqual (t));
12587 }
12588 else
12589 {
12590 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12591 /* Don't pick up extra function qualifiers from the basetype. */
12592 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12593 if (! MAYBE_CLASS_TYPE_P (r))
12594 {
12595 /* [temp.deduct]
12596
12597 Type deduction may fail for any of the following
12598 reasons:
12599
12600 -- Attempting to create "pointer to member of T" when T
12601 is not a class type. */
12602 if (complain & tf_error)
12603 error ("creating pointer to member function of non-class type %qT",
12604 r);
12605 return error_mark_node;
12606 }
12607
12608 fntype = build_method_type_directly (r, return_type,
12609 TREE_CHAIN (arg_types));
12610 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12611 }
12612 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12613
12614 if (late_return_type_p)
12615 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12616
12617 return fntype;
12618 }
12619
12620 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12621 ARGS into that specification, and return the substituted
12622 specification. If there is no specification, return NULL_TREE. */
12623
12624 static tree
12625 tsubst_exception_specification (tree fntype,
12626 tree args,
12627 tsubst_flags_t complain,
12628 tree in_decl,
12629 bool defer_ok)
12630 {
12631 tree specs;
12632 tree new_specs;
12633
12634 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12635 new_specs = NULL_TREE;
12636 if (specs && TREE_PURPOSE (specs))
12637 {
12638 /* A noexcept-specifier. */
12639 tree expr = TREE_PURPOSE (specs);
12640 if (TREE_CODE (expr) == INTEGER_CST)
12641 new_specs = expr;
12642 else if (defer_ok)
12643 {
12644 /* Defer instantiation of noexcept-specifiers to avoid
12645 excessive instantiations (c++/49107). */
12646 new_specs = make_node (DEFERRED_NOEXCEPT);
12647 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12648 {
12649 /* We already partially instantiated this member template,
12650 so combine the new args with the old. */
12651 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12652 = DEFERRED_NOEXCEPT_PATTERN (expr);
12653 DEFERRED_NOEXCEPT_ARGS (new_specs)
12654 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12655 }
12656 else
12657 {
12658 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12659 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12660 }
12661 }
12662 else
12663 new_specs = tsubst_copy_and_build
12664 (expr, args, complain, in_decl, /*function_p=*/false,
12665 /*integral_constant_expression_p=*/true);
12666 new_specs = build_noexcept_spec (new_specs, complain);
12667 }
12668 else if (specs)
12669 {
12670 if (! TREE_VALUE (specs))
12671 new_specs = specs;
12672 else
12673 while (specs)
12674 {
12675 tree spec;
12676 int i, len = 1;
12677 tree expanded_specs = NULL_TREE;
12678
12679 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12680 {
12681 /* Expand the pack expansion type. */
12682 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12683 args, complain,
12684 in_decl);
12685
12686 if (expanded_specs == error_mark_node)
12687 return error_mark_node;
12688 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12689 len = TREE_VEC_LENGTH (expanded_specs);
12690 else
12691 {
12692 /* We're substituting into a member template, so
12693 we got a TYPE_PACK_EXPANSION back. Add that
12694 expansion and move on. */
12695 gcc_assert (TREE_CODE (expanded_specs)
12696 == TYPE_PACK_EXPANSION);
12697 new_specs = add_exception_specifier (new_specs,
12698 expanded_specs,
12699 complain);
12700 specs = TREE_CHAIN (specs);
12701 continue;
12702 }
12703 }
12704
12705 for (i = 0; i < len; ++i)
12706 {
12707 if (expanded_specs)
12708 spec = TREE_VEC_ELT (expanded_specs, i);
12709 else
12710 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12711 if (spec == error_mark_node)
12712 return spec;
12713 new_specs = add_exception_specifier (new_specs, spec,
12714 complain);
12715 }
12716
12717 specs = TREE_CHAIN (specs);
12718 }
12719 }
12720 return new_specs;
12721 }
12722
12723 /* Take the tree structure T and replace template parameters used
12724 therein with the argument vector ARGS. IN_DECL is an associated
12725 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12726 Issue error and warning messages under control of COMPLAIN. Note
12727 that we must be relatively non-tolerant of extensions here, in
12728 order to preserve conformance; if we allow substitutions that
12729 should not be allowed, we may allow argument deductions that should
12730 not succeed, and therefore report ambiguous overload situations
12731 where there are none. In theory, we could allow the substitution,
12732 but indicate that it should have failed, and allow our caller to
12733 make sure that the right thing happens, but we don't try to do this
12734 yet.
12735
12736 This function is used for dealing with types, decls and the like;
12737 for expressions, use tsubst_expr or tsubst_copy. */
12738
12739 tree
12740 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12741 {
12742 enum tree_code code;
12743 tree type, r = NULL_TREE;
12744
12745 if (t == NULL_TREE || t == error_mark_node
12746 || t == integer_type_node
12747 || t == void_type_node
12748 || t == char_type_node
12749 || t == unknown_type_node
12750 || TREE_CODE (t) == NAMESPACE_DECL
12751 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12752 return t;
12753
12754 if (DECL_P (t))
12755 return tsubst_decl (t, args, complain);
12756
12757 if (args == NULL_TREE)
12758 return t;
12759
12760 code = TREE_CODE (t);
12761
12762 if (code == IDENTIFIER_NODE)
12763 type = IDENTIFIER_TYPE_VALUE (t);
12764 else
12765 type = TREE_TYPE (t);
12766
12767 gcc_assert (type != unknown_type_node);
12768
12769 /* Reuse typedefs. We need to do this to handle dependent attributes,
12770 such as attribute aligned. */
12771 if (TYPE_P (t)
12772 && typedef_variant_p (t))
12773 {
12774 tree decl = TYPE_NAME (t);
12775
12776 if (alias_template_specialization_p (t))
12777 {
12778 /* DECL represents an alias template and we want to
12779 instantiate it. */
12780 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12781 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12782 r = instantiate_alias_template (tmpl, gen_args, complain);
12783 }
12784 else if (DECL_CLASS_SCOPE_P (decl)
12785 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12786 && uses_template_parms (DECL_CONTEXT (decl)))
12787 {
12788 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12789 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12790 r = retrieve_specialization (tmpl, gen_args, 0);
12791 }
12792 else if (DECL_FUNCTION_SCOPE_P (decl)
12793 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12794 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12795 r = retrieve_local_specialization (decl);
12796 else
12797 /* The typedef is from a non-template context. */
12798 return t;
12799
12800 if (r)
12801 {
12802 r = TREE_TYPE (r);
12803 r = cp_build_qualified_type_real
12804 (r, cp_type_quals (t) | cp_type_quals (r),
12805 complain | tf_ignore_bad_quals);
12806 return r;
12807 }
12808 else
12809 {
12810 /* We don't have an instantiation yet, so drop the typedef. */
12811 int quals = cp_type_quals (t);
12812 t = DECL_ORIGINAL_TYPE (decl);
12813 t = cp_build_qualified_type_real (t, quals,
12814 complain | tf_ignore_bad_quals);
12815 }
12816 }
12817
12818 if (type
12819 && code != TYPENAME_TYPE
12820 && code != TEMPLATE_TYPE_PARM
12821 && code != IDENTIFIER_NODE
12822 && code != FUNCTION_TYPE
12823 && code != METHOD_TYPE)
12824 type = tsubst (type, args, complain, in_decl);
12825 if (type == error_mark_node)
12826 return error_mark_node;
12827
12828 switch (code)
12829 {
12830 case RECORD_TYPE:
12831 case UNION_TYPE:
12832 case ENUMERAL_TYPE:
12833 return tsubst_aggr_type (t, args, complain, in_decl,
12834 /*entering_scope=*/0);
12835
12836 case ERROR_MARK:
12837 case IDENTIFIER_NODE:
12838 case VOID_TYPE:
12839 case REAL_TYPE:
12840 case COMPLEX_TYPE:
12841 case VECTOR_TYPE:
12842 case BOOLEAN_TYPE:
12843 case NULLPTR_TYPE:
12844 case LANG_TYPE:
12845 return t;
12846
12847 case INTEGER_TYPE:
12848 if (t == integer_type_node)
12849 return t;
12850
12851 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12852 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12853 return t;
12854
12855 {
12856 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12857
12858 max = tsubst_expr (omax, args, complain, in_decl,
12859 /*integral_constant_expression_p=*/false);
12860
12861 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12862 needed. */
12863 if (TREE_CODE (max) == NOP_EXPR
12864 && TREE_SIDE_EFFECTS (omax)
12865 && !TREE_TYPE (max))
12866 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12867
12868 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12869 with TREE_SIDE_EFFECTS that indicates this is not an integral
12870 constant expression. */
12871 if (processing_template_decl
12872 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12873 {
12874 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12875 TREE_SIDE_EFFECTS (max) = 1;
12876 }
12877
12878 return compute_array_index_type (NULL_TREE, max, complain);
12879 }
12880
12881 case TEMPLATE_TYPE_PARM:
12882 case TEMPLATE_TEMPLATE_PARM:
12883 case BOUND_TEMPLATE_TEMPLATE_PARM:
12884 case TEMPLATE_PARM_INDEX:
12885 {
12886 int idx;
12887 int level;
12888 int levels;
12889 tree arg = NULL_TREE;
12890
12891 /* Early in template argument deduction substitution, we don't
12892 want to reduce the level of 'auto', or it will be confused
12893 with a normal template parm in subsequent deduction. */
12894 if (is_auto (t) && (complain & tf_partial))
12895 return t;
12896
12897 r = NULL_TREE;
12898
12899 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12900 template_parm_level_and_index (t, &level, &idx);
12901
12902 levels = TMPL_ARGS_DEPTH (args);
12903 if (level <= levels
12904 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12905 {
12906 arg = TMPL_ARG (args, level, idx);
12907
12908 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12909 {
12910 /* See through ARGUMENT_PACK_SELECT arguments. */
12911 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12912 /* If the selected argument is an expansion E, that most
12913 likely means we were called from
12914 gen_elem_of_pack_expansion_instantiation during the
12915 substituting of pack an argument pack (which Ith
12916 element is a pack expansion, where I is
12917 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12918 In this case, the Ith element resulting from this
12919 substituting is going to be a pack expansion, which
12920 pattern is the pattern of E. Let's return the
12921 pattern of E, and
12922 gen_elem_of_pack_expansion_instantiation will
12923 build the resulting pack expansion from it. */
12924 if (PACK_EXPANSION_P (arg))
12925 {
12926 /* Make sure we aren't throwing away arg info. */
12927 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12928 arg = PACK_EXPANSION_PATTERN (arg);
12929 }
12930 }
12931 }
12932
12933 if (arg == error_mark_node)
12934 return error_mark_node;
12935 else if (arg != NULL_TREE)
12936 {
12937 if (ARGUMENT_PACK_P (arg))
12938 /* If ARG is an argument pack, we don't actually want to
12939 perform a substitution here, because substitutions
12940 for argument packs are only done
12941 element-by-element. We can get to this point when
12942 substituting the type of a non-type template
12943 parameter pack, when that type actually contains
12944 template parameter packs from an outer template, e.g.,
12945
12946 template<typename... Types> struct A {
12947 template<Types... Values> struct B { };
12948 }; */
12949 return t;
12950
12951 if (code == TEMPLATE_TYPE_PARM)
12952 {
12953 int quals;
12954 gcc_assert (TYPE_P (arg));
12955
12956 quals = cp_type_quals (arg) | cp_type_quals (t);
12957
12958 return cp_build_qualified_type_real
12959 (arg, quals, complain | tf_ignore_bad_quals);
12960 }
12961 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12962 {
12963 /* We are processing a type constructed from a
12964 template template parameter. */
12965 tree argvec = tsubst (TYPE_TI_ARGS (t),
12966 args, complain, in_decl);
12967 if (argvec == error_mark_node)
12968 return error_mark_node;
12969
12970 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12971 || TREE_CODE (arg) == TEMPLATE_DECL
12972 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12973
12974 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12975 /* Consider this code:
12976
12977 template <template <class> class Template>
12978 struct Internal {
12979 template <class Arg> using Bind = Template<Arg>;
12980 };
12981
12982 template <template <class> class Template, class Arg>
12983 using Instantiate = Template<Arg>; //#0
12984
12985 template <template <class> class Template,
12986 class Argument>
12987 using Bind =
12988 Instantiate<Internal<Template>::template Bind,
12989 Argument>; //#1
12990
12991 When #1 is parsed, the
12992 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12993 parameter `Template' in #0 matches the
12994 UNBOUND_CLASS_TEMPLATE representing the argument
12995 `Internal<Template>::template Bind'; We then want
12996 to assemble the type `Bind<Argument>' that can't
12997 be fully created right now, because
12998 `Internal<Template>' not being complete, the Bind
12999 template cannot be looked up in that context. So
13000 we need to "store" `Bind<Argument>' for later
13001 when the context of Bind becomes complete. Let's
13002 store that in a TYPENAME_TYPE. */
13003 return make_typename_type (TYPE_CONTEXT (arg),
13004 build_nt (TEMPLATE_ID_EXPR,
13005 TYPE_IDENTIFIER (arg),
13006 argvec),
13007 typename_type,
13008 complain);
13009
13010 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13011 are resolving nested-types in the signature of a
13012 member function templates. Otherwise ARG is a
13013 TEMPLATE_DECL and is the real template to be
13014 instantiated. */
13015 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13016 arg = TYPE_NAME (arg);
13017
13018 r = lookup_template_class (arg,
13019 argvec, in_decl,
13020 DECL_CONTEXT (arg),
13021 /*entering_scope=*/0,
13022 complain);
13023 return cp_build_qualified_type_real
13024 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13025 }
13026 else
13027 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
13028 return convert_from_reference (unshare_expr (arg));
13029 }
13030
13031 if (level == 1)
13032 /* This can happen during the attempted tsubst'ing in
13033 unify. This means that we don't yet have any information
13034 about the template parameter in question. */
13035 return t;
13036
13037 /* If we get here, we must have been looking at a parm for a
13038 more deeply nested template. Make a new version of this
13039 template parameter, but with a lower level. */
13040 switch (code)
13041 {
13042 case TEMPLATE_TYPE_PARM:
13043 case TEMPLATE_TEMPLATE_PARM:
13044 case BOUND_TEMPLATE_TEMPLATE_PARM:
13045 if (cp_type_quals (t))
13046 {
13047 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13048 r = cp_build_qualified_type_real
13049 (r, cp_type_quals (t),
13050 complain | (code == TEMPLATE_TYPE_PARM
13051 ? tf_ignore_bad_quals : 0));
13052 }
13053 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13054 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13055 && (r = (TEMPLATE_PARM_DESCENDANTS
13056 (TEMPLATE_TYPE_PARM_INDEX (t))))
13057 && (r = TREE_TYPE (r))
13058 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13059 /* Break infinite recursion when substituting the constraints
13060 of a constrained placeholder. */;
13061 else
13062 {
13063 r = copy_type (t);
13064 TEMPLATE_TYPE_PARM_INDEX (r)
13065 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13066 r, levels, args, complain);
13067 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13068 TYPE_MAIN_VARIANT (r) = r;
13069 TYPE_POINTER_TO (r) = NULL_TREE;
13070 TYPE_REFERENCE_TO (r) = NULL_TREE;
13071
13072 /* Propagate constraints on placeholders. */
13073 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13074 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13075 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13076 = tsubst_constraint (constr, args, complain, in_decl);
13077
13078 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13079 /* We have reduced the level of the template
13080 template parameter, but not the levels of its
13081 template parameters, so canonical_type_parameter
13082 will not be able to find the canonical template
13083 template parameter for this level. Thus, we
13084 require structural equality checking to compare
13085 TEMPLATE_TEMPLATE_PARMs. */
13086 SET_TYPE_STRUCTURAL_EQUALITY (r);
13087 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13088 SET_TYPE_STRUCTURAL_EQUALITY (r);
13089 else
13090 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13091
13092 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13093 {
13094 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
13095 complain, in_decl);
13096 if (argvec == error_mark_node)
13097 return error_mark_node;
13098
13099 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13100 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
13101 }
13102 }
13103 break;
13104
13105 case TEMPLATE_PARM_INDEX:
13106 r = reduce_template_parm_level (t, type, levels, args, complain);
13107 break;
13108
13109 default:
13110 gcc_unreachable ();
13111 }
13112
13113 return r;
13114 }
13115
13116 case TREE_LIST:
13117 {
13118 tree purpose, value, chain;
13119
13120 if (t == void_list_node)
13121 return t;
13122
13123 purpose = TREE_PURPOSE (t);
13124 if (purpose)
13125 {
13126 purpose = tsubst (purpose, args, complain, in_decl);
13127 if (purpose == error_mark_node)
13128 return error_mark_node;
13129 }
13130 value = TREE_VALUE (t);
13131 if (value)
13132 {
13133 value = tsubst (value, args, complain, in_decl);
13134 if (value == error_mark_node)
13135 return error_mark_node;
13136 }
13137 chain = TREE_CHAIN (t);
13138 if (chain && chain != void_type_node)
13139 {
13140 chain = tsubst (chain, args, complain, in_decl);
13141 if (chain == error_mark_node)
13142 return error_mark_node;
13143 }
13144 if (purpose == TREE_PURPOSE (t)
13145 && value == TREE_VALUE (t)
13146 && chain == TREE_CHAIN (t))
13147 return t;
13148 return hash_tree_cons (purpose, value, chain);
13149 }
13150
13151 case TREE_BINFO:
13152 /* We should never be tsubsting a binfo. */
13153 gcc_unreachable ();
13154
13155 case TREE_VEC:
13156 /* A vector of template arguments. */
13157 gcc_assert (!type);
13158 return tsubst_template_args (t, args, complain, in_decl);
13159
13160 case POINTER_TYPE:
13161 case REFERENCE_TYPE:
13162 {
13163 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13164 return t;
13165
13166 /* [temp.deduct]
13167
13168 Type deduction may fail for any of the following
13169 reasons:
13170
13171 -- Attempting to create a pointer to reference type.
13172 -- Attempting to create a reference to a reference type or
13173 a reference to void.
13174
13175 Core issue 106 says that creating a reference to a reference
13176 during instantiation is no longer a cause for failure. We
13177 only enforce this check in strict C++98 mode. */
13178 if ((TREE_CODE (type) == REFERENCE_TYPE
13179 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13180 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13181 {
13182 static location_t last_loc;
13183
13184 /* We keep track of the last time we issued this error
13185 message to avoid spewing a ton of messages during a
13186 single bad template instantiation. */
13187 if (complain & tf_error
13188 && last_loc != input_location)
13189 {
13190 if (VOID_TYPE_P (type))
13191 error ("forming reference to void");
13192 else if (code == POINTER_TYPE)
13193 error ("forming pointer to reference type %qT", type);
13194 else
13195 error ("forming reference to reference type %qT", type);
13196 last_loc = input_location;
13197 }
13198
13199 return error_mark_node;
13200 }
13201 else if (TREE_CODE (type) == FUNCTION_TYPE
13202 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13203 || type_memfn_rqual (type) != REF_QUAL_NONE))
13204 {
13205 if (complain & tf_error)
13206 {
13207 if (code == POINTER_TYPE)
13208 error ("forming pointer to qualified function type %qT",
13209 type);
13210 else
13211 error ("forming reference to qualified function type %qT",
13212 type);
13213 }
13214 return error_mark_node;
13215 }
13216 else if (code == POINTER_TYPE)
13217 {
13218 r = build_pointer_type (type);
13219 if (TREE_CODE (type) == METHOD_TYPE)
13220 r = build_ptrmemfunc_type (r);
13221 }
13222 else if (TREE_CODE (type) == REFERENCE_TYPE)
13223 /* In C++0x, during template argument substitution, when there is an
13224 attempt to create a reference to a reference type, reference
13225 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13226
13227 "If a template-argument for a template-parameter T names a type
13228 that is a reference to a type A, an attempt to create the type
13229 'lvalue reference to cv T' creates the type 'lvalue reference to
13230 A,' while an attempt to create the type type rvalue reference to
13231 cv T' creates the type T"
13232 */
13233 r = cp_build_reference_type
13234 (TREE_TYPE (type),
13235 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13236 else
13237 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13238 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13239
13240 if (r != error_mark_node)
13241 /* Will this ever be needed for TYPE_..._TO values? */
13242 layout_type (r);
13243
13244 return r;
13245 }
13246 case OFFSET_TYPE:
13247 {
13248 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13249 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13250 {
13251 /* [temp.deduct]
13252
13253 Type deduction may fail for any of the following
13254 reasons:
13255
13256 -- Attempting to create "pointer to member of T" when T
13257 is not a class type. */
13258 if (complain & tf_error)
13259 error ("creating pointer to member of non-class type %qT", r);
13260 return error_mark_node;
13261 }
13262 if (TREE_CODE (type) == REFERENCE_TYPE)
13263 {
13264 if (complain & tf_error)
13265 error ("creating pointer to member reference type %qT", type);
13266 return error_mark_node;
13267 }
13268 if (VOID_TYPE_P (type))
13269 {
13270 if (complain & tf_error)
13271 error ("creating pointer to member of type void");
13272 return error_mark_node;
13273 }
13274 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13275 if (TREE_CODE (type) == FUNCTION_TYPE)
13276 {
13277 /* The type of the implicit object parameter gets its
13278 cv-qualifiers from the FUNCTION_TYPE. */
13279 tree memptr;
13280 tree method_type
13281 = build_memfn_type (type, r, type_memfn_quals (type),
13282 type_memfn_rqual (type));
13283 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13284 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13285 complain);
13286 }
13287 else
13288 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13289 cp_type_quals (t),
13290 complain);
13291 }
13292 case FUNCTION_TYPE:
13293 case METHOD_TYPE:
13294 {
13295 tree fntype;
13296 tree specs;
13297 fntype = tsubst_function_type (t, args, complain, in_decl);
13298 if (fntype == error_mark_node)
13299 return error_mark_node;
13300
13301 /* Substitute the exception specification. */
13302 specs = tsubst_exception_specification (t, args, complain,
13303 in_decl, /*defer_ok*/true);
13304 if (specs == error_mark_node)
13305 return error_mark_node;
13306 if (specs)
13307 fntype = build_exception_variant (fntype, specs);
13308 return fntype;
13309 }
13310 case ARRAY_TYPE:
13311 {
13312 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13313 if (domain == error_mark_node)
13314 return error_mark_node;
13315
13316 /* As an optimization, we avoid regenerating the array type if
13317 it will obviously be the same as T. */
13318 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13319 return t;
13320
13321 /* These checks should match the ones in create_array_type_for_decl.
13322
13323 [temp.deduct]
13324
13325 The deduction may fail for any of the following reasons:
13326
13327 -- Attempting to create an array with an element type that
13328 is void, a function type, or a reference type, or [DR337]
13329 an abstract class type. */
13330 if (VOID_TYPE_P (type)
13331 || TREE_CODE (type) == FUNCTION_TYPE
13332 || (TREE_CODE (type) == ARRAY_TYPE
13333 && TYPE_DOMAIN (type) == NULL_TREE)
13334 || TREE_CODE (type) == REFERENCE_TYPE)
13335 {
13336 if (complain & tf_error)
13337 error ("creating array of %qT", type);
13338 return error_mark_node;
13339 }
13340
13341 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13342 return error_mark_node;
13343
13344 r = build_cplus_array_type (type, domain);
13345
13346 if (TYPE_USER_ALIGN (t))
13347 {
13348 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13349 TYPE_USER_ALIGN (r) = 1;
13350 }
13351
13352 return r;
13353 }
13354
13355 case TYPENAME_TYPE:
13356 {
13357 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13358 in_decl, /*entering_scope=*/1);
13359 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13360 complain, in_decl);
13361
13362 if (ctx == error_mark_node || f == error_mark_node)
13363 return error_mark_node;
13364
13365 if (!MAYBE_CLASS_TYPE_P (ctx))
13366 {
13367 if (complain & tf_error)
13368 error ("%qT is not a class, struct, or union type", ctx);
13369 return error_mark_node;
13370 }
13371 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13372 {
13373 /* Normally, make_typename_type does not require that the CTX
13374 have complete type in order to allow things like:
13375
13376 template <class T> struct S { typename S<T>::X Y; };
13377
13378 But, such constructs have already been resolved by this
13379 point, so here CTX really should have complete type, unless
13380 it's a partial instantiation. */
13381 ctx = complete_type (ctx);
13382 if (!COMPLETE_TYPE_P (ctx))
13383 {
13384 if (complain & tf_error)
13385 cxx_incomplete_type_error (NULL_TREE, ctx);
13386 return error_mark_node;
13387 }
13388 }
13389
13390 f = make_typename_type (ctx, f, typename_type,
13391 complain | tf_keep_type_decl);
13392 if (f == error_mark_node)
13393 return f;
13394 if (TREE_CODE (f) == TYPE_DECL)
13395 {
13396 complain |= tf_ignore_bad_quals;
13397 f = TREE_TYPE (f);
13398 }
13399
13400 if (TREE_CODE (f) != TYPENAME_TYPE)
13401 {
13402 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13403 {
13404 if (complain & tf_error)
13405 error ("%qT resolves to %qT, which is not an enumeration type",
13406 t, f);
13407 else
13408 return error_mark_node;
13409 }
13410 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13411 {
13412 if (complain & tf_error)
13413 error ("%qT resolves to %qT, which is is not a class type",
13414 t, f);
13415 else
13416 return error_mark_node;
13417 }
13418 }
13419
13420 return cp_build_qualified_type_real
13421 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13422 }
13423
13424 case UNBOUND_CLASS_TEMPLATE:
13425 {
13426 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13427 in_decl, /*entering_scope=*/1);
13428 tree name = TYPE_IDENTIFIER (t);
13429 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13430
13431 if (ctx == error_mark_node || name == error_mark_node)
13432 return error_mark_node;
13433
13434 if (parm_list)
13435 parm_list = tsubst_template_parms (parm_list, args, complain);
13436 return make_unbound_class_template (ctx, name, parm_list, complain);
13437 }
13438
13439 case TYPEOF_TYPE:
13440 {
13441 tree type;
13442
13443 ++cp_unevaluated_operand;
13444 ++c_inhibit_evaluation_warnings;
13445
13446 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13447 complain, in_decl,
13448 /*integral_constant_expression_p=*/false);
13449
13450 --cp_unevaluated_operand;
13451 --c_inhibit_evaluation_warnings;
13452
13453 type = finish_typeof (type);
13454 return cp_build_qualified_type_real (type,
13455 cp_type_quals (t)
13456 | cp_type_quals (type),
13457 complain);
13458 }
13459
13460 case DECLTYPE_TYPE:
13461 {
13462 tree type;
13463
13464 ++cp_unevaluated_operand;
13465 ++c_inhibit_evaluation_warnings;
13466
13467 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13468 complain|tf_decltype, in_decl,
13469 /*function_p*/false,
13470 /*integral_constant_expression*/false);
13471
13472 --cp_unevaluated_operand;
13473 --c_inhibit_evaluation_warnings;
13474
13475 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13476 type = lambda_capture_field_type (type,
13477 DECLTYPE_FOR_INIT_CAPTURE (t));
13478 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13479 type = lambda_proxy_type (type);
13480 else
13481 {
13482 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13483 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13484 && EXPR_P (type))
13485 /* In a template ~id could be either a complement expression
13486 or an unqualified-id naming a destructor; if instantiating
13487 it produces an expression, it's not an id-expression or
13488 member access. */
13489 id = false;
13490 type = finish_decltype_type (type, id, complain);
13491 }
13492 return cp_build_qualified_type_real (type,
13493 cp_type_quals (t)
13494 | cp_type_quals (type),
13495 complain | tf_ignore_bad_quals);
13496 }
13497
13498 case UNDERLYING_TYPE:
13499 {
13500 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13501 complain, in_decl);
13502 return finish_underlying_type (type);
13503 }
13504
13505 case TYPE_ARGUMENT_PACK:
13506 case NONTYPE_ARGUMENT_PACK:
13507 {
13508 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13509 tree packed_out =
13510 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13511 args,
13512 complain,
13513 in_decl);
13514 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13515
13516 /* For template nontype argument packs, also substitute into
13517 the type. */
13518 if (code == NONTYPE_ARGUMENT_PACK)
13519 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13520
13521 return r;
13522 }
13523 break;
13524
13525 case VOID_CST:
13526 case INTEGER_CST:
13527 case REAL_CST:
13528 case STRING_CST:
13529 case PLUS_EXPR:
13530 case MINUS_EXPR:
13531 case NEGATE_EXPR:
13532 case NOP_EXPR:
13533 case INDIRECT_REF:
13534 case ADDR_EXPR:
13535 case CALL_EXPR:
13536 case ARRAY_REF:
13537 case SCOPE_REF:
13538 /* We should use one of the expression tsubsts for these codes. */
13539 gcc_unreachable ();
13540
13541 default:
13542 sorry ("use of %qs in template", get_tree_code_name (code));
13543 return error_mark_node;
13544 }
13545 }
13546
13547 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13548 type of the expression on the left-hand side of the "." or "->"
13549 operator. */
13550
13551 static tree
13552 tsubst_baselink (tree baselink, tree object_type,
13553 tree args, tsubst_flags_t complain, tree in_decl)
13554 {
13555 tree name;
13556 tree qualifying_scope;
13557 tree fns;
13558 tree optype;
13559 tree template_args = 0;
13560 bool template_id_p = false;
13561 bool qualified = BASELINK_QUALIFIED_P (baselink);
13562
13563 /* A baselink indicates a function from a base class. Both the
13564 BASELINK_ACCESS_BINFO and the base class referenced may
13565 indicate bases of the template class, rather than the
13566 instantiated class. In addition, lookups that were not
13567 ambiguous before may be ambiguous now. Therefore, we perform
13568 the lookup again. */
13569 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13570 qualifying_scope = tsubst (qualifying_scope, args,
13571 complain, in_decl);
13572 fns = BASELINK_FUNCTIONS (baselink);
13573 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13574 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13575 {
13576 template_id_p = true;
13577 template_args = TREE_OPERAND (fns, 1);
13578 fns = TREE_OPERAND (fns, 0);
13579 if (template_args)
13580 template_args = tsubst_template_args (template_args, args,
13581 complain, in_decl);
13582 }
13583 name = DECL_NAME (get_first_fn (fns));
13584 if (IDENTIFIER_TYPENAME_P (name))
13585 name = mangle_conv_op_name_for_type (optype);
13586 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13587 if (!baselink)
13588 {
13589 if (constructor_name_p (name, qualifying_scope))
13590 {
13591 if (complain & tf_error)
13592 error ("cannot call constructor %<%T::%D%> directly",
13593 qualifying_scope, name);
13594 }
13595 return error_mark_node;
13596 }
13597
13598 /* If lookup found a single function, mark it as used at this
13599 point. (If it lookup found multiple functions the one selected
13600 later by overload resolution will be marked as used at that
13601 point.) */
13602 if (BASELINK_P (baselink))
13603 fns = BASELINK_FUNCTIONS (baselink);
13604 if (!template_id_p && !really_overloaded_fn (fns)
13605 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13606 return error_mark_node;
13607
13608 /* Add back the template arguments, if present. */
13609 if (BASELINK_P (baselink) && template_id_p)
13610 BASELINK_FUNCTIONS (baselink)
13611 = build_nt (TEMPLATE_ID_EXPR,
13612 BASELINK_FUNCTIONS (baselink),
13613 template_args);
13614 /* Update the conversion operator type. */
13615 BASELINK_OPTYPE (baselink) = optype;
13616
13617 if (!object_type)
13618 object_type = current_class_type;
13619
13620 if (qualified)
13621 baselink = adjust_result_of_qualified_name_lookup (baselink,
13622 qualifying_scope,
13623 object_type);
13624 return baselink;
13625 }
13626
13627 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13628 true if the qualified-id will be a postfix-expression in-and-of
13629 itself; false if more of the postfix-expression follows the
13630 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13631 of "&". */
13632
13633 static tree
13634 tsubst_qualified_id (tree qualified_id, tree args,
13635 tsubst_flags_t complain, tree in_decl,
13636 bool done, bool address_p)
13637 {
13638 tree expr;
13639 tree scope;
13640 tree name;
13641 bool is_template;
13642 tree template_args;
13643 location_t loc = UNKNOWN_LOCATION;
13644
13645 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13646
13647 /* Figure out what name to look up. */
13648 name = TREE_OPERAND (qualified_id, 1);
13649 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13650 {
13651 is_template = true;
13652 loc = EXPR_LOCATION (name);
13653 template_args = TREE_OPERAND (name, 1);
13654 if (template_args)
13655 template_args = tsubst_template_args (template_args, args,
13656 complain, in_decl);
13657 name = TREE_OPERAND (name, 0);
13658 }
13659 else
13660 {
13661 is_template = false;
13662 template_args = NULL_TREE;
13663 }
13664
13665 /* Substitute into the qualifying scope. When there are no ARGS, we
13666 are just trying to simplify a non-dependent expression. In that
13667 case the qualifying scope may be dependent, and, in any case,
13668 substituting will not help. */
13669 scope = TREE_OPERAND (qualified_id, 0);
13670 if (args)
13671 {
13672 scope = tsubst (scope, args, complain, in_decl);
13673 expr = tsubst_copy (name, args, complain, in_decl);
13674 }
13675 else
13676 expr = name;
13677
13678 if (dependent_scope_p (scope))
13679 {
13680 if (is_template)
13681 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13682 return build_qualified_name (NULL_TREE, scope, expr,
13683 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13684 }
13685
13686 if (!BASELINK_P (name) && !DECL_P (expr))
13687 {
13688 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13689 {
13690 /* A BIT_NOT_EXPR is used to represent a destructor. */
13691 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13692 {
13693 error ("qualifying type %qT does not match destructor name ~%qT",
13694 scope, TREE_OPERAND (expr, 0));
13695 expr = error_mark_node;
13696 }
13697 else
13698 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13699 /*is_type_p=*/0, false);
13700 }
13701 else
13702 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13703 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13704 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13705 {
13706 if (complain & tf_error)
13707 {
13708 error ("dependent-name %qE is parsed as a non-type, but "
13709 "instantiation yields a type", qualified_id);
13710 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13711 }
13712 return error_mark_node;
13713 }
13714 }
13715
13716 if (DECL_P (expr))
13717 {
13718 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13719 scope);
13720 /* Remember that there was a reference to this entity. */
13721 if (!mark_used (expr, complain) && !(complain & tf_error))
13722 return error_mark_node;
13723 }
13724
13725 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13726 {
13727 if (complain & tf_error)
13728 qualified_name_lookup_error (scope,
13729 TREE_OPERAND (qualified_id, 1),
13730 expr, input_location);
13731 return error_mark_node;
13732 }
13733
13734 if (is_template)
13735 expr = lookup_template_function (expr, template_args);
13736
13737 if (expr == error_mark_node && complain & tf_error)
13738 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13739 expr, input_location);
13740 else if (TYPE_P (scope))
13741 {
13742 expr = (adjust_result_of_qualified_name_lookup
13743 (expr, scope, current_nonlambda_class_type ()));
13744 expr = (finish_qualified_id_expr
13745 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13746 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13747 /*template_arg_p=*/false, complain));
13748 }
13749
13750 /* Expressions do not generally have reference type. */
13751 if (TREE_CODE (expr) != SCOPE_REF
13752 /* However, if we're about to form a pointer-to-member, we just
13753 want the referenced member referenced. */
13754 && TREE_CODE (expr) != OFFSET_REF)
13755 expr = convert_from_reference (expr);
13756
13757 return expr;
13758 }
13759
13760 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13761 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13762 for tsubst. */
13763
13764 static tree
13765 tsubst_init (tree init, tree decl, tree args,
13766 tsubst_flags_t complain, tree in_decl)
13767 {
13768 if (!init)
13769 return NULL_TREE;
13770
13771 init = tsubst_expr (init, args, complain, in_decl, false);
13772
13773 if (!init)
13774 {
13775 /* If we had an initializer but it
13776 instantiated to nothing,
13777 value-initialize the object. This will
13778 only occur when the initializer was a
13779 pack expansion where the parameter packs
13780 used in that expansion were of length
13781 zero. */
13782 init = build_value_init (TREE_TYPE (decl),
13783 complain);
13784 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13785 init = get_target_expr_sfinae (init, complain);
13786 }
13787
13788 return init;
13789 }
13790
13791 /* Like tsubst, but deals with expressions. This function just replaces
13792 template parms; to finish processing the resultant expression, use
13793 tsubst_copy_and_build or tsubst_expr. */
13794
13795 static tree
13796 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13797 {
13798 enum tree_code code;
13799 tree r;
13800
13801 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13802 return t;
13803
13804 code = TREE_CODE (t);
13805
13806 switch (code)
13807 {
13808 case PARM_DECL:
13809 r = retrieve_local_specialization (t);
13810
13811 if (r == NULL_TREE)
13812 {
13813 /* We get here for a use of 'this' in an NSDMI. */
13814 if (DECL_NAME (t) == this_identifier
13815 && current_function_decl
13816 && DECL_CONSTRUCTOR_P (current_function_decl))
13817 return current_class_ptr;
13818
13819 /* This can happen for a parameter name used later in a function
13820 declaration (such as in a late-specified return type). Just
13821 make a dummy decl, since it's only used for its type. */
13822 gcc_assert (cp_unevaluated_operand != 0);
13823 r = tsubst_decl (t, args, complain);
13824 /* Give it the template pattern as its context; its true context
13825 hasn't been instantiated yet and this is good enough for
13826 mangling. */
13827 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13828 }
13829
13830 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13831 r = ARGUMENT_PACK_SELECT_ARG (r);
13832 if (!mark_used (r, complain) && !(complain & tf_error))
13833 return error_mark_node;
13834 return r;
13835
13836 case CONST_DECL:
13837 {
13838 tree enum_type;
13839 tree v;
13840
13841 if (DECL_TEMPLATE_PARM_P (t))
13842 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13843 /* There is no need to substitute into namespace-scope
13844 enumerators. */
13845 if (DECL_NAMESPACE_SCOPE_P (t))
13846 return t;
13847 /* If ARGS is NULL, then T is known to be non-dependent. */
13848 if (args == NULL_TREE)
13849 return scalar_constant_value (t);
13850
13851 /* Unfortunately, we cannot just call lookup_name here.
13852 Consider:
13853
13854 template <int I> int f() {
13855 enum E { a = I };
13856 struct S { void g() { E e = a; } };
13857 };
13858
13859 When we instantiate f<7>::S::g(), say, lookup_name is not
13860 clever enough to find f<7>::a. */
13861 enum_type
13862 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13863 /*entering_scope=*/0);
13864
13865 for (v = TYPE_VALUES (enum_type);
13866 v != NULL_TREE;
13867 v = TREE_CHAIN (v))
13868 if (TREE_PURPOSE (v) == DECL_NAME (t))
13869 return TREE_VALUE (v);
13870
13871 /* We didn't find the name. That should never happen; if
13872 name-lookup found it during preliminary parsing, we
13873 should find it again here during instantiation. */
13874 gcc_unreachable ();
13875 }
13876 return t;
13877
13878 case FIELD_DECL:
13879 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13880 {
13881 /* Check for a local specialization set up by
13882 tsubst_pack_expansion. */
13883 if (tree r = retrieve_local_specialization (t))
13884 {
13885 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13886 r = ARGUMENT_PACK_SELECT_ARG (r);
13887 return r;
13888 }
13889
13890 /* When retrieving a capture pack from a generic lambda, remove the
13891 lambda call op's own template argument list from ARGS. Only the
13892 template arguments active for the closure type should be used to
13893 retrieve the pack specialization. */
13894 if (LAMBDA_FUNCTION_P (current_function_decl)
13895 && (template_class_depth (DECL_CONTEXT (t))
13896 != TMPL_ARGS_DEPTH (args)))
13897 args = strip_innermost_template_args (args, 1);
13898
13899 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13900 tsubst_decl put in the hash table. */
13901 return retrieve_specialization (t, args, 0);
13902 }
13903
13904 if (DECL_CONTEXT (t))
13905 {
13906 tree ctx;
13907
13908 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13909 /*entering_scope=*/1);
13910 if (ctx != DECL_CONTEXT (t))
13911 {
13912 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13913 if (!r)
13914 {
13915 if (complain & tf_error)
13916 error ("using invalid field %qD", t);
13917 return error_mark_node;
13918 }
13919 return r;
13920 }
13921 }
13922
13923 return t;
13924
13925 case VAR_DECL:
13926 case FUNCTION_DECL:
13927 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13928 r = tsubst (t, args, complain, in_decl);
13929 else if (local_variable_p (t))
13930 {
13931 r = retrieve_local_specialization (t);
13932 if (r == NULL_TREE)
13933 {
13934 /* First try name lookup to find the instantiation. */
13935 r = lookup_name (DECL_NAME (t));
13936 if (r)
13937 {
13938 /* Make sure that the one we found is the one we want. */
13939 tree ctx = DECL_CONTEXT (t);
13940 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
13941 ctx = tsubst (ctx, args, complain, in_decl);
13942 if (ctx != DECL_CONTEXT (r))
13943 r = NULL_TREE;
13944 }
13945
13946 if (r)
13947 /* OK */;
13948 else
13949 {
13950 /* This can happen for a variable used in a
13951 late-specified return type of a local lambda, or for a
13952 local static or constant. Building a new VAR_DECL
13953 should be OK in all those cases. */
13954 r = tsubst_decl (t, args, complain);
13955 if (decl_maybe_constant_var_p (r))
13956 {
13957 /* We can't call cp_finish_decl, so handle the
13958 initializer by hand. */
13959 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13960 complain, in_decl);
13961 if (!processing_template_decl)
13962 init = maybe_constant_init (init);
13963 if (processing_template_decl
13964 ? potential_constant_expression (init)
13965 : reduced_constant_expression_p (init))
13966 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13967 = TREE_CONSTANT (r) = true;
13968 DECL_INITIAL (r) = init;
13969 }
13970 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13971 || decl_constant_var_p (r)
13972 || errorcount || sorrycount);
13973 if (!processing_template_decl)
13974 {
13975 if (TREE_STATIC (r))
13976 rest_of_decl_compilation (r, toplevel_bindings_p (),
13977 at_eof);
13978 else
13979 r = process_outer_var_ref (r, complain);
13980 }
13981 }
13982 /* Remember this for subsequent uses. */
13983 if (local_specializations)
13984 register_local_specialization (r, t);
13985 }
13986 }
13987 else
13988 r = t;
13989 if (!mark_used (r, complain) && !(complain & tf_error))
13990 return error_mark_node;
13991 return r;
13992
13993 case NAMESPACE_DECL:
13994 return t;
13995
13996 case OVERLOAD:
13997 /* An OVERLOAD will always be a non-dependent overload set; an
13998 overload set from function scope will just be represented with an
13999 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14000 gcc_assert (!uses_template_parms (t));
14001 return t;
14002
14003 case BASELINK:
14004 return tsubst_baselink (t, current_nonlambda_class_type (),
14005 args, complain, in_decl);
14006
14007 case TEMPLATE_DECL:
14008 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14009 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14010 args, complain, in_decl);
14011 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14012 return tsubst (t, args, complain, in_decl);
14013 else if (DECL_CLASS_SCOPE_P (t)
14014 && uses_template_parms (DECL_CONTEXT (t)))
14015 {
14016 /* Template template argument like the following example need
14017 special treatment:
14018
14019 template <template <class> class TT> struct C {};
14020 template <class T> struct D {
14021 template <class U> struct E {};
14022 C<E> c; // #1
14023 };
14024 D<int> d; // #2
14025
14026 We are processing the template argument `E' in #1 for
14027 the template instantiation #2. Originally, `E' is a
14028 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14029 have to substitute this with one having context `D<int>'. */
14030
14031 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14032 return lookup_field (context, DECL_NAME(t), 0, false);
14033 }
14034 else
14035 /* Ordinary template template argument. */
14036 return t;
14037
14038 case CAST_EXPR:
14039 case REINTERPRET_CAST_EXPR:
14040 case CONST_CAST_EXPR:
14041 case STATIC_CAST_EXPR:
14042 case DYNAMIC_CAST_EXPR:
14043 case IMPLICIT_CONV_EXPR:
14044 case CONVERT_EXPR:
14045 case NOP_EXPR:
14046 {
14047 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14048 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14049 return build1 (code, type, op0);
14050 }
14051
14052 case SIZEOF_EXPR:
14053 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14054 {
14055 tree expanded, op = TREE_OPERAND (t, 0);
14056 int len = 0;
14057
14058 if (SIZEOF_EXPR_TYPE_P (t))
14059 op = TREE_TYPE (op);
14060
14061 ++cp_unevaluated_operand;
14062 ++c_inhibit_evaluation_warnings;
14063 /* We only want to compute the number of arguments. */
14064 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14065 --cp_unevaluated_operand;
14066 --c_inhibit_evaluation_warnings;
14067
14068 if (TREE_CODE (expanded) == TREE_VEC)
14069 {
14070 len = TREE_VEC_LENGTH (expanded);
14071 /* Set TREE_USED for the benefit of -Wunused. */
14072 for (int i = 0; i < len; i++)
14073 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14074 }
14075
14076 if (expanded == error_mark_node)
14077 return error_mark_node;
14078 else if (PACK_EXPANSION_P (expanded)
14079 || (TREE_CODE (expanded) == TREE_VEC
14080 && len > 0
14081 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
14082 {
14083 if (TREE_CODE (expanded) == TREE_VEC)
14084 expanded = TREE_VEC_ELT (expanded, len - 1);
14085 else
14086 PACK_EXPANSION_SIZEOF_P (expanded) = true;
14087
14088 if (TYPE_P (expanded))
14089 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14090 complain & tf_error);
14091 else
14092 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14093 complain & tf_error);
14094 }
14095 else
14096 return build_int_cst (size_type_node, len);
14097 }
14098 if (SIZEOF_EXPR_TYPE_P (t))
14099 {
14100 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14101 args, complain, in_decl);
14102 r = build1 (NOP_EXPR, r, error_mark_node);
14103 r = build1 (SIZEOF_EXPR,
14104 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14105 SIZEOF_EXPR_TYPE_P (r) = 1;
14106 return r;
14107 }
14108 /* Fall through */
14109
14110 case INDIRECT_REF:
14111 case NEGATE_EXPR:
14112 case TRUTH_NOT_EXPR:
14113 case BIT_NOT_EXPR:
14114 case ADDR_EXPR:
14115 case UNARY_PLUS_EXPR: /* Unary + */
14116 case ALIGNOF_EXPR:
14117 case AT_ENCODE_EXPR:
14118 case ARROW_EXPR:
14119 case THROW_EXPR:
14120 case TYPEID_EXPR:
14121 case REALPART_EXPR:
14122 case IMAGPART_EXPR:
14123 case PAREN_EXPR:
14124 {
14125 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14126 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14127 return build1 (code, type, op0);
14128 }
14129
14130 case COMPONENT_REF:
14131 {
14132 tree object;
14133 tree name;
14134
14135 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14136 name = TREE_OPERAND (t, 1);
14137 if (TREE_CODE (name) == BIT_NOT_EXPR)
14138 {
14139 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14140 complain, in_decl);
14141 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14142 }
14143 else if (TREE_CODE (name) == SCOPE_REF
14144 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14145 {
14146 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14147 complain, in_decl);
14148 name = TREE_OPERAND (name, 1);
14149 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14150 complain, in_decl);
14151 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14152 name = build_qualified_name (/*type=*/NULL_TREE,
14153 base, name,
14154 /*template_p=*/false);
14155 }
14156 else if (BASELINK_P (name))
14157 name = tsubst_baselink (name,
14158 non_reference (TREE_TYPE (object)),
14159 args, complain,
14160 in_decl);
14161 else
14162 name = tsubst_copy (name, args, complain, in_decl);
14163 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14164 }
14165
14166 case PLUS_EXPR:
14167 case MINUS_EXPR:
14168 case MULT_EXPR:
14169 case TRUNC_DIV_EXPR:
14170 case CEIL_DIV_EXPR:
14171 case FLOOR_DIV_EXPR:
14172 case ROUND_DIV_EXPR:
14173 case EXACT_DIV_EXPR:
14174 case BIT_AND_EXPR:
14175 case BIT_IOR_EXPR:
14176 case BIT_XOR_EXPR:
14177 case TRUNC_MOD_EXPR:
14178 case FLOOR_MOD_EXPR:
14179 case TRUTH_ANDIF_EXPR:
14180 case TRUTH_ORIF_EXPR:
14181 case TRUTH_AND_EXPR:
14182 case TRUTH_OR_EXPR:
14183 case RSHIFT_EXPR:
14184 case LSHIFT_EXPR:
14185 case RROTATE_EXPR:
14186 case LROTATE_EXPR:
14187 case EQ_EXPR:
14188 case NE_EXPR:
14189 case MAX_EXPR:
14190 case MIN_EXPR:
14191 case LE_EXPR:
14192 case GE_EXPR:
14193 case LT_EXPR:
14194 case GT_EXPR:
14195 case COMPOUND_EXPR:
14196 case DOTSTAR_EXPR:
14197 case MEMBER_REF:
14198 case PREDECREMENT_EXPR:
14199 case PREINCREMENT_EXPR:
14200 case POSTDECREMENT_EXPR:
14201 case POSTINCREMENT_EXPR:
14202 {
14203 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14204 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14205 return build_nt (code, op0, op1);
14206 }
14207
14208 case SCOPE_REF:
14209 {
14210 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14211 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14212 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14213 QUALIFIED_NAME_IS_TEMPLATE (t));
14214 }
14215
14216 case ARRAY_REF:
14217 {
14218 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14219 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14220 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14221 }
14222
14223 case CALL_EXPR:
14224 {
14225 int n = VL_EXP_OPERAND_LENGTH (t);
14226 tree result = build_vl_exp (CALL_EXPR, n);
14227 int i;
14228 for (i = 0; i < n; i++)
14229 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14230 complain, in_decl);
14231 return result;
14232 }
14233
14234 case COND_EXPR:
14235 case MODOP_EXPR:
14236 case PSEUDO_DTOR_EXPR:
14237 case VEC_PERM_EXPR:
14238 {
14239 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14240 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14241 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14242 r = build_nt (code, op0, op1, op2);
14243 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14244 return r;
14245 }
14246
14247 case NEW_EXPR:
14248 {
14249 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14250 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14251 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14252 r = build_nt (code, op0, op1, op2);
14253 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14254 return r;
14255 }
14256
14257 case DELETE_EXPR:
14258 {
14259 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14260 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14261 r = build_nt (code, op0, op1);
14262 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14263 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14264 return r;
14265 }
14266
14267 case TEMPLATE_ID_EXPR:
14268 {
14269 /* Substituted template arguments */
14270 tree fn = TREE_OPERAND (t, 0);
14271 tree targs = TREE_OPERAND (t, 1);
14272
14273 fn = tsubst_copy (fn, args, complain, in_decl);
14274 if (targs)
14275 targs = tsubst_template_args (targs, args, complain, in_decl);
14276
14277 return lookup_template_function (fn, targs);
14278 }
14279
14280 case TREE_LIST:
14281 {
14282 tree purpose, value, chain;
14283
14284 if (t == void_list_node)
14285 return t;
14286
14287 purpose = TREE_PURPOSE (t);
14288 if (purpose)
14289 purpose = tsubst_copy (purpose, args, complain, in_decl);
14290 value = TREE_VALUE (t);
14291 if (value)
14292 value = tsubst_copy (value, args, complain, in_decl);
14293 chain = TREE_CHAIN (t);
14294 if (chain && chain != void_type_node)
14295 chain = tsubst_copy (chain, args, complain, in_decl);
14296 if (purpose == TREE_PURPOSE (t)
14297 && value == TREE_VALUE (t)
14298 && chain == TREE_CHAIN (t))
14299 return t;
14300 return tree_cons (purpose, value, chain);
14301 }
14302
14303 case RECORD_TYPE:
14304 case UNION_TYPE:
14305 case ENUMERAL_TYPE:
14306 case INTEGER_TYPE:
14307 case TEMPLATE_TYPE_PARM:
14308 case TEMPLATE_TEMPLATE_PARM:
14309 case BOUND_TEMPLATE_TEMPLATE_PARM:
14310 case TEMPLATE_PARM_INDEX:
14311 case POINTER_TYPE:
14312 case REFERENCE_TYPE:
14313 case OFFSET_TYPE:
14314 case FUNCTION_TYPE:
14315 case METHOD_TYPE:
14316 case ARRAY_TYPE:
14317 case TYPENAME_TYPE:
14318 case UNBOUND_CLASS_TEMPLATE:
14319 case TYPEOF_TYPE:
14320 case DECLTYPE_TYPE:
14321 case TYPE_DECL:
14322 return tsubst (t, args, complain, in_decl);
14323
14324 case USING_DECL:
14325 t = DECL_NAME (t);
14326 /* Fall through. */
14327 case IDENTIFIER_NODE:
14328 if (IDENTIFIER_TYPENAME_P (t))
14329 {
14330 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14331 return mangle_conv_op_name_for_type (new_type);
14332 }
14333 else
14334 return t;
14335
14336 case CONSTRUCTOR:
14337 /* This is handled by tsubst_copy_and_build. */
14338 gcc_unreachable ();
14339
14340 case VA_ARG_EXPR:
14341 {
14342 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14343 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14344 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14345 }
14346
14347 case CLEANUP_POINT_EXPR:
14348 /* We shouldn't have built any of these during initial template
14349 generation. Instead, they should be built during instantiation
14350 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14351 gcc_unreachable ();
14352
14353 case OFFSET_REF:
14354 {
14355 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14356 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14357 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14358 r = build2 (code, type, op0, op1);
14359 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14360 if (!mark_used (TREE_OPERAND (r, 1), complain)
14361 && !(complain & tf_error))
14362 return error_mark_node;
14363 return r;
14364 }
14365
14366 case EXPR_PACK_EXPANSION:
14367 error ("invalid use of pack expansion expression");
14368 return error_mark_node;
14369
14370 case NONTYPE_ARGUMENT_PACK:
14371 error ("use %<...%> to expand argument pack");
14372 return error_mark_node;
14373
14374 case VOID_CST:
14375 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14376 return t;
14377
14378 case INTEGER_CST:
14379 case REAL_CST:
14380 case STRING_CST:
14381 case COMPLEX_CST:
14382 {
14383 /* Instantiate any typedefs in the type. */
14384 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14385 r = fold_convert (type, t);
14386 gcc_assert (TREE_CODE (r) == code);
14387 return r;
14388 }
14389
14390 case PTRMEM_CST:
14391 /* These can sometimes show up in a partial instantiation, but never
14392 involve template parms. */
14393 gcc_assert (!uses_template_parms (t));
14394 return t;
14395
14396 case UNARY_LEFT_FOLD_EXPR:
14397 return tsubst_unary_left_fold (t, args, complain, in_decl);
14398 case UNARY_RIGHT_FOLD_EXPR:
14399 return tsubst_unary_right_fold (t, args, complain, in_decl);
14400 case BINARY_LEFT_FOLD_EXPR:
14401 return tsubst_binary_left_fold (t, args, complain, in_decl);
14402 case BINARY_RIGHT_FOLD_EXPR:
14403 return tsubst_binary_right_fold (t, args, complain, in_decl);
14404
14405 default:
14406 /* We shouldn't get here, but keep going if !flag_checking. */
14407 if (flag_checking)
14408 gcc_unreachable ();
14409 return t;
14410 }
14411 }
14412
14413 /* Helper function for tsubst_omp_clauses, used for instantiation of
14414 OMP_CLAUSE_DECL of clauses. */
14415
14416 static tree
14417 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14418 tree in_decl)
14419 {
14420 if (decl == NULL_TREE)
14421 return NULL_TREE;
14422
14423 /* Handle an OpenMP array section represented as a TREE_LIST (or
14424 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14425 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14426 TREE_LIST. We can handle it exactly the same as an array section
14427 (purpose, value, and a chain), even though the nomenclature
14428 (low_bound, length, etc) is different. */
14429 if (TREE_CODE (decl) == TREE_LIST)
14430 {
14431 tree low_bound
14432 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14433 /*integral_constant_expression_p=*/false);
14434 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14435 /*integral_constant_expression_p=*/false);
14436 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14437 in_decl);
14438 if (TREE_PURPOSE (decl) == low_bound
14439 && TREE_VALUE (decl) == length
14440 && TREE_CHAIN (decl) == chain)
14441 return decl;
14442 tree ret = tree_cons (low_bound, length, chain);
14443 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14444 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14445 return ret;
14446 }
14447 tree ret = tsubst_expr (decl, args, complain, in_decl,
14448 /*integral_constant_expression_p=*/false);
14449 /* Undo convert_from_reference tsubst_expr could have called. */
14450 if (decl
14451 && REFERENCE_REF_P (ret)
14452 && !REFERENCE_REF_P (decl))
14453 ret = TREE_OPERAND (ret, 0);
14454 return ret;
14455 }
14456
14457 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14458
14459 static tree
14460 tsubst_omp_clauses (tree clauses, bool declare_simd, bool allow_fields,
14461 tree args, tsubst_flags_t complain, tree in_decl)
14462 {
14463 tree new_clauses = NULL_TREE, nc, oc;
14464 tree linear_no_step = NULL_TREE;
14465
14466 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14467 {
14468 nc = copy_node (oc);
14469 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14470 new_clauses = nc;
14471
14472 switch (OMP_CLAUSE_CODE (nc))
14473 {
14474 case OMP_CLAUSE_LASTPRIVATE:
14475 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14476 {
14477 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14478 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14479 in_decl, /*integral_constant_expression_p=*/false);
14480 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14481 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14482 }
14483 /* FALLTHRU */
14484 case OMP_CLAUSE_PRIVATE:
14485 case OMP_CLAUSE_SHARED:
14486 case OMP_CLAUSE_FIRSTPRIVATE:
14487 case OMP_CLAUSE_COPYIN:
14488 case OMP_CLAUSE_COPYPRIVATE:
14489 case OMP_CLAUSE_UNIFORM:
14490 case OMP_CLAUSE_DEPEND:
14491 case OMP_CLAUSE_FROM:
14492 case OMP_CLAUSE_TO:
14493 case OMP_CLAUSE_MAP:
14494 case OMP_CLAUSE_USE_DEVICE_PTR:
14495 case OMP_CLAUSE_IS_DEVICE_PTR:
14496 OMP_CLAUSE_DECL (nc)
14497 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14498 in_decl);
14499 break;
14500 case OMP_CLAUSE_IF:
14501 case OMP_CLAUSE_NUM_THREADS:
14502 case OMP_CLAUSE_SCHEDULE:
14503 case OMP_CLAUSE_COLLAPSE:
14504 case OMP_CLAUSE_FINAL:
14505 case OMP_CLAUSE_DEVICE:
14506 case OMP_CLAUSE_DIST_SCHEDULE:
14507 case OMP_CLAUSE_NUM_TEAMS:
14508 case OMP_CLAUSE_THREAD_LIMIT:
14509 case OMP_CLAUSE_SAFELEN:
14510 case OMP_CLAUSE_SIMDLEN:
14511 case OMP_CLAUSE_NUM_TASKS:
14512 case OMP_CLAUSE_GRAINSIZE:
14513 case OMP_CLAUSE_PRIORITY:
14514 case OMP_CLAUSE_ORDERED:
14515 case OMP_CLAUSE_HINT:
14516 case OMP_CLAUSE_NUM_GANGS:
14517 case OMP_CLAUSE_NUM_WORKERS:
14518 case OMP_CLAUSE_VECTOR_LENGTH:
14519 case OMP_CLAUSE_WORKER:
14520 case OMP_CLAUSE_VECTOR:
14521 case OMP_CLAUSE_ASYNC:
14522 case OMP_CLAUSE_WAIT:
14523 OMP_CLAUSE_OPERAND (nc, 0)
14524 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14525 in_decl, /*integral_constant_expression_p=*/false);
14526 break;
14527 case OMP_CLAUSE_REDUCTION:
14528 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14529 {
14530 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14531 if (TREE_CODE (placeholder) == SCOPE_REF)
14532 {
14533 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14534 complain, in_decl);
14535 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14536 = build_qualified_name (NULL_TREE, scope,
14537 TREE_OPERAND (placeholder, 1),
14538 false);
14539 }
14540 else
14541 gcc_assert (identifier_p (placeholder));
14542 }
14543 OMP_CLAUSE_DECL (nc)
14544 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14545 in_decl);
14546 break;
14547 case OMP_CLAUSE_GANG:
14548 case OMP_CLAUSE_ALIGNED:
14549 OMP_CLAUSE_DECL (nc)
14550 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14551 in_decl);
14552 OMP_CLAUSE_OPERAND (nc, 1)
14553 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14554 in_decl, /*integral_constant_expression_p=*/false);
14555 break;
14556 case OMP_CLAUSE_LINEAR:
14557 OMP_CLAUSE_DECL (nc)
14558 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14559 in_decl);
14560 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14561 {
14562 gcc_assert (!linear_no_step);
14563 linear_no_step = nc;
14564 }
14565 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14566 OMP_CLAUSE_LINEAR_STEP (nc)
14567 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14568 complain, in_decl);
14569 else
14570 OMP_CLAUSE_LINEAR_STEP (nc)
14571 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14572 in_decl,
14573 /*integral_constant_expression_p=*/false);
14574 break;
14575 case OMP_CLAUSE_NOWAIT:
14576 case OMP_CLAUSE_DEFAULT:
14577 case OMP_CLAUSE_UNTIED:
14578 case OMP_CLAUSE_MERGEABLE:
14579 case OMP_CLAUSE_INBRANCH:
14580 case OMP_CLAUSE_NOTINBRANCH:
14581 case OMP_CLAUSE_PROC_BIND:
14582 case OMP_CLAUSE_FOR:
14583 case OMP_CLAUSE_PARALLEL:
14584 case OMP_CLAUSE_SECTIONS:
14585 case OMP_CLAUSE_TASKGROUP:
14586 case OMP_CLAUSE_NOGROUP:
14587 case OMP_CLAUSE_THREADS:
14588 case OMP_CLAUSE_SIMD:
14589 case OMP_CLAUSE_DEFAULTMAP:
14590 case OMP_CLAUSE_INDEPENDENT:
14591 case OMP_CLAUSE_AUTO:
14592 case OMP_CLAUSE_SEQ:
14593 break;
14594 case OMP_CLAUSE_TILE:
14595 {
14596 tree lnc, loc;
14597 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14598 loc = OMP_CLAUSE_TILE_LIST (oc);
14599 loc;
14600 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14601 {
14602 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14603 complain, in_decl, false);
14604 }
14605 }
14606 break;
14607 default:
14608 gcc_unreachable ();
14609 }
14610 if (allow_fields)
14611 switch (OMP_CLAUSE_CODE (nc))
14612 {
14613 case OMP_CLAUSE_SHARED:
14614 case OMP_CLAUSE_PRIVATE:
14615 case OMP_CLAUSE_FIRSTPRIVATE:
14616 case OMP_CLAUSE_LASTPRIVATE:
14617 case OMP_CLAUSE_COPYPRIVATE:
14618 case OMP_CLAUSE_LINEAR:
14619 case OMP_CLAUSE_REDUCTION:
14620 case OMP_CLAUSE_USE_DEVICE_PTR:
14621 case OMP_CLAUSE_IS_DEVICE_PTR:
14622 /* tsubst_expr on SCOPE_REF results in returning
14623 finish_non_static_data_member result. Undo that here. */
14624 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14625 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14626 == IDENTIFIER_NODE))
14627 {
14628 tree t = OMP_CLAUSE_DECL (nc);
14629 tree v = t;
14630 while (v)
14631 switch (TREE_CODE (v))
14632 {
14633 case COMPONENT_REF:
14634 case MEM_REF:
14635 case INDIRECT_REF:
14636 CASE_CONVERT:
14637 case POINTER_PLUS_EXPR:
14638 v = TREE_OPERAND (v, 0);
14639 continue;
14640 case PARM_DECL:
14641 if (DECL_CONTEXT (v) == current_function_decl
14642 && DECL_ARTIFICIAL (v)
14643 && DECL_NAME (v) == this_identifier)
14644 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14645 /* FALLTHRU */
14646 default:
14647 v = NULL_TREE;
14648 break;
14649 }
14650 }
14651 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14652 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14653 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14654 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14655 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14656 {
14657 tree decl = OMP_CLAUSE_DECL (nc);
14658 if (VAR_P (decl))
14659 {
14660 if (!DECL_LANG_SPECIFIC (decl))
14661 retrofit_lang_decl (decl);
14662 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14663 }
14664 }
14665 break;
14666 default:
14667 break;
14668 }
14669 }
14670
14671 new_clauses = nreverse (new_clauses);
14672 if (!declare_simd)
14673 {
14674 new_clauses = finish_omp_clauses (new_clauses, allow_fields);
14675 if (linear_no_step)
14676 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14677 if (nc == linear_no_step)
14678 {
14679 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14680 break;
14681 }
14682 }
14683 return new_clauses;
14684 }
14685
14686 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14687
14688 static tree
14689 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14690 tree in_decl)
14691 {
14692 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14693
14694 tree purpose, value, chain;
14695
14696 if (t == NULL)
14697 return t;
14698
14699 if (TREE_CODE (t) != TREE_LIST)
14700 return tsubst_copy_and_build (t, args, complain, in_decl,
14701 /*function_p=*/false,
14702 /*integral_constant_expression_p=*/false);
14703
14704 if (t == void_list_node)
14705 return t;
14706
14707 purpose = TREE_PURPOSE (t);
14708 if (purpose)
14709 purpose = RECUR (purpose);
14710 value = TREE_VALUE (t);
14711 if (value)
14712 {
14713 if (TREE_CODE (value) != LABEL_DECL)
14714 value = RECUR (value);
14715 else
14716 {
14717 value = lookup_label (DECL_NAME (value));
14718 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14719 TREE_USED (value) = 1;
14720 }
14721 }
14722 chain = TREE_CHAIN (t);
14723 if (chain && chain != void_type_node)
14724 chain = RECUR (chain);
14725 return tree_cons (purpose, value, chain);
14726 #undef RECUR
14727 }
14728
14729 /* Used to temporarily communicate the list of #pragma omp parallel
14730 clauses to #pragma omp for instantiation if they are combined
14731 together. */
14732
14733 static tree *omp_parallel_combined_clauses;
14734
14735 /* Substitute one OMP_FOR iterator. */
14736
14737 static void
14738 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14739 tree initv, tree condv, tree incrv, tree *clauses,
14740 tree args, tsubst_flags_t complain, tree in_decl,
14741 bool integral_constant_expression_p)
14742 {
14743 #define RECUR(NODE) \
14744 tsubst_expr ((NODE), args, complain, in_decl, \
14745 integral_constant_expression_p)
14746 tree decl, init, cond, incr;
14747
14748 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14749 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14750
14751 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14752 {
14753 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14754 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14755 }
14756
14757 decl = TREE_OPERAND (init, 0);
14758 init = TREE_OPERAND (init, 1);
14759 tree decl_expr = NULL_TREE;
14760 if (init && TREE_CODE (init) == DECL_EXPR)
14761 {
14762 /* We need to jump through some hoops to handle declarations in the
14763 for-init-statement, since we might need to handle auto deduction,
14764 but we need to keep control of initialization. */
14765 decl_expr = init;
14766 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14767 decl = tsubst_decl (decl, args, complain);
14768 }
14769 else
14770 {
14771 if (TREE_CODE (decl) == SCOPE_REF)
14772 {
14773 decl = RECUR (decl);
14774 if (TREE_CODE (decl) == COMPONENT_REF)
14775 {
14776 tree v = decl;
14777 while (v)
14778 switch (TREE_CODE (v))
14779 {
14780 case COMPONENT_REF:
14781 case MEM_REF:
14782 case INDIRECT_REF:
14783 CASE_CONVERT:
14784 case POINTER_PLUS_EXPR:
14785 v = TREE_OPERAND (v, 0);
14786 continue;
14787 case PARM_DECL:
14788 if (DECL_CONTEXT (v) == current_function_decl
14789 && DECL_ARTIFICIAL (v)
14790 && DECL_NAME (v) == this_identifier)
14791 {
14792 decl = TREE_OPERAND (decl, 1);
14793 decl = omp_privatize_field (decl, false);
14794 }
14795 /* FALLTHRU */
14796 default:
14797 v = NULL_TREE;
14798 break;
14799 }
14800 }
14801 }
14802 else
14803 decl = RECUR (decl);
14804 }
14805 init = RECUR (init);
14806
14807 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14808 if (auto_node && init)
14809 TREE_TYPE (decl)
14810 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14811
14812 gcc_assert (!type_dependent_expression_p (decl));
14813
14814 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14815 {
14816 if (decl_expr)
14817 {
14818 /* Declare the variable, but don't let that initialize it. */
14819 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14820 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14821 RECUR (decl_expr);
14822 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14823 }
14824
14825 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14826 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14827 if (TREE_CODE (incr) == MODIFY_EXPR)
14828 {
14829 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14830 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14831 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14832 NOP_EXPR, rhs, complain);
14833 }
14834 else
14835 incr = RECUR (incr);
14836 TREE_VEC_ELT (declv, i) = decl;
14837 TREE_VEC_ELT (initv, i) = init;
14838 TREE_VEC_ELT (condv, i) = cond;
14839 TREE_VEC_ELT (incrv, i) = incr;
14840 return;
14841 }
14842
14843 if (decl_expr)
14844 {
14845 /* Declare and initialize the variable. */
14846 RECUR (decl_expr);
14847 init = NULL_TREE;
14848 }
14849 else if (init)
14850 {
14851 tree *pc;
14852 int j;
14853 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14854 {
14855 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14856 {
14857 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14858 && OMP_CLAUSE_DECL (*pc) == decl)
14859 break;
14860 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14861 && OMP_CLAUSE_DECL (*pc) == decl)
14862 {
14863 if (j)
14864 break;
14865 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14866 tree c = *pc;
14867 *pc = OMP_CLAUSE_CHAIN (c);
14868 OMP_CLAUSE_CHAIN (c) = *clauses;
14869 *clauses = c;
14870 }
14871 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14872 && OMP_CLAUSE_DECL (*pc) == decl)
14873 {
14874 error ("iteration variable %qD should not be firstprivate",
14875 decl);
14876 *pc = OMP_CLAUSE_CHAIN (*pc);
14877 }
14878 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14879 && OMP_CLAUSE_DECL (*pc) == decl)
14880 {
14881 error ("iteration variable %qD should not be reduction",
14882 decl);
14883 *pc = OMP_CLAUSE_CHAIN (*pc);
14884 }
14885 else
14886 pc = &OMP_CLAUSE_CHAIN (*pc);
14887 }
14888 if (*pc)
14889 break;
14890 }
14891 if (*pc == NULL_TREE)
14892 {
14893 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14894 OMP_CLAUSE_DECL (c) = decl;
14895 c = finish_omp_clauses (c, true);
14896 if (c)
14897 {
14898 OMP_CLAUSE_CHAIN (c) = *clauses;
14899 *clauses = c;
14900 }
14901 }
14902 }
14903 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14904 if (COMPARISON_CLASS_P (cond))
14905 {
14906 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14907 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14908 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14909 }
14910 else
14911 cond = RECUR (cond);
14912 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14913 switch (TREE_CODE (incr))
14914 {
14915 case PREINCREMENT_EXPR:
14916 case PREDECREMENT_EXPR:
14917 case POSTINCREMENT_EXPR:
14918 case POSTDECREMENT_EXPR:
14919 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14920 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14921 break;
14922 case MODIFY_EXPR:
14923 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14924 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14925 {
14926 tree rhs = TREE_OPERAND (incr, 1);
14927 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14928 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14929 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14930 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14931 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14932 rhs0, rhs1));
14933 }
14934 else
14935 incr = RECUR (incr);
14936 break;
14937 case MODOP_EXPR:
14938 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14939 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14940 {
14941 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14942 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14943 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
14944 TREE_TYPE (decl), lhs,
14945 RECUR (TREE_OPERAND (incr, 2))));
14946 }
14947 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
14948 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
14949 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
14950 {
14951 tree rhs = TREE_OPERAND (incr, 2);
14952 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14953 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14954 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14955 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14956 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14957 rhs0, rhs1));
14958 }
14959 else
14960 incr = RECUR (incr);
14961 break;
14962 default:
14963 incr = RECUR (incr);
14964 break;
14965 }
14966
14967 TREE_VEC_ELT (declv, i) = decl;
14968 TREE_VEC_ELT (initv, i) = init;
14969 TREE_VEC_ELT (condv, i) = cond;
14970 TREE_VEC_ELT (incrv, i) = incr;
14971 #undef RECUR
14972 }
14973
14974 /* Helper function of tsubst_expr, find OMP_TEAMS inside
14975 of OMP_TARGET's body. */
14976
14977 static tree
14978 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
14979 {
14980 *walk_subtrees = 0;
14981 switch (TREE_CODE (*tp))
14982 {
14983 case OMP_TEAMS:
14984 return *tp;
14985 case BIND_EXPR:
14986 case STATEMENT_LIST:
14987 *walk_subtrees = 1;
14988 break;
14989 default:
14990 break;
14991 }
14992 return NULL_TREE;
14993 }
14994
14995 /* Like tsubst_copy for expressions, etc. but also does semantic
14996 processing. */
14997
14998 tree
14999 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15000 bool integral_constant_expression_p)
15001 {
15002 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15003 #define RECUR(NODE) \
15004 tsubst_expr ((NODE), args, complain, in_decl, \
15005 integral_constant_expression_p)
15006
15007 tree stmt, tmp;
15008 tree r;
15009 location_t loc;
15010
15011 if (t == NULL_TREE || t == error_mark_node)
15012 return t;
15013
15014 loc = input_location;
15015 if (EXPR_HAS_LOCATION (t))
15016 input_location = EXPR_LOCATION (t);
15017 if (STATEMENT_CODE_P (TREE_CODE (t)))
15018 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15019
15020 switch (TREE_CODE (t))
15021 {
15022 case STATEMENT_LIST:
15023 {
15024 tree_stmt_iterator i;
15025 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15026 RECUR (tsi_stmt (i));
15027 break;
15028 }
15029
15030 case CTOR_INITIALIZER:
15031 finish_mem_initializers (tsubst_initializer_list
15032 (TREE_OPERAND (t, 0), args));
15033 break;
15034
15035 case RETURN_EXPR:
15036 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15037 break;
15038
15039 case EXPR_STMT:
15040 tmp = RECUR (EXPR_STMT_EXPR (t));
15041 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15042 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15043 else
15044 finish_expr_stmt (tmp);
15045 break;
15046
15047 case USING_STMT:
15048 do_using_directive (USING_STMT_NAMESPACE (t));
15049 break;
15050
15051 case DECL_EXPR:
15052 {
15053 tree decl, pattern_decl;
15054 tree init;
15055
15056 pattern_decl = decl = DECL_EXPR_DECL (t);
15057 if (TREE_CODE (decl) == LABEL_DECL)
15058 finish_label_decl (DECL_NAME (decl));
15059 else if (TREE_CODE (decl) == USING_DECL)
15060 {
15061 tree scope = USING_DECL_SCOPE (decl);
15062 tree name = DECL_NAME (decl);
15063 tree decl;
15064
15065 scope = tsubst (scope, args, complain, in_decl);
15066 decl = lookup_qualified_name (scope, name,
15067 /*is_type_p=*/false,
15068 /*complain=*/false);
15069 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15070 qualified_name_lookup_error (scope, name, decl, input_location);
15071 else
15072 do_local_using_decl (decl, scope, name);
15073 }
15074 else if (DECL_PACK_P (decl))
15075 {
15076 /* Don't build up decls for a variadic capture proxy, we'll
15077 instantiate the elements directly as needed. */
15078 break;
15079 }
15080 else
15081 {
15082 init = DECL_INITIAL (decl);
15083 decl = tsubst (decl, args, complain, in_decl);
15084 if (decl != error_mark_node)
15085 {
15086 /* By marking the declaration as instantiated, we avoid
15087 trying to instantiate it. Since instantiate_decl can't
15088 handle local variables, and since we've already done
15089 all that needs to be done, that's the right thing to
15090 do. */
15091 if (VAR_P (decl))
15092 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15093 if (VAR_P (decl)
15094 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15095 /* Anonymous aggregates are a special case. */
15096 finish_anon_union (decl);
15097 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15098 {
15099 DECL_CONTEXT (decl) = current_function_decl;
15100 if (DECL_NAME (decl) == this_identifier)
15101 {
15102 tree lam = DECL_CONTEXT (current_function_decl);
15103 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15104 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15105 }
15106 insert_capture_proxy (decl);
15107 }
15108 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15109 /* We already did a pushtag. */;
15110 else if (TREE_CODE (decl) == FUNCTION_DECL
15111 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15112 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15113 {
15114 DECL_CONTEXT (decl) = NULL_TREE;
15115 pushdecl (decl);
15116 DECL_CONTEXT (decl) = current_function_decl;
15117 cp_check_omp_declare_reduction (decl);
15118 }
15119 else
15120 {
15121 int const_init = false;
15122 maybe_push_decl (decl);
15123 if (VAR_P (decl)
15124 && DECL_PRETTY_FUNCTION_P (decl))
15125 {
15126 /* For __PRETTY_FUNCTION__ we have to adjust the
15127 initializer. */
15128 const char *const name
15129 = cxx_printable_name (current_function_decl, 2);
15130 init = cp_fname_init (name, &TREE_TYPE (decl));
15131 }
15132 else
15133 init = tsubst_init (init, decl, args, complain, in_decl);
15134
15135 if (VAR_P (decl))
15136 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15137 (pattern_decl));
15138 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15139 }
15140 }
15141 }
15142
15143 break;
15144 }
15145
15146 case FOR_STMT:
15147 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15148 RECUR (FOR_INIT_STMT (t));
15149 finish_for_init_stmt (stmt);
15150 tmp = RECUR (FOR_COND (t));
15151 finish_for_cond (tmp, stmt, false);
15152 tmp = RECUR (FOR_EXPR (t));
15153 finish_for_expr (tmp, stmt);
15154 RECUR (FOR_BODY (t));
15155 finish_for_stmt (stmt);
15156 break;
15157
15158 case RANGE_FOR_STMT:
15159 {
15160 tree decl, expr;
15161 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15162 decl = RANGE_FOR_DECL (t);
15163 decl = tsubst (decl, args, complain, in_decl);
15164 maybe_push_decl (decl);
15165 expr = RECUR (RANGE_FOR_EXPR (t));
15166 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15167 RECUR (RANGE_FOR_BODY (t));
15168 finish_for_stmt (stmt);
15169 }
15170 break;
15171
15172 case WHILE_STMT:
15173 stmt = begin_while_stmt ();
15174 tmp = RECUR (WHILE_COND (t));
15175 finish_while_stmt_cond (tmp, stmt, false);
15176 RECUR (WHILE_BODY (t));
15177 finish_while_stmt (stmt);
15178 break;
15179
15180 case DO_STMT:
15181 stmt = begin_do_stmt ();
15182 RECUR (DO_BODY (t));
15183 finish_do_body (stmt);
15184 tmp = RECUR (DO_COND (t));
15185 finish_do_stmt (tmp, stmt, false);
15186 break;
15187
15188 case IF_STMT:
15189 stmt = begin_if_stmt ();
15190 tmp = RECUR (IF_COND (t));
15191 finish_if_stmt_cond (tmp, stmt);
15192 RECUR (THEN_CLAUSE (t));
15193 finish_then_clause (stmt);
15194
15195 if (ELSE_CLAUSE (t))
15196 {
15197 begin_else_clause (stmt);
15198 RECUR (ELSE_CLAUSE (t));
15199 finish_else_clause (stmt);
15200 }
15201
15202 finish_if_stmt (stmt);
15203 break;
15204
15205 case BIND_EXPR:
15206 if (BIND_EXPR_BODY_BLOCK (t))
15207 stmt = begin_function_body ();
15208 else
15209 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15210 ? BCS_TRY_BLOCK : 0);
15211
15212 RECUR (BIND_EXPR_BODY (t));
15213
15214 if (BIND_EXPR_BODY_BLOCK (t))
15215 finish_function_body (stmt);
15216 else
15217 finish_compound_stmt (stmt);
15218 break;
15219
15220 case BREAK_STMT:
15221 finish_break_stmt ();
15222 break;
15223
15224 case CONTINUE_STMT:
15225 finish_continue_stmt ();
15226 break;
15227
15228 case SWITCH_STMT:
15229 stmt = begin_switch_stmt ();
15230 tmp = RECUR (SWITCH_STMT_COND (t));
15231 finish_switch_cond (tmp, stmt);
15232 RECUR (SWITCH_STMT_BODY (t));
15233 finish_switch_stmt (stmt);
15234 break;
15235
15236 case CASE_LABEL_EXPR:
15237 {
15238 tree low = RECUR (CASE_LOW (t));
15239 tree high = RECUR (CASE_HIGH (t));
15240 finish_case_label (EXPR_LOCATION (t), low, high);
15241 }
15242 break;
15243
15244 case LABEL_EXPR:
15245 {
15246 tree decl = LABEL_EXPR_LABEL (t);
15247 tree label;
15248
15249 label = finish_label_stmt (DECL_NAME (decl));
15250 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15251 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15252 }
15253 break;
15254
15255 case GOTO_EXPR:
15256 tmp = GOTO_DESTINATION (t);
15257 if (TREE_CODE (tmp) != LABEL_DECL)
15258 /* Computed goto's must be tsubst'd into. On the other hand,
15259 non-computed gotos must not be; the identifier in question
15260 will have no binding. */
15261 tmp = RECUR (tmp);
15262 else
15263 tmp = DECL_NAME (tmp);
15264 finish_goto_stmt (tmp);
15265 break;
15266
15267 case ASM_EXPR:
15268 {
15269 tree string = RECUR (ASM_STRING (t));
15270 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15271 complain, in_decl);
15272 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15273 complain, in_decl);
15274 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15275 complain, in_decl);
15276 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15277 complain, in_decl);
15278 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15279 clobbers, labels);
15280 tree asm_expr = tmp;
15281 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15282 asm_expr = TREE_OPERAND (asm_expr, 0);
15283 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15284 }
15285 break;
15286
15287 case TRY_BLOCK:
15288 if (CLEANUP_P (t))
15289 {
15290 stmt = begin_try_block ();
15291 RECUR (TRY_STMTS (t));
15292 finish_cleanup_try_block (stmt);
15293 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15294 }
15295 else
15296 {
15297 tree compound_stmt = NULL_TREE;
15298
15299 if (FN_TRY_BLOCK_P (t))
15300 stmt = begin_function_try_block (&compound_stmt);
15301 else
15302 stmt = begin_try_block ();
15303
15304 RECUR (TRY_STMTS (t));
15305
15306 if (FN_TRY_BLOCK_P (t))
15307 finish_function_try_block (stmt);
15308 else
15309 finish_try_block (stmt);
15310
15311 RECUR (TRY_HANDLERS (t));
15312 if (FN_TRY_BLOCK_P (t))
15313 finish_function_handler_sequence (stmt, compound_stmt);
15314 else
15315 finish_handler_sequence (stmt);
15316 }
15317 break;
15318
15319 case HANDLER:
15320 {
15321 tree decl = HANDLER_PARMS (t);
15322
15323 if (decl)
15324 {
15325 decl = tsubst (decl, args, complain, in_decl);
15326 /* Prevent instantiate_decl from trying to instantiate
15327 this variable. We've already done all that needs to be
15328 done. */
15329 if (decl != error_mark_node)
15330 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15331 }
15332 stmt = begin_handler ();
15333 finish_handler_parms (decl, stmt);
15334 RECUR (HANDLER_BODY (t));
15335 finish_handler (stmt);
15336 }
15337 break;
15338
15339 case TAG_DEFN:
15340 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15341 if (CLASS_TYPE_P (tmp))
15342 {
15343 /* Local classes are not independent templates; they are
15344 instantiated along with their containing function. And this
15345 way we don't have to deal with pushing out of one local class
15346 to instantiate a member of another local class. */
15347 tree fn;
15348 /* Closures are handled by the LAMBDA_EXPR. */
15349 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15350 complete_type (tmp);
15351 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15352 if (!DECL_ARTIFICIAL (fn))
15353 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15354 }
15355 break;
15356
15357 case STATIC_ASSERT:
15358 {
15359 tree condition;
15360
15361 ++c_inhibit_evaluation_warnings;
15362 condition =
15363 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15364 args,
15365 complain, in_decl,
15366 /*integral_constant_expression_p=*/true);
15367 --c_inhibit_evaluation_warnings;
15368
15369 finish_static_assert (condition,
15370 STATIC_ASSERT_MESSAGE (t),
15371 STATIC_ASSERT_SOURCE_LOCATION (t),
15372 /*member_p=*/false);
15373 }
15374 break;
15375
15376 case OACC_KERNELS:
15377 case OACC_PARALLEL:
15378 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, false, args, complain,
15379 in_decl);
15380 stmt = begin_omp_parallel ();
15381 RECUR (OMP_BODY (t));
15382 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15383 break;
15384
15385 case OMP_PARALLEL:
15386 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15387 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false, true,
15388 args, complain, in_decl);
15389 if (OMP_PARALLEL_COMBINED (t))
15390 omp_parallel_combined_clauses = &tmp;
15391 stmt = begin_omp_parallel ();
15392 RECUR (OMP_PARALLEL_BODY (t));
15393 gcc_assert (omp_parallel_combined_clauses == NULL);
15394 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15395 = OMP_PARALLEL_COMBINED (t);
15396 pop_omp_privatization_clauses (r);
15397 break;
15398
15399 case OMP_TASK:
15400 r = push_omp_privatization_clauses (false);
15401 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false, true,
15402 args, complain, in_decl);
15403 stmt = begin_omp_task ();
15404 RECUR (OMP_TASK_BODY (t));
15405 finish_omp_task (tmp, stmt);
15406 pop_omp_privatization_clauses (r);
15407 break;
15408
15409 case OMP_FOR:
15410 case OMP_SIMD:
15411 case CILK_SIMD:
15412 case CILK_FOR:
15413 case OMP_DISTRIBUTE:
15414 case OMP_TASKLOOP:
15415 case OACC_LOOP:
15416 {
15417 tree clauses, body, pre_body;
15418 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15419 tree orig_declv = NULL_TREE;
15420 tree incrv = NULL_TREE;
15421 int i;
15422
15423 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15424 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
15425 TREE_CODE (t) != OACC_LOOP,
15426 args, complain, in_decl);
15427 if (OMP_FOR_INIT (t) != NULL_TREE)
15428 {
15429 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15430 if (OMP_FOR_ORIG_DECLS (t))
15431 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15432 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15433 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15434 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15435 }
15436
15437 stmt = begin_omp_structured_block ();
15438
15439 pre_body = push_stmt_list ();
15440 RECUR (OMP_FOR_PRE_BODY (t));
15441 pre_body = pop_stmt_list (pre_body);
15442
15443 if (OMP_FOR_INIT (t) != NULL_TREE)
15444 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15445 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15446 incrv, &clauses, args, complain, in_decl,
15447 integral_constant_expression_p);
15448 omp_parallel_combined_clauses = NULL;
15449
15450 body = push_stmt_list ();
15451 RECUR (OMP_FOR_BODY (t));
15452 body = pop_stmt_list (body);
15453
15454 if (OMP_FOR_INIT (t) != NULL_TREE)
15455 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15456 orig_declv, initv, condv, incrv, body, pre_body,
15457 NULL, clauses);
15458 else
15459 {
15460 t = make_node (TREE_CODE (t));
15461 TREE_TYPE (t) = void_type_node;
15462 OMP_FOR_BODY (t) = body;
15463 OMP_FOR_PRE_BODY (t) = pre_body;
15464 OMP_FOR_CLAUSES (t) = clauses;
15465 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15466 add_stmt (t);
15467 }
15468
15469 add_stmt (finish_omp_structured_block (stmt));
15470 pop_omp_privatization_clauses (r);
15471 }
15472 break;
15473
15474 case OMP_SECTIONS:
15475 omp_parallel_combined_clauses = NULL;
15476 /* FALLTHRU */
15477 case OMP_SINGLE:
15478 case OMP_TEAMS:
15479 case OMP_CRITICAL:
15480 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15481 && OMP_TEAMS_COMBINED (t));
15482 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15483 args, complain, in_decl);
15484 stmt = push_stmt_list ();
15485 RECUR (OMP_BODY (t));
15486 stmt = pop_stmt_list (stmt);
15487
15488 t = copy_node (t);
15489 OMP_BODY (t) = stmt;
15490 OMP_CLAUSES (t) = tmp;
15491 add_stmt (t);
15492 pop_omp_privatization_clauses (r);
15493 break;
15494
15495 case OACC_DATA:
15496 case OMP_TARGET_DATA:
15497 case OMP_TARGET:
15498 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15499 TREE_CODE (t) != OACC_DATA,
15500 args, complain, in_decl);
15501 keep_next_level (true);
15502 stmt = begin_omp_structured_block ();
15503
15504 RECUR (OMP_BODY (t));
15505 stmt = finish_omp_structured_block (stmt);
15506
15507 t = copy_node (t);
15508 OMP_BODY (t) = stmt;
15509 OMP_CLAUSES (t) = tmp;
15510 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15511 {
15512 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15513 if (teams)
15514 {
15515 /* For combined target teams, ensure the num_teams and
15516 thread_limit clause expressions are evaluated on the host,
15517 before entering the target construct. */
15518 tree c;
15519 for (c = OMP_TEAMS_CLAUSES (teams);
15520 c; c = OMP_CLAUSE_CHAIN (c))
15521 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15522 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15523 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15524 {
15525 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15526 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15527 if (expr == error_mark_node)
15528 continue;
15529 tmp = TARGET_EXPR_SLOT (expr);
15530 add_stmt (expr);
15531 OMP_CLAUSE_OPERAND (c, 0) = expr;
15532 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15533 OMP_CLAUSE_FIRSTPRIVATE);
15534 OMP_CLAUSE_DECL (tc) = tmp;
15535 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15536 OMP_TARGET_CLAUSES (t) = tc;
15537 }
15538 }
15539 }
15540 add_stmt (t);
15541 break;
15542
15543 case OACC_DECLARE:
15544 t = copy_node (t);
15545 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), false, false,
15546 args, complain, in_decl);
15547 OACC_DECLARE_CLAUSES (t) = tmp;
15548 add_stmt (t);
15549 break;
15550
15551 case OMP_TARGET_UPDATE:
15552 case OMP_TARGET_ENTER_DATA:
15553 case OMP_TARGET_EXIT_DATA:
15554 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, true,
15555 args, complain, in_decl);
15556 t = copy_node (t);
15557 OMP_STANDALONE_CLAUSES (t) = tmp;
15558 add_stmt (t);
15559 break;
15560
15561 case OACC_ENTER_DATA:
15562 case OACC_EXIT_DATA:
15563 case OACC_UPDATE:
15564 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, false,
15565 args, complain, in_decl);
15566 t = copy_node (t);
15567 OMP_STANDALONE_CLAUSES (t) = tmp;
15568 add_stmt (t);
15569 break;
15570
15571 case OMP_ORDERED:
15572 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), false, true,
15573 args, complain, in_decl);
15574 stmt = push_stmt_list ();
15575 RECUR (OMP_BODY (t));
15576 stmt = pop_stmt_list (stmt);
15577
15578 t = copy_node (t);
15579 OMP_BODY (t) = stmt;
15580 OMP_ORDERED_CLAUSES (t) = tmp;
15581 add_stmt (t);
15582 break;
15583
15584 case OMP_SECTION:
15585 case OMP_MASTER:
15586 case OMP_TASKGROUP:
15587 stmt = push_stmt_list ();
15588 RECUR (OMP_BODY (t));
15589 stmt = pop_stmt_list (stmt);
15590
15591 t = copy_node (t);
15592 OMP_BODY (t) = stmt;
15593 add_stmt (t);
15594 break;
15595
15596 case OMP_ATOMIC:
15597 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15598 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15599 {
15600 tree op1 = TREE_OPERAND (t, 1);
15601 tree rhs1 = NULL_TREE;
15602 tree lhs, rhs;
15603 if (TREE_CODE (op1) == COMPOUND_EXPR)
15604 {
15605 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15606 op1 = TREE_OPERAND (op1, 1);
15607 }
15608 lhs = RECUR (TREE_OPERAND (op1, 0));
15609 rhs = RECUR (TREE_OPERAND (op1, 1));
15610 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15611 NULL_TREE, NULL_TREE, rhs1,
15612 OMP_ATOMIC_SEQ_CST (t));
15613 }
15614 else
15615 {
15616 tree op1 = TREE_OPERAND (t, 1);
15617 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15618 tree rhs1 = NULL_TREE;
15619 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15620 enum tree_code opcode = NOP_EXPR;
15621 if (code == OMP_ATOMIC_READ)
15622 {
15623 v = RECUR (TREE_OPERAND (op1, 0));
15624 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15625 }
15626 else if (code == OMP_ATOMIC_CAPTURE_OLD
15627 || code == OMP_ATOMIC_CAPTURE_NEW)
15628 {
15629 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15630 v = RECUR (TREE_OPERAND (op1, 0));
15631 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15632 if (TREE_CODE (op11) == COMPOUND_EXPR)
15633 {
15634 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15635 op11 = TREE_OPERAND (op11, 1);
15636 }
15637 lhs = RECUR (TREE_OPERAND (op11, 0));
15638 rhs = RECUR (TREE_OPERAND (op11, 1));
15639 opcode = TREE_CODE (op11);
15640 if (opcode == MODIFY_EXPR)
15641 opcode = NOP_EXPR;
15642 }
15643 else
15644 {
15645 code = OMP_ATOMIC;
15646 lhs = RECUR (TREE_OPERAND (op1, 0));
15647 rhs = RECUR (TREE_OPERAND (op1, 1));
15648 }
15649 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15650 OMP_ATOMIC_SEQ_CST (t));
15651 }
15652 break;
15653
15654 case TRANSACTION_EXPR:
15655 {
15656 int flags = 0;
15657 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15658 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15659
15660 if (TRANSACTION_EXPR_IS_STMT (t))
15661 {
15662 tree body = TRANSACTION_EXPR_BODY (t);
15663 tree noex = NULL_TREE;
15664 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15665 {
15666 noex = MUST_NOT_THROW_COND (body);
15667 if (noex == NULL_TREE)
15668 noex = boolean_true_node;
15669 body = TREE_OPERAND (body, 0);
15670 }
15671 stmt = begin_transaction_stmt (input_location, NULL, flags);
15672 RECUR (body);
15673 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15674 }
15675 else
15676 {
15677 stmt = build_transaction_expr (EXPR_LOCATION (t),
15678 RECUR (TRANSACTION_EXPR_BODY (t)),
15679 flags, NULL_TREE);
15680 RETURN (stmt);
15681 }
15682 }
15683 break;
15684
15685 case MUST_NOT_THROW_EXPR:
15686 {
15687 tree op0 = RECUR (TREE_OPERAND (t, 0));
15688 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15689 RETURN (build_must_not_throw_expr (op0, cond));
15690 }
15691
15692 case EXPR_PACK_EXPANSION:
15693 error ("invalid use of pack expansion expression");
15694 RETURN (error_mark_node);
15695
15696 case NONTYPE_ARGUMENT_PACK:
15697 error ("use %<...%> to expand argument pack");
15698 RETURN (error_mark_node);
15699
15700 case CILK_SPAWN_STMT:
15701 cfun->calls_cilk_spawn = 1;
15702 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15703
15704 case CILK_SYNC_STMT:
15705 RETURN (build_cilk_sync ());
15706
15707 case COMPOUND_EXPR:
15708 tmp = RECUR (TREE_OPERAND (t, 0));
15709 if (tmp == NULL_TREE)
15710 /* If the first operand was a statement, we're done with it. */
15711 RETURN (RECUR (TREE_OPERAND (t, 1)));
15712 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15713 RECUR (TREE_OPERAND (t, 1)),
15714 complain));
15715
15716 case ANNOTATE_EXPR:
15717 tmp = RECUR (TREE_OPERAND (t, 0));
15718 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15719 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15720
15721 default:
15722 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15723
15724 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15725 /*function_p=*/false,
15726 integral_constant_expression_p));
15727 }
15728
15729 RETURN (NULL_TREE);
15730 out:
15731 input_location = loc;
15732 return r;
15733 #undef RECUR
15734 #undef RETURN
15735 }
15736
15737 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15738 function. For description of the body see comment above
15739 cp_parser_omp_declare_reduction_exprs. */
15740
15741 static void
15742 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15743 {
15744 if (t == NULL_TREE || t == error_mark_node)
15745 return;
15746
15747 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15748
15749 tree_stmt_iterator tsi;
15750 int i;
15751 tree stmts[7];
15752 memset (stmts, 0, sizeof stmts);
15753 for (i = 0, tsi = tsi_start (t);
15754 i < 7 && !tsi_end_p (tsi);
15755 i++, tsi_next (&tsi))
15756 stmts[i] = tsi_stmt (tsi);
15757 gcc_assert (tsi_end_p (tsi));
15758
15759 if (i >= 3)
15760 {
15761 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15762 && TREE_CODE (stmts[1]) == DECL_EXPR);
15763 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15764 args, complain, in_decl);
15765 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15766 args, complain, in_decl);
15767 DECL_CONTEXT (omp_out) = current_function_decl;
15768 DECL_CONTEXT (omp_in) = current_function_decl;
15769 keep_next_level (true);
15770 tree block = begin_omp_structured_block ();
15771 tsubst_expr (stmts[2], args, complain, in_decl, false);
15772 block = finish_omp_structured_block (block);
15773 block = maybe_cleanup_point_expr_void (block);
15774 add_decl_expr (omp_out);
15775 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15776 TREE_NO_WARNING (omp_out) = 1;
15777 add_decl_expr (omp_in);
15778 finish_expr_stmt (block);
15779 }
15780 if (i >= 6)
15781 {
15782 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15783 && TREE_CODE (stmts[4]) == DECL_EXPR);
15784 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15785 args, complain, in_decl);
15786 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15787 args, complain, in_decl);
15788 DECL_CONTEXT (omp_priv) = current_function_decl;
15789 DECL_CONTEXT (omp_orig) = current_function_decl;
15790 keep_next_level (true);
15791 tree block = begin_omp_structured_block ();
15792 tsubst_expr (stmts[5], args, complain, in_decl, false);
15793 block = finish_omp_structured_block (block);
15794 block = maybe_cleanup_point_expr_void (block);
15795 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15796 add_decl_expr (omp_priv);
15797 add_decl_expr (omp_orig);
15798 finish_expr_stmt (block);
15799 if (i == 7)
15800 add_decl_expr (omp_orig);
15801 }
15802 }
15803
15804 /* T is a postfix-expression that is not being used in a function
15805 call. Return the substituted version of T. */
15806
15807 static tree
15808 tsubst_non_call_postfix_expression (tree t, tree args,
15809 tsubst_flags_t complain,
15810 tree in_decl)
15811 {
15812 if (TREE_CODE (t) == SCOPE_REF)
15813 t = tsubst_qualified_id (t, args, complain, in_decl,
15814 /*done=*/false, /*address_p=*/false);
15815 else
15816 t = tsubst_copy_and_build (t, args, complain, in_decl,
15817 /*function_p=*/false,
15818 /*integral_constant_expression_p=*/false);
15819
15820 return t;
15821 }
15822
15823 /* Like tsubst but deals with expressions and performs semantic
15824 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15825
15826 tree
15827 tsubst_copy_and_build (tree t,
15828 tree args,
15829 tsubst_flags_t complain,
15830 tree in_decl,
15831 bool function_p,
15832 bool integral_constant_expression_p)
15833 {
15834 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15835 #define RECUR(NODE) \
15836 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15837 /*function_p=*/false, \
15838 integral_constant_expression_p)
15839
15840 tree retval, op1;
15841 location_t loc;
15842
15843 if (t == NULL_TREE || t == error_mark_node)
15844 return t;
15845
15846 loc = input_location;
15847 if (EXPR_HAS_LOCATION (t))
15848 input_location = EXPR_LOCATION (t);
15849
15850 /* N3276 decltype magic only applies to calls at the top level or on the
15851 right side of a comma. */
15852 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15853 complain &= ~tf_decltype;
15854
15855 switch (TREE_CODE (t))
15856 {
15857 case USING_DECL:
15858 t = DECL_NAME (t);
15859 /* Fall through. */
15860 case IDENTIFIER_NODE:
15861 {
15862 tree decl;
15863 cp_id_kind idk;
15864 bool non_integral_constant_expression_p;
15865 const char *error_msg;
15866
15867 if (IDENTIFIER_TYPENAME_P (t))
15868 {
15869 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15870 t = mangle_conv_op_name_for_type (new_type);
15871 }
15872
15873 /* Look up the name. */
15874 decl = lookup_name (t);
15875
15876 /* By convention, expressions use ERROR_MARK_NODE to indicate
15877 failure, not NULL_TREE. */
15878 if (decl == NULL_TREE)
15879 decl = error_mark_node;
15880
15881 decl = finish_id_expression (t, decl, NULL_TREE,
15882 &idk,
15883 integral_constant_expression_p,
15884 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15885 &non_integral_constant_expression_p,
15886 /*template_p=*/false,
15887 /*done=*/true,
15888 /*address_p=*/false,
15889 /*template_arg_p=*/false,
15890 &error_msg,
15891 input_location);
15892 if (error_msg)
15893 error (error_msg);
15894 if (!function_p && identifier_p (decl))
15895 {
15896 if (complain & tf_error)
15897 unqualified_name_lookup_error (decl);
15898 decl = error_mark_node;
15899 }
15900 RETURN (decl);
15901 }
15902
15903 case TEMPLATE_ID_EXPR:
15904 {
15905 tree object;
15906 tree templ = RECUR (TREE_OPERAND (t, 0));
15907 tree targs = TREE_OPERAND (t, 1);
15908
15909 if (targs)
15910 targs = tsubst_template_args (targs, args, complain, in_decl);
15911 if (targs == error_mark_node)
15912 return error_mark_node;
15913
15914 if (variable_template_p (templ))
15915 {
15916 templ = lookup_template_variable (templ, targs);
15917 if (!any_dependent_template_arguments_p (targs))
15918 {
15919 templ = finish_template_variable (templ, complain);
15920 mark_used (templ);
15921 }
15922 RETURN (convert_from_reference (templ));
15923 }
15924
15925 if (TREE_CODE (templ) == COMPONENT_REF)
15926 {
15927 object = TREE_OPERAND (templ, 0);
15928 templ = TREE_OPERAND (templ, 1);
15929 }
15930 else
15931 object = NULL_TREE;
15932 templ = lookup_template_function (templ, targs);
15933
15934 if (object)
15935 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
15936 object, templ, NULL_TREE));
15937 else
15938 RETURN (baselink_for_fns (templ));
15939 }
15940
15941 case INDIRECT_REF:
15942 {
15943 tree r = RECUR (TREE_OPERAND (t, 0));
15944
15945 if (REFERENCE_REF_P (t))
15946 {
15947 /* A type conversion to reference type will be enclosed in
15948 such an indirect ref, but the substitution of the cast
15949 will have also added such an indirect ref. */
15950 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
15951 r = convert_from_reference (r);
15952 }
15953 else
15954 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
15955 complain|decltype_flag);
15956 RETURN (r);
15957 }
15958
15959 case NOP_EXPR:
15960 {
15961 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15962 tree op0 = RECUR (TREE_OPERAND (t, 0));
15963 RETURN (build_nop (type, op0));
15964 }
15965
15966 case IMPLICIT_CONV_EXPR:
15967 {
15968 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15969 tree expr = RECUR (TREE_OPERAND (t, 0));
15970 int flags = LOOKUP_IMPLICIT;
15971 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
15972 flags = LOOKUP_NORMAL;
15973 RETURN (perform_implicit_conversion_flags (type, expr, complain,
15974 flags));
15975 }
15976
15977 case CONVERT_EXPR:
15978 {
15979 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15980 tree op0 = RECUR (TREE_OPERAND (t, 0));
15981 RETURN (build1 (CONVERT_EXPR, type, op0));
15982 }
15983
15984 case CAST_EXPR:
15985 case REINTERPRET_CAST_EXPR:
15986 case CONST_CAST_EXPR:
15987 case DYNAMIC_CAST_EXPR:
15988 case STATIC_CAST_EXPR:
15989 {
15990 tree type;
15991 tree op, r = NULL_TREE;
15992
15993 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15994 if (integral_constant_expression_p
15995 && !cast_valid_in_integral_constant_expression_p (type))
15996 {
15997 if (complain & tf_error)
15998 error ("a cast to a type other than an integral or "
15999 "enumeration type cannot appear in a constant-expression");
16000 RETURN (error_mark_node);
16001 }
16002
16003 op = RECUR (TREE_OPERAND (t, 0));
16004
16005 warning_sentinel s(warn_useless_cast);
16006 switch (TREE_CODE (t))
16007 {
16008 case CAST_EXPR:
16009 r = build_functional_cast (type, op, complain);
16010 break;
16011 case REINTERPRET_CAST_EXPR:
16012 r = build_reinterpret_cast (type, op, complain);
16013 break;
16014 case CONST_CAST_EXPR:
16015 r = build_const_cast (type, op, complain);
16016 break;
16017 case DYNAMIC_CAST_EXPR:
16018 r = build_dynamic_cast (type, op, complain);
16019 break;
16020 case STATIC_CAST_EXPR:
16021 r = build_static_cast (type, op, complain);
16022 break;
16023 default:
16024 gcc_unreachable ();
16025 }
16026
16027 RETURN (r);
16028 }
16029
16030 case POSTDECREMENT_EXPR:
16031 case POSTINCREMENT_EXPR:
16032 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16033 args, complain, in_decl);
16034 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16035 complain|decltype_flag));
16036
16037 case PREDECREMENT_EXPR:
16038 case PREINCREMENT_EXPR:
16039 case NEGATE_EXPR:
16040 case BIT_NOT_EXPR:
16041 case ABS_EXPR:
16042 case TRUTH_NOT_EXPR:
16043 case UNARY_PLUS_EXPR: /* Unary + */
16044 case REALPART_EXPR:
16045 case IMAGPART_EXPR:
16046 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16047 RECUR (TREE_OPERAND (t, 0)),
16048 complain|decltype_flag));
16049
16050 case FIX_TRUNC_EXPR:
16051 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16052 0, complain));
16053
16054 case ADDR_EXPR:
16055 op1 = TREE_OPERAND (t, 0);
16056 if (TREE_CODE (op1) == LABEL_DECL)
16057 RETURN (finish_label_address_expr (DECL_NAME (op1),
16058 EXPR_LOCATION (op1)));
16059 if (TREE_CODE (op1) == SCOPE_REF)
16060 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16061 /*done=*/true, /*address_p=*/true);
16062 else
16063 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16064 in_decl);
16065 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16066 complain|decltype_flag));
16067
16068 case PLUS_EXPR:
16069 case MINUS_EXPR:
16070 case MULT_EXPR:
16071 case TRUNC_DIV_EXPR:
16072 case CEIL_DIV_EXPR:
16073 case FLOOR_DIV_EXPR:
16074 case ROUND_DIV_EXPR:
16075 case EXACT_DIV_EXPR:
16076 case BIT_AND_EXPR:
16077 case BIT_IOR_EXPR:
16078 case BIT_XOR_EXPR:
16079 case TRUNC_MOD_EXPR:
16080 case FLOOR_MOD_EXPR:
16081 case TRUTH_ANDIF_EXPR:
16082 case TRUTH_ORIF_EXPR:
16083 case TRUTH_AND_EXPR:
16084 case TRUTH_OR_EXPR:
16085 case RSHIFT_EXPR:
16086 case LSHIFT_EXPR:
16087 case RROTATE_EXPR:
16088 case LROTATE_EXPR:
16089 case EQ_EXPR:
16090 case NE_EXPR:
16091 case MAX_EXPR:
16092 case MIN_EXPR:
16093 case LE_EXPR:
16094 case GE_EXPR:
16095 case LT_EXPR:
16096 case GT_EXPR:
16097 case MEMBER_REF:
16098 case DOTSTAR_EXPR:
16099 {
16100 warning_sentinel s1(warn_type_limits);
16101 warning_sentinel s2(warn_div_by_zero);
16102 warning_sentinel s3(warn_logical_op);
16103 warning_sentinel s4(warn_tautological_compare);
16104 tree op0 = RECUR (TREE_OPERAND (t, 0));
16105 tree op1 = RECUR (TREE_OPERAND (t, 1));
16106 tree r = build_x_binary_op
16107 (input_location, TREE_CODE (t),
16108 op0,
16109 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16110 ? ERROR_MARK
16111 : TREE_CODE (TREE_OPERAND (t, 0))),
16112 op1,
16113 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16114 ? ERROR_MARK
16115 : TREE_CODE (TREE_OPERAND (t, 1))),
16116 /*overload=*/NULL,
16117 complain|decltype_flag);
16118 if (EXPR_P (r) && TREE_NO_WARNING (t))
16119 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16120
16121 RETURN (r);
16122 }
16123
16124 case POINTER_PLUS_EXPR:
16125 {
16126 tree op0 = RECUR (TREE_OPERAND (t, 0));
16127 tree op1 = RECUR (TREE_OPERAND (t, 1));
16128 return fold_build_pointer_plus (op0, op1);
16129 }
16130
16131 case SCOPE_REF:
16132 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16133 /*address_p=*/false));
16134 case ARRAY_REF:
16135 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16136 args, complain, in_decl);
16137 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16138 RECUR (TREE_OPERAND (t, 1)),
16139 complain|decltype_flag));
16140
16141 case ARRAY_NOTATION_REF:
16142 {
16143 tree start_index, length, stride;
16144 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16145 args, complain, in_decl);
16146 start_index = RECUR (ARRAY_NOTATION_START (t));
16147 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16148 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16149 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16150 length, stride, TREE_TYPE (op1)));
16151 }
16152 case SIZEOF_EXPR:
16153 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
16154 RETURN (tsubst_copy (t, args, complain, in_decl));
16155 /* Fall through */
16156
16157 case ALIGNOF_EXPR:
16158 {
16159 tree r;
16160
16161 op1 = TREE_OPERAND (t, 0);
16162 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16163 op1 = TREE_TYPE (op1);
16164 if (!args)
16165 {
16166 /* When there are no ARGS, we are trying to evaluate a
16167 non-dependent expression from the parser. Trying to do
16168 the substitutions may not work. */
16169 if (!TYPE_P (op1))
16170 op1 = TREE_TYPE (op1);
16171 }
16172 else
16173 {
16174 ++cp_unevaluated_operand;
16175 ++c_inhibit_evaluation_warnings;
16176 if (TYPE_P (op1))
16177 op1 = tsubst (op1, args, complain, in_decl);
16178 else
16179 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16180 /*function_p=*/false,
16181 /*integral_constant_expression_p=*/
16182 false);
16183 --cp_unevaluated_operand;
16184 --c_inhibit_evaluation_warnings;
16185 }
16186 if (TYPE_P (op1))
16187 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16188 complain & tf_error);
16189 else
16190 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16191 complain & tf_error);
16192 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16193 {
16194 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16195 {
16196 if (!processing_template_decl && TYPE_P (op1))
16197 {
16198 r = build_min (SIZEOF_EXPR, size_type_node,
16199 build1 (NOP_EXPR, op1, error_mark_node));
16200 SIZEOF_EXPR_TYPE_P (r) = 1;
16201 }
16202 else
16203 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16204 TREE_SIDE_EFFECTS (r) = 0;
16205 TREE_READONLY (r) = 1;
16206 }
16207 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16208 }
16209 RETURN (r);
16210 }
16211
16212 case AT_ENCODE_EXPR:
16213 {
16214 op1 = TREE_OPERAND (t, 0);
16215 ++cp_unevaluated_operand;
16216 ++c_inhibit_evaluation_warnings;
16217 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16218 /*function_p=*/false,
16219 /*integral_constant_expression_p=*/false);
16220 --cp_unevaluated_operand;
16221 --c_inhibit_evaluation_warnings;
16222 RETURN (objc_build_encode_expr (op1));
16223 }
16224
16225 case NOEXCEPT_EXPR:
16226 op1 = TREE_OPERAND (t, 0);
16227 ++cp_unevaluated_operand;
16228 ++c_inhibit_evaluation_warnings;
16229 ++cp_noexcept_operand;
16230 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16231 /*function_p=*/false,
16232 /*integral_constant_expression_p=*/false);
16233 --cp_unevaluated_operand;
16234 --c_inhibit_evaluation_warnings;
16235 --cp_noexcept_operand;
16236 RETURN (finish_noexcept_expr (op1, complain));
16237
16238 case MODOP_EXPR:
16239 {
16240 warning_sentinel s(warn_div_by_zero);
16241 tree lhs = RECUR (TREE_OPERAND (t, 0));
16242 tree rhs = RECUR (TREE_OPERAND (t, 2));
16243 tree r = build_x_modify_expr
16244 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16245 complain|decltype_flag);
16246 /* TREE_NO_WARNING must be set if either the expression was
16247 parenthesized or it uses an operator such as >>= rather
16248 than plain assignment. In the former case, it was already
16249 set and must be copied. In the latter case,
16250 build_x_modify_expr sets it and it must not be reset
16251 here. */
16252 if (TREE_NO_WARNING (t))
16253 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16254
16255 RETURN (r);
16256 }
16257
16258 case ARROW_EXPR:
16259 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16260 args, complain, in_decl);
16261 /* Remember that there was a reference to this entity. */
16262 if (DECL_P (op1)
16263 && !mark_used (op1, complain) && !(complain & tf_error))
16264 RETURN (error_mark_node);
16265 RETURN (build_x_arrow (input_location, op1, complain));
16266
16267 case NEW_EXPR:
16268 {
16269 tree placement = RECUR (TREE_OPERAND (t, 0));
16270 tree init = RECUR (TREE_OPERAND (t, 3));
16271 vec<tree, va_gc> *placement_vec;
16272 vec<tree, va_gc> *init_vec;
16273 tree ret;
16274
16275 if (placement == NULL_TREE)
16276 placement_vec = NULL;
16277 else
16278 {
16279 placement_vec = make_tree_vector ();
16280 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16281 vec_safe_push (placement_vec, TREE_VALUE (placement));
16282 }
16283
16284 /* If there was an initializer in the original tree, but it
16285 instantiated to an empty list, then we should pass a
16286 non-NULL empty vector to tell build_new that it was an
16287 empty initializer() rather than no initializer. This can
16288 only happen when the initializer is a pack expansion whose
16289 parameter packs are of length zero. */
16290 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16291 init_vec = NULL;
16292 else
16293 {
16294 init_vec = make_tree_vector ();
16295 if (init == void_node)
16296 gcc_assert (init_vec != NULL);
16297 else
16298 {
16299 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16300 vec_safe_push (init_vec, TREE_VALUE (init));
16301 }
16302 }
16303
16304 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16305 tree op2 = RECUR (TREE_OPERAND (t, 2));
16306 ret = build_new (&placement_vec, op1, op2, &init_vec,
16307 NEW_EXPR_USE_GLOBAL (t),
16308 complain);
16309
16310 if (placement_vec != NULL)
16311 release_tree_vector (placement_vec);
16312 if (init_vec != NULL)
16313 release_tree_vector (init_vec);
16314
16315 RETURN (ret);
16316 }
16317
16318 case DELETE_EXPR:
16319 {
16320 tree op0 = RECUR (TREE_OPERAND (t, 0));
16321 tree op1 = RECUR (TREE_OPERAND (t, 1));
16322 RETURN (delete_sanity (op0, op1,
16323 DELETE_EXPR_USE_VEC (t),
16324 DELETE_EXPR_USE_GLOBAL (t),
16325 complain));
16326 }
16327
16328 case COMPOUND_EXPR:
16329 {
16330 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16331 complain & ~tf_decltype, in_decl,
16332 /*function_p=*/false,
16333 integral_constant_expression_p);
16334 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16335 op0,
16336 RECUR (TREE_OPERAND (t, 1)),
16337 complain|decltype_flag));
16338 }
16339
16340 case CALL_EXPR:
16341 {
16342 tree function;
16343 vec<tree, va_gc> *call_args;
16344 unsigned int nargs, i;
16345 bool qualified_p;
16346 bool koenig_p;
16347 tree ret;
16348
16349 function = CALL_EXPR_FN (t);
16350 /* When we parsed the expression, we determined whether or
16351 not Koenig lookup should be performed. */
16352 koenig_p = KOENIG_LOOKUP_P (t);
16353 if (TREE_CODE (function) == SCOPE_REF)
16354 {
16355 qualified_p = true;
16356 function = tsubst_qualified_id (function, args, complain, in_decl,
16357 /*done=*/false,
16358 /*address_p=*/false);
16359 }
16360 else if (koenig_p && identifier_p (function))
16361 {
16362 /* Do nothing; calling tsubst_copy_and_build on an identifier
16363 would incorrectly perform unqualified lookup again.
16364
16365 Note that we can also have an IDENTIFIER_NODE if the earlier
16366 unqualified lookup found a member function; in that case
16367 koenig_p will be false and we do want to do the lookup
16368 again to find the instantiated member function.
16369
16370 FIXME but doing that causes c++/15272, so we need to stop
16371 using IDENTIFIER_NODE in that situation. */
16372 qualified_p = false;
16373 }
16374 else
16375 {
16376 if (TREE_CODE (function) == COMPONENT_REF)
16377 {
16378 tree op = TREE_OPERAND (function, 1);
16379
16380 qualified_p = (TREE_CODE (op) == SCOPE_REF
16381 || (BASELINK_P (op)
16382 && BASELINK_QUALIFIED_P (op)));
16383 }
16384 else
16385 qualified_p = false;
16386
16387 if (TREE_CODE (function) == ADDR_EXPR
16388 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16389 /* Avoid error about taking the address of a constructor. */
16390 function = TREE_OPERAND (function, 0);
16391
16392 function = tsubst_copy_and_build (function, args, complain,
16393 in_decl,
16394 !qualified_p,
16395 integral_constant_expression_p);
16396
16397 if (BASELINK_P (function))
16398 qualified_p = true;
16399 }
16400
16401 nargs = call_expr_nargs (t);
16402 call_args = make_tree_vector ();
16403 for (i = 0; i < nargs; ++i)
16404 {
16405 tree arg = CALL_EXPR_ARG (t, i);
16406
16407 if (!PACK_EXPANSION_P (arg))
16408 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16409 else
16410 {
16411 /* Expand the pack expansion and push each entry onto
16412 CALL_ARGS. */
16413 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16414 if (TREE_CODE (arg) == TREE_VEC)
16415 {
16416 unsigned int len, j;
16417
16418 len = TREE_VEC_LENGTH (arg);
16419 for (j = 0; j < len; ++j)
16420 {
16421 tree value = TREE_VEC_ELT (arg, j);
16422 if (value != NULL_TREE)
16423 value = convert_from_reference (value);
16424 vec_safe_push (call_args, value);
16425 }
16426 }
16427 else
16428 {
16429 /* A partial substitution. Add one entry. */
16430 vec_safe_push (call_args, arg);
16431 }
16432 }
16433 }
16434
16435 /* We do not perform argument-dependent lookup if normal
16436 lookup finds a non-function, in accordance with the
16437 expected resolution of DR 218. */
16438 if (koenig_p
16439 && ((is_overloaded_fn (function)
16440 /* If lookup found a member function, the Koenig lookup is
16441 not appropriate, even if an unqualified-name was used
16442 to denote the function. */
16443 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16444 || identifier_p (function))
16445 /* Only do this when substitution turns a dependent call
16446 into a non-dependent call. */
16447 && type_dependent_expression_p_push (t)
16448 && !any_type_dependent_arguments_p (call_args))
16449 function = perform_koenig_lookup (function, call_args, tf_none);
16450
16451 if (identifier_p (function)
16452 && !any_type_dependent_arguments_p (call_args))
16453 {
16454 if (koenig_p && (complain & tf_warning_or_error))
16455 {
16456 /* For backwards compatibility and good diagnostics, try
16457 the unqualified lookup again if we aren't in SFINAE
16458 context. */
16459 tree unq = (tsubst_copy_and_build
16460 (function, args, complain, in_decl, true,
16461 integral_constant_expression_p));
16462 if (unq == error_mark_node)
16463 RETURN (error_mark_node);
16464
16465 if (unq != function)
16466 {
16467 tree fn = unq;
16468 if (INDIRECT_REF_P (fn))
16469 fn = TREE_OPERAND (fn, 0);
16470 if (TREE_CODE (fn) == COMPONENT_REF)
16471 fn = TREE_OPERAND (fn, 1);
16472 if (is_overloaded_fn (fn))
16473 fn = get_first_fn (fn);
16474 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16475 "%qD was not declared in this scope, "
16476 "and no declarations were found by "
16477 "argument-dependent lookup at the point "
16478 "of instantiation", function))
16479 {
16480 if (!DECL_P (fn))
16481 /* Can't say anything more. */;
16482 else if (DECL_CLASS_SCOPE_P (fn))
16483 {
16484 location_t loc = EXPR_LOC_OR_LOC (t,
16485 input_location);
16486 inform (loc,
16487 "declarations in dependent base %qT are "
16488 "not found by unqualified lookup",
16489 DECL_CLASS_CONTEXT (fn));
16490 if (current_class_ptr)
16491 inform (loc,
16492 "use %<this->%D%> instead", function);
16493 else
16494 inform (loc,
16495 "use %<%T::%D%> instead",
16496 current_class_name, function);
16497 }
16498 else
16499 inform (DECL_SOURCE_LOCATION (fn),
16500 "%qD declared here, later in the "
16501 "translation unit", fn);
16502 }
16503 function = unq;
16504 }
16505 }
16506 if (identifier_p (function))
16507 {
16508 if (complain & tf_error)
16509 unqualified_name_lookup_error (function);
16510 release_tree_vector (call_args);
16511 RETURN (error_mark_node);
16512 }
16513 }
16514
16515 /* Remember that there was a reference to this entity. */
16516 if (DECL_P (function)
16517 && !mark_used (function, complain) && !(complain & tf_error))
16518 RETURN (error_mark_node);
16519
16520 /* Put back tf_decltype for the actual call. */
16521 complain |= decltype_flag;
16522
16523 if (TREE_CODE (function) == OFFSET_REF)
16524 ret = build_offset_ref_call_from_tree (function, &call_args,
16525 complain);
16526 else if (TREE_CODE (function) == COMPONENT_REF)
16527 {
16528 tree instance = TREE_OPERAND (function, 0);
16529 tree fn = TREE_OPERAND (function, 1);
16530
16531 if (processing_template_decl
16532 && (type_dependent_expression_p (instance)
16533 || (!BASELINK_P (fn)
16534 && TREE_CODE (fn) != FIELD_DECL)
16535 || type_dependent_expression_p (fn)
16536 || any_type_dependent_arguments_p (call_args)))
16537 ret = build_nt_call_vec (function, call_args);
16538 else if (!BASELINK_P (fn))
16539 ret = finish_call_expr (function, &call_args,
16540 /*disallow_virtual=*/false,
16541 /*koenig_p=*/false,
16542 complain);
16543 else
16544 ret = (build_new_method_call
16545 (instance, fn,
16546 &call_args, NULL_TREE,
16547 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16548 /*fn_p=*/NULL,
16549 complain));
16550 }
16551 else
16552 ret = finish_call_expr (function, &call_args,
16553 /*disallow_virtual=*/qualified_p,
16554 koenig_p,
16555 complain);
16556
16557 release_tree_vector (call_args);
16558
16559 RETURN (ret);
16560 }
16561
16562 case COND_EXPR:
16563 {
16564 tree cond = RECUR (TREE_OPERAND (t, 0));
16565 tree folded_cond = fold_non_dependent_expr (cond);
16566 tree exp1, exp2;
16567
16568 if (TREE_CODE (folded_cond) == INTEGER_CST)
16569 {
16570 if (integer_zerop (folded_cond))
16571 {
16572 ++c_inhibit_evaluation_warnings;
16573 exp1 = RECUR (TREE_OPERAND (t, 1));
16574 --c_inhibit_evaluation_warnings;
16575 exp2 = RECUR (TREE_OPERAND (t, 2));
16576 }
16577 else
16578 {
16579 exp1 = RECUR (TREE_OPERAND (t, 1));
16580 ++c_inhibit_evaluation_warnings;
16581 exp2 = RECUR (TREE_OPERAND (t, 2));
16582 --c_inhibit_evaluation_warnings;
16583 }
16584 cond = folded_cond;
16585 }
16586 else
16587 {
16588 exp1 = RECUR (TREE_OPERAND (t, 1));
16589 exp2 = RECUR (TREE_OPERAND (t, 2));
16590 }
16591
16592 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16593 cond, exp1, exp2, complain));
16594 }
16595
16596 case PSEUDO_DTOR_EXPR:
16597 {
16598 tree op0 = RECUR (TREE_OPERAND (t, 0));
16599 tree op1 = RECUR (TREE_OPERAND (t, 1));
16600 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16601 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16602 input_location));
16603 }
16604
16605 case TREE_LIST:
16606 {
16607 tree purpose, value, chain;
16608
16609 if (t == void_list_node)
16610 RETURN (t);
16611
16612 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16613 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16614 {
16615 /* We have pack expansions, so expand those and
16616 create a new list out of it. */
16617 tree purposevec = NULL_TREE;
16618 tree valuevec = NULL_TREE;
16619 tree chain;
16620 int i, len = -1;
16621
16622 /* Expand the argument expressions. */
16623 if (TREE_PURPOSE (t))
16624 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16625 complain, in_decl);
16626 if (TREE_VALUE (t))
16627 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16628 complain, in_decl);
16629
16630 /* Build the rest of the list. */
16631 chain = TREE_CHAIN (t);
16632 if (chain && chain != void_type_node)
16633 chain = RECUR (chain);
16634
16635 /* Determine the number of arguments. */
16636 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16637 {
16638 len = TREE_VEC_LENGTH (purposevec);
16639 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16640 }
16641 else if (TREE_CODE (valuevec) == TREE_VEC)
16642 len = TREE_VEC_LENGTH (valuevec);
16643 else
16644 {
16645 /* Since we only performed a partial substitution into
16646 the argument pack, we only RETURN (a single list
16647 node. */
16648 if (purposevec == TREE_PURPOSE (t)
16649 && valuevec == TREE_VALUE (t)
16650 && chain == TREE_CHAIN (t))
16651 RETURN (t);
16652
16653 RETURN (tree_cons (purposevec, valuevec, chain));
16654 }
16655
16656 /* Convert the argument vectors into a TREE_LIST */
16657 i = len;
16658 while (i > 0)
16659 {
16660 /* Grab the Ith values. */
16661 i--;
16662 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16663 : NULL_TREE;
16664 value
16665 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16666 : NULL_TREE;
16667
16668 /* Build the list (backwards). */
16669 chain = tree_cons (purpose, value, chain);
16670 }
16671
16672 RETURN (chain);
16673 }
16674
16675 purpose = TREE_PURPOSE (t);
16676 if (purpose)
16677 purpose = RECUR (purpose);
16678 value = TREE_VALUE (t);
16679 if (value)
16680 value = RECUR (value);
16681 chain = TREE_CHAIN (t);
16682 if (chain && chain != void_type_node)
16683 chain = RECUR (chain);
16684 if (purpose == TREE_PURPOSE (t)
16685 && value == TREE_VALUE (t)
16686 && chain == TREE_CHAIN (t))
16687 RETURN (t);
16688 RETURN (tree_cons (purpose, value, chain));
16689 }
16690
16691 case COMPONENT_REF:
16692 {
16693 tree object;
16694 tree object_type;
16695 tree member;
16696 tree r;
16697
16698 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16699 args, complain, in_decl);
16700 /* Remember that there was a reference to this entity. */
16701 if (DECL_P (object)
16702 && !mark_used (object, complain) && !(complain & tf_error))
16703 RETURN (error_mark_node);
16704 object_type = TREE_TYPE (object);
16705
16706 member = TREE_OPERAND (t, 1);
16707 if (BASELINK_P (member))
16708 member = tsubst_baselink (member,
16709 non_reference (TREE_TYPE (object)),
16710 args, complain, in_decl);
16711 else
16712 member = tsubst_copy (member, args, complain, in_decl);
16713 if (member == error_mark_node)
16714 RETURN (error_mark_node);
16715
16716 if (type_dependent_expression_p (object))
16717 /* We can't do much here. */;
16718 else if (!CLASS_TYPE_P (object_type))
16719 {
16720 if (scalarish_type_p (object_type))
16721 {
16722 tree s = NULL_TREE;
16723 tree dtor = member;
16724
16725 if (TREE_CODE (dtor) == SCOPE_REF)
16726 {
16727 s = TREE_OPERAND (dtor, 0);
16728 dtor = TREE_OPERAND (dtor, 1);
16729 }
16730 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16731 {
16732 dtor = TREE_OPERAND (dtor, 0);
16733 if (TYPE_P (dtor))
16734 RETURN (finish_pseudo_destructor_expr
16735 (object, s, dtor, input_location));
16736 }
16737 }
16738 }
16739 else if (TREE_CODE (member) == SCOPE_REF
16740 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16741 {
16742 /* Lookup the template functions now that we know what the
16743 scope is. */
16744 tree scope = TREE_OPERAND (member, 0);
16745 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16746 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16747 member = lookup_qualified_name (scope, tmpl,
16748 /*is_type_p=*/false,
16749 /*complain=*/false);
16750 if (BASELINK_P (member))
16751 {
16752 BASELINK_FUNCTIONS (member)
16753 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16754 args);
16755 member = (adjust_result_of_qualified_name_lookup
16756 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16757 object_type));
16758 }
16759 else
16760 {
16761 qualified_name_lookup_error (scope, tmpl, member,
16762 input_location);
16763 RETURN (error_mark_node);
16764 }
16765 }
16766 else if (TREE_CODE (member) == SCOPE_REF
16767 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16768 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16769 {
16770 if (complain & tf_error)
16771 {
16772 if (TYPE_P (TREE_OPERAND (member, 0)))
16773 error ("%qT is not a class or namespace",
16774 TREE_OPERAND (member, 0));
16775 else
16776 error ("%qD is not a class or namespace",
16777 TREE_OPERAND (member, 0));
16778 }
16779 RETURN (error_mark_node);
16780 }
16781 else if (TREE_CODE (member) == FIELD_DECL)
16782 {
16783 r = finish_non_static_data_member (member, object, NULL_TREE);
16784 if (TREE_CODE (r) == COMPONENT_REF)
16785 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16786 RETURN (r);
16787 }
16788
16789 r = finish_class_member_access_expr (object, member,
16790 /*template_p=*/false,
16791 complain);
16792 if (TREE_CODE (r) == COMPONENT_REF)
16793 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16794 RETURN (r);
16795 }
16796
16797 case THROW_EXPR:
16798 RETURN (build_throw
16799 (RECUR (TREE_OPERAND (t, 0))));
16800
16801 case CONSTRUCTOR:
16802 {
16803 vec<constructor_elt, va_gc> *n;
16804 constructor_elt *ce;
16805 unsigned HOST_WIDE_INT idx;
16806 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16807 bool process_index_p;
16808 int newlen;
16809 bool need_copy_p = false;
16810 tree r;
16811
16812 if (type == error_mark_node)
16813 RETURN (error_mark_node);
16814
16815 /* digest_init will do the wrong thing if we let it. */
16816 if (type && TYPE_PTRMEMFUNC_P (type))
16817 RETURN (t);
16818
16819 /* We do not want to process the index of aggregate
16820 initializers as they are identifier nodes which will be
16821 looked up by digest_init. */
16822 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16823
16824 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16825 newlen = vec_safe_length (n);
16826 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16827 {
16828 if (ce->index && process_index_p
16829 /* An identifier index is looked up in the type
16830 being initialized, not the current scope. */
16831 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16832 ce->index = RECUR (ce->index);
16833
16834 if (PACK_EXPANSION_P (ce->value))
16835 {
16836 /* Substitute into the pack expansion. */
16837 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16838 in_decl);
16839
16840 if (ce->value == error_mark_node
16841 || PACK_EXPANSION_P (ce->value))
16842 ;
16843 else if (TREE_VEC_LENGTH (ce->value) == 1)
16844 /* Just move the argument into place. */
16845 ce->value = TREE_VEC_ELT (ce->value, 0);
16846 else
16847 {
16848 /* Update the length of the final CONSTRUCTOR
16849 arguments vector, and note that we will need to
16850 copy.*/
16851 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16852 need_copy_p = true;
16853 }
16854 }
16855 else
16856 ce->value = RECUR (ce->value);
16857 }
16858
16859 if (need_copy_p)
16860 {
16861 vec<constructor_elt, va_gc> *old_n = n;
16862
16863 vec_alloc (n, newlen);
16864 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16865 {
16866 if (TREE_CODE (ce->value) == TREE_VEC)
16867 {
16868 int i, len = TREE_VEC_LENGTH (ce->value);
16869 for (i = 0; i < len; ++i)
16870 CONSTRUCTOR_APPEND_ELT (n, 0,
16871 TREE_VEC_ELT (ce->value, i));
16872 }
16873 else
16874 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16875 }
16876 }
16877
16878 r = build_constructor (init_list_type_node, n);
16879 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16880
16881 if (TREE_HAS_CONSTRUCTOR (t))
16882 RETURN (finish_compound_literal (type, r, complain));
16883
16884 TREE_TYPE (r) = type;
16885 RETURN (r);
16886 }
16887
16888 case TYPEID_EXPR:
16889 {
16890 tree operand_0 = TREE_OPERAND (t, 0);
16891 if (TYPE_P (operand_0))
16892 {
16893 operand_0 = tsubst (operand_0, args, complain, in_decl);
16894 RETURN (get_typeid (operand_0, complain));
16895 }
16896 else
16897 {
16898 operand_0 = RECUR (operand_0);
16899 RETURN (build_typeid (operand_0, complain));
16900 }
16901 }
16902
16903 case VAR_DECL:
16904 if (!args)
16905 RETURN (t);
16906 else if (DECL_PACK_P (t))
16907 {
16908 /* We don't build decls for an instantiation of a
16909 variadic capture proxy, we instantiate the elements
16910 when needed. */
16911 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16912 return RECUR (DECL_VALUE_EXPR (t));
16913 }
16914 /* Fall through */
16915
16916 case PARM_DECL:
16917 {
16918 tree r = tsubst_copy (t, args, complain, in_decl);
16919 /* ??? We're doing a subset of finish_id_expression here. */
16920 if (VAR_P (r)
16921 && !processing_template_decl
16922 && !cp_unevaluated_operand
16923 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16924 && CP_DECL_THREAD_LOCAL_P (r))
16925 {
16926 if (tree wrap = get_tls_wrapper_fn (r))
16927 /* Replace an evaluated use of the thread_local variable with
16928 a call to its wrapper. */
16929 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
16930 }
16931 else if (outer_automatic_var_p (r))
16932 {
16933 r = process_outer_var_ref (r, complain);
16934 if (is_capture_proxy (r))
16935 register_local_specialization (r, t);
16936 }
16937
16938 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
16939 /* If the original type was a reference, we'll be wrapped in
16940 the appropriate INDIRECT_REF. */
16941 r = convert_from_reference (r);
16942 RETURN (r);
16943 }
16944
16945 case VA_ARG_EXPR:
16946 {
16947 tree op0 = RECUR (TREE_OPERAND (t, 0));
16948 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16949 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
16950 }
16951
16952 case OFFSETOF_EXPR:
16953 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
16954 EXPR_LOCATION (t)));
16955
16956 case TRAIT_EXPR:
16957 {
16958 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
16959 complain, in_decl);
16960
16961 tree type2 = TRAIT_EXPR_TYPE2 (t);
16962 if (type2 && TREE_CODE (type2) == TREE_LIST)
16963 type2 = RECUR (type2);
16964 else if (type2)
16965 type2 = tsubst (type2, args, complain, in_decl);
16966
16967 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
16968 }
16969
16970 case STMT_EXPR:
16971 {
16972 tree old_stmt_expr = cur_stmt_expr;
16973 tree stmt_expr = begin_stmt_expr ();
16974
16975 cur_stmt_expr = stmt_expr;
16976 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
16977 integral_constant_expression_p);
16978 stmt_expr = finish_stmt_expr (stmt_expr, false);
16979 cur_stmt_expr = old_stmt_expr;
16980
16981 /* If the resulting list of expression statement is empty,
16982 fold it further into void_node. */
16983 if (empty_expr_stmt_p (stmt_expr))
16984 stmt_expr = void_node;
16985
16986 RETURN (stmt_expr);
16987 }
16988
16989 case LAMBDA_EXPR:
16990 {
16991 tree r = build_lambda_expr ();
16992
16993 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
16994 LAMBDA_EXPR_CLOSURE (r) = type;
16995 CLASSTYPE_LAMBDA_EXPR (type) = r;
16996
16997 LAMBDA_EXPR_LOCATION (r)
16998 = LAMBDA_EXPR_LOCATION (t);
16999 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17000 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17001 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17002 LAMBDA_EXPR_DISCRIMINATOR (r)
17003 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17004 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17005 if (!scope)
17006 /* No substitution needed. */;
17007 else if (VAR_OR_FUNCTION_DECL_P (scope))
17008 /* For a function or variable scope, we want to use tsubst so that we
17009 don't complain about referring to an auto before deduction. */
17010 scope = tsubst (scope, args, complain, in_decl);
17011 else if (TREE_CODE (scope) == PARM_DECL)
17012 {
17013 /* Look up the parameter we want directly, as tsubst_copy
17014 doesn't do what we need. */
17015 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17016 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17017 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17018 parm = DECL_CHAIN (parm);
17019 scope = parm;
17020 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17021 if (DECL_CONTEXT (scope) == NULL_TREE)
17022 DECL_CONTEXT (scope) = fn;
17023 }
17024 else if (TREE_CODE (scope) == FIELD_DECL)
17025 /* For a field, use tsubst_copy so that we look up the existing field
17026 rather than build a new one. */
17027 scope = RECUR (scope);
17028 else
17029 gcc_unreachable ();
17030 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17031 LAMBDA_EXPR_RETURN_TYPE (r)
17032 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
17033
17034 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17035 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17036
17037 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17038 determine_visibility (TYPE_NAME (type));
17039 /* Now that we know visibility, instantiate the type so we have a
17040 declaration of the op() for later calls to lambda_function. */
17041 complete_type (type);
17042
17043 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17044
17045 insert_pending_capture_proxies ();
17046
17047 RETURN (build_lambda_object (r));
17048 }
17049
17050 case TARGET_EXPR:
17051 /* We can get here for a constant initializer of non-dependent type.
17052 FIXME stop folding in cp_parser_initializer_clause. */
17053 {
17054 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17055 complain);
17056 RETURN (r);
17057 }
17058
17059 case TRANSACTION_EXPR:
17060 RETURN (tsubst_expr(t, args, complain, in_decl,
17061 integral_constant_expression_p));
17062
17063 case PAREN_EXPR:
17064 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17065
17066 case VEC_PERM_EXPR:
17067 {
17068 tree op0 = RECUR (TREE_OPERAND (t, 0));
17069 tree op1 = RECUR (TREE_OPERAND (t, 1));
17070 tree op2 = RECUR (TREE_OPERAND (t, 2));
17071 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17072 complain));
17073 }
17074
17075 case REQUIRES_EXPR:
17076 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17077
17078 default:
17079 /* Handle Objective-C++ constructs, if appropriate. */
17080 {
17081 tree subst
17082 = objcp_tsubst_copy_and_build (t, args, complain,
17083 in_decl, /*function_p=*/false);
17084 if (subst)
17085 RETURN (subst);
17086 }
17087 RETURN (tsubst_copy (t, args, complain, in_decl));
17088 }
17089
17090 #undef RECUR
17091 #undef RETURN
17092 out:
17093 input_location = loc;
17094 return retval;
17095 }
17096
17097 /* Verify that the instantiated ARGS are valid. For type arguments,
17098 make sure that the type's linkage is ok. For non-type arguments,
17099 make sure they are constants if they are integral or enumerations.
17100 Emit an error under control of COMPLAIN, and return TRUE on error. */
17101
17102 static bool
17103 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17104 {
17105 if (dependent_template_arg_p (t))
17106 return false;
17107 if (ARGUMENT_PACK_P (t))
17108 {
17109 tree vec = ARGUMENT_PACK_ARGS (t);
17110 int len = TREE_VEC_LENGTH (vec);
17111 bool result = false;
17112 int i;
17113
17114 for (i = 0; i < len; ++i)
17115 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17116 result = true;
17117 return result;
17118 }
17119 else if (TYPE_P (t))
17120 {
17121 /* [basic.link]: A name with no linkage (notably, the name
17122 of a class or enumeration declared in a local scope)
17123 shall not be used to declare an entity with linkage.
17124 This implies that names with no linkage cannot be used as
17125 template arguments
17126
17127 DR 757 relaxes this restriction for C++0x. */
17128 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17129 : no_linkage_check (t, /*relaxed_p=*/false));
17130
17131 if (nt)
17132 {
17133 /* DR 488 makes use of a type with no linkage cause
17134 type deduction to fail. */
17135 if (complain & tf_error)
17136 {
17137 if (TYPE_ANONYMOUS_P (nt))
17138 error ("%qT is/uses anonymous type", t);
17139 else
17140 error ("template argument for %qD uses local type %qT",
17141 tmpl, t);
17142 }
17143 return true;
17144 }
17145 /* In order to avoid all sorts of complications, we do not
17146 allow variably-modified types as template arguments. */
17147 else if (variably_modified_type_p (t, NULL_TREE))
17148 {
17149 if (complain & tf_error)
17150 error ("%qT is a variably modified type", t);
17151 return true;
17152 }
17153 }
17154 /* Class template and alias template arguments should be OK. */
17155 else if (DECL_TYPE_TEMPLATE_P (t))
17156 ;
17157 /* A non-type argument of integral or enumerated type must be a
17158 constant. */
17159 else if (TREE_TYPE (t)
17160 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17161 && !REFERENCE_REF_P (t)
17162 && !TREE_CONSTANT (t))
17163 {
17164 if (complain & tf_error)
17165 error ("integral expression %qE is not constant", t);
17166 return true;
17167 }
17168 return false;
17169 }
17170
17171 static bool
17172 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17173 {
17174 int ix, len = DECL_NTPARMS (tmpl);
17175 bool result = false;
17176
17177 for (ix = 0; ix != len; ix++)
17178 {
17179 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17180 result = true;
17181 }
17182 if (result && (complain & tf_error))
17183 error (" trying to instantiate %qD", tmpl);
17184 return result;
17185 }
17186
17187 /* We're out of SFINAE context now, so generate diagnostics for the access
17188 errors we saw earlier when instantiating D from TMPL and ARGS. */
17189
17190 static void
17191 recheck_decl_substitution (tree d, tree tmpl, tree args)
17192 {
17193 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17194 tree type = TREE_TYPE (pattern);
17195 location_t loc = input_location;
17196
17197 push_access_scope (d);
17198 push_deferring_access_checks (dk_no_deferred);
17199 input_location = DECL_SOURCE_LOCATION (pattern);
17200 tsubst (type, args, tf_warning_or_error, d);
17201 input_location = loc;
17202 pop_deferring_access_checks ();
17203 pop_access_scope (d);
17204 }
17205
17206 /* Instantiate the indicated variable, function, or alias template TMPL with
17207 the template arguments in TARG_PTR. */
17208
17209 static tree
17210 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17211 {
17212 tree targ_ptr = orig_args;
17213 tree fndecl;
17214 tree gen_tmpl;
17215 tree spec;
17216 bool access_ok = true;
17217
17218 if (tmpl == error_mark_node)
17219 return error_mark_node;
17220
17221 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17222
17223 /* If this function is a clone, handle it specially. */
17224 if (DECL_CLONED_FUNCTION_P (tmpl))
17225 {
17226 tree spec;
17227 tree clone;
17228
17229 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17230 DECL_CLONED_FUNCTION. */
17231 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17232 targ_ptr, complain);
17233 if (spec == error_mark_node)
17234 return error_mark_node;
17235
17236 /* Look for the clone. */
17237 FOR_EACH_CLONE (clone, spec)
17238 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17239 return clone;
17240 /* We should always have found the clone by now. */
17241 gcc_unreachable ();
17242 return NULL_TREE;
17243 }
17244
17245 if (targ_ptr == error_mark_node)
17246 return error_mark_node;
17247
17248 /* Check to see if we already have this specialization. */
17249 gen_tmpl = most_general_template (tmpl);
17250 if (tmpl != gen_tmpl)
17251 /* The TMPL is a partial instantiation. To get a full set of
17252 arguments we must add the arguments used to perform the
17253 partial instantiation. */
17254 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
17255 targ_ptr);
17256
17257 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17258 but it doesn't seem to be on the hot path. */
17259 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17260
17261 gcc_assert (tmpl == gen_tmpl
17262 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17263 == spec)
17264 || fndecl == NULL_TREE);
17265
17266 if (spec != NULL_TREE)
17267 {
17268 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17269 {
17270 if (complain & tf_error)
17271 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17272 return error_mark_node;
17273 }
17274 return spec;
17275 }
17276
17277 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17278 complain))
17279 return error_mark_node;
17280
17281 /* We are building a FUNCTION_DECL, during which the access of its
17282 parameters and return types have to be checked. However this
17283 FUNCTION_DECL which is the desired context for access checking
17284 is not built yet. We solve this chicken-and-egg problem by
17285 deferring all checks until we have the FUNCTION_DECL. */
17286 push_deferring_access_checks (dk_deferred);
17287
17288 /* Instantiation of the function happens in the context of the function
17289 template, not the context of the overload resolution we're doing. */
17290 push_to_top_level ();
17291 /* If there are dependent arguments, e.g. because we're doing partial
17292 ordering, make sure processing_template_decl stays set. */
17293 if (uses_template_parms (targ_ptr))
17294 ++processing_template_decl;
17295 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17296 {
17297 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17298 complain, gen_tmpl, true);
17299 push_nested_class (ctx);
17300 }
17301
17302 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17303
17304 if (VAR_P (pattern))
17305 {
17306 /* We need to determine if we're using a partial or explicit
17307 specialization now, because the type of the variable could be
17308 different. */
17309 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17310 tree elt = most_specialized_partial_spec (tid, complain);
17311 if (elt == error_mark_node)
17312 pattern = error_mark_node;
17313 else if (elt)
17314 {
17315 tmpl = TREE_VALUE (elt);
17316 pattern = DECL_TEMPLATE_RESULT (tmpl);
17317 targ_ptr = TREE_PURPOSE (elt);
17318 }
17319 }
17320
17321 /* Substitute template parameters to obtain the specialization. */
17322 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17323 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17324 pop_nested_class ();
17325 pop_from_top_level ();
17326
17327 if (fndecl == error_mark_node)
17328 {
17329 pop_deferring_access_checks ();
17330 return error_mark_node;
17331 }
17332
17333 /* The DECL_TI_TEMPLATE should always be the immediate parent
17334 template, not the most general template. */
17335 DECL_TI_TEMPLATE (fndecl) = tmpl;
17336 DECL_TI_ARGS (fndecl) = targ_ptr;
17337
17338 /* Now we know the specialization, compute access previously
17339 deferred. */
17340 push_access_scope (fndecl);
17341 if (!perform_deferred_access_checks (complain))
17342 access_ok = false;
17343 pop_access_scope (fndecl);
17344 pop_deferring_access_checks ();
17345
17346 /* If we've just instantiated the main entry point for a function,
17347 instantiate all the alternate entry points as well. We do this
17348 by cloning the instantiation of the main entry point, not by
17349 instantiating the template clones. */
17350 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17351 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17352
17353 if (!access_ok)
17354 {
17355 if (!(complain & tf_error))
17356 {
17357 /* Remember to reinstantiate when we're out of SFINAE so the user
17358 can see the errors. */
17359 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17360 }
17361 return error_mark_node;
17362 }
17363 return fndecl;
17364 }
17365
17366 /* Wrapper for instantiate_template_1. */
17367
17368 tree
17369 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17370 {
17371 tree ret;
17372 timevar_push (TV_TEMPLATE_INST);
17373 ret = instantiate_template_1 (tmpl, orig_args, complain);
17374 timevar_pop (TV_TEMPLATE_INST);
17375 return ret;
17376 }
17377
17378 /* Instantiate the alias template TMPL with ARGS. Also push a template
17379 instantiation level, which instantiate_template doesn't do because
17380 functions and variables have sufficient context established by the
17381 callers. */
17382
17383 static tree
17384 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17385 {
17386 struct pending_template *old_last_pend = last_pending_template;
17387 struct tinst_level *old_error_tinst = last_error_tinst_level;
17388 if (tmpl == error_mark_node || args == error_mark_node)
17389 return error_mark_node;
17390 tree tinst = build_tree_list (tmpl, args);
17391 if (!push_tinst_level (tinst))
17392 {
17393 ggc_free (tinst);
17394 return error_mark_node;
17395 }
17396
17397 args =
17398 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17399 args, tmpl, complain,
17400 /*require_all_args=*/true,
17401 /*use_default_args=*/true);
17402
17403 tree r = instantiate_template (tmpl, args, complain);
17404 pop_tinst_level ();
17405 /* We can't free this if a pending_template entry or last_error_tinst_level
17406 is pointing at it. */
17407 if (last_pending_template == old_last_pend
17408 && last_error_tinst_level == old_error_tinst)
17409 ggc_free (tinst);
17410
17411 return r;
17412 }
17413
17414 /* PARM is a template parameter pack for FN. Returns true iff
17415 PARM is used in a deducible way in the argument list of FN. */
17416
17417 static bool
17418 pack_deducible_p (tree parm, tree fn)
17419 {
17420 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17421 for (; t; t = TREE_CHAIN (t))
17422 {
17423 tree type = TREE_VALUE (t);
17424 tree packs;
17425 if (!PACK_EXPANSION_P (type))
17426 continue;
17427 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17428 packs; packs = TREE_CHAIN (packs))
17429 if (template_args_equal (TREE_VALUE (packs), parm))
17430 {
17431 /* The template parameter pack is used in a function parameter
17432 pack. If this is the end of the parameter list, the
17433 template parameter pack is deducible. */
17434 if (TREE_CHAIN (t) == void_list_node)
17435 return true;
17436 else
17437 /* Otherwise, not. Well, it could be deduced from
17438 a non-pack parameter, but doing so would end up with
17439 a deduction mismatch, so don't bother. */
17440 return false;
17441 }
17442 }
17443 /* The template parameter pack isn't used in any function parameter
17444 packs, but it might be used deeper, e.g. tuple<Args...>. */
17445 return true;
17446 }
17447
17448 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17449 NARGS elements of the arguments that are being used when calling
17450 it. TARGS is a vector into which the deduced template arguments
17451 are placed.
17452
17453 Returns either a FUNCTION_DECL for the matching specialization of FN or
17454 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17455 true, diagnostics will be printed to explain why it failed.
17456
17457 If FN is a conversion operator, or we are trying to produce a specific
17458 specialization, RETURN_TYPE is the return type desired.
17459
17460 The EXPLICIT_TARGS are explicit template arguments provided via a
17461 template-id.
17462
17463 The parameter STRICT is one of:
17464
17465 DEDUCE_CALL:
17466 We are deducing arguments for a function call, as in
17467 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17468 deducing arguments for a call to the result of a conversion
17469 function template, as in [over.call.object].
17470
17471 DEDUCE_CONV:
17472 We are deducing arguments for a conversion function, as in
17473 [temp.deduct.conv].
17474
17475 DEDUCE_EXACT:
17476 We are deducing arguments when doing an explicit instantiation
17477 as in [temp.explicit], when determining an explicit specialization
17478 as in [temp.expl.spec], or when taking the address of a function
17479 template, as in [temp.deduct.funcaddr]. */
17480
17481 tree
17482 fn_type_unification (tree fn,
17483 tree explicit_targs,
17484 tree targs,
17485 const tree *args,
17486 unsigned int nargs,
17487 tree return_type,
17488 unification_kind_t strict,
17489 int flags,
17490 bool explain_p,
17491 bool decltype_p)
17492 {
17493 tree parms;
17494 tree fntype;
17495 tree decl = NULL_TREE;
17496 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17497 bool ok;
17498 static int deduction_depth;
17499 struct pending_template *old_last_pend = last_pending_template;
17500 struct tinst_level *old_error_tinst = last_error_tinst_level;
17501 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17502 tree tinst;
17503 tree r = error_mark_node;
17504
17505 if (decltype_p)
17506 complain |= tf_decltype;
17507
17508 /* In C++0x, it's possible to have a function template whose type depends
17509 on itself recursively. This is most obvious with decltype, but can also
17510 occur with enumeration scope (c++/48969). So we need to catch infinite
17511 recursion and reject the substitution at deduction time; this function
17512 will return error_mark_node for any repeated substitution.
17513
17514 This also catches excessive recursion such as when f<N> depends on
17515 f<N-1> across all integers, and returns error_mark_node for all the
17516 substitutions back up to the initial one.
17517
17518 This is, of course, not reentrant. */
17519 if (excessive_deduction_depth)
17520 return error_mark_node;
17521 tinst = build_tree_list (fn, NULL_TREE);
17522 ++deduction_depth;
17523
17524 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17525
17526 fntype = TREE_TYPE (fn);
17527 if (explicit_targs)
17528 {
17529 /* [temp.deduct]
17530
17531 The specified template arguments must match the template
17532 parameters in kind (i.e., type, nontype, template), and there
17533 must not be more arguments than there are parameters;
17534 otherwise type deduction fails.
17535
17536 Nontype arguments must match the types of the corresponding
17537 nontype template parameters, or must be convertible to the
17538 types of the corresponding nontype parameters as specified in
17539 _temp.arg.nontype_, otherwise type deduction fails.
17540
17541 All references in the function type of the function template
17542 to the corresponding template parameters are replaced by the
17543 specified template argument values. If a substitution in a
17544 template parameter or in the function type of the function
17545 template results in an invalid type, type deduction fails. */
17546 int i, len = TREE_VEC_LENGTH (tparms);
17547 location_t loc = input_location;
17548 bool incomplete = false;
17549
17550 /* Adjust any explicit template arguments before entering the
17551 substitution context. */
17552 explicit_targs
17553 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17554 complain,
17555 /*require_all_args=*/false,
17556 /*use_default_args=*/false));
17557 if (explicit_targs == error_mark_node)
17558 goto fail;
17559
17560 /* Substitute the explicit args into the function type. This is
17561 necessary so that, for instance, explicitly declared function
17562 arguments can match null pointed constants. If we were given
17563 an incomplete set of explicit args, we must not do semantic
17564 processing during substitution as we could create partial
17565 instantiations. */
17566 for (i = 0; i < len; i++)
17567 {
17568 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17569 bool parameter_pack = false;
17570 tree targ = TREE_VEC_ELT (explicit_targs, i);
17571
17572 /* Dig out the actual parm. */
17573 if (TREE_CODE (parm) == TYPE_DECL
17574 || TREE_CODE (parm) == TEMPLATE_DECL)
17575 {
17576 parm = TREE_TYPE (parm);
17577 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17578 }
17579 else if (TREE_CODE (parm) == PARM_DECL)
17580 {
17581 parm = DECL_INITIAL (parm);
17582 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17583 }
17584
17585 if (!parameter_pack && targ == NULL_TREE)
17586 /* No explicit argument for this template parameter. */
17587 incomplete = true;
17588
17589 if (parameter_pack && pack_deducible_p (parm, fn))
17590 {
17591 /* Mark the argument pack as "incomplete". We could
17592 still deduce more arguments during unification.
17593 We remove this mark in type_unification_real. */
17594 if (targ)
17595 {
17596 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17597 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17598 = ARGUMENT_PACK_ARGS (targ);
17599 }
17600
17601 /* We have some incomplete argument packs. */
17602 incomplete = true;
17603 }
17604 }
17605
17606 TREE_VALUE (tinst) = explicit_targs;
17607 if (!push_tinst_level (tinst))
17608 {
17609 excessive_deduction_depth = true;
17610 goto fail;
17611 }
17612 processing_template_decl += incomplete;
17613 input_location = DECL_SOURCE_LOCATION (fn);
17614 /* Ignore any access checks; we'll see them again in
17615 instantiate_template and they might have the wrong
17616 access path at this point. */
17617 push_deferring_access_checks (dk_deferred);
17618 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17619 complain | tf_partial, NULL_TREE);
17620 pop_deferring_access_checks ();
17621 input_location = loc;
17622 processing_template_decl -= incomplete;
17623 pop_tinst_level ();
17624
17625 if (fntype == error_mark_node)
17626 goto fail;
17627
17628 /* Place the explicitly specified arguments in TARGS. */
17629 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17630 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17631 }
17632
17633 /* Never do unification on the 'this' parameter. */
17634 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17635
17636 if (return_type && strict == DEDUCE_CALL)
17637 {
17638 /* We're deducing for a call to the result of a template conversion
17639 function. The parms we really want are in return_type. */
17640 if (POINTER_TYPE_P (return_type))
17641 return_type = TREE_TYPE (return_type);
17642 parms = TYPE_ARG_TYPES (return_type);
17643 }
17644 else if (return_type)
17645 {
17646 tree *new_args;
17647
17648 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17649 new_args = XALLOCAVEC (tree, nargs + 1);
17650 new_args[0] = return_type;
17651 memcpy (new_args + 1, args, nargs * sizeof (tree));
17652 args = new_args;
17653 ++nargs;
17654 }
17655
17656 /* We allow incomplete unification without an error message here
17657 because the standard doesn't seem to explicitly prohibit it. Our
17658 callers must be ready to deal with unification failures in any
17659 event. */
17660
17661 TREE_VALUE (tinst) = targs;
17662 /* If we aren't explaining yet, push tinst context so we can see where
17663 any errors (e.g. from class instantiations triggered by instantiation
17664 of default template arguments) come from. If we are explaining, this
17665 context is redundant. */
17666 if (!explain_p && !push_tinst_level (tinst))
17667 {
17668 excessive_deduction_depth = true;
17669 goto fail;
17670 }
17671
17672 /* type_unification_real will pass back any access checks from default
17673 template argument substitution. */
17674 vec<deferred_access_check, va_gc> *checks;
17675 checks = NULL;
17676
17677 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17678 targs, parms, args, nargs, /*subr=*/0,
17679 strict, flags, &checks, explain_p);
17680 if (!explain_p)
17681 pop_tinst_level ();
17682 if (!ok)
17683 goto fail;
17684
17685 /* Now that we have bindings for all of the template arguments,
17686 ensure that the arguments deduced for the template template
17687 parameters have compatible template parameter lists. We cannot
17688 check this property before we have deduced all template
17689 arguments, because the template parameter types of a template
17690 template parameter might depend on prior template parameters
17691 deduced after the template template parameter. The following
17692 ill-formed example illustrates this issue:
17693
17694 template<typename T, template<T> class C> void f(C<5>, T);
17695
17696 template<int N> struct X {};
17697
17698 void g() {
17699 f(X<5>(), 5l); // error: template argument deduction fails
17700 }
17701
17702 The template parameter list of 'C' depends on the template type
17703 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17704 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17705 time that we deduce 'C'. */
17706 if (!template_template_parm_bindings_ok_p
17707 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17708 {
17709 unify_inconsistent_template_template_parameters (explain_p);
17710 goto fail;
17711 }
17712
17713 /* All is well so far. Now, check:
17714
17715 [temp.deduct]
17716
17717 When all template arguments have been deduced, all uses of
17718 template parameters in nondeduced contexts are replaced with
17719 the corresponding deduced argument values. If the
17720 substitution results in an invalid type, as described above,
17721 type deduction fails. */
17722 TREE_VALUE (tinst) = targs;
17723 if (!push_tinst_level (tinst))
17724 {
17725 excessive_deduction_depth = true;
17726 goto fail;
17727 }
17728
17729 /* Also collect access checks from the instantiation. */
17730 reopen_deferring_access_checks (checks);
17731
17732 decl = instantiate_template (fn, targs, complain);
17733
17734 checks = get_deferred_access_checks ();
17735 pop_deferring_access_checks ();
17736
17737 pop_tinst_level ();
17738
17739 if (decl == error_mark_node)
17740 goto fail;
17741
17742 /* Now perform any access checks encountered during substitution. */
17743 push_access_scope (decl);
17744 ok = perform_access_checks (checks, complain);
17745 pop_access_scope (decl);
17746 if (!ok)
17747 goto fail;
17748
17749 /* If we're looking for an exact match, check that what we got
17750 is indeed an exact match. It might not be if some template
17751 parameters are used in non-deduced contexts. But don't check
17752 for an exact match if we have dependent template arguments;
17753 in that case we're doing partial ordering, and we already know
17754 that we have two candidates that will provide the actual type. */
17755 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17756 {
17757 tree substed = TREE_TYPE (decl);
17758 unsigned int i;
17759
17760 tree sarg
17761 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17762 if (return_type)
17763 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17764 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17765 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17766 {
17767 unify_type_mismatch (explain_p, args[i],
17768 TREE_VALUE (sarg));
17769 goto fail;
17770 }
17771 }
17772
17773 r = decl;
17774
17775 fail:
17776 --deduction_depth;
17777 if (excessive_deduction_depth)
17778 {
17779 if (deduction_depth == 0)
17780 /* Reset once we're all the way out. */
17781 excessive_deduction_depth = false;
17782 }
17783
17784 /* We can't free this if a pending_template entry or last_error_tinst_level
17785 is pointing at it. */
17786 if (last_pending_template == old_last_pend
17787 && last_error_tinst_level == old_error_tinst)
17788 ggc_free (tinst);
17789
17790 return r;
17791 }
17792
17793 /* Adjust types before performing type deduction, as described in
17794 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17795 sections are symmetric. PARM is the type of a function parameter
17796 or the return type of the conversion function. ARG is the type of
17797 the argument passed to the call, or the type of the value
17798 initialized with the result of the conversion function.
17799 ARG_EXPR is the original argument expression, which may be null. */
17800
17801 static int
17802 maybe_adjust_types_for_deduction (unification_kind_t strict,
17803 tree* parm,
17804 tree* arg,
17805 tree arg_expr)
17806 {
17807 int result = 0;
17808
17809 switch (strict)
17810 {
17811 case DEDUCE_CALL:
17812 break;
17813
17814 case DEDUCE_CONV:
17815 /* Swap PARM and ARG throughout the remainder of this
17816 function; the handling is precisely symmetric since PARM
17817 will initialize ARG rather than vice versa. */
17818 std::swap (parm, arg);
17819 break;
17820
17821 case DEDUCE_EXACT:
17822 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17823 too, but here handle it by stripping the reference from PARM
17824 rather than by adding it to ARG. */
17825 if (TREE_CODE (*parm) == REFERENCE_TYPE
17826 && TYPE_REF_IS_RVALUE (*parm)
17827 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17828 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17829 && TREE_CODE (*arg) == REFERENCE_TYPE
17830 && !TYPE_REF_IS_RVALUE (*arg))
17831 *parm = TREE_TYPE (*parm);
17832 /* Nothing else to do in this case. */
17833 return 0;
17834
17835 default:
17836 gcc_unreachable ();
17837 }
17838
17839 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17840 {
17841 /* [temp.deduct.call]
17842
17843 If P is not a reference type:
17844
17845 --If A is an array type, the pointer type produced by the
17846 array-to-pointer standard conversion (_conv.array_) is
17847 used in place of A for type deduction; otherwise,
17848
17849 --If A is a function type, the pointer type produced by
17850 the function-to-pointer standard conversion
17851 (_conv.func_) is used in place of A for type deduction;
17852 otherwise,
17853
17854 --If A is a cv-qualified type, the top level
17855 cv-qualifiers of A's type are ignored for type
17856 deduction. */
17857 if (TREE_CODE (*arg) == ARRAY_TYPE)
17858 *arg = build_pointer_type (TREE_TYPE (*arg));
17859 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17860 *arg = build_pointer_type (*arg);
17861 else
17862 *arg = TYPE_MAIN_VARIANT (*arg);
17863 }
17864
17865 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17866 of the form T&&, where T is a template parameter, and the argument
17867 is an lvalue, T is deduced as A& */
17868 if (TREE_CODE (*parm) == REFERENCE_TYPE
17869 && TYPE_REF_IS_RVALUE (*parm)
17870 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17871 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17872 && (arg_expr ? real_lvalue_p (arg_expr)
17873 /* try_one_overload doesn't provide an arg_expr, but
17874 functions are always lvalues. */
17875 : TREE_CODE (*arg) == FUNCTION_TYPE))
17876 *arg = build_reference_type (*arg);
17877
17878 /* [temp.deduct.call]
17879
17880 If P is a cv-qualified type, the top level cv-qualifiers
17881 of P's type are ignored for type deduction. If P is a
17882 reference type, the type referred to by P is used for
17883 type deduction. */
17884 *parm = TYPE_MAIN_VARIANT (*parm);
17885 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17886 {
17887 *parm = TREE_TYPE (*parm);
17888 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17889 }
17890
17891 /* DR 322. For conversion deduction, remove a reference type on parm
17892 too (which has been swapped into ARG). */
17893 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17894 *arg = TREE_TYPE (*arg);
17895
17896 return result;
17897 }
17898
17899 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17900 template which does contain any deducible template parameters; check if
17901 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17902 unify_one_argument. */
17903
17904 static int
17905 check_non_deducible_conversion (tree parm, tree arg, int strict,
17906 int flags, bool explain_p)
17907 {
17908 tree type;
17909
17910 if (!TYPE_P (arg))
17911 type = TREE_TYPE (arg);
17912 else
17913 type = arg;
17914
17915 if (same_type_p (parm, type))
17916 return unify_success (explain_p);
17917
17918 if (strict == DEDUCE_CONV)
17919 {
17920 if (can_convert_arg (type, parm, NULL_TREE, flags,
17921 explain_p ? tf_warning_or_error : tf_none))
17922 return unify_success (explain_p);
17923 }
17924 else if (strict != DEDUCE_EXACT)
17925 {
17926 if (can_convert_arg (parm, type,
17927 TYPE_P (arg) ? NULL_TREE : arg,
17928 flags, explain_p ? tf_warning_or_error : tf_none))
17929 return unify_success (explain_p);
17930 }
17931
17932 if (strict == DEDUCE_EXACT)
17933 return unify_type_mismatch (explain_p, parm, arg);
17934 else
17935 return unify_arg_conversion (explain_p, parm, type, arg);
17936 }
17937
17938 static bool uses_deducible_template_parms (tree type);
17939
17940 /* Returns true iff the expression EXPR is one from which a template
17941 argument can be deduced. In other words, if it's an undecorated
17942 use of a template non-type parameter. */
17943
17944 static bool
17945 deducible_expression (tree expr)
17946 {
17947 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
17948 }
17949
17950 /* Returns true iff the array domain DOMAIN uses a template parameter in a
17951 deducible way; that is, if it has a max value of <PARM> - 1. */
17952
17953 static bool
17954 deducible_array_bound (tree domain)
17955 {
17956 if (domain == NULL_TREE)
17957 return false;
17958
17959 tree max = TYPE_MAX_VALUE (domain);
17960 if (TREE_CODE (max) != MINUS_EXPR)
17961 return false;
17962
17963 return deducible_expression (TREE_OPERAND (max, 0));
17964 }
17965
17966 /* Returns true iff the template arguments ARGS use a template parameter
17967 in a deducible way. */
17968
17969 static bool
17970 deducible_template_args (tree args)
17971 {
17972 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
17973 {
17974 bool deducible;
17975 tree elt = TREE_VEC_ELT (args, i);
17976 if (ARGUMENT_PACK_P (elt))
17977 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
17978 else
17979 {
17980 if (PACK_EXPANSION_P (elt))
17981 elt = PACK_EXPANSION_PATTERN (elt);
17982 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
17983 deducible = true;
17984 else if (TYPE_P (elt))
17985 deducible = uses_deducible_template_parms (elt);
17986 else
17987 deducible = deducible_expression (elt);
17988 }
17989 if (deducible)
17990 return true;
17991 }
17992 return false;
17993 }
17994
17995 /* Returns true iff TYPE contains any deducible references to template
17996 parameters, as per 14.8.2.5. */
17997
17998 static bool
17999 uses_deducible_template_parms (tree type)
18000 {
18001 if (PACK_EXPANSION_P (type))
18002 type = PACK_EXPANSION_PATTERN (type);
18003
18004 /* T
18005 cv-list T
18006 TT<T>
18007 TT<i>
18008 TT<> */
18009 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18010 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18011 return true;
18012
18013 /* T*
18014 T&
18015 T&& */
18016 if (POINTER_TYPE_P (type))
18017 return uses_deducible_template_parms (TREE_TYPE (type));
18018
18019 /* T[integer-constant ]
18020 type [i] */
18021 if (TREE_CODE (type) == ARRAY_TYPE)
18022 return (uses_deducible_template_parms (TREE_TYPE (type))
18023 || deducible_array_bound (TYPE_DOMAIN (type)));
18024
18025 /* T type ::*
18026 type T::*
18027 T T::*
18028 T (type ::*)()
18029 type (T::*)()
18030 type (type ::*)(T)
18031 type (T::*)(T)
18032 T (type ::*)(T)
18033 T (T::*)()
18034 T (T::*)(T) */
18035 if (TYPE_PTRMEM_P (type))
18036 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18037 || (uses_deducible_template_parms
18038 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18039
18040 /* template-name <T> (where template-name refers to a class template)
18041 template-name <i> (where template-name refers to a class template) */
18042 if (CLASS_TYPE_P (type)
18043 && CLASSTYPE_TEMPLATE_INFO (type)
18044 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18045 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18046 (CLASSTYPE_TI_ARGS (type)));
18047
18048 /* type (T)
18049 T()
18050 T(T) */
18051 if (TREE_CODE (type) == FUNCTION_TYPE
18052 || TREE_CODE (type) == METHOD_TYPE)
18053 {
18054 if (uses_deducible_template_parms (TREE_TYPE (type)))
18055 return true;
18056 tree parm = TYPE_ARG_TYPES (type);
18057 if (TREE_CODE (type) == METHOD_TYPE)
18058 parm = TREE_CHAIN (parm);
18059 for (; parm; parm = TREE_CHAIN (parm))
18060 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18061 return true;
18062 }
18063
18064 return false;
18065 }
18066
18067 /* Subroutine of type_unification_real and unify_pack_expansion to
18068 handle unification of a single P/A pair. Parameters are as
18069 for those functions. */
18070
18071 static int
18072 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18073 int subr, unification_kind_t strict,
18074 bool explain_p)
18075 {
18076 tree arg_expr = NULL_TREE;
18077 int arg_strict;
18078
18079 if (arg == error_mark_node || parm == error_mark_node)
18080 return unify_invalid (explain_p);
18081 if (arg == unknown_type_node)
18082 /* We can't deduce anything from this, but we might get all the
18083 template args from other function args. */
18084 return unify_success (explain_p);
18085
18086 /* Implicit conversions (Clause 4) will be performed on a function
18087 argument to convert it to the type of the corresponding function
18088 parameter if the parameter type contains no template-parameters that
18089 participate in template argument deduction. */
18090 if (strict != DEDUCE_EXACT
18091 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18092 /* For function parameters with no deducible template parameters,
18093 just return. We'll check non-dependent conversions later. */
18094 return unify_success (explain_p);
18095
18096 switch (strict)
18097 {
18098 case DEDUCE_CALL:
18099 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18100 | UNIFY_ALLOW_MORE_CV_QUAL
18101 | UNIFY_ALLOW_DERIVED);
18102 break;
18103
18104 case DEDUCE_CONV:
18105 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18106 break;
18107
18108 case DEDUCE_EXACT:
18109 arg_strict = UNIFY_ALLOW_NONE;
18110 break;
18111
18112 default:
18113 gcc_unreachable ();
18114 }
18115
18116 /* We only do these transformations if this is the top-level
18117 parameter_type_list in a call or declaration matching; in other
18118 situations (nested function declarators, template argument lists) we
18119 won't be comparing a type to an expression, and we don't do any type
18120 adjustments. */
18121 if (!subr)
18122 {
18123 if (!TYPE_P (arg))
18124 {
18125 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18126 if (type_unknown_p (arg))
18127 {
18128 /* [temp.deduct.type] A template-argument can be
18129 deduced from a pointer to function or pointer
18130 to member function argument if the set of
18131 overloaded functions does not contain function
18132 templates and at most one of a set of
18133 overloaded functions provides a unique
18134 match. */
18135
18136 if (resolve_overloaded_unification
18137 (tparms, targs, parm, arg, strict,
18138 arg_strict, explain_p))
18139 return unify_success (explain_p);
18140 return unify_overload_resolution_failure (explain_p, arg);
18141 }
18142
18143 arg_expr = arg;
18144 arg = unlowered_expr_type (arg);
18145 if (arg == error_mark_node)
18146 return unify_invalid (explain_p);
18147 }
18148
18149 arg_strict |=
18150 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18151 }
18152 else
18153 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18154 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18155 return unify_template_argument_mismatch (explain_p, parm, arg);
18156
18157 /* For deduction from an init-list we need the actual list. */
18158 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18159 arg = arg_expr;
18160 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18161 }
18162
18163 /* Most parms like fn_type_unification.
18164
18165 If SUBR is 1, we're being called recursively (to unify the
18166 arguments of a function or method parameter of a function
18167 template).
18168
18169 CHECKS is a pointer to a vector of access checks encountered while
18170 substituting default template arguments. */
18171
18172 static int
18173 type_unification_real (tree tparms,
18174 tree targs,
18175 tree xparms,
18176 const tree *xargs,
18177 unsigned int xnargs,
18178 int subr,
18179 unification_kind_t strict,
18180 int flags,
18181 vec<deferred_access_check, va_gc> **checks,
18182 bool explain_p)
18183 {
18184 tree parm, arg;
18185 int i;
18186 int ntparms = TREE_VEC_LENGTH (tparms);
18187 int saw_undeduced = 0;
18188 tree parms;
18189 const tree *args;
18190 unsigned int nargs;
18191 unsigned int ia;
18192
18193 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18194 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18195 gcc_assert (ntparms > 0);
18196
18197 /* Reset the number of non-defaulted template arguments contained
18198 in TARGS. */
18199 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18200
18201 again:
18202 parms = xparms;
18203 args = xargs;
18204 nargs = xnargs;
18205
18206 ia = 0;
18207 while (parms && parms != void_list_node
18208 && ia < nargs)
18209 {
18210 parm = TREE_VALUE (parms);
18211
18212 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18213 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18214 /* For a function parameter pack that occurs at the end of the
18215 parameter-declaration-list, the type A of each remaining
18216 argument of the call is compared with the type P of the
18217 declarator-id of the function parameter pack. */
18218 break;
18219
18220 parms = TREE_CHAIN (parms);
18221
18222 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18223 /* For a function parameter pack that does not occur at the
18224 end of the parameter-declaration-list, the type of the
18225 parameter pack is a non-deduced context. */
18226 continue;
18227
18228 arg = args[ia];
18229 ++ia;
18230
18231 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18232 explain_p))
18233 return 1;
18234 }
18235
18236 if (parms
18237 && parms != void_list_node
18238 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18239 {
18240 /* Unify the remaining arguments with the pack expansion type. */
18241 tree argvec;
18242 tree parmvec = make_tree_vec (1);
18243
18244 /* Allocate a TREE_VEC and copy in all of the arguments */
18245 argvec = make_tree_vec (nargs - ia);
18246 for (i = 0; ia < nargs; ++ia, ++i)
18247 TREE_VEC_ELT (argvec, i) = args[ia];
18248
18249 /* Copy the parameter into parmvec. */
18250 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18251 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18252 /*subr=*/subr, explain_p))
18253 return 1;
18254
18255 /* Advance to the end of the list of parameters. */
18256 parms = TREE_CHAIN (parms);
18257 }
18258
18259 /* Fail if we've reached the end of the parm list, and more args
18260 are present, and the parm list isn't variadic. */
18261 if (ia < nargs && parms == void_list_node)
18262 return unify_too_many_arguments (explain_p, nargs, ia);
18263 /* Fail if parms are left and they don't have default values and
18264 they aren't all deduced as empty packs (c++/57397). This is
18265 consistent with sufficient_parms_p. */
18266 if (parms && parms != void_list_node
18267 && TREE_PURPOSE (parms) == NULL_TREE)
18268 {
18269 unsigned int count = nargs;
18270 tree p = parms;
18271 bool type_pack_p;
18272 do
18273 {
18274 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18275 if (!type_pack_p)
18276 count++;
18277 p = TREE_CHAIN (p);
18278 }
18279 while (p && p != void_list_node);
18280 if (count != nargs)
18281 return unify_too_few_arguments (explain_p, ia, count,
18282 type_pack_p);
18283 }
18284
18285 if (!subr)
18286 {
18287 tsubst_flags_t complain = (explain_p
18288 ? tf_warning_or_error
18289 : tf_none);
18290
18291 for (i = 0; i < ntparms; i++)
18292 {
18293 tree targ = TREE_VEC_ELT (targs, i);
18294 tree tparm = TREE_VEC_ELT (tparms, i);
18295
18296 /* Clear the "incomplete" flags on all argument packs now so that
18297 substituting them into later default arguments works. */
18298 if (targ && ARGUMENT_PACK_P (targ))
18299 {
18300 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18301 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18302 }
18303
18304 if (targ || tparm == error_mark_node)
18305 continue;
18306 tparm = TREE_VALUE (tparm);
18307
18308 /* If this is an undeduced nontype parameter that depends on
18309 a type parameter, try another pass; its type may have been
18310 deduced from a later argument than the one from which
18311 this parameter can be deduced. */
18312 if (TREE_CODE (tparm) == PARM_DECL
18313 && uses_template_parms (TREE_TYPE (tparm))
18314 && saw_undeduced < 2)
18315 {
18316 saw_undeduced = 1;
18317 continue;
18318 }
18319
18320 /* Core issue #226 (C++0x) [temp.deduct]:
18321
18322 If a template argument has not been deduced, its
18323 default template argument, if any, is used.
18324
18325 When we are in C++98 mode, TREE_PURPOSE will either
18326 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18327 to explicitly check cxx_dialect here. */
18328 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18329 /* OK, there is a default argument. Wait until after the
18330 conversion check to do substitution. */
18331 continue;
18332
18333 /* If the type parameter is a parameter pack, then it will
18334 be deduced to an empty parameter pack. */
18335 if (template_parameter_pack_p (tparm))
18336 {
18337 tree arg;
18338
18339 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18340 {
18341 arg = make_node (NONTYPE_ARGUMENT_PACK);
18342 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18343 TREE_CONSTANT (arg) = 1;
18344 }
18345 else
18346 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18347
18348 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18349
18350 TREE_VEC_ELT (targs, i) = arg;
18351 continue;
18352 }
18353
18354 return unify_parameter_deduction_failure (explain_p, tparm);
18355 }
18356
18357 /* DR 1391: All parameters have args, now check non-dependent parms for
18358 convertibility. */
18359 if (saw_undeduced < 2)
18360 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18361 parms && parms != void_list_node && ia < nargs; )
18362 {
18363 parm = TREE_VALUE (parms);
18364
18365 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18366 && (!TREE_CHAIN (parms)
18367 || TREE_CHAIN (parms) == void_list_node))
18368 /* For a function parameter pack that occurs at the end of the
18369 parameter-declaration-list, the type A of each remaining
18370 argument of the call is compared with the type P of the
18371 declarator-id of the function parameter pack. */
18372 break;
18373
18374 parms = TREE_CHAIN (parms);
18375
18376 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18377 /* For a function parameter pack that does not occur at the
18378 end of the parameter-declaration-list, the type of the
18379 parameter pack is a non-deduced context. */
18380 continue;
18381
18382 arg = args[ia];
18383 ++ia;
18384
18385 if (uses_template_parms (parm))
18386 continue;
18387 if (check_non_deducible_conversion (parm, arg, strict, flags,
18388 explain_p))
18389 return 1;
18390 }
18391
18392 /* Now substitute into the default template arguments. */
18393 for (i = 0; i < ntparms; i++)
18394 {
18395 tree targ = TREE_VEC_ELT (targs, i);
18396 tree tparm = TREE_VEC_ELT (tparms, i);
18397
18398 if (targ || tparm == error_mark_node)
18399 continue;
18400 tree parm = TREE_VALUE (tparm);
18401
18402 if (TREE_CODE (parm) == PARM_DECL
18403 && uses_template_parms (TREE_TYPE (parm))
18404 && saw_undeduced < 2)
18405 continue;
18406
18407 tree arg = TREE_PURPOSE (tparm);
18408 reopen_deferring_access_checks (*checks);
18409 location_t save_loc = input_location;
18410 if (DECL_P (parm))
18411 input_location = DECL_SOURCE_LOCATION (parm);
18412 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18413 arg = convert_template_argument (parm, arg, targs, complain,
18414 i, NULL_TREE);
18415 input_location = save_loc;
18416 *checks = get_deferred_access_checks ();
18417 pop_deferring_access_checks ();
18418 if (arg == error_mark_node)
18419 return 1;
18420 else
18421 {
18422 TREE_VEC_ELT (targs, i) = arg;
18423 /* The position of the first default template argument,
18424 is also the number of non-defaulted arguments in TARGS.
18425 Record that. */
18426 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18427 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18428 continue;
18429 }
18430 }
18431
18432 if (saw_undeduced++ == 1)
18433 goto again;
18434 }
18435
18436 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18437 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18438
18439 return unify_success (explain_p);
18440 }
18441
18442 /* Subroutine of type_unification_real. Args are like the variables
18443 at the call site. ARG is an overloaded function (or template-id);
18444 we try deducing template args from each of the overloads, and if
18445 only one succeeds, we go with that. Modifies TARGS and returns
18446 true on success. */
18447
18448 static bool
18449 resolve_overloaded_unification (tree tparms,
18450 tree targs,
18451 tree parm,
18452 tree arg,
18453 unification_kind_t strict,
18454 int sub_strict,
18455 bool explain_p)
18456 {
18457 tree tempargs = copy_node (targs);
18458 int good = 0;
18459 tree goodfn = NULL_TREE;
18460 bool addr_p;
18461
18462 if (TREE_CODE (arg) == ADDR_EXPR)
18463 {
18464 arg = TREE_OPERAND (arg, 0);
18465 addr_p = true;
18466 }
18467 else
18468 addr_p = false;
18469
18470 if (TREE_CODE (arg) == COMPONENT_REF)
18471 /* Handle `&x' where `x' is some static or non-static member
18472 function name. */
18473 arg = TREE_OPERAND (arg, 1);
18474
18475 if (TREE_CODE (arg) == OFFSET_REF)
18476 arg = TREE_OPERAND (arg, 1);
18477
18478 /* Strip baselink information. */
18479 if (BASELINK_P (arg))
18480 arg = BASELINK_FUNCTIONS (arg);
18481
18482 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18483 {
18484 /* If we got some explicit template args, we need to plug them into
18485 the affected templates before we try to unify, in case the
18486 explicit args will completely resolve the templates in question. */
18487
18488 int ok = 0;
18489 tree expl_subargs = TREE_OPERAND (arg, 1);
18490 arg = TREE_OPERAND (arg, 0);
18491
18492 for (; arg; arg = OVL_NEXT (arg))
18493 {
18494 tree fn = OVL_CURRENT (arg);
18495 tree subargs, elem;
18496
18497 if (TREE_CODE (fn) != TEMPLATE_DECL)
18498 continue;
18499
18500 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18501 expl_subargs, NULL_TREE, tf_none,
18502 /*require_all_args=*/true,
18503 /*use_default_args=*/true);
18504 if (subargs != error_mark_node
18505 && !any_dependent_template_arguments_p (subargs))
18506 {
18507 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18508 if (try_one_overload (tparms, targs, tempargs, parm,
18509 elem, strict, sub_strict, addr_p, explain_p)
18510 && (!goodfn || !same_type_p (goodfn, elem)))
18511 {
18512 goodfn = elem;
18513 ++good;
18514 }
18515 }
18516 else if (subargs)
18517 ++ok;
18518 }
18519 /* If no templates (or more than one) are fully resolved by the
18520 explicit arguments, this template-id is a non-deduced context; it
18521 could still be OK if we deduce all template arguments for the
18522 enclosing call through other arguments. */
18523 if (good != 1)
18524 good = ok;
18525 }
18526 else if (TREE_CODE (arg) != OVERLOAD
18527 && TREE_CODE (arg) != FUNCTION_DECL)
18528 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18529 -- but the deduction does not succeed because the expression is
18530 not just the function on its own. */
18531 return false;
18532 else
18533 for (; arg; arg = OVL_NEXT (arg))
18534 if (try_one_overload (tparms, targs, tempargs, parm,
18535 TREE_TYPE (OVL_CURRENT (arg)),
18536 strict, sub_strict, addr_p, explain_p)
18537 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18538 {
18539 goodfn = OVL_CURRENT (arg);
18540 ++good;
18541 }
18542
18543 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18544 to function or pointer to member function argument if the set of
18545 overloaded functions does not contain function templates and at most
18546 one of a set of overloaded functions provides a unique match.
18547
18548 So if we found multiple possibilities, we return success but don't
18549 deduce anything. */
18550
18551 if (good == 1)
18552 {
18553 int i = TREE_VEC_LENGTH (targs);
18554 for (; i--; )
18555 if (TREE_VEC_ELT (tempargs, i))
18556 {
18557 tree old = TREE_VEC_ELT (targs, i);
18558 tree new_ = TREE_VEC_ELT (tempargs, i);
18559 if (new_ && old && ARGUMENT_PACK_P (old)
18560 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18561 /* Don't forget explicit template arguments in a pack. */
18562 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18563 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18564 TREE_VEC_ELT (targs, i) = new_;
18565 }
18566 }
18567 if (good)
18568 return true;
18569
18570 return false;
18571 }
18572
18573 /* Core DR 115: In contexts where deduction is done and fails, or in
18574 contexts where deduction is not done, if a template argument list is
18575 specified and it, along with any default template arguments, identifies
18576 a single function template specialization, then the template-id is an
18577 lvalue for the function template specialization. */
18578
18579 tree
18580 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
18581 {
18582 tree expr, offset, baselink;
18583 bool addr;
18584
18585 if (!type_unknown_p (orig_expr))
18586 return orig_expr;
18587
18588 expr = orig_expr;
18589 addr = false;
18590 offset = NULL_TREE;
18591 baselink = NULL_TREE;
18592
18593 if (TREE_CODE (expr) == ADDR_EXPR)
18594 {
18595 expr = TREE_OPERAND (expr, 0);
18596 addr = true;
18597 }
18598 if (TREE_CODE (expr) == OFFSET_REF)
18599 {
18600 offset = expr;
18601 expr = TREE_OPERAND (expr, 1);
18602 }
18603 if (BASELINK_P (expr))
18604 {
18605 baselink = expr;
18606 expr = BASELINK_FUNCTIONS (expr);
18607 }
18608
18609 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18610 {
18611 int good = 0;
18612 tree goodfn = NULL_TREE;
18613
18614 /* If we got some explicit template args, we need to plug them into
18615 the affected templates before we try to unify, in case the
18616 explicit args will completely resolve the templates in question. */
18617
18618 tree expl_subargs = TREE_OPERAND (expr, 1);
18619 tree arg = TREE_OPERAND (expr, 0);
18620 tree badfn = NULL_TREE;
18621 tree badargs = NULL_TREE;
18622
18623 for (; arg; arg = OVL_NEXT (arg))
18624 {
18625 tree fn = OVL_CURRENT (arg);
18626 tree subargs, elem;
18627
18628 if (TREE_CODE (fn) != TEMPLATE_DECL)
18629 continue;
18630
18631 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18632 expl_subargs, NULL_TREE, tf_none,
18633 /*require_all_args=*/true,
18634 /*use_default_args=*/true);
18635 if (subargs != error_mark_node
18636 && !any_dependent_template_arguments_p (subargs))
18637 {
18638 elem = instantiate_template (fn, subargs, tf_none);
18639 if (elem == error_mark_node)
18640 {
18641 badfn = fn;
18642 badargs = subargs;
18643 }
18644 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18645 {
18646 goodfn = elem;
18647 ++good;
18648 }
18649 }
18650 }
18651 if (good == 1)
18652 {
18653 mark_used (goodfn);
18654 expr = goodfn;
18655 if (baselink)
18656 expr = build_baselink (BASELINK_BINFO (baselink),
18657 BASELINK_ACCESS_BINFO (baselink),
18658 expr, BASELINK_OPTYPE (baselink));
18659 if (offset)
18660 {
18661 tree base
18662 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18663 expr = build_offset_ref (base, expr, addr, complain);
18664 }
18665 if (addr)
18666 expr = cp_build_addr_expr (expr, complain);
18667 return expr;
18668 }
18669 else if (good == 0 && badargs && (complain & tf_error))
18670 /* There were no good options and at least one bad one, so let the
18671 user know what the problem is. */
18672 instantiate_template (badfn, badargs, complain);
18673 }
18674 return orig_expr;
18675 }
18676
18677 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18678 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18679 different overloads deduce different arguments for a given parm.
18680 ADDR_P is true if the expression for which deduction is being
18681 performed was of the form "& fn" rather than simply "fn".
18682
18683 Returns 1 on success. */
18684
18685 static int
18686 try_one_overload (tree tparms,
18687 tree orig_targs,
18688 tree targs,
18689 tree parm,
18690 tree arg,
18691 unification_kind_t strict,
18692 int sub_strict,
18693 bool addr_p,
18694 bool explain_p)
18695 {
18696 int nargs;
18697 tree tempargs;
18698 int i;
18699
18700 if (arg == error_mark_node)
18701 return 0;
18702
18703 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18704 to function or pointer to member function argument if the set of
18705 overloaded functions does not contain function templates and at most
18706 one of a set of overloaded functions provides a unique match.
18707
18708 So if this is a template, just return success. */
18709
18710 if (uses_template_parms (arg))
18711 return 1;
18712
18713 if (TREE_CODE (arg) == METHOD_TYPE)
18714 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18715 else if (addr_p)
18716 arg = build_pointer_type (arg);
18717
18718 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18719
18720 /* We don't copy orig_targs for this because if we have already deduced
18721 some template args from previous args, unify would complain when we
18722 try to deduce a template parameter for the same argument, even though
18723 there isn't really a conflict. */
18724 nargs = TREE_VEC_LENGTH (targs);
18725 tempargs = make_tree_vec (nargs);
18726
18727 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18728 return 0;
18729
18730 /* First make sure we didn't deduce anything that conflicts with
18731 explicitly specified args. */
18732 for (i = nargs; i--; )
18733 {
18734 tree elt = TREE_VEC_ELT (tempargs, i);
18735 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18736
18737 if (!elt)
18738 /*NOP*/;
18739 else if (uses_template_parms (elt))
18740 /* Since we're unifying against ourselves, we will fill in
18741 template args used in the function parm list with our own
18742 template parms. Discard them. */
18743 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18744 else if (oldelt && ARGUMENT_PACK_P (oldelt))
18745 {
18746 /* Check that the argument at each index of the deduced argument pack
18747 is equivalent to the corresponding explicitly specified argument.
18748 We may have deduced more arguments than were explicitly specified,
18749 and that's OK. */
18750 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt));
18751 gcc_assert (ARGUMENT_PACK_ARGS (oldelt)
18752 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt));
18753
18754 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
18755 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
18756
18757 if (TREE_VEC_LENGTH (deduced_pack)
18758 < TREE_VEC_LENGTH (explicit_pack))
18759 return 0;
18760
18761 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
18762 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
18763 TREE_VEC_ELT (deduced_pack, j)))
18764 return 0;
18765 }
18766 else if (oldelt && !template_args_equal (oldelt, elt))
18767 return 0;
18768 }
18769
18770 for (i = nargs; i--; )
18771 {
18772 tree elt = TREE_VEC_ELT (tempargs, i);
18773
18774 if (elt)
18775 TREE_VEC_ELT (targs, i) = elt;
18776 }
18777
18778 return 1;
18779 }
18780
18781 /* PARM is a template class (perhaps with unbound template
18782 parameters). ARG is a fully instantiated type. If ARG can be
18783 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18784 TARGS are as for unify. */
18785
18786 static tree
18787 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18788 bool explain_p)
18789 {
18790 tree copy_of_targs;
18791
18792 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18793 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18794 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18795 return NULL_TREE;
18796
18797 /* We need to make a new template argument vector for the call to
18798 unify. If we used TARGS, we'd clutter it up with the result of
18799 the attempted unification, even if this class didn't work out.
18800 We also don't want to commit ourselves to all the unifications
18801 we've already done, since unification is supposed to be done on
18802 an argument-by-argument basis. In other words, consider the
18803 following pathological case:
18804
18805 template <int I, int J, int K>
18806 struct S {};
18807
18808 template <int I, int J>
18809 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18810
18811 template <int I, int J, int K>
18812 void f(S<I, J, K>, S<I, I, I>);
18813
18814 void g() {
18815 S<0, 0, 0> s0;
18816 S<0, 1, 2> s2;
18817
18818 f(s0, s2);
18819 }
18820
18821 Now, by the time we consider the unification involving `s2', we
18822 already know that we must have `f<0, 0, 0>'. But, even though
18823 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18824 because there are two ways to unify base classes of S<0, 1, 2>
18825 with S<I, I, I>. If we kept the already deduced knowledge, we
18826 would reject the possibility I=1. */
18827 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18828
18829 /* If unification failed, we're done. */
18830 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18831 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18832 return NULL_TREE;
18833
18834 return arg;
18835 }
18836
18837 /* Given a template type PARM and a class type ARG, find the unique
18838 base type in ARG that is an instance of PARM. We do not examine
18839 ARG itself; only its base-classes. If there is not exactly one
18840 appropriate base class, return NULL_TREE. PARM may be the type of
18841 a partial specialization, as well as a plain template type. Used
18842 by unify. */
18843
18844 static enum template_base_result
18845 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18846 bool explain_p, tree *result)
18847 {
18848 tree rval = NULL_TREE;
18849 tree binfo;
18850
18851 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18852
18853 binfo = TYPE_BINFO (complete_type (arg));
18854 if (!binfo)
18855 {
18856 /* The type could not be completed. */
18857 *result = NULL_TREE;
18858 return tbr_incomplete_type;
18859 }
18860
18861 /* Walk in inheritance graph order. The search order is not
18862 important, and this avoids multiple walks of virtual bases. */
18863 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18864 {
18865 tree r = try_class_unification (tparms, targs, parm,
18866 BINFO_TYPE (binfo), explain_p);
18867
18868 if (r)
18869 {
18870 /* If there is more than one satisfactory baseclass, then:
18871
18872 [temp.deduct.call]
18873
18874 If they yield more than one possible deduced A, the type
18875 deduction fails.
18876
18877 applies. */
18878 if (rval && !same_type_p (r, rval))
18879 {
18880 *result = NULL_TREE;
18881 return tbr_ambiguous_baseclass;
18882 }
18883
18884 rval = r;
18885 }
18886 }
18887
18888 *result = rval;
18889 return tbr_success;
18890 }
18891
18892 /* Returns the level of DECL, which declares a template parameter. */
18893
18894 static int
18895 template_decl_level (tree decl)
18896 {
18897 switch (TREE_CODE (decl))
18898 {
18899 case TYPE_DECL:
18900 case TEMPLATE_DECL:
18901 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18902
18903 case PARM_DECL:
18904 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18905
18906 default:
18907 gcc_unreachable ();
18908 }
18909 return 0;
18910 }
18911
18912 /* Decide whether ARG can be unified with PARM, considering only the
18913 cv-qualifiers of each type, given STRICT as documented for unify.
18914 Returns nonzero iff the unification is OK on that basis. */
18915
18916 static int
18917 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18918 {
18919 int arg_quals = cp_type_quals (arg);
18920 int parm_quals = cp_type_quals (parm);
18921
18922 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18923 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18924 {
18925 /* Although a CVR qualifier is ignored when being applied to a
18926 substituted template parameter ([8.3.2]/1 for example), that
18927 does not allow us to unify "const T" with "int&" because both
18928 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
18929 It is ok when we're allowing additional CV qualifiers
18930 at the outer level [14.8.2.1]/3,1st bullet. */
18931 if ((TREE_CODE (arg) == REFERENCE_TYPE
18932 || TREE_CODE (arg) == FUNCTION_TYPE
18933 || TREE_CODE (arg) == METHOD_TYPE)
18934 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
18935 return 0;
18936
18937 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
18938 && (parm_quals & TYPE_QUAL_RESTRICT))
18939 return 0;
18940 }
18941
18942 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18943 && (arg_quals & parm_quals) != parm_quals)
18944 return 0;
18945
18946 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
18947 && (parm_quals & arg_quals) != arg_quals)
18948 return 0;
18949
18950 return 1;
18951 }
18952
18953 /* Determines the LEVEL and INDEX for the template parameter PARM. */
18954 void
18955 template_parm_level_and_index (tree parm, int* level, int* index)
18956 {
18957 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18958 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18959 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18960 {
18961 *index = TEMPLATE_TYPE_IDX (parm);
18962 *level = TEMPLATE_TYPE_LEVEL (parm);
18963 }
18964 else
18965 {
18966 *index = TEMPLATE_PARM_IDX (parm);
18967 *level = TEMPLATE_PARM_LEVEL (parm);
18968 }
18969 }
18970
18971 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
18972 do { \
18973 if (unify (TP, TA, P, A, S, EP)) \
18974 return 1; \
18975 } while (0);
18976
18977 /* Unifies the remaining arguments in PACKED_ARGS with the pack
18978 expansion at the end of PACKED_PARMS. Returns 0 if the type
18979 deduction succeeds, 1 otherwise. STRICT is the same as in
18980 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
18981 call argument list. We'll need to adjust the arguments to make them
18982 types. SUBR tells us if this is from a recursive call to
18983 type_unification_real, or for comparing two template argument
18984 lists. */
18985
18986 static int
18987 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
18988 tree packed_args, unification_kind_t strict,
18989 bool subr, bool explain_p)
18990 {
18991 tree parm
18992 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
18993 tree pattern = PACK_EXPANSION_PATTERN (parm);
18994 tree pack, packs = NULL_TREE;
18995 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
18996
18997 packed_args = expand_template_argument_pack (packed_args);
18998
18999 int len = TREE_VEC_LENGTH (packed_args);
19000
19001 /* Determine the parameter packs we will be deducing from the
19002 pattern, and record their current deductions. */
19003 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19004 pack; pack = TREE_CHAIN (pack))
19005 {
19006 tree parm_pack = TREE_VALUE (pack);
19007 int idx, level;
19008
19009 /* Determine the index and level of this parameter pack. */
19010 template_parm_level_and_index (parm_pack, &level, &idx);
19011
19012 /* Keep track of the parameter packs and their corresponding
19013 argument packs. */
19014 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19015 TREE_TYPE (packs) = make_tree_vec (len - start);
19016 }
19017
19018 /* Loop through all of the arguments that have not yet been
19019 unified and unify each with the pattern. */
19020 for (i = start; i < len; i++)
19021 {
19022 tree parm;
19023 bool any_explicit = false;
19024 tree arg = TREE_VEC_ELT (packed_args, i);
19025
19026 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19027 or the element of its argument pack at the current index if
19028 this argument was explicitly specified. */
19029 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19030 {
19031 int idx, level;
19032 tree arg, pargs;
19033 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19034
19035 arg = NULL_TREE;
19036 if (TREE_VALUE (pack)
19037 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19038 && (i - start < TREE_VEC_LENGTH (pargs)))
19039 {
19040 any_explicit = true;
19041 arg = TREE_VEC_ELT (pargs, i - start);
19042 }
19043 TMPL_ARG (targs, level, idx) = arg;
19044 }
19045
19046 /* If we had explicit template arguments, substitute them into the
19047 pattern before deduction. */
19048 if (any_explicit)
19049 {
19050 /* Some arguments might still be unspecified or dependent. */
19051 bool dependent;
19052 ++processing_template_decl;
19053 dependent = any_dependent_template_arguments_p (targs);
19054 if (!dependent)
19055 --processing_template_decl;
19056 parm = tsubst (pattern, targs,
19057 explain_p ? tf_warning_or_error : tf_none,
19058 NULL_TREE);
19059 if (dependent)
19060 --processing_template_decl;
19061 if (parm == error_mark_node)
19062 return 1;
19063 }
19064 else
19065 parm = pattern;
19066
19067 /* Unify the pattern with the current argument. */
19068 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19069 explain_p))
19070 return 1;
19071
19072 /* For each parameter pack, collect the deduced value. */
19073 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19074 {
19075 int idx, level;
19076 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19077
19078 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19079 TMPL_ARG (targs, level, idx);
19080 }
19081 }
19082
19083 /* Verify that the results of unification with the parameter packs
19084 produce results consistent with what we've seen before, and make
19085 the deduced argument packs available. */
19086 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19087 {
19088 tree old_pack = TREE_VALUE (pack);
19089 tree new_args = TREE_TYPE (pack);
19090 int i, len = TREE_VEC_LENGTH (new_args);
19091 int idx, level;
19092 bool nondeduced_p = false;
19093
19094 /* By default keep the original deduced argument pack.
19095 If necessary, more specific code is going to update the
19096 resulting deduced argument later down in this function. */
19097 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19098 TMPL_ARG (targs, level, idx) = old_pack;
19099
19100 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19101 actually deduce anything. */
19102 for (i = 0; i < len && !nondeduced_p; ++i)
19103 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19104 nondeduced_p = true;
19105 if (nondeduced_p)
19106 continue;
19107
19108 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19109 {
19110 /* If we had fewer function args than explicit template args,
19111 just use the explicits. */
19112 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19113 int explicit_len = TREE_VEC_LENGTH (explicit_args);
19114 if (len < explicit_len)
19115 new_args = explicit_args;
19116 }
19117
19118 if (!old_pack)
19119 {
19120 tree result;
19121 /* Build the deduced *_ARGUMENT_PACK. */
19122 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
19123 {
19124 result = make_node (NONTYPE_ARGUMENT_PACK);
19125 TREE_TYPE (result) =
19126 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
19127 TREE_CONSTANT (result) = 1;
19128 }
19129 else
19130 result = cxx_make_type (TYPE_ARGUMENT_PACK);
19131
19132 SET_ARGUMENT_PACK_ARGS (result, new_args);
19133
19134 /* Note the deduced argument packs for this parameter
19135 pack. */
19136 TMPL_ARG (targs, level, idx) = result;
19137 }
19138 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
19139 && (ARGUMENT_PACK_ARGS (old_pack)
19140 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
19141 {
19142 /* We only had the explicitly-provided arguments before, but
19143 now we have a complete set of arguments. */
19144 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19145
19146 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
19147 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
19148 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
19149 }
19150 else
19151 {
19152 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
19153 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
19154
19155 if (!comp_template_args (old_args, new_args,
19156 &bad_old_arg, &bad_new_arg))
19157 /* Inconsistent unification of this parameter pack. */
19158 return unify_parameter_pack_inconsistent (explain_p,
19159 bad_old_arg,
19160 bad_new_arg);
19161 }
19162 }
19163
19164 return unify_success (explain_p);
19165 }
19166
19167 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19168 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19169 parameters and return value are as for unify. */
19170
19171 static int
19172 unify_array_domain (tree tparms, tree targs,
19173 tree parm_dom, tree arg_dom,
19174 bool explain_p)
19175 {
19176 tree parm_max;
19177 tree arg_max;
19178 bool parm_cst;
19179 bool arg_cst;
19180
19181 /* Our representation of array types uses "N - 1" as the
19182 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19183 not an integer constant. We cannot unify arbitrarily
19184 complex expressions, so we eliminate the MINUS_EXPRs
19185 here. */
19186 parm_max = TYPE_MAX_VALUE (parm_dom);
19187 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19188 if (!parm_cst)
19189 {
19190 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19191 parm_max = TREE_OPERAND (parm_max, 0);
19192 }
19193 arg_max = TYPE_MAX_VALUE (arg_dom);
19194 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19195 if (!arg_cst)
19196 {
19197 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19198 trying to unify the type of a variable with the type
19199 of a template parameter. For example:
19200
19201 template <unsigned int N>
19202 void f (char (&) [N]);
19203 int g();
19204 void h(int i) {
19205 char a[g(i)];
19206 f(a);
19207 }
19208
19209 Here, the type of the ARG will be "int [g(i)]", and
19210 may be a SAVE_EXPR, etc. */
19211 if (TREE_CODE (arg_max) != MINUS_EXPR)
19212 return unify_vla_arg (explain_p, arg_dom);
19213 arg_max = TREE_OPERAND (arg_max, 0);
19214 }
19215
19216 /* If only one of the bounds used a MINUS_EXPR, compensate
19217 by adding one to the other bound. */
19218 if (parm_cst && !arg_cst)
19219 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19220 integer_type_node,
19221 parm_max,
19222 integer_one_node);
19223 else if (arg_cst && !parm_cst)
19224 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19225 integer_type_node,
19226 arg_max,
19227 integer_one_node);
19228
19229 return unify (tparms, targs, parm_max, arg_max,
19230 UNIFY_ALLOW_INTEGER, explain_p);
19231 }
19232
19233 /* Deduce the value of template parameters. TPARMS is the (innermost)
19234 set of template parameters to a template. TARGS is the bindings
19235 for those template parameters, as determined thus far; TARGS may
19236 include template arguments for outer levels of template parameters
19237 as well. PARM is a parameter to a template function, or a
19238 subcomponent of that parameter; ARG is the corresponding argument.
19239 This function attempts to match PARM with ARG in a manner
19240 consistent with the existing assignments in TARGS. If more values
19241 are deduced, then TARGS is updated.
19242
19243 Returns 0 if the type deduction succeeds, 1 otherwise. The
19244 parameter STRICT is a bitwise or of the following flags:
19245
19246 UNIFY_ALLOW_NONE:
19247 Require an exact match between PARM and ARG.
19248 UNIFY_ALLOW_MORE_CV_QUAL:
19249 Allow the deduced ARG to be more cv-qualified (by qualification
19250 conversion) than ARG.
19251 UNIFY_ALLOW_LESS_CV_QUAL:
19252 Allow the deduced ARG to be less cv-qualified than ARG.
19253 UNIFY_ALLOW_DERIVED:
19254 Allow the deduced ARG to be a template base class of ARG,
19255 or a pointer to a template base class of the type pointed to by
19256 ARG.
19257 UNIFY_ALLOW_INTEGER:
19258 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19259 case for more information.
19260 UNIFY_ALLOW_OUTER_LEVEL:
19261 This is the outermost level of a deduction. Used to determine validity
19262 of qualification conversions. A valid qualification conversion must
19263 have const qualified pointers leading up to the inner type which
19264 requires additional CV quals, except at the outer level, where const
19265 is not required [conv.qual]. It would be normal to set this flag in
19266 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19267 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19268 This is the outermost level of a deduction, and PARM can be more CV
19269 qualified at this point.
19270 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19271 This is the outermost level of a deduction, and PARM can be less CV
19272 qualified at this point. */
19273
19274 static int
19275 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19276 bool explain_p)
19277 {
19278 int idx;
19279 tree targ;
19280 tree tparm;
19281 int strict_in = strict;
19282
19283 /* I don't think this will do the right thing with respect to types.
19284 But the only case I've seen it in so far has been array bounds, where
19285 signedness is the only information lost, and I think that will be
19286 okay. */
19287 while (TREE_CODE (parm) == NOP_EXPR)
19288 parm = TREE_OPERAND (parm, 0);
19289
19290 if (arg == error_mark_node)
19291 return unify_invalid (explain_p);
19292 if (arg == unknown_type_node
19293 || arg == init_list_type_node)
19294 /* We can't deduce anything from this, but we might get all the
19295 template args from other function args. */
19296 return unify_success (explain_p);
19297
19298 /* If PARM uses template parameters, then we can't bail out here,
19299 even if ARG == PARM, since we won't record unifications for the
19300 template parameters. We might need them if we're trying to
19301 figure out which of two things is more specialized. */
19302 if (arg == parm && !uses_template_parms (parm))
19303 return unify_success (explain_p);
19304
19305 /* Handle init lists early, so the rest of the function can assume
19306 we're dealing with a type. */
19307 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19308 {
19309 tree elt, elttype;
19310 unsigned i;
19311 tree orig_parm = parm;
19312
19313 /* Replace T with std::initializer_list<T> for deduction. */
19314 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19315 && flag_deduce_init_list)
19316 parm = listify (parm);
19317
19318 if (!is_std_init_list (parm)
19319 && TREE_CODE (parm) != ARRAY_TYPE)
19320 /* We can only deduce from an initializer list argument if the
19321 parameter is std::initializer_list or an array; otherwise this
19322 is a non-deduced context. */
19323 return unify_success (explain_p);
19324
19325 if (TREE_CODE (parm) == ARRAY_TYPE)
19326 elttype = TREE_TYPE (parm);
19327 else
19328 {
19329 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19330 /* Deduction is defined in terms of a single type, so just punt
19331 on the (bizarre) std::initializer_list<T...>. */
19332 if (PACK_EXPANSION_P (elttype))
19333 return unify_success (explain_p);
19334 }
19335
19336 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19337 {
19338 int elt_strict = strict;
19339
19340 if (elt == error_mark_node)
19341 return unify_invalid (explain_p);
19342
19343 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19344 {
19345 tree type = TREE_TYPE (elt);
19346 if (type == error_mark_node)
19347 return unify_invalid (explain_p);
19348 /* It should only be possible to get here for a call. */
19349 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19350 elt_strict |= maybe_adjust_types_for_deduction
19351 (DEDUCE_CALL, &elttype, &type, elt);
19352 elt = type;
19353 }
19354
19355 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19356 explain_p);
19357 }
19358
19359 if (TREE_CODE (parm) == ARRAY_TYPE
19360 && deducible_array_bound (TYPE_DOMAIN (parm)))
19361 {
19362 /* Also deduce from the length of the initializer list. */
19363 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19364 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19365 if (idx == error_mark_node)
19366 return unify_invalid (explain_p);
19367 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19368 idx, explain_p);
19369 }
19370
19371 /* If the std::initializer_list<T> deduction worked, replace the
19372 deduced A with std::initializer_list<A>. */
19373 if (orig_parm != parm)
19374 {
19375 idx = TEMPLATE_TYPE_IDX (orig_parm);
19376 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19377 targ = listify (targ);
19378 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19379 }
19380 return unify_success (explain_p);
19381 }
19382
19383 /* Immediately reject some pairs that won't unify because of
19384 cv-qualification mismatches. */
19385 if (TREE_CODE (arg) == TREE_CODE (parm)
19386 && TYPE_P (arg)
19387 /* It is the elements of the array which hold the cv quals of an array
19388 type, and the elements might be template type parms. We'll check
19389 when we recurse. */
19390 && TREE_CODE (arg) != ARRAY_TYPE
19391 /* We check the cv-qualifiers when unifying with template type
19392 parameters below. We want to allow ARG `const T' to unify with
19393 PARM `T' for example, when computing which of two templates
19394 is more specialized, for example. */
19395 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19396 && !check_cv_quals_for_unify (strict_in, arg, parm))
19397 return unify_cv_qual_mismatch (explain_p, parm, arg);
19398
19399 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19400 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19401 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19402 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19403 strict &= ~UNIFY_ALLOW_DERIVED;
19404 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19405 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19406
19407 switch (TREE_CODE (parm))
19408 {
19409 case TYPENAME_TYPE:
19410 case SCOPE_REF:
19411 case UNBOUND_CLASS_TEMPLATE:
19412 /* In a type which contains a nested-name-specifier, template
19413 argument values cannot be deduced for template parameters used
19414 within the nested-name-specifier. */
19415 return unify_success (explain_p);
19416
19417 case TEMPLATE_TYPE_PARM:
19418 case TEMPLATE_TEMPLATE_PARM:
19419 case BOUND_TEMPLATE_TEMPLATE_PARM:
19420 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19421 if (error_operand_p (tparm))
19422 return unify_invalid (explain_p);
19423
19424 if (TEMPLATE_TYPE_LEVEL (parm)
19425 != template_decl_level (tparm))
19426 /* The PARM is not one we're trying to unify. Just check
19427 to see if it matches ARG. */
19428 {
19429 if (TREE_CODE (arg) == TREE_CODE (parm)
19430 && (is_auto (parm) ? is_auto (arg)
19431 : same_type_p (parm, arg)))
19432 return unify_success (explain_p);
19433 else
19434 return unify_type_mismatch (explain_p, parm, arg);
19435 }
19436 idx = TEMPLATE_TYPE_IDX (parm);
19437 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19438 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19439 if (error_operand_p (tparm))
19440 return unify_invalid (explain_p);
19441
19442 /* Check for mixed types and values. */
19443 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19444 && TREE_CODE (tparm) != TYPE_DECL)
19445 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19446 && TREE_CODE (tparm) != TEMPLATE_DECL))
19447 gcc_unreachable ();
19448
19449 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19450 {
19451 /* ARG must be constructed from a template class or a template
19452 template parameter. */
19453 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19454 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19455 return unify_template_deduction_failure (explain_p, parm, arg);
19456 {
19457 tree parmvec = TYPE_TI_ARGS (parm);
19458 /* An alias template name is never deduced. */
19459 if (TYPE_ALIAS_P (arg))
19460 arg = strip_typedefs (arg);
19461 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19462 tree full_argvec = add_to_template_args (targs, argvec);
19463 tree parm_parms
19464 = DECL_INNERMOST_TEMPLATE_PARMS
19465 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19466 int i, len;
19467 int parm_variadic_p = 0;
19468
19469 /* The resolution to DR150 makes clear that default
19470 arguments for an N-argument may not be used to bind T
19471 to a template template parameter with fewer than N
19472 parameters. It is not safe to permit the binding of
19473 default arguments as an extension, as that may change
19474 the meaning of a conforming program. Consider:
19475
19476 struct Dense { static const unsigned int dim = 1; };
19477
19478 template <template <typename> class View,
19479 typename Block>
19480 void operator+(float, View<Block> const&);
19481
19482 template <typename Block,
19483 unsigned int Dim = Block::dim>
19484 struct Lvalue_proxy { operator float() const; };
19485
19486 void
19487 test_1d (void) {
19488 Lvalue_proxy<Dense> p;
19489 float b;
19490 b + p;
19491 }
19492
19493 Here, if Lvalue_proxy is permitted to bind to View, then
19494 the global operator+ will be used; if they are not, the
19495 Lvalue_proxy will be converted to float. */
19496 if (coerce_template_parms (parm_parms,
19497 full_argvec,
19498 TYPE_TI_TEMPLATE (parm),
19499 (explain_p
19500 ? tf_warning_or_error
19501 : tf_none),
19502 /*require_all_args=*/true,
19503 /*use_default_args=*/false)
19504 == error_mark_node)
19505 return 1;
19506
19507 /* Deduce arguments T, i from TT<T> or TT<i>.
19508 We check each element of PARMVEC and ARGVEC individually
19509 rather than the whole TREE_VEC since they can have
19510 different number of elements. */
19511
19512 parmvec = expand_template_argument_pack (parmvec);
19513 argvec = expand_template_argument_pack (argvec);
19514
19515 len = TREE_VEC_LENGTH (parmvec);
19516
19517 /* Check if the parameters end in a pack, making them
19518 variadic. */
19519 if (len > 0
19520 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19521 parm_variadic_p = 1;
19522
19523 for (i = 0; i < len - parm_variadic_p; ++i)
19524 /* If the template argument list of P contains a pack
19525 expansion that is not the last template argument, the
19526 entire template argument list is a non-deduced
19527 context. */
19528 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19529 return unify_success (explain_p);
19530
19531 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19532 return unify_too_few_arguments (explain_p,
19533 TREE_VEC_LENGTH (argvec), len);
19534
19535 for (i = 0; i < len - parm_variadic_p; ++i)
19536 {
19537 RECUR_AND_CHECK_FAILURE (tparms, targs,
19538 TREE_VEC_ELT (parmvec, i),
19539 TREE_VEC_ELT (argvec, i),
19540 UNIFY_ALLOW_NONE, explain_p);
19541 }
19542
19543 if (parm_variadic_p
19544 && unify_pack_expansion (tparms, targs,
19545 parmvec, argvec,
19546 DEDUCE_EXACT,
19547 /*subr=*/true, explain_p))
19548 return 1;
19549 }
19550 arg = TYPE_TI_TEMPLATE (arg);
19551
19552 /* Fall through to deduce template name. */
19553 }
19554
19555 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19556 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19557 {
19558 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19559
19560 /* Simple cases: Value already set, does match or doesn't. */
19561 if (targ != NULL_TREE && template_args_equal (targ, arg))
19562 return unify_success (explain_p);
19563 else if (targ)
19564 return unify_inconsistency (explain_p, parm, targ, arg);
19565 }
19566 else
19567 {
19568 /* If PARM is `const T' and ARG is only `int', we don't have
19569 a match unless we are allowing additional qualification.
19570 If ARG is `const int' and PARM is just `T' that's OK;
19571 that binds `const int' to `T'. */
19572 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19573 arg, parm))
19574 return unify_cv_qual_mismatch (explain_p, parm, arg);
19575
19576 /* Consider the case where ARG is `const volatile int' and
19577 PARM is `const T'. Then, T should be `volatile int'. */
19578 arg = cp_build_qualified_type_real
19579 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19580 if (arg == error_mark_node)
19581 return unify_invalid (explain_p);
19582
19583 /* Simple cases: Value already set, does match or doesn't. */
19584 if (targ != NULL_TREE && same_type_p (targ, arg))
19585 return unify_success (explain_p);
19586 else if (targ)
19587 return unify_inconsistency (explain_p, parm, targ, arg);
19588
19589 /* Make sure that ARG is not a variable-sized array. (Note
19590 that were talking about variable-sized arrays (like
19591 `int[n]'), rather than arrays of unknown size (like
19592 `int[]').) We'll get very confused by such a type since
19593 the bound of the array is not constant, and therefore
19594 not mangleable. Besides, such types are not allowed in
19595 ISO C++, so we can do as we please here. We do allow
19596 them for 'auto' deduction, since that isn't ABI-exposed. */
19597 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19598 return unify_vla_arg (explain_p, arg);
19599
19600 /* Strip typedefs as in convert_template_argument. */
19601 arg = canonicalize_type_argument (arg, tf_none);
19602 }
19603
19604 /* If ARG is a parameter pack or an expansion, we cannot unify
19605 against it unless PARM is also a parameter pack. */
19606 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19607 && !template_parameter_pack_p (parm))
19608 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19609
19610 /* If the argument deduction results is a METHOD_TYPE,
19611 then there is a problem.
19612 METHOD_TYPE doesn't map to any real C++ type the result of
19613 the deduction can not be of that type. */
19614 if (TREE_CODE (arg) == METHOD_TYPE)
19615 return unify_method_type_error (explain_p, arg);
19616
19617 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19618 return unify_success (explain_p);
19619
19620 case TEMPLATE_PARM_INDEX:
19621 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19622 if (error_operand_p (tparm))
19623 return unify_invalid (explain_p);
19624
19625 if (TEMPLATE_PARM_LEVEL (parm)
19626 != template_decl_level (tparm))
19627 {
19628 /* The PARM is not one we're trying to unify. Just check
19629 to see if it matches ARG. */
19630 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19631 && cp_tree_equal (parm, arg));
19632 if (result)
19633 unify_expression_unequal (explain_p, parm, arg);
19634 return result;
19635 }
19636
19637 idx = TEMPLATE_PARM_IDX (parm);
19638 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19639
19640 if (targ)
19641 {
19642 int x = !cp_tree_equal (targ, arg);
19643 if (x)
19644 unify_inconsistency (explain_p, parm, targ, arg);
19645 return x;
19646 }
19647
19648 /* [temp.deduct.type] If, in the declaration of a function template
19649 with a non-type template-parameter, the non-type
19650 template-parameter is used in an expression in the function
19651 parameter-list and, if the corresponding template-argument is
19652 deduced, the template-argument type shall match the type of the
19653 template-parameter exactly, except that a template-argument
19654 deduced from an array bound may be of any integral type.
19655 The non-type parameter might use already deduced type parameters. */
19656 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19657 if (!TREE_TYPE (arg))
19658 /* Template-parameter dependent expression. Just accept it for now.
19659 It will later be processed in convert_template_argument. */
19660 ;
19661 else if (same_type_p (TREE_TYPE (arg), tparm))
19662 /* OK */;
19663 else if ((strict & UNIFY_ALLOW_INTEGER)
19664 && CP_INTEGRAL_TYPE_P (tparm))
19665 /* Convert the ARG to the type of PARM; the deduced non-type
19666 template argument must exactly match the types of the
19667 corresponding parameter. */
19668 arg = fold (build_nop (tparm, arg));
19669 else if (uses_template_parms (tparm))
19670 /* We haven't deduced the type of this parameter yet. Try again
19671 later. */
19672 return unify_success (explain_p);
19673 else
19674 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19675
19676 /* If ARG is a parameter pack or an expansion, we cannot unify
19677 against it unless PARM is also a parameter pack. */
19678 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19679 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19680 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19681
19682 {
19683 bool removed_attr = false;
19684 arg = strip_typedefs_expr (arg, &removed_attr);
19685 }
19686 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19687 return unify_success (explain_p);
19688
19689 case PTRMEM_CST:
19690 {
19691 /* A pointer-to-member constant can be unified only with
19692 another constant. */
19693 if (TREE_CODE (arg) != PTRMEM_CST)
19694 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19695
19696 /* Just unify the class member. It would be useless (and possibly
19697 wrong, depending on the strict flags) to unify also
19698 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19699 arg refer to the same variable, even if through different
19700 classes. For instance:
19701
19702 struct A { int x; };
19703 struct B : A { };
19704
19705 Unification of &A::x and &B::x must succeed. */
19706 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19707 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19708 }
19709
19710 case POINTER_TYPE:
19711 {
19712 if (!TYPE_PTR_P (arg))
19713 return unify_type_mismatch (explain_p, parm, arg);
19714
19715 /* [temp.deduct.call]
19716
19717 A can be another pointer or pointer to member type that can
19718 be converted to the deduced A via a qualification
19719 conversion (_conv.qual_).
19720
19721 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19722 This will allow for additional cv-qualification of the
19723 pointed-to types if appropriate. */
19724
19725 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19726 /* The derived-to-base conversion only persists through one
19727 level of pointers. */
19728 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19729
19730 return unify (tparms, targs, TREE_TYPE (parm),
19731 TREE_TYPE (arg), strict, explain_p);
19732 }
19733
19734 case REFERENCE_TYPE:
19735 if (TREE_CODE (arg) != REFERENCE_TYPE)
19736 return unify_type_mismatch (explain_p, parm, arg);
19737 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19738 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19739
19740 case ARRAY_TYPE:
19741 if (TREE_CODE (arg) != ARRAY_TYPE)
19742 return unify_type_mismatch (explain_p, parm, arg);
19743 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19744 != (TYPE_DOMAIN (arg) == NULL_TREE))
19745 return unify_type_mismatch (explain_p, parm, arg);
19746 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19747 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19748 if (TYPE_DOMAIN (parm) != NULL_TREE)
19749 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19750 TYPE_DOMAIN (arg), explain_p);
19751 return unify_success (explain_p);
19752
19753 case REAL_TYPE:
19754 case COMPLEX_TYPE:
19755 case VECTOR_TYPE:
19756 case INTEGER_TYPE:
19757 case BOOLEAN_TYPE:
19758 case ENUMERAL_TYPE:
19759 case VOID_TYPE:
19760 case NULLPTR_TYPE:
19761 if (TREE_CODE (arg) != TREE_CODE (parm))
19762 return unify_type_mismatch (explain_p, parm, arg);
19763
19764 /* We have already checked cv-qualification at the top of the
19765 function. */
19766 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19767 return unify_type_mismatch (explain_p, parm, arg);
19768
19769 /* As far as unification is concerned, this wins. Later checks
19770 will invalidate it if necessary. */
19771 return unify_success (explain_p);
19772
19773 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19774 /* Type INTEGER_CST can come from ordinary constant template args. */
19775 case INTEGER_CST:
19776 while (TREE_CODE (arg) == NOP_EXPR)
19777 arg = TREE_OPERAND (arg, 0);
19778
19779 if (TREE_CODE (arg) != INTEGER_CST)
19780 return unify_template_argument_mismatch (explain_p, parm, arg);
19781 return (tree_int_cst_equal (parm, arg)
19782 ? unify_success (explain_p)
19783 : unify_template_argument_mismatch (explain_p, parm, arg));
19784
19785 case TREE_VEC:
19786 {
19787 int i, len, argslen;
19788 int parm_variadic_p = 0;
19789
19790 if (TREE_CODE (arg) != TREE_VEC)
19791 return unify_template_argument_mismatch (explain_p, parm, arg);
19792
19793 len = TREE_VEC_LENGTH (parm);
19794 argslen = TREE_VEC_LENGTH (arg);
19795
19796 /* Check for pack expansions in the parameters. */
19797 for (i = 0; i < len; ++i)
19798 {
19799 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19800 {
19801 if (i == len - 1)
19802 /* We can unify against something with a trailing
19803 parameter pack. */
19804 parm_variadic_p = 1;
19805 else
19806 /* [temp.deduct.type]/9: If the template argument list of
19807 P contains a pack expansion that is not the last
19808 template argument, the entire template argument list
19809 is a non-deduced context. */
19810 return unify_success (explain_p);
19811 }
19812 }
19813
19814 /* If we don't have enough arguments to satisfy the parameters
19815 (not counting the pack expression at the end), or we have
19816 too many arguments for a parameter list that doesn't end in
19817 a pack expression, we can't unify. */
19818 if (parm_variadic_p
19819 ? argslen < len - parm_variadic_p
19820 : argslen != len)
19821 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19822
19823 /* Unify all of the parameters that precede the (optional)
19824 pack expression. */
19825 for (i = 0; i < len - parm_variadic_p; ++i)
19826 {
19827 RECUR_AND_CHECK_FAILURE (tparms, targs,
19828 TREE_VEC_ELT (parm, i),
19829 TREE_VEC_ELT (arg, i),
19830 UNIFY_ALLOW_NONE, explain_p);
19831 }
19832 if (parm_variadic_p)
19833 return unify_pack_expansion (tparms, targs, parm, arg,
19834 DEDUCE_EXACT,
19835 /*subr=*/true, explain_p);
19836 return unify_success (explain_p);
19837 }
19838
19839 case RECORD_TYPE:
19840 case UNION_TYPE:
19841 if (TREE_CODE (arg) != TREE_CODE (parm))
19842 return unify_type_mismatch (explain_p, parm, arg);
19843
19844 if (TYPE_PTRMEMFUNC_P (parm))
19845 {
19846 if (!TYPE_PTRMEMFUNC_P (arg))
19847 return unify_type_mismatch (explain_p, parm, arg);
19848
19849 return unify (tparms, targs,
19850 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19851 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19852 strict, explain_p);
19853 }
19854 else if (TYPE_PTRMEMFUNC_P (arg))
19855 return unify_type_mismatch (explain_p, parm, arg);
19856
19857 if (CLASSTYPE_TEMPLATE_INFO (parm))
19858 {
19859 tree t = NULL_TREE;
19860
19861 if (strict_in & UNIFY_ALLOW_DERIVED)
19862 {
19863 /* First, we try to unify the PARM and ARG directly. */
19864 t = try_class_unification (tparms, targs,
19865 parm, arg, explain_p);
19866
19867 if (!t)
19868 {
19869 /* Fallback to the special case allowed in
19870 [temp.deduct.call]:
19871
19872 If P is a class, and P has the form
19873 template-id, then A can be a derived class of
19874 the deduced A. Likewise, if P is a pointer to
19875 a class of the form template-id, A can be a
19876 pointer to a derived class pointed to by the
19877 deduced A. */
19878 enum template_base_result r;
19879 r = get_template_base (tparms, targs, parm, arg,
19880 explain_p, &t);
19881
19882 if (!t)
19883 {
19884 /* Don't give the derived diagnostic if we're
19885 already dealing with the same template. */
19886 bool same_template
19887 = (CLASSTYPE_TEMPLATE_INFO (arg)
19888 && (CLASSTYPE_TI_TEMPLATE (parm)
19889 == CLASSTYPE_TI_TEMPLATE (arg)));
19890 return unify_no_common_base (explain_p && !same_template,
19891 r, parm, arg);
19892 }
19893 }
19894 }
19895 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19896 && (CLASSTYPE_TI_TEMPLATE (parm)
19897 == CLASSTYPE_TI_TEMPLATE (arg)))
19898 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19899 Then, we should unify `int' and `U'. */
19900 t = arg;
19901 else
19902 /* There's no chance of unification succeeding. */
19903 return unify_type_mismatch (explain_p, parm, arg);
19904
19905 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19906 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19907 }
19908 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19909 return unify_type_mismatch (explain_p, parm, arg);
19910 return unify_success (explain_p);
19911
19912 case METHOD_TYPE:
19913 case FUNCTION_TYPE:
19914 {
19915 unsigned int nargs;
19916 tree *args;
19917 tree a;
19918 unsigned int i;
19919
19920 if (TREE_CODE (arg) != TREE_CODE (parm))
19921 return unify_type_mismatch (explain_p, parm, arg);
19922
19923 /* CV qualifications for methods can never be deduced, they must
19924 match exactly. We need to check them explicitly here,
19925 because type_unification_real treats them as any other
19926 cv-qualified parameter. */
19927 if (TREE_CODE (parm) == METHOD_TYPE
19928 && (!check_cv_quals_for_unify
19929 (UNIFY_ALLOW_NONE,
19930 class_of_this_parm (arg),
19931 class_of_this_parm (parm))))
19932 return unify_cv_qual_mismatch (explain_p, parm, arg);
19933
19934 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
19935 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
19936
19937 nargs = list_length (TYPE_ARG_TYPES (arg));
19938 args = XALLOCAVEC (tree, nargs);
19939 for (a = TYPE_ARG_TYPES (arg), i = 0;
19940 a != NULL_TREE && a != void_list_node;
19941 a = TREE_CHAIN (a), ++i)
19942 args[i] = TREE_VALUE (a);
19943 nargs = i;
19944
19945 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
19946 args, nargs, 1, DEDUCE_EXACT,
19947 LOOKUP_NORMAL, NULL, explain_p);
19948 }
19949
19950 case OFFSET_TYPE:
19951 /* Unify a pointer to member with a pointer to member function, which
19952 deduces the type of the member as a function type. */
19953 if (TYPE_PTRMEMFUNC_P (arg))
19954 {
19955 /* Check top-level cv qualifiers */
19956 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
19957 return unify_cv_qual_mismatch (explain_p, parm, arg);
19958
19959 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19960 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
19961 UNIFY_ALLOW_NONE, explain_p);
19962
19963 /* Determine the type of the function we are unifying against. */
19964 tree fntype = static_fn_type (arg);
19965
19966 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
19967 }
19968
19969 if (TREE_CODE (arg) != OFFSET_TYPE)
19970 return unify_type_mismatch (explain_p, parm, arg);
19971 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19972 TYPE_OFFSET_BASETYPE (arg),
19973 UNIFY_ALLOW_NONE, explain_p);
19974 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19975 strict, explain_p);
19976
19977 case CONST_DECL:
19978 if (DECL_TEMPLATE_PARM_P (parm))
19979 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
19980 if (arg != scalar_constant_value (parm))
19981 return unify_template_argument_mismatch (explain_p, parm, arg);
19982 return unify_success (explain_p);
19983
19984 case FIELD_DECL:
19985 case TEMPLATE_DECL:
19986 /* Matched cases are handled by the ARG == PARM test above. */
19987 return unify_template_argument_mismatch (explain_p, parm, arg);
19988
19989 case VAR_DECL:
19990 /* We might get a variable as a non-type template argument in parm if the
19991 corresponding parameter is type-dependent. Make any necessary
19992 adjustments based on whether arg is a reference. */
19993 if (CONSTANT_CLASS_P (arg))
19994 parm = fold_non_dependent_expr (parm);
19995 else if (REFERENCE_REF_P (arg))
19996 {
19997 tree sub = TREE_OPERAND (arg, 0);
19998 STRIP_NOPS (sub);
19999 if (TREE_CODE (sub) == ADDR_EXPR)
20000 arg = TREE_OPERAND (sub, 0);
20001 }
20002 /* Now use the normal expression code to check whether they match. */
20003 goto expr;
20004
20005 case TYPE_ARGUMENT_PACK:
20006 case NONTYPE_ARGUMENT_PACK:
20007 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20008 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20009
20010 case TYPEOF_TYPE:
20011 case DECLTYPE_TYPE:
20012 case UNDERLYING_TYPE:
20013 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20014 or UNDERLYING_TYPE nodes. */
20015 return unify_success (explain_p);
20016
20017 case ERROR_MARK:
20018 /* Unification fails if we hit an error node. */
20019 return unify_invalid (explain_p);
20020
20021 case INDIRECT_REF:
20022 if (REFERENCE_REF_P (parm))
20023 {
20024 if (REFERENCE_REF_P (arg))
20025 arg = TREE_OPERAND (arg, 0);
20026 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20027 strict, explain_p);
20028 }
20029 /* FALLTHRU */
20030
20031 default:
20032 /* An unresolved overload is a nondeduced context. */
20033 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20034 return unify_success (explain_p);
20035 gcc_assert (EXPR_P (parm));
20036 expr:
20037 /* We must be looking at an expression. This can happen with
20038 something like:
20039
20040 template <int I>
20041 void foo(S<I>, S<I + 2>);
20042
20043 This is a "nondeduced context":
20044
20045 [deduct.type]
20046
20047 The nondeduced contexts are:
20048
20049 --A type that is a template-id in which one or more of
20050 the template-arguments is an expression that references
20051 a template-parameter.
20052
20053 In these cases, we assume deduction succeeded, but don't
20054 actually infer any unifications. */
20055
20056 if (!uses_template_parms (parm)
20057 && !template_args_equal (parm, arg))
20058 return unify_expression_unequal (explain_p, parm, arg);
20059 else
20060 return unify_success (explain_p);
20061 }
20062 }
20063 #undef RECUR_AND_CHECK_FAILURE
20064 \f
20065 /* Note that DECL can be defined in this translation unit, if
20066 required. */
20067
20068 static void
20069 mark_definable (tree decl)
20070 {
20071 tree clone;
20072 DECL_NOT_REALLY_EXTERN (decl) = 1;
20073 FOR_EACH_CLONE (clone, decl)
20074 DECL_NOT_REALLY_EXTERN (clone) = 1;
20075 }
20076
20077 /* Called if RESULT is explicitly instantiated, or is a member of an
20078 explicitly instantiated class. */
20079
20080 void
20081 mark_decl_instantiated (tree result, int extern_p)
20082 {
20083 SET_DECL_EXPLICIT_INSTANTIATION (result);
20084
20085 /* If this entity has already been written out, it's too late to
20086 make any modifications. */
20087 if (TREE_ASM_WRITTEN (result))
20088 return;
20089
20090 /* For anonymous namespace we don't need to do anything. */
20091 if (decl_anon_ns_mem_p (result))
20092 {
20093 gcc_assert (!TREE_PUBLIC (result));
20094 return;
20095 }
20096
20097 if (TREE_CODE (result) != FUNCTION_DECL)
20098 /* The TREE_PUBLIC flag for function declarations will have been
20099 set correctly by tsubst. */
20100 TREE_PUBLIC (result) = 1;
20101
20102 /* This might have been set by an earlier implicit instantiation. */
20103 DECL_COMDAT (result) = 0;
20104
20105 if (extern_p)
20106 DECL_NOT_REALLY_EXTERN (result) = 0;
20107 else
20108 {
20109 mark_definable (result);
20110 mark_needed (result);
20111 /* Always make artificials weak. */
20112 if (DECL_ARTIFICIAL (result) && flag_weak)
20113 comdat_linkage (result);
20114 /* For WIN32 we also want to put explicit instantiations in
20115 linkonce sections. */
20116 else if (TREE_PUBLIC (result))
20117 maybe_make_one_only (result);
20118 }
20119
20120 /* If EXTERN_P, then this function will not be emitted -- unless
20121 followed by an explicit instantiation, at which point its linkage
20122 will be adjusted. If !EXTERN_P, then this function will be
20123 emitted here. In neither circumstance do we want
20124 import_export_decl to adjust the linkage. */
20125 DECL_INTERFACE_KNOWN (result) = 1;
20126 }
20127
20128 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
20129 important template arguments. If any are missing, we check whether
20130 they're important by using error_mark_node for substituting into any
20131 args that were used for partial ordering (the ones between ARGS and END)
20132 and seeing if it bubbles up. */
20133
20134 static bool
20135 check_undeduced_parms (tree targs, tree args, tree end)
20136 {
20137 bool found = false;
20138 int i;
20139 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
20140 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
20141 {
20142 found = true;
20143 TREE_VEC_ELT (targs, i) = error_mark_node;
20144 }
20145 if (found)
20146 {
20147 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
20148 if (substed == error_mark_node)
20149 return true;
20150 }
20151 return false;
20152 }
20153
20154 /* Given two function templates PAT1 and PAT2, return:
20155
20156 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20157 -1 if PAT2 is more specialized than PAT1.
20158 0 if neither is more specialized.
20159
20160 LEN indicates the number of parameters we should consider
20161 (defaulted parameters should not be considered).
20162
20163 The 1998 std underspecified function template partial ordering, and
20164 DR214 addresses the issue. We take pairs of arguments, one from
20165 each of the templates, and deduce them against each other. One of
20166 the templates will be more specialized if all the *other*
20167 template's arguments deduce against its arguments and at least one
20168 of its arguments *does* *not* deduce against the other template's
20169 corresponding argument. Deduction is done as for class templates.
20170 The arguments used in deduction have reference and top level cv
20171 qualifiers removed. Iff both arguments were originally reference
20172 types *and* deduction succeeds in both directions, an lvalue reference
20173 wins against an rvalue reference and otherwise the template
20174 with the more cv-qualified argument wins for that pairing (if
20175 neither is more cv-qualified, they both are equal). Unlike regular
20176 deduction, after all the arguments have been deduced in this way,
20177 we do *not* verify the deduced template argument values can be
20178 substituted into non-deduced contexts.
20179
20180 The logic can be a bit confusing here, because we look at deduce1 and
20181 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20182 can find template arguments for pat1 to make arg1 look like arg2, that
20183 means that arg2 is at least as specialized as arg1. */
20184
20185 int
20186 more_specialized_fn (tree pat1, tree pat2, int len)
20187 {
20188 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20189 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20190 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20191 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20192 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20193 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20194 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20195 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20196 tree origs1, origs2;
20197 bool lose1 = false;
20198 bool lose2 = false;
20199
20200 /* Remove the this parameter from non-static member functions. If
20201 one is a non-static member function and the other is not a static
20202 member function, remove the first parameter from that function
20203 also. This situation occurs for operator functions where we
20204 locate both a member function (with this pointer) and non-member
20205 operator (with explicit first operand). */
20206 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20207 {
20208 len--; /* LEN is the number of significant arguments for DECL1 */
20209 args1 = TREE_CHAIN (args1);
20210 if (!DECL_STATIC_FUNCTION_P (decl2))
20211 args2 = TREE_CHAIN (args2);
20212 }
20213 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20214 {
20215 args2 = TREE_CHAIN (args2);
20216 if (!DECL_STATIC_FUNCTION_P (decl1))
20217 {
20218 len--;
20219 args1 = TREE_CHAIN (args1);
20220 }
20221 }
20222
20223 /* If only one is a conversion operator, they are unordered. */
20224 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20225 return 0;
20226
20227 /* Consider the return type for a conversion function */
20228 if (DECL_CONV_FN_P (decl1))
20229 {
20230 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20231 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20232 len++;
20233 }
20234
20235 processing_template_decl++;
20236
20237 origs1 = args1;
20238 origs2 = args2;
20239
20240 while (len--
20241 /* Stop when an ellipsis is seen. */
20242 && args1 != NULL_TREE && args2 != NULL_TREE)
20243 {
20244 tree arg1 = TREE_VALUE (args1);
20245 tree arg2 = TREE_VALUE (args2);
20246 int deduce1, deduce2;
20247 int quals1 = -1;
20248 int quals2 = -1;
20249 int ref1 = 0;
20250 int ref2 = 0;
20251
20252 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20253 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20254 {
20255 /* When both arguments are pack expansions, we need only
20256 unify the patterns themselves. */
20257 arg1 = PACK_EXPANSION_PATTERN (arg1);
20258 arg2 = PACK_EXPANSION_PATTERN (arg2);
20259
20260 /* This is the last comparison we need to do. */
20261 len = 0;
20262 }
20263
20264 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20265 {
20266 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20267 arg1 = TREE_TYPE (arg1);
20268 quals1 = cp_type_quals (arg1);
20269 }
20270
20271 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20272 {
20273 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20274 arg2 = TREE_TYPE (arg2);
20275 quals2 = cp_type_quals (arg2);
20276 }
20277
20278 arg1 = TYPE_MAIN_VARIANT (arg1);
20279 arg2 = TYPE_MAIN_VARIANT (arg2);
20280
20281 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20282 {
20283 int i, len2 = list_length (args2);
20284 tree parmvec = make_tree_vec (1);
20285 tree argvec = make_tree_vec (len2);
20286 tree ta = args2;
20287
20288 /* Setup the parameter vector, which contains only ARG1. */
20289 TREE_VEC_ELT (parmvec, 0) = arg1;
20290
20291 /* Setup the argument vector, which contains the remaining
20292 arguments. */
20293 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20294 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20295
20296 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20297 argvec, DEDUCE_EXACT,
20298 /*subr=*/true, /*explain_p=*/false)
20299 == 0);
20300
20301 /* We cannot deduce in the other direction, because ARG1 is
20302 a pack expansion but ARG2 is not. */
20303 deduce2 = 0;
20304 }
20305 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20306 {
20307 int i, len1 = list_length (args1);
20308 tree parmvec = make_tree_vec (1);
20309 tree argvec = make_tree_vec (len1);
20310 tree ta = args1;
20311
20312 /* Setup the parameter vector, which contains only ARG1. */
20313 TREE_VEC_ELT (parmvec, 0) = arg2;
20314
20315 /* Setup the argument vector, which contains the remaining
20316 arguments. */
20317 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20318 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20319
20320 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20321 argvec, DEDUCE_EXACT,
20322 /*subr=*/true, /*explain_p=*/false)
20323 == 0);
20324
20325 /* We cannot deduce in the other direction, because ARG2 is
20326 a pack expansion but ARG1 is not.*/
20327 deduce1 = 0;
20328 }
20329
20330 else
20331 {
20332 /* The normal case, where neither argument is a pack
20333 expansion. */
20334 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20335 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20336 == 0);
20337 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20338 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20339 == 0);
20340 }
20341
20342 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20343 arg2, then arg2 is not as specialized as arg1. */
20344 if (!deduce1)
20345 lose2 = true;
20346 if (!deduce2)
20347 lose1 = true;
20348
20349 /* "If, for a given type, deduction succeeds in both directions
20350 (i.e., the types are identical after the transformations above)
20351 and both P and A were reference types (before being replaced with
20352 the type referred to above):
20353 - if the type from the argument template was an lvalue reference and
20354 the type from the parameter template was not, the argument type is
20355 considered to be more specialized than the other; otherwise,
20356 - if the type from the argument template is more cv-qualified
20357 than the type from the parameter template (as described above),
20358 the argument type is considered to be more specialized than the other;
20359 otherwise,
20360 - neither type is more specialized than the other." */
20361
20362 if (deduce1 && deduce2)
20363 {
20364 if (ref1 && ref2 && ref1 != ref2)
20365 {
20366 if (ref1 > ref2)
20367 lose1 = true;
20368 else
20369 lose2 = true;
20370 }
20371 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20372 {
20373 if ((quals1 & quals2) == quals2)
20374 lose2 = true;
20375 if ((quals1 & quals2) == quals1)
20376 lose1 = true;
20377 }
20378 }
20379
20380 if (lose1 && lose2)
20381 /* We've failed to deduce something in either direction.
20382 These must be unordered. */
20383 break;
20384
20385 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20386 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20387 /* We have already processed all of the arguments in our
20388 handing of the pack expansion type. */
20389 len = 0;
20390
20391 args1 = TREE_CHAIN (args1);
20392 args2 = TREE_CHAIN (args2);
20393 }
20394
20395 /* "In most cases, all template parameters must have values in order for
20396 deduction to succeed, but for partial ordering purposes a template
20397 parameter may remain without a value provided it is not used in the
20398 types being used for partial ordering."
20399
20400 Thus, if we are missing any of the targs1 we need to substitute into
20401 origs1, then pat2 is not as specialized as pat1. This can happen when
20402 there is a nondeduced context. */
20403 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20404 lose2 = true;
20405 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20406 lose1 = true;
20407
20408 processing_template_decl--;
20409
20410 /* If both deductions succeed, the partial ordering selects the more
20411 constrained template. */
20412 if (!lose1 && !lose2)
20413 {
20414 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20415 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20416 lose1 = !subsumes_constraints (c1, c2);
20417 lose2 = !subsumes_constraints (c2, c1);
20418 }
20419
20420 /* All things being equal, if the next argument is a pack expansion
20421 for one function but not for the other, prefer the
20422 non-variadic function. FIXME this is bogus; see c++/41958. */
20423 if (lose1 == lose2
20424 && args1 && TREE_VALUE (args1)
20425 && args2 && TREE_VALUE (args2))
20426 {
20427 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20428 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20429 }
20430
20431 if (lose1 == lose2)
20432 return 0;
20433 else if (!lose1)
20434 return 1;
20435 else
20436 return -1;
20437 }
20438
20439 /* Determine which of two partial specializations of TMPL is more
20440 specialized.
20441
20442 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20443 to the first partial specialization. The TREE_PURPOSE is the
20444 innermost set of template parameters for the partial
20445 specialization. PAT2 is similar, but for the second template.
20446
20447 Return 1 if the first partial specialization is more specialized;
20448 -1 if the second is more specialized; 0 if neither is more
20449 specialized.
20450
20451 See [temp.class.order] for information about determining which of
20452 two templates is more specialized. */
20453
20454 static int
20455 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20456 {
20457 tree targs;
20458 int winner = 0;
20459 bool any_deductions = false;
20460
20461 tree tmpl1 = TREE_VALUE (pat1);
20462 tree tmpl2 = TREE_VALUE (pat2);
20463 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20464 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20465 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20466 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20467
20468 /* Just like what happens for functions, if we are ordering between
20469 different template specializations, we may encounter dependent
20470 types in the arguments, and we need our dependency check functions
20471 to behave correctly. */
20472 ++processing_template_decl;
20473 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20474 if (targs)
20475 {
20476 --winner;
20477 any_deductions = true;
20478 }
20479
20480 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20481 if (targs)
20482 {
20483 ++winner;
20484 any_deductions = true;
20485 }
20486 --processing_template_decl;
20487
20488 /* If both deductions succeed, the partial ordering selects the more
20489 constrained template. */
20490 if (!winner && any_deductions)
20491 return more_constrained (tmpl1, tmpl2);
20492
20493 /* In the case of a tie where at least one of the templates
20494 has a parameter pack at the end, the template with the most
20495 non-packed parameters wins. */
20496 if (winner == 0
20497 && any_deductions
20498 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20499 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20500 {
20501 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20502 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20503 int len1 = TREE_VEC_LENGTH (args1);
20504 int len2 = TREE_VEC_LENGTH (args2);
20505
20506 /* We don't count the pack expansion at the end. */
20507 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20508 --len1;
20509 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20510 --len2;
20511
20512 if (len1 > len2)
20513 return 1;
20514 else if (len1 < len2)
20515 return -1;
20516 }
20517
20518 return winner;
20519 }
20520
20521 /* Return the template arguments that will produce the function signature
20522 DECL from the function template FN, with the explicit template
20523 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20524 also match. Return NULL_TREE if no satisfactory arguments could be
20525 found. */
20526
20527 static tree
20528 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20529 {
20530 int ntparms = DECL_NTPARMS (fn);
20531 tree targs = make_tree_vec (ntparms);
20532 tree decl_type = TREE_TYPE (decl);
20533 tree decl_arg_types;
20534 tree *args;
20535 unsigned int nargs, ix;
20536 tree arg;
20537
20538 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20539
20540 /* Never do unification on the 'this' parameter. */
20541 decl_arg_types = skip_artificial_parms_for (decl,
20542 TYPE_ARG_TYPES (decl_type));
20543
20544 nargs = list_length (decl_arg_types);
20545 args = XALLOCAVEC (tree, nargs);
20546 for (arg = decl_arg_types, ix = 0;
20547 arg != NULL_TREE && arg != void_list_node;
20548 arg = TREE_CHAIN (arg), ++ix)
20549 args[ix] = TREE_VALUE (arg);
20550
20551 if (fn_type_unification (fn, explicit_args, targs,
20552 args, ix,
20553 (check_rettype || DECL_CONV_FN_P (fn)
20554 ? TREE_TYPE (decl_type) : NULL_TREE),
20555 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20556 /*decltype*/false)
20557 == error_mark_node)
20558 return NULL_TREE;
20559
20560 return targs;
20561 }
20562
20563 /* Return the innermost template arguments that, when applied to a partial
20564 specialization of TMPL whose innermost template parameters are
20565 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20566 ARGS.
20567
20568 For example, suppose we have:
20569
20570 template <class T, class U> struct S {};
20571 template <class T> struct S<T*, int> {};
20572
20573 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20574 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20575 int}. The resulting vector will be {double}, indicating that `T'
20576 is bound to `double'. */
20577
20578 static tree
20579 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20580 {
20581 int i, ntparms = TREE_VEC_LENGTH (tparms);
20582 tree deduced_args;
20583 tree innermost_deduced_args;
20584
20585 innermost_deduced_args = make_tree_vec (ntparms);
20586 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20587 {
20588 deduced_args = copy_node (args);
20589 SET_TMPL_ARGS_LEVEL (deduced_args,
20590 TMPL_ARGS_DEPTH (deduced_args),
20591 innermost_deduced_args);
20592 }
20593 else
20594 deduced_args = innermost_deduced_args;
20595
20596 if (unify (tparms, deduced_args,
20597 INNERMOST_TEMPLATE_ARGS (spec_args),
20598 INNERMOST_TEMPLATE_ARGS (args),
20599 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20600 return NULL_TREE;
20601
20602 for (i = 0; i < ntparms; ++i)
20603 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20604 return NULL_TREE;
20605
20606 /* Verify that nondeduced template arguments agree with the type
20607 obtained from argument deduction.
20608
20609 For example:
20610
20611 struct A { typedef int X; };
20612 template <class T, class U> struct C {};
20613 template <class T> struct C<T, typename T::X> {};
20614
20615 Then with the instantiation `C<A, int>', we can deduce that
20616 `T' is `A' but unify () does not check whether `typename T::X'
20617 is `int'. */
20618 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20619 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20620 spec_args, tmpl,
20621 tf_none, false, false);
20622 if (spec_args == error_mark_node
20623 /* We only need to check the innermost arguments; the other
20624 arguments will always agree. */
20625 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20626 INNERMOST_TEMPLATE_ARGS (args)))
20627 return NULL_TREE;
20628
20629 /* Now that we have bindings for all of the template arguments,
20630 ensure that the arguments deduced for the template template
20631 parameters have compatible template parameter lists. See the use
20632 of template_template_parm_bindings_ok_p in fn_type_unification
20633 for more information. */
20634 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20635 return NULL_TREE;
20636
20637 return deduced_args;
20638 }
20639
20640 // Compare two function templates T1 and T2 by deducing bindings
20641 // from one against the other. If both deductions succeed, compare
20642 // constraints to see which is more constrained.
20643 static int
20644 more_specialized_inst (tree t1, tree t2)
20645 {
20646 int fate = 0;
20647 int count = 0;
20648
20649 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20650 {
20651 --fate;
20652 ++count;
20653 }
20654
20655 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20656 {
20657 ++fate;
20658 ++count;
20659 }
20660
20661 // If both deductions succeed, then one may be more constrained.
20662 if (count == 2 && fate == 0)
20663 fate = more_constrained (t1, t2);
20664
20665 return fate;
20666 }
20667
20668 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20669 Return the TREE_LIST node with the most specialized template, if
20670 any. If there is no most specialized template, the error_mark_node
20671 is returned.
20672
20673 Note that this function does not look at, or modify, the
20674 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20675 returned is one of the elements of INSTANTIATIONS, callers may
20676 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20677 and retrieve it from the value returned. */
20678
20679 tree
20680 most_specialized_instantiation (tree templates)
20681 {
20682 tree fn, champ;
20683
20684 ++processing_template_decl;
20685
20686 champ = templates;
20687 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20688 {
20689 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20690 if (fate == -1)
20691 champ = fn;
20692 else if (!fate)
20693 {
20694 /* Equally specialized, move to next function. If there
20695 is no next function, nothing's most specialized. */
20696 fn = TREE_CHAIN (fn);
20697 champ = fn;
20698 if (!fn)
20699 break;
20700 }
20701 }
20702
20703 if (champ)
20704 /* Now verify that champ is better than everything earlier in the
20705 instantiation list. */
20706 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20707 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20708 {
20709 champ = NULL_TREE;
20710 break;
20711 }
20712 }
20713
20714 processing_template_decl--;
20715
20716 if (!champ)
20717 return error_mark_node;
20718
20719 return champ;
20720 }
20721
20722 /* If DECL is a specialization of some template, return the most
20723 general such template. Otherwise, returns NULL_TREE.
20724
20725 For example, given:
20726
20727 template <class T> struct S { template <class U> void f(U); };
20728
20729 if TMPL is `template <class U> void S<int>::f(U)' this will return
20730 the full template. This function will not trace past partial
20731 specializations, however. For example, given in addition:
20732
20733 template <class T> struct S<T*> { template <class U> void f(U); };
20734
20735 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20736 `template <class T> template <class U> S<T*>::f(U)'. */
20737
20738 tree
20739 most_general_template (tree decl)
20740 {
20741 if (TREE_CODE (decl) != TEMPLATE_DECL)
20742 {
20743 if (tree tinfo = get_template_info (decl))
20744 decl = TI_TEMPLATE (tinfo);
20745 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20746 template friend, or a FIELD_DECL for a capture pack. */
20747 if (TREE_CODE (decl) != TEMPLATE_DECL)
20748 return NULL_TREE;
20749 }
20750
20751 /* Look for more and more general templates. */
20752 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20753 {
20754 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20755 (See cp-tree.h for details.) */
20756 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20757 break;
20758
20759 if (CLASS_TYPE_P (TREE_TYPE (decl))
20760 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20761 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20762 break;
20763
20764 /* Stop if we run into an explicitly specialized class template. */
20765 if (!DECL_NAMESPACE_SCOPE_P (decl)
20766 && DECL_CONTEXT (decl)
20767 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20768 break;
20769
20770 decl = DECL_TI_TEMPLATE (decl);
20771 }
20772
20773 return decl;
20774 }
20775
20776 /* True iff the TEMPLATE_DECL tmpl is a partial specialization. */
20777
20778 static bool
20779 partial_specialization_p (tree tmpl)
20780 {
20781 /* Any specialization has DECL_TEMPLATE_SPECIALIZATION. */
20782 if (!DECL_TEMPLATE_SPECIALIZATION (tmpl))
20783 return false;
20784 tree t = DECL_TI_TEMPLATE (tmpl);
20785 /* A specialization that fully specializes one of the containing classes is
20786 not a partial specialization. */
20787 return (list_length (DECL_TEMPLATE_PARMS (tmpl))
20788 == list_length (DECL_TEMPLATE_PARMS (t)));
20789 }
20790
20791 /* If TMPL is a partial specialization, return the arguments for its primary
20792 template. */
20793
20794 static tree
20795 impartial_args (tree tmpl, tree args)
20796 {
20797 if (!partial_specialization_p (tmpl))
20798 return args;
20799
20800 /* If TMPL is a partial specialization, we need to substitute to get
20801 the args for the primary template. */
20802 return tsubst_template_args (DECL_TI_ARGS (tmpl), args,
20803 tf_warning_or_error, tmpl);
20804 }
20805
20806 /* Return the most specialized of the template partial specializations
20807 which can produce TARGET, a specialization of some class or variable
20808 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20809 a TEMPLATE_DECL node corresponding to the partial specialization, while
20810 the TREE_PURPOSE is the set of template arguments that must be
20811 substituted into the template pattern in order to generate TARGET.
20812
20813 If the choice of partial specialization is ambiguous, a diagnostic
20814 is issued, and the error_mark_node is returned. If there are no
20815 partial specializations matching TARGET, then NULL_TREE is
20816 returned, indicating that the primary template should be used. */
20817
20818 static tree
20819 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20820 {
20821 tree list = NULL_TREE;
20822 tree t;
20823 tree champ;
20824 int fate;
20825 bool ambiguous_p;
20826 tree outer_args = NULL_TREE;
20827 tree tmpl, args;
20828
20829 if (TYPE_P (target))
20830 {
20831 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20832 tmpl = TI_TEMPLATE (tinfo);
20833 args = TI_ARGS (tinfo);
20834 }
20835 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20836 {
20837 tmpl = TREE_OPERAND (target, 0);
20838 args = TREE_OPERAND (target, 1);
20839 }
20840 else if (VAR_P (target))
20841 {
20842 tree tinfo = DECL_TEMPLATE_INFO (target);
20843 tmpl = TI_TEMPLATE (tinfo);
20844 args = TI_ARGS (tinfo);
20845 }
20846 else
20847 gcc_unreachable ();
20848
20849 tree main_tmpl = most_general_template (tmpl);
20850
20851 /* For determining which partial specialization to use, only the
20852 innermost args are interesting. */
20853 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20854 {
20855 outer_args = strip_innermost_template_args (args, 1);
20856 args = INNERMOST_TEMPLATE_ARGS (args);
20857 }
20858
20859 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20860 {
20861 tree partial_spec_args;
20862 tree spec_args;
20863 tree spec_tmpl = TREE_VALUE (t);
20864
20865 partial_spec_args = TREE_PURPOSE (t);
20866
20867 ++processing_template_decl;
20868
20869 if (outer_args)
20870 {
20871 /* Discard the outer levels of args, and then substitute in the
20872 template args from the enclosing class. */
20873 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20874 partial_spec_args = tsubst_template_args
20875 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20876
20877 /* And the same for the partial specialization TEMPLATE_DECL. */
20878 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20879 }
20880
20881 partial_spec_args =
20882 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20883 partial_spec_args,
20884 tmpl, tf_none,
20885 /*require_all_args=*/true,
20886 /*use_default_args=*/true);
20887
20888 --processing_template_decl;
20889
20890 if (partial_spec_args == error_mark_node)
20891 return error_mark_node;
20892 if (spec_tmpl == error_mark_node)
20893 return error_mark_node;
20894
20895 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20896 spec_args = get_partial_spec_bindings (tmpl, parms,
20897 partial_spec_args,
20898 args);
20899 if (spec_args)
20900 {
20901 if (outer_args)
20902 spec_args = add_to_template_args (outer_args, spec_args);
20903
20904 /* Keep the candidate only if the constraints are satisfied,
20905 or if we're not compiling with concepts. */
20906 if (!flag_concepts
20907 || constraints_satisfied_p (spec_tmpl, spec_args))
20908 {
20909 list = tree_cons (spec_args, TREE_VALUE (t), list);
20910 TREE_TYPE (list) = TREE_TYPE (t);
20911 }
20912 }
20913 }
20914
20915 if (! list)
20916 return NULL_TREE;
20917
20918 ambiguous_p = false;
20919 t = list;
20920 champ = t;
20921 t = TREE_CHAIN (t);
20922 for (; t; t = TREE_CHAIN (t))
20923 {
20924 fate = more_specialized_partial_spec (tmpl, champ, t);
20925 if (fate == 1)
20926 ;
20927 else
20928 {
20929 if (fate == 0)
20930 {
20931 t = TREE_CHAIN (t);
20932 if (! t)
20933 {
20934 ambiguous_p = true;
20935 break;
20936 }
20937 }
20938 champ = t;
20939 }
20940 }
20941
20942 if (!ambiguous_p)
20943 for (t = list; t && t != champ; t = TREE_CHAIN (t))
20944 {
20945 fate = more_specialized_partial_spec (tmpl, champ, t);
20946 if (fate != 1)
20947 {
20948 ambiguous_p = true;
20949 break;
20950 }
20951 }
20952
20953 if (ambiguous_p)
20954 {
20955 const char *str;
20956 char *spaces = NULL;
20957 if (!(complain & tf_error))
20958 return error_mark_node;
20959 if (TYPE_P (target))
20960 error ("ambiguous template instantiation for %q#T", target);
20961 else
20962 error ("ambiguous template instantiation for %q#D", target);
20963 str = ngettext ("candidate is:", "candidates are:", list_length (list));
20964 for (t = list; t; t = TREE_CHAIN (t))
20965 {
20966 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
20967 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
20968 "%s %#S", spaces ? spaces : str, subst);
20969 spaces = spaces ? spaces : get_spaces (str);
20970 }
20971 free (spaces);
20972 return error_mark_node;
20973 }
20974
20975 return champ;
20976 }
20977
20978 /* Explicitly instantiate DECL. */
20979
20980 void
20981 do_decl_instantiation (tree decl, tree storage)
20982 {
20983 tree result = NULL_TREE;
20984 int extern_p = 0;
20985
20986 if (!decl || decl == error_mark_node)
20987 /* An error occurred, for which grokdeclarator has already issued
20988 an appropriate message. */
20989 return;
20990 else if (! DECL_LANG_SPECIFIC (decl))
20991 {
20992 error ("explicit instantiation of non-template %q#D", decl);
20993 return;
20994 }
20995
20996 bool var_templ = (DECL_TEMPLATE_INFO (decl)
20997 && variable_template_p (DECL_TI_TEMPLATE (decl)));
20998
20999 if (VAR_P (decl) && !var_templ)
21000 {
21001 /* There is an asymmetry here in the way VAR_DECLs and
21002 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21003 the latter, the DECL we get back will be marked as a
21004 template instantiation, and the appropriate
21005 DECL_TEMPLATE_INFO will be set up. This does not happen for
21006 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21007 should handle VAR_DECLs as it currently handles
21008 FUNCTION_DECLs. */
21009 if (!DECL_CLASS_SCOPE_P (decl))
21010 {
21011 error ("%qD is not a static data member of a class template", decl);
21012 return;
21013 }
21014 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21015 if (!result || !VAR_P (result))
21016 {
21017 error ("no matching template for %qD found", decl);
21018 return;
21019 }
21020 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21021 {
21022 error ("type %qT for explicit instantiation %qD does not match "
21023 "declared type %qT", TREE_TYPE (result), decl,
21024 TREE_TYPE (decl));
21025 return;
21026 }
21027 }
21028 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21029 {
21030 error ("explicit instantiation of %q#D", decl);
21031 return;
21032 }
21033 else
21034 result = decl;
21035
21036 /* Check for various error cases. Note that if the explicit
21037 instantiation is valid the RESULT will currently be marked as an
21038 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21039 until we get here. */
21040
21041 if (DECL_TEMPLATE_SPECIALIZATION (result))
21042 {
21043 /* DR 259 [temp.spec].
21044
21045 Both an explicit instantiation and a declaration of an explicit
21046 specialization shall not appear in a program unless the explicit
21047 instantiation follows a declaration of the explicit specialization.
21048
21049 For a given set of template parameters, if an explicit
21050 instantiation of a template appears after a declaration of an
21051 explicit specialization for that template, the explicit
21052 instantiation has no effect. */
21053 return;
21054 }
21055 else if (DECL_EXPLICIT_INSTANTIATION (result))
21056 {
21057 /* [temp.spec]
21058
21059 No program shall explicitly instantiate any template more
21060 than once.
21061
21062 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21063 the first instantiation was `extern' and the second is not,
21064 and EXTERN_P for the opposite case. */
21065 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21066 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21067 /* If an "extern" explicit instantiation follows an ordinary
21068 explicit instantiation, the template is instantiated. */
21069 if (extern_p)
21070 return;
21071 }
21072 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21073 {
21074 error ("no matching template for %qD found", result);
21075 return;
21076 }
21077 else if (!DECL_TEMPLATE_INFO (result))
21078 {
21079 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21080 return;
21081 }
21082
21083 if (storage == NULL_TREE)
21084 ;
21085 else if (storage == ridpointers[(int) RID_EXTERN])
21086 {
21087 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21088 pedwarn (input_location, OPT_Wpedantic,
21089 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21090 "instantiations");
21091 extern_p = 1;
21092 }
21093 else
21094 error ("storage class %qD applied to template instantiation", storage);
21095
21096 check_explicit_instantiation_namespace (result);
21097 mark_decl_instantiated (result, extern_p);
21098 if (! extern_p)
21099 instantiate_decl (result, /*defer_ok=*/1,
21100 /*expl_inst_class_mem_p=*/false);
21101 }
21102
21103 static void
21104 mark_class_instantiated (tree t, int extern_p)
21105 {
21106 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21107 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21108 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21109 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21110 if (! extern_p)
21111 {
21112 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21113 rest_of_type_compilation (t, 1);
21114 }
21115 }
21116
21117 /* Called from do_type_instantiation through binding_table_foreach to
21118 do recursive instantiation for the type bound in ENTRY. */
21119 static void
21120 bt_instantiate_type_proc (binding_entry entry, void *data)
21121 {
21122 tree storage = *(tree *) data;
21123
21124 if (MAYBE_CLASS_TYPE_P (entry->type)
21125 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21126 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21127 }
21128
21129 /* Called from do_type_instantiation to instantiate a member
21130 (a member function or a static member variable) of an
21131 explicitly instantiated class template. */
21132 static void
21133 instantiate_class_member (tree decl, int extern_p)
21134 {
21135 mark_decl_instantiated (decl, extern_p);
21136 if (! extern_p)
21137 instantiate_decl (decl, /*defer_ok=*/1,
21138 /*expl_inst_class_mem_p=*/true);
21139 }
21140
21141 /* Perform an explicit instantiation of template class T. STORAGE, if
21142 non-null, is the RID for extern, inline or static. COMPLAIN is
21143 nonzero if this is called from the parser, zero if called recursively,
21144 since the standard is unclear (as detailed below). */
21145
21146 void
21147 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
21148 {
21149 int extern_p = 0;
21150 int nomem_p = 0;
21151 int static_p = 0;
21152 int previous_instantiation_extern_p = 0;
21153
21154 if (TREE_CODE (t) == TYPE_DECL)
21155 t = TREE_TYPE (t);
21156
21157 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
21158 {
21159 tree tmpl =
21160 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
21161 if (tmpl)
21162 error ("explicit instantiation of non-class template %qD", tmpl);
21163 else
21164 error ("explicit instantiation of non-template type %qT", t);
21165 return;
21166 }
21167
21168 complete_type (t);
21169
21170 if (!COMPLETE_TYPE_P (t))
21171 {
21172 if (complain & tf_error)
21173 error ("explicit instantiation of %q#T before definition of template",
21174 t);
21175 return;
21176 }
21177
21178 if (storage != NULL_TREE)
21179 {
21180 if (!in_system_header_at (input_location))
21181 {
21182 if (storage == ridpointers[(int) RID_EXTERN])
21183 {
21184 if (cxx_dialect == cxx98)
21185 pedwarn (input_location, OPT_Wpedantic,
21186 "ISO C++ 1998 forbids the use of %<extern%> on "
21187 "explicit instantiations");
21188 }
21189 else
21190 pedwarn (input_location, OPT_Wpedantic,
21191 "ISO C++ forbids the use of %qE"
21192 " on explicit instantiations", storage);
21193 }
21194
21195 if (storage == ridpointers[(int) RID_INLINE])
21196 nomem_p = 1;
21197 else if (storage == ridpointers[(int) RID_EXTERN])
21198 extern_p = 1;
21199 else if (storage == ridpointers[(int) RID_STATIC])
21200 static_p = 1;
21201 else
21202 {
21203 error ("storage class %qD applied to template instantiation",
21204 storage);
21205 extern_p = 0;
21206 }
21207 }
21208
21209 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21210 {
21211 /* DR 259 [temp.spec].
21212
21213 Both an explicit instantiation and a declaration of an explicit
21214 specialization shall not appear in a program unless the explicit
21215 instantiation follows a declaration of the explicit specialization.
21216
21217 For a given set of template parameters, if an explicit
21218 instantiation of a template appears after a declaration of an
21219 explicit specialization for that template, the explicit
21220 instantiation has no effect. */
21221 return;
21222 }
21223 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21224 {
21225 /* [temp.spec]
21226
21227 No program shall explicitly instantiate any template more
21228 than once.
21229
21230 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21231 instantiation was `extern'. If EXTERN_P then the second is.
21232 These cases are OK. */
21233 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21234
21235 if (!previous_instantiation_extern_p && !extern_p
21236 && (complain & tf_error))
21237 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21238
21239 /* If we've already instantiated the template, just return now. */
21240 if (!CLASSTYPE_INTERFACE_ONLY (t))
21241 return;
21242 }
21243
21244 check_explicit_instantiation_namespace (TYPE_NAME (t));
21245 mark_class_instantiated (t, extern_p);
21246
21247 if (nomem_p)
21248 return;
21249
21250 {
21251 tree tmp;
21252
21253 /* In contrast to implicit instantiation, where only the
21254 declarations, and not the definitions, of members are
21255 instantiated, we have here:
21256
21257 [temp.explicit]
21258
21259 The explicit instantiation of a class template specialization
21260 implies the instantiation of all of its members not
21261 previously explicitly specialized in the translation unit
21262 containing the explicit instantiation.
21263
21264 Of course, we can't instantiate member template classes, since
21265 we don't have any arguments for them. Note that the standard
21266 is unclear on whether the instantiation of the members are
21267 *explicit* instantiations or not. However, the most natural
21268 interpretation is that it should be an explicit instantiation. */
21269
21270 if (! static_p)
21271 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21272 if (TREE_CODE (tmp) == FUNCTION_DECL
21273 && DECL_TEMPLATE_INSTANTIATION (tmp))
21274 instantiate_class_member (tmp, extern_p);
21275
21276 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21277 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21278 instantiate_class_member (tmp, extern_p);
21279
21280 if (CLASSTYPE_NESTED_UTDS (t))
21281 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21282 bt_instantiate_type_proc, &storage);
21283 }
21284 }
21285
21286 /* Given a function DECL, which is a specialization of TMPL, modify
21287 DECL to be a re-instantiation of TMPL with the same template
21288 arguments. TMPL should be the template into which tsubst'ing
21289 should occur for DECL, not the most general template.
21290
21291 One reason for doing this is a scenario like this:
21292
21293 template <class T>
21294 void f(const T&, int i);
21295
21296 void g() { f(3, 7); }
21297
21298 template <class T>
21299 void f(const T& t, const int i) { }
21300
21301 Note that when the template is first instantiated, with
21302 instantiate_template, the resulting DECL will have no name for the
21303 first parameter, and the wrong type for the second. So, when we go
21304 to instantiate the DECL, we regenerate it. */
21305
21306 static void
21307 regenerate_decl_from_template (tree decl, tree tmpl)
21308 {
21309 /* The arguments used to instantiate DECL, from the most general
21310 template. */
21311 tree args;
21312 tree code_pattern;
21313
21314 args = DECL_TI_ARGS (decl);
21315 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21316
21317 /* Make sure that we can see identifiers, and compute access
21318 correctly. */
21319 push_access_scope (decl);
21320
21321 if (TREE_CODE (decl) == FUNCTION_DECL)
21322 {
21323 tree decl_parm;
21324 tree pattern_parm;
21325 tree specs;
21326 int args_depth;
21327 int parms_depth;
21328
21329 args_depth = TMPL_ARGS_DEPTH (args);
21330 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21331 if (args_depth > parms_depth)
21332 args = get_innermost_template_args (args, parms_depth);
21333
21334 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21335 args, tf_error, NULL_TREE,
21336 /*defer_ok*/false);
21337 if (specs && specs != error_mark_node)
21338 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21339 specs);
21340
21341 /* Merge parameter declarations. */
21342 decl_parm = skip_artificial_parms_for (decl,
21343 DECL_ARGUMENTS (decl));
21344 pattern_parm
21345 = skip_artificial_parms_for (code_pattern,
21346 DECL_ARGUMENTS (code_pattern));
21347 while (decl_parm && !DECL_PACK_P (pattern_parm))
21348 {
21349 tree parm_type;
21350 tree attributes;
21351
21352 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21353 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21354 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21355 NULL_TREE);
21356 parm_type = type_decays_to (parm_type);
21357 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21358 TREE_TYPE (decl_parm) = parm_type;
21359 attributes = DECL_ATTRIBUTES (pattern_parm);
21360 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21361 {
21362 DECL_ATTRIBUTES (decl_parm) = attributes;
21363 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21364 }
21365 decl_parm = DECL_CHAIN (decl_parm);
21366 pattern_parm = DECL_CHAIN (pattern_parm);
21367 }
21368 /* Merge any parameters that match with the function parameter
21369 pack. */
21370 if (pattern_parm && DECL_PACK_P (pattern_parm))
21371 {
21372 int i, len;
21373 tree expanded_types;
21374 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21375 the parameters in this function parameter pack. */
21376 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21377 args, tf_error, NULL_TREE);
21378 len = TREE_VEC_LENGTH (expanded_types);
21379 for (i = 0; i < len; i++)
21380 {
21381 tree parm_type;
21382 tree attributes;
21383
21384 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21385 /* Rename the parameter to include the index. */
21386 DECL_NAME (decl_parm) =
21387 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21388 parm_type = TREE_VEC_ELT (expanded_types, i);
21389 parm_type = type_decays_to (parm_type);
21390 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21391 TREE_TYPE (decl_parm) = parm_type;
21392 attributes = DECL_ATTRIBUTES (pattern_parm);
21393 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21394 {
21395 DECL_ATTRIBUTES (decl_parm) = attributes;
21396 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21397 }
21398 decl_parm = DECL_CHAIN (decl_parm);
21399 }
21400 }
21401 /* Merge additional specifiers from the CODE_PATTERN. */
21402 if (DECL_DECLARED_INLINE_P (code_pattern)
21403 && !DECL_DECLARED_INLINE_P (decl))
21404 DECL_DECLARED_INLINE_P (decl) = 1;
21405 }
21406 else if (VAR_P (decl))
21407 {
21408 DECL_INITIAL (decl) =
21409 tsubst_expr (DECL_INITIAL (code_pattern), args,
21410 tf_error, DECL_TI_TEMPLATE (decl),
21411 /*integral_constant_expression_p=*/false);
21412 if (VAR_HAD_UNKNOWN_BOUND (decl))
21413 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21414 tf_error, DECL_TI_TEMPLATE (decl));
21415 }
21416 else
21417 gcc_unreachable ();
21418
21419 pop_access_scope (decl);
21420 }
21421
21422 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21423 substituted to get DECL. */
21424
21425 tree
21426 template_for_substitution (tree decl)
21427 {
21428 tree tmpl = DECL_TI_TEMPLATE (decl);
21429
21430 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21431 for the instantiation. This is not always the most general
21432 template. Consider, for example:
21433
21434 template <class T>
21435 struct S { template <class U> void f();
21436 template <> void f<int>(); };
21437
21438 and an instantiation of S<double>::f<int>. We want TD to be the
21439 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21440 while (/* An instantiation cannot have a definition, so we need a
21441 more general template. */
21442 DECL_TEMPLATE_INSTANTIATION (tmpl)
21443 /* We must also deal with friend templates. Given:
21444
21445 template <class T> struct S {
21446 template <class U> friend void f() {};
21447 };
21448
21449 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21450 so far as the language is concerned, but that's still
21451 where we get the pattern for the instantiation from. On
21452 other hand, if the definition comes outside the class, say:
21453
21454 template <class T> struct S {
21455 template <class U> friend void f();
21456 };
21457 template <class U> friend void f() {}
21458
21459 we don't need to look any further. That's what the check for
21460 DECL_INITIAL is for. */
21461 || (TREE_CODE (decl) == FUNCTION_DECL
21462 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21463 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21464 {
21465 /* The present template, TD, should not be a definition. If it
21466 were a definition, we should be using it! Note that we
21467 cannot restructure the loop to just keep going until we find
21468 a template with a definition, since that might go too far if
21469 a specialization was declared, but not defined. */
21470
21471 /* Fetch the more general template. */
21472 tmpl = DECL_TI_TEMPLATE (tmpl);
21473 }
21474
21475 return tmpl;
21476 }
21477
21478 /* Returns true if we need to instantiate this template instance even if we
21479 know we aren't going to emit it. */
21480
21481 bool
21482 always_instantiate_p (tree decl)
21483 {
21484 /* We always instantiate inline functions so that we can inline them. An
21485 explicit instantiation declaration prohibits implicit instantiation of
21486 non-inline functions. With high levels of optimization, we would
21487 normally inline non-inline functions -- but we're not allowed to do
21488 that for "extern template" functions. Therefore, we check
21489 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21490 return ((TREE_CODE (decl) == FUNCTION_DECL
21491 && (DECL_DECLARED_INLINE_P (decl)
21492 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21493 /* And we need to instantiate static data members so that
21494 their initializers are available in integral constant
21495 expressions. */
21496 || (VAR_P (decl)
21497 && decl_maybe_constant_var_p (decl)));
21498 }
21499
21500 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21501 instantiate it now, modifying TREE_TYPE (fn). */
21502
21503 void
21504 maybe_instantiate_noexcept (tree fn)
21505 {
21506 tree fntype, spec, noex, clone;
21507
21508 /* Don't instantiate a noexcept-specification from template context. */
21509 if (processing_template_decl)
21510 return;
21511
21512 if (DECL_CLONED_FUNCTION_P (fn))
21513 fn = DECL_CLONED_FUNCTION (fn);
21514 fntype = TREE_TYPE (fn);
21515 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21516
21517 if (!spec || !TREE_PURPOSE (spec))
21518 return;
21519
21520 noex = TREE_PURPOSE (spec);
21521
21522 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21523 {
21524 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21525 spec = get_defaulted_eh_spec (fn);
21526 else if (push_tinst_level (fn))
21527 {
21528 push_access_scope (fn);
21529 push_deferring_access_checks (dk_no_deferred);
21530 input_location = DECL_SOURCE_LOCATION (fn);
21531 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21532 DEFERRED_NOEXCEPT_ARGS (noex),
21533 tf_warning_or_error, fn,
21534 /*function_p=*/false,
21535 /*integral_constant_expression_p=*/true);
21536 pop_deferring_access_checks ();
21537 pop_access_scope (fn);
21538 pop_tinst_level ();
21539 spec = build_noexcept_spec (noex, tf_warning_or_error);
21540 if (spec == error_mark_node)
21541 spec = noexcept_false_spec;
21542 }
21543 else
21544 spec = noexcept_false_spec;
21545
21546 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21547 }
21548
21549 FOR_EACH_CLONE (clone, fn)
21550 {
21551 if (TREE_TYPE (clone) == fntype)
21552 TREE_TYPE (clone) = TREE_TYPE (fn);
21553 else
21554 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21555 }
21556 }
21557
21558 /* Produce the definition of D, a _DECL generated from a template. If
21559 DEFER_OK is nonzero, then we don't have to actually do the
21560 instantiation now; we just have to do it sometime. Normally it is
21561 an error if this is an explicit instantiation but D is undefined.
21562 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21563 explicitly instantiated class template. */
21564
21565 tree
21566 instantiate_decl (tree d, int defer_ok,
21567 bool expl_inst_class_mem_p)
21568 {
21569 tree tmpl = DECL_TI_TEMPLATE (d);
21570 tree gen_args;
21571 tree args;
21572 tree td;
21573 tree code_pattern;
21574 tree spec;
21575 tree gen_tmpl;
21576 bool pattern_defined;
21577 location_t saved_loc = input_location;
21578 int saved_unevaluated_operand = cp_unevaluated_operand;
21579 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21580 bool external_p;
21581 bool deleted_p;
21582 tree fn_context;
21583 bool nested = false;
21584
21585 /* This function should only be used to instantiate templates for
21586 functions and static member variables. */
21587 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21588
21589 /* A concept is never instantiated. */
21590 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21591
21592 /* Variables are never deferred; if instantiation is required, they
21593 are instantiated right away. That allows for better code in the
21594 case that an expression refers to the value of the variable --
21595 if the variable has a constant value the referring expression can
21596 take advantage of that fact. */
21597 if (VAR_P (d)
21598 || DECL_DECLARED_CONSTEXPR_P (d))
21599 defer_ok = 0;
21600
21601 /* Don't instantiate cloned functions. Instead, instantiate the
21602 functions they cloned. */
21603 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21604 d = DECL_CLONED_FUNCTION (d);
21605
21606 if (DECL_TEMPLATE_INSTANTIATED (d)
21607 || (TREE_CODE (d) == FUNCTION_DECL
21608 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21609 || DECL_TEMPLATE_SPECIALIZATION (d))
21610 /* D has already been instantiated or explicitly specialized, so
21611 there's nothing for us to do here.
21612
21613 It might seem reasonable to check whether or not D is an explicit
21614 instantiation, and, if so, stop here. But when an explicit
21615 instantiation is deferred until the end of the compilation,
21616 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21617 the instantiation. */
21618 return d;
21619
21620 /* Check to see whether we know that this template will be
21621 instantiated in some other file, as with "extern template"
21622 extension. */
21623 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21624
21625 /* In general, we do not instantiate such templates. */
21626 if (external_p && !always_instantiate_p (d))
21627 return d;
21628
21629 gen_tmpl = most_general_template (tmpl);
21630 gen_args = impartial_args (tmpl, DECL_TI_ARGS (d));
21631
21632 if (tmpl != gen_tmpl)
21633 /* We should already have the extra args. */
21634 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21635 == TMPL_ARGS_DEPTH (gen_args));
21636 /* And what's in the hash table should match D. */
21637 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21638 || spec == NULL_TREE);
21639
21640 /* This needs to happen before any tsubsting. */
21641 if (! push_tinst_level (d))
21642 return d;
21643
21644 timevar_push (TV_TEMPLATE_INST);
21645
21646 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21647 for the instantiation. */
21648 td = template_for_substitution (d);
21649 code_pattern = DECL_TEMPLATE_RESULT (td);
21650
21651 /* We should never be trying to instantiate a member of a class
21652 template or partial specialization. */
21653 gcc_assert (d != code_pattern);
21654
21655 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21656 || DECL_TEMPLATE_SPECIALIZATION (td))
21657 /* In the case of a friend template whose definition is provided
21658 outside the class, we may have too many arguments. Drop the
21659 ones we don't need. The same is true for specializations. */
21660 args = get_innermost_template_args
21661 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21662 else
21663 args = gen_args;
21664
21665 if (TREE_CODE (d) == FUNCTION_DECL)
21666 {
21667 deleted_p = DECL_DELETED_FN (code_pattern);
21668 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21669 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21670 || deleted_p);
21671 }
21672 else
21673 {
21674 deleted_p = false;
21675 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21676 }
21677
21678 /* We may be in the middle of deferred access check. Disable it now. */
21679 push_deferring_access_checks (dk_no_deferred);
21680
21681 /* Unless an explicit instantiation directive has already determined
21682 the linkage of D, remember that a definition is available for
21683 this entity. */
21684 if (pattern_defined
21685 && !DECL_INTERFACE_KNOWN (d)
21686 && !DECL_NOT_REALLY_EXTERN (d))
21687 mark_definable (d);
21688
21689 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21690 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21691 input_location = DECL_SOURCE_LOCATION (d);
21692
21693 /* If D is a member of an explicitly instantiated class template,
21694 and no definition is available, treat it like an implicit
21695 instantiation. */
21696 if (!pattern_defined && expl_inst_class_mem_p
21697 && DECL_EXPLICIT_INSTANTIATION (d))
21698 {
21699 /* Leave linkage flags alone on instantiations with anonymous
21700 visibility. */
21701 if (TREE_PUBLIC (d))
21702 {
21703 DECL_NOT_REALLY_EXTERN (d) = 0;
21704 DECL_INTERFACE_KNOWN (d) = 0;
21705 }
21706 SET_DECL_IMPLICIT_INSTANTIATION (d);
21707 }
21708
21709 /* Defer all other templates, unless we have been explicitly
21710 forbidden from doing so. */
21711 if (/* If there is no definition, we cannot instantiate the
21712 template. */
21713 ! pattern_defined
21714 /* If it's OK to postpone instantiation, do so. */
21715 || defer_ok
21716 /* If this is a static data member that will be defined
21717 elsewhere, we don't want to instantiate the entire data
21718 member, but we do want to instantiate the initializer so that
21719 we can substitute that elsewhere. */
21720 || (external_p && VAR_P (d))
21721 /* Handle here a deleted function too, avoid generating
21722 its body (c++/61080). */
21723 || deleted_p)
21724 {
21725 /* The definition of the static data member is now required so
21726 we must substitute the initializer. */
21727 if (VAR_P (d)
21728 && !DECL_INITIAL (d)
21729 && DECL_INITIAL (code_pattern))
21730 {
21731 tree ns;
21732 tree init;
21733 bool const_init = false;
21734 bool enter_context = DECL_CLASS_SCOPE_P (d);
21735
21736 ns = decl_namespace_context (d);
21737 push_nested_namespace (ns);
21738 if (enter_context)
21739 push_nested_class (DECL_CONTEXT (d));
21740 init = tsubst_expr (DECL_INITIAL (code_pattern),
21741 args,
21742 tf_warning_or_error, NULL_TREE,
21743 /*integral_constant_expression_p=*/false);
21744 /* If instantiating the initializer involved instantiating this
21745 again, don't call cp_finish_decl twice. */
21746 if (!DECL_INITIAL (d))
21747 {
21748 /* Make sure the initializer is still constant, in case of
21749 circular dependency (template/instantiate6.C). */
21750 const_init
21751 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21752 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21753 /*asmspec_tree=*/NULL_TREE,
21754 LOOKUP_ONLYCONVERTING);
21755 }
21756 if (enter_context)
21757 pop_nested_class ();
21758 pop_nested_namespace (ns);
21759 }
21760
21761 /* We restore the source position here because it's used by
21762 add_pending_template. */
21763 input_location = saved_loc;
21764
21765 if (at_eof && !pattern_defined
21766 && DECL_EXPLICIT_INSTANTIATION (d)
21767 && DECL_NOT_REALLY_EXTERN (d))
21768 /* [temp.explicit]
21769
21770 The definition of a non-exported function template, a
21771 non-exported member function template, or a non-exported
21772 member function or static data member of a class template
21773 shall be present in every translation unit in which it is
21774 explicitly instantiated. */
21775 permerror (input_location, "explicit instantiation of %qD "
21776 "but no definition available", d);
21777
21778 /* If we're in unevaluated context, we just wanted to get the
21779 constant value; this isn't an odr use, so don't queue
21780 a full instantiation. */
21781 if (cp_unevaluated_operand != 0)
21782 goto out;
21783 /* ??? Historically, we have instantiated inline functions, even
21784 when marked as "extern template". */
21785 if (!(external_p && VAR_P (d)))
21786 add_pending_template (d);
21787 goto out;
21788 }
21789 /* Tell the repository that D is available in this translation unit
21790 -- and see if it is supposed to be instantiated here. */
21791 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21792 {
21793 /* In a PCH file, despite the fact that the repository hasn't
21794 requested instantiation in the PCH it is still possible that
21795 an instantiation will be required in a file that includes the
21796 PCH. */
21797 if (pch_file)
21798 add_pending_template (d);
21799 /* Instantiate inline functions so that the inliner can do its
21800 job, even though we'll not be emitting a copy of this
21801 function. */
21802 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21803 goto out;
21804 }
21805
21806 fn_context = decl_function_context (d);
21807 nested = (current_function_decl != NULL_TREE);
21808 vec<tree> omp_privatization_save;
21809 if (nested)
21810 save_omp_privatization_clauses (omp_privatization_save);
21811
21812 if (!fn_context)
21813 push_to_top_level ();
21814 else
21815 {
21816 if (nested)
21817 push_function_context ();
21818 cp_unevaluated_operand = 0;
21819 c_inhibit_evaluation_warnings = 0;
21820 }
21821
21822 /* Mark D as instantiated so that recursive calls to
21823 instantiate_decl do not try to instantiate it again. */
21824 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21825
21826 /* Regenerate the declaration in case the template has been modified
21827 by a subsequent redeclaration. */
21828 regenerate_decl_from_template (d, td);
21829
21830 /* We already set the file and line above. Reset them now in case
21831 they changed as a result of calling regenerate_decl_from_template. */
21832 input_location = DECL_SOURCE_LOCATION (d);
21833
21834 if (VAR_P (d))
21835 {
21836 tree init;
21837 bool const_init = false;
21838
21839 /* Clear out DECL_RTL; whatever was there before may not be right
21840 since we've reset the type of the declaration. */
21841 SET_DECL_RTL (d, NULL);
21842 DECL_IN_AGGR_P (d) = 0;
21843
21844 /* The initializer is placed in DECL_INITIAL by
21845 regenerate_decl_from_template so we don't need to
21846 push/pop_access_scope again here. Pull it out so that
21847 cp_finish_decl can process it. */
21848 init = DECL_INITIAL (d);
21849 DECL_INITIAL (d) = NULL_TREE;
21850 DECL_INITIALIZED_P (d) = 0;
21851
21852 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21853 initializer. That function will defer actual emission until
21854 we have a chance to determine linkage. */
21855 DECL_EXTERNAL (d) = 0;
21856
21857 /* Enter the scope of D so that access-checking works correctly. */
21858 bool enter_context = DECL_CLASS_SCOPE_P (d);
21859 if (enter_context)
21860 push_nested_class (DECL_CONTEXT (d));
21861
21862 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21863 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21864
21865 if (enter_context)
21866 pop_nested_class ();
21867
21868 if (variable_template_p (td))
21869 note_variable_template_instantiation (d);
21870 }
21871 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21872 synthesize_method (d);
21873 else if (TREE_CODE (d) == FUNCTION_DECL)
21874 {
21875 hash_map<tree, tree> *saved_local_specializations;
21876 tree subst_decl;
21877 tree tmpl_parm;
21878 tree spec_parm;
21879 tree block = NULL_TREE;
21880
21881 /* Save away the current list, in case we are instantiating one
21882 template from within the body of another. */
21883 saved_local_specializations = local_specializations;
21884
21885 /* Set up the list of local specializations. */
21886 local_specializations = new hash_map<tree, tree>;
21887
21888 /* Set up context. */
21889 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21890 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21891 block = push_stmt_list ();
21892 else
21893 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21894
21895 /* Some typedefs referenced from within the template code need to be
21896 access checked at template instantiation time, i.e now. These
21897 types were added to the template at parsing time. Let's get those
21898 and perform the access checks then. */
21899 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21900 gen_args);
21901
21902 /* Create substitution entries for the parameters. */
21903 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21904 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21905 spec_parm = DECL_ARGUMENTS (d);
21906 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21907 {
21908 register_local_specialization (spec_parm, tmpl_parm);
21909 spec_parm = skip_artificial_parms_for (d, spec_parm);
21910 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21911 }
21912 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21913 {
21914 if (!DECL_PACK_P (tmpl_parm))
21915 {
21916 register_local_specialization (spec_parm, tmpl_parm);
21917 spec_parm = DECL_CHAIN (spec_parm);
21918 }
21919 else
21920 {
21921 /* Register the (value) argument pack as a specialization of
21922 TMPL_PARM, then move on. */
21923 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21924 register_local_specialization (argpack, tmpl_parm);
21925 }
21926 }
21927 gcc_assert (!spec_parm);
21928
21929 /* Substitute into the body of the function. */
21930 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21931 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
21932 tf_warning_or_error, tmpl);
21933 else
21934 {
21935 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
21936 tf_warning_or_error, tmpl,
21937 /*integral_constant_expression_p=*/false);
21938
21939 /* Set the current input_location to the end of the function
21940 so that finish_function knows where we are. */
21941 input_location
21942 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
21943
21944 /* Remember if we saw an infinite loop in the template. */
21945 current_function_infinite_loop
21946 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
21947 }
21948
21949 /* We don't need the local specializations any more. */
21950 delete local_specializations;
21951 local_specializations = saved_local_specializations;
21952
21953 /* Finish the function. */
21954 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21955 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21956 DECL_SAVED_TREE (d) = pop_stmt_list (block);
21957 else
21958 {
21959 d = finish_function (0);
21960 expand_or_defer_fn (d);
21961 }
21962
21963 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21964 cp_check_omp_declare_reduction (d);
21965 }
21966
21967 /* We're not deferring instantiation any more. */
21968 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
21969
21970 if (!fn_context)
21971 pop_from_top_level ();
21972 else if (nested)
21973 pop_function_context ();
21974
21975 out:
21976 input_location = saved_loc;
21977 cp_unevaluated_operand = saved_unevaluated_operand;
21978 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
21979 pop_deferring_access_checks ();
21980 pop_tinst_level ();
21981 if (nested)
21982 restore_omp_privatization_clauses (omp_privatization_save);
21983
21984 timevar_pop (TV_TEMPLATE_INST);
21985
21986 return d;
21987 }
21988
21989 /* Run through the list of templates that we wish we could
21990 instantiate, and instantiate any we can. RETRIES is the
21991 number of times we retry pending template instantiation. */
21992
21993 void
21994 instantiate_pending_templates (int retries)
21995 {
21996 int reconsider;
21997 location_t saved_loc = input_location;
21998
21999 /* Instantiating templates may trigger vtable generation. This in turn
22000 may require further template instantiations. We place a limit here
22001 to avoid infinite loop. */
22002 if (pending_templates && retries >= max_tinst_depth)
22003 {
22004 tree decl = pending_templates->tinst->decl;
22005
22006 fatal_error (input_location,
22007 "template instantiation depth exceeds maximum of %d"
22008 " instantiating %q+D, possibly from virtual table generation"
22009 " (use -ftemplate-depth= to increase the maximum)",
22010 max_tinst_depth, decl);
22011 if (TREE_CODE (decl) == FUNCTION_DECL)
22012 /* Pretend that we defined it. */
22013 DECL_INITIAL (decl) = error_mark_node;
22014 return;
22015 }
22016
22017 do
22018 {
22019 struct pending_template **t = &pending_templates;
22020 struct pending_template *last = NULL;
22021 reconsider = 0;
22022 while (*t)
22023 {
22024 tree instantiation = reopen_tinst_level ((*t)->tinst);
22025 bool complete = false;
22026
22027 if (TYPE_P (instantiation))
22028 {
22029 tree fn;
22030
22031 if (!COMPLETE_TYPE_P (instantiation))
22032 {
22033 instantiate_class_template (instantiation);
22034 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22035 for (fn = TYPE_METHODS (instantiation);
22036 fn;
22037 fn = TREE_CHAIN (fn))
22038 if (! DECL_ARTIFICIAL (fn))
22039 instantiate_decl (fn,
22040 /*defer_ok=*/0,
22041 /*expl_inst_class_mem_p=*/false);
22042 if (COMPLETE_TYPE_P (instantiation))
22043 reconsider = 1;
22044 }
22045
22046 complete = COMPLETE_TYPE_P (instantiation);
22047 }
22048 else
22049 {
22050 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22051 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22052 {
22053 instantiation
22054 = instantiate_decl (instantiation,
22055 /*defer_ok=*/0,
22056 /*expl_inst_class_mem_p=*/false);
22057 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22058 reconsider = 1;
22059 }
22060
22061 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22062 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22063 }
22064
22065 if (complete)
22066 /* If INSTANTIATION has been instantiated, then we don't
22067 need to consider it again in the future. */
22068 *t = (*t)->next;
22069 else
22070 {
22071 last = *t;
22072 t = &(*t)->next;
22073 }
22074 tinst_depth = 0;
22075 current_tinst_level = NULL;
22076 }
22077 last_pending_template = last;
22078 }
22079 while (reconsider);
22080
22081 input_location = saved_loc;
22082 }
22083
22084 /* Substitute ARGVEC into T, which is a list of initializers for
22085 either base class or a non-static data member. The TREE_PURPOSEs
22086 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22087 instantiate_decl. */
22088
22089 static tree
22090 tsubst_initializer_list (tree t, tree argvec)
22091 {
22092 tree inits = NULL_TREE;
22093
22094 for (; t; t = TREE_CHAIN (t))
22095 {
22096 tree decl;
22097 tree init;
22098 tree expanded_bases = NULL_TREE;
22099 tree expanded_arguments = NULL_TREE;
22100 int i, len = 1;
22101
22102 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22103 {
22104 tree expr;
22105 tree arg;
22106
22107 /* Expand the base class expansion type into separate base
22108 classes. */
22109 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22110 tf_warning_or_error,
22111 NULL_TREE);
22112 if (expanded_bases == error_mark_node)
22113 continue;
22114
22115 /* We'll be building separate TREE_LISTs of arguments for
22116 each base. */
22117 len = TREE_VEC_LENGTH (expanded_bases);
22118 expanded_arguments = make_tree_vec (len);
22119 for (i = 0; i < len; i++)
22120 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
22121
22122 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22123 expand each argument in the TREE_VALUE of t. */
22124 expr = make_node (EXPR_PACK_EXPANSION);
22125 PACK_EXPANSION_LOCAL_P (expr) = true;
22126 PACK_EXPANSION_PARAMETER_PACKS (expr) =
22127 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
22128
22129 if (TREE_VALUE (t) == void_type_node)
22130 /* VOID_TYPE_NODE is used to indicate
22131 value-initialization. */
22132 {
22133 for (i = 0; i < len; i++)
22134 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
22135 }
22136 else
22137 {
22138 /* Substitute parameter packs into each argument in the
22139 TREE_LIST. */
22140 in_base_initializer = 1;
22141 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
22142 {
22143 tree expanded_exprs;
22144
22145 /* Expand the argument. */
22146 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
22147 expanded_exprs
22148 = tsubst_pack_expansion (expr, argvec,
22149 tf_warning_or_error,
22150 NULL_TREE);
22151 if (expanded_exprs == error_mark_node)
22152 continue;
22153
22154 /* Prepend each of the expanded expressions to the
22155 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
22156 for (i = 0; i < len; i++)
22157 {
22158 TREE_VEC_ELT (expanded_arguments, i) =
22159 tree_cons (NULL_TREE,
22160 TREE_VEC_ELT (expanded_exprs, i),
22161 TREE_VEC_ELT (expanded_arguments, i));
22162 }
22163 }
22164 in_base_initializer = 0;
22165
22166 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22167 since we built them backwards. */
22168 for (i = 0; i < len; i++)
22169 {
22170 TREE_VEC_ELT (expanded_arguments, i) =
22171 nreverse (TREE_VEC_ELT (expanded_arguments, i));
22172 }
22173 }
22174 }
22175
22176 for (i = 0; i < len; ++i)
22177 {
22178 if (expanded_bases)
22179 {
22180 decl = TREE_VEC_ELT (expanded_bases, i);
22181 decl = expand_member_init (decl);
22182 init = TREE_VEC_ELT (expanded_arguments, i);
22183 }
22184 else
22185 {
22186 tree tmp;
22187 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
22188 tf_warning_or_error, NULL_TREE);
22189
22190 decl = expand_member_init (decl);
22191 if (decl && !DECL_P (decl))
22192 in_base_initializer = 1;
22193
22194 init = TREE_VALUE (t);
22195 tmp = init;
22196 if (init != void_type_node)
22197 init = tsubst_expr (init, argvec,
22198 tf_warning_or_error, NULL_TREE,
22199 /*integral_constant_expression_p=*/false);
22200 if (init == NULL_TREE && tmp != NULL_TREE)
22201 /* If we had an initializer but it instantiated to nothing,
22202 value-initialize the object. This will only occur when
22203 the initializer was a pack expansion where the parameter
22204 packs used in that expansion were of length zero. */
22205 init = void_type_node;
22206 in_base_initializer = 0;
22207 }
22208
22209 if (decl)
22210 {
22211 init = build_tree_list (decl, init);
22212 TREE_CHAIN (init) = inits;
22213 inits = init;
22214 }
22215 }
22216 }
22217 return inits;
22218 }
22219
22220 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22221
22222 static void
22223 set_current_access_from_decl (tree decl)
22224 {
22225 if (TREE_PRIVATE (decl))
22226 current_access_specifier = access_private_node;
22227 else if (TREE_PROTECTED (decl))
22228 current_access_specifier = access_protected_node;
22229 else
22230 current_access_specifier = access_public_node;
22231 }
22232
22233 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22234 is the instantiation (which should have been created with
22235 start_enum) and ARGS are the template arguments to use. */
22236
22237 static void
22238 tsubst_enum (tree tag, tree newtag, tree args)
22239 {
22240 tree e;
22241
22242 if (SCOPED_ENUM_P (newtag))
22243 begin_scope (sk_scoped_enum, newtag);
22244
22245 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22246 {
22247 tree value;
22248 tree decl;
22249
22250 decl = TREE_VALUE (e);
22251 /* Note that in a template enum, the TREE_VALUE is the
22252 CONST_DECL, not the corresponding INTEGER_CST. */
22253 value = tsubst_expr (DECL_INITIAL (decl),
22254 args, tf_warning_or_error, NULL_TREE,
22255 /*integral_constant_expression_p=*/true);
22256
22257 /* Give this enumeration constant the correct access. */
22258 set_current_access_from_decl (decl);
22259
22260 /* Actually build the enumerator itself. Here we're assuming that
22261 enumerators can't have dependent attributes. */
22262 build_enumerator (DECL_NAME (decl), value, newtag,
22263 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22264 }
22265
22266 if (SCOPED_ENUM_P (newtag))
22267 finish_scope ();
22268
22269 finish_enum_value_list (newtag);
22270 finish_enum (newtag);
22271
22272 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22273 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22274 }
22275
22276 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22277 its type -- but without substituting the innermost set of template
22278 arguments. So, innermost set of template parameters will appear in
22279 the type. */
22280
22281 tree
22282 get_mostly_instantiated_function_type (tree decl)
22283 {
22284 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22285 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22286 }
22287
22288 /* Return truthvalue if we're processing a template different from
22289 the last one involved in diagnostics. */
22290 bool
22291 problematic_instantiation_changed (void)
22292 {
22293 return current_tinst_level != last_error_tinst_level;
22294 }
22295
22296 /* Remember current template involved in diagnostics. */
22297 void
22298 record_last_problematic_instantiation (void)
22299 {
22300 last_error_tinst_level = current_tinst_level;
22301 }
22302
22303 struct tinst_level *
22304 current_instantiation (void)
22305 {
22306 return current_tinst_level;
22307 }
22308
22309 /* Return TRUE if current_function_decl is being instantiated, false
22310 otherwise. */
22311
22312 bool
22313 instantiating_current_function_p (void)
22314 {
22315 return (current_instantiation ()
22316 && current_instantiation ()->decl == current_function_decl);
22317 }
22318
22319 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22320 type. Return zero for ok, nonzero for disallowed. Issue error and
22321 warning messages under control of COMPLAIN. */
22322
22323 static int
22324 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22325 {
22326 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22327 return 0;
22328 else if (POINTER_TYPE_P (type))
22329 return 0;
22330 else if (TYPE_PTRMEM_P (type))
22331 return 0;
22332 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22333 return 0;
22334 else if (TREE_CODE (type) == TYPENAME_TYPE)
22335 return 0;
22336 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22337 return 0;
22338 else if (TREE_CODE (type) == NULLPTR_TYPE)
22339 return 0;
22340 /* A bound template template parm could later be instantiated to have a valid
22341 nontype parm type via an alias template. */
22342 else if (cxx_dialect >= cxx11
22343 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22344 return 0;
22345
22346 if (complain & tf_error)
22347 {
22348 if (type == error_mark_node)
22349 inform (input_location, "invalid template non-type parameter");
22350 else
22351 error ("%q#T is not a valid type for a template non-type parameter",
22352 type);
22353 }
22354 return 1;
22355 }
22356
22357 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22358 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22359
22360 static bool
22361 dependent_type_p_r (tree type)
22362 {
22363 tree scope;
22364
22365 /* [temp.dep.type]
22366
22367 A type is dependent if it is:
22368
22369 -- a template parameter. Template template parameters are types
22370 for us (since TYPE_P holds true for them) so we handle
22371 them here. */
22372 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22373 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22374 return true;
22375 /* -- a qualified-id with a nested-name-specifier which contains a
22376 class-name that names a dependent type or whose unqualified-id
22377 names a dependent type. */
22378 if (TREE_CODE (type) == TYPENAME_TYPE)
22379 return true;
22380
22381 /* An alias template specialization can be dependent even if the
22382 resulting type is not. */
22383 if (dependent_alias_template_spec_p (type))
22384 return true;
22385
22386 /* -- a cv-qualified type where the cv-unqualified type is
22387 dependent.
22388 No code is necessary for this bullet; the code below handles
22389 cv-qualified types, and we don't want to strip aliases with
22390 TYPE_MAIN_VARIANT because of DR 1558. */
22391 /* -- a compound type constructed from any dependent type. */
22392 if (TYPE_PTRMEM_P (type))
22393 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22394 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22395 (type)));
22396 else if (TYPE_PTR_P (type)
22397 || TREE_CODE (type) == REFERENCE_TYPE)
22398 return dependent_type_p (TREE_TYPE (type));
22399 else if (TREE_CODE (type) == FUNCTION_TYPE
22400 || TREE_CODE (type) == METHOD_TYPE)
22401 {
22402 tree arg_type;
22403
22404 if (dependent_type_p (TREE_TYPE (type)))
22405 return true;
22406 for (arg_type = TYPE_ARG_TYPES (type);
22407 arg_type;
22408 arg_type = TREE_CHAIN (arg_type))
22409 if (dependent_type_p (TREE_VALUE (arg_type)))
22410 return true;
22411 return false;
22412 }
22413 /* -- an array type constructed from any dependent type or whose
22414 size is specified by a constant expression that is
22415 value-dependent.
22416
22417 We checked for type- and value-dependence of the bounds in
22418 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22419 if (TREE_CODE (type) == ARRAY_TYPE)
22420 {
22421 if (TYPE_DOMAIN (type)
22422 && dependent_type_p (TYPE_DOMAIN (type)))
22423 return true;
22424 return dependent_type_p (TREE_TYPE (type));
22425 }
22426
22427 /* -- a template-id in which either the template name is a template
22428 parameter ... */
22429 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22430 return true;
22431 /* ... or any of the template arguments is a dependent type or
22432 an expression that is type-dependent or value-dependent. */
22433 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22434 && (any_dependent_template_arguments_p
22435 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22436 return true;
22437
22438 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22439 dependent; if the argument of the `typeof' expression is not
22440 type-dependent, then it should already been have resolved. */
22441 if (TREE_CODE (type) == TYPEOF_TYPE
22442 || TREE_CODE (type) == DECLTYPE_TYPE
22443 || TREE_CODE (type) == UNDERLYING_TYPE)
22444 return true;
22445
22446 /* A template argument pack is dependent if any of its packed
22447 arguments are. */
22448 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22449 {
22450 tree args = ARGUMENT_PACK_ARGS (type);
22451 int i, len = TREE_VEC_LENGTH (args);
22452 for (i = 0; i < len; ++i)
22453 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22454 return true;
22455 }
22456
22457 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22458 be template parameters. */
22459 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22460 return true;
22461
22462 /* The standard does not specifically mention types that are local
22463 to template functions or local classes, but they should be
22464 considered dependent too. For example:
22465
22466 template <int I> void f() {
22467 enum E { a = I };
22468 S<sizeof (E)> s;
22469 }
22470
22471 The size of `E' cannot be known until the value of `I' has been
22472 determined. Therefore, `E' must be considered dependent. */
22473 scope = TYPE_CONTEXT (type);
22474 if (scope && TYPE_P (scope))
22475 return dependent_type_p (scope);
22476 /* Don't use type_dependent_expression_p here, as it can lead
22477 to infinite recursion trying to determine whether a lambda
22478 nested in a lambda is dependent (c++/47687). */
22479 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22480 && DECL_LANG_SPECIFIC (scope)
22481 && DECL_TEMPLATE_INFO (scope)
22482 && (any_dependent_template_arguments_p
22483 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22484 return true;
22485
22486 /* Other types are non-dependent. */
22487 return false;
22488 }
22489
22490 /* Returns TRUE if TYPE is dependent, in the sense of
22491 [temp.dep.type]. Note that a NULL type is considered dependent. */
22492
22493 bool
22494 dependent_type_p (tree type)
22495 {
22496 /* If there are no template parameters in scope, then there can't be
22497 any dependent types. */
22498 if (!processing_template_decl)
22499 {
22500 /* If we are not processing a template, then nobody should be
22501 providing us with a dependent type. */
22502 gcc_assert (type);
22503 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22504 return false;
22505 }
22506
22507 /* If the type is NULL, we have not computed a type for the entity
22508 in question; in that case, the type is dependent. */
22509 if (!type)
22510 return true;
22511
22512 /* Erroneous types can be considered non-dependent. */
22513 if (type == error_mark_node)
22514 return false;
22515
22516 /* If we have not already computed the appropriate value for TYPE,
22517 do so now. */
22518 if (!TYPE_DEPENDENT_P_VALID (type))
22519 {
22520 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22521 TYPE_DEPENDENT_P_VALID (type) = 1;
22522 }
22523
22524 return TYPE_DEPENDENT_P (type);
22525 }
22526
22527 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22528 lookup. In other words, a dependent type that is not the current
22529 instantiation. */
22530
22531 bool
22532 dependent_scope_p (tree scope)
22533 {
22534 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22535 && !currently_open_class (scope));
22536 }
22537
22538 /* T is a SCOPE_REF; return whether we need to consider it
22539 instantiation-dependent so that we can check access at instantiation
22540 time even though we know which member it resolves to. */
22541
22542 static bool
22543 instantiation_dependent_scope_ref_p (tree t)
22544 {
22545 if (DECL_P (TREE_OPERAND (t, 1))
22546 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22547 && accessible_in_template_p (TREE_OPERAND (t, 0),
22548 TREE_OPERAND (t, 1)))
22549 return false;
22550 else
22551 return true;
22552 }
22553
22554 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22555 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22556 expression. */
22557
22558 /* Note that this predicate is not appropriate for general expressions;
22559 only constant expressions (that satisfy potential_constant_expression)
22560 can be tested for value dependence. */
22561
22562 bool
22563 value_dependent_expression_p (tree expression)
22564 {
22565 if (!processing_template_decl)
22566 return false;
22567
22568 /* A name declared with a dependent type. */
22569 if (DECL_P (expression) && type_dependent_expression_p (expression))
22570 return true;
22571
22572 switch (TREE_CODE (expression))
22573 {
22574 case IDENTIFIER_NODE:
22575 /* A name that has not been looked up -- must be dependent. */
22576 return true;
22577
22578 case TEMPLATE_PARM_INDEX:
22579 /* A non-type template parm. */
22580 return true;
22581
22582 case CONST_DECL:
22583 /* A non-type template parm. */
22584 if (DECL_TEMPLATE_PARM_P (expression))
22585 return true;
22586 return value_dependent_expression_p (DECL_INITIAL (expression));
22587
22588 case VAR_DECL:
22589 /* A constant with literal type and is initialized
22590 with an expression that is value-dependent.
22591
22592 Note that a non-dependent parenthesized initializer will have
22593 already been replaced with its constant value, so if we see
22594 a TREE_LIST it must be dependent. */
22595 if (DECL_INITIAL (expression)
22596 && decl_constant_var_p (expression)
22597 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22598 /* cp_finish_decl doesn't fold reference initializers. */
22599 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22600 || value_dependent_expression_p (DECL_INITIAL (expression))))
22601 return true;
22602 return false;
22603
22604 case DYNAMIC_CAST_EXPR:
22605 case STATIC_CAST_EXPR:
22606 case CONST_CAST_EXPR:
22607 case REINTERPRET_CAST_EXPR:
22608 case CAST_EXPR:
22609 /* These expressions are value-dependent if the type to which
22610 the cast occurs is dependent or the expression being casted
22611 is value-dependent. */
22612 {
22613 tree type = TREE_TYPE (expression);
22614
22615 if (dependent_type_p (type))
22616 return true;
22617
22618 /* A functional cast has a list of operands. */
22619 expression = TREE_OPERAND (expression, 0);
22620 if (!expression)
22621 {
22622 /* If there are no operands, it must be an expression such
22623 as "int()". This should not happen for aggregate types
22624 because it would form non-constant expressions. */
22625 gcc_assert (cxx_dialect >= cxx11
22626 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22627
22628 return false;
22629 }
22630
22631 if (TREE_CODE (expression) == TREE_LIST)
22632 return any_value_dependent_elements_p (expression);
22633
22634 return value_dependent_expression_p (expression);
22635 }
22636
22637 case SIZEOF_EXPR:
22638 if (SIZEOF_EXPR_TYPE_P (expression))
22639 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22640 /* FALLTHRU */
22641 case ALIGNOF_EXPR:
22642 case TYPEID_EXPR:
22643 /* A `sizeof' expression is value-dependent if the operand is
22644 type-dependent or is a pack expansion. */
22645 expression = TREE_OPERAND (expression, 0);
22646 if (PACK_EXPANSION_P (expression))
22647 return true;
22648 else if (TYPE_P (expression))
22649 return dependent_type_p (expression);
22650 return instantiation_dependent_expression_p (expression);
22651
22652 case AT_ENCODE_EXPR:
22653 /* An 'encode' expression is value-dependent if the operand is
22654 type-dependent. */
22655 expression = TREE_OPERAND (expression, 0);
22656 return dependent_type_p (expression);
22657
22658 case NOEXCEPT_EXPR:
22659 expression = TREE_OPERAND (expression, 0);
22660 return instantiation_dependent_expression_p (expression);
22661
22662 case SCOPE_REF:
22663 /* All instantiation-dependent expressions should also be considered
22664 value-dependent. */
22665 return instantiation_dependent_scope_ref_p (expression);
22666
22667 case COMPONENT_REF:
22668 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22669 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22670
22671 case NONTYPE_ARGUMENT_PACK:
22672 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22673 is value-dependent. */
22674 {
22675 tree values = ARGUMENT_PACK_ARGS (expression);
22676 int i, len = TREE_VEC_LENGTH (values);
22677
22678 for (i = 0; i < len; ++i)
22679 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22680 return true;
22681
22682 return false;
22683 }
22684
22685 case TRAIT_EXPR:
22686 {
22687 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22688 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22689 || (type2 ? dependent_type_p (type2) : false));
22690 }
22691
22692 case MODOP_EXPR:
22693 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22694 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22695
22696 case ARRAY_REF:
22697 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22698 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22699
22700 case ADDR_EXPR:
22701 {
22702 tree op = TREE_OPERAND (expression, 0);
22703 return (value_dependent_expression_p (op)
22704 || has_value_dependent_address (op));
22705 }
22706
22707 case REQUIRES_EXPR:
22708 /* Treat all requires-expressions as value-dependent so
22709 we don't try to fold them. */
22710 return true;
22711
22712 case TYPE_REQ:
22713 return dependent_type_p (TREE_OPERAND (expression, 0));
22714
22715 case CALL_EXPR:
22716 {
22717 tree fn = get_callee_fndecl (expression);
22718 int i, nargs;
22719 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22720 return true;
22721 nargs = call_expr_nargs (expression);
22722 for (i = 0; i < nargs; ++i)
22723 {
22724 tree op = CALL_EXPR_ARG (expression, i);
22725 /* In a call to a constexpr member function, look through the
22726 implicit ADDR_EXPR on the object argument so that it doesn't
22727 cause the call to be considered value-dependent. We also
22728 look through it in potential_constant_expression. */
22729 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22730 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22731 && TREE_CODE (op) == ADDR_EXPR)
22732 op = TREE_OPERAND (op, 0);
22733 if (value_dependent_expression_p (op))
22734 return true;
22735 }
22736 return false;
22737 }
22738
22739 case TEMPLATE_ID_EXPR:
22740 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22741 type-dependent. */
22742 return type_dependent_expression_p (expression)
22743 || variable_concept_p (TREE_OPERAND (expression, 0));
22744
22745 case CONSTRUCTOR:
22746 {
22747 unsigned ix;
22748 tree val;
22749 if (dependent_type_p (TREE_TYPE (expression)))
22750 return true;
22751 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22752 if (value_dependent_expression_p (val))
22753 return true;
22754 return false;
22755 }
22756
22757 case STMT_EXPR:
22758 /* Treat a GNU statement expression as dependent to avoid crashing
22759 under instantiate_non_dependent_expr; it can't be constant. */
22760 return true;
22761
22762 default:
22763 /* A constant expression is value-dependent if any subexpression is
22764 value-dependent. */
22765 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22766 {
22767 case tcc_reference:
22768 case tcc_unary:
22769 case tcc_comparison:
22770 case tcc_binary:
22771 case tcc_expression:
22772 case tcc_vl_exp:
22773 {
22774 int i, len = cp_tree_operand_length (expression);
22775
22776 for (i = 0; i < len; i++)
22777 {
22778 tree t = TREE_OPERAND (expression, i);
22779
22780 /* In some cases, some of the operands may be missing.l
22781 (For example, in the case of PREDECREMENT_EXPR, the
22782 amount to increment by may be missing.) That doesn't
22783 make the expression dependent. */
22784 if (t && value_dependent_expression_p (t))
22785 return true;
22786 }
22787 }
22788 break;
22789 default:
22790 break;
22791 }
22792 break;
22793 }
22794
22795 /* The expression is not value-dependent. */
22796 return false;
22797 }
22798
22799 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22800 [temp.dep.expr]. Note that an expression with no type is
22801 considered dependent. Other parts of the compiler arrange for an
22802 expression with type-dependent subexpressions to have no type, so
22803 this function doesn't have to be fully recursive. */
22804
22805 bool
22806 type_dependent_expression_p (tree expression)
22807 {
22808 if (!processing_template_decl)
22809 return false;
22810
22811 if (expression == NULL_TREE || expression == error_mark_node)
22812 return false;
22813
22814 /* An unresolved name is always dependent. */
22815 if (identifier_p (expression)
22816 || TREE_CODE (expression) == USING_DECL
22817 || TREE_CODE (expression) == WILDCARD_DECL)
22818 return true;
22819
22820 /* A fold expression is type-dependent. */
22821 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22822 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22823 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22824 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22825 return true;
22826
22827 /* Some expression forms are never type-dependent. */
22828 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22829 || TREE_CODE (expression) == SIZEOF_EXPR
22830 || TREE_CODE (expression) == ALIGNOF_EXPR
22831 || TREE_CODE (expression) == AT_ENCODE_EXPR
22832 || TREE_CODE (expression) == NOEXCEPT_EXPR
22833 || TREE_CODE (expression) == TRAIT_EXPR
22834 || TREE_CODE (expression) == TYPEID_EXPR
22835 || TREE_CODE (expression) == DELETE_EXPR
22836 || TREE_CODE (expression) == VEC_DELETE_EXPR
22837 || TREE_CODE (expression) == THROW_EXPR
22838 || TREE_CODE (expression) == REQUIRES_EXPR)
22839 return false;
22840
22841 /* The types of these expressions depends only on the type to which
22842 the cast occurs. */
22843 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22844 || TREE_CODE (expression) == STATIC_CAST_EXPR
22845 || TREE_CODE (expression) == CONST_CAST_EXPR
22846 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22847 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22848 || TREE_CODE (expression) == CAST_EXPR)
22849 return dependent_type_p (TREE_TYPE (expression));
22850
22851 /* The types of these expressions depends only on the type created
22852 by the expression. */
22853 if (TREE_CODE (expression) == NEW_EXPR
22854 || TREE_CODE (expression) == VEC_NEW_EXPR)
22855 {
22856 /* For NEW_EXPR tree nodes created inside a template, either
22857 the object type itself or a TREE_LIST may appear as the
22858 operand 1. */
22859 tree type = TREE_OPERAND (expression, 1);
22860 if (TREE_CODE (type) == TREE_LIST)
22861 /* This is an array type. We need to check array dimensions
22862 as well. */
22863 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22864 || value_dependent_expression_p
22865 (TREE_OPERAND (TREE_VALUE (type), 1));
22866 else
22867 return dependent_type_p (type);
22868 }
22869
22870 if (TREE_CODE (expression) == SCOPE_REF)
22871 {
22872 tree scope = TREE_OPERAND (expression, 0);
22873 tree name = TREE_OPERAND (expression, 1);
22874
22875 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22876 contains an identifier associated by name lookup with one or more
22877 declarations declared with a dependent type, or...a
22878 nested-name-specifier or qualified-id that names a member of an
22879 unknown specialization. */
22880 return (type_dependent_expression_p (name)
22881 || dependent_scope_p (scope));
22882 }
22883
22884 /* A function template specialization is type-dependent if it has any
22885 dependent template arguments. */
22886 if (TREE_CODE (expression) == FUNCTION_DECL
22887 && DECL_LANG_SPECIFIC (expression)
22888 && DECL_TEMPLATE_INFO (expression))
22889 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22890
22891 if (TREE_CODE (expression) == TEMPLATE_DECL
22892 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22893 return false;
22894
22895 if (TREE_CODE (expression) == STMT_EXPR)
22896 expression = stmt_expr_value_expr (expression);
22897
22898 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22899 {
22900 tree elt;
22901 unsigned i;
22902
22903 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22904 {
22905 if (type_dependent_expression_p (elt))
22906 return true;
22907 }
22908 return false;
22909 }
22910
22911 /* A static data member of the current instantiation with incomplete
22912 array type is type-dependent, as the definition and specializations
22913 can have different bounds. */
22914 if (VAR_P (expression)
22915 && DECL_CLASS_SCOPE_P (expression)
22916 && dependent_type_p (DECL_CONTEXT (expression))
22917 && VAR_HAD_UNKNOWN_BOUND (expression))
22918 return true;
22919
22920 /* An array of unknown bound depending on a variadic parameter, eg:
22921
22922 template<typename... Args>
22923 void foo (Args... args)
22924 {
22925 int arr[] = { args... };
22926 }
22927
22928 template<int... vals>
22929 void bar ()
22930 {
22931 int arr[] = { vals... };
22932 }
22933
22934 If the array has no length and has an initializer, it must be that
22935 we couldn't determine its length in cp_complete_array_type because
22936 it is dependent. */
22937 if (VAR_P (expression)
22938 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
22939 && !TYPE_DOMAIN (TREE_TYPE (expression))
22940 && DECL_INITIAL (expression))
22941 return true;
22942
22943 /* A variable template specialization is type-dependent if it has any
22944 dependent template arguments. */
22945 if (VAR_P (expression)
22946 && DECL_LANG_SPECIFIC (expression)
22947 && DECL_TEMPLATE_INFO (expression)
22948 && variable_template_p (DECL_TI_TEMPLATE (expression)))
22949 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22950
22951 /* Always dependent, on the number of arguments if nothing else. */
22952 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
22953 return true;
22954
22955 if (TREE_TYPE (expression) == unknown_type_node)
22956 {
22957 if (TREE_CODE (expression) == ADDR_EXPR)
22958 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
22959 if (TREE_CODE (expression) == COMPONENT_REF
22960 || TREE_CODE (expression) == OFFSET_REF)
22961 {
22962 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
22963 return true;
22964 expression = TREE_OPERAND (expression, 1);
22965 if (identifier_p (expression))
22966 return false;
22967 }
22968 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
22969 if (TREE_CODE (expression) == SCOPE_REF)
22970 return false;
22971
22972 if (BASELINK_P (expression))
22973 {
22974 if (BASELINK_OPTYPE (expression)
22975 && dependent_type_p (BASELINK_OPTYPE (expression)))
22976 return true;
22977 expression = BASELINK_FUNCTIONS (expression);
22978 }
22979
22980 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
22981 {
22982 if (any_dependent_template_arguments_p
22983 (TREE_OPERAND (expression, 1)))
22984 return true;
22985 expression = TREE_OPERAND (expression, 0);
22986 if (identifier_p (expression))
22987 return true;
22988 }
22989
22990 gcc_assert (TREE_CODE (expression) == OVERLOAD
22991 || TREE_CODE (expression) == FUNCTION_DECL);
22992
22993 while (expression)
22994 {
22995 if (type_dependent_expression_p (OVL_CURRENT (expression)))
22996 return true;
22997 expression = OVL_NEXT (expression);
22998 }
22999 return false;
23000 }
23001
23002 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23003
23004 return (dependent_type_p (TREE_TYPE (expression)));
23005 }
23006
23007 /* walk_tree callback function for instantiation_dependent_expression_p,
23008 below. Returns non-zero if a dependent subexpression is found. */
23009
23010 static tree
23011 instantiation_dependent_r (tree *tp, int *walk_subtrees,
23012 void * /*data*/)
23013 {
23014 if (TYPE_P (*tp))
23015 {
23016 /* We don't have to worry about decltype currently because decltype
23017 of an instantiation-dependent expr is a dependent type. This
23018 might change depending on the resolution of DR 1172. */
23019 *walk_subtrees = false;
23020 return NULL_TREE;
23021 }
23022 enum tree_code code = TREE_CODE (*tp);
23023 switch (code)
23024 {
23025 /* Don't treat an argument list as dependent just because it has no
23026 TREE_TYPE. */
23027 case TREE_LIST:
23028 case TREE_VEC:
23029 return NULL_TREE;
23030
23031 case VAR_DECL:
23032 case CONST_DECL:
23033 /* A constant with a dependent initializer is dependent. */
23034 if (value_dependent_expression_p (*tp))
23035 return *tp;
23036 break;
23037
23038 case TEMPLATE_PARM_INDEX:
23039 return *tp;
23040
23041 /* Handle expressions with type operands. */
23042 case SIZEOF_EXPR:
23043 case ALIGNOF_EXPR:
23044 case TYPEID_EXPR:
23045 case AT_ENCODE_EXPR:
23046 {
23047 tree op = TREE_OPERAND (*tp, 0);
23048 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23049 op = TREE_TYPE (op);
23050 if (TYPE_P (op))
23051 {
23052 if (dependent_type_p (op))
23053 return *tp;
23054 else
23055 {
23056 *walk_subtrees = false;
23057 return NULL_TREE;
23058 }
23059 }
23060 break;
23061 }
23062
23063 case TRAIT_EXPR:
23064 if (value_dependent_expression_p (*tp))
23065 return *tp;
23066 *walk_subtrees = false;
23067 return NULL_TREE;
23068
23069 case COMPONENT_REF:
23070 if (identifier_p (TREE_OPERAND (*tp, 1)))
23071 /* In a template, finish_class_member_access_expr creates a
23072 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23073 type-dependent, so that we can check access control at
23074 instantiation time (PR 42277). See also Core issue 1273. */
23075 return *tp;
23076 break;
23077
23078 case SCOPE_REF:
23079 if (instantiation_dependent_scope_ref_p (*tp))
23080 return *tp;
23081 else
23082 break;
23083
23084 /* Treat statement-expressions as dependent. */
23085 case BIND_EXPR:
23086 return *tp;
23087
23088 /* Treat requires-expressions as dependent. */
23089 case REQUIRES_EXPR:
23090 return *tp;
23091
23092 case CALL_EXPR:
23093 /* Treat calls to function concepts as dependent. */
23094 if (function_concept_check_p (*tp))
23095 return *tp;
23096 break;
23097
23098 case TEMPLATE_ID_EXPR:
23099 /* And variable concepts. */
23100 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
23101 return *tp;
23102 break;
23103
23104 default:
23105 break;
23106 }
23107
23108 if (type_dependent_expression_p (*tp))
23109 return *tp;
23110 else
23111 return NULL_TREE;
23112 }
23113
23114 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
23115 sense defined by the ABI:
23116
23117 "An expression is instantiation-dependent if it is type-dependent
23118 or value-dependent, or it has a subexpression that is type-dependent
23119 or value-dependent." */
23120
23121 bool
23122 instantiation_dependent_expression_p (tree expression)
23123 {
23124 tree result;
23125
23126 if (!processing_template_decl)
23127 return false;
23128
23129 if (expression == error_mark_node)
23130 return false;
23131
23132 result = cp_walk_tree_without_duplicates (&expression,
23133 instantiation_dependent_r, NULL);
23134 return result != NULL_TREE;
23135 }
23136
23137 /* Like type_dependent_expression_p, but it also works while not processing
23138 a template definition, i.e. during substitution or mangling. */
23139
23140 bool
23141 type_dependent_expression_p_push (tree expr)
23142 {
23143 bool b;
23144 ++processing_template_decl;
23145 b = type_dependent_expression_p (expr);
23146 --processing_template_decl;
23147 return b;
23148 }
23149
23150 /* Returns TRUE if ARGS contains a type-dependent expression. */
23151
23152 bool
23153 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
23154 {
23155 unsigned int i;
23156 tree arg;
23157
23158 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
23159 {
23160 if (type_dependent_expression_p (arg))
23161 return true;
23162 }
23163 return false;
23164 }
23165
23166 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23167 expressions) contains any type-dependent expressions. */
23168
23169 bool
23170 any_type_dependent_elements_p (const_tree list)
23171 {
23172 for (; list; list = TREE_CHAIN (list))
23173 if (type_dependent_expression_p (TREE_VALUE (list)))
23174 return true;
23175
23176 return false;
23177 }
23178
23179 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23180 expressions) contains any value-dependent expressions. */
23181
23182 bool
23183 any_value_dependent_elements_p (const_tree list)
23184 {
23185 for (; list; list = TREE_CHAIN (list))
23186 if (value_dependent_expression_p (TREE_VALUE (list)))
23187 return true;
23188
23189 return false;
23190 }
23191
23192 /* Returns TRUE if the ARG (a template argument) is dependent. */
23193
23194 bool
23195 dependent_template_arg_p (tree arg)
23196 {
23197 if (!processing_template_decl)
23198 return false;
23199
23200 /* Assume a template argument that was wrongly written by the user
23201 is dependent. This is consistent with what
23202 any_dependent_template_arguments_p [that calls this function]
23203 does. */
23204 if (!arg || arg == error_mark_node)
23205 return true;
23206
23207 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23208 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23209
23210 if (TREE_CODE (arg) == TEMPLATE_DECL
23211 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23212 return dependent_template_p (arg);
23213 else if (ARGUMENT_PACK_P (arg))
23214 {
23215 tree args = ARGUMENT_PACK_ARGS (arg);
23216 int i, len = TREE_VEC_LENGTH (args);
23217 for (i = 0; i < len; ++i)
23218 {
23219 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23220 return true;
23221 }
23222
23223 return false;
23224 }
23225 else if (TYPE_P (arg))
23226 return dependent_type_p (arg);
23227 else
23228 return (type_dependent_expression_p (arg)
23229 || value_dependent_expression_p (arg));
23230 }
23231
23232 /* Returns true if ARGS (a collection of template arguments) contains
23233 any types that require structural equality testing. */
23234
23235 bool
23236 any_template_arguments_need_structural_equality_p (tree args)
23237 {
23238 int i;
23239 int j;
23240
23241 if (!args)
23242 return false;
23243 if (args == error_mark_node)
23244 return true;
23245
23246 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23247 {
23248 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23249 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23250 {
23251 tree arg = TREE_VEC_ELT (level, j);
23252 tree packed_args = NULL_TREE;
23253 int k, len = 1;
23254
23255 if (ARGUMENT_PACK_P (arg))
23256 {
23257 /* Look inside the argument pack. */
23258 packed_args = ARGUMENT_PACK_ARGS (arg);
23259 len = TREE_VEC_LENGTH (packed_args);
23260 }
23261
23262 for (k = 0; k < len; ++k)
23263 {
23264 if (packed_args)
23265 arg = TREE_VEC_ELT (packed_args, k);
23266
23267 if (error_operand_p (arg))
23268 return true;
23269 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23270 continue;
23271 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23272 return true;
23273 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23274 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23275 return true;
23276 }
23277 }
23278 }
23279
23280 return false;
23281 }
23282
23283 /* Returns true if ARGS (a collection of template arguments) contains
23284 any dependent arguments. */
23285
23286 bool
23287 any_dependent_template_arguments_p (const_tree args)
23288 {
23289 int i;
23290 int j;
23291
23292 if (!args)
23293 return false;
23294 if (args == error_mark_node)
23295 return true;
23296
23297 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23298 {
23299 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23300 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23301 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23302 return true;
23303 }
23304
23305 return false;
23306 }
23307
23308 /* Returns TRUE if the template TMPL is dependent. */
23309
23310 bool
23311 dependent_template_p (tree tmpl)
23312 {
23313 if (TREE_CODE (tmpl) == OVERLOAD)
23314 {
23315 while (tmpl)
23316 {
23317 if (dependent_template_p (OVL_CURRENT (tmpl)))
23318 return true;
23319 tmpl = OVL_NEXT (tmpl);
23320 }
23321 return false;
23322 }
23323
23324 /* Template template parameters are dependent. */
23325 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23326 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23327 return true;
23328 /* So are names that have not been looked up. */
23329 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23330 return true;
23331 /* So are member templates of dependent classes. */
23332 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
23333 return dependent_type_p (DECL_CONTEXT (tmpl));
23334 return false;
23335 }
23336
23337 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23338
23339 bool
23340 dependent_template_id_p (tree tmpl, tree args)
23341 {
23342 return (dependent_template_p (tmpl)
23343 || any_dependent_template_arguments_p (args));
23344 }
23345
23346 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23347 are dependent. */
23348
23349 bool
23350 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23351 {
23352 int i;
23353
23354 if (!processing_template_decl)
23355 return false;
23356
23357 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23358 {
23359 tree decl = TREE_VEC_ELT (declv, i);
23360 tree init = TREE_VEC_ELT (initv, i);
23361 tree cond = TREE_VEC_ELT (condv, i);
23362 tree incr = TREE_VEC_ELT (incrv, i);
23363
23364 if (type_dependent_expression_p (decl)
23365 || TREE_CODE (decl) == SCOPE_REF)
23366 return true;
23367
23368 if (init && type_dependent_expression_p (init))
23369 return true;
23370
23371 if (type_dependent_expression_p (cond))
23372 return true;
23373
23374 if (COMPARISON_CLASS_P (cond)
23375 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23376 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23377 return true;
23378
23379 if (TREE_CODE (incr) == MODOP_EXPR)
23380 {
23381 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23382 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23383 return true;
23384 }
23385 else if (type_dependent_expression_p (incr))
23386 return true;
23387 else if (TREE_CODE (incr) == MODIFY_EXPR)
23388 {
23389 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23390 return true;
23391 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23392 {
23393 tree t = TREE_OPERAND (incr, 1);
23394 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23395 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23396 return true;
23397 }
23398 }
23399 }
23400
23401 return false;
23402 }
23403
23404 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23405 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23406 no such TYPE can be found. Note that this function peers inside
23407 uninstantiated templates and therefore should be used only in
23408 extremely limited situations. ONLY_CURRENT_P restricts this
23409 peering to the currently open classes hierarchy (which is required
23410 when comparing types). */
23411
23412 tree
23413 resolve_typename_type (tree type, bool only_current_p)
23414 {
23415 tree scope;
23416 tree name;
23417 tree decl;
23418 int quals;
23419 tree pushed_scope;
23420 tree result;
23421
23422 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23423
23424 scope = TYPE_CONTEXT (type);
23425 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23426 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23427 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23428 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23429 identifier of the TYPENAME_TYPE anymore.
23430 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23431 TYPENAME_TYPE instead, we avoid messing up with a possible
23432 typedef variant case. */
23433 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23434
23435 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23436 it first before we can figure out what NAME refers to. */
23437 if (TREE_CODE (scope) == TYPENAME_TYPE)
23438 {
23439 if (TYPENAME_IS_RESOLVING_P (scope))
23440 /* Given a class template A with a dependent base with nested type C,
23441 typedef typename A::C::C C will land us here, as trying to resolve
23442 the initial A::C leads to the local C typedef, which leads back to
23443 A::C::C. So we break the recursion now. */
23444 return type;
23445 else
23446 scope = resolve_typename_type (scope, only_current_p);
23447 }
23448 /* If we don't know what SCOPE refers to, then we cannot resolve the
23449 TYPENAME_TYPE. */
23450 if (TREE_CODE (scope) == TYPENAME_TYPE)
23451 return type;
23452 /* If the SCOPE is a template type parameter, we have no way of
23453 resolving the name. */
23454 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23455 return type;
23456 /* If the SCOPE is not the current instantiation, there's no reason
23457 to look inside it. */
23458 if (only_current_p && !currently_open_class (scope))
23459 return type;
23460 /* If this is a typedef, we don't want to look inside (c++/11987). */
23461 if (typedef_variant_p (type))
23462 return type;
23463 /* If SCOPE isn't the template itself, it will not have a valid
23464 TYPE_FIELDS list. */
23465 if (CLASS_TYPE_P (scope)
23466 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23467 /* scope is either the template itself or a compatible instantiation
23468 like X<T>, so look up the name in the original template. */
23469 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23470 else
23471 /* scope is a partial instantiation, so we can't do the lookup or we
23472 will lose the template arguments. */
23473 return type;
23474 /* Enter the SCOPE so that name lookup will be resolved as if we
23475 were in the class definition. In particular, SCOPE will no
23476 longer be considered a dependent type. */
23477 pushed_scope = push_scope (scope);
23478 /* Look up the declaration. */
23479 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23480 tf_warning_or_error);
23481
23482 result = NULL_TREE;
23483
23484 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23485 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23486 if (!decl)
23487 /*nop*/;
23488 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23489 && TREE_CODE (decl) == TYPE_DECL)
23490 {
23491 result = TREE_TYPE (decl);
23492 if (result == error_mark_node)
23493 result = NULL_TREE;
23494 }
23495 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23496 && DECL_CLASS_TEMPLATE_P (decl))
23497 {
23498 tree tmpl;
23499 tree args;
23500 /* Obtain the template and the arguments. */
23501 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23502 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23503 /* Instantiate the template. */
23504 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23505 /*entering_scope=*/0,
23506 tf_error | tf_user);
23507 if (result == error_mark_node)
23508 result = NULL_TREE;
23509 }
23510
23511 /* Leave the SCOPE. */
23512 if (pushed_scope)
23513 pop_scope (pushed_scope);
23514
23515 /* If we failed to resolve it, return the original typename. */
23516 if (!result)
23517 return type;
23518
23519 /* If lookup found a typename type, resolve that too. */
23520 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23521 {
23522 /* Ill-formed programs can cause infinite recursion here, so we
23523 must catch that. */
23524 TYPENAME_IS_RESOLVING_P (type) = 1;
23525 result = resolve_typename_type (result, only_current_p);
23526 TYPENAME_IS_RESOLVING_P (type) = 0;
23527 }
23528
23529 /* Qualify the resulting type. */
23530 quals = cp_type_quals (type);
23531 if (quals)
23532 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23533
23534 return result;
23535 }
23536
23537 /* EXPR is an expression which is not type-dependent. Return a proxy
23538 for EXPR that can be used to compute the types of larger
23539 expressions containing EXPR. */
23540
23541 tree
23542 build_non_dependent_expr (tree expr)
23543 {
23544 tree inner_expr;
23545
23546 /* When checking, try to get a constant value for all non-dependent
23547 expressions in order to expose bugs in *_dependent_expression_p
23548 and constexpr. */
23549 if (flag_checking && cxx_dialect >= cxx11
23550 /* Don't do this during nsdmi parsing as it can lead to
23551 unexpected recursive instantiations. */
23552 && !parsing_nsdmi ())
23553 fold_non_dependent_expr (expr);
23554
23555 /* Preserve OVERLOADs; the functions must be available to resolve
23556 types. */
23557 inner_expr = expr;
23558 if (TREE_CODE (inner_expr) == STMT_EXPR)
23559 inner_expr = stmt_expr_value_expr (inner_expr);
23560 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23561 inner_expr = TREE_OPERAND (inner_expr, 0);
23562 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23563 inner_expr = TREE_OPERAND (inner_expr, 1);
23564 if (is_overloaded_fn (inner_expr)
23565 || TREE_CODE (inner_expr) == OFFSET_REF)
23566 return expr;
23567 /* There is no need to return a proxy for a variable. */
23568 if (VAR_P (expr))
23569 return expr;
23570 /* Preserve string constants; conversions from string constants to
23571 "char *" are allowed, even though normally a "const char *"
23572 cannot be used to initialize a "char *". */
23573 if (TREE_CODE (expr) == STRING_CST)
23574 return expr;
23575 /* Preserve void and arithmetic constants, as an optimization -- there is no
23576 reason to create a new node. */
23577 if (TREE_CODE (expr) == VOID_CST
23578 || TREE_CODE (expr) == INTEGER_CST
23579 || TREE_CODE (expr) == REAL_CST)
23580 return expr;
23581 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23582 There is at least one place where we want to know that a
23583 particular expression is a throw-expression: when checking a ?:
23584 expression, there are special rules if the second or third
23585 argument is a throw-expression. */
23586 if (TREE_CODE (expr) == THROW_EXPR)
23587 return expr;
23588
23589 /* Don't wrap an initializer list, we need to be able to look inside. */
23590 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23591 return expr;
23592
23593 /* Don't wrap a dummy object, we need to be able to test for it. */
23594 if (is_dummy_object (expr))
23595 return expr;
23596
23597 if (TREE_CODE (expr) == COND_EXPR)
23598 return build3 (COND_EXPR,
23599 TREE_TYPE (expr),
23600 TREE_OPERAND (expr, 0),
23601 (TREE_OPERAND (expr, 1)
23602 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23603 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23604 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23605 if (TREE_CODE (expr) == COMPOUND_EXPR
23606 && !COMPOUND_EXPR_OVERLOADED (expr))
23607 return build2 (COMPOUND_EXPR,
23608 TREE_TYPE (expr),
23609 TREE_OPERAND (expr, 0),
23610 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23611
23612 /* If the type is unknown, it can't really be non-dependent */
23613 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23614
23615 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23616 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23617 }
23618
23619 /* ARGS is a vector of expressions as arguments to a function call.
23620 Replace the arguments with equivalent non-dependent expressions.
23621 This modifies ARGS in place. */
23622
23623 void
23624 make_args_non_dependent (vec<tree, va_gc> *args)
23625 {
23626 unsigned int ix;
23627 tree arg;
23628
23629 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23630 {
23631 tree newarg = build_non_dependent_expr (arg);
23632 if (newarg != arg)
23633 (*args)[ix] = newarg;
23634 }
23635 }
23636
23637 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23638 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23639 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23640
23641 static tree
23642 make_auto_1 (tree name, bool set_canonical)
23643 {
23644 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23645 TYPE_NAME (au) = build_decl (input_location,
23646 TYPE_DECL, name, au);
23647 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23648 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23649 (0, processing_template_decl + 1, processing_template_decl + 1,
23650 TYPE_NAME (au), NULL_TREE);
23651 if (set_canonical)
23652 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23653 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23654 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23655
23656 return au;
23657 }
23658
23659 tree
23660 make_decltype_auto (void)
23661 {
23662 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23663 }
23664
23665 tree
23666 make_auto (void)
23667 {
23668 return make_auto_1 (get_identifier ("auto"), true);
23669 }
23670
23671 /* Make a "constrained auto" type-specifier. This is an
23672 auto type with constraints that must be associated after
23673 deduction. The constraint is formed from the given
23674 CONC and its optional sequence of arguments, which are
23675 non-null if written as partial-concept-id. */
23676
23677 tree
23678 make_constrained_auto (tree con, tree args)
23679 {
23680 tree type = make_auto_1 (get_identifier ("auto"), false);
23681
23682 /* Build the constraint. */
23683 tree tmpl = DECL_TI_TEMPLATE (con);
23684 tree expr;
23685 if (VAR_P (con))
23686 expr = build_concept_check (tmpl, type, args);
23687 else
23688 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
23689
23690 tree constr = make_predicate_constraint (expr);
23691 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
23692
23693 /* Our canonical type depends on the constraint. */
23694 TYPE_CANONICAL (type) = canonical_type_parameter (type);
23695
23696 /* Attach the constraint to the type declaration. */
23697 tree decl = TYPE_NAME (type);
23698 return decl;
23699 }
23700
23701 /* Given type ARG, return std::initializer_list<ARG>. */
23702
23703 static tree
23704 listify (tree arg)
23705 {
23706 tree std_init_list = namespace_binding
23707 (get_identifier ("initializer_list"), std_node);
23708 tree argvec;
23709 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23710 {
23711 error ("deducing from brace-enclosed initializer list requires "
23712 "#include <initializer_list>");
23713 return error_mark_node;
23714 }
23715 argvec = make_tree_vec (1);
23716 TREE_VEC_ELT (argvec, 0) = arg;
23717 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23718 NULL_TREE, 0, tf_warning_or_error);
23719 }
23720
23721 /* Replace auto in TYPE with std::initializer_list<auto>. */
23722
23723 static tree
23724 listify_autos (tree type, tree auto_node)
23725 {
23726 tree init_auto = listify (auto_node);
23727 tree argvec = make_tree_vec (1);
23728 TREE_VEC_ELT (argvec, 0) = init_auto;
23729 if (processing_template_decl)
23730 argvec = add_to_template_args (current_template_args (), argvec);
23731 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23732 }
23733
23734 /* Hash traits for hashing possibly constrained 'auto'
23735 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23736
23737 struct auto_hash : default_hash_traits<tree>
23738 {
23739 static inline hashval_t hash (tree);
23740 static inline bool equal (tree, tree);
23741 };
23742
23743 /* Hash the 'auto' T. */
23744
23745 inline hashval_t
23746 auto_hash::hash (tree t)
23747 {
23748 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23749 /* Matching constrained-type-specifiers denote the same template
23750 parameter, so hash the constraint. */
23751 return hash_placeholder_constraint (c);
23752 else
23753 /* But unconstrained autos are all separate, so just hash the pointer. */
23754 return iterative_hash_object (t, 0);
23755 }
23756
23757 /* Compare two 'auto's. */
23758
23759 inline bool
23760 auto_hash::equal (tree t1, tree t2)
23761 {
23762 if (t1 == t2)
23763 return true;
23764
23765 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23766 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23767
23768 /* Two unconstrained autos are distinct. */
23769 if (!c1 || !c2)
23770 return false;
23771
23772 return equivalent_placeholder_constraints (c1, c2);
23773 }
23774
23775 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23776 constrained) auto, add it to the vector. */
23777
23778 static int
23779 extract_autos_r (tree t, void *data)
23780 {
23781 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23782 if (is_auto_or_concept (t))
23783 {
23784 /* All the autos were built with index 0; fix that up now. */
23785 tree *p = hash.find_slot (t, INSERT);
23786 unsigned idx;
23787 if (*p)
23788 /* If this is a repeated constrained-type-specifier, use the index we
23789 chose before. */
23790 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23791 else
23792 {
23793 /* Otherwise this is new, so use the current count. */
23794 *p = t;
23795 idx = hash.elements () - 1;
23796 }
23797 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23798 }
23799
23800 /* Always keep walking. */
23801 return 0;
23802 }
23803
23804 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23805 says they can appear anywhere in the type. */
23806
23807 static tree
23808 extract_autos (tree type)
23809 {
23810 hash_set<tree> visited;
23811 hash_table<auto_hash> hash (2);
23812
23813 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23814
23815 tree tree_vec = make_tree_vec (hash.elements());
23816 for (hash_table<auto_hash>::iterator iter = hash.begin();
23817 iter != hash.end(); ++iter)
23818 {
23819 tree elt = *iter;
23820 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23821 TREE_VEC_ELT (tree_vec, i)
23822 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23823 }
23824
23825 return tree_vec;
23826 }
23827
23828 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23829 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23830
23831 tree
23832 do_auto_deduction (tree type, tree init, tree auto_node)
23833 {
23834 return do_auto_deduction (type, init, auto_node,
23835 tf_warning_or_error,
23836 adc_unspecified);
23837 }
23838
23839 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23840 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23841 The CONTEXT determines the context in which auto deduction is performed
23842 and is used to control error diagnostics. */
23843
23844 tree
23845 do_auto_deduction (tree type, tree init, tree auto_node,
23846 tsubst_flags_t complain, auto_deduction_context context)
23847 {
23848 tree targs;
23849
23850 if (init == error_mark_node)
23851 return error_mark_node;
23852
23853 if (type_dependent_expression_p (init))
23854 /* Defining a subset of type-dependent expressions that we can deduce
23855 from ahead of time isn't worth the trouble. */
23856 return type;
23857
23858 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23859 with either a new invented type template parameter U or, if the
23860 initializer is a braced-init-list (8.5.4), with
23861 std::initializer_list<U>. */
23862 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23863 {
23864 if (!DIRECT_LIST_INIT_P (init))
23865 type = listify_autos (type, auto_node);
23866 else if (CONSTRUCTOR_NELTS (init) == 1)
23867 init = CONSTRUCTOR_ELT (init, 0)->value;
23868 else
23869 {
23870 if (complain & tf_warning_or_error)
23871 {
23872 if (permerror (input_location, "direct-list-initialization of "
23873 "%<auto%> requires exactly one element"))
23874 inform (input_location,
23875 "for deduction to %<std::initializer_list%>, use copy-"
23876 "list-initialization (i.e. add %<=%> before the %<{%>)");
23877 }
23878 type = listify_autos (type, auto_node);
23879 }
23880 }
23881
23882 if (type == error_mark_node)
23883 return error_mark_node;
23884
23885 init = resolve_nondeduced_context (init, complain);
23886
23887 if (AUTO_IS_DECLTYPE (auto_node))
23888 {
23889 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23890 && !REF_PARENTHESIZED_P (init)));
23891 targs = make_tree_vec (1);
23892 TREE_VEC_ELT (targs, 0)
23893 = finish_decltype_type (init, id, tf_warning_or_error);
23894 if (type != auto_node)
23895 {
23896 if (complain & tf_error)
23897 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23898 return error_mark_node;
23899 }
23900 }
23901 else
23902 {
23903 tree parms = build_tree_list (NULL_TREE, type);
23904 tree tparms;
23905
23906 if (flag_concepts)
23907 tparms = extract_autos (type);
23908 else
23909 {
23910 tparms = make_tree_vec (1);
23911 TREE_VEC_ELT (tparms, 0)
23912 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23913 }
23914
23915 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
23916 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23917 DEDUCE_CALL, LOOKUP_NORMAL,
23918 NULL, /*explain_p=*/false);
23919 if (val > 0)
23920 {
23921 if (processing_template_decl)
23922 /* Try again at instantiation time. */
23923 return type;
23924 if (type && type != error_mark_node
23925 && (complain & tf_error))
23926 /* If type is error_mark_node a diagnostic must have been
23927 emitted by now. Also, having a mention to '<type error>'
23928 in the diagnostic is not really useful to the user. */
23929 {
23930 if (cfun && auto_node == current_function_auto_return_pattern
23931 && LAMBDA_FUNCTION_P (current_function_decl))
23932 error ("unable to deduce lambda return type from %qE", init);
23933 else
23934 error ("unable to deduce %qT from %qE", type, init);
23935 type_unification_real (tparms, targs, parms, &init, 1, 0,
23936 DEDUCE_CALL, LOOKUP_NORMAL,
23937 NULL, /*explain_p=*/true);
23938 }
23939 return error_mark_node;
23940 }
23941 }
23942
23943 /* Check any placeholder constraints against the deduced type. */
23944 if (flag_concepts && !processing_template_decl)
23945 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
23946 {
23947 /* Use the deduced type to check the associated constraints. */
23948 if (!constraints_satisfied_p (constr, targs))
23949 {
23950 if (complain & tf_warning_or_error)
23951 {
23952 switch (context)
23953 {
23954 case adc_unspecified:
23955 error("placeholder constraints not satisfied");
23956 break;
23957 case adc_variable_type:
23958 error ("deduced initializer does not satisfy "
23959 "placeholder constraints");
23960 break;
23961 case adc_return_type:
23962 error ("deduced return type does not satisfy "
23963 "placeholder constraints");
23964 break;
23965 case adc_requirement:
23966 error ("deduced expression type does not saatisy "
23967 "placeholder constraints");
23968 break;
23969 }
23970 diagnose_constraints (input_location, constr, targs);
23971 }
23972 return error_mark_node;
23973 }
23974 }
23975
23976 if (processing_template_decl)
23977 targs = add_to_template_args (current_template_args (), targs);
23978 return tsubst (type, targs, complain, NULL_TREE);
23979 }
23980
23981 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
23982 result. */
23983
23984 tree
23985 splice_late_return_type (tree type, tree late_return_type)
23986 {
23987 if (is_auto (type))
23988 {
23989 if (late_return_type)
23990 return late_return_type;
23991
23992 tree idx = get_template_parm_index (type);
23993 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
23994 /* In an abbreviated function template we didn't know we were dealing
23995 with a function template when we saw the auto return type, so update
23996 it to have the correct level. */
23997 return make_auto_1 (TYPE_IDENTIFIER (type), true);
23998 }
23999 return type;
24000 }
24001
24002 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
24003 'decltype(auto)'. */
24004
24005 bool
24006 is_auto (const_tree type)
24007 {
24008 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
24009 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
24010 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
24011 return true;
24012 else
24013 return false;
24014 }
24015
24016 /* for_each_template_parm callback for type_uses_auto. */
24017
24018 int
24019 is_auto_r (tree tp, void */*data*/)
24020 {
24021 return is_auto_or_concept (tp);
24022 }
24023
24024 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
24025 a use of `auto'. Returns NULL_TREE otherwise. */
24026
24027 tree
24028 type_uses_auto (tree type)
24029 {
24030 if (type == NULL_TREE)
24031 return NULL_TREE;
24032 else if (flag_concepts)
24033 {
24034 /* The Concepts TS allows multiple autos in one type-specifier; just
24035 return the first one we find, do_auto_deduction will collect all of
24036 them. */
24037 if (uses_template_parms (type))
24038 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
24039 /*visited*/NULL, /*nondeduced*/true);
24040 else
24041 return NULL_TREE;
24042 }
24043 else
24044 return find_type_usage (type, is_auto);
24045 }
24046
24047 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
24048 'decltype(auto)' or a concept. */
24049
24050 bool
24051 is_auto_or_concept (const_tree type)
24052 {
24053 return is_auto (type); // or concept
24054 }
24055
24056 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
24057 a concept identifier) iff TYPE contains a use of a generic type. Returns
24058 NULL_TREE otherwise. */
24059
24060 tree
24061 type_uses_auto_or_concept (tree type)
24062 {
24063 return find_type_usage (type, is_auto_or_concept);
24064 }
24065
24066
24067 /* For a given template T, return the vector of typedefs referenced
24068 in T for which access check is needed at T instantiation time.
24069 T is either a FUNCTION_DECL or a RECORD_TYPE.
24070 Those typedefs were added to T by the function
24071 append_type_to_template_for_access_check. */
24072
24073 vec<qualified_typedef_usage_t, va_gc> *
24074 get_types_needing_access_check (tree t)
24075 {
24076 tree ti;
24077 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
24078
24079 if (!t || t == error_mark_node)
24080 return NULL;
24081
24082 if (!(ti = get_template_info (t)))
24083 return NULL;
24084
24085 if (CLASS_TYPE_P (t)
24086 || TREE_CODE (t) == FUNCTION_DECL)
24087 {
24088 if (!TI_TEMPLATE (ti))
24089 return NULL;
24090
24091 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
24092 }
24093
24094 return result;
24095 }
24096
24097 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
24098 tied to T. That list of typedefs will be access checked at
24099 T instantiation time.
24100 T is either a FUNCTION_DECL or a RECORD_TYPE.
24101 TYPE_DECL is a TYPE_DECL node representing a typedef.
24102 SCOPE is the scope through which TYPE_DECL is accessed.
24103 LOCATION is the location of the usage point of TYPE_DECL.
24104
24105 This function is a subroutine of
24106 append_type_to_template_for_access_check. */
24107
24108 static void
24109 append_type_to_template_for_access_check_1 (tree t,
24110 tree type_decl,
24111 tree scope,
24112 location_t location)
24113 {
24114 qualified_typedef_usage_t typedef_usage;
24115 tree ti;
24116
24117 if (!t || t == error_mark_node)
24118 return;
24119
24120 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
24121 || CLASS_TYPE_P (t))
24122 && type_decl
24123 && TREE_CODE (type_decl) == TYPE_DECL
24124 && scope);
24125
24126 if (!(ti = get_template_info (t)))
24127 return;
24128
24129 gcc_assert (TI_TEMPLATE (ti));
24130
24131 typedef_usage.typedef_decl = type_decl;
24132 typedef_usage.context = scope;
24133 typedef_usage.locus = location;
24134
24135 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
24136 }
24137
24138 /* Append TYPE_DECL to the template TEMPL.
24139 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
24140 At TEMPL instanciation time, TYPE_DECL will be checked to see
24141 if it can be accessed through SCOPE.
24142 LOCATION is the location of the usage point of TYPE_DECL.
24143
24144 e.g. consider the following code snippet:
24145
24146 class C
24147 {
24148 typedef int myint;
24149 };
24150
24151 template<class U> struct S
24152 {
24153 C::myint mi; // <-- usage point of the typedef C::myint
24154 };
24155
24156 S<char> s;
24157
24158 At S<char> instantiation time, we need to check the access of C::myint
24159 In other words, we need to check the access of the myint typedef through
24160 the C scope. For that purpose, this function will add the myint typedef
24161 and the scope C through which its being accessed to a list of typedefs
24162 tied to the template S. That list will be walked at template instantiation
24163 time and access check performed on each typedefs it contains.
24164 Note that this particular code snippet should yield an error because
24165 myint is private to C. */
24166
24167 void
24168 append_type_to_template_for_access_check (tree templ,
24169 tree type_decl,
24170 tree scope,
24171 location_t location)
24172 {
24173 qualified_typedef_usage_t *iter;
24174 unsigned i;
24175
24176 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
24177
24178 /* Make sure we don't append the type to the template twice. */
24179 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
24180 if (iter->typedef_decl == type_decl && scope == iter->context)
24181 return;
24182
24183 append_type_to_template_for_access_check_1 (templ, type_decl,
24184 scope, location);
24185 }
24186
24187 /* Convert the generic type parameters in PARM that match the types given in the
24188 range [START_IDX, END_IDX) from the current_template_parms into generic type
24189 packs. */
24190
24191 tree
24192 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
24193 {
24194 tree current = current_template_parms;
24195 int depth = TMPL_PARMS_DEPTH (current);
24196 current = INNERMOST_TEMPLATE_PARMS (current);
24197 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
24198
24199 for (int i = 0; i < start_idx; ++i)
24200 TREE_VEC_ELT (replacement, i)
24201 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24202
24203 for (int i = start_idx; i < end_idx; ++i)
24204 {
24205 /* Create a distinct parameter pack type from the current parm and add it
24206 to the replacement args to tsubst below into the generic function
24207 parameter. */
24208
24209 tree o = TREE_TYPE (TREE_VALUE
24210 (TREE_VEC_ELT (current, i)));
24211 tree t = copy_type (o);
24212 TEMPLATE_TYPE_PARM_INDEX (t)
24213 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
24214 o, 0, 0, tf_none);
24215 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
24216 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
24217 TYPE_MAIN_VARIANT (t) = t;
24218 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
24219 TYPE_CANONICAL (t) = canonical_type_parameter (t);
24220 TREE_VEC_ELT (replacement, i) = t;
24221 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24222 }
24223
24224 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24225 TREE_VEC_ELT (replacement, i)
24226 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24227
24228 /* If there are more levels then build up the replacement with the outer
24229 template parms. */
24230 if (depth > 1)
24231 replacement = add_to_template_args (template_parms_to_args
24232 (TREE_CHAIN (current_template_parms)),
24233 replacement);
24234
24235 return tsubst (parm, replacement, tf_none, NULL_TREE);
24236 }
24237
24238 /* Entries in the decl_constraint hash table. */
24239 struct GTY((for_user)) constr_entry
24240 {
24241 tree decl;
24242 tree ci;
24243 };
24244
24245 /* Hashing function and equality for constraint entries. */
24246 struct constr_hasher : ggc_ptr_hash<constr_entry>
24247 {
24248 static hashval_t hash (constr_entry *e)
24249 {
24250 return (hashval_t)DECL_UID (e->decl);
24251 }
24252
24253 static bool equal (constr_entry *e1, constr_entry *e2)
24254 {
24255 return e1->decl == e2->decl;
24256 }
24257 };
24258
24259 /* A mapping from declarations to constraint information. Note that
24260 both templates and their underlying declarations are mapped to the
24261 same constraint information.
24262
24263 FIXME: This is defined in pt.c because garbage collection
24264 code is not being generated for constraint.cc. */
24265
24266 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24267
24268 /* Returns true iff cinfo contains a valid set of constraints.
24269 This is the case when the associated requirements have been
24270 successfully decomposed into lists of atomic constraints.
24271 That is, when the saved assumptions are not error_mark_node. */
24272
24273 bool
24274 valid_constraints_p (tree cinfo)
24275 {
24276 gcc_assert (cinfo);
24277 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
24278 }
24279
24280 /* Returns the template constraints of declaration T. If T is not
24281 constrained, return NULL_TREE. Note that T must be non-null. */
24282
24283 tree
24284 get_constraints (tree t)
24285 {
24286 gcc_assert (DECL_P (t));
24287 if (TREE_CODE (t) == TEMPLATE_DECL)
24288 t = DECL_TEMPLATE_RESULT (t);
24289 constr_entry elt = { t, NULL_TREE };
24290 constr_entry* found = decl_constraints->find (&elt);
24291 if (found)
24292 return found->ci;
24293 else
24294 return NULL_TREE;
24295 }
24296
24297 /* Associate the given constraint information CI with the declaration
24298 T. If T is a template, then the constraints are associated with
24299 its underlying declaration. Don't build associations if CI is
24300 NULL_TREE. */
24301
24302 void
24303 set_constraints (tree t, tree ci)
24304 {
24305 if (!ci)
24306 return;
24307 gcc_assert (t);
24308 if (TREE_CODE (t) == TEMPLATE_DECL)
24309 t = DECL_TEMPLATE_RESULT (t);
24310 gcc_assert (!get_constraints (t));
24311 constr_entry elt = {t, ci};
24312 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24313 constr_entry* entry = ggc_alloc<constr_entry> ();
24314 *entry = elt;
24315 *slot = entry;
24316 }
24317
24318 /* Remove the associated constraints of the declaration T. */
24319
24320 void
24321 remove_constraints (tree t)
24322 {
24323 gcc_assert (DECL_P (t));
24324 if (TREE_CODE (t) == TEMPLATE_DECL)
24325 t = DECL_TEMPLATE_RESULT (t);
24326
24327 constr_entry elt = {t, NULL_TREE};
24328 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24329 if (slot)
24330 decl_constraints->clear_slot (slot);
24331 }
24332
24333 /* Set up the hash table for constraint association. */
24334
24335 void
24336 init_constraint_processing (void)
24337 {
24338 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24339 }
24340
24341 /* Set up the hash tables for template instantiations. */
24342
24343 void
24344 init_template_processing (void)
24345 {
24346 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24347 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24348 }
24349
24350 /* Print stats about the template hash tables for -fstats. */
24351
24352 void
24353 print_template_statistics (void)
24354 {
24355 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24356 "%f collisions\n", (long) decl_specializations->size (),
24357 (long) decl_specializations->elements (),
24358 decl_specializations->collisions ());
24359 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24360 "%f collisions\n", (long) type_specializations->size (),
24361 (long) type_specializations->elements (),
24362 type_specializations->collisions ());
24363 }
24364
24365 #include "gt-cp-pt.h"