re PR c++/64266 (Can GCC produce local mergeable symbols for *.__FUNCTION__ and ...
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2016 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Known bugs or deficiencies include:
23
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "cp-tree.h"
31 #include "timevar.h"
32 #include "stringpool.h"
33 #include "varasm.h"
34 #include "attribs.h"
35 #include "stor-layout.h"
36 #include "intl.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "toplev.h"
40 #include "tree-iterator.h"
41 #include "type-utils.h"
42 #include "gimplify.h"
43
44 /* The type of functions taking a tree, and some additional data, and
45 returning an int. */
46 typedef int (*tree_fn_t) (tree, void*);
47
48 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
49 instantiations have been deferred, either because their definitions
50 were not yet available, or because we were putting off doing the work. */
51 struct GTY ((chain_next ("%h.next"))) pending_template {
52 struct pending_template *next;
53 struct tinst_level *tinst;
54 };
55
56 static GTY(()) struct pending_template *pending_templates;
57 static GTY(()) struct pending_template *last_pending_template;
58
59 int processing_template_parmlist;
60 static int template_header_count;
61
62 static GTY(()) tree saved_trees;
63 static vec<int> inline_parm_levels;
64
65 static GTY(()) struct tinst_level *current_tinst_level;
66
67 static GTY(()) tree saved_access_scope;
68
69 /* Live only within one (recursive) call to tsubst_expr. We use
70 this to pass the statement expression node from the STMT_EXPR
71 to the EXPR_STMT that is its result. */
72 static tree cur_stmt_expr;
73
74 // -------------------------------------------------------------------------- //
75 // Local Specialization Stack
76 //
77 // Implementation of the RAII helper for creating new local
78 // specializations.
79 local_specialization_stack::local_specialization_stack ()
80 : saved (local_specializations)
81 {
82 local_specializations = new hash_map<tree, tree>;
83 }
84
85 local_specialization_stack::~local_specialization_stack ()
86 {
87 delete local_specializations;
88 local_specializations = saved;
89 }
90
91 /* True if we've recursed into fn_type_unification too many times. */
92 static bool excessive_deduction_depth;
93
94 struct GTY((for_user)) spec_entry
95 {
96 tree tmpl;
97 tree args;
98 tree spec;
99 };
100
101 struct spec_hasher : ggc_ptr_hash<spec_entry>
102 {
103 static hashval_t hash (spec_entry *);
104 static bool equal (spec_entry *, spec_entry *);
105 };
106
107 static GTY (()) hash_table<spec_hasher> *decl_specializations;
108
109 static GTY (()) hash_table<spec_hasher> *type_specializations;
110
111 /* Contains canonical template parameter types. The vector is indexed by
112 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
113 TREE_LIST, whose TREE_VALUEs contain the canonical template
114 parameters of various types and levels. */
115 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
116
117 #define UNIFY_ALLOW_NONE 0
118 #define UNIFY_ALLOW_MORE_CV_QUAL 1
119 #define UNIFY_ALLOW_LESS_CV_QUAL 2
120 #define UNIFY_ALLOW_DERIVED 4
121 #define UNIFY_ALLOW_INTEGER 8
122 #define UNIFY_ALLOW_OUTER_LEVEL 16
123 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
124 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
125
126 enum template_base_result {
127 tbr_incomplete_type,
128 tbr_ambiguous_baseclass,
129 tbr_success
130 };
131
132 static void push_access_scope (tree);
133 static void pop_access_scope (tree);
134 static bool resolve_overloaded_unification (tree, tree, tree, tree,
135 unification_kind_t, int,
136 bool);
137 static int try_one_overload (tree, tree, tree, tree, tree,
138 unification_kind_t, int, bool, bool);
139 static int unify (tree, tree, tree, tree, int, bool);
140 static void add_pending_template (tree);
141 static tree reopen_tinst_level (struct tinst_level *);
142 static tree tsubst_initializer_list (tree, tree);
143 static tree get_partial_spec_bindings (tree, tree, tree, tree);
144 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
145 bool, bool);
146 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
147 bool, bool);
148 static void tsubst_enum (tree, tree, tree);
149 static tree add_to_template_args (tree, tree);
150 static tree add_outermost_template_args (tree, tree);
151 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
152 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
153 tree);
154 static int type_unification_real (tree, tree, tree, const tree *,
155 unsigned int, int, unification_kind_t, int,
156 vec<deferred_access_check, va_gc> **,
157 bool);
158 static void note_template_header (int);
159 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
160 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
161 static tree convert_template_argument (tree, tree, tree,
162 tsubst_flags_t, int, tree);
163 static tree for_each_template_parm (tree, tree_fn_t, void*,
164 hash_set<tree> *, bool);
165 static tree expand_template_argument_pack (tree);
166 static tree build_template_parm_index (int, int, int, tree, tree);
167 static bool inline_needs_template_parms (tree, bool);
168 static void push_inline_template_parms_recursive (tree, int);
169 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
170 static int mark_template_parm (tree, void *);
171 static int template_parm_this_level_p (tree, void *);
172 static tree tsubst_friend_function (tree, tree);
173 static tree tsubst_friend_class (tree, tree);
174 static int can_complete_type_without_circularity (tree);
175 static tree get_bindings (tree, tree, tree, bool);
176 static int template_decl_level (tree);
177 static int check_cv_quals_for_unify (int, tree, tree);
178 static void template_parm_level_and_index (tree, int*, int*);
179 static int unify_pack_expansion (tree, tree, tree,
180 tree, unification_kind_t, bool, bool);
181 static tree copy_template_args (tree);
182 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
183 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
184 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
185 static void regenerate_decl_from_template (tree, tree);
186 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
187 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
188 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
189 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
190 static bool check_specialization_scope (void);
191 static tree process_partial_specialization (tree);
192 static void set_current_access_from_decl (tree);
193 static enum template_base_result get_template_base (tree, tree, tree, tree,
194 bool , tree *);
195 static tree try_class_unification (tree, tree, tree, tree, bool);
196 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
197 tree, tree);
198 static bool template_template_parm_bindings_ok_p (tree, tree);
199 static int template_args_equal (tree, tree);
200 static void tsubst_default_arguments (tree, tsubst_flags_t);
201 static tree for_each_template_parm_r (tree *, int *, void *);
202 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
203 static void copy_default_args_to_explicit_spec (tree);
204 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
205 static bool dependent_template_arg_p (tree);
206 static bool any_template_arguments_need_structural_equality_p (tree);
207 static bool dependent_type_p_r (tree);
208 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
209 static tree tsubst_decl (tree, tree, tsubst_flags_t);
210 static void perform_typedefs_access_check (tree tmpl, tree targs);
211 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
212 location_t);
213 static tree listify (tree);
214 static tree listify_autos (tree, tree);
215 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
216 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
217 static bool complex_alias_template_p (const_tree tmpl);
218 static tree tsubst_attributes (tree, tree, tsubst_flags_t, tree);
219
220 /* Make the current scope suitable for access checking when we are
221 processing T. T can be FUNCTION_DECL for instantiated function
222 template, VAR_DECL for static member variable, or TYPE_DECL for
223 alias template (needed by instantiate_decl). */
224
225 static void
226 push_access_scope (tree t)
227 {
228 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
229 || TREE_CODE (t) == TYPE_DECL);
230
231 if (DECL_FRIEND_CONTEXT (t))
232 push_nested_class (DECL_FRIEND_CONTEXT (t));
233 else if (DECL_CLASS_SCOPE_P (t))
234 push_nested_class (DECL_CONTEXT (t));
235 else
236 push_to_top_level ();
237
238 if (TREE_CODE (t) == FUNCTION_DECL)
239 {
240 saved_access_scope = tree_cons
241 (NULL_TREE, current_function_decl, saved_access_scope);
242 current_function_decl = t;
243 }
244 }
245
246 /* Restore the scope set up by push_access_scope. T is the node we
247 are processing. */
248
249 static void
250 pop_access_scope (tree t)
251 {
252 if (TREE_CODE (t) == FUNCTION_DECL)
253 {
254 current_function_decl = TREE_VALUE (saved_access_scope);
255 saved_access_scope = TREE_CHAIN (saved_access_scope);
256 }
257
258 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
259 pop_nested_class ();
260 else
261 pop_from_top_level ();
262 }
263
264 /* Do any processing required when DECL (a member template
265 declaration) is finished. Returns the TEMPLATE_DECL corresponding
266 to DECL, unless it is a specialization, in which case the DECL
267 itself is returned. */
268
269 tree
270 finish_member_template_decl (tree decl)
271 {
272 if (decl == error_mark_node)
273 return error_mark_node;
274
275 gcc_assert (DECL_P (decl));
276
277 if (TREE_CODE (decl) == TYPE_DECL)
278 {
279 tree type;
280
281 type = TREE_TYPE (decl);
282 if (type == error_mark_node)
283 return error_mark_node;
284 if (MAYBE_CLASS_TYPE_P (type)
285 && CLASSTYPE_TEMPLATE_INFO (type)
286 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
287 {
288 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
289 check_member_template (tmpl);
290 return tmpl;
291 }
292 return NULL_TREE;
293 }
294 else if (TREE_CODE (decl) == FIELD_DECL)
295 error ("data member %qD cannot be a member template", decl);
296 else if (DECL_TEMPLATE_INFO (decl))
297 {
298 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
299 {
300 check_member_template (DECL_TI_TEMPLATE (decl));
301 return DECL_TI_TEMPLATE (decl);
302 }
303 else
304 return decl;
305 }
306 else
307 error ("invalid member template declaration %qD", decl);
308
309 return error_mark_node;
310 }
311
312 /* Create a template info node. */
313
314 tree
315 build_template_info (tree template_decl, tree template_args)
316 {
317 tree result = make_node (TEMPLATE_INFO);
318 TI_TEMPLATE (result) = template_decl;
319 TI_ARGS (result) = template_args;
320 return result;
321 }
322
323 /* Return the template info node corresponding to T, whatever T is. */
324
325 tree
326 get_template_info (const_tree t)
327 {
328 tree tinfo = NULL_TREE;
329
330 if (!t || t == error_mark_node)
331 return NULL;
332
333 if (TREE_CODE (t) == NAMESPACE_DECL
334 || TREE_CODE (t) == PARM_DECL)
335 return NULL;
336
337 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
338 tinfo = DECL_TEMPLATE_INFO (t);
339
340 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
341 t = TREE_TYPE (t);
342
343 if (OVERLOAD_TYPE_P (t))
344 tinfo = TYPE_TEMPLATE_INFO (t);
345 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
346 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
347
348 return tinfo;
349 }
350
351 /* Returns the template nesting level of the indicated class TYPE.
352
353 For example, in:
354 template <class T>
355 struct A
356 {
357 template <class U>
358 struct B {};
359 };
360
361 A<T>::B<U> has depth two, while A<T> has depth one.
362 Both A<T>::B<int> and A<int>::B<U> have depth one, if
363 they are instantiations, not specializations.
364
365 This function is guaranteed to return 0 if passed NULL_TREE so
366 that, for example, `template_class_depth (current_class_type)' is
367 always safe. */
368
369 int
370 template_class_depth (tree type)
371 {
372 int depth;
373
374 for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
375 {
376 tree tinfo = get_template_info (type);
377
378 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
379 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
380 ++depth;
381
382 if (DECL_P (type))
383 type = CP_DECL_CONTEXT (type);
384 else if (LAMBDA_TYPE_P (type))
385 type = LAMBDA_TYPE_EXTRA_SCOPE (type);
386 else
387 type = CP_TYPE_CONTEXT (type);
388 }
389
390 return depth;
391 }
392
393 /* Subroutine of maybe_begin_member_template_processing.
394 Returns true if processing DECL needs us to push template parms. */
395
396 static bool
397 inline_needs_template_parms (tree decl, bool nsdmi)
398 {
399 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
400 return false;
401
402 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
403 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
404 }
405
406 /* Subroutine of maybe_begin_member_template_processing.
407 Push the template parms in PARMS, starting from LEVELS steps into the
408 chain, and ending at the beginning, since template parms are listed
409 innermost first. */
410
411 static void
412 push_inline_template_parms_recursive (tree parmlist, int levels)
413 {
414 tree parms = TREE_VALUE (parmlist);
415 int i;
416
417 if (levels > 1)
418 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
419
420 ++processing_template_decl;
421 current_template_parms
422 = tree_cons (size_int (processing_template_decl),
423 parms, current_template_parms);
424 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
425
426 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
427 NULL);
428 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
429 {
430 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
431
432 if (error_operand_p (parm))
433 continue;
434
435 gcc_assert (DECL_P (parm));
436
437 switch (TREE_CODE (parm))
438 {
439 case TYPE_DECL:
440 case TEMPLATE_DECL:
441 pushdecl (parm);
442 break;
443
444 case PARM_DECL:
445 /* Push the CONST_DECL. */
446 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
447 break;
448
449 default:
450 gcc_unreachable ();
451 }
452 }
453 }
454
455 /* Restore the template parameter context for a member template, a
456 friend template defined in a class definition, or a non-template
457 member of template class. */
458
459 void
460 maybe_begin_member_template_processing (tree decl)
461 {
462 tree parms;
463 int levels = 0;
464 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
465
466 if (nsdmi)
467 {
468 tree ctx = DECL_CONTEXT (decl);
469 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
470 /* Disregard full specializations (c++/60999). */
471 && uses_template_parms (ctx)
472 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
473 }
474
475 if (inline_needs_template_parms (decl, nsdmi))
476 {
477 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
478 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
479
480 if (DECL_TEMPLATE_SPECIALIZATION (decl))
481 {
482 --levels;
483 parms = TREE_CHAIN (parms);
484 }
485
486 push_inline_template_parms_recursive (parms, levels);
487 }
488
489 /* Remember how many levels of template parameters we pushed so that
490 we can pop them later. */
491 inline_parm_levels.safe_push (levels);
492 }
493
494 /* Undo the effects of maybe_begin_member_template_processing. */
495
496 void
497 maybe_end_member_template_processing (void)
498 {
499 int i;
500 int last;
501
502 if (inline_parm_levels.length () == 0)
503 return;
504
505 last = inline_parm_levels.pop ();
506 for (i = 0; i < last; ++i)
507 {
508 --processing_template_decl;
509 current_template_parms = TREE_CHAIN (current_template_parms);
510 poplevel (0, 0, 0);
511 }
512 }
513
514 /* Return a new template argument vector which contains all of ARGS,
515 but has as its innermost set of arguments the EXTRA_ARGS. */
516
517 static tree
518 add_to_template_args (tree args, tree extra_args)
519 {
520 tree new_args;
521 int extra_depth;
522 int i;
523 int j;
524
525 if (args == NULL_TREE || extra_args == error_mark_node)
526 return extra_args;
527
528 extra_depth = TMPL_ARGS_DEPTH (extra_args);
529 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
530
531 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
532 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
533
534 for (j = 1; j <= extra_depth; ++j, ++i)
535 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
536
537 return new_args;
538 }
539
540 /* Like add_to_template_args, but only the outermost ARGS are added to
541 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
542 (EXTRA_ARGS) levels are added. This function is used to combine
543 the template arguments from a partial instantiation with the
544 template arguments used to attain the full instantiation from the
545 partial instantiation. */
546
547 static tree
548 add_outermost_template_args (tree args, tree extra_args)
549 {
550 tree new_args;
551
552 /* If there are more levels of EXTRA_ARGS than there are ARGS,
553 something very fishy is going on. */
554 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
555
556 /* If *all* the new arguments will be the EXTRA_ARGS, just return
557 them. */
558 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
559 return extra_args;
560
561 /* For the moment, we make ARGS look like it contains fewer levels. */
562 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
563
564 new_args = add_to_template_args (args, extra_args);
565
566 /* Now, we restore ARGS to its full dimensions. */
567 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
568
569 return new_args;
570 }
571
572 /* Return the N levels of innermost template arguments from the ARGS. */
573
574 tree
575 get_innermost_template_args (tree args, int n)
576 {
577 tree new_args;
578 int extra_levels;
579 int i;
580
581 gcc_assert (n >= 0);
582
583 /* If N is 1, just return the innermost set of template arguments. */
584 if (n == 1)
585 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
586
587 /* If we're not removing anything, just return the arguments we were
588 given. */
589 extra_levels = TMPL_ARGS_DEPTH (args) - n;
590 gcc_assert (extra_levels >= 0);
591 if (extra_levels == 0)
592 return args;
593
594 /* Make a new set of arguments, not containing the outer arguments. */
595 new_args = make_tree_vec (n);
596 for (i = 1; i <= n; ++i)
597 SET_TMPL_ARGS_LEVEL (new_args, i,
598 TMPL_ARGS_LEVEL (args, i + extra_levels));
599
600 return new_args;
601 }
602
603 /* The inverse of get_innermost_template_args: Return all but the innermost
604 EXTRA_LEVELS levels of template arguments from the ARGS. */
605
606 static tree
607 strip_innermost_template_args (tree args, int extra_levels)
608 {
609 tree new_args;
610 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
611 int i;
612
613 gcc_assert (n >= 0);
614
615 /* If N is 1, just return the outermost set of template arguments. */
616 if (n == 1)
617 return TMPL_ARGS_LEVEL (args, 1);
618
619 /* If we're not removing anything, just return the arguments we were
620 given. */
621 gcc_assert (extra_levels >= 0);
622 if (extra_levels == 0)
623 return args;
624
625 /* Make a new set of arguments, not containing the inner arguments. */
626 new_args = make_tree_vec (n);
627 for (i = 1; i <= n; ++i)
628 SET_TMPL_ARGS_LEVEL (new_args, i,
629 TMPL_ARGS_LEVEL (args, i));
630
631 return new_args;
632 }
633
634 /* We've got a template header coming up; push to a new level for storing
635 the parms. */
636
637 void
638 begin_template_parm_list (void)
639 {
640 /* We use a non-tag-transparent scope here, which causes pushtag to
641 put tags in this scope, rather than in the enclosing class or
642 namespace scope. This is the right thing, since we want
643 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
644 global template class, push_template_decl handles putting the
645 TEMPLATE_DECL into top-level scope. For a nested template class,
646 e.g.:
647
648 template <class T> struct S1 {
649 template <class T> struct S2 {};
650 };
651
652 pushtag contains special code to call pushdecl_with_scope on the
653 TEMPLATE_DECL for S2. */
654 begin_scope (sk_template_parms, NULL);
655 ++processing_template_decl;
656 ++processing_template_parmlist;
657 note_template_header (0);
658
659 /* Add a dummy parameter level while we process the parameter list. */
660 current_template_parms
661 = tree_cons (size_int (processing_template_decl),
662 make_tree_vec (0),
663 current_template_parms);
664 }
665
666 /* This routine is called when a specialization is declared. If it is
667 invalid to declare a specialization here, an error is reported and
668 false is returned, otherwise this routine will return true. */
669
670 static bool
671 check_specialization_scope (void)
672 {
673 tree scope = current_scope ();
674
675 /* [temp.expl.spec]
676
677 An explicit specialization shall be declared in the namespace of
678 which the template is a member, or, for member templates, in the
679 namespace of which the enclosing class or enclosing class
680 template is a member. An explicit specialization of a member
681 function, member class or static data member of a class template
682 shall be declared in the namespace of which the class template
683 is a member. */
684 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
685 {
686 error ("explicit specialization in non-namespace scope %qD", scope);
687 return false;
688 }
689
690 /* [temp.expl.spec]
691
692 In an explicit specialization declaration for a member of a class
693 template or a member template that appears in namespace scope,
694 the member template and some of its enclosing class templates may
695 remain unspecialized, except that the declaration shall not
696 explicitly specialize a class member template if its enclosing
697 class templates are not explicitly specialized as well. */
698 if (current_template_parms)
699 {
700 error ("enclosing class templates are not explicitly specialized");
701 return false;
702 }
703
704 return true;
705 }
706
707 /* We've just seen template <>. */
708
709 bool
710 begin_specialization (void)
711 {
712 begin_scope (sk_template_spec, NULL);
713 note_template_header (1);
714 return check_specialization_scope ();
715 }
716
717 /* Called at then end of processing a declaration preceded by
718 template<>. */
719
720 void
721 end_specialization (void)
722 {
723 finish_scope ();
724 reset_specialization ();
725 }
726
727 /* Any template <>'s that we have seen thus far are not referring to a
728 function specialization. */
729
730 void
731 reset_specialization (void)
732 {
733 processing_specialization = 0;
734 template_header_count = 0;
735 }
736
737 /* We've just seen a template header. If SPECIALIZATION is nonzero,
738 it was of the form template <>. */
739
740 static void
741 note_template_header (int specialization)
742 {
743 processing_specialization = specialization;
744 template_header_count++;
745 }
746
747 /* We're beginning an explicit instantiation. */
748
749 void
750 begin_explicit_instantiation (void)
751 {
752 gcc_assert (!processing_explicit_instantiation);
753 processing_explicit_instantiation = true;
754 }
755
756
757 void
758 end_explicit_instantiation (void)
759 {
760 gcc_assert (processing_explicit_instantiation);
761 processing_explicit_instantiation = false;
762 }
763
764 /* An explicit specialization or partial specialization of TMPL is being
765 declared. Check that the namespace in which the specialization is
766 occurring is permissible. Returns false iff it is invalid to
767 specialize TMPL in the current namespace. */
768
769 static bool
770 check_specialization_namespace (tree tmpl)
771 {
772 tree tpl_ns = decl_namespace_context (tmpl);
773
774 /* [tmpl.expl.spec]
775
776 An explicit specialization shall be declared in the namespace of
777 which the template is a member, or, for member templates, in the
778 namespace of which the enclosing class or enclosing class
779 template is a member. An explicit specialization of a member
780 function, member class or static data member of a class template
781 shall be declared in the namespace of which the class template is
782 a member. */
783 if (current_scope() != DECL_CONTEXT (tmpl)
784 && !at_namespace_scope_p ())
785 {
786 error ("specialization of %qD must appear at namespace scope", tmpl);
787 return false;
788 }
789 if (is_associated_namespace (current_namespace, tpl_ns))
790 /* Same or super-using namespace. */
791 return true;
792 else
793 {
794 permerror (input_location,
795 "specialization of %qD in different namespace", tmpl);
796 permerror (DECL_SOURCE_LOCATION (tmpl),
797 " from definition of %q#D", tmpl);
798 return false;
799 }
800 }
801
802 /* SPEC is an explicit instantiation. Check that it is valid to
803 perform this explicit instantiation in the current namespace. */
804
805 static void
806 check_explicit_instantiation_namespace (tree spec)
807 {
808 tree ns;
809
810 /* DR 275: An explicit instantiation shall appear in an enclosing
811 namespace of its template. */
812 ns = decl_namespace_context (spec);
813 if (!is_ancestor (current_namespace, ns))
814 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
815 "(which does not enclose namespace %qD)",
816 spec, current_namespace, ns);
817 }
818
819 // Returns the type of a template specialization only if that
820 // specialization needs to be defined. Otherwise (e.g., if the type has
821 // already been defined), the function returns NULL_TREE.
822 static tree
823 maybe_new_partial_specialization (tree type)
824 {
825 // An implicit instantiation of an incomplete type implies
826 // the definition of a new class template.
827 //
828 // template<typename T>
829 // struct S;
830 //
831 // template<typename T>
832 // struct S<T*>;
833 //
834 // Here, S<T*> is an implicit instantiation of S whose type
835 // is incomplete.
836 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
837 return type;
838
839 // It can also be the case that TYPE is a completed specialization.
840 // Continuing the previous example, suppose we also declare:
841 //
842 // template<typename T>
843 // requires Integral<T>
844 // struct S<T*>;
845 //
846 // Here, S<T*> refers to the specialization S<T*> defined
847 // above. However, we need to differentiate definitions because
848 // we intend to define a new partial specialization. In this case,
849 // we rely on the fact that the constraints are different for
850 // this declaration than that above.
851 //
852 // Note that we also get here for injected class names and
853 // late-parsed template definitions. We must ensure that we
854 // do not create new type declarations for those cases.
855 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
856 {
857 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
858 tree args = CLASSTYPE_TI_ARGS (type);
859
860 // If there are no template parameters, this cannot be a new
861 // partial template specializtion?
862 if (!current_template_parms)
863 return NULL_TREE;
864
865 // The injected-class-name is not a new partial specialization.
866 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
867 return NULL_TREE;
868
869 // If the constraints are not the same as those of the primary
870 // then, we can probably create a new specialization.
871 tree type_constr = current_template_constraints ();
872
873 if (type == TREE_TYPE (tmpl))
874 {
875 tree main_constr = get_constraints (tmpl);
876 if (equivalent_constraints (type_constr, main_constr))
877 return NULL_TREE;
878 }
879
880 // Also, if there's a pre-existing specialization with matching
881 // constraints, then this also isn't new.
882 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
883 while (specs)
884 {
885 tree spec_tmpl = TREE_VALUE (specs);
886 tree spec_args = TREE_PURPOSE (specs);
887 tree spec_constr = get_constraints (spec_tmpl);
888 if (comp_template_args (args, spec_args)
889 && equivalent_constraints (type_constr, spec_constr))
890 return NULL_TREE;
891 specs = TREE_CHAIN (specs);
892 }
893
894 // Create a new type node (and corresponding type decl)
895 // for the newly declared specialization.
896 tree t = make_class_type (TREE_CODE (type));
897 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
898 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
899 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
900
901 /* We only need a separate type node for storing the definition of this
902 partial specialization; uses of S<T*> are unconstrained, so all are
903 equivalent. So keep TYPE_CANONICAL the same. */
904 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
905
906 // Build the corresponding type decl.
907 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
908 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
909 DECL_SOURCE_LOCATION (d) = input_location;
910
911 return t;
912 }
913
914 return NULL_TREE;
915 }
916
917 /* The TYPE is being declared. If it is a template type, that means it
918 is a partial specialization. Do appropriate error-checking. */
919
920 tree
921 maybe_process_partial_specialization (tree type)
922 {
923 tree context;
924
925 if (type == error_mark_node)
926 return error_mark_node;
927
928 /* A lambda that appears in specialization context is not itself a
929 specialization. */
930 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
931 return type;
932
933 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
934 {
935 error ("name of class shadows template template parameter %qD",
936 TYPE_NAME (type));
937 return error_mark_node;
938 }
939
940 context = TYPE_CONTEXT (type);
941
942 if (TYPE_ALIAS_P (type))
943 {
944 if (TYPE_TEMPLATE_INFO (type)
945 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
946 error ("specialization of alias template %qD",
947 TYPE_TI_TEMPLATE (type));
948 else
949 error ("explicit specialization of non-template %qT", type);
950 return error_mark_node;
951 }
952 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
953 {
954 /* This is for ordinary explicit specialization and partial
955 specialization of a template class such as:
956
957 template <> class C<int>;
958
959 or:
960
961 template <class T> class C<T*>;
962
963 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
964
965 if (tree t = maybe_new_partial_specialization (type))
966 {
967 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
968 && !at_namespace_scope_p ())
969 return error_mark_node;
970 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
971 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
972 if (processing_template_decl)
973 {
974 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
975 if (decl == error_mark_node)
976 return error_mark_node;
977 return TREE_TYPE (decl);
978 }
979 }
980 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
981 error ("specialization of %qT after instantiation", type);
982 else if (errorcount && !processing_specialization
983 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
984 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
985 /* Trying to define a specialization either without a template<> header
986 or in an inappropriate place. We've already given an error, so just
987 bail now so we don't actually define the specialization. */
988 return error_mark_node;
989 }
990 else if (CLASS_TYPE_P (type)
991 && !CLASSTYPE_USE_TEMPLATE (type)
992 && CLASSTYPE_TEMPLATE_INFO (type)
993 && context && CLASS_TYPE_P (context)
994 && CLASSTYPE_TEMPLATE_INFO (context))
995 {
996 /* This is for an explicit specialization of member class
997 template according to [temp.expl.spec/18]:
998
999 template <> template <class U> class C<int>::D;
1000
1001 The context `C<int>' must be an implicit instantiation.
1002 Otherwise this is just a member class template declared
1003 earlier like:
1004
1005 template <> class C<int> { template <class U> class D; };
1006 template <> template <class U> class C<int>::D;
1007
1008 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1009 while in the second case, `C<int>::D' is a primary template
1010 and `C<T>::D' may not exist. */
1011
1012 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1013 && !COMPLETE_TYPE_P (type))
1014 {
1015 tree t;
1016 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1017
1018 if (current_namespace
1019 != decl_namespace_context (tmpl))
1020 {
1021 permerror (input_location,
1022 "specializing %q#T in different namespace", type);
1023 permerror (DECL_SOURCE_LOCATION (tmpl),
1024 " from definition of %q#D", tmpl);
1025 }
1026
1027 /* Check for invalid specialization after instantiation:
1028
1029 template <> template <> class C<int>::D<int>;
1030 template <> template <class U> class C<int>::D; */
1031
1032 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1033 t; t = TREE_CHAIN (t))
1034 {
1035 tree inst = TREE_VALUE (t);
1036 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1037 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1038 {
1039 /* We already have a full specialization of this partial
1040 instantiation, or a full specialization has been
1041 looked up but not instantiated. Reassign it to the
1042 new member specialization template. */
1043 spec_entry elt;
1044 spec_entry *entry;
1045
1046 elt.tmpl = most_general_template (tmpl);
1047 elt.args = CLASSTYPE_TI_ARGS (inst);
1048 elt.spec = inst;
1049
1050 type_specializations->remove_elt (&elt);
1051
1052 elt.tmpl = tmpl;
1053 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1054
1055 spec_entry **slot
1056 = type_specializations->find_slot (&elt, INSERT);
1057 entry = ggc_alloc<spec_entry> ();
1058 *entry = elt;
1059 *slot = entry;
1060 }
1061 else
1062 /* But if we've had an implicit instantiation, that's a
1063 problem ([temp.expl.spec]/6). */
1064 error ("specialization %qT after instantiation %qT",
1065 type, inst);
1066 }
1067
1068 /* Mark TYPE as a specialization. And as a result, we only
1069 have one level of template argument for the innermost
1070 class template. */
1071 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1072 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1073 CLASSTYPE_TI_ARGS (type)
1074 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1075 }
1076 }
1077 else if (processing_specialization)
1078 {
1079 /* Someday C++0x may allow for enum template specialization. */
1080 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1081 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1082 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1083 "of %qD not allowed by ISO C++", type);
1084 else
1085 {
1086 error ("explicit specialization of non-template %qT", type);
1087 return error_mark_node;
1088 }
1089 }
1090
1091 return type;
1092 }
1093
1094 /* Returns nonzero if we can optimize the retrieval of specializations
1095 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1096 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1097
1098 static inline bool
1099 optimize_specialization_lookup_p (tree tmpl)
1100 {
1101 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1102 && DECL_CLASS_SCOPE_P (tmpl)
1103 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1104 parameter. */
1105 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1106 /* The optimized lookup depends on the fact that the
1107 template arguments for the member function template apply
1108 purely to the containing class, which is not true if the
1109 containing class is an explicit or partial
1110 specialization. */
1111 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1112 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1113 && !DECL_CONV_FN_P (tmpl)
1114 /* It is possible to have a template that is not a member
1115 template and is not a member of a template class:
1116
1117 template <typename T>
1118 struct S { friend A::f(); };
1119
1120 Here, the friend function is a template, but the context does
1121 not have template information. The optimized lookup relies
1122 on having ARGS be the template arguments for both the class
1123 and the function template. */
1124 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1125 }
1126
1127 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1128 gone through coerce_template_parms by now. */
1129
1130 static void
1131 verify_unstripped_args (tree args)
1132 {
1133 ++processing_template_decl;
1134 if (!any_dependent_template_arguments_p (args))
1135 {
1136 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1137 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1138 {
1139 tree arg = TREE_VEC_ELT (inner, i);
1140 if (TREE_CODE (arg) == TEMPLATE_DECL)
1141 /* OK */;
1142 else if (TYPE_P (arg))
1143 gcc_assert (strip_typedefs (arg, NULL) == arg);
1144 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1145 /* Allow typedefs on the type of a non-type argument, since a
1146 parameter can have them. */;
1147 else
1148 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1149 }
1150 }
1151 --processing_template_decl;
1152 }
1153
1154 /* Retrieve the specialization (in the sense of [temp.spec] - a
1155 specialization is either an instantiation or an explicit
1156 specialization) of TMPL for the given template ARGS. If there is
1157 no such specialization, return NULL_TREE. The ARGS are a vector of
1158 arguments, or a vector of vectors of arguments, in the case of
1159 templates with more than one level of parameters.
1160
1161 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1162 then we search for a partial specialization matching ARGS. This
1163 parameter is ignored if TMPL is not a class template.
1164
1165 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1166 result is a NONTYPE_ARGUMENT_PACK. */
1167
1168 static tree
1169 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1170 {
1171 if (tmpl == NULL_TREE)
1172 return NULL_TREE;
1173
1174 if (args == error_mark_node)
1175 return NULL_TREE;
1176
1177 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1178 || TREE_CODE (tmpl) == FIELD_DECL);
1179
1180 /* There should be as many levels of arguments as there are
1181 levels of parameters. */
1182 gcc_assert (TMPL_ARGS_DEPTH (args)
1183 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1184 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1185 : template_class_depth (DECL_CONTEXT (tmpl))));
1186
1187 if (flag_checking)
1188 verify_unstripped_args (args);
1189
1190 if (optimize_specialization_lookup_p (tmpl))
1191 {
1192 tree class_template;
1193 tree class_specialization;
1194 vec<tree, va_gc> *methods;
1195 tree fns;
1196 int idx;
1197
1198 /* The template arguments actually apply to the containing
1199 class. Find the class specialization with those
1200 arguments. */
1201 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1202 class_specialization
1203 = retrieve_specialization (class_template, args, 0);
1204 if (!class_specialization)
1205 return NULL_TREE;
1206 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1207 for the specialization. */
1208 idx = class_method_index_for_fn (class_specialization, tmpl);
1209 if (idx == -1)
1210 return NULL_TREE;
1211 /* Iterate through the methods with the indicated name, looking
1212 for the one that has an instance of TMPL. */
1213 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1214 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1215 {
1216 tree fn = OVL_CURRENT (fns);
1217 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1218 /* using-declarations can add base methods to the method vec,
1219 and we don't want those here. */
1220 && DECL_CONTEXT (fn) == class_specialization)
1221 return fn;
1222 }
1223 return NULL_TREE;
1224 }
1225 else
1226 {
1227 spec_entry *found;
1228 spec_entry elt;
1229 hash_table<spec_hasher> *specializations;
1230
1231 elt.tmpl = tmpl;
1232 elt.args = args;
1233 elt.spec = NULL_TREE;
1234
1235 if (DECL_CLASS_TEMPLATE_P (tmpl))
1236 specializations = type_specializations;
1237 else
1238 specializations = decl_specializations;
1239
1240 if (hash == 0)
1241 hash = spec_hasher::hash (&elt);
1242 found = specializations->find_with_hash (&elt, hash);
1243 if (found)
1244 return found->spec;
1245 }
1246
1247 return NULL_TREE;
1248 }
1249
1250 /* Like retrieve_specialization, but for local declarations. */
1251
1252 tree
1253 retrieve_local_specialization (tree tmpl)
1254 {
1255 if (local_specializations == NULL)
1256 return NULL_TREE;
1257
1258 tree *slot = local_specializations->get (tmpl);
1259 return slot ? *slot : NULL_TREE;
1260 }
1261
1262 /* Returns nonzero iff DECL is a specialization of TMPL. */
1263
1264 int
1265 is_specialization_of (tree decl, tree tmpl)
1266 {
1267 tree t;
1268
1269 if (TREE_CODE (decl) == FUNCTION_DECL)
1270 {
1271 for (t = decl;
1272 t != NULL_TREE;
1273 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1274 if (t == tmpl)
1275 return 1;
1276 }
1277 else
1278 {
1279 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1280
1281 for (t = TREE_TYPE (decl);
1282 t != NULL_TREE;
1283 t = CLASSTYPE_USE_TEMPLATE (t)
1284 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1285 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1286 return 1;
1287 }
1288
1289 return 0;
1290 }
1291
1292 /* Returns nonzero iff DECL is a specialization of friend declaration
1293 FRIEND_DECL according to [temp.friend]. */
1294
1295 bool
1296 is_specialization_of_friend (tree decl, tree friend_decl)
1297 {
1298 bool need_template = true;
1299 int template_depth;
1300
1301 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1302 || TREE_CODE (decl) == TYPE_DECL);
1303
1304 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1305 of a template class, we want to check if DECL is a specialization
1306 if this. */
1307 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1308 && DECL_TEMPLATE_INFO (friend_decl)
1309 && !DECL_USE_TEMPLATE (friend_decl))
1310 {
1311 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1312 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1313 need_template = false;
1314 }
1315 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1316 && !PRIMARY_TEMPLATE_P (friend_decl))
1317 need_template = false;
1318
1319 /* There is nothing to do if this is not a template friend. */
1320 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1321 return false;
1322
1323 if (is_specialization_of (decl, friend_decl))
1324 return true;
1325
1326 /* [temp.friend/6]
1327 A member of a class template may be declared to be a friend of a
1328 non-template class. In this case, the corresponding member of
1329 every specialization of the class template is a friend of the
1330 class granting friendship.
1331
1332 For example, given a template friend declaration
1333
1334 template <class T> friend void A<T>::f();
1335
1336 the member function below is considered a friend
1337
1338 template <> struct A<int> {
1339 void f();
1340 };
1341
1342 For this type of template friend, TEMPLATE_DEPTH below will be
1343 nonzero. To determine if DECL is a friend of FRIEND, we first
1344 check if the enclosing class is a specialization of another. */
1345
1346 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1347 if (template_depth
1348 && DECL_CLASS_SCOPE_P (decl)
1349 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1350 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1351 {
1352 /* Next, we check the members themselves. In order to handle
1353 a few tricky cases, such as when FRIEND_DECL's are
1354
1355 template <class T> friend void A<T>::g(T t);
1356 template <class T> template <T t> friend void A<T>::h();
1357
1358 and DECL's are
1359
1360 void A<int>::g(int);
1361 template <int> void A<int>::h();
1362
1363 we need to figure out ARGS, the template arguments from
1364 the context of DECL. This is required for template substitution
1365 of `T' in the function parameter of `g' and template parameter
1366 of `h' in the above examples. Here ARGS corresponds to `int'. */
1367
1368 tree context = DECL_CONTEXT (decl);
1369 tree args = NULL_TREE;
1370 int current_depth = 0;
1371
1372 while (current_depth < template_depth)
1373 {
1374 if (CLASSTYPE_TEMPLATE_INFO (context))
1375 {
1376 if (current_depth == 0)
1377 args = TYPE_TI_ARGS (context);
1378 else
1379 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1380 current_depth++;
1381 }
1382 context = TYPE_CONTEXT (context);
1383 }
1384
1385 if (TREE_CODE (decl) == FUNCTION_DECL)
1386 {
1387 bool is_template;
1388 tree friend_type;
1389 tree decl_type;
1390 tree friend_args_type;
1391 tree decl_args_type;
1392
1393 /* Make sure that both DECL and FRIEND_DECL are templates or
1394 non-templates. */
1395 is_template = DECL_TEMPLATE_INFO (decl)
1396 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1397 if (need_template ^ is_template)
1398 return false;
1399 else if (is_template)
1400 {
1401 /* If both are templates, check template parameter list. */
1402 tree friend_parms
1403 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1404 args, tf_none);
1405 if (!comp_template_parms
1406 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1407 friend_parms))
1408 return false;
1409
1410 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1411 }
1412 else
1413 decl_type = TREE_TYPE (decl);
1414
1415 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1416 tf_none, NULL_TREE);
1417 if (friend_type == error_mark_node)
1418 return false;
1419
1420 /* Check if return types match. */
1421 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1422 return false;
1423
1424 /* Check if function parameter types match, ignoring the
1425 `this' parameter. */
1426 friend_args_type = TYPE_ARG_TYPES (friend_type);
1427 decl_args_type = TYPE_ARG_TYPES (decl_type);
1428 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1429 friend_args_type = TREE_CHAIN (friend_args_type);
1430 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1431 decl_args_type = TREE_CHAIN (decl_args_type);
1432
1433 return compparms (decl_args_type, friend_args_type);
1434 }
1435 else
1436 {
1437 /* DECL is a TYPE_DECL */
1438 bool is_template;
1439 tree decl_type = TREE_TYPE (decl);
1440
1441 /* Make sure that both DECL and FRIEND_DECL are templates or
1442 non-templates. */
1443 is_template
1444 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1445 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1446
1447 if (need_template ^ is_template)
1448 return false;
1449 else if (is_template)
1450 {
1451 tree friend_parms;
1452 /* If both are templates, check the name of the two
1453 TEMPLATE_DECL's first because is_friend didn't. */
1454 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1455 != DECL_NAME (friend_decl))
1456 return false;
1457
1458 /* Now check template parameter list. */
1459 friend_parms
1460 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1461 args, tf_none);
1462 return comp_template_parms
1463 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1464 friend_parms);
1465 }
1466 else
1467 return (DECL_NAME (decl)
1468 == DECL_NAME (friend_decl));
1469 }
1470 }
1471 return false;
1472 }
1473
1474 /* Register the specialization SPEC as a specialization of TMPL with
1475 the indicated ARGS. IS_FRIEND indicates whether the specialization
1476 is actually just a friend declaration. Returns SPEC, or an
1477 equivalent prior declaration, if available.
1478
1479 We also store instantiations of field packs in the hash table, even
1480 though they are not themselves templates, to make lookup easier. */
1481
1482 static tree
1483 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1484 hashval_t hash)
1485 {
1486 tree fn;
1487 spec_entry **slot = NULL;
1488 spec_entry elt;
1489
1490 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1491 || (TREE_CODE (tmpl) == FIELD_DECL
1492 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1493
1494 if (TREE_CODE (spec) == FUNCTION_DECL
1495 && uses_template_parms (DECL_TI_ARGS (spec)))
1496 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1497 register it; we want the corresponding TEMPLATE_DECL instead.
1498 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1499 the more obvious `uses_template_parms (spec)' to avoid problems
1500 with default function arguments. In particular, given
1501 something like this:
1502
1503 template <class T> void f(T t1, T t = T())
1504
1505 the default argument expression is not substituted for in an
1506 instantiation unless and until it is actually needed. */
1507 return spec;
1508
1509 if (optimize_specialization_lookup_p (tmpl))
1510 /* We don't put these specializations in the hash table, but we might
1511 want to give an error about a mismatch. */
1512 fn = retrieve_specialization (tmpl, args, 0);
1513 else
1514 {
1515 elt.tmpl = tmpl;
1516 elt.args = args;
1517 elt.spec = spec;
1518
1519 if (hash == 0)
1520 hash = spec_hasher::hash (&elt);
1521
1522 slot =
1523 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1524 if (*slot)
1525 fn = ((spec_entry *) *slot)->spec;
1526 else
1527 fn = NULL_TREE;
1528 }
1529
1530 /* We can sometimes try to re-register a specialization that we've
1531 already got. In particular, regenerate_decl_from_template calls
1532 duplicate_decls which will update the specialization list. But,
1533 we'll still get called again here anyhow. It's more convenient
1534 to simply allow this than to try to prevent it. */
1535 if (fn == spec)
1536 return spec;
1537 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1538 {
1539 if (DECL_TEMPLATE_INSTANTIATION (fn))
1540 {
1541 if (DECL_ODR_USED (fn)
1542 || DECL_EXPLICIT_INSTANTIATION (fn))
1543 {
1544 error ("specialization of %qD after instantiation",
1545 fn);
1546 return error_mark_node;
1547 }
1548 else
1549 {
1550 tree clone;
1551 /* This situation should occur only if the first
1552 specialization is an implicit instantiation, the
1553 second is an explicit specialization, and the
1554 implicit instantiation has not yet been used. That
1555 situation can occur if we have implicitly
1556 instantiated a member function and then specialized
1557 it later.
1558
1559 We can also wind up here if a friend declaration that
1560 looked like an instantiation turns out to be a
1561 specialization:
1562
1563 template <class T> void foo(T);
1564 class S { friend void foo<>(int) };
1565 template <> void foo(int);
1566
1567 We transform the existing DECL in place so that any
1568 pointers to it become pointers to the updated
1569 declaration.
1570
1571 If there was a definition for the template, but not
1572 for the specialization, we want this to look as if
1573 there were no definition, and vice versa. */
1574 DECL_INITIAL (fn) = NULL_TREE;
1575 duplicate_decls (spec, fn, is_friend);
1576 /* The call to duplicate_decls will have applied
1577 [temp.expl.spec]:
1578
1579 An explicit specialization of a function template
1580 is inline only if it is explicitly declared to be,
1581 and independently of whether its function template
1582 is.
1583
1584 to the primary function; now copy the inline bits to
1585 the various clones. */
1586 FOR_EACH_CLONE (clone, fn)
1587 {
1588 DECL_DECLARED_INLINE_P (clone)
1589 = DECL_DECLARED_INLINE_P (fn);
1590 DECL_SOURCE_LOCATION (clone)
1591 = DECL_SOURCE_LOCATION (fn);
1592 DECL_DELETED_FN (clone)
1593 = DECL_DELETED_FN (fn);
1594 }
1595 check_specialization_namespace (tmpl);
1596
1597 return fn;
1598 }
1599 }
1600 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1601 {
1602 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1603 /* Dup decl failed, but this is a new definition. Set the
1604 line number so any errors match this new
1605 definition. */
1606 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1607
1608 return fn;
1609 }
1610 }
1611 else if (fn)
1612 return duplicate_decls (spec, fn, is_friend);
1613
1614 /* A specialization must be declared in the same namespace as the
1615 template it is specializing. */
1616 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1617 && !check_specialization_namespace (tmpl))
1618 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1619
1620 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1621 {
1622 spec_entry *entry = ggc_alloc<spec_entry> ();
1623 gcc_assert (tmpl && args && spec);
1624 *entry = elt;
1625 *slot = entry;
1626 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1627 && PRIMARY_TEMPLATE_P (tmpl)
1628 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1629 || variable_template_p (tmpl))
1630 /* If TMPL is a forward declaration of a template function, keep a list
1631 of all specializations in case we need to reassign them to a friend
1632 template later in tsubst_friend_function.
1633
1634 Also keep a list of all variable template instantiations so that
1635 process_partial_specialization can check whether a later partial
1636 specialization would have used it. */
1637 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1638 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1639 }
1640
1641 return spec;
1642 }
1643
1644 /* Returns true iff two spec_entry nodes are equivalent. */
1645
1646 int comparing_specializations;
1647
1648 bool
1649 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1650 {
1651 int equal;
1652
1653 ++comparing_specializations;
1654 equal = (e1->tmpl == e2->tmpl
1655 && comp_template_args (e1->args, e2->args));
1656 if (equal && flag_concepts
1657 /* tmpl could be a FIELD_DECL for a capture pack. */
1658 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1659 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1660 && uses_template_parms (e1->args))
1661 {
1662 /* Partial specializations of a variable template can be distinguished by
1663 constraints. */
1664 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1665 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1666 equal = equivalent_constraints (c1, c2);
1667 }
1668 --comparing_specializations;
1669
1670 return equal;
1671 }
1672
1673 /* Returns a hash for a template TMPL and template arguments ARGS. */
1674
1675 static hashval_t
1676 hash_tmpl_and_args (tree tmpl, tree args)
1677 {
1678 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1679 return iterative_hash_template_arg (args, val);
1680 }
1681
1682 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1683 ignoring SPEC. */
1684
1685 hashval_t
1686 spec_hasher::hash (spec_entry *e)
1687 {
1688 return hash_tmpl_and_args (e->tmpl, e->args);
1689 }
1690
1691 /* Recursively calculate a hash value for a template argument ARG, for use
1692 in the hash tables of template specializations. */
1693
1694 hashval_t
1695 iterative_hash_template_arg (tree arg, hashval_t val)
1696 {
1697 unsigned HOST_WIDE_INT i;
1698 enum tree_code code;
1699 char tclass;
1700
1701 if (arg == NULL_TREE)
1702 return iterative_hash_object (arg, val);
1703
1704 if (!TYPE_P (arg))
1705 STRIP_NOPS (arg);
1706
1707 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1708 /* We can get one of these when re-hashing a previous entry in the middle
1709 of substituting into a pack expansion. Just look through it. */
1710 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1711
1712 code = TREE_CODE (arg);
1713 tclass = TREE_CODE_CLASS (code);
1714
1715 val = iterative_hash_object (code, val);
1716
1717 switch (code)
1718 {
1719 case ERROR_MARK:
1720 return val;
1721
1722 case IDENTIFIER_NODE:
1723 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1724
1725 case TREE_VEC:
1726 {
1727 int i, len = TREE_VEC_LENGTH (arg);
1728 for (i = 0; i < len; ++i)
1729 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1730 return val;
1731 }
1732
1733 case TYPE_PACK_EXPANSION:
1734 case EXPR_PACK_EXPANSION:
1735 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1736 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1737
1738 case TYPE_ARGUMENT_PACK:
1739 case NONTYPE_ARGUMENT_PACK:
1740 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1741
1742 case TREE_LIST:
1743 for (; arg; arg = TREE_CHAIN (arg))
1744 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1745 return val;
1746
1747 case OVERLOAD:
1748 for (; arg; arg = OVL_NEXT (arg))
1749 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1750 return val;
1751
1752 case CONSTRUCTOR:
1753 {
1754 tree field, value;
1755 iterative_hash_template_arg (TREE_TYPE (arg), val);
1756 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1757 {
1758 val = iterative_hash_template_arg (field, val);
1759 val = iterative_hash_template_arg (value, val);
1760 }
1761 return val;
1762 }
1763
1764 case PARM_DECL:
1765 if (!DECL_ARTIFICIAL (arg))
1766 {
1767 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1768 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1769 }
1770 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1771
1772 case TARGET_EXPR:
1773 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1774
1775 case PTRMEM_CST:
1776 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1777 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1778
1779 case TEMPLATE_PARM_INDEX:
1780 val = iterative_hash_template_arg
1781 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1782 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1783 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1784
1785 case TRAIT_EXPR:
1786 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1787 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1788 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1789
1790 case BASELINK:
1791 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1792 val);
1793 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1794 val);
1795
1796 case MODOP_EXPR:
1797 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1798 code = TREE_CODE (TREE_OPERAND (arg, 1));
1799 val = iterative_hash_object (code, val);
1800 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1801
1802 case LAMBDA_EXPR:
1803 /* A lambda can't appear in a template arg, but don't crash on
1804 erroneous input. */
1805 gcc_assert (seen_error ());
1806 return val;
1807
1808 case CAST_EXPR:
1809 case IMPLICIT_CONV_EXPR:
1810 case STATIC_CAST_EXPR:
1811 case REINTERPRET_CAST_EXPR:
1812 case CONST_CAST_EXPR:
1813 case DYNAMIC_CAST_EXPR:
1814 case NEW_EXPR:
1815 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1816 /* Now hash operands as usual. */
1817 break;
1818
1819 default:
1820 break;
1821 }
1822
1823 switch (tclass)
1824 {
1825 case tcc_type:
1826 if (alias_template_specialization_p (arg))
1827 {
1828 // We want an alias specialization that survived strip_typedefs
1829 // to hash differently from its TYPE_CANONICAL, to avoid hash
1830 // collisions that compare as different in template_args_equal.
1831 // These could be dependent specializations that strip_typedefs
1832 // left alone, or untouched specializations because
1833 // coerce_template_parms returns the unconverted template
1834 // arguments if it sees incomplete argument packs.
1835 tree ti = TYPE_TEMPLATE_INFO (arg);
1836 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1837 }
1838 if (TYPE_CANONICAL (arg))
1839 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1840 val);
1841 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1842 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1843 /* Otherwise just compare the types during lookup. */
1844 return val;
1845
1846 case tcc_declaration:
1847 case tcc_constant:
1848 return iterative_hash_expr (arg, val);
1849
1850 default:
1851 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1852 {
1853 unsigned n = cp_tree_operand_length (arg);
1854 for (i = 0; i < n; ++i)
1855 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1856 return val;
1857 }
1858 }
1859 gcc_unreachable ();
1860 return 0;
1861 }
1862
1863 /* Unregister the specialization SPEC as a specialization of TMPL.
1864 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1865 if the SPEC was listed as a specialization of TMPL.
1866
1867 Note that SPEC has been ggc_freed, so we can't look inside it. */
1868
1869 bool
1870 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1871 {
1872 spec_entry *entry;
1873 spec_entry elt;
1874
1875 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1876 elt.args = TI_ARGS (tinfo);
1877 elt.spec = NULL_TREE;
1878
1879 entry = decl_specializations->find (&elt);
1880 if (entry != NULL)
1881 {
1882 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1883 gcc_assert (new_spec != NULL_TREE);
1884 entry->spec = new_spec;
1885 return 1;
1886 }
1887
1888 return 0;
1889 }
1890
1891 /* Like register_specialization, but for local declarations. We are
1892 registering SPEC, an instantiation of TMPL. */
1893
1894 void
1895 register_local_specialization (tree spec, tree tmpl)
1896 {
1897 local_specializations->put (tmpl, spec);
1898 }
1899
1900 /* TYPE is a class type. Returns true if TYPE is an explicitly
1901 specialized class. */
1902
1903 bool
1904 explicit_class_specialization_p (tree type)
1905 {
1906 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1907 return false;
1908 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1909 }
1910
1911 /* Print the list of functions at FNS, going through all the overloads
1912 for each element of the list. Alternatively, FNS can not be a
1913 TREE_LIST, in which case it will be printed together with all the
1914 overloads.
1915
1916 MORE and *STR should respectively be FALSE and NULL when the function
1917 is called from the outside. They are used internally on recursive
1918 calls. print_candidates manages the two parameters and leaves NULL
1919 in *STR when it ends. */
1920
1921 static void
1922 print_candidates_1 (tree fns, bool more, const char **str)
1923 {
1924 tree fn, fn2;
1925 char *spaces = NULL;
1926
1927 for (fn = fns; fn; fn = OVL_NEXT (fn))
1928 if (TREE_CODE (fn) == TREE_LIST)
1929 {
1930 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1931 print_candidates_1 (TREE_VALUE (fn2),
1932 TREE_CHAIN (fn2) || more, str);
1933 }
1934 else
1935 {
1936 tree cand = OVL_CURRENT (fn);
1937 if (!*str)
1938 {
1939 /* Pick the prefix string. */
1940 if (!more && !OVL_NEXT (fns))
1941 {
1942 inform (DECL_SOURCE_LOCATION (cand),
1943 "candidate is: %#D", cand);
1944 continue;
1945 }
1946
1947 *str = _("candidates are:");
1948 spaces = get_spaces (*str);
1949 }
1950 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1951 *str = spaces ? spaces : *str;
1952 }
1953
1954 if (!more)
1955 {
1956 free (spaces);
1957 *str = NULL;
1958 }
1959 }
1960
1961 /* Print the list of candidate FNS in an error message. FNS can also
1962 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1963
1964 void
1965 print_candidates (tree fns)
1966 {
1967 const char *str = NULL;
1968 print_candidates_1 (fns, false, &str);
1969 gcc_assert (str == NULL);
1970 }
1971
1972 /* Get a (possibly) constrained template declaration for the
1973 purpose of ordering candidates. */
1974 static tree
1975 get_template_for_ordering (tree list)
1976 {
1977 gcc_assert (TREE_CODE (list) == TREE_LIST);
1978 tree f = TREE_VALUE (list);
1979 if (tree ti = DECL_TEMPLATE_INFO (f))
1980 return TI_TEMPLATE (ti);
1981 return f;
1982 }
1983
1984 /* Among candidates having the same signature, return the
1985 most constrained or NULL_TREE if there is no best candidate.
1986 If the signatures of candidates vary (e.g., template
1987 specialization vs. member function), then there can be no
1988 most constrained.
1989
1990 Note that we don't compare constraints on the functions
1991 themselves, but rather those of their templates. */
1992 static tree
1993 most_constrained_function (tree candidates)
1994 {
1995 // Try to find the best candidate in a first pass.
1996 tree champ = candidates;
1997 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1998 {
1999 int winner = more_constrained (get_template_for_ordering (champ),
2000 get_template_for_ordering (c));
2001 if (winner == -1)
2002 champ = c; // The candidate is more constrained
2003 else if (winner == 0)
2004 return NULL_TREE; // Neither is more constrained
2005 }
2006
2007 // Verify that the champ is better than previous candidates.
2008 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2009 if (!more_constrained (get_template_for_ordering (champ),
2010 get_template_for_ordering (c)))
2011 return NULL_TREE;
2012 }
2013
2014 return champ;
2015 }
2016
2017
2018 /* Returns the template (one of the functions given by TEMPLATE_ID)
2019 which can be specialized to match the indicated DECL with the
2020 explicit template args given in TEMPLATE_ID. The DECL may be
2021 NULL_TREE if none is available. In that case, the functions in
2022 TEMPLATE_ID are non-members.
2023
2024 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2025 specialization of a member template.
2026
2027 The TEMPLATE_COUNT is the number of references to qualifying
2028 template classes that appeared in the name of the function. See
2029 check_explicit_specialization for a more accurate description.
2030
2031 TSK indicates what kind of template declaration (if any) is being
2032 declared. TSK_TEMPLATE indicates that the declaration given by
2033 DECL, though a FUNCTION_DECL, has template parameters, and is
2034 therefore a template function.
2035
2036 The template args (those explicitly specified and those deduced)
2037 are output in a newly created vector *TARGS_OUT.
2038
2039 If it is impossible to determine the result, an error message is
2040 issued. The error_mark_node is returned to indicate failure. */
2041
2042 static tree
2043 determine_specialization (tree template_id,
2044 tree decl,
2045 tree* targs_out,
2046 int need_member_template,
2047 int template_count,
2048 tmpl_spec_kind tsk)
2049 {
2050 tree fns;
2051 tree targs;
2052 tree explicit_targs;
2053 tree candidates = NULL_TREE;
2054
2055 /* A TREE_LIST of templates of which DECL may be a specialization.
2056 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2057 corresponding TREE_PURPOSE is the set of template arguments that,
2058 when used to instantiate the template, would produce a function
2059 with the signature of DECL. */
2060 tree templates = NULL_TREE;
2061 int header_count;
2062 cp_binding_level *b;
2063
2064 *targs_out = NULL_TREE;
2065
2066 if (template_id == error_mark_node || decl == error_mark_node)
2067 return error_mark_node;
2068
2069 /* We shouldn't be specializing a member template of an
2070 unspecialized class template; we already gave an error in
2071 check_specialization_scope, now avoid crashing. */
2072 if (template_count && DECL_CLASS_SCOPE_P (decl)
2073 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2074 {
2075 gcc_assert (errorcount);
2076 return error_mark_node;
2077 }
2078
2079 fns = TREE_OPERAND (template_id, 0);
2080 explicit_targs = TREE_OPERAND (template_id, 1);
2081
2082 if (fns == error_mark_node)
2083 return error_mark_node;
2084
2085 /* Check for baselinks. */
2086 if (BASELINK_P (fns))
2087 fns = BASELINK_FUNCTIONS (fns);
2088
2089 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2090 {
2091 error ("%qD is not a function template", fns);
2092 return error_mark_node;
2093 }
2094 else if (VAR_P (decl) && !variable_template_p (fns))
2095 {
2096 error ("%qD is not a variable template", fns);
2097 return error_mark_node;
2098 }
2099
2100 /* Count the number of template headers specified for this
2101 specialization. */
2102 header_count = 0;
2103 for (b = current_binding_level;
2104 b->kind == sk_template_parms;
2105 b = b->level_chain)
2106 ++header_count;
2107
2108 tree orig_fns = fns;
2109
2110 if (variable_template_p (fns))
2111 {
2112 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2113 targs = coerce_template_parms (parms, explicit_targs, fns,
2114 tf_warning_or_error,
2115 /*req_all*/true, /*use_defarg*/true);
2116 if (targs != error_mark_node)
2117 templates = tree_cons (targs, fns, templates);
2118 }
2119 else for (; fns; fns = OVL_NEXT (fns))
2120 {
2121 tree fn = OVL_CURRENT (fns);
2122
2123 if (TREE_CODE (fn) == TEMPLATE_DECL)
2124 {
2125 tree decl_arg_types;
2126 tree fn_arg_types;
2127 tree insttype;
2128
2129 /* In case of explicit specialization, we need to check if
2130 the number of template headers appearing in the specialization
2131 is correct. This is usually done in check_explicit_specialization,
2132 but the check done there cannot be exhaustive when specializing
2133 member functions. Consider the following code:
2134
2135 template <> void A<int>::f(int);
2136 template <> template <> void A<int>::f(int);
2137
2138 Assuming that A<int> is not itself an explicit specialization
2139 already, the first line specializes "f" which is a non-template
2140 member function, whilst the second line specializes "f" which
2141 is a template member function. So both lines are syntactically
2142 correct, and check_explicit_specialization does not reject
2143 them.
2144
2145 Here, we can do better, as we are matching the specialization
2146 against the declarations. We count the number of template
2147 headers, and we check if they match TEMPLATE_COUNT + 1
2148 (TEMPLATE_COUNT is the number of qualifying template classes,
2149 plus there must be another header for the member template
2150 itself).
2151
2152 Notice that if header_count is zero, this is not a
2153 specialization but rather a template instantiation, so there
2154 is no check we can perform here. */
2155 if (header_count && header_count != template_count + 1)
2156 continue;
2157
2158 /* Check that the number of template arguments at the
2159 innermost level for DECL is the same as for FN. */
2160 if (current_binding_level->kind == sk_template_parms
2161 && !current_binding_level->explicit_spec_p
2162 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2163 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2164 (current_template_parms))))
2165 continue;
2166
2167 /* DECL might be a specialization of FN. */
2168 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2169 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2170
2171 /* For a non-static member function, we need to make sure
2172 that the const qualification is the same. Since
2173 get_bindings does not try to merge the "this" parameter,
2174 we must do the comparison explicitly. */
2175 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2176 && !same_type_p (TREE_VALUE (fn_arg_types),
2177 TREE_VALUE (decl_arg_types)))
2178 continue;
2179
2180 /* Skip the "this" parameter and, for constructors of
2181 classes with virtual bases, the VTT parameter. A
2182 full specialization of a constructor will have a VTT
2183 parameter, but a template never will. */
2184 decl_arg_types
2185 = skip_artificial_parms_for (decl, decl_arg_types);
2186 fn_arg_types
2187 = skip_artificial_parms_for (fn, fn_arg_types);
2188
2189 /* Function templates cannot be specializations; there are
2190 no partial specializations of functions. Therefore, if
2191 the type of DECL does not match FN, there is no
2192 match.
2193
2194 Note that it should never be the case that we have both
2195 candidates added here, and for regular member functions
2196 below. */
2197 if (tsk == tsk_template)
2198 {
2199 if (compparms (fn_arg_types, decl_arg_types))
2200 candidates = tree_cons (NULL_TREE, fn, candidates);
2201 continue;
2202 }
2203
2204 /* See whether this function might be a specialization of this
2205 template. Suppress access control because we might be trying
2206 to make this specialization a friend, and we have already done
2207 access control for the declaration of the specialization. */
2208 push_deferring_access_checks (dk_no_check);
2209 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2210 pop_deferring_access_checks ();
2211
2212 if (!targs)
2213 /* We cannot deduce template arguments that when used to
2214 specialize TMPL will produce DECL. */
2215 continue;
2216
2217 /* Remove, from the set of candidates, all those functions
2218 whose constraints are not satisfied. */
2219 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2220 continue;
2221
2222 // Then, try to form the new function type.
2223 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2224 if (insttype == error_mark_node)
2225 continue;
2226 fn_arg_types
2227 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2228 if (!compparms (fn_arg_types, decl_arg_types))
2229 continue;
2230
2231 /* Save this template, and the arguments deduced. */
2232 templates = tree_cons (targs, fn, templates);
2233 }
2234 else if (need_member_template)
2235 /* FN is an ordinary member function, and we need a
2236 specialization of a member template. */
2237 ;
2238 else if (TREE_CODE (fn) != FUNCTION_DECL)
2239 /* We can get IDENTIFIER_NODEs here in certain erroneous
2240 cases. */
2241 ;
2242 else if (!DECL_FUNCTION_MEMBER_P (fn))
2243 /* This is just an ordinary non-member function. Nothing can
2244 be a specialization of that. */
2245 ;
2246 else if (DECL_ARTIFICIAL (fn))
2247 /* Cannot specialize functions that are created implicitly. */
2248 ;
2249 else
2250 {
2251 tree decl_arg_types;
2252
2253 /* This is an ordinary member function. However, since
2254 we're here, we can assume its enclosing class is a
2255 template class. For example,
2256
2257 template <typename T> struct S { void f(); };
2258 template <> void S<int>::f() {}
2259
2260 Here, S<int>::f is a non-template, but S<int> is a
2261 template class. If FN has the same type as DECL, we
2262 might be in business. */
2263
2264 if (!DECL_TEMPLATE_INFO (fn))
2265 /* Its enclosing class is an explicit specialization
2266 of a template class. This is not a candidate. */
2267 continue;
2268
2269 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2270 TREE_TYPE (TREE_TYPE (fn))))
2271 /* The return types differ. */
2272 continue;
2273
2274 /* Adjust the type of DECL in case FN is a static member. */
2275 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2276 if (DECL_STATIC_FUNCTION_P (fn)
2277 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2278 decl_arg_types = TREE_CHAIN (decl_arg_types);
2279
2280 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2281 decl_arg_types))
2282 continue;
2283
2284 // If the deduced arguments do not satisfy the constraints,
2285 // this is not a candidate.
2286 if (flag_concepts && !constraints_satisfied_p (fn))
2287 continue;
2288
2289 // Add the candidate.
2290 candidates = tree_cons (NULL_TREE, fn, candidates);
2291 }
2292 }
2293
2294 if (templates && TREE_CHAIN (templates))
2295 {
2296 /* We have:
2297
2298 [temp.expl.spec]
2299
2300 It is possible for a specialization with a given function
2301 signature to be instantiated from more than one function
2302 template. In such cases, explicit specification of the
2303 template arguments must be used to uniquely identify the
2304 function template specialization being specialized.
2305
2306 Note that here, there's no suggestion that we're supposed to
2307 determine which of the candidate templates is most
2308 specialized. However, we, also have:
2309
2310 [temp.func.order]
2311
2312 Partial ordering of overloaded function template
2313 declarations is used in the following contexts to select
2314 the function template to which a function template
2315 specialization refers:
2316
2317 -- when an explicit specialization refers to a function
2318 template.
2319
2320 So, we do use the partial ordering rules, at least for now.
2321 This extension can only serve to make invalid programs valid,
2322 so it's safe. And, there is strong anecdotal evidence that
2323 the committee intended the partial ordering rules to apply;
2324 the EDG front end has that behavior, and John Spicer claims
2325 that the committee simply forgot to delete the wording in
2326 [temp.expl.spec]. */
2327 tree tmpl = most_specialized_instantiation (templates);
2328 if (tmpl != error_mark_node)
2329 {
2330 templates = tmpl;
2331 TREE_CHAIN (templates) = NULL_TREE;
2332 }
2333 }
2334
2335 // Concepts allows multiple declarations of member functions
2336 // with the same signature. Like above, we need to rely on
2337 // on the partial ordering of those candidates to determine which
2338 // is the best.
2339 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2340 {
2341 if (tree cand = most_constrained_function (candidates))
2342 {
2343 candidates = cand;
2344 TREE_CHAIN (cand) = NULL_TREE;
2345 }
2346 }
2347
2348 if (templates == NULL_TREE && candidates == NULL_TREE)
2349 {
2350 error ("template-id %qD for %q+D does not match any template "
2351 "declaration", template_id, decl);
2352 if (header_count && header_count != template_count + 1)
2353 inform (input_location, "saw %d %<template<>%>, need %d for "
2354 "specializing a member function template",
2355 header_count, template_count + 1);
2356 else
2357 print_candidates (orig_fns);
2358 return error_mark_node;
2359 }
2360 else if ((templates && TREE_CHAIN (templates))
2361 || (candidates && TREE_CHAIN (candidates))
2362 || (templates && candidates))
2363 {
2364 error ("ambiguous template specialization %qD for %q+D",
2365 template_id, decl);
2366 candidates = chainon (candidates, templates);
2367 print_candidates (candidates);
2368 return error_mark_node;
2369 }
2370
2371 /* We have one, and exactly one, match. */
2372 if (candidates)
2373 {
2374 tree fn = TREE_VALUE (candidates);
2375 *targs_out = copy_node (DECL_TI_ARGS (fn));
2376
2377 // Propagate the candidate's constraints to the declaration.
2378 set_constraints (decl, get_constraints (fn));
2379
2380 /* DECL is a re-declaration or partial instantiation of a template
2381 function. */
2382 if (TREE_CODE (fn) == TEMPLATE_DECL)
2383 return fn;
2384 /* It was a specialization of an ordinary member function in a
2385 template class. */
2386 return DECL_TI_TEMPLATE (fn);
2387 }
2388
2389 /* It was a specialization of a template. */
2390 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2391 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2392 {
2393 *targs_out = copy_node (targs);
2394 SET_TMPL_ARGS_LEVEL (*targs_out,
2395 TMPL_ARGS_DEPTH (*targs_out),
2396 TREE_PURPOSE (templates));
2397 }
2398 else
2399 *targs_out = TREE_PURPOSE (templates);
2400 return TREE_VALUE (templates);
2401 }
2402
2403 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2404 but with the default argument values filled in from those in the
2405 TMPL_TYPES. */
2406
2407 static tree
2408 copy_default_args_to_explicit_spec_1 (tree spec_types,
2409 tree tmpl_types)
2410 {
2411 tree new_spec_types;
2412
2413 if (!spec_types)
2414 return NULL_TREE;
2415
2416 if (spec_types == void_list_node)
2417 return void_list_node;
2418
2419 /* Substitute into the rest of the list. */
2420 new_spec_types =
2421 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2422 TREE_CHAIN (tmpl_types));
2423
2424 /* Add the default argument for this parameter. */
2425 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2426 TREE_VALUE (spec_types),
2427 new_spec_types);
2428 }
2429
2430 /* DECL is an explicit specialization. Replicate default arguments
2431 from the template it specializes. (That way, code like:
2432
2433 template <class T> void f(T = 3);
2434 template <> void f(double);
2435 void g () { f (); }
2436
2437 works, as required.) An alternative approach would be to look up
2438 the correct default arguments at the call-site, but this approach
2439 is consistent with how implicit instantiations are handled. */
2440
2441 static void
2442 copy_default_args_to_explicit_spec (tree decl)
2443 {
2444 tree tmpl;
2445 tree spec_types;
2446 tree tmpl_types;
2447 tree new_spec_types;
2448 tree old_type;
2449 tree new_type;
2450 tree t;
2451 tree object_type = NULL_TREE;
2452 tree in_charge = NULL_TREE;
2453 tree vtt = NULL_TREE;
2454
2455 /* See if there's anything we need to do. */
2456 tmpl = DECL_TI_TEMPLATE (decl);
2457 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2458 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2459 if (TREE_PURPOSE (t))
2460 break;
2461 if (!t)
2462 return;
2463
2464 old_type = TREE_TYPE (decl);
2465 spec_types = TYPE_ARG_TYPES (old_type);
2466
2467 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2468 {
2469 /* Remove the this pointer, but remember the object's type for
2470 CV quals. */
2471 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2472 spec_types = TREE_CHAIN (spec_types);
2473 tmpl_types = TREE_CHAIN (tmpl_types);
2474
2475 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2476 {
2477 /* DECL may contain more parameters than TMPL due to the extra
2478 in-charge parameter in constructors and destructors. */
2479 in_charge = spec_types;
2480 spec_types = TREE_CHAIN (spec_types);
2481 }
2482 if (DECL_HAS_VTT_PARM_P (decl))
2483 {
2484 vtt = spec_types;
2485 spec_types = TREE_CHAIN (spec_types);
2486 }
2487 }
2488
2489 /* Compute the merged default arguments. */
2490 new_spec_types =
2491 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2492
2493 /* Compute the new FUNCTION_TYPE. */
2494 if (object_type)
2495 {
2496 if (vtt)
2497 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2498 TREE_VALUE (vtt),
2499 new_spec_types);
2500
2501 if (in_charge)
2502 /* Put the in-charge parameter back. */
2503 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2504 TREE_VALUE (in_charge),
2505 new_spec_types);
2506
2507 new_type = build_method_type_directly (object_type,
2508 TREE_TYPE (old_type),
2509 new_spec_types);
2510 }
2511 else
2512 new_type = build_function_type (TREE_TYPE (old_type),
2513 new_spec_types);
2514 new_type = cp_build_type_attribute_variant (new_type,
2515 TYPE_ATTRIBUTES (old_type));
2516 new_type = build_exception_variant (new_type,
2517 TYPE_RAISES_EXCEPTIONS (old_type));
2518
2519 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2520 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2521
2522 TREE_TYPE (decl) = new_type;
2523 }
2524
2525 /* Return the number of template headers we expect to see for a definition
2526 or specialization of CTYPE or one of its non-template members. */
2527
2528 int
2529 num_template_headers_for_class (tree ctype)
2530 {
2531 int num_templates = 0;
2532
2533 while (ctype && CLASS_TYPE_P (ctype))
2534 {
2535 /* You're supposed to have one `template <...>' for every
2536 template class, but you don't need one for a full
2537 specialization. For example:
2538
2539 template <class T> struct S{};
2540 template <> struct S<int> { void f(); };
2541 void S<int>::f () {}
2542
2543 is correct; there shouldn't be a `template <>' for the
2544 definition of `S<int>::f'. */
2545 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2546 /* If CTYPE does not have template information of any
2547 kind, then it is not a template, nor is it nested
2548 within a template. */
2549 break;
2550 if (explicit_class_specialization_p (ctype))
2551 break;
2552 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2553 ++num_templates;
2554
2555 ctype = TYPE_CONTEXT (ctype);
2556 }
2557
2558 return num_templates;
2559 }
2560
2561 /* Do a simple sanity check on the template headers that precede the
2562 variable declaration DECL. */
2563
2564 void
2565 check_template_variable (tree decl)
2566 {
2567 tree ctx = CP_DECL_CONTEXT (decl);
2568 int wanted = num_template_headers_for_class (ctx);
2569 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2570 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2571 {
2572 if (cxx_dialect < cxx14)
2573 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2574 "variable templates only available with "
2575 "-std=c++14 or -std=gnu++14");
2576
2577 // Namespace-scope variable templates should have a template header.
2578 ++wanted;
2579 }
2580 if (template_header_count > wanted)
2581 {
2582 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2583 "too many template headers for %D (should be %d)",
2584 decl, wanted);
2585 if (warned && CLASS_TYPE_P (ctx)
2586 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2587 inform (DECL_SOURCE_LOCATION (decl),
2588 "members of an explicitly specialized class are defined "
2589 "without a template header");
2590 }
2591 }
2592
2593 /* Check to see if the function just declared, as indicated in
2594 DECLARATOR, and in DECL, is a specialization of a function
2595 template. We may also discover that the declaration is an explicit
2596 instantiation at this point.
2597
2598 Returns DECL, or an equivalent declaration that should be used
2599 instead if all goes well. Issues an error message if something is
2600 amiss. Returns error_mark_node if the error is not easily
2601 recoverable.
2602
2603 FLAGS is a bitmask consisting of the following flags:
2604
2605 2: The function has a definition.
2606 4: The function is a friend.
2607
2608 The TEMPLATE_COUNT is the number of references to qualifying
2609 template classes that appeared in the name of the function. For
2610 example, in
2611
2612 template <class T> struct S { void f(); };
2613 void S<int>::f();
2614
2615 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2616 classes are not counted in the TEMPLATE_COUNT, so that in
2617
2618 template <class T> struct S {};
2619 template <> struct S<int> { void f(); }
2620 template <> void S<int>::f();
2621
2622 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2623 invalid; there should be no template <>.)
2624
2625 If the function is a specialization, it is marked as such via
2626 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2627 is set up correctly, and it is added to the list of specializations
2628 for that template. */
2629
2630 tree
2631 check_explicit_specialization (tree declarator,
2632 tree decl,
2633 int template_count,
2634 int flags)
2635 {
2636 int have_def = flags & 2;
2637 int is_friend = flags & 4;
2638 bool is_concept = flags & 8;
2639 int specialization = 0;
2640 int explicit_instantiation = 0;
2641 int member_specialization = 0;
2642 tree ctype = DECL_CLASS_CONTEXT (decl);
2643 tree dname = DECL_NAME (decl);
2644 tmpl_spec_kind tsk;
2645
2646 if (is_friend)
2647 {
2648 if (!processing_specialization)
2649 tsk = tsk_none;
2650 else
2651 tsk = tsk_excessive_parms;
2652 }
2653 else
2654 tsk = current_tmpl_spec_kind (template_count);
2655
2656 switch (tsk)
2657 {
2658 case tsk_none:
2659 if (processing_specialization && !VAR_P (decl))
2660 {
2661 specialization = 1;
2662 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2663 }
2664 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2665 {
2666 if (is_friend)
2667 /* This could be something like:
2668
2669 template <class T> void f(T);
2670 class S { friend void f<>(int); } */
2671 specialization = 1;
2672 else
2673 {
2674 /* This case handles bogus declarations like template <>
2675 template <class T> void f<int>(); */
2676
2677 error ("template-id %qD in declaration of primary template",
2678 declarator);
2679 return decl;
2680 }
2681 }
2682 break;
2683
2684 case tsk_invalid_member_spec:
2685 /* The error has already been reported in
2686 check_specialization_scope. */
2687 return error_mark_node;
2688
2689 case tsk_invalid_expl_inst:
2690 error ("template parameter list used in explicit instantiation");
2691
2692 /* Fall through. */
2693
2694 case tsk_expl_inst:
2695 if (have_def)
2696 error ("definition provided for explicit instantiation");
2697
2698 explicit_instantiation = 1;
2699 break;
2700
2701 case tsk_excessive_parms:
2702 case tsk_insufficient_parms:
2703 if (tsk == tsk_excessive_parms)
2704 error ("too many template parameter lists in declaration of %qD",
2705 decl);
2706 else if (template_header_count)
2707 error("too few template parameter lists in declaration of %qD", decl);
2708 else
2709 error("explicit specialization of %qD must be introduced by "
2710 "%<template <>%>", decl);
2711
2712 /* Fall through. */
2713 case tsk_expl_spec:
2714 if (is_concept)
2715 error ("explicit specialization declared %<concept%>");
2716
2717 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2718 /* In cases like template<> constexpr bool v = true;
2719 We'll give an error in check_template_variable. */
2720 break;
2721
2722 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2723 if (ctype)
2724 member_specialization = 1;
2725 else
2726 specialization = 1;
2727 break;
2728
2729 case tsk_template:
2730 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2731 {
2732 /* This case handles bogus declarations like template <>
2733 template <class T> void f<int>(); */
2734
2735 if (!uses_template_parms (declarator))
2736 error ("template-id %qD in declaration of primary template",
2737 declarator);
2738 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2739 {
2740 /* Partial specialization of variable template. */
2741 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2742 specialization = 1;
2743 goto ok;
2744 }
2745 else if (cxx_dialect < cxx14)
2746 error ("non-type partial specialization %qD "
2747 "is not allowed", declarator);
2748 else
2749 error ("non-class, non-variable partial specialization %qD "
2750 "is not allowed", declarator);
2751 return decl;
2752 ok:;
2753 }
2754
2755 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2756 /* This is a specialization of a member template, without
2757 specialization the containing class. Something like:
2758
2759 template <class T> struct S {
2760 template <class U> void f (U);
2761 };
2762 template <> template <class U> void S<int>::f(U) {}
2763
2764 That's a specialization -- but of the entire template. */
2765 specialization = 1;
2766 break;
2767
2768 default:
2769 gcc_unreachable ();
2770 }
2771
2772 if ((specialization || member_specialization)
2773 /* This doesn't apply to variable templates. */
2774 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2775 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2776 {
2777 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2778 for (; t; t = TREE_CHAIN (t))
2779 if (TREE_PURPOSE (t))
2780 {
2781 permerror (input_location,
2782 "default argument specified in explicit specialization");
2783 break;
2784 }
2785 }
2786
2787 if (specialization || member_specialization || explicit_instantiation)
2788 {
2789 tree tmpl = NULL_TREE;
2790 tree targs = NULL_TREE;
2791 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2792
2793 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2794 if (!was_template_id)
2795 {
2796 tree fns;
2797
2798 gcc_assert (identifier_p (declarator));
2799 if (ctype)
2800 fns = dname;
2801 else
2802 {
2803 /* If there is no class context, the explicit instantiation
2804 must be at namespace scope. */
2805 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2806
2807 /* Find the namespace binding, using the declaration
2808 context. */
2809 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2810 false, true);
2811 if (fns == error_mark_node || !is_overloaded_fn (fns))
2812 {
2813 error ("%qD is not a template function", dname);
2814 fns = error_mark_node;
2815 }
2816 }
2817
2818 declarator = lookup_template_function (fns, NULL_TREE);
2819 }
2820
2821 if (declarator == error_mark_node)
2822 return error_mark_node;
2823
2824 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2825 {
2826 if (!explicit_instantiation)
2827 /* A specialization in class scope. This is invalid,
2828 but the error will already have been flagged by
2829 check_specialization_scope. */
2830 return error_mark_node;
2831 else
2832 {
2833 /* It's not valid to write an explicit instantiation in
2834 class scope, e.g.:
2835
2836 class C { template void f(); }
2837
2838 This case is caught by the parser. However, on
2839 something like:
2840
2841 template class C { void f(); };
2842
2843 (which is invalid) we can get here. The error will be
2844 issued later. */
2845 ;
2846 }
2847
2848 return decl;
2849 }
2850 else if (ctype != NULL_TREE
2851 && (identifier_p (TREE_OPERAND (declarator, 0))))
2852 {
2853 // We'll match variable templates in start_decl.
2854 if (VAR_P (decl))
2855 return decl;
2856
2857 /* Find the list of functions in ctype that have the same
2858 name as the declared function. */
2859 tree name = TREE_OPERAND (declarator, 0);
2860 tree fns = NULL_TREE;
2861 int idx;
2862
2863 if (constructor_name_p (name, ctype))
2864 {
2865 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2866
2867 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2868 : !CLASSTYPE_DESTRUCTORS (ctype))
2869 {
2870 /* From [temp.expl.spec]:
2871
2872 If such an explicit specialization for the member
2873 of a class template names an implicitly-declared
2874 special member function (clause _special_), the
2875 program is ill-formed.
2876
2877 Similar language is found in [temp.explicit]. */
2878 error ("specialization of implicitly-declared special member function");
2879 return error_mark_node;
2880 }
2881
2882 name = is_constructor ? ctor_identifier : dtor_identifier;
2883 }
2884
2885 if (!DECL_CONV_FN_P (decl))
2886 {
2887 idx = lookup_fnfields_1 (ctype, name);
2888 if (idx >= 0)
2889 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2890 }
2891 else
2892 {
2893 vec<tree, va_gc> *methods;
2894 tree ovl;
2895
2896 /* For a type-conversion operator, we cannot do a
2897 name-based lookup. We might be looking for `operator
2898 int' which will be a specialization of `operator T'.
2899 So, we find *all* the conversion operators, and then
2900 select from them. */
2901 fns = NULL_TREE;
2902
2903 methods = CLASSTYPE_METHOD_VEC (ctype);
2904 if (methods)
2905 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2906 methods->iterate (idx, &ovl);
2907 ++idx)
2908 {
2909 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2910 /* There are no more conversion functions. */
2911 break;
2912
2913 /* Glue all these conversion functions together
2914 with those we already have. */
2915 for (; ovl; ovl = OVL_NEXT (ovl))
2916 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2917 }
2918 }
2919
2920 if (fns == NULL_TREE)
2921 {
2922 error ("no member function %qD declared in %qT", name, ctype);
2923 return error_mark_node;
2924 }
2925 else
2926 TREE_OPERAND (declarator, 0) = fns;
2927 }
2928
2929 /* Figure out what exactly is being specialized at this point.
2930 Note that for an explicit instantiation, even one for a
2931 member function, we cannot tell apriori whether the
2932 instantiation is for a member template, or just a member
2933 function of a template class. Even if a member template is
2934 being instantiated, the member template arguments may be
2935 elided if they can be deduced from the rest of the
2936 declaration. */
2937 tmpl = determine_specialization (declarator, decl,
2938 &targs,
2939 member_specialization,
2940 template_count,
2941 tsk);
2942
2943 if (!tmpl || tmpl == error_mark_node)
2944 /* We couldn't figure out what this declaration was
2945 specializing. */
2946 return error_mark_node;
2947 else
2948 {
2949 if (!ctype && !was_template_id
2950 && (specialization || member_specialization
2951 || explicit_instantiation)
2952 && !is_associated_namespace (CP_DECL_CONTEXT (decl),
2953 CP_DECL_CONTEXT (tmpl)))
2954 error ("%qD is not declared in %qD",
2955 tmpl, current_namespace);
2956
2957 tree gen_tmpl = most_general_template (tmpl);
2958
2959 if (explicit_instantiation)
2960 {
2961 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2962 is done by do_decl_instantiation later. */
2963
2964 int arg_depth = TMPL_ARGS_DEPTH (targs);
2965 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2966
2967 if (arg_depth > parm_depth)
2968 {
2969 /* If TMPL is not the most general template (for
2970 example, if TMPL is a friend template that is
2971 injected into namespace scope), then there will
2972 be too many levels of TARGS. Remove some of them
2973 here. */
2974 int i;
2975 tree new_targs;
2976
2977 new_targs = make_tree_vec (parm_depth);
2978 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2979 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2980 = TREE_VEC_ELT (targs, i);
2981 targs = new_targs;
2982 }
2983
2984 return instantiate_template (tmpl, targs, tf_error);
2985 }
2986
2987 /* If we thought that the DECL was a member function, but it
2988 turns out to be specializing a static member function,
2989 make DECL a static member function as well. */
2990 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2991 && DECL_STATIC_FUNCTION_P (tmpl)
2992 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2993 revert_static_member_fn (decl);
2994
2995 /* If this is a specialization of a member template of a
2996 template class, we want to return the TEMPLATE_DECL, not
2997 the specialization of it. */
2998 if (tsk == tsk_template && !was_template_id)
2999 {
3000 tree result = DECL_TEMPLATE_RESULT (tmpl);
3001 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3002 DECL_INITIAL (result) = NULL_TREE;
3003 if (have_def)
3004 {
3005 tree parm;
3006 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3007 DECL_SOURCE_LOCATION (result)
3008 = DECL_SOURCE_LOCATION (decl);
3009 /* We want to use the argument list specified in the
3010 definition, not in the original declaration. */
3011 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3012 for (parm = DECL_ARGUMENTS (result); parm;
3013 parm = DECL_CHAIN (parm))
3014 DECL_CONTEXT (parm) = result;
3015 }
3016 return register_specialization (tmpl, gen_tmpl, targs,
3017 is_friend, 0);
3018 }
3019
3020 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3021 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3022
3023 if (was_template_id)
3024 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3025
3026 /* Inherit default function arguments from the template
3027 DECL is specializing. */
3028 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3029 copy_default_args_to_explicit_spec (decl);
3030
3031 /* This specialization has the same protection as the
3032 template it specializes. */
3033 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3034 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3035
3036 /* 7.1.1-1 [dcl.stc]
3037
3038 A storage-class-specifier shall not be specified in an
3039 explicit specialization...
3040
3041 The parser rejects these, so unless action is taken here,
3042 explicit function specializations will always appear with
3043 global linkage.
3044
3045 The action recommended by the C++ CWG in response to C++
3046 defect report 605 is to make the storage class and linkage
3047 of the explicit specialization match the templated function:
3048
3049 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3050 */
3051 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3052 {
3053 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3054 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3055
3056 /* A concept cannot be specialized. */
3057 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3058 {
3059 error ("explicit specialization of function concept %qD",
3060 gen_tmpl);
3061 return error_mark_node;
3062 }
3063
3064 /* This specialization has the same linkage and visibility as
3065 the function template it specializes. */
3066 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3067 if (! TREE_PUBLIC (decl))
3068 {
3069 DECL_INTERFACE_KNOWN (decl) = 1;
3070 DECL_NOT_REALLY_EXTERN (decl) = 1;
3071 }
3072 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3073 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3074 {
3075 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3076 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3077 }
3078 }
3079
3080 /* If DECL is a friend declaration, declared using an
3081 unqualified name, the namespace associated with DECL may
3082 have been set incorrectly. For example, in:
3083
3084 template <typename T> void f(T);
3085 namespace N {
3086 struct S { friend void f<int>(int); }
3087 }
3088
3089 we will have set the DECL_CONTEXT for the friend
3090 declaration to N, rather than to the global namespace. */
3091 if (DECL_NAMESPACE_SCOPE_P (decl))
3092 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3093
3094 if (is_friend && !have_def)
3095 /* This is not really a declaration of a specialization.
3096 It's just the name of an instantiation. But, it's not
3097 a request for an instantiation, either. */
3098 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3099 else if (TREE_CODE (decl) == FUNCTION_DECL)
3100 /* A specialization is not necessarily COMDAT. */
3101 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3102 && DECL_DECLARED_INLINE_P (decl));
3103 else if (VAR_P (decl))
3104 DECL_COMDAT (decl) = false;
3105
3106 /* If this is a full specialization, register it so that we can find
3107 it again. Partial specializations will be registered in
3108 process_partial_specialization. */
3109 if (!processing_template_decl)
3110 decl = register_specialization (decl, gen_tmpl, targs,
3111 is_friend, 0);
3112
3113 /* A 'structor should already have clones. */
3114 gcc_assert (decl == error_mark_node
3115 || variable_template_p (tmpl)
3116 || !(DECL_CONSTRUCTOR_P (decl)
3117 || DECL_DESTRUCTOR_P (decl))
3118 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3119 }
3120 }
3121
3122 return decl;
3123 }
3124
3125 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3126 parameters. These are represented in the same format used for
3127 DECL_TEMPLATE_PARMS. */
3128
3129 int
3130 comp_template_parms (const_tree parms1, const_tree parms2)
3131 {
3132 const_tree p1;
3133 const_tree p2;
3134
3135 if (parms1 == parms2)
3136 return 1;
3137
3138 for (p1 = parms1, p2 = parms2;
3139 p1 != NULL_TREE && p2 != NULL_TREE;
3140 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3141 {
3142 tree t1 = TREE_VALUE (p1);
3143 tree t2 = TREE_VALUE (p2);
3144 int i;
3145
3146 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3147 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3148
3149 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3150 return 0;
3151
3152 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3153 {
3154 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3155 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3156
3157 /* If either of the template parameters are invalid, assume
3158 they match for the sake of error recovery. */
3159 if (error_operand_p (parm1) || error_operand_p (parm2))
3160 return 1;
3161
3162 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3163 return 0;
3164
3165 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3166 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3167 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3168 continue;
3169 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3170 return 0;
3171 }
3172 }
3173
3174 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3175 /* One set of parameters has more parameters lists than the
3176 other. */
3177 return 0;
3178
3179 return 1;
3180 }
3181
3182 /* Determine whether PARM is a parameter pack. */
3183
3184 bool
3185 template_parameter_pack_p (const_tree parm)
3186 {
3187 /* Determine if we have a non-type template parameter pack. */
3188 if (TREE_CODE (parm) == PARM_DECL)
3189 return (DECL_TEMPLATE_PARM_P (parm)
3190 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3191 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3192 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3193
3194 /* If this is a list of template parameters, we could get a
3195 TYPE_DECL or a TEMPLATE_DECL. */
3196 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3197 parm = TREE_TYPE (parm);
3198
3199 /* Otherwise it must be a type template parameter. */
3200 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3201 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3202 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3203 }
3204
3205 /* Determine if T is a function parameter pack. */
3206
3207 bool
3208 function_parameter_pack_p (const_tree t)
3209 {
3210 if (t && TREE_CODE (t) == PARM_DECL)
3211 return DECL_PACK_P (t);
3212 return false;
3213 }
3214
3215 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3216 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3217
3218 tree
3219 get_function_template_decl (const_tree primary_func_tmpl_inst)
3220 {
3221 if (! primary_func_tmpl_inst
3222 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3223 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3224 return NULL;
3225
3226 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3227 }
3228
3229 /* Return true iff the function parameter PARAM_DECL was expanded
3230 from the function parameter pack PACK. */
3231
3232 bool
3233 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3234 {
3235 if (DECL_ARTIFICIAL (param_decl)
3236 || !function_parameter_pack_p (pack))
3237 return false;
3238
3239 /* The parameter pack and its pack arguments have the same
3240 DECL_PARM_INDEX. */
3241 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3242 }
3243
3244 /* Determine whether ARGS describes a variadic template args list,
3245 i.e., one that is terminated by a template argument pack. */
3246
3247 static bool
3248 template_args_variadic_p (tree args)
3249 {
3250 int nargs;
3251 tree last_parm;
3252
3253 if (args == NULL_TREE)
3254 return false;
3255
3256 args = INNERMOST_TEMPLATE_ARGS (args);
3257 nargs = TREE_VEC_LENGTH (args);
3258
3259 if (nargs == 0)
3260 return false;
3261
3262 last_parm = TREE_VEC_ELT (args, nargs - 1);
3263
3264 return ARGUMENT_PACK_P (last_parm);
3265 }
3266
3267 /* Generate a new name for the parameter pack name NAME (an
3268 IDENTIFIER_NODE) that incorporates its */
3269
3270 static tree
3271 make_ith_pack_parameter_name (tree name, int i)
3272 {
3273 /* Munge the name to include the parameter index. */
3274 #define NUMBUF_LEN 128
3275 char numbuf[NUMBUF_LEN];
3276 char* newname;
3277 int newname_len;
3278
3279 if (name == NULL_TREE)
3280 return name;
3281 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3282 newname_len = IDENTIFIER_LENGTH (name)
3283 + strlen (numbuf) + 2;
3284 newname = (char*)alloca (newname_len);
3285 snprintf (newname, newname_len,
3286 "%s#%i", IDENTIFIER_POINTER (name), i);
3287 return get_identifier (newname);
3288 }
3289
3290 /* Return true if T is a primary function, class or alias template
3291 instantiation. */
3292
3293 bool
3294 primary_template_instantiation_p (const_tree t)
3295 {
3296 if (!t)
3297 return false;
3298
3299 if (TREE_CODE (t) == FUNCTION_DECL)
3300 return DECL_LANG_SPECIFIC (t)
3301 && DECL_TEMPLATE_INSTANTIATION (t)
3302 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3303 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3304 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3305 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3306 else if (alias_template_specialization_p (t))
3307 return true;
3308 return false;
3309 }
3310
3311 /* Return true if PARM is a template template parameter. */
3312
3313 bool
3314 template_template_parameter_p (const_tree parm)
3315 {
3316 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3317 }
3318
3319 /* Return true iff PARM is a DECL representing a type template
3320 parameter. */
3321
3322 bool
3323 template_type_parameter_p (const_tree parm)
3324 {
3325 return (parm
3326 && (TREE_CODE (parm) == TYPE_DECL
3327 || TREE_CODE (parm) == TEMPLATE_DECL)
3328 && DECL_TEMPLATE_PARM_P (parm));
3329 }
3330
3331 /* Return the template parameters of T if T is a
3332 primary template instantiation, NULL otherwise. */
3333
3334 tree
3335 get_primary_template_innermost_parameters (const_tree t)
3336 {
3337 tree parms = NULL, template_info = NULL;
3338
3339 if ((template_info = get_template_info (t))
3340 && primary_template_instantiation_p (t))
3341 parms = INNERMOST_TEMPLATE_PARMS
3342 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3343
3344 return parms;
3345 }
3346
3347 /* Return the template parameters of the LEVELth level from the full list
3348 of template parameters PARMS. */
3349
3350 tree
3351 get_template_parms_at_level (tree parms, int level)
3352 {
3353 tree p;
3354 if (!parms
3355 || TREE_CODE (parms) != TREE_LIST
3356 || level > TMPL_PARMS_DEPTH (parms))
3357 return NULL_TREE;
3358
3359 for (p = parms; p; p = TREE_CHAIN (p))
3360 if (TMPL_PARMS_DEPTH (p) == level)
3361 return p;
3362
3363 return NULL_TREE;
3364 }
3365
3366 /* Returns the template arguments of T if T is a template instantiation,
3367 NULL otherwise. */
3368
3369 tree
3370 get_template_innermost_arguments (const_tree t)
3371 {
3372 tree args = NULL, template_info = NULL;
3373
3374 if ((template_info = get_template_info (t))
3375 && TI_ARGS (template_info))
3376 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3377
3378 return args;
3379 }
3380
3381 /* Return the argument pack elements of T if T is a template argument pack,
3382 NULL otherwise. */
3383
3384 tree
3385 get_template_argument_pack_elems (const_tree t)
3386 {
3387 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3388 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3389 return NULL;
3390
3391 return ARGUMENT_PACK_ARGS (t);
3392 }
3393
3394 /* Structure used to track the progress of find_parameter_packs_r. */
3395 struct find_parameter_pack_data
3396 {
3397 /* TREE_LIST that will contain all of the parameter packs found by
3398 the traversal. */
3399 tree* parameter_packs;
3400
3401 /* Set of AST nodes that have been visited by the traversal. */
3402 hash_set<tree> *visited;
3403
3404 /* True iff we're making a type pack expansion. */
3405 bool type_pack_expansion_p;
3406 };
3407
3408 /* Identifies all of the argument packs that occur in a template
3409 argument and appends them to the TREE_LIST inside DATA, which is a
3410 find_parameter_pack_data structure. This is a subroutine of
3411 make_pack_expansion and uses_parameter_packs. */
3412 static tree
3413 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3414 {
3415 tree t = *tp;
3416 struct find_parameter_pack_data* ppd =
3417 (struct find_parameter_pack_data*)data;
3418 bool parameter_pack_p = false;
3419
3420 /* Handle type aliases/typedefs. */
3421 if (TYPE_ALIAS_P (t))
3422 {
3423 if (TYPE_TEMPLATE_INFO (t))
3424 cp_walk_tree (&TYPE_TI_ARGS (t),
3425 &find_parameter_packs_r,
3426 ppd, ppd->visited);
3427 *walk_subtrees = 0;
3428 return NULL_TREE;
3429 }
3430
3431 /* Identify whether this is a parameter pack or not. */
3432 switch (TREE_CODE (t))
3433 {
3434 case TEMPLATE_PARM_INDEX:
3435 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3436 parameter_pack_p = true;
3437 break;
3438
3439 case TEMPLATE_TYPE_PARM:
3440 t = TYPE_MAIN_VARIANT (t);
3441 case TEMPLATE_TEMPLATE_PARM:
3442 /* If the placeholder appears in the decl-specifier-seq of a function
3443 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3444 is a pack expansion, the invented template parameter is a template
3445 parameter pack. */
3446 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3447 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3448 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3449 parameter_pack_p = true;
3450 break;
3451
3452 case FIELD_DECL:
3453 case PARM_DECL:
3454 if (DECL_PACK_P (t))
3455 {
3456 /* We don't want to walk into the type of a PARM_DECL,
3457 because we don't want to see the type parameter pack. */
3458 *walk_subtrees = 0;
3459 parameter_pack_p = true;
3460 }
3461 break;
3462
3463 /* Look through a lambda capture proxy to the field pack. */
3464 case VAR_DECL:
3465 if (DECL_HAS_VALUE_EXPR_P (t))
3466 {
3467 tree v = DECL_VALUE_EXPR (t);
3468 cp_walk_tree (&v,
3469 &find_parameter_packs_r,
3470 ppd, ppd->visited);
3471 *walk_subtrees = 0;
3472 }
3473 else if (variable_template_specialization_p (t))
3474 {
3475 cp_walk_tree (&DECL_TI_ARGS (t),
3476 find_parameter_packs_r,
3477 ppd, ppd->visited);
3478 *walk_subtrees = 0;
3479 }
3480 break;
3481
3482 case BASES:
3483 parameter_pack_p = true;
3484 break;
3485 default:
3486 /* Not a parameter pack. */
3487 break;
3488 }
3489
3490 if (parameter_pack_p)
3491 {
3492 /* Add this parameter pack to the list. */
3493 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3494 }
3495
3496 if (TYPE_P (t))
3497 cp_walk_tree (&TYPE_CONTEXT (t),
3498 &find_parameter_packs_r, ppd, ppd->visited);
3499
3500 /* This switch statement will return immediately if we don't find a
3501 parameter pack. */
3502 switch (TREE_CODE (t))
3503 {
3504 case TEMPLATE_PARM_INDEX:
3505 return NULL_TREE;
3506
3507 case BOUND_TEMPLATE_TEMPLATE_PARM:
3508 /* Check the template itself. */
3509 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3510 &find_parameter_packs_r, ppd, ppd->visited);
3511 /* Check the template arguments. */
3512 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3513 ppd->visited);
3514 *walk_subtrees = 0;
3515 return NULL_TREE;
3516
3517 case TEMPLATE_TYPE_PARM:
3518 case TEMPLATE_TEMPLATE_PARM:
3519 return NULL_TREE;
3520
3521 case PARM_DECL:
3522 return NULL_TREE;
3523
3524 case RECORD_TYPE:
3525 if (TYPE_PTRMEMFUNC_P (t))
3526 return NULL_TREE;
3527 /* Fall through. */
3528
3529 case UNION_TYPE:
3530 case ENUMERAL_TYPE:
3531 if (TYPE_TEMPLATE_INFO (t))
3532 cp_walk_tree (&TYPE_TI_ARGS (t),
3533 &find_parameter_packs_r, ppd, ppd->visited);
3534
3535 *walk_subtrees = 0;
3536 return NULL_TREE;
3537
3538 case CONSTRUCTOR:
3539 case TEMPLATE_DECL:
3540 cp_walk_tree (&TREE_TYPE (t),
3541 &find_parameter_packs_r, ppd, ppd->visited);
3542 return NULL_TREE;
3543
3544 case TYPENAME_TYPE:
3545 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3546 ppd, ppd->visited);
3547 *walk_subtrees = 0;
3548 return NULL_TREE;
3549
3550 case TYPE_PACK_EXPANSION:
3551 case EXPR_PACK_EXPANSION:
3552 *walk_subtrees = 0;
3553 return NULL_TREE;
3554
3555 case INTEGER_TYPE:
3556 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3557 ppd, ppd->visited);
3558 *walk_subtrees = 0;
3559 return NULL_TREE;
3560
3561 case IDENTIFIER_NODE:
3562 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3563 ppd->visited);
3564 *walk_subtrees = 0;
3565 return NULL_TREE;
3566
3567 case DECLTYPE_TYPE:
3568 {
3569 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3570 type_pack_expansion_p to false so that any placeholders
3571 within the expression don't get marked as parameter packs. */
3572 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3573 ppd->type_pack_expansion_p = false;
3574 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3575 ppd, ppd->visited);
3576 ppd->type_pack_expansion_p = type_pack_expansion_p;
3577 *walk_subtrees = 0;
3578 return NULL_TREE;
3579 }
3580
3581 default:
3582 return NULL_TREE;
3583 }
3584
3585 return NULL_TREE;
3586 }
3587
3588 /* Determines if the expression or type T uses any parameter packs. */
3589 bool
3590 uses_parameter_packs (tree t)
3591 {
3592 tree parameter_packs = NULL_TREE;
3593 struct find_parameter_pack_data ppd;
3594 ppd.parameter_packs = &parameter_packs;
3595 ppd.visited = new hash_set<tree>;
3596 ppd.type_pack_expansion_p = false;
3597 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3598 delete ppd.visited;
3599 return parameter_packs != NULL_TREE;
3600 }
3601
3602 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3603 representation a base-class initializer into a parameter pack
3604 expansion. If all goes well, the resulting node will be an
3605 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3606 respectively. */
3607 tree
3608 make_pack_expansion (tree arg)
3609 {
3610 tree result;
3611 tree parameter_packs = NULL_TREE;
3612 bool for_types = false;
3613 struct find_parameter_pack_data ppd;
3614
3615 if (!arg || arg == error_mark_node)
3616 return arg;
3617
3618 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3619 {
3620 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3621 class initializer. In this case, the TREE_PURPOSE will be a
3622 _TYPE node (representing the base class expansion we're
3623 initializing) and the TREE_VALUE will be a TREE_LIST
3624 containing the initialization arguments.
3625
3626 The resulting expansion looks somewhat different from most
3627 expansions. Rather than returning just one _EXPANSION, we
3628 return a TREE_LIST whose TREE_PURPOSE is a
3629 TYPE_PACK_EXPANSION containing the bases that will be
3630 initialized. The TREE_VALUE will be identical to the
3631 original TREE_VALUE, which is a list of arguments that will
3632 be passed to each base. We do not introduce any new pack
3633 expansion nodes into the TREE_VALUE (although it is possible
3634 that some already exist), because the TREE_PURPOSE and
3635 TREE_VALUE all need to be expanded together with the same
3636 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3637 resulting TREE_PURPOSE will mention the parameter packs in
3638 both the bases and the arguments to the bases. */
3639 tree purpose;
3640 tree value;
3641 tree parameter_packs = NULL_TREE;
3642
3643 /* Determine which parameter packs will be used by the base
3644 class expansion. */
3645 ppd.visited = new hash_set<tree>;
3646 ppd.parameter_packs = &parameter_packs;
3647 ppd.type_pack_expansion_p = true;
3648 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3649 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3650 &ppd, ppd.visited);
3651
3652 if (parameter_packs == NULL_TREE)
3653 {
3654 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3655 delete ppd.visited;
3656 return error_mark_node;
3657 }
3658
3659 if (TREE_VALUE (arg) != void_type_node)
3660 {
3661 /* Collect the sets of parameter packs used in each of the
3662 initialization arguments. */
3663 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3664 {
3665 /* Determine which parameter packs will be expanded in this
3666 argument. */
3667 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3668 &ppd, ppd.visited);
3669 }
3670 }
3671
3672 delete ppd.visited;
3673
3674 /* Create the pack expansion type for the base type. */
3675 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3676 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3677 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3678
3679 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3680 they will rarely be compared to anything. */
3681 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3682
3683 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3684 }
3685
3686 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3687 for_types = true;
3688
3689 /* Build the PACK_EXPANSION_* node. */
3690 result = for_types
3691 ? cxx_make_type (TYPE_PACK_EXPANSION)
3692 : make_node (EXPR_PACK_EXPANSION);
3693 SET_PACK_EXPANSION_PATTERN (result, arg);
3694 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3695 {
3696 /* Propagate type and const-expression information. */
3697 TREE_TYPE (result) = TREE_TYPE (arg);
3698 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3699 }
3700 else
3701 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3702 they will rarely be compared to anything. */
3703 SET_TYPE_STRUCTURAL_EQUALITY (result);
3704
3705 /* Determine which parameter packs will be expanded. */
3706 ppd.parameter_packs = &parameter_packs;
3707 ppd.visited = new hash_set<tree>;
3708 ppd.type_pack_expansion_p = TYPE_P (arg);
3709 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3710 delete ppd.visited;
3711
3712 /* Make sure we found some parameter packs. */
3713 if (parameter_packs == NULL_TREE)
3714 {
3715 if (TYPE_P (arg))
3716 error ("expansion pattern %<%T%> contains no argument packs", arg);
3717 else
3718 error ("expansion pattern %<%E%> contains no argument packs", arg);
3719 return error_mark_node;
3720 }
3721 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3722
3723 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3724
3725 return result;
3726 }
3727
3728 /* Checks T for any "bare" parameter packs, which have not yet been
3729 expanded, and issues an error if any are found. This operation can
3730 only be done on full expressions or types (e.g., an expression
3731 statement, "if" condition, etc.), because we could have expressions like:
3732
3733 foo(f(g(h(args)))...)
3734
3735 where "args" is a parameter pack. check_for_bare_parameter_packs
3736 should not be called for the subexpressions args, h(args),
3737 g(h(args)), or f(g(h(args))), because we would produce erroneous
3738 error messages.
3739
3740 Returns TRUE and emits an error if there were bare parameter packs,
3741 returns FALSE otherwise. */
3742 bool
3743 check_for_bare_parameter_packs (tree t)
3744 {
3745 tree parameter_packs = NULL_TREE;
3746 struct find_parameter_pack_data ppd;
3747
3748 if (!processing_template_decl || !t || t == error_mark_node)
3749 return false;
3750
3751 if (TREE_CODE (t) == TYPE_DECL)
3752 t = TREE_TYPE (t);
3753
3754 ppd.parameter_packs = &parameter_packs;
3755 ppd.visited = new hash_set<tree>;
3756 ppd.type_pack_expansion_p = false;
3757 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3758 delete ppd.visited;
3759
3760 if (parameter_packs)
3761 {
3762 error ("parameter packs not expanded with %<...%>:");
3763 while (parameter_packs)
3764 {
3765 tree pack = TREE_VALUE (parameter_packs);
3766 tree name = NULL_TREE;
3767
3768 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3769 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3770 name = TYPE_NAME (pack);
3771 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3772 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3773 else
3774 name = DECL_NAME (pack);
3775
3776 if (name)
3777 inform (input_location, " %qD", name);
3778 else
3779 inform (input_location, " <anonymous>");
3780
3781 parameter_packs = TREE_CHAIN (parameter_packs);
3782 }
3783
3784 return true;
3785 }
3786
3787 return false;
3788 }
3789
3790 /* Expand any parameter packs that occur in the template arguments in
3791 ARGS. */
3792 tree
3793 expand_template_argument_pack (tree args)
3794 {
3795 tree result_args = NULL_TREE;
3796 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3797 int num_result_args = -1;
3798 int non_default_args_count = -1;
3799
3800 /* First, determine if we need to expand anything, and the number of
3801 slots we'll need. */
3802 for (in_arg = 0; in_arg < nargs; ++in_arg)
3803 {
3804 tree arg = TREE_VEC_ELT (args, in_arg);
3805 if (arg == NULL_TREE)
3806 return args;
3807 if (ARGUMENT_PACK_P (arg))
3808 {
3809 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3810 if (num_result_args < 0)
3811 num_result_args = in_arg + num_packed;
3812 else
3813 num_result_args += num_packed;
3814 }
3815 else
3816 {
3817 if (num_result_args >= 0)
3818 num_result_args++;
3819 }
3820 }
3821
3822 /* If no expansion is necessary, we're done. */
3823 if (num_result_args < 0)
3824 return args;
3825
3826 /* Expand arguments. */
3827 result_args = make_tree_vec (num_result_args);
3828 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3829 non_default_args_count =
3830 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3831 for (in_arg = 0; in_arg < nargs; ++in_arg)
3832 {
3833 tree arg = TREE_VEC_ELT (args, in_arg);
3834 if (ARGUMENT_PACK_P (arg))
3835 {
3836 tree packed = ARGUMENT_PACK_ARGS (arg);
3837 int i, num_packed = TREE_VEC_LENGTH (packed);
3838 for (i = 0; i < num_packed; ++i, ++out_arg)
3839 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3840 if (non_default_args_count > 0)
3841 non_default_args_count += num_packed - 1;
3842 }
3843 else
3844 {
3845 TREE_VEC_ELT (result_args, out_arg) = arg;
3846 ++out_arg;
3847 }
3848 }
3849 if (non_default_args_count >= 0)
3850 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3851 return result_args;
3852 }
3853
3854 /* Checks if DECL shadows a template parameter.
3855
3856 [temp.local]: A template-parameter shall not be redeclared within its
3857 scope (including nested scopes).
3858
3859 Emits an error and returns TRUE if the DECL shadows a parameter,
3860 returns FALSE otherwise. */
3861
3862 bool
3863 check_template_shadow (tree decl)
3864 {
3865 tree olddecl;
3866
3867 /* If we're not in a template, we can't possibly shadow a template
3868 parameter. */
3869 if (!current_template_parms)
3870 return true;
3871
3872 /* Figure out what we're shadowing. */
3873 if (TREE_CODE (decl) == OVERLOAD)
3874 decl = OVL_CURRENT (decl);
3875 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3876
3877 /* If there's no previous binding for this name, we're not shadowing
3878 anything, let alone a template parameter. */
3879 if (!olddecl)
3880 return true;
3881
3882 /* If we're not shadowing a template parameter, we're done. Note
3883 that OLDDECL might be an OVERLOAD (or perhaps even an
3884 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3885 node. */
3886 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3887 return true;
3888
3889 /* We check for decl != olddecl to avoid bogus errors for using a
3890 name inside a class. We check TPFI to avoid duplicate errors for
3891 inline member templates. */
3892 if (decl == olddecl
3893 || (DECL_TEMPLATE_PARM_P (decl)
3894 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3895 return true;
3896
3897 /* Don't complain about the injected class name, as we've already
3898 complained about the class itself. */
3899 if (DECL_SELF_REFERENCE_P (decl))
3900 return false;
3901
3902 if (DECL_TEMPLATE_PARM_P (decl))
3903 error ("declaration of template parameter %q+D shadows "
3904 "template parameter", decl);
3905 else
3906 error ("declaration of %q+#D shadows template parameter", decl);
3907 inform (DECL_SOURCE_LOCATION (olddecl),
3908 "template parameter %qD declared here", olddecl);
3909 return false;
3910 }
3911
3912 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3913 ORIG_LEVEL, DECL, and TYPE. */
3914
3915 static tree
3916 build_template_parm_index (int index,
3917 int level,
3918 int orig_level,
3919 tree decl,
3920 tree type)
3921 {
3922 tree t = make_node (TEMPLATE_PARM_INDEX);
3923 TEMPLATE_PARM_IDX (t) = index;
3924 TEMPLATE_PARM_LEVEL (t) = level;
3925 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3926 TEMPLATE_PARM_DECL (t) = decl;
3927 TREE_TYPE (t) = type;
3928 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3929 TREE_READONLY (t) = TREE_READONLY (decl);
3930
3931 return t;
3932 }
3933
3934 /* Find the canonical type parameter for the given template type
3935 parameter. Returns the canonical type parameter, which may be TYPE
3936 if no such parameter existed. */
3937
3938 static tree
3939 canonical_type_parameter (tree type)
3940 {
3941 tree list;
3942 int idx = TEMPLATE_TYPE_IDX (type);
3943 if (!canonical_template_parms)
3944 vec_alloc (canonical_template_parms, idx+1);
3945
3946 while (canonical_template_parms->length () <= (unsigned)idx)
3947 vec_safe_push (canonical_template_parms, NULL_TREE);
3948
3949 list = (*canonical_template_parms)[idx];
3950 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3951 list = TREE_CHAIN (list);
3952
3953 if (list)
3954 return TREE_VALUE (list);
3955 else
3956 {
3957 (*canonical_template_parms)[idx]
3958 = tree_cons (NULL_TREE, type,
3959 (*canonical_template_parms)[idx]);
3960 return type;
3961 }
3962 }
3963
3964 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3965 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3966 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3967 new one is created. */
3968
3969 static tree
3970 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3971 tsubst_flags_t complain)
3972 {
3973 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3974 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3975 != TEMPLATE_PARM_LEVEL (index) - levels)
3976 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3977 {
3978 tree orig_decl = TEMPLATE_PARM_DECL (index);
3979 tree decl, t;
3980
3981 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3982 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3983 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3984 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3985 DECL_ARTIFICIAL (decl) = 1;
3986 SET_DECL_TEMPLATE_PARM_P (decl);
3987
3988 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3989 TEMPLATE_PARM_LEVEL (index) - levels,
3990 TEMPLATE_PARM_ORIG_LEVEL (index),
3991 decl, type);
3992 TEMPLATE_PARM_DESCENDANTS (index) = t;
3993 TEMPLATE_PARM_PARAMETER_PACK (t)
3994 = TEMPLATE_PARM_PARAMETER_PACK (index);
3995
3996 /* Template template parameters need this. */
3997 if (TREE_CODE (decl) == TEMPLATE_DECL)
3998 {
3999 DECL_TEMPLATE_RESULT (decl)
4000 = build_decl (DECL_SOURCE_LOCATION (decl),
4001 TYPE_DECL, DECL_NAME (decl), type);
4002 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
4003 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
4004 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
4005 }
4006 }
4007
4008 return TEMPLATE_PARM_DESCENDANTS (index);
4009 }
4010
4011 /* Process information from new template parameter PARM and append it
4012 to the LIST being built. This new parameter is a non-type
4013 parameter iff IS_NON_TYPE is true. This new parameter is a
4014 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4015 is in PARM_LOC. */
4016
4017 tree
4018 process_template_parm (tree list, location_t parm_loc, tree parm,
4019 bool is_non_type, bool is_parameter_pack)
4020 {
4021 tree decl = 0;
4022 int idx = 0;
4023
4024 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4025 tree defval = TREE_PURPOSE (parm);
4026 tree constr = TREE_TYPE (parm);
4027
4028 if (list)
4029 {
4030 tree p = tree_last (list);
4031
4032 if (p && TREE_VALUE (p) != error_mark_node)
4033 {
4034 p = TREE_VALUE (p);
4035 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4036 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4037 else
4038 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4039 }
4040
4041 ++idx;
4042 }
4043
4044 if (is_non_type)
4045 {
4046 parm = TREE_VALUE (parm);
4047
4048 SET_DECL_TEMPLATE_PARM_P (parm);
4049
4050 if (TREE_TYPE (parm) != error_mark_node)
4051 {
4052 /* [temp.param]
4053
4054 The top-level cv-qualifiers on the template-parameter are
4055 ignored when determining its type. */
4056 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4057 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4058 TREE_TYPE (parm) = error_mark_node;
4059 else if (uses_parameter_packs (TREE_TYPE (parm))
4060 && !is_parameter_pack
4061 /* If we're in a nested template parameter list, the template
4062 template parameter could be a parameter pack. */
4063 && processing_template_parmlist == 1)
4064 {
4065 /* This template parameter is not a parameter pack, but it
4066 should be. Complain about "bare" parameter packs. */
4067 check_for_bare_parameter_packs (TREE_TYPE (parm));
4068
4069 /* Recover by calling this a parameter pack. */
4070 is_parameter_pack = true;
4071 }
4072 }
4073
4074 /* A template parameter is not modifiable. */
4075 TREE_CONSTANT (parm) = 1;
4076 TREE_READONLY (parm) = 1;
4077 decl = build_decl (parm_loc,
4078 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4079 TREE_CONSTANT (decl) = 1;
4080 TREE_READONLY (decl) = 1;
4081 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4082 = build_template_parm_index (idx, processing_template_decl,
4083 processing_template_decl,
4084 decl, TREE_TYPE (parm));
4085
4086 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4087 = is_parameter_pack;
4088 }
4089 else
4090 {
4091 tree t;
4092 parm = TREE_VALUE (TREE_VALUE (parm));
4093
4094 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4095 {
4096 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4097 /* This is for distinguishing between real templates and template
4098 template parameters */
4099 TREE_TYPE (parm) = t;
4100 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4101 decl = parm;
4102 }
4103 else
4104 {
4105 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4106 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4107 decl = build_decl (parm_loc,
4108 TYPE_DECL, parm, t);
4109 }
4110
4111 TYPE_NAME (t) = decl;
4112 TYPE_STUB_DECL (t) = decl;
4113 parm = decl;
4114 TEMPLATE_TYPE_PARM_INDEX (t)
4115 = build_template_parm_index (idx, processing_template_decl,
4116 processing_template_decl,
4117 decl, TREE_TYPE (parm));
4118 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4119 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4120 }
4121 DECL_ARTIFICIAL (decl) = 1;
4122 SET_DECL_TEMPLATE_PARM_P (decl);
4123
4124 /* Build requirements for the type/template parameter.
4125 This must be done after SET_DECL_TEMPLATE_PARM_P or
4126 process_template_parm could fail. */
4127 tree reqs = finish_shorthand_constraint (parm, constr);
4128
4129 pushdecl (decl);
4130
4131 /* Build the parameter node linking the parameter declaration,
4132 its default argument (if any), and its constraints (if any). */
4133 parm = build_tree_list (defval, parm);
4134 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4135
4136 return chainon (list, parm);
4137 }
4138
4139 /* The end of a template parameter list has been reached. Process the
4140 tree list into a parameter vector, converting each parameter into a more
4141 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4142 as PARM_DECLs. */
4143
4144 tree
4145 end_template_parm_list (tree parms)
4146 {
4147 int nparms;
4148 tree parm, next;
4149 tree saved_parmlist = make_tree_vec (list_length (parms));
4150
4151 /* Pop the dummy parameter level and add the real one. */
4152 current_template_parms = TREE_CHAIN (current_template_parms);
4153
4154 current_template_parms
4155 = tree_cons (size_int (processing_template_decl),
4156 saved_parmlist, current_template_parms);
4157
4158 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4159 {
4160 next = TREE_CHAIN (parm);
4161 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4162 TREE_CHAIN (parm) = NULL_TREE;
4163 }
4164
4165 --processing_template_parmlist;
4166
4167 return saved_parmlist;
4168 }
4169
4170 // Explicitly indicate the end of the template parameter list. We assume
4171 // that the current template parameters have been constructed and/or
4172 // managed explicitly, as when creating new template template parameters
4173 // from a shorthand constraint.
4174 void
4175 end_template_parm_list ()
4176 {
4177 --processing_template_parmlist;
4178 }
4179
4180 /* end_template_decl is called after a template declaration is seen. */
4181
4182 void
4183 end_template_decl (void)
4184 {
4185 reset_specialization ();
4186
4187 if (! processing_template_decl)
4188 return;
4189
4190 /* This matches the pushlevel in begin_template_parm_list. */
4191 finish_scope ();
4192
4193 --processing_template_decl;
4194 current_template_parms = TREE_CHAIN (current_template_parms);
4195 }
4196
4197 /* Takes a TREE_LIST representing a template parameter and convert it
4198 into an argument suitable to be passed to the type substitution
4199 functions. Note that If the TREE_LIST contains an error_mark
4200 node, the returned argument is error_mark_node. */
4201
4202 tree
4203 template_parm_to_arg (tree t)
4204 {
4205
4206 if (t == NULL_TREE
4207 || TREE_CODE (t) != TREE_LIST)
4208 return t;
4209
4210 if (error_operand_p (TREE_VALUE (t)))
4211 return error_mark_node;
4212
4213 t = TREE_VALUE (t);
4214
4215 if (TREE_CODE (t) == TYPE_DECL
4216 || TREE_CODE (t) == TEMPLATE_DECL)
4217 {
4218 t = TREE_TYPE (t);
4219
4220 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4221 {
4222 /* Turn this argument into a TYPE_ARGUMENT_PACK
4223 with a single element, which expands T. */
4224 tree vec = make_tree_vec (1);
4225 if (CHECKING_P)
4226 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4227
4228 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4229
4230 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4231 SET_ARGUMENT_PACK_ARGS (t, vec);
4232 }
4233 }
4234 else
4235 {
4236 t = DECL_INITIAL (t);
4237
4238 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4239 {
4240 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4241 with a single element, which expands T. */
4242 tree vec = make_tree_vec (1);
4243 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4244 if (CHECKING_P)
4245 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4246
4247 t = convert_from_reference (t);
4248 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4249
4250 t = make_node (NONTYPE_ARGUMENT_PACK);
4251 SET_ARGUMENT_PACK_ARGS (t, vec);
4252 TREE_TYPE (t) = type;
4253 }
4254 else
4255 t = convert_from_reference (t);
4256 }
4257 return t;
4258 }
4259
4260 /* Given a set of template parameters, return them as a set of template
4261 arguments. The template parameters are represented as a TREE_VEC, in
4262 the form documented in cp-tree.h for template arguments. */
4263
4264 static tree
4265 template_parms_to_args (tree parms)
4266 {
4267 tree header;
4268 tree args = NULL_TREE;
4269 int length = TMPL_PARMS_DEPTH (parms);
4270 int l = length;
4271
4272 /* If there is only one level of template parameters, we do not
4273 create a TREE_VEC of TREE_VECs. Instead, we return a single
4274 TREE_VEC containing the arguments. */
4275 if (length > 1)
4276 args = make_tree_vec (length);
4277
4278 for (header = parms; header; header = TREE_CHAIN (header))
4279 {
4280 tree a = copy_node (TREE_VALUE (header));
4281 int i;
4282
4283 TREE_TYPE (a) = NULL_TREE;
4284 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4285 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4286
4287 if (CHECKING_P)
4288 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4289
4290 if (length > 1)
4291 TREE_VEC_ELT (args, --l) = a;
4292 else
4293 args = a;
4294 }
4295
4296 return args;
4297 }
4298
4299 /* Within the declaration of a template, return the currently active
4300 template parameters as an argument TREE_VEC. */
4301
4302 static tree
4303 current_template_args (void)
4304 {
4305 return template_parms_to_args (current_template_parms);
4306 }
4307
4308 /* Update the declared TYPE by doing any lookups which were thought to be
4309 dependent, but are not now that we know the SCOPE of the declarator. */
4310
4311 tree
4312 maybe_update_decl_type (tree orig_type, tree scope)
4313 {
4314 tree type = orig_type;
4315
4316 if (type == NULL_TREE)
4317 return type;
4318
4319 if (TREE_CODE (orig_type) == TYPE_DECL)
4320 type = TREE_TYPE (type);
4321
4322 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4323 && dependent_type_p (type)
4324 /* Don't bother building up the args in this case. */
4325 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4326 {
4327 /* tsubst in the args corresponding to the template parameters,
4328 including auto if present. Most things will be unchanged, but
4329 make_typename_type and tsubst_qualified_id will resolve
4330 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4331 tree args = current_template_args ();
4332 tree auto_node = type_uses_auto (type);
4333 tree pushed;
4334 if (auto_node)
4335 {
4336 tree auto_vec = make_tree_vec (1);
4337 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4338 args = add_to_template_args (args, auto_vec);
4339 }
4340 pushed = push_scope (scope);
4341 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4342 if (pushed)
4343 pop_scope (scope);
4344 }
4345
4346 if (type == error_mark_node)
4347 return orig_type;
4348
4349 if (TREE_CODE (orig_type) == TYPE_DECL)
4350 {
4351 if (same_type_p (type, TREE_TYPE (orig_type)))
4352 type = orig_type;
4353 else
4354 type = TYPE_NAME (type);
4355 }
4356 return type;
4357 }
4358
4359 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4360 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4361 the new template is a member template. */
4362
4363 tree
4364 build_template_decl (tree decl, tree parms, bool member_template_p)
4365 {
4366 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4367 DECL_TEMPLATE_PARMS (tmpl) = parms;
4368 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4369 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4370 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4371
4372 return tmpl;
4373 }
4374
4375 struct template_parm_data
4376 {
4377 /* The level of the template parameters we are currently
4378 processing. */
4379 int level;
4380
4381 /* The index of the specialization argument we are currently
4382 processing. */
4383 int current_arg;
4384
4385 /* An array whose size is the number of template parameters. The
4386 elements are nonzero if the parameter has been used in any one
4387 of the arguments processed so far. */
4388 int* parms;
4389
4390 /* An array whose size is the number of template arguments. The
4391 elements are nonzero if the argument makes use of template
4392 parameters of this level. */
4393 int* arg_uses_template_parms;
4394 };
4395
4396 /* Subroutine of push_template_decl used to see if each template
4397 parameter in a partial specialization is used in the explicit
4398 argument list. If T is of the LEVEL given in DATA (which is
4399 treated as a template_parm_data*), then DATA->PARMS is marked
4400 appropriately. */
4401
4402 static int
4403 mark_template_parm (tree t, void* data)
4404 {
4405 int level;
4406 int idx;
4407 struct template_parm_data* tpd = (struct template_parm_data*) data;
4408
4409 template_parm_level_and_index (t, &level, &idx);
4410
4411 if (level == tpd->level)
4412 {
4413 tpd->parms[idx] = 1;
4414 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4415 }
4416
4417 /* Return zero so that for_each_template_parm will continue the
4418 traversal of the tree; we want to mark *every* template parm. */
4419 return 0;
4420 }
4421
4422 /* Process the partial specialization DECL. */
4423
4424 static tree
4425 process_partial_specialization (tree decl)
4426 {
4427 tree type = TREE_TYPE (decl);
4428 tree tinfo = get_template_info (decl);
4429 tree maintmpl = TI_TEMPLATE (tinfo);
4430 tree specargs = TI_ARGS (tinfo);
4431 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4432 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4433 tree inner_parms;
4434 tree inst;
4435 int nargs = TREE_VEC_LENGTH (inner_args);
4436 int ntparms;
4437 int i;
4438 bool did_error_intro = false;
4439 struct template_parm_data tpd;
4440 struct template_parm_data tpd2;
4441
4442 gcc_assert (current_template_parms);
4443
4444 /* A concept cannot be specialized. */
4445 if (flag_concepts && variable_concept_p (maintmpl))
4446 {
4447 error ("specialization of variable concept %q#D", maintmpl);
4448 return error_mark_node;
4449 }
4450
4451 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4452 ntparms = TREE_VEC_LENGTH (inner_parms);
4453
4454 /* We check that each of the template parameters given in the
4455 partial specialization is used in the argument list to the
4456 specialization. For example:
4457
4458 template <class T> struct S;
4459 template <class T> struct S<T*>;
4460
4461 The second declaration is OK because `T*' uses the template
4462 parameter T, whereas
4463
4464 template <class T> struct S<int>;
4465
4466 is no good. Even trickier is:
4467
4468 template <class T>
4469 struct S1
4470 {
4471 template <class U>
4472 struct S2;
4473 template <class U>
4474 struct S2<T>;
4475 };
4476
4477 The S2<T> declaration is actually invalid; it is a
4478 full-specialization. Of course,
4479
4480 template <class U>
4481 struct S2<T (*)(U)>;
4482
4483 or some such would have been OK. */
4484 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4485 tpd.parms = XALLOCAVEC (int, ntparms);
4486 memset (tpd.parms, 0, sizeof (int) * ntparms);
4487
4488 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4489 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4490 for (i = 0; i < nargs; ++i)
4491 {
4492 tpd.current_arg = i;
4493 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4494 &mark_template_parm,
4495 &tpd,
4496 NULL,
4497 /*include_nondeduced_p=*/false);
4498 }
4499 for (i = 0; i < ntparms; ++i)
4500 if (tpd.parms[i] == 0)
4501 {
4502 /* One of the template parms was not used in a deduced context in the
4503 specialization. */
4504 if (!did_error_intro)
4505 {
4506 error ("template parameters not deducible in "
4507 "partial specialization:");
4508 did_error_intro = true;
4509 }
4510
4511 inform (input_location, " %qD",
4512 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4513 }
4514
4515 if (did_error_intro)
4516 return error_mark_node;
4517
4518 /* [temp.class.spec]
4519
4520 The argument list of the specialization shall not be identical to
4521 the implicit argument list of the primary template. */
4522 tree main_args
4523 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4524 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4525 && (!flag_concepts
4526 || !strictly_subsumes (current_template_constraints (),
4527 get_constraints (maintmpl))))
4528 {
4529 if (!flag_concepts)
4530 error ("partial specialization %q+D does not specialize "
4531 "any template arguments", decl);
4532 else
4533 error ("partial specialization %q+D does not specialize any "
4534 "template arguments and is not more constrained than", decl);
4535 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4536 }
4537
4538 /* A partial specialization that replaces multiple parameters of the
4539 primary template with a pack expansion is less specialized for those
4540 parameters. */
4541 if (nargs < DECL_NTPARMS (maintmpl))
4542 {
4543 error ("partial specialization is not more specialized than the "
4544 "primary template because it replaces multiple parameters "
4545 "with a pack expansion");
4546 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4547 return decl;
4548 }
4549
4550 /* [temp.class.spec]
4551
4552 A partially specialized non-type argument expression shall not
4553 involve template parameters of the partial specialization except
4554 when the argument expression is a simple identifier.
4555
4556 The type of a template parameter corresponding to a specialized
4557 non-type argument shall not be dependent on a parameter of the
4558 specialization.
4559
4560 Also, we verify that pack expansions only occur at the
4561 end of the argument list. */
4562 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4563 tpd2.parms = 0;
4564 for (i = 0; i < nargs; ++i)
4565 {
4566 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4567 tree arg = TREE_VEC_ELT (inner_args, i);
4568 tree packed_args = NULL_TREE;
4569 int j, len = 1;
4570
4571 if (ARGUMENT_PACK_P (arg))
4572 {
4573 /* Extract the arguments from the argument pack. We'll be
4574 iterating over these in the following loop. */
4575 packed_args = ARGUMENT_PACK_ARGS (arg);
4576 len = TREE_VEC_LENGTH (packed_args);
4577 }
4578
4579 for (j = 0; j < len; j++)
4580 {
4581 if (packed_args)
4582 /* Get the Jth argument in the parameter pack. */
4583 arg = TREE_VEC_ELT (packed_args, j);
4584
4585 if (PACK_EXPANSION_P (arg))
4586 {
4587 /* Pack expansions must come at the end of the
4588 argument list. */
4589 if ((packed_args && j < len - 1)
4590 || (!packed_args && i < nargs - 1))
4591 {
4592 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4593 error ("parameter pack argument %qE must be at the "
4594 "end of the template argument list", arg);
4595 else
4596 error ("parameter pack argument %qT must be at the "
4597 "end of the template argument list", arg);
4598 }
4599 }
4600
4601 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4602 /* We only care about the pattern. */
4603 arg = PACK_EXPANSION_PATTERN (arg);
4604
4605 if (/* These first two lines are the `non-type' bit. */
4606 !TYPE_P (arg)
4607 && TREE_CODE (arg) != TEMPLATE_DECL
4608 /* This next two lines are the `argument expression is not just a
4609 simple identifier' condition and also the `specialized
4610 non-type argument' bit. */
4611 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4612 && !(REFERENCE_REF_P (arg)
4613 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4614 {
4615 if ((!packed_args && tpd.arg_uses_template_parms[i])
4616 || (packed_args && uses_template_parms (arg)))
4617 error ("template argument %qE involves template parameter(s)",
4618 arg);
4619 else
4620 {
4621 /* Look at the corresponding template parameter,
4622 marking which template parameters its type depends
4623 upon. */
4624 tree type = TREE_TYPE (parm);
4625
4626 if (!tpd2.parms)
4627 {
4628 /* We haven't yet initialized TPD2. Do so now. */
4629 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4630 /* The number of parameters here is the number in the
4631 main template, which, as checked in the assertion
4632 above, is NARGS. */
4633 tpd2.parms = XALLOCAVEC (int, nargs);
4634 tpd2.level =
4635 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4636 }
4637
4638 /* Mark the template parameters. But this time, we're
4639 looking for the template parameters of the main
4640 template, not in the specialization. */
4641 tpd2.current_arg = i;
4642 tpd2.arg_uses_template_parms[i] = 0;
4643 memset (tpd2.parms, 0, sizeof (int) * nargs);
4644 for_each_template_parm (type,
4645 &mark_template_parm,
4646 &tpd2,
4647 NULL,
4648 /*include_nondeduced_p=*/false);
4649
4650 if (tpd2.arg_uses_template_parms [i])
4651 {
4652 /* The type depended on some template parameters.
4653 If they are fully specialized in the
4654 specialization, that's OK. */
4655 int j;
4656 int count = 0;
4657 for (j = 0; j < nargs; ++j)
4658 if (tpd2.parms[j] != 0
4659 && tpd.arg_uses_template_parms [j])
4660 ++count;
4661 if (count != 0)
4662 error_n (input_location, count,
4663 "type %qT of template argument %qE depends "
4664 "on a template parameter",
4665 "type %qT of template argument %qE depends "
4666 "on template parameters",
4667 type,
4668 arg);
4669 }
4670 }
4671 }
4672 }
4673 }
4674
4675 /* We should only get here once. */
4676 if (TREE_CODE (decl) == TYPE_DECL)
4677 gcc_assert (!COMPLETE_TYPE_P (type));
4678
4679 // Build the template decl.
4680 tree tmpl = build_template_decl (decl, current_template_parms,
4681 DECL_MEMBER_TEMPLATE_P (maintmpl));
4682 TREE_TYPE (tmpl) = type;
4683 DECL_TEMPLATE_RESULT (tmpl) = decl;
4684 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4685 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4686 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4687
4688 if (VAR_P (decl))
4689 /* We didn't register this in check_explicit_specialization so we could
4690 wait until the constraints were set. */
4691 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4692 else
4693 associate_classtype_constraints (type);
4694
4695 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4696 = tree_cons (specargs, tmpl,
4697 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4698 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4699
4700 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4701 inst = TREE_CHAIN (inst))
4702 {
4703 tree instance = TREE_VALUE (inst);
4704 if (TYPE_P (instance)
4705 ? (COMPLETE_TYPE_P (instance)
4706 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4707 : DECL_TEMPLATE_INSTANTIATION (instance))
4708 {
4709 tree spec = most_specialized_partial_spec (instance, tf_none);
4710 tree inst_decl = (DECL_P (instance)
4711 ? instance : TYPE_NAME (instance));
4712 if (!spec)
4713 /* OK */;
4714 else if (spec == error_mark_node)
4715 permerror (input_location,
4716 "declaration of %qD ambiguates earlier template "
4717 "instantiation for %qD", decl, inst_decl);
4718 else if (TREE_VALUE (spec) == tmpl)
4719 permerror (input_location,
4720 "partial specialization of %qD after instantiation "
4721 "of %qD", decl, inst_decl);
4722 }
4723 }
4724
4725 return decl;
4726 }
4727
4728 /* PARM is a template parameter of some form; return the corresponding
4729 TEMPLATE_PARM_INDEX. */
4730
4731 static tree
4732 get_template_parm_index (tree parm)
4733 {
4734 if (TREE_CODE (parm) == PARM_DECL
4735 || TREE_CODE (parm) == CONST_DECL)
4736 parm = DECL_INITIAL (parm);
4737 else if (TREE_CODE (parm) == TYPE_DECL
4738 || TREE_CODE (parm) == TEMPLATE_DECL)
4739 parm = TREE_TYPE (parm);
4740 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4741 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4742 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4743 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4744 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4745 return parm;
4746 }
4747
4748 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4749 parameter packs used by the template parameter PARM. */
4750
4751 static void
4752 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4753 {
4754 /* A type parm can't refer to another parm. */
4755 if (TREE_CODE (parm) == TYPE_DECL)
4756 return;
4757 else if (TREE_CODE (parm) == PARM_DECL)
4758 {
4759 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4760 ppd, ppd->visited);
4761 return;
4762 }
4763
4764 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4765
4766 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4767 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4768 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4769 }
4770
4771 /* PARM is a template parameter pack. Return any parameter packs used in
4772 its type or the type of any of its template parameters. If there are
4773 any such packs, it will be instantiated into a fixed template parameter
4774 list by partial instantiation rather than be fully deduced. */
4775
4776 tree
4777 fixed_parameter_pack_p (tree parm)
4778 {
4779 /* This can only be true in a member template. */
4780 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4781 return NULL_TREE;
4782 /* This can only be true for a parameter pack. */
4783 if (!template_parameter_pack_p (parm))
4784 return NULL_TREE;
4785 /* A type parm can't refer to another parm. */
4786 if (TREE_CODE (parm) == TYPE_DECL)
4787 return NULL_TREE;
4788
4789 tree parameter_packs = NULL_TREE;
4790 struct find_parameter_pack_data ppd;
4791 ppd.parameter_packs = &parameter_packs;
4792 ppd.visited = new hash_set<tree>;
4793 ppd.type_pack_expansion_p = false;
4794
4795 fixed_parameter_pack_p_1 (parm, &ppd);
4796
4797 delete ppd.visited;
4798 return parameter_packs;
4799 }
4800
4801 /* Check that a template declaration's use of default arguments and
4802 parameter packs is not invalid. Here, PARMS are the template
4803 parameters. IS_PRIMARY is true if DECL is the thing declared by
4804 a primary template. IS_PARTIAL is true if DECL is a partial
4805 specialization.
4806
4807 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4808 declaration (but not a definition); 1 indicates a declaration, 2
4809 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4810 emitted for extraneous default arguments.
4811
4812 Returns TRUE if there were no errors found, FALSE otherwise. */
4813
4814 bool
4815 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4816 bool is_partial, int is_friend_decl)
4817 {
4818 const char *msg;
4819 int last_level_to_check;
4820 tree parm_level;
4821 bool no_errors = true;
4822
4823 /* [temp.param]
4824
4825 A default template-argument shall not be specified in a
4826 function template declaration or a function template definition, nor
4827 in the template-parameter-list of the definition of a member of a
4828 class template. */
4829
4830 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4831 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4832 /* You can't have a function template declaration in a local
4833 scope, nor you can you define a member of a class template in a
4834 local scope. */
4835 return true;
4836
4837 if ((TREE_CODE (decl) == TYPE_DECL
4838 && TREE_TYPE (decl)
4839 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4840 || (TREE_CODE (decl) == FUNCTION_DECL
4841 && LAMBDA_FUNCTION_P (decl)))
4842 /* A lambda doesn't have an explicit declaration; don't complain
4843 about the parms of the enclosing class. */
4844 return true;
4845
4846 if (current_class_type
4847 && !TYPE_BEING_DEFINED (current_class_type)
4848 && DECL_LANG_SPECIFIC (decl)
4849 && DECL_DECLARES_FUNCTION_P (decl)
4850 /* If this is either a friend defined in the scope of the class
4851 or a member function. */
4852 && (DECL_FUNCTION_MEMBER_P (decl)
4853 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4854 : DECL_FRIEND_CONTEXT (decl)
4855 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4856 : false)
4857 /* And, if it was a member function, it really was defined in
4858 the scope of the class. */
4859 && (!DECL_FUNCTION_MEMBER_P (decl)
4860 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4861 /* We already checked these parameters when the template was
4862 declared, so there's no need to do it again now. This function
4863 was defined in class scope, but we're processing its body now
4864 that the class is complete. */
4865 return true;
4866
4867 /* Core issue 226 (C++0x only): the following only applies to class
4868 templates. */
4869 if (is_primary
4870 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4871 {
4872 /* [temp.param]
4873
4874 If a template-parameter has a default template-argument, all
4875 subsequent template-parameters shall have a default
4876 template-argument supplied. */
4877 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4878 {
4879 tree inner_parms = TREE_VALUE (parm_level);
4880 int ntparms = TREE_VEC_LENGTH (inner_parms);
4881 int seen_def_arg_p = 0;
4882 int i;
4883
4884 for (i = 0; i < ntparms; ++i)
4885 {
4886 tree parm = TREE_VEC_ELT (inner_parms, i);
4887
4888 if (parm == error_mark_node)
4889 continue;
4890
4891 if (TREE_PURPOSE (parm))
4892 seen_def_arg_p = 1;
4893 else if (seen_def_arg_p
4894 && !template_parameter_pack_p (TREE_VALUE (parm)))
4895 {
4896 error ("no default argument for %qD", TREE_VALUE (parm));
4897 /* For better subsequent error-recovery, we indicate that
4898 there should have been a default argument. */
4899 TREE_PURPOSE (parm) = error_mark_node;
4900 no_errors = false;
4901 }
4902 else if (!is_partial
4903 && !is_friend_decl
4904 /* Don't complain about an enclosing partial
4905 specialization. */
4906 && parm_level == parms
4907 && TREE_CODE (decl) == TYPE_DECL
4908 && i < ntparms - 1
4909 && template_parameter_pack_p (TREE_VALUE (parm))
4910 /* A fixed parameter pack will be partially
4911 instantiated into a fixed length list. */
4912 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4913 {
4914 /* A primary class template can only have one
4915 parameter pack, at the end of the template
4916 parameter list. */
4917
4918 error ("parameter pack %q+D must be at the end of the"
4919 " template parameter list", TREE_VALUE (parm));
4920
4921 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4922 = error_mark_node;
4923 no_errors = false;
4924 }
4925 }
4926 }
4927 }
4928
4929 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4930 || is_partial
4931 || !is_primary
4932 || is_friend_decl)
4933 /* For an ordinary class template, default template arguments are
4934 allowed at the innermost level, e.g.:
4935 template <class T = int>
4936 struct S {};
4937 but, in a partial specialization, they're not allowed even
4938 there, as we have in [temp.class.spec]:
4939
4940 The template parameter list of a specialization shall not
4941 contain default template argument values.
4942
4943 So, for a partial specialization, or for a function template
4944 (in C++98/C++03), we look at all of them. */
4945 ;
4946 else
4947 /* But, for a primary class template that is not a partial
4948 specialization we look at all template parameters except the
4949 innermost ones. */
4950 parms = TREE_CHAIN (parms);
4951
4952 /* Figure out what error message to issue. */
4953 if (is_friend_decl == 2)
4954 msg = G_("default template arguments may not be used in function template "
4955 "friend re-declaration");
4956 else if (is_friend_decl)
4957 msg = G_("default template arguments may not be used in function template "
4958 "friend declarations");
4959 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4960 msg = G_("default template arguments may not be used in function templates "
4961 "without -std=c++11 or -std=gnu++11");
4962 else if (is_partial)
4963 msg = G_("default template arguments may not be used in "
4964 "partial specializations");
4965 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4966 msg = G_("default argument for template parameter for class enclosing %qD");
4967 else
4968 /* Per [temp.param]/9, "A default template-argument shall not be
4969 specified in the template-parameter-lists of the definition of
4970 a member of a class template that appears outside of the member's
4971 class.", thus if we aren't handling a member of a class template
4972 there is no need to examine the parameters. */
4973 return true;
4974
4975 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4976 /* If we're inside a class definition, there's no need to
4977 examine the parameters to the class itself. On the one
4978 hand, they will be checked when the class is defined, and,
4979 on the other, default arguments are valid in things like:
4980 template <class T = double>
4981 struct S { template <class U> void f(U); };
4982 Here the default argument for `S' has no bearing on the
4983 declaration of `f'. */
4984 last_level_to_check = template_class_depth (current_class_type) + 1;
4985 else
4986 /* Check everything. */
4987 last_level_to_check = 0;
4988
4989 for (parm_level = parms;
4990 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4991 parm_level = TREE_CHAIN (parm_level))
4992 {
4993 tree inner_parms = TREE_VALUE (parm_level);
4994 int i;
4995 int ntparms;
4996
4997 ntparms = TREE_VEC_LENGTH (inner_parms);
4998 for (i = 0; i < ntparms; ++i)
4999 {
5000 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
5001 continue;
5002
5003 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
5004 {
5005 if (msg)
5006 {
5007 no_errors = false;
5008 if (is_friend_decl == 2)
5009 return no_errors;
5010
5011 error (msg, decl);
5012 msg = 0;
5013 }
5014
5015 /* Clear out the default argument so that we are not
5016 confused later. */
5017 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5018 }
5019 }
5020
5021 /* At this point, if we're still interested in issuing messages,
5022 they must apply to classes surrounding the object declared. */
5023 if (msg)
5024 msg = G_("default argument for template parameter for class "
5025 "enclosing %qD");
5026 }
5027
5028 return no_errors;
5029 }
5030
5031 /* Worker for push_template_decl_real, called via
5032 for_each_template_parm. DATA is really an int, indicating the
5033 level of the parameters we are interested in. If T is a template
5034 parameter of that level, return nonzero. */
5035
5036 static int
5037 template_parm_this_level_p (tree t, void* data)
5038 {
5039 int this_level = *(int *)data;
5040 int level;
5041
5042 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5043 level = TEMPLATE_PARM_LEVEL (t);
5044 else
5045 level = TEMPLATE_TYPE_LEVEL (t);
5046 return level == this_level;
5047 }
5048
5049 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5050 parameters given by current_template_args, or reuses a
5051 previously existing one, if appropriate. Returns the DECL, or an
5052 equivalent one, if it is replaced via a call to duplicate_decls.
5053
5054 If IS_FRIEND is true, DECL is a friend declaration. */
5055
5056 tree
5057 push_template_decl_real (tree decl, bool is_friend)
5058 {
5059 tree tmpl;
5060 tree args;
5061 tree info;
5062 tree ctx;
5063 bool is_primary;
5064 bool is_partial;
5065 int new_template_p = 0;
5066 /* True if the template is a member template, in the sense of
5067 [temp.mem]. */
5068 bool member_template_p = false;
5069
5070 if (decl == error_mark_node || !current_template_parms)
5071 return error_mark_node;
5072
5073 /* See if this is a partial specialization. */
5074 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5075 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5076 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5077 || (VAR_P (decl)
5078 && DECL_LANG_SPECIFIC (decl)
5079 && DECL_TEMPLATE_SPECIALIZATION (decl)
5080 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5081
5082 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5083 is_friend = true;
5084
5085 if (is_friend)
5086 /* For a friend, we want the context of the friend function, not
5087 the type of which it is a friend. */
5088 ctx = CP_DECL_CONTEXT (decl);
5089 else if (CP_DECL_CONTEXT (decl)
5090 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5091 /* In the case of a virtual function, we want the class in which
5092 it is defined. */
5093 ctx = CP_DECL_CONTEXT (decl);
5094 else
5095 /* Otherwise, if we're currently defining some class, the DECL
5096 is assumed to be a member of the class. */
5097 ctx = current_scope ();
5098
5099 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5100 ctx = NULL_TREE;
5101
5102 if (!DECL_CONTEXT (decl))
5103 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5104
5105 /* See if this is a primary template. */
5106 if (is_friend && ctx
5107 && uses_template_parms_level (ctx, processing_template_decl))
5108 /* A friend template that specifies a class context, i.e.
5109 template <typename T> friend void A<T>::f();
5110 is not primary. */
5111 is_primary = false;
5112 else if (TREE_CODE (decl) == TYPE_DECL
5113 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5114 is_primary = false;
5115 else
5116 is_primary = template_parm_scope_p ();
5117
5118 if (is_primary)
5119 {
5120 warning (OPT_Wtemplates, "template %qD declared", decl);
5121
5122 if (DECL_CLASS_SCOPE_P (decl))
5123 member_template_p = true;
5124 if (TREE_CODE (decl) == TYPE_DECL
5125 && anon_aggrname_p (DECL_NAME (decl)))
5126 {
5127 error ("template class without a name");
5128 return error_mark_node;
5129 }
5130 else if (TREE_CODE (decl) == FUNCTION_DECL)
5131 {
5132 if (member_template_p)
5133 {
5134 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5135 error ("member template %qD may not have virt-specifiers", decl);
5136 }
5137 if (DECL_DESTRUCTOR_P (decl))
5138 {
5139 /* [temp.mem]
5140
5141 A destructor shall not be a member template. */
5142 error ("destructor %qD declared as member template", decl);
5143 return error_mark_node;
5144 }
5145 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5146 && (!prototype_p (TREE_TYPE (decl))
5147 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5148 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5149 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5150 == void_list_node)))
5151 {
5152 /* [basic.stc.dynamic.allocation]
5153
5154 An allocation function can be a function
5155 template. ... Template allocation functions shall
5156 have two or more parameters. */
5157 error ("invalid template declaration of %qD", decl);
5158 return error_mark_node;
5159 }
5160 }
5161 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5162 && CLASS_TYPE_P (TREE_TYPE (decl)))
5163 /* OK */;
5164 else if (TREE_CODE (decl) == TYPE_DECL
5165 && TYPE_DECL_ALIAS_P (decl))
5166 /* alias-declaration */
5167 gcc_assert (!DECL_ARTIFICIAL (decl));
5168 else if (VAR_P (decl))
5169 /* C++14 variable template. */;
5170 else
5171 {
5172 error ("template declaration of %q#D", decl);
5173 return error_mark_node;
5174 }
5175 }
5176
5177 /* Check to see that the rules regarding the use of default
5178 arguments are not being violated. */
5179 check_default_tmpl_args (decl, current_template_parms,
5180 is_primary, is_partial, /*is_friend_decl=*/0);
5181
5182 /* Ensure that there are no parameter packs in the type of this
5183 declaration that have not been expanded. */
5184 if (TREE_CODE (decl) == FUNCTION_DECL)
5185 {
5186 /* Check each of the arguments individually to see if there are
5187 any bare parameter packs. */
5188 tree type = TREE_TYPE (decl);
5189 tree arg = DECL_ARGUMENTS (decl);
5190 tree argtype = TYPE_ARG_TYPES (type);
5191
5192 while (arg && argtype)
5193 {
5194 if (!DECL_PACK_P (arg)
5195 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5196 {
5197 /* This is a PARM_DECL that contains unexpanded parameter
5198 packs. We have already complained about this in the
5199 check_for_bare_parameter_packs call, so just replace
5200 these types with ERROR_MARK_NODE. */
5201 TREE_TYPE (arg) = error_mark_node;
5202 TREE_VALUE (argtype) = error_mark_node;
5203 }
5204
5205 arg = DECL_CHAIN (arg);
5206 argtype = TREE_CHAIN (argtype);
5207 }
5208
5209 /* Check for bare parameter packs in the return type and the
5210 exception specifiers. */
5211 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5212 /* Errors were already issued, set return type to int
5213 as the frontend doesn't expect error_mark_node as
5214 the return type. */
5215 TREE_TYPE (type) = integer_type_node;
5216 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5217 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5218 }
5219 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5220 && TYPE_DECL_ALIAS_P (decl))
5221 ? DECL_ORIGINAL_TYPE (decl)
5222 : TREE_TYPE (decl)))
5223 {
5224 TREE_TYPE (decl) = error_mark_node;
5225 return error_mark_node;
5226 }
5227
5228 if (is_partial)
5229 return process_partial_specialization (decl);
5230
5231 args = current_template_args ();
5232
5233 if (!ctx
5234 || TREE_CODE (ctx) == FUNCTION_DECL
5235 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5236 || (TREE_CODE (decl) == TYPE_DECL
5237 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5238 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5239 {
5240 if (DECL_LANG_SPECIFIC (decl)
5241 && DECL_TEMPLATE_INFO (decl)
5242 && DECL_TI_TEMPLATE (decl))
5243 tmpl = DECL_TI_TEMPLATE (decl);
5244 /* If DECL is a TYPE_DECL for a class-template, then there won't
5245 be DECL_LANG_SPECIFIC. The information equivalent to
5246 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5247 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5248 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5249 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5250 {
5251 /* Since a template declaration already existed for this
5252 class-type, we must be redeclaring it here. Make sure
5253 that the redeclaration is valid. */
5254 redeclare_class_template (TREE_TYPE (decl),
5255 current_template_parms,
5256 current_template_constraints ());
5257 /* We don't need to create a new TEMPLATE_DECL; just use the
5258 one we already had. */
5259 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5260 }
5261 else
5262 {
5263 tmpl = build_template_decl (decl, current_template_parms,
5264 member_template_p);
5265 new_template_p = 1;
5266
5267 if (DECL_LANG_SPECIFIC (decl)
5268 && DECL_TEMPLATE_SPECIALIZATION (decl))
5269 {
5270 /* A specialization of a member template of a template
5271 class. */
5272 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5273 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5274 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5275 }
5276 }
5277 }
5278 else
5279 {
5280 tree a, t, current, parms;
5281 int i;
5282 tree tinfo = get_template_info (decl);
5283
5284 if (!tinfo)
5285 {
5286 error ("template definition of non-template %q#D", decl);
5287 return error_mark_node;
5288 }
5289
5290 tmpl = TI_TEMPLATE (tinfo);
5291
5292 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5293 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5294 && DECL_TEMPLATE_SPECIALIZATION (decl)
5295 && DECL_MEMBER_TEMPLATE_P (tmpl))
5296 {
5297 tree new_tmpl;
5298
5299 /* The declaration is a specialization of a member
5300 template, declared outside the class. Therefore, the
5301 innermost template arguments will be NULL, so we
5302 replace them with the arguments determined by the
5303 earlier call to check_explicit_specialization. */
5304 args = DECL_TI_ARGS (decl);
5305
5306 new_tmpl
5307 = build_template_decl (decl, current_template_parms,
5308 member_template_p);
5309 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5310 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5311 DECL_TI_TEMPLATE (decl) = new_tmpl;
5312 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5313 DECL_TEMPLATE_INFO (new_tmpl)
5314 = build_template_info (tmpl, args);
5315
5316 register_specialization (new_tmpl,
5317 most_general_template (tmpl),
5318 args,
5319 is_friend, 0);
5320 return decl;
5321 }
5322
5323 /* Make sure the template headers we got make sense. */
5324
5325 parms = DECL_TEMPLATE_PARMS (tmpl);
5326 i = TMPL_PARMS_DEPTH (parms);
5327 if (TMPL_ARGS_DEPTH (args) != i)
5328 {
5329 error ("expected %d levels of template parms for %q#D, got %d",
5330 i, decl, TMPL_ARGS_DEPTH (args));
5331 DECL_INTERFACE_KNOWN (decl) = 1;
5332 return error_mark_node;
5333 }
5334 else
5335 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5336 {
5337 a = TMPL_ARGS_LEVEL (args, i);
5338 t = INNERMOST_TEMPLATE_PARMS (parms);
5339
5340 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5341 {
5342 if (current == decl)
5343 error ("got %d template parameters for %q#D",
5344 TREE_VEC_LENGTH (a), decl);
5345 else
5346 error ("got %d template parameters for %q#T",
5347 TREE_VEC_LENGTH (a), current);
5348 error (" but %d required", TREE_VEC_LENGTH (t));
5349 /* Avoid crash in import_export_decl. */
5350 DECL_INTERFACE_KNOWN (decl) = 1;
5351 return error_mark_node;
5352 }
5353
5354 if (current == decl)
5355 current = ctx;
5356 else if (current == NULL_TREE)
5357 /* Can happen in erroneous input. */
5358 break;
5359 else
5360 current = get_containing_scope (current);
5361 }
5362
5363 /* Check that the parms are used in the appropriate qualifying scopes
5364 in the declarator. */
5365 if (!comp_template_args
5366 (TI_ARGS (tinfo),
5367 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5368 {
5369 error ("\
5370 template arguments to %qD do not match original template %qD",
5371 decl, DECL_TEMPLATE_RESULT (tmpl));
5372 if (!uses_template_parms (TI_ARGS (tinfo)))
5373 inform (input_location, "use template<> for an explicit specialization");
5374 /* Avoid crash in import_export_decl. */
5375 DECL_INTERFACE_KNOWN (decl) = 1;
5376 return error_mark_node;
5377 }
5378 }
5379
5380 DECL_TEMPLATE_RESULT (tmpl) = decl;
5381 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5382
5383 /* Push template declarations for global functions and types. Note
5384 that we do not try to push a global template friend declared in a
5385 template class; such a thing may well depend on the template
5386 parameters of the class. */
5387 if (new_template_p && !ctx
5388 && !(is_friend && template_class_depth (current_class_type) > 0))
5389 {
5390 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5391 if (tmpl == error_mark_node)
5392 return error_mark_node;
5393
5394 /* Hide template friend classes that haven't been declared yet. */
5395 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5396 {
5397 DECL_ANTICIPATED (tmpl) = 1;
5398 DECL_FRIEND_P (tmpl) = 1;
5399 }
5400 }
5401
5402 if (is_primary)
5403 {
5404 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5405 int i;
5406
5407 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5408 if (DECL_CONV_FN_P (tmpl))
5409 {
5410 int depth = TMPL_PARMS_DEPTH (parms);
5411
5412 /* It is a conversion operator. See if the type converted to
5413 depends on innermost template operands. */
5414
5415 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5416 depth))
5417 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5418 }
5419
5420 /* Give template template parms a DECL_CONTEXT of the template
5421 for which they are a parameter. */
5422 parms = INNERMOST_TEMPLATE_PARMS (parms);
5423 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5424 {
5425 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5426 if (TREE_CODE (parm) == TEMPLATE_DECL)
5427 DECL_CONTEXT (parm) = tmpl;
5428 }
5429
5430 if (TREE_CODE (decl) == TYPE_DECL
5431 && TYPE_DECL_ALIAS_P (decl)
5432 && complex_alias_template_p (tmpl))
5433 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5434 }
5435
5436 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5437 back to its most general template. If TMPL is a specialization,
5438 ARGS may only have the innermost set of arguments. Add the missing
5439 argument levels if necessary. */
5440 if (DECL_TEMPLATE_INFO (tmpl))
5441 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5442
5443 info = build_template_info (tmpl, args);
5444
5445 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5446 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5447 else
5448 {
5449 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5450 retrofit_lang_decl (decl);
5451 if (DECL_LANG_SPECIFIC (decl))
5452 DECL_TEMPLATE_INFO (decl) = info;
5453 }
5454
5455 if (flag_implicit_templates
5456 && !is_friend
5457 && TREE_PUBLIC (decl)
5458 && VAR_OR_FUNCTION_DECL_P (decl))
5459 /* Set DECL_COMDAT on template instantiations; if we force
5460 them to be emitted by explicit instantiation or -frepo,
5461 mark_needed will tell cgraph to do the right thing. */
5462 DECL_COMDAT (decl) = true;
5463
5464 return DECL_TEMPLATE_RESULT (tmpl);
5465 }
5466
5467 tree
5468 push_template_decl (tree decl)
5469 {
5470 return push_template_decl_real (decl, false);
5471 }
5472
5473 /* FN is an inheriting constructor that inherits from the constructor
5474 template INHERITED; turn FN into a constructor template with a matching
5475 template header. */
5476
5477 tree
5478 add_inherited_template_parms (tree fn, tree inherited)
5479 {
5480 tree inner_parms
5481 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5482 inner_parms = copy_node (inner_parms);
5483 tree parms
5484 = tree_cons (size_int (processing_template_decl + 1),
5485 inner_parms, current_template_parms);
5486 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5487 tree args = template_parms_to_args (parms);
5488 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5489 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5490 DECL_TEMPLATE_RESULT (tmpl) = fn;
5491 DECL_ARTIFICIAL (tmpl) = true;
5492 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5493 return tmpl;
5494 }
5495
5496 /* Called when a class template TYPE is redeclared with the indicated
5497 template PARMS, e.g.:
5498
5499 template <class T> struct S;
5500 template <class T> struct S {}; */
5501
5502 bool
5503 redeclare_class_template (tree type, tree parms, tree cons)
5504 {
5505 tree tmpl;
5506 tree tmpl_parms;
5507 int i;
5508
5509 if (!TYPE_TEMPLATE_INFO (type))
5510 {
5511 error ("%qT is not a template type", type);
5512 return false;
5513 }
5514
5515 tmpl = TYPE_TI_TEMPLATE (type);
5516 if (!PRIMARY_TEMPLATE_P (tmpl))
5517 /* The type is nested in some template class. Nothing to worry
5518 about here; there are no new template parameters for the nested
5519 type. */
5520 return true;
5521
5522 if (!parms)
5523 {
5524 error ("template specifiers not specified in declaration of %qD",
5525 tmpl);
5526 return false;
5527 }
5528
5529 parms = INNERMOST_TEMPLATE_PARMS (parms);
5530 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5531
5532 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5533 {
5534 error_n (input_location, TREE_VEC_LENGTH (parms),
5535 "redeclared with %d template parameter",
5536 "redeclared with %d template parameters",
5537 TREE_VEC_LENGTH (parms));
5538 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5539 "previous declaration %qD used %d template parameter",
5540 "previous declaration %qD used %d template parameters",
5541 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5542 return false;
5543 }
5544
5545 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5546 {
5547 tree tmpl_parm;
5548 tree parm;
5549 tree tmpl_default;
5550 tree parm_default;
5551
5552 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5553 || TREE_VEC_ELT (parms, i) == error_mark_node)
5554 continue;
5555
5556 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5557 if (error_operand_p (tmpl_parm))
5558 return false;
5559
5560 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5561 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5562 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5563
5564 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5565 TEMPLATE_DECL. */
5566 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5567 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5568 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5569 || (TREE_CODE (tmpl_parm) != PARM_DECL
5570 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5571 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5572 || (TREE_CODE (tmpl_parm) == PARM_DECL
5573 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5574 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5575 {
5576 error ("template parameter %q+#D", tmpl_parm);
5577 error ("redeclared here as %q#D", parm);
5578 return false;
5579 }
5580
5581 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5582 {
5583 /* We have in [temp.param]:
5584
5585 A template-parameter may not be given default arguments
5586 by two different declarations in the same scope. */
5587 error_at (input_location, "redefinition of default argument for %q#D", parm);
5588 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5589 "original definition appeared here");
5590 return false;
5591 }
5592
5593 if (parm_default != NULL_TREE)
5594 /* Update the previous template parameters (which are the ones
5595 that will really count) with the new default value. */
5596 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5597 else if (tmpl_default != NULL_TREE)
5598 /* Update the new parameters, too; they'll be used as the
5599 parameters for any members. */
5600 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5601
5602 /* Give each template template parm in this redeclaration a
5603 DECL_CONTEXT of the template for which they are a parameter. */
5604 if (TREE_CODE (parm) == TEMPLATE_DECL)
5605 {
5606 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5607 DECL_CONTEXT (parm) = tmpl;
5608 }
5609 }
5610
5611 // Cannot redeclare a class template with a different set of constraints.
5612 if (!equivalent_constraints (get_constraints (tmpl), cons))
5613 {
5614 error_at (input_location, "redeclaration %q#D with different "
5615 "constraints", tmpl);
5616 inform (DECL_SOURCE_LOCATION (tmpl),
5617 "original declaration appeared here");
5618 }
5619
5620 return true;
5621 }
5622
5623 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5624 to be used when the caller has already checked
5625 (processing_template_decl
5626 && !instantiation_dependent_expression_p (expr)
5627 && potential_constant_expression (expr))
5628 and cleared processing_template_decl. */
5629
5630 tree
5631 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5632 {
5633 return tsubst_copy_and_build (expr,
5634 /*args=*/NULL_TREE,
5635 complain,
5636 /*in_decl=*/NULL_TREE,
5637 /*function_p=*/false,
5638 /*integral_constant_expression_p=*/true);
5639 }
5640
5641 /* Simplify EXPR if it is a non-dependent expression. Returns the
5642 (possibly simplified) expression. */
5643
5644 tree
5645 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5646 {
5647 if (expr == NULL_TREE)
5648 return NULL_TREE;
5649
5650 /* If we're in a template, but EXPR isn't value dependent, simplify
5651 it. We're supposed to treat:
5652
5653 template <typename T> void f(T[1 + 1]);
5654 template <typename T> void f(T[2]);
5655
5656 as two declarations of the same function, for example. */
5657 if (processing_template_decl
5658 && !instantiation_dependent_expression_p (expr)
5659 && potential_constant_expression (expr))
5660 {
5661 processing_template_decl_sentinel s;
5662 expr = instantiate_non_dependent_expr_internal (expr, complain);
5663 }
5664 return expr;
5665 }
5666
5667 tree
5668 instantiate_non_dependent_expr (tree expr)
5669 {
5670 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5671 }
5672
5673 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5674 an uninstantiated expression. */
5675
5676 tree
5677 instantiate_non_dependent_or_null (tree expr)
5678 {
5679 if (expr == NULL_TREE)
5680 return NULL_TREE;
5681 if (processing_template_decl)
5682 {
5683 if (instantiation_dependent_expression_p (expr)
5684 || !potential_constant_expression (expr))
5685 expr = NULL_TREE;
5686 else
5687 {
5688 processing_template_decl_sentinel s;
5689 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5690 }
5691 }
5692 return expr;
5693 }
5694
5695 /* True iff T is a specialization of a variable template. */
5696
5697 bool
5698 variable_template_specialization_p (tree t)
5699 {
5700 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5701 return false;
5702 tree tmpl = DECL_TI_TEMPLATE (t);
5703 return variable_template_p (tmpl);
5704 }
5705
5706 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5707 template declaration, or a TYPE_DECL for an alias declaration. */
5708
5709 bool
5710 alias_type_or_template_p (tree t)
5711 {
5712 if (t == NULL_TREE)
5713 return false;
5714 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5715 || (TYPE_P (t)
5716 && TYPE_NAME (t)
5717 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5718 || DECL_ALIAS_TEMPLATE_P (t));
5719 }
5720
5721 /* Return TRUE iff T is a specialization of an alias template. */
5722
5723 bool
5724 alias_template_specialization_p (const_tree t)
5725 {
5726 /* It's an alias template specialization if it's an alias and its
5727 TYPE_NAME is a specialization of a primary template. */
5728 if (TYPE_ALIAS_P (t))
5729 {
5730 tree name = TYPE_NAME (t);
5731 if (DECL_LANG_SPECIFIC (name))
5732 if (tree ti = DECL_TEMPLATE_INFO (name))
5733 {
5734 tree tmpl = TI_TEMPLATE (ti);
5735 return PRIMARY_TEMPLATE_P (tmpl);
5736 }
5737 }
5738 return false;
5739 }
5740
5741 /* An alias template is complex from a SFINAE perspective if a template-id
5742 using that alias can be ill-formed when the expansion is not, as with
5743 the void_t template. We determine this by checking whether the
5744 expansion for the alias template uses all its template parameters. */
5745
5746 struct uses_all_template_parms_data
5747 {
5748 int level;
5749 bool *seen;
5750 };
5751
5752 static int
5753 uses_all_template_parms_r (tree t, void *data_)
5754 {
5755 struct uses_all_template_parms_data &data
5756 = *(struct uses_all_template_parms_data*)data_;
5757 tree idx = get_template_parm_index (t);
5758
5759 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5760 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5761 return 0;
5762 }
5763
5764 static bool
5765 complex_alias_template_p (const_tree tmpl)
5766 {
5767 struct uses_all_template_parms_data data;
5768 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5769 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5770 data.level = TMPL_PARMS_DEPTH (parms);
5771 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5772 data.seen = XALLOCAVEC (bool, len);
5773 for (int i = 0; i < len; ++i)
5774 data.seen[i] = false;
5775
5776 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5777 for (int i = 0; i < len; ++i)
5778 if (!data.seen[i])
5779 return true;
5780 return false;
5781 }
5782
5783 /* Return TRUE iff T is a specialization of a complex alias template with
5784 dependent template-arguments. */
5785
5786 bool
5787 dependent_alias_template_spec_p (const_tree t)
5788 {
5789 return (alias_template_specialization_p (t)
5790 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5791 && (any_dependent_template_arguments_p
5792 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5793 }
5794
5795 /* Return the number of innermost template parameters in TMPL. */
5796
5797 static int
5798 num_innermost_template_parms (tree tmpl)
5799 {
5800 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5801 return TREE_VEC_LENGTH (parms);
5802 }
5803
5804 /* Return either TMPL or another template that it is equivalent to under DR
5805 1286: An alias that just changes the name of a template is equivalent to
5806 the other template. */
5807
5808 static tree
5809 get_underlying_template (tree tmpl)
5810 {
5811 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5812 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5813 {
5814 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5815 if (TYPE_TEMPLATE_INFO (result))
5816 {
5817 tree sub = TYPE_TI_TEMPLATE (result);
5818 if (PRIMARY_TEMPLATE_P (sub)
5819 && (num_innermost_template_parms (tmpl)
5820 == num_innermost_template_parms (sub)))
5821 {
5822 tree alias_args = INNERMOST_TEMPLATE_ARGS
5823 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5824 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5825 break;
5826 /* The alias type is equivalent to the pattern of the
5827 underlying template, so strip the alias. */
5828 tmpl = sub;
5829 continue;
5830 }
5831 }
5832 break;
5833 }
5834 return tmpl;
5835 }
5836
5837 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5838 must be a function or a pointer-to-function type, as specified
5839 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5840 and check that the resulting function has external linkage. */
5841
5842 static tree
5843 convert_nontype_argument_function (tree type, tree expr,
5844 tsubst_flags_t complain)
5845 {
5846 tree fns = expr;
5847 tree fn, fn_no_ptr;
5848 linkage_kind linkage;
5849
5850 fn = instantiate_type (type, fns, tf_none);
5851 if (fn == error_mark_node)
5852 return error_mark_node;
5853
5854 fn_no_ptr = fn;
5855 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5856 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5857 if (BASELINK_P (fn_no_ptr))
5858 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5859
5860 /* [temp.arg.nontype]/1
5861
5862 A template-argument for a non-type, non-template template-parameter
5863 shall be one of:
5864 [...]
5865 -- the address of an object or function with external [C++11: or
5866 internal] linkage. */
5867
5868 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5869 {
5870 if (complain & tf_error)
5871 {
5872 error ("%qE is not a valid template argument for type %qT",
5873 expr, type);
5874 if (TYPE_PTR_P (type))
5875 error ("it must be the address of a function with "
5876 "external linkage");
5877 else
5878 error ("it must be the name of a function with "
5879 "external linkage");
5880 }
5881 return NULL_TREE;
5882 }
5883
5884 linkage = decl_linkage (fn_no_ptr);
5885 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5886 {
5887 if (complain & tf_error)
5888 {
5889 if (cxx_dialect >= cxx11)
5890 error ("%qE is not a valid template argument for type %qT "
5891 "because %qD has no linkage",
5892 expr, type, fn_no_ptr);
5893 else
5894 error ("%qE is not a valid template argument for type %qT "
5895 "because %qD does not have external linkage",
5896 expr, type, fn_no_ptr);
5897 }
5898 return NULL_TREE;
5899 }
5900
5901 return fn;
5902 }
5903
5904 /* Subroutine of convert_nontype_argument.
5905 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5906 Emit an error otherwise. */
5907
5908 static bool
5909 check_valid_ptrmem_cst_expr (tree type, tree expr,
5910 tsubst_flags_t complain)
5911 {
5912 STRIP_NOPS (expr);
5913 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5914 return true;
5915 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5916 return true;
5917 if (processing_template_decl
5918 && TREE_CODE (expr) == ADDR_EXPR
5919 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5920 return true;
5921 if (complain & tf_error)
5922 {
5923 error ("%qE is not a valid template argument for type %qT",
5924 expr, type);
5925 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5926 }
5927 return false;
5928 }
5929
5930 /* Returns TRUE iff the address of OP is value-dependent.
5931
5932 14.6.2.4 [temp.dep.temp]:
5933 A non-integral non-type template-argument is dependent if its type is
5934 dependent or it has either of the following forms
5935 qualified-id
5936 & qualified-id
5937 and contains a nested-name-specifier which specifies a class-name that
5938 names a dependent type.
5939
5940 We generalize this to just say that the address of a member of a
5941 dependent class is value-dependent; the above doesn't cover the
5942 address of a static data member named with an unqualified-id. */
5943
5944 static bool
5945 has_value_dependent_address (tree op)
5946 {
5947 /* We could use get_inner_reference here, but there's no need;
5948 this is only relevant for template non-type arguments, which
5949 can only be expressed as &id-expression. */
5950 if (DECL_P (op))
5951 {
5952 tree ctx = CP_DECL_CONTEXT (op);
5953 if (TYPE_P (ctx) && dependent_type_p (ctx))
5954 return true;
5955 }
5956
5957 return false;
5958 }
5959
5960 /* The next set of functions are used for providing helpful explanatory
5961 diagnostics for failed overload resolution. Their messages should be
5962 indented by two spaces for consistency with the messages in
5963 call.c */
5964
5965 static int
5966 unify_success (bool /*explain_p*/)
5967 {
5968 return 0;
5969 }
5970
5971 static int
5972 unify_parameter_deduction_failure (bool explain_p, tree parm)
5973 {
5974 if (explain_p)
5975 inform (input_location,
5976 " couldn't deduce template parameter %qD", parm);
5977 return 1;
5978 }
5979
5980 static int
5981 unify_invalid (bool /*explain_p*/)
5982 {
5983 return 1;
5984 }
5985
5986 static int
5987 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5988 {
5989 if (explain_p)
5990 inform (input_location,
5991 " types %qT and %qT have incompatible cv-qualifiers",
5992 parm, arg);
5993 return 1;
5994 }
5995
5996 static int
5997 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5998 {
5999 if (explain_p)
6000 inform (input_location, " mismatched types %qT and %qT", parm, arg);
6001 return 1;
6002 }
6003
6004 static int
6005 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6006 {
6007 if (explain_p)
6008 inform (input_location,
6009 " template parameter %qD is not a parameter pack, but "
6010 "argument %qD is",
6011 parm, arg);
6012 return 1;
6013 }
6014
6015 static int
6016 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6017 {
6018 if (explain_p)
6019 inform (input_location,
6020 " template argument %qE does not match "
6021 "pointer-to-member constant %qE",
6022 arg, parm);
6023 return 1;
6024 }
6025
6026 static int
6027 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6028 {
6029 if (explain_p)
6030 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6031 return 1;
6032 }
6033
6034 static int
6035 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6036 {
6037 if (explain_p)
6038 inform (input_location,
6039 " inconsistent parameter pack deduction with %qT and %qT",
6040 old_arg, new_arg);
6041 return 1;
6042 }
6043
6044 static int
6045 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6046 {
6047 if (explain_p)
6048 {
6049 if (TYPE_P (parm))
6050 inform (input_location,
6051 " deduced conflicting types for parameter %qT (%qT and %qT)",
6052 parm, first, second);
6053 else
6054 inform (input_location,
6055 " deduced conflicting values for non-type parameter "
6056 "%qE (%qE and %qE)", parm, first, second);
6057 }
6058 return 1;
6059 }
6060
6061 static int
6062 unify_vla_arg (bool explain_p, tree arg)
6063 {
6064 if (explain_p)
6065 inform (input_location,
6066 " variable-sized array type %qT is not "
6067 "a valid template argument",
6068 arg);
6069 return 1;
6070 }
6071
6072 static int
6073 unify_method_type_error (bool explain_p, tree arg)
6074 {
6075 if (explain_p)
6076 inform (input_location,
6077 " member function type %qT is not a valid template argument",
6078 arg);
6079 return 1;
6080 }
6081
6082 static int
6083 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6084 {
6085 if (explain_p)
6086 {
6087 if (least_p)
6088 inform_n (input_location, wanted,
6089 " candidate expects at least %d argument, %d provided",
6090 " candidate expects at least %d arguments, %d provided",
6091 wanted, have);
6092 else
6093 inform_n (input_location, wanted,
6094 " candidate expects %d argument, %d provided",
6095 " candidate expects %d arguments, %d provided",
6096 wanted, have);
6097 }
6098 return 1;
6099 }
6100
6101 static int
6102 unify_too_many_arguments (bool explain_p, int have, int wanted)
6103 {
6104 return unify_arity (explain_p, have, wanted);
6105 }
6106
6107 static int
6108 unify_too_few_arguments (bool explain_p, int have, int wanted,
6109 bool least_p = false)
6110 {
6111 return unify_arity (explain_p, have, wanted, least_p);
6112 }
6113
6114 static int
6115 unify_arg_conversion (bool explain_p, tree to_type,
6116 tree from_type, tree arg)
6117 {
6118 if (explain_p)
6119 inform (EXPR_LOC_OR_LOC (arg, input_location),
6120 " cannot convert %qE (type %qT) to type %qT",
6121 arg, from_type, to_type);
6122 return 1;
6123 }
6124
6125 static int
6126 unify_no_common_base (bool explain_p, enum template_base_result r,
6127 tree parm, tree arg)
6128 {
6129 if (explain_p)
6130 switch (r)
6131 {
6132 case tbr_ambiguous_baseclass:
6133 inform (input_location, " %qT is an ambiguous base class of %qT",
6134 parm, arg);
6135 break;
6136 default:
6137 inform (input_location, " %qT is not derived from %qT", arg, parm);
6138 break;
6139 }
6140 return 1;
6141 }
6142
6143 static int
6144 unify_inconsistent_template_template_parameters (bool explain_p)
6145 {
6146 if (explain_p)
6147 inform (input_location,
6148 " template parameters of a template template argument are "
6149 "inconsistent with other deduced template arguments");
6150 return 1;
6151 }
6152
6153 static int
6154 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6155 {
6156 if (explain_p)
6157 inform (input_location,
6158 " can't deduce a template for %qT from non-template type %qT",
6159 parm, arg);
6160 return 1;
6161 }
6162
6163 static int
6164 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6165 {
6166 if (explain_p)
6167 inform (input_location,
6168 " template argument %qE does not match %qD", arg, parm);
6169 return 1;
6170 }
6171
6172 static int
6173 unify_overload_resolution_failure (bool explain_p, tree arg)
6174 {
6175 if (explain_p)
6176 inform (input_location,
6177 " could not resolve address from overloaded function %qE",
6178 arg);
6179 return 1;
6180 }
6181
6182 /* Attempt to convert the non-type template parameter EXPR to the
6183 indicated TYPE. If the conversion is successful, return the
6184 converted value. If the conversion is unsuccessful, return
6185 NULL_TREE if we issued an error message, or error_mark_node if we
6186 did not. We issue error messages for out-and-out bad template
6187 parameters, but not simply because the conversion failed, since we
6188 might be just trying to do argument deduction. Both TYPE and EXPR
6189 must be non-dependent.
6190
6191 The conversion follows the special rules described in
6192 [temp.arg.nontype], and it is much more strict than an implicit
6193 conversion.
6194
6195 This function is called twice for each template argument (see
6196 lookup_template_class for a more accurate description of this
6197 problem). This means that we need to handle expressions which
6198 are not valid in a C++ source, but can be created from the
6199 first call (for instance, casts to perform conversions). These
6200 hacks can go away after we fix the double coercion problem. */
6201
6202 static tree
6203 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6204 {
6205 tree expr_type;
6206
6207 /* Detect immediately string literals as invalid non-type argument.
6208 This special-case is not needed for correctness (we would easily
6209 catch this later), but only to provide better diagnostic for this
6210 common user mistake. As suggested by DR 100, we do not mention
6211 linkage issues in the diagnostic as this is not the point. */
6212 /* FIXME we're making this OK. */
6213 if (TREE_CODE (expr) == STRING_CST)
6214 {
6215 if (complain & tf_error)
6216 error ("%qE is not a valid template argument for type %qT "
6217 "because string literals can never be used in this context",
6218 expr, type);
6219 return NULL_TREE;
6220 }
6221
6222 /* Add the ADDR_EXPR now for the benefit of
6223 value_dependent_expression_p. */
6224 if (TYPE_PTROBV_P (type)
6225 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6226 {
6227 expr = decay_conversion (expr, complain);
6228 if (expr == error_mark_node)
6229 return error_mark_node;
6230 }
6231
6232 /* If we are in a template, EXPR may be non-dependent, but still
6233 have a syntactic, rather than semantic, form. For example, EXPR
6234 might be a SCOPE_REF, rather than the VAR_DECL to which the
6235 SCOPE_REF refers. Preserving the qualifying scope is necessary
6236 so that access checking can be performed when the template is
6237 instantiated -- but here we need the resolved form so that we can
6238 convert the argument. */
6239 bool non_dep = false;
6240 if (TYPE_REF_OBJ_P (type)
6241 && has_value_dependent_address (expr))
6242 /* If we want the address and it's value-dependent, don't fold. */;
6243 else if (!type_unknown_p (expr)
6244 && processing_template_decl
6245 && !instantiation_dependent_expression_p (expr)
6246 && potential_constant_expression (expr))
6247 non_dep = true;
6248 if (error_operand_p (expr))
6249 return error_mark_node;
6250 expr_type = TREE_TYPE (expr);
6251 if (TREE_CODE (type) == REFERENCE_TYPE)
6252 expr = mark_lvalue_use (expr);
6253 else
6254 expr = mark_rvalue_use (expr);
6255
6256 /* If the argument is non-dependent, perform any conversions in
6257 non-dependent context as well. */
6258 processing_template_decl_sentinel s (non_dep);
6259 if (non_dep)
6260 expr = instantiate_non_dependent_expr_internal (expr, complain);
6261
6262 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6263 to a non-type argument of "nullptr". */
6264 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6265 expr = fold_simple (convert (type, expr));
6266
6267 /* In C++11, integral or enumeration non-type template arguments can be
6268 arbitrary constant expressions. Pointer and pointer to
6269 member arguments can be general constant expressions that evaluate
6270 to a null value, but otherwise still need to be of a specific form. */
6271 if (cxx_dialect >= cxx11)
6272 {
6273 if (TREE_CODE (expr) == PTRMEM_CST)
6274 /* A PTRMEM_CST is already constant, and a valid template
6275 argument for a parameter of pointer to member type, we just want
6276 to leave it in that form rather than lower it to a
6277 CONSTRUCTOR. */;
6278 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6279 expr = maybe_constant_value (expr);
6280 else if (cxx_dialect >= cxx1z)
6281 {
6282 if (TREE_CODE (type) != REFERENCE_TYPE)
6283 expr = maybe_constant_value (expr);
6284 else if (REFERENCE_REF_P (expr))
6285 {
6286 expr = TREE_OPERAND (expr, 0);
6287 expr = maybe_constant_value (expr);
6288 expr = convert_from_reference (expr);
6289 }
6290 }
6291 else if (TYPE_PTR_OR_PTRMEM_P (type))
6292 {
6293 tree folded = maybe_constant_value (expr);
6294 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6295 : null_member_pointer_value_p (folded))
6296 expr = folded;
6297 }
6298 }
6299
6300 /* HACK: Due to double coercion, we can get a
6301 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6302 which is the tree that we built on the first call (see
6303 below when coercing to reference to object or to reference to
6304 function). We just strip everything and get to the arg.
6305 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6306 for examples. */
6307 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6308 {
6309 tree probe_type, probe = expr;
6310 if (REFERENCE_REF_P (probe))
6311 probe = TREE_OPERAND (probe, 0);
6312 probe_type = TREE_TYPE (probe);
6313 if (TREE_CODE (probe) == NOP_EXPR)
6314 {
6315 /* ??? Maybe we could use convert_from_reference here, but we
6316 would need to relax its constraints because the NOP_EXPR
6317 could actually change the type to something more cv-qualified,
6318 and this is not folded by convert_from_reference. */
6319 tree addr = TREE_OPERAND (probe, 0);
6320 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6321 && TREE_CODE (addr) == ADDR_EXPR
6322 && TYPE_PTR_P (TREE_TYPE (addr))
6323 && (same_type_ignoring_top_level_qualifiers_p
6324 (TREE_TYPE (probe_type),
6325 TREE_TYPE (TREE_TYPE (addr)))))
6326 {
6327 expr = TREE_OPERAND (addr, 0);
6328 expr_type = TREE_TYPE (probe_type);
6329 }
6330 }
6331 }
6332
6333 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6334 parameter is a pointer to object, through decay and
6335 qualification conversion. Let's strip everything. */
6336 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6337 {
6338 tree probe = expr;
6339 STRIP_NOPS (probe);
6340 if (TREE_CODE (probe) == ADDR_EXPR
6341 && TYPE_PTR_P (TREE_TYPE (probe)))
6342 {
6343 /* Skip the ADDR_EXPR only if it is part of the decay for
6344 an array. Otherwise, it is part of the original argument
6345 in the source code. */
6346 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6347 probe = TREE_OPERAND (probe, 0);
6348 expr = probe;
6349 expr_type = TREE_TYPE (expr);
6350 }
6351 }
6352
6353 /* [temp.arg.nontype]/5, bullet 1
6354
6355 For a non-type template-parameter of integral or enumeration type,
6356 integral promotions (_conv.prom_) and integral conversions
6357 (_conv.integral_) are applied. */
6358 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6359 {
6360 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6361 t = maybe_constant_value (t);
6362 if (t != error_mark_node)
6363 expr = t;
6364
6365 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6366 return error_mark_node;
6367
6368 /* Notice that there are constant expressions like '4 % 0' which
6369 do not fold into integer constants. */
6370 if (TREE_CODE (expr) != INTEGER_CST)
6371 {
6372 if (complain & tf_error)
6373 {
6374 int errs = errorcount, warns = warningcount + werrorcount;
6375 if (processing_template_decl
6376 && !require_potential_constant_expression (expr))
6377 return NULL_TREE;
6378 expr = cxx_constant_value (expr);
6379 if (errorcount > errs || warningcount + werrorcount > warns)
6380 inform (EXPR_LOC_OR_LOC (expr, input_location),
6381 "in template argument for type %qT ", type);
6382 if (expr == error_mark_node)
6383 return NULL_TREE;
6384 /* else cxx_constant_value complained but gave us
6385 a real constant, so go ahead. */
6386 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6387 }
6388 else
6389 return NULL_TREE;
6390 }
6391
6392 /* Avoid typedef problems. */
6393 if (TREE_TYPE (expr) != type)
6394 expr = fold_convert (type, expr);
6395 }
6396 /* [temp.arg.nontype]/5, bullet 2
6397
6398 For a non-type template-parameter of type pointer to object,
6399 qualification conversions (_conv.qual_) and the array-to-pointer
6400 conversion (_conv.array_) are applied. */
6401 else if (TYPE_PTROBV_P (type))
6402 {
6403 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6404
6405 A template-argument for a non-type, non-template template-parameter
6406 shall be one of: [...]
6407
6408 -- the name of a non-type template-parameter;
6409 -- the address of an object or function with external linkage, [...]
6410 expressed as "& id-expression" where the & is optional if the name
6411 refers to a function or array, or if the corresponding
6412 template-parameter is a reference.
6413
6414 Here, we do not care about functions, as they are invalid anyway
6415 for a parameter of type pointer-to-object. */
6416
6417 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6418 /* Non-type template parameters are OK. */
6419 ;
6420 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6421 /* Null pointer values are OK in C++11. */;
6422 else if (TREE_CODE (expr) != ADDR_EXPR
6423 && TREE_CODE (expr_type) != ARRAY_TYPE)
6424 {
6425 if (VAR_P (expr))
6426 {
6427 if (complain & tf_error)
6428 error ("%qD is not a valid template argument "
6429 "because %qD is a variable, not the address of "
6430 "a variable", expr, expr);
6431 return NULL_TREE;
6432 }
6433 if (POINTER_TYPE_P (expr_type))
6434 {
6435 if (complain & tf_error)
6436 error ("%qE is not a valid template argument for %qT "
6437 "because it is not the address of a variable",
6438 expr, type);
6439 return NULL_TREE;
6440 }
6441 /* Other values, like integer constants, might be valid
6442 non-type arguments of some other type. */
6443 return error_mark_node;
6444 }
6445 else
6446 {
6447 tree decl;
6448
6449 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6450 ? TREE_OPERAND (expr, 0) : expr);
6451 if (!VAR_P (decl))
6452 {
6453 if (complain & tf_error)
6454 error ("%qE is not a valid template argument of type %qT "
6455 "because %qE is not a variable", expr, type, decl);
6456 return NULL_TREE;
6457 }
6458 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6459 {
6460 if (complain & tf_error)
6461 error ("%qE is not a valid template argument of type %qT "
6462 "because %qD does not have external linkage",
6463 expr, type, decl);
6464 return NULL_TREE;
6465 }
6466 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6467 {
6468 if (complain & tf_error)
6469 error ("%qE is not a valid template argument of type %qT "
6470 "because %qD has no linkage", expr, type, decl);
6471 return NULL_TREE;
6472 }
6473 }
6474
6475 expr = decay_conversion (expr, complain);
6476 if (expr == error_mark_node)
6477 return error_mark_node;
6478
6479 expr = perform_qualification_conversions (type, expr);
6480 if (expr == error_mark_node)
6481 return error_mark_node;
6482 }
6483 /* [temp.arg.nontype]/5, bullet 3
6484
6485 For a non-type template-parameter of type reference to object, no
6486 conversions apply. The type referred to by the reference may be more
6487 cv-qualified than the (otherwise identical) type of the
6488 template-argument. The template-parameter is bound directly to the
6489 template-argument, which must be an lvalue. */
6490 else if (TYPE_REF_OBJ_P (type))
6491 {
6492 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6493 expr_type))
6494 return error_mark_node;
6495
6496 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6497 {
6498 if (complain & tf_error)
6499 error ("%qE is not a valid template argument for type %qT "
6500 "because of conflicts in cv-qualification", expr, type);
6501 return NULL_TREE;
6502 }
6503
6504 if (!real_lvalue_p (expr))
6505 {
6506 if (complain & tf_error)
6507 error ("%qE is not a valid template argument for type %qT "
6508 "because it is not an lvalue", expr, type);
6509 return NULL_TREE;
6510 }
6511
6512 /* [temp.arg.nontype]/1
6513
6514 A template-argument for a non-type, non-template template-parameter
6515 shall be one of: [...]
6516
6517 -- the address of an object or function with external linkage. */
6518 if (INDIRECT_REF_P (expr)
6519 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6520 {
6521 expr = TREE_OPERAND (expr, 0);
6522 if (DECL_P (expr))
6523 {
6524 if (complain & tf_error)
6525 error ("%q#D is not a valid template argument for type %qT "
6526 "because a reference variable does not have a constant "
6527 "address", expr, type);
6528 return NULL_TREE;
6529 }
6530 }
6531
6532 if (!DECL_P (expr))
6533 {
6534 if (complain & tf_error)
6535 error ("%qE is not a valid template argument for type %qT "
6536 "because it is not an object with linkage",
6537 expr, type);
6538 return NULL_TREE;
6539 }
6540
6541 /* DR 1155 allows internal linkage in C++11 and up. */
6542 linkage_kind linkage = decl_linkage (expr);
6543 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6544 {
6545 if (complain & tf_error)
6546 error ("%qE is not a valid template argument for type %qT "
6547 "because object %qD does not have linkage",
6548 expr, type, expr);
6549 return NULL_TREE;
6550 }
6551
6552 expr = build_nop (type, build_address (expr));
6553 }
6554 /* [temp.arg.nontype]/5, bullet 4
6555
6556 For a non-type template-parameter of type pointer to function, only
6557 the function-to-pointer conversion (_conv.func_) is applied. If the
6558 template-argument represents a set of overloaded functions (or a
6559 pointer to such), the matching function is selected from the set
6560 (_over.over_). */
6561 else if (TYPE_PTRFN_P (type))
6562 {
6563 /* If the argument is a template-id, we might not have enough
6564 context information to decay the pointer. */
6565 if (!type_unknown_p (expr_type))
6566 {
6567 expr = decay_conversion (expr, complain);
6568 if (expr == error_mark_node)
6569 return error_mark_node;
6570 }
6571
6572 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6573 /* Null pointer values are OK in C++11. */
6574 return perform_qualification_conversions (type, expr);
6575
6576 expr = convert_nontype_argument_function (type, expr, complain);
6577 if (!expr || expr == error_mark_node)
6578 return expr;
6579 }
6580 /* [temp.arg.nontype]/5, bullet 5
6581
6582 For a non-type template-parameter of type reference to function, no
6583 conversions apply. If the template-argument represents a set of
6584 overloaded functions, the matching function is selected from the set
6585 (_over.over_). */
6586 else if (TYPE_REFFN_P (type))
6587 {
6588 if (TREE_CODE (expr) == ADDR_EXPR)
6589 {
6590 if (complain & tf_error)
6591 {
6592 error ("%qE is not a valid template argument for type %qT "
6593 "because it is a pointer", expr, type);
6594 inform (input_location, "try using %qE instead",
6595 TREE_OPERAND (expr, 0));
6596 }
6597 return NULL_TREE;
6598 }
6599
6600 expr = convert_nontype_argument_function (type, expr, complain);
6601 if (!expr || expr == error_mark_node)
6602 return expr;
6603
6604 expr = build_nop (type, build_address (expr));
6605 }
6606 /* [temp.arg.nontype]/5, bullet 6
6607
6608 For a non-type template-parameter of type pointer to member function,
6609 no conversions apply. If the template-argument represents a set of
6610 overloaded member functions, the matching member function is selected
6611 from the set (_over.over_). */
6612 else if (TYPE_PTRMEMFUNC_P (type))
6613 {
6614 expr = instantiate_type (type, expr, tf_none);
6615 if (expr == error_mark_node)
6616 return error_mark_node;
6617
6618 /* [temp.arg.nontype] bullet 1 says the pointer to member
6619 expression must be a pointer-to-member constant. */
6620 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6621 return error_mark_node;
6622
6623 /* There is no way to disable standard conversions in
6624 resolve_address_of_overloaded_function (called by
6625 instantiate_type). It is possible that the call succeeded by
6626 converting &B::I to &D::I (where B is a base of D), so we need
6627 to reject this conversion here.
6628
6629 Actually, even if there was a way to disable standard conversions,
6630 it would still be better to reject them here so that we can
6631 provide a superior diagnostic. */
6632 if (!same_type_p (TREE_TYPE (expr), type))
6633 {
6634 if (complain & tf_error)
6635 {
6636 error ("%qE is not a valid template argument for type %qT "
6637 "because it is of type %qT", expr, type,
6638 TREE_TYPE (expr));
6639 /* If we are just one standard conversion off, explain. */
6640 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6641 inform (input_location,
6642 "standard conversions are not allowed in this context");
6643 }
6644 return NULL_TREE;
6645 }
6646 }
6647 /* [temp.arg.nontype]/5, bullet 7
6648
6649 For a non-type template-parameter of type pointer to data member,
6650 qualification conversions (_conv.qual_) are applied. */
6651 else if (TYPE_PTRDATAMEM_P (type))
6652 {
6653 /* [temp.arg.nontype] bullet 1 says the pointer to member
6654 expression must be a pointer-to-member constant. */
6655 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6656 return error_mark_node;
6657
6658 expr = perform_qualification_conversions (type, expr);
6659 if (expr == error_mark_node)
6660 return expr;
6661 }
6662 else if (NULLPTR_TYPE_P (type))
6663 {
6664 if (expr != nullptr_node)
6665 {
6666 if (complain & tf_error)
6667 error ("%qE is not a valid template argument for type %qT "
6668 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6669 return NULL_TREE;
6670 }
6671 return expr;
6672 }
6673 /* A template non-type parameter must be one of the above. */
6674 else
6675 gcc_unreachable ();
6676
6677 /* Sanity check: did we actually convert the argument to the
6678 right type? */
6679 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6680 (type, TREE_TYPE (expr)));
6681 return convert_from_reference (expr);
6682 }
6683
6684 /* Subroutine of coerce_template_template_parms, which returns 1 if
6685 PARM_PARM and ARG_PARM match using the rule for the template
6686 parameters of template template parameters. Both PARM and ARG are
6687 template parameters; the rest of the arguments are the same as for
6688 coerce_template_template_parms.
6689 */
6690 static int
6691 coerce_template_template_parm (tree parm,
6692 tree arg,
6693 tsubst_flags_t complain,
6694 tree in_decl,
6695 tree outer_args)
6696 {
6697 if (arg == NULL_TREE || error_operand_p (arg)
6698 || parm == NULL_TREE || error_operand_p (parm))
6699 return 0;
6700
6701 if (TREE_CODE (arg) != TREE_CODE (parm))
6702 return 0;
6703
6704 switch (TREE_CODE (parm))
6705 {
6706 case TEMPLATE_DECL:
6707 /* We encounter instantiations of templates like
6708 template <template <template <class> class> class TT>
6709 class C; */
6710 {
6711 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6712 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6713
6714 if (!coerce_template_template_parms
6715 (parmparm, argparm, complain, in_decl, outer_args))
6716 return 0;
6717 }
6718 /* Fall through. */
6719
6720 case TYPE_DECL:
6721 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6722 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6723 /* Argument is a parameter pack but parameter is not. */
6724 return 0;
6725 break;
6726
6727 case PARM_DECL:
6728 /* The tsubst call is used to handle cases such as
6729
6730 template <int> class C {};
6731 template <class T, template <T> class TT> class D {};
6732 D<int, C> d;
6733
6734 i.e. the parameter list of TT depends on earlier parameters. */
6735 if (!uses_template_parms (TREE_TYPE (arg)))
6736 {
6737 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6738 if (!uses_template_parms (t)
6739 && !same_type_p (t, TREE_TYPE (arg)))
6740 return 0;
6741 }
6742
6743 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6744 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6745 /* Argument is a parameter pack but parameter is not. */
6746 return 0;
6747
6748 break;
6749
6750 default:
6751 gcc_unreachable ();
6752 }
6753
6754 return 1;
6755 }
6756
6757
6758 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6759 template template parameters. Both PARM_PARMS and ARG_PARMS are
6760 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6761 or PARM_DECL.
6762
6763 Consider the example:
6764 template <class T> class A;
6765 template<template <class U> class TT> class B;
6766
6767 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6768 the parameters to A, and OUTER_ARGS contains A. */
6769
6770 static int
6771 coerce_template_template_parms (tree parm_parms,
6772 tree arg_parms,
6773 tsubst_flags_t complain,
6774 tree in_decl,
6775 tree outer_args)
6776 {
6777 int nparms, nargs, i;
6778 tree parm, arg;
6779 int variadic_p = 0;
6780
6781 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6782 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6783
6784 nparms = TREE_VEC_LENGTH (parm_parms);
6785 nargs = TREE_VEC_LENGTH (arg_parms);
6786
6787 /* Determine whether we have a parameter pack at the end of the
6788 template template parameter's template parameter list. */
6789 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6790 {
6791 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6792
6793 if (error_operand_p (parm))
6794 return 0;
6795
6796 switch (TREE_CODE (parm))
6797 {
6798 case TEMPLATE_DECL:
6799 case TYPE_DECL:
6800 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6801 variadic_p = 1;
6802 break;
6803
6804 case PARM_DECL:
6805 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6806 variadic_p = 1;
6807 break;
6808
6809 default:
6810 gcc_unreachable ();
6811 }
6812 }
6813
6814 if (nargs != nparms
6815 && !(variadic_p && nargs >= nparms - 1))
6816 return 0;
6817
6818 /* Check all of the template parameters except the parameter pack at
6819 the end (if any). */
6820 for (i = 0; i < nparms - variadic_p; ++i)
6821 {
6822 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6823 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6824 continue;
6825
6826 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6827 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6828
6829 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6830 outer_args))
6831 return 0;
6832
6833 }
6834
6835 if (variadic_p)
6836 {
6837 /* Check each of the template parameters in the template
6838 argument against the template parameter pack at the end of
6839 the template template parameter. */
6840 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6841 return 0;
6842
6843 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6844
6845 for (; i < nargs; ++i)
6846 {
6847 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6848 continue;
6849
6850 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6851
6852 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6853 outer_args))
6854 return 0;
6855 }
6856 }
6857
6858 return 1;
6859 }
6860
6861 /* Verifies that the deduced template arguments (in TARGS) for the
6862 template template parameters (in TPARMS) represent valid bindings,
6863 by comparing the template parameter list of each template argument
6864 to the template parameter list of its corresponding template
6865 template parameter, in accordance with DR150. This
6866 routine can only be called after all template arguments have been
6867 deduced. It will return TRUE if all of the template template
6868 parameter bindings are okay, FALSE otherwise. */
6869 bool
6870 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6871 {
6872 int i, ntparms = TREE_VEC_LENGTH (tparms);
6873 bool ret = true;
6874
6875 /* We're dealing with template parms in this process. */
6876 ++processing_template_decl;
6877
6878 targs = INNERMOST_TEMPLATE_ARGS (targs);
6879
6880 for (i = 0; i < ntparms; ++i)
6881 {
6882 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6883 tree targ = TREE_VEC_ELT (targs, i);
6884
6885 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6886 {
6887 tree packed_args = NULL_TREE;
6888 int idx, len = 1;
6889
6890 if (ARGUMENT_PACK_P (targ))
6891 {
6892 /* Look inside the argument pack. */
6893 packed_args = ARGUMENT_PACK_ARGS (targ);
6894 len = TREE_VEC_LENGTH (packed_args);
6895 }
6896
6897 for (idx = 0; idx < len; ++idx)
6898 {
6899 tree targ_parms = NULL_TREE;
6900
6901 if (packed_args)
6902 /* Extract the next argument from the argument
6903 pack. */
6904 targ = TREE_VEC_ELT (packed_args, idx);
6905
6906 if (PACK_EXPANSION_P (targ))
6907 /* Look at the pattern of the pack expansion. */
6908 targ = PACK_EXPANSION_PATTERN (targ);
6909
6910 /* Extract the template parameters from the template
6911 argument. */
6912 if (TREE_CODE (targ) == TEMPLATE_DECL)
6913 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6914 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6915 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6916
6917 /* Verify that we can coerce the template template
6918 parameters from the template argument to the template
6919 parameter. This requires an exact match. */
6920 if (targ_parms
6921 && !coerce_template_template_parms
6922 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6923 targ_parms,
6924 tf_none,
6925 tparm,
6926 targs))
6927 {
6928 ret = false;
6929 goto out;
6930 }
6931 }
6932 }
6933 }
6934
6935 out:
6936
6937 --processing_template_decl;
6938 return ret;
6939 }
6940
6941 /* Since type attributes aren't mangled, we need to strip them from
6942 template type arguments. */
6943
6944 static tree
6945 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6946 {
6947 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6948 return arg;
6949 bool removed_attributes = false;
6950 tree canon = strip_typedefs (arg, &removed_attributes);
6951 if (removed_attributes
6952 && (complain & tf_warning))
6953 warning (OPT_Wignored_attributes,
6954 "ignoring attributes on template argument %qT", arg);
6955 return canon;
6956 }
6957
6958 // A template declaration can be substituted for a constrained
6959 // template template parameter only when the argument is more
6960 // constrained than the parameter.
6961 static bool
6962 is_compatible_template_arg (tree parm, tree arg)
6963 {
6964 tree parm_cons = get_constraints (parm);
6965
6966 /* For now, allow constrained template template arguments
6967 and unconstrained template template parameters. */
6968 if (parm_cons == NULL_TREE)
6969 return true;
6970
6971 tree arg_cons = get_constraints (arg);
6972
6973 // If the template parameter is constrained, we need to rewrite its
6974 // constraints in terms of the ARG's template parameters. This ensures
6975 // that all of the template parameter types will have the same depth.
6976 //
6977 // Note that this is only valid when coerce_template_template_parm is
6978 // true for the innermost template parameters of PARM and ARG. In other
6979 // words, because coercion is successful, this conversion will be valid.
6980 if (parm_cons)
6981 {
6982 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6983 parm_cons = tsubst_constraint_info (parm_cons,
6984 INNERMOST_TEMPLATE_ARGS (args),
6985 tf_none, NULL_TREE);
6986 if (parm_cons == error_mark_node)
6987 return false;
6988 }
6989
6990 return subsumes (parm_cons, arg_cons);
6991 }
6992
6993 // Convert a placeholder argument into a binding to the original
6994 // parameter. The original parameter is saved as the TREE_TYPE of
6995 // ARG.
6996 static inline tree
6997 convert_wildcard_argument (tree parm, tree arg)
6998 {
6999 TREE_TYPE (arg) = parm;
7000 return arg;
7001 }
7002
7003 /* Convert the indicated template ARG as necessary to match the
7004 indicated template PARM. Returns the converted ARG, or
7005 error_mark_node if the conversion was unsuccessful. Error and
7006 warning messages are issued under control of COMPLAIN. This
7007 conversion is for the Ith parameter in the parameter list. ARGS is
7008 the full set of template arguments deduced so far. */
7009
7010 static tree
7011 convert_template_argument (tree parm,
7012 tree arg,
7013 tree args,
7014 tsubst_flags_t complain,
7015 int i,
7016 tree in_decl)
7017 {
7018 tree orig_arg;
7019 tree val;
7020 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7021
7022 if (parm == error_mark_node)
7023 return error_mark_node;
7024
7025 /* Trivially convert placeholders. */
7026 if (TREE_CODE (arg) == WILDCARD_DECL)
7027 return convert_wildcard_argument (parm, arg);
7028
7029 if (TREE_CODE (arg) == TREE_LIST
7030 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7031 {
7032 /* The template argument was the name of some
7033 member function. That's usually
7034 invalid, but static members are OK. In any
7035 case, grab the underlying fields/functions
7036 and issue an error later if required. */
7037 orig_arg = TREE_VALUE (arg);
7038 TREE_TYPE (arg) = unknown_type_node;
7039 }
7040
7041 orig_arg = arg;
7042
7043 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7044 requires_type = (TREE_CODE (parm) == TYPE_DECL
7045 || requires_tmpl_type);
7046
7047 /* When determining whether an argument pack expansion is a template,
7048 look at the pattern. */
7049 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7050 arg = PACK_EXPANSION_PATTERN (arg);
7051
7052 /* Deal with an injected-class-name used as a template template arg. */
7053 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7054 {
7055 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7056 if (TREE_CODE (t) == TEMPLATE_DECL)
7057 {
7058 if (cxx_dialect >= cxx11)
7059 /* OK under DR 1004. */;
7060 else if (complain & tf_warning_or_error)
7061 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7062 " used as template template argument", TYPE_NAME (arg));
7063 else if (flag_pedantic_errors)
7064 t = arg;
7065
7066 arg = t;
7067 }
7068 }
7069
7070 is_tmpl_type =
7071 ((TREE_CODE (arg) == TEMPLATE_DECL
7072 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7073 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7074 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7075 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7076
7077 if (is_tmpl_type
7078 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7079 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7080 arg = TYPE_STUB_DECL (arg);
7081
7082 is_type = TYPE_P (arg) || is_tmpl_type;
7083
7084 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7085 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7086 {
7087 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7088 {
7089 if (complain & tf_error)
7090 error ("invalid use of destructor %qE as a type", orig_arg);
7091 return error_mark_node;
7092 }
7093
7094 permerror (input_location,
7095 "to refer to a type member of a template parameter, "
7096 "use %<typename %E%>", orig_arg);
7097
7098 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7099 TREE_OPERAND (arg, 1),
7100 typename_type,
7101 complain);
7102 arg = orig_arg;
7103 is_type = 1;
7104 }
7105 if (is_type != requires_type)
7106 {
7107 if (in_decl)
7108 {
7109 if (complain & tf_error)
7110 {
7111 error ("type/value mismatch at argument %d in template "
7112 "parameter list for %qD",
7113 i + 1, in_decl);
7114 if (is_type)
7115 inform (input_location,
7116 " expected a constant of type %qT, got %qT",
7117 TREE_TYPE (parm),
7118 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7119 else if (requires_tmpl_type)
7120 inform (input_location,
7121 " expected a class template, got %qE", orig_arg);
7122 else
7123 inform (input_location,
7124 " expected a type, got %qE", orig_arg);
7125 }
7126 }
7127 return error_mark_node;
7128 }
7129 if (is_tmpl_type ^ requires_tmpl_type)
7130 {
7131 if (in_decl && (complain & tf_error))
7132 {
7133 error ("type/value mismatch at argument %d in template "
7134 "parameter list for %qD",
7135 i + 1, in_decl);
7136 if (is_tmpl_type)
7137 inform (input_location,
7138 " expected a type, got %qT", DECL_NAME (arg));
7139 else
7140 inform (input_location,
7141 " expected a class template, got %qT", orig_arg);
7142 }
7143 return error_mark_node;
7144 }
7145
7146 if (is_type)
7147 {
7148 if (requires_tmpl_type)
7149 {
7150 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7151 val = orig_arg;
7152 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7153 /* The number of argument required is not known yet.
7154 Just accept it for now. */
7155 val = TREE_TYPE (arg);
7156 else
7157 {
7158 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7159 tree argparm;
7160
7161 /* Strip alias templates that are equivalent to another
7162 template. */
7163 arg = get_underlying_template (arg);
7164 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7165
7166 if (coerce_template_template_parms (parmparm, argparm,
7167 complain, in_decl,
7168 args))
7169 {
7170 val = arg;
7171
7172 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7173 TEMPLATE_DECL. */
7174 if (val != error_mark_node)
7175 {
7176 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7177 val = TREE_TYPE (val);
7178 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7179 val = make_pack_expansion (val);
7180 }
7181 }
7182 else
7183 {
7184 if (in_decl && (complain & tf_error))
7185 {
7186 error ("type/value mismatch at argument %d in "
7187 "template parameter list for %qD",
7188 i + 1, in_decl);
7189 inform (input_location,
7190 " expected a template of type %qD, got %qT",
7191 parm, orig_arg);
7192 }
7193
7194 val = error_mark_node;
7195 }
7196
7197 // Check that the constraints are compatible before allowing the
7198 // substitution.
7199 if (val != error_mark_node)
7200 if (!is_compatible_template_arg (parm, arg))
7201 {
7202 if (in_decl && (complain & tf_error))
7203 {
7204 error ("constraint mismatch at argument %d in "
7205 "template parameter list for %qD",
7206 i + 1, in_decl);
7207 inform (input_location, " expected %qD but got %qD",
7208 parm, arg);
7209 }
7210 val = error_mark_node;
7211 }
7212 }
7213 }
7214 else
7215 val = orig_arg;
7216 /* We only form one instance of each template specialization.
7217 Therefore, if we use a non-canonical variant (i.e., a
7218 typedef), any future messages referring to the type will use
7219 the typedef, which is confusing if those future uses do not
7220 themselves also use the typedef. */
7221 if (TYPE_P (val))
7222 val = canonicalize_type_argument (val, complain);
7223 }
7224 else
7225 {
7226 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7227
7228 if (invalid_nontype_parm_type_p (t, complain))
7229 return error_mark_node;
7230
7231 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7232 {
7233 if (same_type_p (t, TREE_TYPE (orig_arg)))
7234 val = orig_arg;
7235 else
7236 {
7237 /* Not sure if this is reachable, but it doesn't hurt
7238 to be robust. */
7239 error ("type mismatch in nontype parameter pack");
7240 val = error_mark_node;
7241 }
7242 }
7243 else if (!dependent_template_arg_p (orig_arg)
7244 && !uses_template_parms (t))
7245 /* We used to call digest_init here. However, digest_init
7246 will report errors, which we don't want when complain
7247 is zero. More importantly, digest_init will try too
7248 hard to convert things: for example, `0' should not be
7249 converted to pointer type at this point according to
7250 the standard. Accepting this is not merely an
7251 extension, since deciding whether or not these
7252 conversions can occur is part of determining which
7253 function template to call, or whether a given explicit
7254 argument specification is valid. */
7255 val = convert_nontype_argument (t, orig_arg, complain);
7256 else
7257 {
7258 bool removed_attr = false;
7259 val = strip_typedefs_expr (orig_arg, &removed_attr);
7260 }
7261
7262 if (val == NULL_TREE)
7263 val = error_mark_node;
7264 else if (val == error_mark_node && (complain & tf_error))
7265 error ("could not convert template argument %qE to %qT", orig_arg, t);
7266
7267 if (INDIRECT_REF_P (val))
7268 {
7269 /* Reject template arguments that are references to built-in
7270 functions with no library fallbacks. */
7271 const_tree inner = TREE_OPERAND (val, 0);
7272 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7273 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7274 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7275 && 0 < TREE_OPERAND_LENGTH (inner)
7276 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7277 return error_mark_node;
7278 }
7279
7280 if (TREE_CODE (val) == SCOPE_REF)
7281 {
7282 /* Strip typedefs from the SCOPE_REF. */
7283 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7284 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7285 complain);
7286 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7287 QUALIFIED_NAME_IS_TEMPLATE (val));
7288 }
7289 }
7290
7291 return val;
7292 }
7293
7294 /* Coerces the remaining template arguments in INNER_ARGS (from
7295 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7296 Returns the coerced argument pack. PARM_IDX is the position of this
7297 parameter in the template parameter list. ARGS is the original
7298 template argument list. */
7299 static tree
7300 coerce_template_parameter_pack (tree parms,
7301 int parm_idx,
7302 tree args,
7303 tree inner_args,
7304 int arg_idx,
7305 tree new_args,
7306 int* lost,
7307 tree in_decl,
7308 tsubst_flags_t complain)
7309 {
7310 tree parm = TREE_VEC_ELT (parms, parm_idx);
7311 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7312 tree packed_args;
7313 tree argument_pack;
7314 tree packed_parms = NULL_TREE;
7315
7316 if (arg_idx > nargs)
7317 arg_idx = nargs;
7318
7319 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7320 {
7321 /* When the template parameter is a non-type template parameter pack
7322 or template template parameter pack whose type or template
7323 parameters use parameter packs, we know exactly how many arguments
7324 we are looking for. Build a vector of the instantiated decls for
7325 these template parameters in PACKED_PARMS. */
7326 /* We can't use make_pack_expansion here because it would interpret a
7327 _DECL as a use rather than a declaration. */
7328 tree decl = TREE_VALUE (parm);
7329 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7330 SET_PACK_EXPANSION_PATTERN (exp, decl);
7331 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7332 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7333
7334 TREE_VEC_LENGTH (args)--;
7335 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7336 TREE_VEC_LENGTH (args)++;
7337
7338 if (packed_parms == error_mark_node)
7339 return error_mark_node;
7340
7341 /* If we're doing a partial instantiation of a member template,
7342 verify that all of the types used for the non-type
7343 template parameter pack are, in fact, valid for non-type
7344 template parameters. */
7345 if (arg_idx < nargs
7346 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7347 {
7348 int j, len = TREE_VEC_LENGTH (packed_parms);
7349 for (j = 0; j < len; ++j)
7350 {
7351 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7352 if (invalid_nontype_parm_type_p (t, complain))
7353 return error_mark_node;
7354 }
7355 /* We don't know how many args we have yet, just
7356 use the unconverted ones for now. */
7357 return NULL_TREE;
7358 }
7359
7360 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7361 }
7362 /* Check if we have a placeholder pack, which indicates we're
7363 in the context of a introduction list. In that case we want
7364 to match this pack to the single placeholder. */
7365 else if (arg_idx < nargs
7366 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7367 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7368 {
7369 nargs = arg_idx + 1;
7370 packed_args = make_tree_vec (1);
7371 }
7372 else
7373 packed_args = make_tree_vec (nargs - arg_idx);
7374
7375 /* Convert the remaining arguments, which will be a part of the
7376 parameter pack "parm". */
7377 for (; arg_idx < nargs; ++arg_idx)
7378 {
7379 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7380 tree actual_parm = TREE_VALUE (parm);
7381 int pack_idx = arg_idx - parm_idx;
7382
7383 if (packed_parms)
7384 {
7385 /* Once we've packed as many args as we have types, stop. */
7386 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7387 break;
7388 else if (PACK_EXPANSION_P (arg))
7389 /* We don't know how many args we have yet, just
7390 use the unconverted ones for now. */
7391 return NULL_TREE;
7392 else
7393 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7394 }
7395
7396 if (arg == error_mark_node)
7397 {
7398 if (complain & tf_error)
7399 error ("template argument %d is invalid", arg_idx + 1);
7400 }
7401 else
7402 arg = convert_template_argument (actual_parm,
7403 arg, new_args, complain, parm_idx,
7404 in_decl);
7405 if (arg == error_mark_node)
7406 (*lost)++;
7407 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7408 }
7409
7410 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7411 && TREE_VEC_LENGTH (packed_args) > 0)
7412 {
7413 if (complain & tf_error)
7414 error ("wrong number of template arguments (%d, should be %d)",
7415 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7416 return error_mark_node;
7417 }
7418
7419 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7420 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7421 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7422 else
7423 {
7424 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7425 TREE_TYPE (argument_pack)
7426 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7427 TREE_CONSTANT (argument_pack) = 1;
7428 }
7429
7430 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7431 if (CHECKING_P)
7432 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7433 TREE_VEC_LENGTH (packed_args));
7434 return argument_pack;
7435 }
7436
7437 /* Returns the number of pack expansions in the template argument vector
7438 ARGS. */
7439
7440 static int
7441 pack_expansion_args_count (tree args)
7442 {
7443 int i;
7444 int count = 0;
7445 if (args)
7446 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7447 {
7448 tree elt = TREE_VEC_ELT (args, i);
7449 if (elt && PACK_EXPANSION_P (elt))
7450 ++count;
7451 }
7452 return count;
7453 }
7454
7455 /* Convert all template arguments to their appropriate types, and
7456 return a vector containing the innermost resulting template
7457 arguments. If any error occurs, return error_mark_node. Error and
7458 warning messages are issued under control of COMPLAIN.
7459
7460 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7461 for arguments not specified in ARGS. Otherwise, if
7462 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7463 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7464 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7465 ARGS. */
7466
7467 static tree
7468 coerce_template_parms (tree parms,
7469 tree args,
7470 tree in_decl,
7471 tsubst_flags_t complain,
7472 bool require_all_args,
7473 bool use_default_args)
7474 {
7475 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7476 tree orig_inner_args;
7477 tree inner_args;
7478 tree new_args;
7479 tree new_inner_args;
7480 int saved_unevaluated_operand;
7481 int saved_inhibit_evaluation_warnings;
7482
7483 /* When used as a boolean value, indicates whether this is a
7484 variadic template parameter list. Since it's an int, we can also
7485 subtract it from nparms to get the number of non-variadic
7486 parameters. */
7487 int variadic_p = 0;
7488 int variadic_args_p = 0;
7489 int post_variadic_parms = 0;
7490
7491 /* Likewise for parameters with default arguments. */
7492 int default_p = 0;
7493
7494 if (args == error_mark_node)
7495 return error_mark_node;
7496
7497 nparms = TREE_VEC_LENGTH (parms);
7498
7499 /* Determine if there are any parameter packs or default arguments. */
7500 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7501 {
7502 tree parm = TREE_VEC_ELT (parms, parm_idx);
7503 if (variadic_p)
7504 ++post_variadic_parms;
7505 if (template_parameter_pack_p (TREE_VALUE (parm)))
7506 ++variadic_p;
7507 if (TREE_PURPOSE (parm))
7508 ++default_p;
7509 }
7510
7511 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7512 /* If there are no parameters that follow a parameter pack, we need to
7513 expand any argument packs so that we can deduce a parameter pack from
7514 some non-packed args followed by an argument pack, as in variadic85.C.
7515 If there are such parameters, we need to leave argument packs intact
7516 so the arguments are assigned properly. This can happen when dealing
7517 with a nested class inside a partial specialization of a class
7518 template, as in variadic92.C, or when deducing a template parameter pack
7519 from a sub-declarator, as in variadic114.C. */
7520 if (!post_variadic_parms)
7521 inner_args = expand_template_argument_pack (inner_args);
7522
7523 /* Count any pack expansion args. */
7524 variadic_args_p = pack_expansion_args_count (inner_args);
7525
7526 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7527 if ((nargs > nparms && !variadic_p)
7528 || (nargs < nparms - variadic_p
7529 && require_all_args
7530 && !variadic_args_p
7531 && (!use_default_args
7532 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7533 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7534 {
7535 if (complain & tf_error)
7536 {
7537 if (variadic_p || default_p)
7538 {
7539 nparms -= variadic_p + default_p;
7540 error ("wrong number of template arguments "
7541 "(%d, should be at least %d)", nargs, nparms);
7542 }
7543 else
7544 error ("wrong number of template arguments "
7545 "(%d, should be %d)", nargs, nparms);
7546
7547 if (in_decl)
7548 inform (DECL_SOURCE_LOCATION (in_decl),
7549 "provided for %qD", in_decl);
7550 }
7551
7552 return error_mark_node;
7553 }
7554 /* We can't pass a pack expansion to a non-pack parameter of an alias
7555 template (DR 1430). */
7556 else if (in_decl
7557 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7558 || concept_template_p (in_decl))
7559 && variadic_args_p
7560 && nargs - variadic_args_p < nparms - variadic_p)
7561 {
7562 if (complain & tf_error)
7563 {
7564 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7565 {
7566 tree arg = TREE_VEC_ELT (inner_args, i);
7567 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7568
7569 if (PACK_EXPANSION_P (arg)
7570 && !template_parameter_pack_p (parm))
7571 {
7572 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7573 error_at (location_of (arg),
7574 "pack expansion argument for non-pack parameter "
7575 "%qD of alias template %qD", parm, in_decl);
7576 else
7577 error_at (location_of (arg),
7578 "pack expansion argument for non-pack parameter "
7579 "%qD of concept %qD", parm, in_decl);
7580 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7581 goto found;
7582 }
7583 }
7584 gcc_unreachable ();
7585 found:;
7586 }
7587 return error_mark_node;
7588 }
7589
7590 /* We need to evaluate the template arguments, even though this
7591 template-id may be nested within a "sizeof". */
7592 saved_unevaluated_operand = cp_unevaluated_operand;
7593 cp_unevaluated_operand = 0;
7594 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7595 c_inhibit_evaluation_warnings = 0;
7596 new_inner_args = make_tree_vec (nparms);
7597 new_args = add_outermost_template_args (args, new_inner_args);
7598 int pack_adjust = 0;
7599 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7600 {
7601 tree arg;
7602 tree parm;
7603
7604 /* Get the Ith template parameter. */
7605 parm = TREE_VEC_ELT (parms, parm_idx);
7606
7607 if (parm == error_mark_node)
7608 {
7609 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7610 continue;
7611 }
7612
7613 /* Calculate the next argument. */
7614 if (arg_idx < nargs)
7615 arg = TREE_VEC_ELT (inner_args, arg_idx);
7616 else
7617 arg = NULL_TREE;
7618
7619 if (template_parameter_pack_p (TREE_VALUE (parm))
7620 && !(arg && ARGUMENT_PACK_P (arg)))
7621 {
7622 /* Some arguments will be placed in the
7623 template parameter pack PARM. */
7624 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7625 inner_args, arg_idx,
7626 new_args, &lost,
7627 in_decl, complain);
7628
7629 if (arg == NULL_TREE)
7630 {
7631 /* We don't know how many args we have yet, just use the
7632 unconverted (and still packed) ones for now. */
7633 new_inner_args = orig_inner_args;
7634 arg_idx = nargs;
7635 break;
7636 }
7637
7638 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7639
7640 /* Store this argument. */
7641 if (arg == error_mark_node)
7642 {
7643 lost++;
7644 /* We are done with all of the arguments. */
7645 arg_idx = nargs;
7646 }
7647 else
7648 {
7649 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7650 arg_idx += pack_adjust;
7651 }
7652
7653 continue;
7654 }
7655 else if (arg)
7656 {
7657 if (PACK_EXPANSION_P (arg))
7658 {
7659 /* "If every valid specialization of a variadic template
7660 requires an empty template parameter pack, the template is
7661 ill-formed, no diagnostic required." So check that the
7662 pattern works with this parameter. */
7663 tree pattern = PACK_EXPANSION_PATTERN (arg);
7664 tree conv = convert_template_argument (TREE_VALUE (parm),
7665 pattern, new_args,
7666 complain, parm_idx,
7667 in_decl);
7668 if (conv == error_mark_node)
7669 {
7670 inform (input_location, "so any instantiation with a "
7671 "non-empty parameter pack would be ill-formed");
7672 ++lost;
7673 }
7674 else if (TYPE_P (conv) && !TYPE_P (pattern))
7675 /* Recover from missing typename. */
7676 TREE_VEC_ELT (inner_args, arg_idx)
7677 = make_pack_expansion (conv);
7678
7679 /* We don't know how many args we have yet, just
7680 use the unconverted ones for now. */
7681 new_inner_args = inner_args;
7682 arg_idx = nargs;
7683 break;
7684 }
7685 }
7686 else if (require_all_args)
7687 {
7688 /* There must be a default arg in this case. */
7689 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7690 complain, in_decl);
7691 /* The position of the first default template argument,
7692 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7693 Record that. */
7694 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7695 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7696 arg_idx - pack_adjust);
7697 }
7698 else
7699 break;
7700
7701 if (arg == error_mark_node)
7702 {
7703 if (complain & tf_error)
7704 error ("template argument %d is invalid", arg_idx + 1);
7705 }
7706 else if (!arg)
7707 /* This only occurs if there was an error in the template
7708 parameter list itself (which we would already have
7709 reported) that we are trying to recover from, e.g., a class
7710 template with a parameter list such as
7711 template<typename..., typename>. */
7712 ++lost;
7713 else
7714 arg = convert_template_argument (TREE_VALUE (parm),
7715 arg, new_args, complain,
7716 parm_idx, in_decl);
7717
7718 if (arg == error_mark_node)
7719 lost++;
7720 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7721 }
7722 cp_unevaluated_operand = saved_unevaluated_operand;
7723 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7724
7725 if (variadic_p && arg_idx < nargs)
7726 {
7727 if (complain & tf_error)
7728 {
7729 error ("wrong number of template arguments "
7730 "(%d, should be %d)", nargs, arg_idx);
7731 if (in_decl)
7732 error ("provided for %q+D", in_decl);
7733 }
7734 return error_mark_node;
7735 }
7736
7737 if (lost)
7738 return error_mark_node;
7739
7740 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7741 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7742 TREE_VEC_LENGTH (new_inner_args));
7743
7744 return new_inner_args;
7745 }
7746
7747 /* Convert all template arguments to their appropriate types, and
7748 return a vector containing the innermost resulting template
7749 arguments. If any error occurs, return error_mark_node. Error and
7750 warning messages are not issued.
7751
7752 Note that no function argument deduction is performed, and default
7753 arguments are used to fill in unspecified arguments. */
7754 tree
7755 coerce_template_parms (tree parms, tree args, tree in_decl)
7756 {
7757 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7758 }
7759
7760 /* Convert all template arguments to their appropriate type, and
7761 instantiate default arguments as needed. This returns a vector
7762 containing the innermost resulting template arguments, or
7763 error_mark_node if unsuccessful. */
7764 tree
7765 coerce_template_parms (tree parms, tree args, tree in_decl,
7766 tsubst_flags_t complain)
7767 {
7768 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7769 }
7770
7771 /* Like coerce_template_parms. If PARMS represents all template
7772 parameters levels, this function returns a vector of vectors
7773 representing all the resulting argument levels. Note that in this
7774 case, only the innermost arguments are coerced because the
7775 outermost ones are supposed to have been coerced already.
7776
7777 Otherwise, if PARMS represents only (the innermost) vector of
7778 parameters, this function returns a vector containing just the
7779 innermost resulting arguments. */
7780
7781 static tree
7782 coerce_innermost_template_parms (tree parms,
7783 tree args,
7784 tree in_decl,
7785 tsubst_flags_t complain,
7786 bool require_all_args,
7787 bool use_default_args)
7788 {
7789 int parms_depth = TMPL_PARMS_DEPTH (parms);
7790 int args_depth = TMPL_ARGS_DEPTH (args);
7791 tree coerced_args;
7792
7793 if (parms_depth > 1)
7794 {
7795 coerced_args = make_tree_vec (parms_depth);
7796 tree level;
7797 int cur_depth;
7798
7799 for (level = parms, cur_depth = parms_depth;
7800 parms_depth > 0 && level != NULL_TREE;
7801 level = TREE_CHAIN (level), --cur_depth)
7802 {
7803 tree l;
7804 if (cur_depth == args_depth)
7805 l = coerce_template_parms (TREE_VALUE (level),
7806 args, in_decl, complain,
7807 require_all_args,
7808 use_default_args);
7809 else
7810 l = TMPL_ARGS_LEVEL (args, cur_depth);
7811
7812 if (l == error_mark_node)
7813 return error_mark_node;
7814
7815 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7816 }
7817 }
7818 else
7819 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7820 args, in_decl, complain,
7821 require_all_args,
7822 use_default_args);
7823 return coerced_args;
7824 }
7825
7826 /* Returns 1 if template args OT and NT are equivalent. */
7827
7828 static int
7829 template_args_equal (tree ot, tree nt)
7830 {
7831 if (nt == ot)
7832 return 1;
7833 if (nt == NULL_TREE || ot == NULL_TREE)
7834 return false;
7835
7836 if (TREE_CODE (nt) == TREE_VEC)
7837 /* For member templates */
7838 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7839 else if (PACK_EXPANSION_P (ot))
7840 return (PACK_EXPANSION_P (nt)
7841 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7842 PACK_EXPANSION_PATTERN (nt))
7843 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7844 PACK_EXPANSION_EXTRA_ARGS (nt)));
7845 else if (ARGUMENT_PACK_P (ot))
7846 {
7847 int i, len;
7848 tree opack, npack;
7849
7850 if (!ARGUMENT_PACK_P (nt))
7851 return 0;
7852
7853 opack = ARGUMENT_PACK_ARGS (ot);
7854 npack = ARGUMENT_PACK_ARGS (nt);
7855 len = TREE_VEC_LENGTH (opack);
7856 if (TREE_VEC_LENGTH (npack) != len)
7857 return 0;
7858 for (i = 0; i < len; ++i)
7859 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7860 TREE_VEC_ELT (npack, i)))
7861 return 0;
7862 return 1;
7863 }
7864 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7865 {
7866 /* We get here probably because we are in the middle of substituting
7867 into the pattern of a pack expansion. In that case the
7868 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7869 interested in. So we want to use the initial pack argument for
7870 the comparison. */
7871 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7872 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7873 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7874 return template_args_equal (ot, nt);
7875 }
7876 else if (TYPE_P (nt))
7877 {
7878 if (!TYPE_P (ot))
7879 return false;
7880 /* Don't treat an alias template specialization with dependent
7881 arguments as equivalent to its underlying type when used as a
7882 template argument; we need them to be distinct so that we
7883 substitute into the specialization arguments at instantiation
7884 time. And aliases can't be equivalent without being ==, so
7885 we don't need to look any deeper. */
7886 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7887 return false;
7888 else
7889 return same_type_p (ot, nt);
7890 }
7891 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7892 return 0;
7893 else
7894 {
7895 /* Try to treat a template non-type argument that has been converted
7896 to the parameter type as equivalent to one that hasn't yet. */
7897 for (enum tree_code code1 = TREE_CODE (ot);
7898 CONVERT_EXPR_CODE_P (code1)
7899 || code1 == NON_LVALUE_EXPR;
7900 code1 = TREE_CODE (ot))
7901 ot = TREE_OPERAND (ot, 0);
7902 for (enum tree_code code2 = TREE_CODE (nt);
7903 CONVERT_EXPR_CODE_P (code2)
7904 || code2 == NON_LVALUE_EXPR;
7905 code2 = TREE_CODE (nt))
7906 nt = TREE_OPERAND (nt, 0);
7907
7908 return cp_tree_equal (ot, nt);
7909 }
7910 }
7911
7912 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7913 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7914 NEWARG_PTR with the offending arguments if they are non-NULL. */
7915
7916 int
7917 comp_template_args (tree oldargs, tree newargs,
7918 tree *oldarg_ptr, tree *newarg_ptr)
7919 {
7920 int i;
7921
7922 if (oldargs == newargs)
7923 return 1;
7924
7925 if (!oldargs || !newargs)
7926 return 0;
7927
7928 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7929 return 0;
7930
7931 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7932 {
7933 tree nt = TREE_VEC_ELT (newargs, i);
7934 tree ot = TREE_VEC_ELT (oldargs, i);
7935
7936 if (! template_args_equal (ot, nt))
7937 {
7938 if (oldarg_ptr != NULL)
7939 *oldarg_ptr = ot;
7940 if (newarg_ptr != NULL)
7941 *newarg_ptr = nt;
7942 return 0;
7943 }
7944 }
7945 return 1;
7946 }
7947
7948 static void
7949 add_pending_template (tree d)
7950 {
7951 tree ti = (TYPE_P (d)
7952 ? CLASSTYPE_TEMPLATE_INFO (d)
7953 : DECL_TEMPLATE_INFO (d));
7954 struct pending_template *pt;
7955 int level;
7956
7957 if (TI_PENDING_TEMPLATE_FLAG (ti))
7958 return;
7959
7960 /* We are called both from instantiate_decl, where we've already had a
7961 tinst_level pushed, and instantiate_template, where we haven't.
7962 Compensate. */
7963 level = !current_tinst_level || current_tinst_level->decl != d;
7964
7965 if (level)
7966 push_tinst_level (d);
7967
7968 pt = ggc_alloc<pending_template> ();
7969 pt->next = NULL;
7970 pt->tinst = current_tinst_level;
7971 if (last_pending_template)
7972 last_pending_template->next = pt;
7973 else
7974 pending_templates = pt;
7975
7976 last_pending_template = pt;
7977
7978 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7979
7980 if (level)
7981 pop_tinst_level ();
7982 }
7983
7984
7985 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7986 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7987 documentation for TEMPLATE_ID_EXPR. */
7988
7989 tree
7990 lookup_template_function (tree fns, tree arglist)
7991 {
7992 tree type;
7993
7994 if (fns == error_mark_node || arglist == error_mark_node)
7995 return error_mark_node;
7996
7997 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7998
7999 if (!is_overloaded_fn (fns) && !identifier_p (fns))
8000 {
8001 error ("%q#D is not a function template", fns);
8002 return error_mark_node;
8003 }
8004
8005 if (BASELINK_P (fns))
8006 {
8007 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8008 unknown_type_node,
8009 BASELINK_FUNCTIONS (fns),
8010 arglist);
8011 return fns;
8012 }
8013
8014 type = TREE_TYPE (fns);
8015 if (TREE_CODE (fns) == OVERLOAD || !type)
8016 type = unknown_type_node;
8017
8018 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8019 }
8020
8021 /* Within the scope of a template class S<T>, the name S gets bound
8022 (in build_self_reference) to a TYPE_DECL for the class, not a
8023 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8024 or one of its enclosing classes, and that type is a template,
8025 return the associated TEMPLATE_DECL. Otherwise, the original
8026 DECL is returned.
8027
8028 Also handle the case when DECL is a TREE_LIST of ambiguous
8029 injected-class-names from different bases. */
8030
8031 tree
8032 maybe_get_template_decl_from_type_decl (tree decl)
8033 {
8034 if (decl == NULL_TREE)
8035 return decl;
8036
8037 /* DR 176: A lookup that finds an injected-class-name (10.2
8038 [class.member.lookup]) can result in an ambiguity in certain cases
8039 (for example, if it is found in more than one base class). If all of
8040 the injected-class-names that are found refer to specializations of
8041 the same class template, and if the name is followed by a
8042 template-argument-list, the reference refers to the class template
8043 itself and not a specialization thereof, and is not ambiguous. */
8044 if (TREE_CODE (decl) == TREE_LIST)
8045 {
8046 tree t, tmpl = NULL_TREE;
8047 for (t = decl; t; t = TREE_CHAIN (t))
8048 {
8049 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8050 if (!tmpl)
8051 tmpl = elt;
8052 else if (tmpl != elt)
8053 break;
8054 }
8055 if (tmpl && t == NULL_TREE)
8056 return tmpl;
8057 else
8058 return decl;
8059 }
8060
8061 return (decl != NULL_TREE
8062 && DECL_SELF_REFERENCE_P (decl)
8063 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8064 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8065 }
8066
8067 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8068 parameters, find the desired type.
8069
8070 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8071
8072 IN_DECL, if non-NULL, is the template declaration we are trying to
8073 instantiate.
8074
8075 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8076 the class we are looking up.
8077
8078 Issue error and warning messages under control of COMPLAIN.
8079
8080 If the template class is really a local class in a template
8081 function, then the FUNCTION_CONTEXT is the function in which it is
8082 being instantiated.
8083
8084 ??? Note that this function is currently called *twice* for each
8085 template-id: the first time from the parser, while creating the
8086 incomplete type (finish_template_type), and the second type during the
8087 real instantiation (instantiate_template_class). This is surely something
8088 that we want to avoid. It also causes some problems with argument
8089 coercion (see convert_nontype_argument for more information on this). */
8090
8091 static tree
8092 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8093 int entering_scope, tsubst_flags_t complain)
8094 {
8095 tree templ = NULL_TREE, parmlist;
8096 tree t;
8097 spec_entry **slot;
8098 spec_entry *entry;
8099 spec_entry elt;
8100 hashval_t hash;
8101
8102 if (identifier_p (d1))
8103 {
8104 tree value = innermost_non_namespace_value (d1);
8105 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8106 templ = value;
8107 else
8108 {
8109 if (context)
8110 push_decl_namespace (context);
8111 templ = lookup_name (d1);
8112 templ = maybe_get_template_decl_from_type_decl (templ);
8113 if (context)
8114 pop_decl_namespace ();
8115 }
8116 if (templ)
8117 context = DECL_CONTEXT (templ);
8118 }
8119 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8120 {
8121 tree type = TREE_TYPE (d1);
8122
8123 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8124 an implicit typename for the second A. Deal with it. */
8125 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8126 type = TREE_TYPE (type);
8127
8128 if (CLASSTYPE_TEMPLATE_INFO (type))
8129 {
8130 templ = CLASSTYPE_TI_TEMPLATE (type);
8131 d1 = DECL_NAME (templ);
8132 }
8133 }
8134 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8135 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8136 {
8137 templ = TYPE_TI_TEMPLATE (d1);
8138 d1 = DECL_NAME (templ);
8139 }
8140 else if (DECL_TYPE_TEMPLATE_P (d1))
8141 {
8142 templ = d1;
8143 d1 = DECL_NAME (templ);
8144 context = DECL_CONTEXT (templ);
8145 }
8146 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8147 {
8148 templ = d1;
8149 d1 = DECL_NAME (templ);
8150 }
8151
8152 /* Issue an error message if we didn't find a template. */
8153 if (! templ)
8154 {
8155 if (complain & tf_error)
8156 error ("%qT is not a template", d1);
8157 return error_mark_node;
8158 }
8159
8160 if (TREE_CODE (templ) != TEMPLATE_DECL
8161 /* Make sure it's a user visible template, if it was named by
8162 the user. */
8163 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8164 && !PRIMARY_TEMPLATE_P (templ)))
8165 {
8166 if (complain & tf_error)
8167 {
8168 error ("non-template type %qT used as a template", d1);
8169 if (in_decl)
8170 error ("for template declaration %q+D", in_decl);
8171 }
8172 return error_mark_node;
8173 }
8174
8175 complain &= ~tf_user;
8176
8177 /* An alias that just changes the name of a template is equivalent to the
8178 other template, so if any of the arguments are pack expansions, strip
8179 the alias to avoid problems with a pack expansion passed to a non-pack
8180 alias template parameter (DR 1430). */
8181 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8182 templ = get_underlying_template (templ);
8183
8184 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8185 {
8186 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8187 template arguments */
8188
8189 tree parm;
8190 tree arglist2;
8191 tree outer;
8192
8193 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8194
8195 /* Consider an example where a template template parameter declared as
8196
8197 template <class T, class U = std::allocator<T> > class TT
8198
8199 The template parameter level of T and U are one level larger than
8200 of TT. To proper process the default argument of U, say when an
8201 instantiation `TT<int>' is seen, we need to build the full
8202 arguments containing {int} as the innermost level. Outer levels,
8203 available when not appearing as default template argument, can be
8204 obtained from the arguments of the enclosing template.
8205
8206 Suppose that TT is later substituted with std::vector. The above
8207 instantiation is `TT<int, std::allocator<T> >' with TT at
8208 level 1, and T at level 2, while the template arguments at level 1
8209 becomes {std::vector} and the inner level 2 is {int}. */
8210
8211 outer = DECL_CONTEXT (templ);
8212 if (outer)
8213 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8214 else if (current_template_parms)
8215 {
8216 /* This is an argument of the current template, so we haven't set
8217 DECL_CONTEXT yet. */
8218 tree relevant_template_parms;
8219
8220 /* Parameter levels that are greater than the level of the given
8221 template template parm are irrelevant. */
8222 relevant_template_parms = current_template_parms;
8223 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8224 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8225 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8226
8227 outer = template_parms_to_args (relevant_template_parms);
8228 }
8229
8230 if (outer)
8231 arglist = add_to_template_args (outer, arglist);
8232
8233 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8234 complain,
8235 /*require_all_args=*/true,
8236 /*use_default_args=*/true);
8237 if (arglist2 == error_mark_node
8238 || (!uses_template_parms (arglist2)
8239 && check_instantiated_args (templ, arglist2, complain)))
8240 return error_mark_node;
8241
8242 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8243 return parm;
8244 }
8245 else
8246 {
8247 tree template_type = TREE_TYPE (templ);
8248 tree gen_tmpl;
8249 tree type_decl;
8250 tree found = NULL_TREE;
8251 int arg_depth;
8252 int parm_depth;
8253 int is_dependent_type;
8254 int use_partial_inst_tmpl = false;
8255
8256 if (template_type == error_mark_node)
8257 /* An error occurred while building the template TEMPL, and a
8258 diagnostic has most certainly been emitted for that
8259 already. Let's propagate that error. */
8260 return error_mark_node;
8261
8262 gen_tmpl = most_general_template (templ);
8263 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8264 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8265 arg_depth = TMPL_ARGS_DEPTH (arglist);
8266
8267 if (arg_depth == 1 && parm_depth > 1)
8268 {
8269 /* We've been given an incomplete set of template arguments.
8270 For example, given:
8271
8272 template <class T> struct S1 {
8273 template <class U> struct S2 {};
8274 template <class U> struct S2<U*> {};
8275 };
8276
8277 we will be called with an ARGLIST of `U*', but the
8278 TEMPLATE will be `template <class T> template
8279 <class U> struct S1<T>::S2'. We must fill in the missing
8280 arguments. */
8281 arglist
8282 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8283 arglist);
8284 arg_depth = TMPL_ARGS_DEPTH (arglist);
8285 }
8286
8287 /* Now we should have enough arguments. */
8288 gcc_assert (parm_depth == arg_depth);
8289
8290 /* From here on, we're only interested in the most general
8291 template. */
8292
8293 /* Calculate the BOUND_ARGS. These will be the args that are
8294 actually tsubst'd into the definition to create the
8295 instantiation. */
8296 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8297 complain,
8298 /*require_all_args=*/true,
8299 /*use_default_args=*/true);
8300
8301 if (arglist == error_mark_node)
8302 /* We were unable to bind the arguments. */
8303 return error_mark_node;
8304
8305 /* In the scope of a template class, explicit references to the
8306 template class refer to the type of the template, not any
8307 instantiation of it. For example, in:
8308
8309 template <class T> class C { void f(C<T>); }
8310
8311 the `C<T>' is just the same as `C'. Outside of the
8312 class, however, such a reference is an instantiation. */
8313 if ((entering_scope
8314 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8315 || currently_open_class (template_type))
8316 /* comp_template_args is expensive, check it last. */
8317 && comp_template_args (TYPE_TI_ARGS (template_type),
8318 arglist))
8319 return template_type;
8320
8321 /* If we already have this specialization, return it. */
8322 elt.tmpl = gen_tmpl;
8323 elt.args = arglist;
8324 elt.spec = NULL_TREE;
8325 hash = spec_hasher::hash (&elt);
8326 entry = type_specializations->find_with_hash (&elt, hash);
8327
8328 if (entry)
8329 return entry->spec;
8330
8331 /* If the the template's constraints are not satisfied,
8332 then we cannot form a valid type.
8333
8334 Note that the check is deferred until after the hash
8335 lookup. This prevents redundant checks on previously
8336 instantiated specializations. */
8337 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8338 {
8339 if (complain & tf_error)
8340 {
8341 error ("template constraint failure");
8342 diagnose_constraints (input_location, gen_tmpl, arglist);
8343 }
8344 return error_mark_node;
8345 }
8346
8347 is_dependent_type = uses_template_parms (arglist);
8348
8349 /* If the deduced arguments are invalid, then the binding
8350 failed. */
8351 if (!is_dependent_type
8352 && check_instantiated_args (gen_tmpl,
8353 INNERMOST_TEMPLATE_ARGS (arglist),
8354 complain))
8355 return error_mark_node;
8356
8357 if (!is_dependent_type
8358 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8359 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8360 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8361 {
8362 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8363 DECL_NAME (gen_tmpl),
8364 /*tag_scope=*/ts_global);
8365 return found;
8366 }
8367
8368 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8369 complain, in_decl);
8370 if (context == error_mark_node)
8371 return error_mark_node;
8372
8373 if (!context)
8374 context = global_namespace;
8375
8376 /* Create the type. */
8377 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8378 {
8379 /* The user referred to a specialization of an alias
8380 template represented by GEN_TMPL.
8381
8382 [temp.alias]/2 says:
8383
8384 When a template-id refers to the specialization of an
8385 alias template, it is equivalent to the associated
8386 type obtained by substitution of its
8387 template-arguments for the template-parameters in the
8388 type-id of the alias template. */
8389
8390 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8391 /* Note that the call above (by indirectly calling
8392 register_specialization in tsubst_decl) registers the
8393 TYPE_DECL representing the specialization of the alias
8394 template. So next time someone substitutes ARGLIST for
8395 the template parms into the alias template (GEN_TMPL),
8396 she'll get that TYPE_DECL back. */
8397
8398 if (t == error_mark_node)
8399 return t;
8400 }
8401 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8402 {
8403 if (!is_dependent_type)
8404 {
8405 set_current_access_from_decl (TYPE_NAME (template_type));
8406 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8407 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8408 arglist, complain, in_decl),
8409 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8410 arglist, complain, in_decl),
8411 SCOPED_ENUM_P (template_type), NULL);
8412
8413 if (t == error_mark_node)
8414 return t;
8415 }
8416 else
8417 {
8418 /* We don't want to call start_enum for this type, since
8419 the values for the enumeration constants may involve
8420 template parameters. And, no one should be interested
8421 in the enumeration constants for such a type. */
8422 t = cxx_make_type (ENUMERAL_TYPE);
8423 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8424 }
8425 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8426 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8427 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8428 }
8429 else if (CLASS_TYPE_P (template_type))
8430 {
8431 t = make_class_type (TREE_CODE (template_type));
8432 CLASSTYPE_DECLARED_CLASS (t)
8433 = CLASSTYPE_DECLARED_CLASS (template_type);
8434 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8435 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8436
8437 /* A local class. Make sure the decl gets registered properly. */
8438 if (context == current_function_decl)
8439 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8440
8441 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8442 /* This instantiation is another name for the primary
8443 template type. Set the TYPE_CANONICAL field
8444 appropriately. */
8445 TYPE_CANONICAL (t) = template_type;
8446 else if (any_template_arguments_need_structural_equality_p (arglist))
8447 /* Some of the template arguments require structural
8448 equality testing, so this template class requires
8449 structural equality testing. */
8450 SET_TYPE_STRUCTURAL_EQUALITY (t);
8451 }
8452 else
8453 gcc_unreachable ();
8454
8455 /* If we called start_enum or pushtag above, this information
8456 will already be set up. */
8457 if (!TYPE_NAME (t))
8458 {
8459 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8460
8461 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8462 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8463 DECL_SOURCE_LOCATION (type_decl)
8464 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8465 }
8466 else
8467 type_decl = TYPE_NAME (t);
8468
8469 if (CLASS_TYPE_P (template_type))
8470 {
8471 TREE_PRIVATE (type_decl)
8472 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8473 TREE_PROTECTED (type_decl)
8474 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8475 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8476 {
8477 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8478 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8479 }
8480 }
8481
8482 if (OVERLOAD_TYPE_P (t)
8483 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8484 {
8485 static const char *tags[] = {"abi_tag", "may_alias"};
8486
8487 for (unsigned ix = 0; ix != 2; ix++)
8488 {
8489 tree attributes
8490 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8491
8492 if (attributes)
8493 TYPE_ATTRIBUTES (t)
8494 = tree_cons (TREE_PURPOSE (attributes),
8495 TREE_VALUE (attributes),
8496 TYPE_ATTRIBUTES (t));
8497 }
8498 }
8499
8500 /* Let's consider the explicit specialization of a member
8501 of a class template specialization that is implicitly instantiated,
8502 e.g.:
8503 template<class T>
8504 struct S
8505 {
8506 template<class U> struct M {}; //#0
8507 };
8508
8509 template<>
8510 template<>
8511 struct S<int>::M<char> //#1
8512 {
8513 int i;
8514 };
8515 [temp.expl.spec]/4 says this is valid.
8516
8517 In this case, when we write:
8518 S<int>::M<char> m;
8519
8520 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8521 the one of #0.
8522
8523 When we encounter #1, we want to store the partial instantiation
8524 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8525
8526 For all cases other than this "explicit specialization of member of a
8527 class template", we just want to store the most general template into
8528 the CLASSTYPE_TI_TEMPLATE of M.
8529
8530 This case of "explicit specialization of member of a class template"
8531 only happens when:
8532 1/ the enclosing class is an instantiation of, and therefore not
8533 the same as, the context of the most general template, and
8534 2/ we aren't looking at the partial instantiation itself, i.e.
8535 the innermost arguments are not the same as the innermost parms of
8536 the most general template.
8537
8538 So it's only when 1/ and 2/ happens that we want to use the partial
8539 instantiation of the member template in lieu of its most general
8540 template. */
8541
8542 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8543 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8544 /* the enclosing class must be an instantiation... */
8545 && CLASS_TYPE_P (context)
8546 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8547 {
8548 tree partial_inst_args;
8549 TREE_VEC_LENGTH (arglist)--;
8550 ++processing_template_decl;
8551 partial_inst_args =
8552 tsubst (INNERMOST_TEMPLATE_ARGS
8553 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8554 arglist, complain, NULL_TREE);
8555 --processing_template_decl;
8556 TREE_VEC_LENGTH (arglist)++;
8557 if (partial_inst_args == error_mark_node)
8558 return error_mark_node;
8559 use_partial_inst_tmpl =
8560 /*...and we must not be looking at the partial instantiation
8561 itself. */
8562 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8563 partial_inst_args);
8564 }
8565
8566 if (!use_partial_inst_tmpl)
8567 /* This case is easy; there are no member templates involved. */
8568 found = gen_tmpl;
8569 else
8570 {
8571 /* This is a full instantiation of a member template. Find
8572 the partial instantiation of which this is an instance. */
8573
8574 /* Temporarily reduce by one the number of levels in the ARGLIST
8575 so as to avoid comparing the last set of arguments. */
8576 TREE_VEC_LENGTH (arglist)--;
8577 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8578 TREE_VEC_LENGTH (arglist)++;
8579 /* FOUND is either a proper class type, or an alias
8580 template specialization. In the later case, it's a
8581 TYPE_DECL, resulting from the substituting of arguments
8582 for parameters in the TYPE_DECL of the alias template
8583 done earlier. So be careful while getting the template
8584 of FOUND. */
8585 found = TREE_CODE (found) == TYPE_DECL
8586 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8587 : CLASSTYPE_TI_TEMPLATE (found);
8588 }
8589
8590 // Build template info for the new specialization.
8591 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8592
8593 elt.spec = t;
8594 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8595 entry = ggc_alloc<spec_entry> ();
8596 *entry = elt;
8597 *slot = entry;
8598
8599 /* Note this use of the partial instantiation so we can check it
8600 later in maybe_process_partial_specialization. */
8601 DECL_TEMPLATE_INSTANTIATIONS (found)
8602 = tree_cons (arglist, t,
8603 DECL_TEMPLATE_INSTANTIATIONS (found));
8604
8605 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8606 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8607 /* Now that the type has been registered on the instantiations
8608 list, we set up the enumerators. Because the enumeration
8609 constants may involve the enumeration type itself, we make
8610 sure to register the type first, and then create the
8611 constants. That way, doing tsubst_expr for the enumeration
8612 constants won't result in recursive calls here; we'll find
8613 the instantiation and exit above. */
8614 tsubst_enum (template_type, t, arglist);
8615
8616 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8617 /* If the type makes use of template parameters, the
8618 code that generates debugging information will crash. */
8619 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8620
8621 /* Possibly limit visibility based on template args. */
8622 TREE_PUBLIC (type_decl) = 1;
8623 determine_visibility (type_decl);
8624
8625 inherit_targ_abi_tags (t);
8626
8627 return t;
8628 }
8629 }
8630
8631 /* Wrapper for lookup_template_class_1. */
8632
8633 tree
8634 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8635 int entering_scope, tsubst_flags_t complain)
8636 {
8637 tree ret;
8638 timevar_push (TV_TEMPLATE_INST);
8639 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8640 entering_scope, complain);
8641 timevar_pop (TV_TEMPLATE_INST);
8642 return ret;
8643 }
8644
8645 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8646
8647 tree
8648 lookup_template_variable (tree templ, tree arglist)
8649 {
8650 /* The type of the expression is NULL_TREE since the template-id could refer
8651 to an explicit or partial specialization. */
8652 tree type = NULL_TREE;
8653 if (flag_concepts && variable_concept_p (templ))
8654 /* Except that concepts are always bool. */
8655 type = boolean_type_node;
8656 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8657 }
8658
8659 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8660
8661 tree
8662 finish_template_variable (tree var, tsubst_flags_t complain)
8663 {
8664 tree templ = TREE_OPERAND (var, 0);
8665 tree arglist = TREE_OPERAND (var, 1);
8666
8667 /* We never want to return a VAR_DECL for a variable concept, since they
8668 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8669 bool concept_p = flag_concepts && variable_concept_p (templ);
8670 if (concept_p && processing_template_decl)
8671 return var;
8672
8673 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8674 arglist = add_outermost_template_args (tmpl_args, arglist);
8675
8676 tree parms = DECL_TEMPLATE_PARMS (templ);
8677 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8678 /*req_all*/true,
8679 /*use_default*/true);
8680
8681 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8682 {
8683 if (complain & tf_error)
8684 {
8685 error ("constraints for %qD not satisfied", templ);
8686 diagnose_constraints (location_of (var), templ, arglist);
8687 }
8688 return error_mark_node;
8689 }
8690
8691 /* If a template-id refers to a specialization of a variable
8692 concept, then the expression is true if and only if the
8693 concept's constraints are satisfied by the given template
8694 arguments.
8695
8696 NOTE: This is an extension of Concepts Lite TS that
8697 allows constraints to be used in expressions. */
8698 if (concept_p)
8699 {
8700 tree decl = DECL_TEMPLATE_RESULT (templ);
8701 return evaluate_variable_concept (decl, arglist);
8702 }
8703
8704 return instantiate_template (templ, arglist, complain);
8705 }
8706
8707 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
8708 TARGS template args, and instantiate it if it's not dependent. */
8709
8710 static tree
8711 lookup_and_finish_template_variable (tree templ, tree targs,
8712 tsubst_flags_t complain)
8713 {
8714 templ = lookup_template_variable (templ, targs);
8715 if (!any_dependent_template_arguments_p (targs))
8716 {
8717 templ = finish_template_variable (templ, complain);
8718 mark_used (templ);
8719 }
8720
8721 return convert_from_reference (templ);
8722 }
8723
8724 \f
8725 struct pair_fn_data
8726 {
8727 tree_fn_t fn;
8728 void *data;
8729 /* True when we should also visit template parameters that occur in
8730 non-deduced contexts. */
8731 bool include_nondeduced_p;
8732 hash_set<tree> *visited;
8733 };
8734
8735 /* Called from for_each_template_parm via walk_tree. */
8736
8737 static tree
8738 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8739 {
8740 tree t = *tp;
8741 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8742 tree_fn_t fn = pfd->fn;
8743 void *data = pfd->data;
8744 tree result = NULL_TREE;
8745
8746 #define WALK_SUBTREE(NODE) \
8747 do \
8748 { \
8749 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8750 pfd->include_nondeduced_p); \
8751 if (result) goto out; \
8752 } \
8753 while (0)
8754
8755 if (TYPE_P (t)
8756 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8757 WALK_SUBTREE (TYPE_CONTEXT (t));
8758
8759 switch (TREE_CODE (t))
8760 {
8761 case RECORD_TYPE:
8762 if (TYPE_PTRMEMFUNC_P (t))
8763 break;
8764 /* Fall through. */
8765
8766 case UNION_TYPE:
8767 case ENUMERAL_TYPE:
8768 if (!TYPE_TEMPLATE_INFO (t))
8769 *walk_subtrees = 0;
8770 else
8771 WALK_SUBTREE (TYPE_TI_ARGS (t));
8772 break;
8773
8774 case INTEGER_TYPE:
8775 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8776 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8777 break;
8778
8779 case METHOD_TYPE:
8780 /* Since we're not going to walk subtrees, we have to do this
8781 explicitly here. */
8782 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8783 /* Fall through. */
8784
8785 case FUNCTION_TYPE:
8786 /* Check the return type. */
8787 WALK_SUBTREE (TREE_TYPE (t));
8788
8789 /* Check the parameter types. Since default arguments are not
8790 instantiated until they are needed, the TYPE_ARG_TYPES may
8791 contain expressions that involve template parameters. But,
8792 no-one should be looking at them yet. And, once they're
8793 instantiated, they don't contain template parameters, so
8794 there's no point in looking at them then, either. */
8795 {
8796 tree parm;
8797
8798 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8799 WALK_SUBTREE (TREE_VALUE (parm));
8800
8801 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8802 want walk_tree walking into them itself. */
8803 *walk_subtrees = 0;
8804 }
8805 break;
8806
8807 case TYPEOF_TYPE:
8808 case UNDERLYING_TYPE:
8809 if (pfd->include_nondeduced_p
8810 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8811 pfd->visited,
8812 pfd->include_nondeduced_p))
8813 return error_mark_node;
8814 break;
8815
8816 case FUNCTION_DECL:
8817 case VAR_DECL:
8818 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8819 WALK_SUBTREE (DECL_TI_ARGS (t));
8820 /* Fall through. */
8821
8822 case PARM_DECL:
8823 case CONST_DECL:
8824 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8825 WALK_SUBTREE (DECL_INITIAL (t));
8826 if (DECL_CONTEXT (t)
8827 && pfd->include_nondeduced_p)
8828 WALK_SUBTREE (DECL_CONTEXT (t));
8829 break;
8830
8831 case BOUND_TEMPLATE_TEMPLATE_PARM:
8832 /* Record template parameters such as `T' inside `TT<T>'. */
8833 WALK_SUBTREE (TYPE_TI_ARGS (t));
8834 /* Fall through. */
8835
8836 case TEMPLATE_TEMPLATE_PARM:
8837 case TEMPLATE_TYPE_PARM:
8838 case TEMPLATE_PARM_INDEX:
8839 if (fn && (*fn)(t, data))
8840 return t;
8841 else if (!fn)
8842 return t;
8843 break;
8844
8845 case TEMPLATE_DECL:
8846 /* A template template parameter is encountered. */
8847 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8848 WALK_SUBTREE (TREE_TYPE (t));
8849
8850 /* Already substituted template template parameter */
8851 *walk_subtrees = 0;
8852 break;
8853
8854 case TYPENAME_TYPE:
8855 /* A template-id in a TYPENAME_TYPE might be a deduced context after
8856 partial instantiation. */
8857 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8858 break;
8859
8860 case CONSTRUCTOR:
8861 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8862 && pfd->include_nondeduced_p)
8863 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8864 break;
8865
8866 case INDIRECT_REF:
8867 case COMPONENT_REF:
8868 /* If there's no type, then this thing must be some expression
8869 involving template parameters. */
8870 if (!fn && !TREE_TYPE (t))
8871 return error_mark_node;
8872 break;
8873
8874 case MODOP_EXPR:
8875 case CAST_EXPR:
8876 case IMPLICIT_CONV_EXPR:
8877 case REINTERPRET_CAST_EXPR:
8878 case CONST_CAST_EXPR:
8879 case STATIC_CAST_EXPR:
8880 case DYNAMIC_CAST_EXPR:
8881 case ARROW_EXPR:
8882 case DOTSTAR_EXPR:
8883 case TYPEID_EXPR:
8884 case PSEUDO_DTOR_EXPR:
8885 if (!fn)
8886 return error_mark_node;
8887 break;
8888
8889 default:
8890 break;
8891 }
8892
8893 #undef WALK_SUBTREE
8894
8895 /* We didn't find any template parameters we liked. */
8896 out:
8897 return result;
8898 }
8899
8900 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8901 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8902 call FN with the parameter and the DATA.
8903 If FN returns nonzero, the iteration is terminated, and
8904 for_each_template_parm returns 1. Otherwise, the iteration
8905 continues. If FN never returns a nonzero value, the value
8906 returned by for_each_template_parm is 0. If FN is NULL, it is
8907 considered to be the function which always returns 1.
8908
8909 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8910 parameters that occur in non-deduced contexts. When false, only
8911 visits those template parameters that can be deduced. */
8912
8913 static tree
8914 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8915 hash_set<tree> *visited,
8916 bool include_nondeduced_p)
8917 {
8918 struct pair_fn_data pfd;
8919 tree result;
8920
8921 /* Set up. */
8922 pfd.fn = fn;
8923 pfd.data = data;
8924 pfd.include_nondeduced_p = include_nondeduced_p;
8925
8926 /* Walk the tree. (Conceptually, we would like to walk without
8927 duplicates, but for_each_template_parm_r recursively calls
8928 for_each_template_parm, so we would need to reorganize a fair
8929 bit to use walk_tree_without_duplicates, so we keep our own
8930 visited list.) */
8931 if (visited)
8932 pfd.visited = visited;
8933 else
8934 pfd.visited = new hash_set<tree>;
8935 result = cp_walk_tree (&t,
8936 for_each_template_parm_r,
8937 &pfd,
8938 pfd.visited);
8939
8940 /* Clean up. */
8941 if (!visited)
8942 {
8943 delete pfd.visited;
8944 pfd.visited = 0;
8945 }
8946
8947 return result;
8948 }
8949
8950 /* Returns true if T depends on any template parameter. */
8951
8952 int
8953 uses_template_parms (tree t)
8954 {
8955 if (t == NULL_TREE)
8956 return false;
8957
8958 bool dependent_p;
8959 int saved_processing_template_decl;
8960
8961 saved_processing_template_decl = processing_template_decl;
8962 if (!saved_processing_template_decl)
8963 processing_template_decl = 1;
8964 if (TYPE_P (t))
8965 dependent_p = dependent_type_p (t);
8966 else if (TREE_CODE (t) == TREE_VEC)
8967 dependent_p = any_dependent_template_arguments_p (t);
8968 else if (TREE_CODE (t) == TREE_LIST)
8969 dependent_p = (uses_template_parms (TREE_VALUE (t))
8970 || uses_template_parms (TREE_CHAIN (t)));
8971 else if (TREE_CODE (t) == TYPE_DECL)
8972 dependent_p = dependent_type_p (TREE_TYPE (t));
8973 else if (DECL_P (t)
8974 || EXPR_P (t)
8975 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8976 || TREE_CODE (t) == OVERLOAD
8977 || BASELINK_P (t)
8978 || identifier_p (t)
8979 || TREE_CODE (t) == TRAIT_EXPR
8980 || TREE_CODE (t) == CONSTRUCTOR
8981 || CONSTANT_CLASS_P (t))
8982 dependent_p = (type_dependent_expression_p (t)
8983 || value_dependent_expression_p (t));
8984 else
8985 {
8986 gcc_assert (t == error_mark_node);
8987 dependent_p = false;
8988 }
8989
8990 processing_template_decl = saved_processing_template_decl;
8991
8992 return dependent_p;
8993 }
8994
8995 /* Returns true iff current_function_decl is an incompletely instantiated
8996 template. Useful instead of processing_template_decl because the latter
8997 is set to 0 during instantiate_non_dependent_expr. */
8998
8999 bool
9000 in_template_function (void)
9001 {
9002 tree fn = current_function_decl;
9003 bool ret;
9004 ++processing_template_decl;
9005 ret = (fn && DECL_LANG_SPECIFIC (fn)
9006 && DECL_TEMPLATE_INFO (fn)
9007 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
9008 --processing_template_decl;
9009 return ret;
9010 }
9011
9012 /* Returns true if T depends on any template parameter with level LEVEL. */
9013
9014 bool
9015 uses_template_parms_level (tree t, int level)
9016 {
9017 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
9018 /*include_nondeduced_p=*/true);
9019 }
9020
9021 /* Returns TRUE iff INST is an instantiation we don't need to do in an
9022 ill-formed translation unit, i.e. a variable or function that isn't
9023 usable in a constant expression. */
9024
9025 static inline bool
9026 neglectable_inst_p (tree d)
9027 {
9028 return (DECL_P (d)
9029 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9030 : decl_maybe_constant_var_p (d)));
9031 }
9032
9033 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9034 neglectable and instantiated from within an erroneous instantiation. */
9035
9036 static bool
9037 limit_bad_template_recursion (tree decl)
9038 {
9039 struct tinst_level *lev = current_tinst_level;
9040 int errs = errorcount + sorrycount;
9041 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9042 return false;
9043
9044 for (; lev; lev = lev->next)
9045 if (neglectable_inst_p (lev->decl))
9046 break;
9047
9048 return (lev && errs > lev->errors);
9049 }
9050
9051 static int tinst_depth;
9052 extern int max_tinst_depth;
9053 int depth_reached;
9054
9055 static GTY(()) struct tinst_level *last_error_tinst_level;
9056
9057 /* We're starting to instantiate D; record the template instantiation context
9058 for diagnostics and to restore it later. */
9059
9060 bool
9061 push_tinst_level (tree d)
9062 {
9063 return push_tinst_level_loc (d, input_location);
9064 }
9065
9066 /* We're starting to instantiate D; record the template instantiation context
9067 at LOC for diagnostics and to restore it later. */
9068
9069 bool
9070 push_tinst_level_loc (tree d, location_t loc)
9071 {
9072 struct tinst_level *new_level;
9073
9074 if (tinst_depth >= max_tinst_depth)
9075 {
9076 fatal_error (input_location,
9077 "template instantiation depth exceeds maximum of %d"
9078 " (use -ftemplate-depth= to increase the maximum)",
9079 max_tinst_depth);
9080 return false;
9081 }
9082
9083 /* If the current instantiation caused problems, don't let it instantiate
9084 anything else. Do allow deduction substitution and decls usable in
9085 constant expressions. */
9086 if (limit_bad_template_recursion (d))
9087 return false;
9088
9089 new_level = ggc_alloc<tinst_level> ();
9090 new_level->decl = d;
9091 new_level->locus = loc;
9092 new_level->errors = errorcount+sorrycount;
9093 new_level->in_system_header_p = in_system_header_at (input_location);
9094 new_level->next = current_tinst_level;
9095 current_tinst_level = new_level;
9096
9097 ++tinst_depth;
9098 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9099 depth_reached = tinst_depth;
9100
9101 return true;
9102 }
9103
9104 /* We're done instantiating this template; return to the instantiation
9105 context. */
9106
9107 void
9108 pop_tinst_level (void)
9109 {
9110 /* Restore the filename and line number stashed away when we started
9111 this instantiation. */
9112 input_location = current_tinst_level->locus;
9113 current_tinst_level = current_tinst_level->next;
9114 --tinst_depth;
9115 }
9116
9117 /* We're instantiating a deferred template; restore the template
9118 instantiation context in which the instantiation was requested, which
9119 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9120
9121 static tree
9122 reopen_tinst_level (struct tinst_level *level)
9123 {
9124 struct tinst_level *t;
9125
9126 tinst_depth = 0;
9127 for (t = level; t; t = t->next)
9128 ++tinst_depth;
9129
9130 current_tinst_level = level;
9131 pop_tinst_level ();
9132 if (current_tinst_level)
9133 current_tinst_level->errors = errorcount+sorrycount;
9134 return level->decl;
9135 }
9136
9137 /* Returns the TINST_LEVEL which gives the original instantiation
9138 context. */
9139
9140 struct tinst_level *
9141 outermost_tinst_level (void)
9142 {
9143 struct tinst_level *level = current_tinst_level;
9144 if (level)
9145 while (level->next)
9146 level = level->next;
9147 return level;
9148 }
9149
9150 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9151 vector of template arguments, as for tsubst.
9152
9153 Returns an appropriate tsubst'd friend declaration. */
9154
9155 static tree
9156 tsubst_friend_function (tree decl, tree args)
9157 {
9158 tree new_friend;
9159
9160 if (TREE_CODE (decl) == FUNCTION_DECL
9161 && DECL_TEMPLATE_INSTANTIATION (decl)
9162 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9163 /* This was a friend declared with an explicit template
9164 argument list, e.g.:
9165
9166 friend void f<>(T);
9167
9168 to indicate that f was a template instantiation, not a new
9169 function declaration. Now, we have to figure out what
9170 instantiation of what template. */
9171 {
9172 tree template_id, arglist, fns;
9173 tree new_args;
9174 tree tmpl;
9175 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9176
9177 /* Friend functions are looked up in the containing namespace scope.
9178 We must enter that scope, to avoid finding member functions of the
9179 current class with same name. */
9180 push_nested_namespace (ns);
9181 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9182 tf_warning_or_error, NULL_TREE,
9183 /*integral_constant_expression_p=*/false);
9184 pop_nested_namespace (ns);
9185 arglist = tsubst (DECL_TI_ARGS (decl), args,
9186 tf_warning_or_error, NULL_TREE);
9187 template_id = lookup_template_function (fns, arglist);
9188
9189 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9190 tmpl = determine_specialization (template_id, new_friend,
9191 &new_args,
9192 /*need_member_template=*/0,
9193 TREE_VEC_LENGTH (args),
9194 tsk_none);
9195 return instantiate_template (tmpl, new_args, tf_error);
9196 }
9197
9198 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9199
9200 /* The NEW_FRIEND will look like an instantiation, to the
9201 compiler, but is not an instantiation from the point of view of
9202 the language. For example, we might have had:
9203
9204 template <class T> struct S {
9205 template <class U> friend void f(T, U);
9206 };
9207
9208 Then, in S<int>, template <class U> void f(int, U) is not an
9209 instantiation of anything. */
9210 if (new_friend == error_mark_node)
9211 return error_mark_node;
9212
9213 DECL_USE_TEMPLATE (new_friend) = 0;
9214 if (TREE_CODE (decl) == TEMPLATE_DECL)
9215 {
9216 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9217 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9218 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9219 }
9220
9221 /* The mangled name for the NEW_FRIEND is incorrect. The function
9222 is not a template instantiation and should not be mangled like
9223 one. Therefore, we forget the mangling here; we'll recompute it
9224 later if we need it. */
9225 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9226 {
9227 SET_DECL_RTL (new_friend, NULL);
9228 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9229 }
9230
9231 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9232 {
9233 tree old_decl;
9234 tree new_friend_template_info;
9235 tree new_friend_result_template_info;
9236 tree ns;
9237 int new_friend_is_defn;
9238
9239 /* We must save some information from NEW_FRIEND before calling
9240 duplicate decls since that function will free NEW_FRIEND if
9241 possible. */
9242 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9243 new_friend_is_defn =
9244 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9245 (template_for_substitution (new_friend)))
9246 != NULL_TREE);
9247 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9248 {
9249 /* This declaration is a `primary' template. */
9250 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9251
9252 new_friend_result_template_info
9253 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9254 }
9255 else
9256 new_friend_result_template_info = NULL_TREE;
9257
9258 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9259 if (new_friend_is_defn)
9260 DECL_INITIAL (new_friend) = error_mark_node;
9261
9262 /* Inside pushdecl_namespace_level, we will push into the
9263 current namespace. However, the friend function should go
9264 into the namespace of the template. */
9265 ns = decl_namespace_context (new_friend);
9266 push_nested_namespace (ns);
9267 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9268 pop_nested_namespace (ns);
9269
9270 if (old_decl == error_mark_node)
9271 return error_mark_node;
9272
9273 if (old_decl != new_friend)
9274 {
9275 /* This new friend declaration matched an existing
9276 declaration. For example, given:
9277
9278 template <class T> void f(T);
9279 template <class U> class C {
9280 template <class T> friend void f(T) {}
9281 };
9282
9283 the friend declaration actually provides the definition
9284 of `f', once C has been instantiated for some type. So,
9285 old_decl will be the out-of-class template declaration,
9286 while new_friend is the in-class definition.
9287
9288 But, if `f' was called before this point, the
9289 instantiation of `f' will have DECL_TI_ARGS corresponding
9290 to `T' but not to `U', references to which might appear
9291 in the definition of `f'. Previously, the most general
9292 template for an instantiation of `f' was the out-of-class
9293 version; now it is the in-class version. Therefore, we
9294 run through all specialization of `f', adding to their
9295 DECL_TI_ARGS appropriately. In particular, they need a
9296 new set of outer arguments, corresponding to the
9297 arguments for this class instantiation.
9298
9299 The same situation can arise with something like this:
9300
9301 friend void f(int);
9302 template <class T> class C {
9303 friend void f(T) {}
9304 };
9305
9306 when `C<int>' is instantiated. Now, `f(int)' is defined
9307 in the class. */
9308
9309 if (!new_friend_is_defn)
9310 /* On the other hand, if the in-class declaration does
9311 *not* provide a definition, then we don't want to alter
9312 existing definitions. We can just leave everything
9313 alone. */
9314 ;
9315 else
9316 {
9317 tree new_template = TI_TEMPLATE (new_friend_template_info);
9318 tree new_args = TI_ARGS (new_friend_template_info);
9319
9320 /* Overwrite whatever template info was there before, if
9321 any, with the new template information pertaining to
9322 the declaration. */
9323 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9324
9325 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9326 {
9327 /* We should have called reregister_specialization in
9328 duplicate_decls. */
9329 gcc_assert (retrieve_specialization (new_template,
9330 new_args, 0)
9331 == old_decl);
9332
9333 /* Instantiate it if the global has already been used. */
9334 if (DECL_ODR_USED (old_decl))
9335 instantiate_decl (old_decl, /*defer_ok=*/true,
9336 /*expl_inst_class_mem_p=*/false);
9337 }
9338 else
9339 {
9340 tree t;
9341
9342 /* Indicate that the old function template is a partial
9343 instantiation. */
9344 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9345 = new_friend_result_template_info;
9346
9347 gcc_assert (new_template
9348 == most_general_template (new_template));
9349 gcc_assert (new_template != old_decl);
9350
9351 /* Reassign any specializations already in the hash table
9352 to the new more general template, and add the
9353 additional template args. */
9354 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9355 t != NULL_TREE;
9356 t = TREE_CHAIN (t))
9357 {
9358 tree spec = TREE_VALUE (t);
9359 spec_entry elt;
9360
9361 elt.tmpl = old_decl;
9362 elt.args = DECL_TI_ARGS (spec);
9363 elt.spec = NULL_TREE;
9364
9365 decl_specializations->remove_elt (&elt);
9366
9367 DECL_TI_ARGS (spec)
9368 = add_outermost_template_args (new_args,
9369 DECL_TI_ARGS (spec));
9370
9371 register_specialization
9372 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9373
9374 }
9375 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9376 }
9377 }
9378
9379 /* The information from NEW_FRIEND has been merged into OLD_DECL
9380 by duplicate_decls. */
9381 new_friend = old_decl;
9382 }
9383 }
9384 else
9385 {
9386 tree context = DECL_CONTEXT (new_friend);
9387 bool dependent_p;
9388
9389 /* In the code
9390 template <class T> class C {
9391 template <class U> friend void C1<U>::f (); // case 1
9392 friend void C2<T>::f (); // case 2
9393 };
9394 we only need to make sure CONTEXT is a complete type for
9395 case 2. To distinguish between the two cases, we note that
9396 CONTEXT of case 1 remains dependent type after tsubst while
9397 this isn't true for case 2. */
9398 ++processing_template_decl;
9399 dependent_p = dependent_type_p (context);
9400 --processing_template_decl;
9401
9402 if (!dependent_p
9403 && !complete_type_or_else (context, NULL_TREE))
9404 return error_mark_node;
9405
9406 if (COMPLETE_TYPE_P (context))
9407 {
9408 tree fn = new_friend;
9409 /* do_friend adds the TEMPLATE_DECL for any member friend
9410 template even if it isn't a member template, i.e.
9411 template <class T> friend A<T>::f();
9412 Look through it in that case. */
9413 if (TREE_CODE (fn) == TEMPLATE_DECL
9414 && !PRIMARY_TEMPLATE_P (fn))
9415 fn = DECL_TEMPLATE_RESULT (fn);
9416 /* Check to see that the declaration is really present, and,
9417 possibly obtain an improved declaration. */
9418 fn = check_classfn (context, fn, NULL_TREE);
9419
9420 if (fn)
9421 new_friend = fn;
9422 }
9423 }
9424
9425 return new_friend;
9426 }
9427
9428 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9429 template arguments, as for tsubst.
9430
9431 Returns an appropriate tsubst'd friend type or error_mark_node on
9432 failure. */
9433
9434 static tree
9435 tsubst_friend_class (tree friend_tmpl, tree args)
9436 {
9437 tree friend_type;
9438 tree tmpl;
9439 tree context;
9440
9441 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9442 {
9443 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9444 return TREE_TYPE (t);
9445 }
9446
9447 context = CP_DECL_CONTEXT (friend_tmpl);
9448
9449 if (context != global_namespace)
9450 {
9451 if (TREE_CODE (context) == NAMESPACE_DECL)
9452 push_nested_namespace (context);
9453 else
9454 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9455 }
9456
9457 /* Look for a class template declaration. We look for hidden names
9458 because two friend declarations of the same template are the
9459 same. For example, in:
9460
9461 struct A {
9462 template <typename> friend class F;
9463 };
9464 template <typename> struct B {
9465 template <typename> friend class F;
9466 };
9467
9468 both F templates are the same. */
9469 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9470 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9471
9472 /* But, if we don't find one, it might be because we're in a
9473 situation like this:
9474
9475 template <class T>
9476 struct S {
9477 template <class U>
9478 friend struct S;
9479 };
9480
9481 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9482 for `S<int>', not the TEMPLATE_DECL. */
9483 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9484 {
9485 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9486 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9487 }
9488
9489 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9490 {
9491 /* The friend template has already been declared. Just
9492 check to see that the declarations match, and install any new
9493 default parameters. We must tsubst the default parameters,
9494 of course. We only need the innermost template parameters
9495 because that is all that redeclare_class_template will look
9496 at. */
9497 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9498 > TMPL_ARGS_DEPTH (args))
9499 {
9500 tree parms;
9501 location_t saved_input_location;
9502 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9503 args, tf_warning_or_error);
9504
9505 saved_input_location = input_location;
9506 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9507 tree cons = get_constraints (tmpl);
9508 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9509 input_location = saved_input_location;
9510
9511 }
9512
9513 friend_type = TREE_TYPE (tmpl);
9514 }
9515 else
9516 {
9517 /* The friend template has not already been declared. In this
9518 case, the instantiation of the template class will cause the
9519 injection of this template into the global scope. */
9520 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9521 if (tmpl == error_mark_node)
9522 return error_mark_node;
9523
9524 /* The new TMPL is not an instantiation of anything, so we
9525 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9526 the new type because that is supposed to be the corresponding
9527 template decl, i.e., TMPL. */
9528 DECL_USE_TEMPLATE (tmpl) = 0;
9529 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9530 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9531 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9532 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9533
9534 /* Inject this template into the global scope. */
9535 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9536 }
9537
9538 if (context != global_namespace)
9539 {
9540 if (TREE_CODE (context) == NAMESPACE_DECL)
9541 pop_nested_namespace (context);
9542 else
9543 pop_nested_class ();
9544 }
9545
9546 return friend_type;
9547 }
9548
9549 /* Returns zero if TYPE cannot be completed later due to circularity.
9550 Otherwise returns one. */
9551
9552 static int
9553 can_complete_type_without_circularity (tree type)
9554 {
9555 if (type == NULL_TREE || type == error_mark_node)
9556 return 0;
9557 else if (COMPLETE_TYPE_P (type))
9558 return 1;
9559 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9560 return can_complete_type_without_circularity (TREE_TYPE (type));
9561 else if (CLASS_TYPE_P (type)
9562 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9563 return 0;
9564 else
9565 return 1;
9566 }
9567
9568 static tree tsubst_omp_clauses (tree, bool, bool, tree, tsubst_flags_t, tree);
9569
9570 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9571 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9572
9573 static tree
9574 tsubst_attribute (tree t, tree *decl_p, tree args,
9575 tsubst_flags_t complain, tree in_decl)
9576 {
9577 gcc_assert (ATTR_IS_DEPENDENT (t));
9578
9579 tree val = TREE_VALUE (t);
9580 if (val == NULL_TREE)
9581 /* Nothing to do. */;
9582 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9583 && is_attribute_p ("omp declare simd",
9584 get_attribute_name (t)))
9585 {
9586 tree clauses = TREE_VALUE (val);
9587 clauses = tsubst_omp_clauses (clauses, true, false, args,
9588 complain, in_decl);
9589 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9590 clauses = finish_omp_clauses (clauses, false, true);
9591 tree parms = DECL_ARGUMENTS (*decl_p);
9592 clauses
9593 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9594 if (clauses)
9595 val = build_tree_list (NULL_TREE, clauses);
9596 else
9597 val = NULL_TREE;
9598 }
9599 /* If the first attribute argument is an identifier, don't
9600 pass it through tsubst. Attributes like mode, format,
9601 cleanup and several target specific attributes expect it
9602 unmodified. */
9603 else if (attribute_takes_identifier_p (get_attribute_name (t)))
9604 {
9605 tree chain
9606 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
9607 /*integral_constant_expression_p=*/false);
9608 if (chain != TREE_CHAIN (val))
9609 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
9610 }
9611 else if (PACK_EXPANSION_P (val))
9612 {
9613 /* An attribute pack expansion. */
9614 tree purp = TREE_PURPOSE (t);
9615 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
9616 int len = TREE_VEC_LENGTH (pack);
9617 tree list = NULL_TREE;
9618 tree *q = &list;
9619 for (int i = 0; i < len; ++i)
9620 {
9621 tree elt = TREE_VEC_ELT (pack, i);
9622 *q = build_tree_list (purp, elt);
9623 q = &TREE_CHAIN (*q);
9624 }
9625 return list;
9626 }
9627 else
9628 val = tsubst_expr (val, args, complain, in_decl,
9629 /*integral_constant_expression_p=*/false);
9630
9631 if (val != TREE_VALUE (t))
9632 return build_tree_list (TREE_PURPOSE (t), val);
9633 return t;
9634 }
9635
9636 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
9637 unchanged or a new TREE_LIST chain. */
9638
9639 static tree
9640 tsubst_attributes (tree attributes, tree args,
9641 tsubst_flags_t complain, tree in_decl)
9642 {
9643 tree last_dep = NULL_TREE;
9644
9645 for (tree t = attributes; t; t = TREE_CHAIN (t))
9646 if (ATTR_IS_DEPENDENT (t))
9647 {
9648 last_dep = t;
9649 attributes = copy_list (attributes);
9650 break;
9651 }
9652
9653 if (last_dep)
9654 for (tree *p = &attributes; *p; p = &TREE_CHAIN (*p))
9655 {
9656 tree t = *p;
9657 if (ATTR_IS_DEPENDENT (t))
9658 {
9659 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
9660 if (subst == t)
9661 continue;
9662 *p = subst;
9663 do
9664 p = &TREE_CHAIN (*p);
9665 while (*p);
9666 *p = TREE_CHAIN (t);
9667 }
9668 }
9669
9670 return attributes;
9671 }
9672
9673 /* Apply any attributes which had to be deferred until instantiation
9674 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9675 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9676
9677 static void
9678 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9679 tree args, tsubst_flags_t complain, tree in_decl)
9680 {
9681 tree last_dep = NULL_TREE;
9682 tree t;
9683 tree *p;
9684
9685 for (t = attributes; t; t = TREE_CHAIN (t))
9686 if (ATTR_IS_DEPENDENT (t))
9687 {
9688 last_dep = t;
9689 attributes = copy_list (attributes);
9690 break;
9691 }
9692
9693 if (DECL_P (*decl_p))
9694 {
9695 if (TREE_TYPE (*decl_p) == error_mark_node)
9696 return;
9697 p = &DECL_ATTRIBUTES (*decl_p);
9698 }
9699 else
9700 p = &TYPE_ATTRIBUTES (*decl_p);
9701
9702 if (last_dep)
9703 {
9704 tree late_attrs = NULL_TREE;
9705 tree *q = &late_attrs;
9706
9707 for (*p = attributes; *p; )
9708 {
9709 t = *p;
9710 if (ATTR_IS_DEPENDENT (t))
9711 {
9712 *p = TREE_CHAIN (t);
9713 TREE_CHAIN (t) = NULL_TREE;
9714 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
9715 do
9716 q = &TREE_CHAIN (*q);
9717 while (*q);
9718 }
9719 else
9720 p = &TREE_CHAIN (t);
9721 }
9722
9723 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9724 }
9725 }
9726
9727 /* Perform (or defer) access check for typedefs that were referenced
9728 from within the template TMPL code.
9729 This is a subroutine of instantiate_decl and instantiate_class_template.
9730 TMPL is the template to consider and TARGS is the list of arguments of
9731 that template. */
9732
9733 static void
9734 perform_typedefs_access_check (tree tmpl, tree targs)
9735 {
9736 location_t saved_location;
9737 unsigned i;
9738 qualified_typedef_usage_t *iter;
9739
9740 if (!tmpl
9741 || (!CLASS_TYPE_P (tmpl)
9742 && TREE_CODE (tmpl) != FUNCTION_DECL))
9743 return;
9744
9745 saved_location = input_location;
9746 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9747 {
9748 tree type_decl = iter->typedef_decl;
9749 tree type_scope = iter->context;
9750
9751 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9752 continue;
9753
9754 if (uses_template_parms (type_decl))
9755 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9756 if (uses_template_parms (type_scope))
9757 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9758
9759 /* Make access check error messages point to the location
9760 of the use of the typedef. */
9761 input_location = iter->locus;
9762 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9763 type_decl, type_decl,
9764 tf_warning_or_error);
9765 }
9766 input_location = saved_location;
9767 }
9768
9769 static tree
9770 instantiate_class_template_1 (tree type)
9771 {
9772 tree templ, args, pattern, t, member;
9773 tree typedecl;
9774 tree pbinfo;
9775 tree base_list;
9776 unsigned int saved_maximum_field_alignment;
9777 tree fn_context;
9778
9779 if (type == error_mark_node)
9780 return error_mark_node;
9781
9782 if (COMPLETE_OR_OPEN_TYPE_P (type)
9783 || uses_template_parms (type))
9784 return type;
9785
9786 /* Figure out which template is being instantiated. */
9787 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9788 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9789
9790 /* Determine what specialization of the original template to
9791 instantiate. */
9792 t = most_specialized_partial_spec (type, tf_warning_or_error);
9793 if (t == error_mark_node)
9794 {
9795 TYPE_BEING_DEFINED (type) = 1;
9796 return error_mark_node;
9797 }
9798 else if (t)
9799 {
9800 /* This TYPE is actually an instantiation of a partial
9801 specialization. We replace the innermost set of ARGS with
9802 the arguments appropriate for substitution. For example,
9803 given:
9804
9805 template <class T> struct S {};
9806 template <class T> struct S<T*> {};
9807
9808 and supposing that we are instantiating S<int*>, ARGS will
9809 presently be {int*} -- but we need {int}. */
9810 pattern = TREE_TYPE (t);
9811 args = TREE_PURPOSE (t);
9812 }
9813 else
9814 {
9815 pattern = TREE_TYPE (templ);
9816 args = CLASSTYPE_TI_ARGS (type);
9817 }
9818
9819 /* If the template we're instantiating is incomplete, then clearly
9820 there's nothing we can do. */
9821 if (!COMPLETE_TYPE_P (pattern))
9822 return type;
9823
9824 /* If we've recursively instantiated too many templates, stop. */
9825 if (! push_tinst_level (type))
9826 return type;
9827
9828 /* Now we're really doing the instantiation. Mark the type as in
9829 the process of being defined. */
9830 TYPE_BEING_DEFINED (type) = 1;
9831
9832 /* We may be in the middle of deferred access check. Disable
9833 it now. */
9834 push_deferring_access_checks (dk_no_deferred);
9835
9836 int saved_unevaluated_operand = cp_unevaluated_operand;
9837 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9838
9839 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9840 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9841 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9842 fn_context = error_mark_node;
9843 if (!fn_context)
9844 push_to_top_level ();
9845 else
9846 {
9847 cp_unevaluated_operand = 0;
9848 c_inhibit_evaluation_warnings = 0;
9849 }
9850 /* Use #pragma pack from the template context. */
9851 saved_maximum_field_alignment = maximum_field_alignment;
9852 maximum_field_alignment = TYPE_PRECISION (pattern);
9853
9854 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9855
9856 /* Set the input location to the most specialized template definition.
9857 This is needed if tsubsting causes an error. */
9858 typedecl = TYPE_MAIN_DECL (pattern);
9859 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9860 DECL_SOURCE_LOCATION (typedecl);
9861
9862 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9863 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9864 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9865 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9866 if (ANON_AGGR_TYPE_P (pattern))
9867 SET_ANON_AGGR_TYPE_P (type);
9868 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9869 {
9870 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9871 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9872 /* Adjust visibility for template arguments. */
9873 determine_visibility (TYPE_MAIN_DECL (type));
9874 }
9875 if (CLASS_TYPE_P (type))
9876 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9877
9878 pbinfo = TYPE_BINFO (pattern);
9879
9880 /* We should never instantiate a nested class before its enclosing
9881 class; we need to look up the nested class by name before we can
9882 instantiate it, and that lookup should instantiate the enclosing
9883 class. */
9884 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9885 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9886
9887 base_list = NULL_TREE;
9888 if (BINFO_N_BASE_BINFOS (pbinfo))
9889 {
9890 tree pbase_binfo;
9891 tree pushed_scope;
9892 int i;
9893
9894 /* We must enter the scope containing the type, as that is where
9895 the accessibility of types named in dependent bases are
9896 looked up from. */
9897 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9898
9899 /* Substitute into each of the bases to determine the actual
9900 basetypes. */
9901 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9902 {
9903 tree base;
9904 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9905 tree expanded_bases = NULL_TREE;
9906 int idx, len = 1;
9907
9908 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9909 {
9910 expanded_bases =
9911 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9912 args, tf_error, NULL_TREE);
9913 if (expanded_bases == error_mark_node)
9914 continue;
9915
9916 len = TREE_VEC_LENGTH (expanded_bases);
9917 }
9918
9919 for (idx = 0; idx < len; idx++)
9920 {
9921 if (expanded_bases)
9922 /* Extract the already-expanded base class. */
9923 base = TREE_VEC_ELT (expanded_bases, idx);
9924 else
9925 /* Substitute to figure out the base class. */
9926 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9927 NULL_TREE);
9928
9929 if (base == error_mark_node)
9930 continue;
9931
9932 base_list = tree_cons (access, base, base_list);
9933 if (BINFO_VIRTUAL_P (pbase_binfo))
9934 TREE_TYPE (base_list) = integer_type_node;
9935 }
9936 }
9937
9938 /* The list is now in reverse order; correct that. */
9939 base_list = nreverse (base_list);
9940
9941 if (pushed_scope)
9942 pop_scope (pushed_scope);
9943 }
9944 /* Now call xref_basetypes to set up all the base-class
9945 information. */
9946 xref_basetypes (type, base_list);
9947
9948 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9949 (int) ATTR_FLAG_TYPE_IN_PLACE,
9950 args, tf_error, NULL_TREE);
9951 fixup_attribute_variants (type);
9952
9953 /* Now that our base classes are set up, enter the scope of the
9954 class, so that name lookups into base classes, etc. will work
9955 correctly. This is precisely analogous to what we do in
9956 begin_class_definition when defining an ordinary non-template
9957 class, except we also need to push the enclosing classes. */
9958 push_nested_class (type);
9959
9960 /* Now members are processed in the order of declaration. */
9961 for (member = CLASSTYPE_DECL_LIST (pattern);
9962 member; member = TREE_CHAIN (member))
9963 {
9964 tree t = TREE_VALUE (member);
9965
9966 if (TREE_PURPOSE (member))
9967 {
9968 if (TYPE_P (t))
9969 {
9970 /* Build new CLASSTYPE_NESTED_UTDS. */
9971
9972 tree newtag;
9973 bool class_template_p;
9974
9975 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9976 && TYPE_LANG_SPECIFIC (t)
9977 && CLASSTYPE_IS_TEMPLATE (t));
9978 /* If the member is a class template, then -- even after
9979 substitution -- there may be dependent types in the
9980 template argument list for the class. We increment
9981 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9982 that function will assume that no types are dependent
9983 when outside of a template. */
9984 if (class_template_p)
9985 ++processing_template_decl;
9986 newtag = tsubst (t, args, tf_error, NULL_TREE);
9987 if (class_template_p)
9988 --processing_template_decl;
9989 if (newtag == error_mark_node)
9990 continue;
9991
9992 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9993 {
9994 tree name = TYPE_IDENTIFIER (t);
9995
9996 if (class_template_p)
9997 /* Unfortunately, lookup_template_class sets
9998 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9999 instantiation (i.e., for the type of a member
10000 template class nested within a template class.)
10001 This behavior is required for
10002 maybe_process_partial_specialization to work
10003 correctly, but is not accurate in this case;
10004 the TAG is not an instantiation of anything.
10005 (The corresponding TEMPLATE_DECL is an
10006 instantiation, but the TYPE is not.) */
10007 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
10008
10009 /* Now, we call pushtag to put this NEWTAG into the scope of
10010 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10011 pushtag calling push_template_decl. We don't have to do
10012 this for enums because it will already have been done in
10013 tsubst_enum. */
10014 if (name)
10015 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
10016 pushtag (name, newtag, /*tag_scope=*/ts_current);
10017 }
10018 }
10019 else if (DECL_DECLARES_FUNCTION_P (t))
10020 {
10021 /* Build new TYPE_METHODS. */
10022 tree r;
10023
10024 if (TREE_CODE (t) == TEMPLATE_DECL)
10025 ++processing_template_decl;
10026 r = tsubst (t, args, tf_error, NULL_TREE);
10027 if (TREE_CODE (t) == TEMPLATE_DECL)
10028 --processing_template_decl;
10029 set_current_access_from_decl (r);
10030 finish_member_declaration (r);
10031 /* Instantiate members marked with attribute used. */
10032 if (r != error_mark_node && DECL_PRESERVE_P (r))
10033 mark_used (r);
10034 if (TREE_CODE (r) == FUNCTION_DECL
10035 && DECL_OMP_DECLARE_REDUCTION_P (r))
10036 cp_check_omp_declare_reduction (r);
10037 }
10038 else if (DECL_CLASS_TEMPLATE_P (t)
10039 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10040 /* A closure type for a lambda in a default argument for a
10041 member template. Ignore it; it will be instantiated with
10042 the default argument. */;
10043 else
10044 {
10045 /* Build new TYPE_FIELDS. */
10046 if (TREE_CODE (t) == STATIC_ASSERT)
10047 {
10048 tree condition;
10049
10050 ++c_inhibit_evaluation_warnings;
10051 condition =
10052 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10053 tf_warning_or_error, NULL_TREE,
10054 /*integral_constant_expression_p=*/true);
10055 --c_inhibit_evaluation_warnings;
10056
10057 finish_static_assert (condition,
10058 STATIC_ASSERT_MESSAGE (t),
10059 STATIC_ASSERT_SOURCE_LOCATION (t),
10060 /*member_p=*/true);
10061 }
10062 else if (TREE_CODE (t) != CONST_DECL)
10063 {
10064 tree r;
10065 tree vec = NULL_TREE;
10066 int len = 1;
10067
10068 /* The file and line for this declaration, to
10069 assist in error message reporting. Since we
10070 called push_tinst_level above, we don't need to
10071 restore these. */
10072 input_location = DECL_SOURCE_LOCATION (t);
10073
10074 if (TREE_CODE (t) == TEMPLATE_DECL)
10075 ++processing_template_decl;
10076 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10077 if (TREE_CODE (t) == TEMPLATE_DECL)
10078 --processing_template_decl;
10079
10080 if (TREE_CODE (r) == TREE_VEC)
10081 {
10082 /* A capture pack became multiple fields. */
10083 vec = r;
10084 len = TREE_VEC_LENGTH (vec);
10085 }
10086
10087 for (int i = 0; i < len; ++i)
10088 {
10089 if (vec)
10090 r = TREE_VEC_ELT (vec, i);
10091 if (VAR_P (r))
10092 {
10093 /* In [temp.inst]:
10094
10095 [t]he initialization (and any associated
10096 side-effects) of a static data member does
10097 not occur unless the static data member is
10098 itself used in a way that requires the
10099 definition of the static data member to
10100 exist.
10101
10102 Therefore, we do not substitute into the
10103 initialized for the static data member here. */
10104 finish_static_data_member_decl
10105 (r,
10106 /*init=*/NULL_TREE,
10107 /*init_const_expr_p=*/false,
10108 /*asmspec_tree=*/NULL_TREE,
10109 /*flags=*/0);
10110 /* Instantiate members marked with attribute used. */
10111 if (r != error_mark_node && DECL_PRESERVE_P (r))
10112 mark_used (r);
10113 }
10114 else if (TREE_CODE (r) == FIELD_DECL)
10115 {
10116 /* Determine whether R has a valid type and can be
10117 completed later. If R is invalid, then its type
10118 is replaced by error_mark_node. */
10119 tree rtype = TREE_TYPE (r);
10120 if (can_complete_type_without_circularity (rtype))
10121 complete_type (rtype);
10122
10123 if (TREE_CODE (r) == FIELD_DECL
10124 && TREE_CODE (rtype) == ARRAY_TYPE
10125 && COMPLETE_TYPE_P (TREE_TYPE (rtype))
10126 && !COMPLETE_TYPE_P (rtype))
10127 {
10128 /* Flexible array mmembers of elements
10129 of complete type have an incomplete type
10130 and that's okay. */
10131 }
10132 else if (!COMPLETE_TYPE_P (rtype))
10133 {
10134 cxx_incomplete_type_error (r, rtype);
10135 TREE_TYPE (r) = error_mark_node;
10136 }
10137 }
10138
10139 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10140 such a thing will already have been added to the field
10141 list by tsubst_enum in finish_member_declaration in the
10142 CLASSTYPE_NESTED_UTDS case above. */
10143 if (!(TREE_CODE (r) == TYPE_DECL
10144 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10145 && DECL_ARTIFICIAL (r)))
10146 {
10147 set_current_access_from_decl (r);
10148 finish_member_declaration (r);
10149 }
10150 }
10151 }
10152 }
10153 }
10154 else
10155 {
10156 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10157 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10158 {
10159 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10160
10161 tree friend_type = t;
10162 bool adjust_processing_template_decl = false;
10163
10164 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10165 {
10166 /* template <class T> friend class C; */
10167 friend_type = tsubst_friend_class (friend_type, args);
10168 adjust_processing_template_decl = true;
10169 }
10170 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10171 {
10172 /* template <class T> friend class C::D; */
10173 friend_type = tsubst (friend_type, args,
10174 tf_warning_or_error, NULL_TREE);
10175 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10176 friend_type = TREE_TYPE (friend_type);
10177 adjust_processing_template_decl = true;
10178 }
10179 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10180 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10181 {
10182 /* This could be either
10183
10184 friend class T::C;
10185
10186 when dependent_type_p is false or
10187
10188 template <class U> friend class T::C;
10189
10190 otherwise. */
10191 /* Bump processing_template_decl in case this is something like
10192 template <class T> friend struct A<T>::B. */
10193 ++processing_template_decl;
10194 friend_type = tsubst (friend_type, args,
10195 tf_warning_or_error, NULL_TREE);
10196 if (dependent_type_p (friend_type))
10197 adjust_processing_template_decl = true;
10198 --processing_template_decl;
10199 }
10200 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10201 && hidden_name_p (TYPE_NAME (friend_type)))
10202 {
10203 /* friend class C;
10204
10205 where C hasn't been declared yet. Let's lookup name
10206 from namespace scope directly, bypassing any name that
10207 come from dependent base class. */
10208 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10209
10210 /* The call to xref_tag_from_type does injection for friend
10211 classes. */
10212 push_nested_namespace (ns);
10213 friend_type =
10214 xref_tag_from_type (friend_type, NULL_TREE,
10215 /*tag_scope=*/ts_current);
10216 pop_nested_namespace (ns);
10217 }
10218 else if (uses_template_parms (friend_type))
10219 /* friend class C<T>; */
10220 friend_type = tsubst (friend_type, args,
10221 tf_warning_or_error, NULL_TREE);
10222 /* Otherwise it's
10223
10224 friend class C;
10225
10226 where C is already declared or
10227
10228 friend class C<int>;
10229
10230 We don't have to do anything in these cases. */
10231
10232 if (adjust_processing_template_decl)
10233 /* Trick make_friend_class into realizing that the friend
10234 we're adding is a template, not an ordinary class. It's
10235 important that we use make_friend_class since it will
10236 perform some error-checking and output cross-reference
10237 information. */
10238 ++processing_template_decl;
10239
10240 if (friend_type != error_mark_node)
10241 make_friend_class (type, friend_type, /*complain=*/false);
10242
10243 if (adjust_processing_template_decl)
10244 --processing_template_decl;
10245 }
10246 else
10247 {
10248 /* Build new DECL_FRIENDLIST. */
10249 tree r;
10250
10251 /* The file and line for this declaration, to
10252 assist in error message reporting. Since we
10253 called push_tinst_level above, we don't need to
10254 restore these. */
10255 input_location = DECL_SOURCE_LOCATION (t);
10256
10257 if (TREE_CODE (t) == TEMPLATE_DECL)
10258 {
10259 ++processing_template_decl;
10260 push_deferring_access_checks (dk_no_check);
10261 }
10262
10263 r = tsubst_friend_function (t, args);
10264 add_friend (type, r, /*complain=*/false);
10265 if (TREE_CODE (t) == TEMPLATE_DECL)
10266 {
10267 pop_deferring_access_checks ();
10268 --processing_template_decl;
10269 }
10270 }
10271 }
10272 }
10273
10274 if (fn_context)
10275 {
10276 /* Restore these before substituting into the lambda capture
10277 initializers. */
10278 cp_unevaluated_operand = saved_unevaluated_operand;
10279 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10280 }
10281
10282 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10283 {
10284 tree decl = lambda_function (type);
10285 if (decl)
10286 {
10287 if (!DECL_TEMPLATE_INFO (decl)
10288 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10289 {
10290 /* Set function_depth to avoid garbage collection. */
10291 ++function_depth;
10292 instantiate_decl (decl, false, false);
10293 --function_depth;
10294 }
10295
10296 /* We need to instantiate the capture list from the template
10297 after we've instantiated the closure members, but before we
10298 consider adding the conversion op. Also keep any captures
10299 that may have been added during instantiation of the op(). */
10300 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10301 tree tmpl_cap
10302 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10303 args, tf_warning_or_error, NULL_TREE,
10304 false, false);
10305
10306 LAMBDA_EXPR_CAPTURE_LIST (expr)
10307 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10308
10309 maybe_add_lambda_conv_op (type);
10310 }
10311 else
10312 gcc_assert (errorcount);
10313 }
10314
10315 /* Set the file and line number information to whatever is given for
10316 the class itself. This puts error messages involving generated
10317 implicit functions at a predictable point, and the same point
10318 that would be used for non-template classes. */
10319 input_location = DECL_SOURCE_LOCATION (typedecl);
10320
10321 unreverse_member_declarations (type);
10322 finish_struct_1 (type);
10323 TYPE_BEING_DEFINED (type) = 0;
10324
10325 /* We don't instantiate default arguments for member functions. 14.7.1:
10326
10327 The implicit instantiation of a class template specialization causes
10328 the implicit instantiation of the declarations, but not of the
10329 definitions or default arguments, of the class member functions,
10330 member classes, static data members and member templates.... */
10331
10332 /* Some typedefs referenced from within the template code need to be access
10333 checked at template instantiation time, i.e now. These types were
10334 added to the template at parsing time. Let's get those and perform
10335 the access checks then. */
10336 perform_typedefs_access_check (pattern, args);
10337 perform_deferred_access_checks (tf_warning_or_error);
10338 pop_nested_class ();
10339 maximum_field_alignment = saved_maximum_field_alignment;
10340 if (!fn_context)
10341 pop_from_top_level ();
10342 pop_deferring_access_checks ();
10343 pop_tinst_level ();
10344
10345 /* The vtable for a template class can be emitted in any translation
10346 unit in which the class is instantiated. When there is no key
10347 method, however, finish_struct_1 will already have added TYPE to
10348 the keyed_classes list. */
10349 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10350 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10351
10352 return type;
10353 }
10354
10355 /* Wrapper for instantiate_class_template_1. */
10356
10357 tree
10358 instantiate_class_template (tree type)
10359 {
10360 tree ret;
10361 timevar_push (TV_TEMPLATE_INST);
10362 ret = instantiate_class_template_1 (type);
10363 timevar_pop (TV_TEMPLATE_INST);
10364 return ret;
10365 }
10366
10367 static tree
10368 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10369 {
10370 tree r;
10371
10372 if (!t)
10373 r = t;
10374 else if (TYPE_P (t))
10375 r = tsubst (t, args, complain, in_decl);
10376 else
10377 {
10378 if (!(complain & tf_warning))
10379 ++c_inhibit_evaluation_warnings;
10380 r = tsubst_expr (t, args, complain, in_decl,
10381 /*integral_constant_expression_p=*/true);
10382 if (!(complain & tf_warning))
10383 --c_inhibit_evaluation_warnings;
10384 }
10385 return r;
10386 }
10387
10388 /* Given a function parameter pack TMPL_PARM and some function parameters
10389 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10390 and set *SPEC_P to point at the next point in the list. */
10391
10392 tree
10393 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10394 {
10395 /* Collect all of the extra "packed" parameters into an
10396 argument pack. */
10397 tree parmvec;
10398 tree parmtypevec;
10399 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10400 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10401 tree spec_parm = *spec_p;
10402 int i, len;
10403
10404 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10405 if (tmpl_parm
10406 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10407 break;
10408
10409 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10410 parmvec = make_tree_vec (len);
10411 parmtypevec = make_tree_vec (len);
10412 spec_parm = *spec_p;
10413 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10414 {
10415 TREE_VEC_ELT (parmvec, i) = spec_parm;
10416 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10417 }
10418
10419 /* Build the argument packs. */
10420 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10421 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10422 TREE_TYPE (argpack) = argtypepack;
10423 *spec_p = spec_parm;
10424
10425 return argpack;
10426 }
10427
10428 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10429 NONTYPE_ARGUMENT_PACK. */
10430
10431 static tree
10432 make_fnparm_pack (tree spec_parm)
10433 {
10434 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10435 }
10436
10437 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10438 pack expansion with no extra args, 2 if it has extra args, or 0
10439 if it is not a pack expansion. */
10440
10441 static int
10442 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10443 {
10444 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10445 if (i >= TREE_VEC_LENGTH (vec))
10446 return 0;
10447 tree elt = TREE_VEC_ELT (vec, i);
10448 if (DECL_P (elt))
10449 /* A decl pack is itself an expansion. */
10450 elt = TREE_TYPE (elt);
10451 if (!PACK_EXPANSION_P (elt))
10452 return 0;
10453 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10454 return 2;
10455 return 1;
10456 }
10457
10458
10459 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10460
10461 static tree
10462 make_argument_pack_select (tree arg_pack, unsigned index)
10463 {
10464 tree aps = make_node (ARGUMENT_PACK_SELECT);
10465
10466 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10467 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10468
10469 return aps;
10470 }
10471
10472 /* This is a subroutine of tsubst_pack_expansion.
10473
10474 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10475 mechanism to store the (non complete list of) arguments of the
10476 substitution and return a non substituted pack expansion, in order
10477 to wait for when we have enough arguments to really perform the
10478 substitution. */
10479
10480 static bool
10481 use_pack_expansion_extra_args_p (tree parm_packs,
10482 int arg_pack_len,
10483 bool has_empty_arg)
10484 {
10485 /* If one pack has an expansion and another pack has a normal
10486 argument or if one pack has an empty argument and an another
10487 one hasn't then tsubst_pack_expansion cannot perform the
10488 substitution and need to fall back on the
10489 PACK_EXPANSION_EXTRA mechanism. */
10490 if (parm_packs == NULL_TREE)
10491 return false;
10492 else if (has_empty_arg)
10493 return true;
10494
10495 bool has_expansion_arg = false;
10496 for (int i = 0 ; i < arg_pack_len; ++i)
10497 {
10498 bool has_non_expansion_arg = false;
10499 for (tree parm_pack = parm_packs;
10500 parm_pack;
10501 parm_pack = TREE_CHAIN (parm_pack))
10502 {
10503 tree arg = TREE_VALUE (parm_pack);
10504
10505 int exp = argument_pack_element_is_expansion_p (arg, i);
10506 if (exp == 2)
10507 /* We can't substitute a pack expansion with extra args into
10508 our pattern. */
10509 return true;
10510 else if (exp)
10511 has_expansion_arg = true;
10512 else
10513 has_non_expansion_arg = true;
10514 }
10515
10516 if (has_expansion_arg && has_non_expansion_arg)
10517 return true;
10518 }
10519 return false;
10520 }
10521
10522 /* [temp.variadic]/6 says that:
10523
10524 The instantiation of a pack expansion [...]
10525 produces a list E1,E2, ..., En, where N is the number of elements
10526 in the pack expansion parameters.
10527
10528 This subroutine of tsubst_pack_expansion produces one of these Ei.
10529
10530 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10531 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10532 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10533 INDEX is the index 'i' of the element Ei to produce. ARGS,
10534 COMPLAIN, and IN_DECL are the same parameters as for the
10535 tsubst_pack_expansion function.
10536
10537 The function returns the resulting Ei upon successful completion,
10538 or error_mark_node.
10539
10540 Note that this function possibly modifies the ARGS parameter, so
10541 it's the responsibility of the caller to restore it. */
10542
10543 static tree
10544 gen_elem_of_pack_expansion_instantiation (tree pattern,
10545 tree parm_packs,
10546 unsigned index,
10547 tree args /* This parm gets
10548 modified. */,
10549 tsubst_flags_t complain,
10550 tree in_decl)
10551 {
10552 tree t;
10553 bool ith_elem_is_expansion = false;
10554
10555 /* For each parameter pack, change the substitution of the parameter
10556 pack to the ith argument in its argument pack, then expand the
10557 pattern. */
10558 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10559 {
10560 tree parm = TREE_PURPOSE (pack);
10561 tree arg_pack = TREE_VALUE (pack);
10562 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10563
10564 ith_elem_is_expansion |=
10565 argument_pack_element_is_expansion_p (arg_pack, index);
10566
10567 /* Select the Ith argument from the pack. */
10568 if (TREE_CODE (parm) == PARM_DECL
10569 || TREE_CODE (parm) == FIELD_DECL)
10570 {
10571 if (index == 0)
10572 {
10573 aps = make_argument_pack_select (arg_pack, index);
10574 if (!mark_used (parm, complain) && !(complain & tf_error))
10575 return error_mark_node;
10576 register_local_specialization (aps, parm);
10577 }
10578 else
10579 aps = retrieve_local_specialization (parm);
10580 }
10581 else
10582 {
10583 int idx, level;
10584 template_parm_level_and_index (parm, &level, &idx);
10585
10586 if (index == 0)
10587 {
10588 aps = make_argument_pack_select (arg_pack, index);
10589 /* Update the corresponding argument. */
10590 TMPL_ARG (args, level, idx) = aps;
10591 }
10592 else
10593 /* Re-use the ARGUMENT_PACK_SELECT. */
10594 aps = TMPL_ARG (args, level, idx);
10595 }
10596 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10597 }
10598
10599 /* Substitute into the PATTERN with the (possibly altered)
10600 arguments. */
10601 if (pattern == in_decl)
10602 /* Expanding a fixed parameter pack from
10603 coerce_template_parameter_pack. */
10604 t = tsubst_decl (pattern, args, complain);
10605 else if (pattern == error_mark_node)
10606 t = error_mark_node;
10607 else if (constraint_p (pattern))
10608 {
10609 if (processing_template_decl)
10610 t = tsubst_constraint (pattern, args, complain, in_decl);
10611 else
10612 t = (constraints_satisfied_p (pattern, args)
10613 ? boolean_true_node : boolean_false_node);
10614 }
10615 else if (!TYPE_P (pattern))
10616 t = tsubst_expr (pattern, args, complain, in_decl,
10617 /*integral_constant_expression_p=*/false);
10618 else
10619 t = tsubst (pattern, args, complain, in_decl);
10620
10621 /* If the Ith argument pack element is a pack expansion, then
10622 the Ith element resulting from the substituting is going to
10623 be a pack expansion as well. */
10624 if (ith_elem_is_expansion)
10625 t = make_pack_expansion (t);
10626
10627 return t;
10628 }
10629
10630 /* When the unexpanded parameter pack in a fold expression expands to an empty
10631 sequence, the value of the expression is as follows; the program is
10632 ill-formed if the operator is not listed in this table.
10633
10634 && true
10635 || false
10636 , void() */
10637
10638 tree
10639 expand_empty_fold (tree t, tsubst_flags_t complain)
10640 {
10641 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10642 if (!FOLD_EXPR_MODIFY_P (t))
10643 switch (code)
10644 {
10645 case TRUTH_ANDIF_EXPR:
10646 return boolean_true_node;
10647 case TRUTH_ORIF_EXPR:
10648 return boolean_false_node;
10649 case COMPOUND_EXPR:
10650 return void_node;
10651 default:
10652 break;
10653 }
10654
10655 if (complain & tf_error)
10656 error_at (location_of (t),
10657 "fold of empty expansion over %O", code);
10658 return error_mark_node;
10659 }
10660
10661 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10662 form an expression that combines the two terms using the
10663 operator of T. */
10664
10665 static tree
10666 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10667 {
10668 tree op = FOLD_EXPR_OP (t);
10669 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10670
10671 // Handle compound assignment operators.
10672 if (FOLD_EXPR_MODIFY_P (t))
10673 return build_x_modify_expr (input_location, left, code, right, complain);
10674
10675 switch (code)
10676 {
10677 case COMPOUND_EXPR:
10678 return build_x_compound_expr (input_location, left, right, complain);
10679 case DOTSTAR_EXPR:
10680 return build_m_component_ref (left, right, complain);
10681 default:
10682 return build_x_binary_op (input_location, code,
10683 left, TREE_CODE (left),
10684 right, TREE_CODE (right),
10685 /*overload=*/NULL,
10686 complain);
10687 }
10688 }
10689
10690 /* Substitute ARGS into the pack of a fold expression T. */
10691
10692 static inline tree
10693 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10694 {
10695 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10696 }
10697
10698 /* Substitute ARGS into the pack of a fold expression T. */
10699
10700 static inline tree
10701 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10702 {
10703 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10704 }
10705
10706 /* Expand a PACK of arguments into a grouped as left fold.
10707 Given a pack containing elements A0, A1, ..., An and an
10708 operator @, this builds the expression:
10709
10710 ((A0 @ A1) @ A2) ... @ An
10711
10712 Note that PACK must not be empty.
10713
10714 The operator is defined by the original fold expression T. */
10715
10716 static tree
10717 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10718 {
10719 tree left = TREE_VEC_ELT (pack, 0);
10720 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10721 {
10722 tree right = TREE_VEC_ELT (pack, i);
10723 left = fold_expression (t, left, right, complain);
10724 }
10725 return left;
10726 }
10727
10728 /* Substitute into a unary left fold expression. */
10729
10730 static tree
10731 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10732 tree in_decl)
10733 {
10734 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10735 if (pack == error_mark_node)
10736 return error_mark_node;
10737 if (TREE_VEC_LENGTH (pack) == 0)
10738 return expand_empty_fold (t, complain);
10739 else
10740 return expand_left_fold (t, pack, complain);
10741 }
10742
10743 /* Substitute into a binary left fold expression.
10744
10745 Do ths by building a single (non-empty) vector of argumnts and
10746 building the expression from those elements. */
10747
10748 static tree
10749 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10750 tree in_decl)
10751 {
10752 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10753 if (pack == error_mark_node)
10754 return error_mark_node;
10755 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10756 if (init == error_mark_node)
10757 return error_mark_node;
10758
10759 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10760 TREE_VEC_ELT (vec, 0) = init;
10761 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10762 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10763
10764 return expand_left_fold (t, vec, complain);
10765 }
10766
10767 /* Expand a PACK of arguments into a grouped as right fold.
10768 Given a pack containing elementns A0, A1, ..., and an
10769 operator @, this builds the expression:
10770
10771 A0@ ... (An-2 @ (An-1 @ An))
10772
10773 Note that PACK must not be empty.
10774
10775 The operator is defined by the original fold expression T. */
10776
10777 tree
10778 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10779 {
10780 // Build the expression.
10781 int n = TREE_VEC_LENGTH (pack);
10782 tree right = TREE_VEC_ELT (pack, n - 1);
10783 for (--n; n != 0; --n)
10784 {
10785 tree left = TREE_VEC_ELT (pack, n - 1);
10786 right = fold_expression (t, left, right, complain);
10787 }
10788 return right;
10789 }
10790
10791 /* Substitute into a unary right fold expression. */
10792
10793 static tree
10794 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10795 tree in_decl)
10796 {
10797 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10798 if (pack == error_mark_node)
10799 return error_mark_node;
10800 if (TREE_VEC_LENGTH (pack) == 0)
10801 return expand_empty_fold (t, complain);
10802 else
10803 return expand_right_fold (t, pack, complain);
10804 }
10805
10806 /* Substitute into a binary right fold expression.
10807
10808 Do ths by building a single (non-empty) vector of arguments and
10809 building the expression from those elements. */
10810
10811 static tree
10812 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10813 tree in_decl)
10814 {
10815 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10816 if (pack == error_mark_node)
10817 return error_mark_node;
10818 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10819 if (init == error_mark_node)
10820 return error_mark_node;
10821
10822 int n = TREE_VEC_LENGTH (pack);
10823 tree vec = make_tree_vec (n + 1);
10824 for (int i = 0; i < n; ++i)
10825 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10826 TREE_VEC_ELT (vec, n) = init;
10827
10828 return expand_right_fold (t, vec, complain);
10829 }
10830
10831
10832 /* Substitute ARGS into T, which is an pack expansion
10833 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10834 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10835 (if only a partial substitution could be performed) or
10836 ERROR_MARK_NODE if there was an error. */
10837 tree
10838 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10839 tree in_decl)
10840 {
10841 tree pattern;
10842 tree pack, packs = NULL_TREE;
10843 bool unsubstituted_packs = false;
10844 int i, len = -1;
10845 tree result;
10846 hash_map<tree, tree> *saved_local_specializations = NULL;
10847 bool need_local_specializations = false;
10848 int levels;
10849
10850 gcc_assert (PACK_EXPANSION_P (t));
10851 pattern = PACK_EXPANSION_PATTERN (t);
10852
10853 /* Add in any args remembered from an earlier partial instantiation. */
10854 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10855
10856 levels = TMPL_ARGS_DEPTH (args);
10857
10858 /* Determine the argument packs that will instantiate the parameter
10859 packs used in the expansion expression. While we're at it,
10860 compute the number of arguments to be expanded and make sure it
10861 is consistent. */
10862 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10863 pack = TREE_CHAIN (pack))
10864 {
10865 tree parm_pack = TREE_VALUE (pack);
10866 tree arg_pack = NULL_TREE;
10867 tree orig_arg = NULL_TREE;
10868 int level = 0;
10869
10870 if (TREE_CODE (parm_pack) == BASES)
10871 {
10872 if (BASES_DIRECT (parm_pack))
10873 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10874 args, complain, in_decl, false));
10875 else
10876 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10877 args, complain, in_decl, false));
10878 }
10879 if (TREE_CODE (parm_pack) == PARM_DECL)
10880 {
10881 /* We know we have correct local_specializations if this
10882 expansion is at function scope, or if we're dealing with a
10883 local parameter in a requires expression; for the latter,
10884 tsubst_requires_expr set it up appropriately. */
10885 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10886 arg_pack = retrieve_local_specialization (parm_pack);
10887 else
10888 /* We can't rely on local_specializations for a parameter
10889 name used later in a function declaration (such as in a
10890 late-specified return type). Even if it exists, it might
10891 have the wrong value for a recursive call. */
10892 need_local_specializations = true;
10893
10894 if (!arg_pack)
10895 {
10896 /* This parameter pack was used in an unevaluated context. Just
10897 make a dummy decl, since it's only used for its type. */
10898 arg_pack = tsubst_decl (parm_pack, args, complain);
10899 if (arg_pack && DECL_PACK_P (arg_pack))
10900 /* Partial instantiation of the parm_pack, we can't build
10901 up an argument pack yet. */
10902 arg_pack = NULL_TREE;
10903 else
10904 arg_pack = make_fnparm_pack (arg_pack);
10905 }
10906 }
10907 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10908 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10909 else
10910 {
10911 int idx;
10912 template_parm_level_and_index (parm_pack, &level, &idx);
10913
10914 if (level <= levels)
10915 arg_pack = TMPL_ARG (args, level, idx);
10916 }
10917
10918 orig_arg = arg_pack;
10919 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10920 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10921
10922 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10923 /* This can only happen if we forget to expand an argument
10924 pack somewhere else. Just return an error, silently. */
10925 {
10926 result = make_tree_vec (1);
10927 TREE_VEC_ELT (result, 0) = error_mark_node;
10928 return result;
10929 }
10930
10931 if (arg_pack)
10932 {
10933 int my_len =
10934 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10935
10936 /* Don't bother trying to do a partial substitution with
10937 incomplete packs; we'll try again after deduction. */
10938 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10939 return t;
10940
10941 if (len < 0)
10942 len = my_len;
10943 else if (len != my_len)
10944 {
10945 if (!(complain & tf_error))
10946 /* Fail quietly. */;
10947 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10948 error ("mismatched argument pack lengths while expanding "
10949 "%<%T%>",
10950 pattern);
10951 else
10952 error ("mismatched argument pack lengths while expanding "
10953 "%<%E%>",
10954 pattern);
10955 return error_mark_node;
10956 }
10957
10958 /* Keep track of the parameter packs and their corresponding
10959 argument packs. */
10960 packs = tree_cons (parm_pack, arg_pack, packs);
10961 TREE_TYPE (packs) = orig_arg;
10962 }
10963 else
10964 {
10965 /* We can't substitute for this parameter pack. We use a flag as
10966 well as the missing_level counter because function parameter
10967 packs don't have a level. */
10968 unsubstituted_packs = true;
10969 }
10970 }
10971
10972 /* If the expansion is just T..., return the matching argument pack, unless
10973 we need to call convert_from_reference on all the elements. This is an
10974 important optimization; see c++/68422. */
10975 if (!unsubstituted_packs
10976 && TREE_PURPOSE (packs) == pattern)
10977 {
10978 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10979 /* Types need no adjustment, nor does sizeof..., and if we still have
10980 some pack expansion args we won't do anything yet. */
10981 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10982 || PACK_EXPANSION_SIZEOF_P (t)
10983 || pack_expansion_args_count (args))
10984 return args;
10985 /* Also optimize expression pack expansions if we can tell that the
10986 elements won't have reference type. */
10987 tree type = TREE_TYPE (pattern);
10988 if (type && TREE_CODE (type) != REFERENCE_TYPE
10989 && !PACK_EXPANSION_P (type)
10990 && !WILDCARD_TYPE_P (type))
10991 return args;
10992 /* Otherwise use the normal path so we get convert_from_reference. */
10993 }
10994
10995 /* We cannot expand this expansion expression, because we don't have
10996 all of the argument packs we need. */
10997 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10998 {
10999 /* We got some full packs, but we can't substitute them in until we
11000 have values for all the packs. So remember these until then. */
11001
11002 t = make_pack_expansion (pattern);
11003 PACK_EXPANSION_EXTRA_ARGS (t) = args;
11004 return t;
11005 }
11006 else if (unsubstituted_packs)
11007 {
11008 /* There were no real arguments, we're just replacing a parameter
11009 pack with another version of itself. Substitute into the
11010 pattern and return a PACK_EXPANSION_*. The caller will need to
11011 deal with that. */
11012 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
11013 t = tsubst_expr (pattern, args, complain, in_decl,
11014 /*integral_constant_expression_p=*/false);
11015 else
11016 t = tsubst (pattern, args, complain, in_decl);
11017 t = make_pack_expansion (t);
11018 return t;
11019 }
11020
11021 gcc_assert (len >= 0);
11022
11023 if (need_local_specializations)
11024 {
11025 /* We're in a late-specified return type, so create our own local
11026 specializations map; the current map is either NULL or (in the
11027 case of recursive unification) might have bindings that we don't
11028 want to use or alter. */
11029 saved_local_specializations = local_specializations;
11030 local_specializations = new hash_map<tree, tree>;
11031 }
11032
11033 /* For each argument in each argument pack, substitute into the
11034 pattern. */
11035 result = make_tree_vec (len);
11036 tree elem_args = copy_template_args (args);
11037 for (i = 0; i < len; ++i)
11038 {
11039 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11040 i,
11041 elem_args, complain,
11042 in_decl);
11043 TREE_VEC_ELT (result, i) = t;
11044 if (t == error_mark_node)
11045 {
11046 result = error_mark_node;
11047 break;
11048 }
11049 }
11050
11051 /* Update ARGS to restore the substitution from parameter packs to
11052 their argument packs. */
11053 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11054 {
11055 tree parm = TREE_PURPOSE (pack);
11056
11057 if (TREE_CODE (parm) == PARM_DECL
11058 || TREE_CODE (parm) == FIELD_DECL)
11059 register_local_specialization (TREE_TYPE (pack), parm);
11060 else
11061 {
11062 int idx, level;
11063
11064 if (TREE_VALUE (pack) == NULL_TREE)
11065 continue;
11066
11067 template_parm_level_and_index (parm, &level, &idx);
11068
11069 /* Update the corresponding argument. */
11070 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11071 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11072 TREE_TYPE (pack);
11073 else
11074 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11075 }
11076 }
11077
11078 if (need_local_specializations)
11079 {
11080 delete local_specializations;
11081 local_specializations = saved_local_specializations;
11082 }
11083
11084 return result;
11085 }
11086
11087 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11088 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11089 parameter packs; all parms generated from a function parameter pack will
11090 have the same DECL_PARM_INDEX. */
11091
11092 tree
11093 get_pattern_parm (tree parm, tree tmpl)
11094 {
11095 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11096 tree patparm;
11097
11098 if (DECL_ARTIFICIAL (parm))
11099 {
11100 for (patparm = DECL_ARGUMENTS (pattern);
11101 patparm; patparm = DECL_CHAIN (patparm))
11102 if (DECL_ARTIFICIAL (patparm)
11103 && DECL_NAME (parm) == DECL_NAME (patparm))
11104 break;
11105 }
11106 else
11107 {
11108 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11109 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11110 gcc_assert (DECL_PARM_INDEX (patparm)
11111 == DECL_PARM_INDEX (parm));
11112 }
11113
11114 return patparm;
11115 }
11116
11117 /* Make an argument pack out of the TREE_VEC VEC. */
11118
11119 static tree
11120 make_argument_pack (tree vec)
11121 {
11122 tree pack;
11123 tree elt = TREE_VEC_ELT (vec, 0);
11124 if (TYPE_P (elt))
11125 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
11126 else
11127 {
11128 pack = make_node (NONTYPE_ARGUMENT_PACK);
11129 TREE_TYPE (pack) = TREE_TYPE (elt);
11130 TREE_CONSTANT (pack) = 1;
11131 }
11132 SET_ARGUMENT_PACK_ARGS (pack, vec);
11133 return pack;
11134 }
11135
11136 /* Return an exact copy of template args T that can be modified
11137 independently. */
11138
11139 static tree
11140 copy_template_args (tree t)
11141 {
11142 if (t == error_mark_node)
11143 return t;
11144
11145 int len = TREE_VEC_LENGTH (t);
11146 tree new_vec = make_tree_vec (len);
11147
11148 for (int i = 0; i < len; ++i)
11149 {
11150 tree elt = TREE_VEC_ELT (t, i);
11151 if (elt && TREE_CODE (elt) == TREE_VEC)
11152 elt = copy_template_args (elt);
11153 TREE_VEC_ELT (new_vec, i) = elt;
11154 }
11155
11156 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
11157 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
11158
11159 return new_vec;
11160 }
11161
11162 /* Substitute ARGS into the vector or list of template arguments T. */
11163
11164 static tree
11165 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11166 {
11167 tree orig_t = t;
11168 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11169 tree *elts;
11170
11171 if (t == error_mark_node)
11172 return error_mark_node;
11173
11174 len = TREE_VEC_LENGTH (t);
11175 elts = XALLOCAVEC (tree, len);
11176
11177 for (i = 0; i < len; i++)
11178 {
11179 tree orig_arg = TREE_VEC_ELT (t, i);
11180 tree new_arg;
11181
11182 if (TREE_CODE (orig_arg) == TREE_VEC)
11183 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11184 else if (PACK_EXPANSION_P (orig_arg))
11185 {
11186 /* Substitute into an expansion expression. */
11187 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11188
11189 if (TREE_CODE (new_arg) == TREE_VEC)
11190 /* Add to the expanded length adjustment the number of
11191 expanded arguments. We subtract one from this
11192 measurement, because the argument pack expression
11193 itself is already counted as 1 in
11194 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11195 the argument pack is empty. */
11196 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11197 }
11198 else if (ARGUMENT_PACK_P (orig_arg))
11199 {
11200 /* Substitute into each of the arguments. */
11201 new_arg = TYPE_P (orig_arg)
11202 ? cxx_make_type (TREE_CODE (orig_arg))
11203 : make_node (TREE_CODE (orig_arg));
11204
11205 SET_ARGUMENT_PACK_ARGS (
11206 new_arg,
11207 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11208 args, complain, in_decl));
11209
11210 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11211 new_arg = error_mark_node;
11212
11213 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11214 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11215 complain, in_decl);
11216 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11217
11218 if (TREE_TYPE (new_arg) == error_mark_node)
11219 new_arg = error_mark_node;
11220 }
11221 }
11222 else
11223 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11224
11225 if (new_arg == error_mark_node)
11226 return error_mark_node;
11227
11228 elts[i] = new_arg;
11229 if (new_arg != orig_arg)
11230 need_new = 1;
11231 }
11232
11233 if (!need_new)
11234 return t;
11235
11236 /* Make space for the expanded arguments coming from template
11237 argument packs. */
11238 t = make_tree_vec (len + expanded_len_adjust);
11239 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11240 arguments for a member template.
11241 In that case each TREE_VEC in ORIG_T represents a level of template
11242 arguments, and ORIG_T won't carry any non defaulted argument count.
11243 It will rather be the nested TREE_VECs that will carry one.
11244 In other words, ORIG_T carries a non defaulted argument count only
11245 if it doesn't contain any nested TREE_VEC. */
11246 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11247 {
11248 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11249 count += expanded_len_adjust;
11250 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11251 }
11252 for (i = 0, out = 0; i < len; i++)
11253 {
11254 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11255 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11256 && TREE_CODE (elts[i]) == TREE_VEC)
11257 {
11258 int idx;
11259
11260 /* Now expand the template argument pack "in place". */
11261 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11262 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11263 }
11264 else
11265 {
11266 TREE_VEC_ELT (t, out) = elts[i];
11267 out++;
11268 }
11269 }
11270
11271 return t;
11272 }
11273
11274 /* Return the result of substituting ARGS into the template parameters
11275 given by PARMS. If there are m levels of ARGS and m + n levels of
11276 PARMS, then the result will contain n levels of PARMS. For
11277 example, if PARMS is `template <class T> template <class U>
11278 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11279 result will be `template <int*, double, class V>'. */
11280
11281 static tree
11282 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11283 {
11284 tree r = NULL_TREE;
11285 tree* new_parms;
11286
11287 /* When substituting into a template, we must set
11288 PROCESSING_TEMPLATE_DECL as the template parameters may be
11289 dependent if they are based on one-another, and the dependency
11290 predicates are short-circuit outside of templates. */
11291 ++processing_template_decl;
11292
11293 for (new_parms = &r;
11294 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11295 new_parms = &(TREE_CHAIN (*new_parms)),
11296 parms = TREE_CHAIN (parms))
11297 {
11298 tree new_vec =
11299 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11300 int i;
11301
11302 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11303 {
11304 tree tuple;
11305
11306 if (parms == error_mark_node)
11307 continue;
11308
11309 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11310
11311 if (tuple == error_mark_node)
11312 continue;
11313
11314 TREE_VEC_ELT (new_vec, i) =
11315 tsubst_template_parm (tuple, args, complain);
11316 }
11317
11318 *new_parms =
11319 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11320 - TMPL_ARGS_DEPTH (args)),
11321 new_vec, NULL_TREE);
11322 }
11323
11324 --processing_template_decl;
11325
11326 return r;
11327 }
11328
11329 /* Return the result of substituting ARGS into one template parameter
11330 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11331 parameter and which TREE_PURPOSE is the default argument of the
11332 template parameter. */
11333
11334 static tree
11335 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11336 {
11337 tree default_value, parm_decl;
11338
11339 if (args == NULL_TREE
11340 || t == NULL_TREE
11341 || t == error_mark_node)
11342 return t;
11343
11344 gcc_assert (TREE_CODE (t) == TREE_LIST);
11345
11346 default_value = TREE_PURPOSE (t);
11347 parm_decl = TREE_VALUE (t);
11348
11349 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11350 if (TREE_CODE (parm_decl) == PARM_DECL
11351 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11352 parm_decl = error_mark_node;
11353 default_value = tsubst_template_arg (default_value, args,
11354 complain, NULL_TREE);
11355
11356 return build_tree_list (default_value, parm_decl);
11357 }
11358
11359 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11360 type T. If T is not an aggregate or enumeration type, it is
11361 handled as if by tsubst. IN_DECL is as for tsubst. If
11362 ENTERING_SCOPE is nonzero, T is the context for a template which
11363 we are presently tsubst'ing. Return the substituted value. */
11364
11365 static tree
11366 tsubst_aggr_type (tree t,
11367 tree args,
11368 tsubst_flags_t complain,
11369 tree in_decl,
11370 int entering_scope)
11371 {
11372 if (t == NULL_TREE)
11373 return NULL_TREE;
11374
11375 switch (TREE_CODE (t))
11376 {
11377 case RECORD_TYPE:
11378 if (TYPE_PTRMEMFUNC_P (t))
11379 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11380
11381 /* Else fall through. */
11382 case ENUMERAL_TYPE:
11383 case UNION_TYPE:
11384 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11385 {
11386 tree argvec;
11387 tree context;
11388 tree r;
11389 int saved_unevaluated_operand;
11390 int saved_inhibit_evaluation_warnings;
11391
11392 /* In "sizeof(X<I>)" we need to evaluate "I". */
11393 saved_unevaluated_operand = cp_unevaluated_operand;
11394 cp_unevaluated_operand = 0;
11395 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11396 c_inhibit_evaluation_warnings = 0;
11397
11398 /* First, determine the context for the type we are looking
11399 up. */
11400 context = TYPE_CONTEXT (t);
11401 if (context && TYPE_P (context))
11402 {
11403 context = tsubst_aggr_type (context, args, complain,
11404 in_decl, /*entering_scope=*/1);
11405 /* If context is a nested class inside a class template,
11406 it may still need to be instantiated (c++/33959). */
11407 context = complete_type (context);
11408 }
11409
11410 /* Then, figure out what arguments are appropriate for the
11411 type we are trying to find. For example, given:
11412
11413 template <class T> struct S;
11414 template <class T, class U> void f(T, U) { S<U> su; }
11415
11416 and supposing that we are instantiating f<int, double>,
11417 then our ARGS will be {int, double}, but, when looking up
11418 S we only want {double}. */
11419 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11420 complain, in_decl);
11421 if (argvec == error_mark_node)
11422 r = error_mark_node;
11423 else
11424 {
11425 r = lookup_template_class (t, argvec, in_decl, context,
11426 entering_scope, complain);
11427 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11428 }
11429
11430 cp_unevaluated_operand = saved_unevaluated_operand;
11431 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11432
11433 return r;
11434 }
11435 else
11436 /* This is not a template type, so there's nothing to do. */
11437 return t;
11438
11439 default:
11440 return tsubst (t, args, complain, in_decl);
11441 }
11442 }
11443
11444 /* Substitute into the default argument ARG (a default argument for
11445 FN), which has the indicated TYPE. */
11446
11447 tree
11448 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11449 {
11450 tree saved_class_ptr = NULL_TREE;
11451 tree saved_class_ref = NULL_TREE;
11452 int errs = errorcount + sorrycount;
11453
11454 /* This can happen in invalid code. */
11455 if (TREE_CODE (arg) == DEFAULT_ARG)
11456 return arg;
11457
11458 /* This default argument came from a template. Instantiate the
11459 default argument here, not in tsubst. In the case of
11460 something like:
11461
11462 template <class T>
11463 struct S {
11464 static T t();
11465 void f(T = t());
11466 };
11467
11468 we must be careful to do name lookup in the scope of S<T>,
11469 rather than in the current class. */
11470 push_access_scope (fn);
11471 /* The "this" pointer is not valid in a default argument. */
11472 if (cfun)
11473 {
11474 saved_class_ptr = current_class_ptr;
11475 cp_function_chain->x_current_class_ptr = NULL_TREE;
11476 saved_class_ref = current_class_ref;
11477 cp_function_chain->x_current_class_ref = NULL_TREE;
11478 }
11479
11480 push_deferring_access_checks(dk_no_deferred);
11481 /* The default argument expression may cause implicitly defined
11482 member functions to be synthesized, which will result in garbage
11483 collection. We must treat this situation as if we were within
11484 the body of function so as to avoid collecting live data on the
11485 stack. */
11486 ++function_depth;
11487 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11488 complain, NULL_TREE,
11489 /*integral_constant_expression_p=*/false);
11490 --function_depth;
11491 pop_deferring_access_checks();
11492
11493 /* Restore the "this" pointer. */
11494 if (cfun)
11495 {
11496 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11497 cp_function_chain->x_current_class_ref = saved_class_ref;
11498 }
11499
11500 if (errorcount+sorrycount > errs
11501 && (complain & tf_warning_or_error))
11502 inform (input_location,
11503 " when instantiating default argument for call to %D", fn);
11504
11505 /* Make sure the default argument is reasonable. */
11506 arg = check_default_argument (type, arg, complain);
11507
11508 pop_access_scope (fn);
11509
11510 return arg;
11511 }
11512
11513 /* Substitute into all the default arguments for FN. */
11514
11515 static void
11516 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11517 {
11518 tree arg;
11519 tree tmpl_args;
11520
11521 tmpl_args = DECL_TI_ARGS (fn);
11522
11523 /* If this function is not yet instantiated, we certainly don't need
11524 its default arguments. */
11525 if (uses_template_parms (tmpl_args))
11526 return;
11527 /* Don't do this again for clones. */
11528 if (DECL_CLONED_FUNCTION_P (fn))
11529 return;
11530
11531 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11532 arg;
11533 arg = TREE_CHAIN (arg))
11534 if (TREE_PURPOSE (arg))
11535 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11536 TREE_VALUE (arg),
11537 TREE_PURPOSE (arg),
11538 complain);
11539 }
11540
11541 /* Substitute the ARGS into the T, which is a _DECL. Return the
11542 result of the substitution. Issue error and warning messages under
11543 control of COMPLAIN. */
11544
11545 static tree
11546 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11547 {
11548 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11549 location_t saved_loc;
11550 tree r = NULL_TREE;
11551 tree in_decl = t;
11552 hashval_t hash = 0;
11553
11554 /* Set the filename and linenumber to improve error-reporting. */
11555 saved_loc = input_location;
11556 input_location = DECL_SOURCE_LOCATION (t);
11557
11558 switch (TREE_CODE (t))
11559 {
11560 case TEMPLATE_DECL:
11561 {
11562 /* We can get here when processing a member function template,
11563 member class template, or template template parameter. */
11564 tree decl = DECL_TEMPLATE_RESULT (t);
11565 tree spec;
11566 tree tmpl_args;
11567 tree full_args;
11568
11569 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11570 {
11571 /* Template template parameter is treated here. */
11572 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11573 if (new_type == error_mark_node)
11574 r = error_mark_node;
11575 /* If we get a real template back, return it. This can happen in
11576 the context of most_specialized_partial_spec. */
11577 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11578 r = new_type;
11579 else
11580 /* The new TEMPLATE_DECL was built in
11581 reduce_template_parm_level. */
11582 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11583 break;
11584 }
11585
11586 /* We might already have an instance of this template.
11587 The ARGS are for the surrounding class type, so the
11588 full args contain the tsubst'd args for the context,
11589 plus the innermost args from the template decl. */
11590 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11591 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11592 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11593 /* Because this is a template, the arguments will still be
11594 dependent, even after substitution. If
11595 PROCESSING_TEMPLATE_DECL is not set, the dependency
11596 predicates will short-circuit. */
11597 ++processing_template_decl;
11598 full_args = tsubst_template_args (tmpl_args, args,
11599 complain, in_decl);
11600 --processing_template_decl;
11601 if (full_args == error_mark_node)
11602 RETURN (error_mark_node);
11603
11604 /* If this is a default template template argument,
11605 tsubst might not have changed anything. */
11606 if (full_args == tmpl_args)
11607 RETURN (t);
11608
11609 hash = hash_tmpl_and_args (t, full_args);
11610 spec = retrieve_specialization (t, full_args, hash);
11611 if (spec != NULL_TREE)
11612 {
11613 r = spec;
11614 break;
11615 }
11616
11617 /* Make a new template decl. It will be similar to the
11618 original, but will record the current template arguments.
11619 We also create a new function declaration, which is just
11620 like the old one, but points to this new template, rather
11621 than the old one. */
11622 r = copy_decl (t);
11623 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11624 DECL_CHAIN (r) = NULL_TREE;
11625
11626 // Build new template info linking to the original template decl.
11627 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11628
11629 if (TREE_CODE (decl) == TYPE_DECL
11630 && !TYPE_DECL_ALIAS_P (decl))
11631 {
11632 tree new_type;
11633 ++processing_template_decl;
11634 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11635 --processing_template_decl;
11636 if (new_type == error_mark_node)
11637 RETURN (error_mark_node);
11638
11639 TREE_TYPE (r) = new_type;
11640 /* For a partial specialization, we need to keep pointing to
11641 the primary template. */
11642 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11643 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11644 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11645 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11646 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11647 }
11648 else
11649 {
11650 tree new_decl;
11651 ++processing_template_decl;
11652 new_decl = tsubst (decl, args, complain, in_decl);
11653 --processing_template_decl;
11654 if (new_decl == error_mark_node)
11655 RETURN (error_mark_node);
11656
11657 DECL_TEMPLATE_RESULT (r) = new_decl;
11658 DECL_TI_TEMPLATE (new_decl) = r;
11659 TREE_TYPE (r) = TREE_TYPE (new_decl);
11660 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11661 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11662 }
11663
11664 SET_DECL_IMPLICIT_INSTANTIATION (r);
11665 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11666 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11667
11668 /* The template parameters for this new template are all the
11669 template parameters for the old template, except the
11670 outermost level of parameters. */
11671 DECL_TEMPLATE_PARMS (r)
11672 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11673 complain);
11674
11675 if (PRIMARY_TEMPLATE_P (t))
11676 DECL_PRIMARY_TEMPLATE (r) = r;
11677
11678 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11679 /* Record this non-type partial instantiation. */
11680 register_specialization (r, t,
11681 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11682 false, hash);
11683 }
11684 break;
11685
11686 case FUNCTION_DECL:
11687 {
11688 tree ctx;
11689 tree argvec = NULL_TREE;
11690 tree *friends;
11691 tree gen_tmpl;
11692 tree type;
11693 int member;
11694 int args_depth;
11695 int parms_depth;
11696
11697 /* Nobody should be tsubst'ing into non-template functions. */
11698 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11699
11700 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11701 {
11702 tree spec;
11703 bool dependent_p;
11704
11705 /* If T is not dependent, just return it. We have to
11706 increment PROCESSING_TEMPLATE_DECL because
11707 value_dependent_expression_p assumes that nothing is
11708 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11709 ++processing_template_decl;
11710 dependent_p = value_dependent_expression_p (t);
11711 --processing_template_decl;
11712 if (!dependent_p)
11713 RETURN (t);
11714
11715 /* Calculate the most general template of which R is a
11716 specialization, and the complete set of arguments used to
11717 specialize R. */
11718 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11719 argvec = tsubst_template_args (DECL_TI_ARGS
11720 (DECL_TEMPLATE_RESULT
11721 (DECL_TI_TEMPLATE (t))),
11722 args, complain, in_decl);
11723 if (argvec == error_mark_node)
11724 RETURN (error_mark_node);
11725
11726 /* Check to see if we already have this specialization. */
11727 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11728 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11729
11730 if (spec)
11731 {
11732 r = spec;
11733 break;
11734 }
11735
11736 /* We can see more levels of arguments than parameters if
11737 there was a specialization of a member template, like
11738 this:
11739
11740 template <class T> struct S { template <class U> void f(); }
11741 template <> template <class U> void S<int>::f(U);
11742
11743 Here, we'll be substituting into the specialization,
11744 because that's where we can find the code we actually
11745 want to generate, but we'll have enough arguments for
11746 the most general template.
11747
11748 We also deal with the peculiar case:
11749
11750 template <class T> struct S {
11751 template <class U> friend void f();
11752 };
11753 template <class U> void f() {}
11754 template S<int>;
11755 template void f<double>();
11756
11757 Here, the ARGS for the instantiation of will be {int,
11758 double}. But, we only need as many ARGS as there are
11759 levels of template parameters in CODE_PATTERN. We are
11760 careful not to get fooled into reducing the ARGS in
11761 situations like:
11762
11763 template <class T> struct S { template <class U> void f(U); }
11764 template <class T> template <> void S<T>::f(int) {}
11765
11766 which we can spot because the pattern will be a
11767 specialization in this case. */
11768 args_depth = TMPL_ARGS_DEPTH (args);
11769 parms_depth =
11770 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11771 if (args_depth > parms_depth
11772 && !DECL_TEMPLATE_SPECIALIZATION (t))
11773 args = get_innermost_template_args (args, parms_depth);
11774 }
11775 else
11776 {
11777 /* This special case arises when we have something like this:
11778
11779 template <class T> struct S {
11780 friend void f<int>(int, double);
11781 };
11782
11783 Here, the DECL_TI_TEMPLATE for the friend declaration
11784 will be an IDENTIFIER_NODE. We are being called from
11785 tsubst_friend_function, and we want only to create a
11786 new decl (R) with appropriate types so that we can call
11787 determine_specialization. */
11788 gen_tmpl = NULL_TREE;
11789 }
11790
11791 if (DECL_CLASS_SCOPE_P (t))
11792 {
11793 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11794 member = 2;
11795 else
11796 member = 1;
11797 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11798 complain, t, /*entering_scope=*/1);
11799 }
11800 else
11801 {
11802 member = 0;
11803 ctx = DECL_CONTEXT (t);
11804 }
11805 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11806 if (type == error_mark_node)
11807 RETURN (error_mark_node);
11808
11809 /* If we hit excessive deduction depth, the type is bogus even if
11810 it isn't error_mark_node, so don't build a decl. */
11811 if (excessive_deduction_depth)
11812 RETURN (error_mark_node);
11813
11814 /* We do NOT check for matching decls pushed separately at this
11815 point, as they may not represent instantiations of this
11816 template, and in any case are considered separate under the
11817 discrete model. */
11818 r = copy_decl (t);
11819 DECL_USE_TEMPLATE (r) = 0;
11820 TREE_TYPE (r) = type;
11821 /* Clear out the mangled name and RTL for the instantiation. */
11822 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11823 SET_DECL_RTL (r, NULL);
11824 /* Leave DECL_INITIAL set on deleted instantiations. */
11825 if (!DECL_DELETED_FN (r))
11826 DECL_INITIAL (r) = NULL_TREE;
11827 DECL_CONTEXT (r) = ctx;
11828
11829 /* OpenMP UDRs have the only argument a reference to the declared
11830 type. We want to diagnose if the declared type is a reference,
11831 which is invalid, but as references to references are usually
11832 quietly merged, diagnose it here. */
11833 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11834 {
11835 tree argtype
11836 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11837 argtype = tsubst (argtype, args, complain, in_decl);
11838 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11839 error_at (DECL_SOURCE_LOCATION (t),
11840 "reference type %qT in "
11841 "%<#pragma omp declare reduction%>", argtype);
11842 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11843 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11844 argtype);
11845 }
11846
11847 if (member && DECL_CONV_FN_P (r))
11848 /* Type-conversion operator. Reconstruct the name, in
11849 case it's the name of one of the template's parameters. */
11850 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11851
11852 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11853 complain, t);
11854 DECL_RESULT (r) = NULL_TREE;
11855
11856 TREE_STATIC (r) = 0;
11857 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11858 DECL_EXTERNAL (r) = 1;
11859 /* If this is an instantiation of a function with internal
11860 linkage, we already know what object file linkage will be
11861 assigned to the instantiation. */
11862 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11863 DECL_DEFER_OUTPUT (r) = 0;
11864 DECL_CHAIN (r) = NULL_TREE;
11865 DECL_PENDING_INLINE_INFO (r) = 0;
11866 DECL_PENDING_INLINE_P (r) = 0;
11867 DECL_SAVED_TREE (r) = NULL_TREE;
11868 DECL_STRUCT_FUNCTION (r) = NULL;
11869 TREE_USED (r) = 0;
11870 /* We'll re-clone as appropriate in instantiate_template. */
11871 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11872
11873 /* If we aren't complaining now, return on error before we register
11874 the specialization so that we'll complain eventually. */
11875 if ((complain & tf_error) == 0
11876 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11877 && !grok_op_properties (r, /*complain=*/false))
11878 RETURN (error_mark_node);
11879
11880 /* When instantiating a constrained member, substitute
11881 into the constraints to create a new constraint. */
11882 if (tree ci = get_constraints (t))
11883 if (member)
11884 {
11885 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11886 set_constraints (r, ci);
11887 }
11888
11889 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11890 this in the special friend case mentioned above where
11891 GEN_TMPL is NULL. */
11892 if (gen_tmpl)
11893 {
11894 DECL_TEMPLATE_INFO (r)
11895 = build_template_info (gen_tmpl, argvec);
11896 SET_DECL_IMPLICIT_INSTANTIATION (r);
11897
11898 tree new_r
11899 = register_specialization (r, gen_tmpl, argvec, false, hash);
11900 if (new_r != r)
11901 /* We instantiated this while substituting into
11902 the type earlier (template/friend54.C). */
11903 RETURN (new_r);
11904
11905 /* We're not supposed to instantiate default arguments
11906 until they are called, for a template. But, for a
11907 declaration like:
11908
11909 template <class T> void f ()
11910 { extern void g(int i = T()); }
11911
11912 we should do the substitution when the template is
11913 instantiated. We handle the member function case in
11914 instantiate_class_template since the default arguments
11915 might refer to other members of the class. */
11916 if (!member
11917 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11918 && !uses_template_parms (argvec))
11919 tsubst_default_arguments (r, complain);
11920 }
11921 else
11922 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11923
11924 /* Copy the list of befriending classes. */
11925 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11926 *friends;
11927 friends = &TREE_CHAIN (*friends))
11928 {
11929 *friends = copy_node (*friends);
11930 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11931 args, complain,
11932 in_decl);
11933 }
11934
11935 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11936 {
11937 maybe_retrofit_in_chrg (r);
11938 if (DECL_CONSTRUCTOR_P (r))
11939 grok_ctor_properties (ctx, r);
11940 if (DECL_INHERITED_CTOR_BASE (r))
11941 deduce_inheriting_ctor (r);
11942 /* If this is an instantiation of a member template, clone it.
11943 If it isn't, that'll be handled by
11944 clone_constructors_and_destructors. */
11945 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11946 clone_function_decl (r, /*update_method_vec_p=*/0);
11947 }
11948 else if ((complain & tf_error) != 0
11949 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11950 && !grok_op_properties (r, /*complain=*/true))
11951 RETURN (error_mark_node);
11952
11953 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11954 SET_DECL_FRIEND_CONTEXT (r,
11955 tsubst (DECL_FRIEND_CONTEXT (t),
11956 args, complain, in_decl));
11957
11958 /* Possibly limit visibility based on template args. */
11959 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11960 if (DECL_VISIBILITY_SPECIFIED (t))
11961 {
11962 DECL_VISIBILITY_SPECIFIED (r) = 0;
11963 DECL_ATTRIBUTES (r)
11964 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11965 }
11966 determine_visibility (r);
11967 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11968 && !processing_template_decl)
11969 defaulted_late_check (r);
11970
11971 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11972 args, complain, in_decl);
11973 }
11974 break;
11975
11976 case PARM_DECL:
11977 {
11978 tree type = NULL_TREE;
11979 int i, len = 1;
11980 tree expanded_types = NULL_TREE;
11981 tree prev_r = NULL_TREE;
11982 tree first_r = NULL_TREE;
11983
11984 if (DECL_PACK_P (t))
11985 {
11986 /* If there is a local specialization that isn't a
11987 parameter pack, it means that we're doing a "simple"
11988 substitution from inside tsubst_pack_expansion. Just
11989 return the local specialization (which will be a single
11990 parm). */
11991 tree spec = retrieve_local_specialization (t);
11992 if (spec
11993 && TREE_CODE (spec) == PARM_DECL
11994 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11995 RETURN (spec);
11996
11997 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11998 the parameters in this function parameter pack. */
11999 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12000 complain, in_decl);
12001 if (TREE_CODE (expanded_types) == TREE_VEC)
12002 {
12003 len = TREE_VEC_LENGTH (expanded_types);
12004
12005 /* Zero-length parameter packs are boring. Just substitute
12006 into the chain. */
12007 if (len == 0)
12008 RETURN (tsubst (TREE_CHAIN (t), args, complain,
12009 TREE_CHAIN (t)));
12010 }
12011 else
12012 {
12013 /* All we did was update the type. Make a note of that. */
12014 type = expanded_types;
12015 expanded_types = NULL_TREE;
12016 }
12017 }
12018
12019 /* Loop through all of the parameters we'll build. When T is
12020 a function parameter pack, LEN is the number of expanded
12021 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12022 r = NULL_TREE;
12023 for (i = 0; i < len; ++i)
12024 {
12025 prev_r = r;
12026 r = copy_node (t);
12027 if (DECL_TEMPLATE_PARM_P (t))
12028 SET_DECL_TEMPLATE_PARM_P (r);
12029
12030 if (expanded_types)
12031 /* We're on the Ith parameter of the function parameter
12032 pack. */
12033 {
12034 /* Get the Ith type. */
12035 type = TREE_VEC_ELT (expanded_types, i);
12036
12037 /* Rename the parameter to include the index. */
12038 DECL_NAME (r)
12039 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12040 }
12041 else if (!type)
12042 /* We're dealing with a normal parameter. */
12043 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12044
12045 type = type_decays_to (type);
12046 TREE_TYPE (r) = type;
12047 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12048
12049 if (DECL_INITIAL (r))
12050 {
12051 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
12052 DECL_INITIAL (r) = TREE_TYPE (r);
12053 else
12054 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
12055 complain, in_decl);
12056 }
12057
12058 DECL_CONTEXT (r) = NULL_TREE;
12059
12060 if (!DECL_TEMPLATE_PARM_P (r))
12061 DECL_ARG_TYPE (r) = type_passed_as (type);
12062
12063 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12064 args, complain, in_decl);
12065
12066 /* Keep track of the first new parameter we
12067 generate. That's what will be returned to the
12068 caller. */
12069 if (!first_r)
12070 first_r = r;
12071
12072 /* Build a proper chain of parameters when substituting
12073 into a function parameter pack. */
12074 if (prev_r)
12075 DECL_CHAIN (prev_r) = r;
12076 }
12077
12078 /* If cp_unevaluated_operand is set, we're just looking for a
12079 single dummy parameter, so don't keep going. */
12080 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12081 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12082 complain, DECL_CHAIN (t));
12083
12084 /* FIRST_R contains the start of the chain we've built. */
12085 r = first_r;
12086 }
12087 break;
12088
12089 case FIELD_DECL:
12090 {
12091 tree type = NULL_TREE;
12092 tree vec = NULL_TREE;
12093 tree expanded_types = NULL_TREE;
12094 int len = 1;
12095
12096 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12097 {
12098 /* This field is a lambda capture pack. Return a TREE_VEC of
12099 the expanded fields to instantiate_class_template_1 and
12100 store them in the specializations hash table as a
12101 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12102 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12103 complain, in_decl);
12104 if (TREE_CODE (expanded_types) == TREE_VEC)
12105 {
12106 len = TREE_VEC_LENGTH (expanded_types);
12107 vec = make_tree_vec (len);
12108 }
12109 else
12110 {
12111 /* All we did was update the type. Make a note of that. */
12112 type = expanded_types;
12113 expanded_types = NULL_TREE;
12114 }
12115 }
12116
12117 for (int i = 0; i < len; ++i)
12118 {
12119 r = copy_decl (t);
12120 if (expanded_types)
12121 {
12122 type = TREE_VEC_ELT (expanded_types, i);
12123 DECL_NAME (r)
12124 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12125 }
12126 else if (!type)
12127 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12128
12129 if (type == error_mark_node)
12130 RETURN (error_mark_node);
12131 TREE_TYPE (r) = type;
12132 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12133
12134 if (DECL_C_BIT_FIELD (r))
12135 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12136 non-bit-fields DECL_INITIAL is a non-static data member
12137 initializer, which gets deferred instantiation. */
12138 DECL_INITIAL (r)
12139 = tsubst_expr (DECL_INITIAL (t), args,
12140 complain, in_decl,
12141 /*integral_constant_expression_p=*/true);
12142 else if (DECL_INITIAL (t))
12143 {
12144 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12145 NSDMI in perform_member_init. Still set DECL_INITIAL
12146 so that we know there is one. */
12147 DECL_INITIAL (r) = void_node;
12148 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12149 retrofit_lang_decl (r);
12150 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12151 }
12152 /* We don't have to set DECL_CONTEXT here; it is set by
12153 finish_member_declaration. */
12154 DECL_CHAIN (r) = NULL_TREE;
12155
12156 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12157 args, complain, in_decl);
12158
12159 if (vec)
12160 TREE_VEC_ELT (vec, i) = r;
12161 }
12162
12163 if (vec)
12164 {
12165 r = vec;
12166 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12167 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12168 SET_ARGUMENT_PACK_ARGS (pack, vec);
12169 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12170 TREE_TYPE (pack) = tpack;
12171 register_specialization (pack, t, args, false, 0);
12172 }
12173 }
12174 break;
12175
12176 case USING_DECL:
12177 /* We reach here only for member using decls. We also need to check
12178 uses_template_parms because DECL_DEPENDENT_P is not set for a
12179 using-declaration that designates a member of the current
12180 instantiation (c++/53549). */
12181 if (DECL_DEPENDENT_P (t)
12182 || uses_template_parms (USING_DECL_SCOPE (t)))
12183 {
12184 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12185 complain, in_decl);
12186 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12187 r = do_class_using_decl (inst_scope, name);
12188 if (!r)
12189 r = error_mark_node;
12190 else
12191 {
12192 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12193 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12194 }
12195 }
12196 else
12197 {
12198 r = copy_node (t);
12199 DECL_CHAIN (r) = NULL_TREE;
12200 }
12201 break;
12202
12203 case TYPE_DECL:
12204 case VAR_DECL:
12205 {
12206 tree argvec = NULL_TREE;
12207 tree gen_tmpl = NULL_TREE;
12208 tree spec;
12209 tree tmpl = NULL_TREE;
12210 tree ctx;
12211 tree type = NULL_TREE;
12212 bool local_p;
12213
12214 if (TREE_TYPE (t) == error_mark_node)
12215 RETURN (error_mark_node);
12216
12217 if (TREE_CODE (t) == TYPE_DECL
12218 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12219 {
12220 /* If this is the canonical decl, we don't have to
12221 mess with instantiations, and often we can't (for
12222 typename, template type parms and such). Note that
12223 TYPE_NAME is not correct for the above test if
12224 we've copied the type for a typedef. */
12225 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12226 if (type == error_mark_node)
12227 RETURN (error_mark_node);
12228 r = TYPE_NAME (type);
12229 break;
12230 }
12231
12232 /* Check to see if we already have the specialization we
12233 need. */
12234 spec = NULL_TREE;
12235 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12236 {
12237 /* T is a static data member or namespace-scope entity.
12238 We have to substitute into namespace-scope variables
12239 (not just variable templates) because of cases like:
12240
12241 template <class T> void f() { extern T t; }
12242
12243 where the entity referenced is not known until
12244 instantiation time. */
12245 local_p = false;
12246 ctx = DECL_CONTEXT (t);
12247 if (DECL_CLASS_SCOPE_P (t))
12248 {
12249 ctx = tsubst_aggr_type (ctx, args,
12250 complain,
12251 in_decl, /*entering_scope=*/1);
12252 /* If CTX is unchanged, then T is in fact the
12253 specialization we want. That situation occurs when
12254 referencing a static data member within in its own
12255 class. We can use pointer equality, rather than
12256 same_type_p, because DECL_CONTEXT is always
12257 canonical... */
12258 if (ctx == DECL_CONTEXT (t)
12259 /* ... unless T is a member template; in which
12260 case our caller can be willing to create a
12261 specialization of that template represented
12262 by T. */
12263 && !(DECL_TI_TEMPLATE (t)
12264 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12265 spec = t;
12266 }
12267
12268 if (!spec)
12269 {
12270 tmpl = DECL_TI_TEMPLATE (t);
12271 gen_tmpl = most_general_template (tmpl);
12272 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12273 if (argvec != error_mark_node)
12274 argvec = (coerce_innermost_template_parms
12275 (DECL_TEMPLATE_PARMS (gen_tmpl),
12276 argvec, t, complain,
12277 /*all*/true, /*defarg*/true));
12278 if (argvec == error_mark_node)
12279 RETURN (error_mark_node);
12280 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12281 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12282 }
12283 }
12284 else
12285 {
12286 /* A local variable. */
12287 local_p = true;
12288 /* Subsequent calls to pushdecl will fill this in. */
12289 ctx = NULL_TREE;
12290 spec = retrieve_local_specialization (t);
12291 }
12292 /* If we already have the specialization we need, there is
12293 nothing more to do. */
12294 if (spec)
12295 {
12296 r = spec;
12297 break;
12298 }
12299
12300 /* Create a new node for the specialization we need. */
12301 r = copy_decl (t);
12302 if (type == NULL_TREE)
12303 {
12304 if (is_typedef_decl (t))
12305 type = DECL_ORIGINAL_TYPE (t);
12306 else
12307 type = TREE_TYPE (t);
12308 if (VAR_P (t)
12309 && VAR_HAD_UNKNOWN_BOUND (t)
12310 && type != error_mark_node)
12311 type = strip_array_domain (type);
12312 type = tsubst (type, args, complain, in_decl);
12313 }
12314 if (VAR_P (r))
12315 {
12316 /* Even if the original location is out of scope, the
12317 newly substituted one is not. */
12318 DECL_DEAD_FOR_LOCAL (r) = 0;
12319 DECL_INITIALIZED_P (r) = 0;
12320 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12321 if (type == error_mark_node)
12322 RETURN (error_mark_node);
12323 if (TREE_CODE (type) == FUNCTION_TYPE)
12324 {
12325 /* It may seem that this case cannot occur, since:
12326
12327 typedef void f();
12328 void g() { f x; }
12329
12330 declares a function, not a variable. However:
12331
12332 typedef void f();
12333 template <typename T> void g() { T t; }
12334 template void g<f>();
12335
12336 is an attempt to declare a variable with function
12337 type. */
12338 error ("variable %qD has function type",
12339 /* R is not yet sufficiently initialized, so we
12340 just use its name. */
12341 DECL_NAME (r));
12342 RETURN (error_mark_node);
12343 }
12344 type = complete_type (type);
12345 /* Wait until cp_finish_decl to set this again, to handle
12346 circular dependency (template/instantiate6.C). */
12347 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12348 type = check_var_type (DECL_NAME (r), type);
12349
12350 if (DECL_HAS_VALUE_EXPR_P (t))
12351 {
12352 tree ve = DECL_VALUE_EXPR (t);
12353 ve = tsubst_expr (ve, args, complain, in_decl,
12354 /*constant_expression_p=*/false);
12355 if (REFERENCE_REF_P (ve))
12356 {
12357 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12358 ve = TREE_OPERAND (ve, 0);
12359 }
12360 SET_DECL_VALUE_EXPR (r, ve);
12361 }
12362 if (CP_DECL_THREAD_LOCAL_P (r)
12363 && !processing_template_decl)
12364 set_decl_tls_model (r, decl_default_tls_model (r));
12365 }
12366 else if (DECL_SELF_REFERENCE_P (t))
12367 SET_DECL_SELF_REFERENCE_P (r);
12368 TREE_TYPE (r) = type;
12369 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12370 DECL_CONTEXT (r) = ctx;
12371 /* Clear out the mangled name and RTL for the instantiation. */
12372 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12373 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12374 SET_DECL_RTL (r, NULL);
12375 /* The initializer must not be expanded until it is required;
12376 see [temp.inst]. */
12377 DECL_INITIAL (r) = NULL_TREE;
12378 if (VAR_P (r))
12379 DECL_MODE (r) = VOIDmode;
12380 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12381 SET_DECL_RTL (r, NULL);
12382 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12383 if (VAR_P (r))
12384 {
12385 /* Possibly limit visibility based on template args. */
12386 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12387 if (DECL_VISIBILITY_SPECIFIED (t))
12388 {
12389 DECL_VISIBILITY_SPECIFIED (r) = 0;
12390 DECL_ATTRIBUTES (r)
12391 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12392 }
12393 determine_visibility (r);
12394 }
12395
12396 if (!local_p)
12397 {
12398 /* A static data member declaration is always marked
12399 external when it is declared in-class, even if an
12400 initializer is present. We mimic the non-template
12401 processing here. */
12402 DECL_EXTERNAL (r) = 1;
12403 if (DECL_NAMESPACE_SCOPE_P (t))
12404 DECL_NOT_REALLY_EXTERN (r) = 1;
12405
12406 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12407 SET_DECL_IMPLICIT_INSTANTIATION (r);
12408 register_specialization (r, gen_tmpl, argvec, false, hash);
12409 }
12410 else
12411 {
12412 if (DECL_LANG_SPECIFIC (r))
12413 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12414 if (!cp_unevaluated_operand)
12415 register_local_specialization (r, t);
12416 }
12417
12418 DECL_CHAIN (r) = NULL_TREE;
12419
12420 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12421 /*flags=*/0,
12422 args, complain, in_decl);
12423
12424 /* Preserve a typedef that names a type. */
12425 if (is_typedef_decl (r))
12426 {
12427 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12428 set_underlying_type (r);
12429 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12430 /* An alias template specialization can be dependent
12431 even if its underlying type is not. */
12432 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12433 }
12434
12435 layout_decl (r, 0);
12436 }
12437 break;
12438
12439 default:
12440 gcc_unreachable ();
12441 }
12442 #undef RETURN
12443
12444 out:
12445 /* Restore the file and line information. */
12446 input_location = saved_loc;
12447
12448 return r;
12449 }
12450
12451 /* Substitute into the ARG_TYPES of a function type.
12452 If END is a TREE_CHAIN, leave it and any following types
12453 un-substituted. */
12454
12455 static tree
12456 tsubst_arg_types (tree arg_types,
12457 tree args,
12458 tree end,
12459 tsubst_flags_t complain,
12460 tree in_decl)
12461 {
12462 tree remaining_arg_types;
12463 tree type = NULL_TREE;
12464 int i = 1;
12465 tree expanded_args = NULL_TREE;
12466 tree default_arg;
12467
12468 if (!arg_types || arg_types == void_list_node || arg_types == end)
12469 return arg_types;
12470
12471 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12472 args, end, complain, in_decl);
12473 if (remaining_arg_types == error_mark_node)
12474 return error_mark_node;
12475
12476 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12477 {
12478 /* For a pack expansion, perform substitution on the
12479 entire expression. Later on, we'll handle the arguments
12480 one-by-one. */
12481 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12482 args, complain, in_decl);
12483
12484 if (TREE_CODE (expanded_args) == TREE_VEC)
12485 /* So that we'll spin through the parameters, one by one. */
12486 i = TREE_VEC_LENGTH (expanded_args);
12487 else
12488 {
12489 /* We only partially substituted into the parameter
12490 pack. Our type is TYPE_PACK_EXPANSION. */
12491 type = expanded_args;
12492 expanded_args = NULL_TREE;
12493 }
12494 }
12495
12496 while (i > 0) {
12497 --i;
12498
12499 if (expanded_args)
12500 type = TREE_VEC_ELT (expanded_args, i);
12501 else if (!type)
12502 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12503
12504 if (type == error_mark_node)
12505 return error_mark_node;
12506 if (VOID_TYPE_P (type))
12507 {
12508 if (complain & tf_error)
12509 {
12510 error ("invalid parameter type %qT", type);
12511 if (in_decl)
12512 error ("in declaration %q+D", in_decl);
12513 }
12514 return error_mark_node;
12515 }
12516 /* DR 657. */
12517 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12518 return error_mark_node;
12519
12520 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12521 top-level qualifiers as required. */
12522 type = cv_unqualified (type_decays_to (type));
12523
12524 /* We do not substitute into default arguments here. The standard
12525 mandates that they be instantiated only when needed, which is
12526 done in build_over_call. */
12527 default_arg = TREE_PURPOSE (arg_types);
12528
12529 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12530 {
12531 /* We've instantiated a template before its default arguments
12532 have been parsed. This can happen for a nested template
12533 class, and is not an error unless we require the default
12534 argument in a call of this function. */
12535 remaining_arg_types =
12536 tree_cons (default_arg, type, remaining_arg_types);
12537 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12538 }
12539 else
12540 remaining_arg_types =
12541 hash_tree_cons (default_arg, type, remaining_arg_types);
12542 }
12543
12544 return remaining_arg_types;
12545 }
12546
12547 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12548 *not* handle the exception-specification for FNTYPE, because the
12549 initial substitution of explicitly provided template parameters
12550 during argument deduction forbids substitution into the
12551 exception-specification:
12552
12553 [temp.deduct]
12554
12555 All references in the function type of the function template to the
12556 corresponding template parameters are replaced by the specified tem-
12557 plate argument values. If a substitution in a template parameter or
12558 in the function type of the function template results in an invalid
12559 type, type deduction fails. [Note: The equivalent substitution in
12560 exception specifications is done only when the function is instanti-
12561 ated, at which point a program is ill-formed if the substitution
12562 results in an invalid type.] */
12563
12564 static tree
12565 tsubst_function_type (tree t,
12566 tree args,
12567 tsubst_flags_t complain,
12568 tree in_decl)
12569 {
12570 tree return_type;
12571 tree arg_types = NULL_TREE;
12572 tree fntype;
12573
12574 /* The TYPE_CONTEXT is not used for function/method types. */
12575 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12576
12577 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12578 failure. */
12579 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12580
12581 if (late_return_type_p)
12582 {
12583 /* Substitute the argument types. */
12584 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12585 complain, in_decl);
12586 if (arg_types == error_mark_node)
12587 return error_mark_node;
12588
12589 tree save_ccp = current_class_ptr;
12590 tree save_ccr = current_class_ref;
12591 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12592 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12593 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12594 if (do_inject)
12595 {
12596 /* DR 1207: 'this' is in scope in the trailing return type. */
12597 inject_this_parameter (this_type, cp_type_quals (this_type));
12598 }
12599
12600 /* Substitute the return type. */
12601 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12602
12603 if (do_inject)
12604 {
12605 current_class_ptr = save_ccp;
12606 current_class_ref = save_ccr;
12607 }
12608 }
12609 else
12610 /* Substitute the return type. */
12611 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12612
12613 if (return_type == error_mark_node)
12614 return error_mark_node;
12615 /* DR 486 clarifies that creation of a function type with an
12616 invalid return type is a deduction failure. */
12617 if (TREE_CODE (return_type) == ARRAY_TYPE
12618 || TREE_CODE (return_type) == FUNCTION_TYPE)
12619 {
12620 if (complain & tf_error)
12621 {
12622 if (TREE_CODE (return_type) == ARRAY_TYPE)
12623 error ("function returning an array");
12624 else
12625 error ("function returning a function");
12626 }
12627 return error_mark_node;
12628 }
12629 /* And DR 657. */
12630 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12631 return error_mark_node;
12632
12633 if (!late_return_type_p)
12634 {
12635 /* Substitute the argument types. */
12636 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12637 complain, in_decl);
12638 if (arg_types == error_mark_node)
12639 return error_mark_node;
12640 }
12641
12642 /* Construct a new type node and return it. */
12643 if (TREE_CODE (t) == FUNCTION_TYPE)
12644 {
12645 fntype = build_function_type (return_type, arg_types);
12646 fntype = apply_memfn_quals (fntype,
12647 type_memfn_quals (t),
12648 type_memfn_rqual (t));
12649 }
12650 else
12651 {
12652 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12653 /* Don't pick up extra function qualifiers from the basetype. */
12654 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12655 if (! MAYBE_CLASS_TYPE_P (r))
12656 {
12657 /* [temp.deduct]
12658
12659 Type deduction may fail for any of the following
12660 reasons:
12661
12662 -- Attempting to create "pointer to member of T" when T
12663 is not a class type. */
12664 if (complain & tf_error)
12665 error ("creating pointer to member function of non-class type %qT",
12666 r);
12667 return error_mark_node;
12668 }
12669
12670 fntype = build_method_type_directly (r, return_type,
12671 TREE_CHAIN (arg_types));
12672 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12673 }
12674 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12675
12676 if (late_return_type_p)
12677 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12678
12679 return fntype;
12680 }
12681
12682 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12683 ARGS into that specification, and return the substituted
12684 specification. If there is no specification, return NULL_TREE. */
12685
12686 static tree
12687 tsubst_exception_specification (tree fntype,
12688 tree args,
12689 tsubst_flags_t complain,
12690 tree in_decl,
12691 bool defer_ok)
12692 {
12693 tree specs;
12694 tree new_specs;
12695
12696 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12697 new_specs = NULL_TREE;
12698 if (specs && TREE_PURPOSE (specs))
12699 {
12700 /* A noexcept-specifier. */
12701 tree expr = TREE_PURPOSE (specs);
12702 if (TREE_CODE (expr) == INTEGER_CST)
12703 new_specs = expr;
12704 else if (defer_ok)
12705 {
12706 /* Defer instantiation of noexcept-specifiers to avoid
12707 excessive instantiations (c++/49107). */
12708 new_specs = make_node (DEFERRED_NOEXCEPT);
12709 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12710 {
12711 /* We already partially instantiated this member template,
12712 so combine the new args with the old. */
12713 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12714 = DEFERRED_NOEXCEPT_PATTERN (expr);
12715 DEFERRED_NOEXCEPT_ARGS (new_specs)
12716 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12717 }
12718 else
12719 {
12720 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12721 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12722 }
12723 }
12724 else
12725 new_specs = tsubst_copy_and_build
12726 (expr, args, complain, in_decl, /*function_p=*/false,
12727 /*integral_constant_expression_p=*/true);
12728 new_specs = build_noexcept_spec (new_specs, complain);
12729 }
12730 else if (specs)
12731 {
12732 if (! TREE_VALUE (specs))
12733 new_specs = specs;
12734 else
12735 while (specs)
12736 {
12737 tree spec;
12738 int i, len = 1;
12739 tree expanded_specs = NULL_TREE;
12740
12741 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12742 {
12743 /* Expand the pack expansion type. */
12744 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12745 args, complain,
12746 in_decl);
12747
12748 if (expanded_specs == error_mark_node)
12749 return error_mark_node;
12750 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12751 len = TREE_VEC_LENGTH (expanded_specs);
12752 else
12753 {
12754 /* We're substituting into a member template, so
12755 we got a TYPE_PACK_EXPANSION back. Add that
12756 expansion and move on. */
12757 gcc_assert (TREE_CODE (expanded_specs)
12758 == TYPE_PACK_EXPANSION);
12759 new_specs = add_exception_specifier (new_specs,
12760 expanded_specs,
12761 complain);
12762 specs = TREE_CHAIN (specs);
12763 continue;
12764 }
12765 }
12766
12767 for (i = 0; i < len; ++i)
12768 {
12769 if (expanded_specs)
12770 spec = TREE_VEC_ELT (expanded_specs, i);
12771 else
12772 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12773 if (spec == error_mark_node)
12774 return spec;
12775 new_specs = add_exception_specifier (new_specs, spec,
12776 complain);
12777 }
12778
12779 specs = TREE_CHAIN (specs);
12780 }
12781 }
12782 return new_specs;
12783 }
12784
12785 /* Take the tree structure T and replace template parameters used
12786 therein with the argument vector ARGS. IN_DECL is an associated
12787 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12788 Issue error and warning messages under control of COMPLAIN. Note
12789 that we must be relatively non-tolerant of extensions here, in
12790 order to preserve conformance; if we allow substitutions that
12791 should not be allowed, we may allow argument deductions that should
12792 not succeed, and therefore report ambiguous overload situations
12793 where there are none. In theory, we could allow the substitution,
12794 but indicate that it should have failed, and allow our caller to
12795 make sure that the right thing happens, but we don't try to do this
12796 yet.
12797
12798 This function is used for dealing with types, decls and the like;
12799 for expressions, use tsubst_expr or tsubst_copy. */
12800
12801 tree
12802 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12803 {
12804 enum tree_code code;
12805 tree type, r = NULL_TREE;
12806
12807 if (t == NULL_TREE || t == error_mark_node
12808 || t == integer_type_node
12809 || t == void_type_node
12810 || t == char_type_node
12811 || t == unknown_type_node
12812 || TREE_CODE (t) == NAMESPACE_DECL
12813 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12814 return t;
12815
12816 if (DECL_P (t))
12817 return tsubst_decl (t, args, complain);
12818
12819 if (args == NULL_TREE)
12820 return t;
12821
12822 code = TREE_CODE (t);
12823
12824 if (code == IDENTIFIER_NODE)
12825 type = IDENTIFIER_TYPE_VALUE (t);
12826 else
12827 type = TREE_TYPE (t);
12828
12829 gcc_assert (type != unknown_type_node);
12830
12831 /* Reuse typedefs. We need to do this to handle dependent attributes,
12832 such as attribute aligned. */
12833 if (TYPE_P (t)
12834 && typedef_variant_p (t))
12835 {
12836 tree decl = TYPE_NAME (t);
12837
12838 if (alias_template_specialization_p (t))
12839 {
12840 /* DECL represents an alias template and we want to
12841 instantiate it. */
12842 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12843 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12844 r = instantiate_alias_template (tmpl, gen_args, complain);
12845 }
12846 else if (DECL_CLASS_SCOPE_P (decl)
12847 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12848 && uses_template_parms (DECL_CONTEXT (decl)))
12849 {
12850 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12851 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12852 r = retrieve_specialization (tmpl, gen_args, 0);
12853 }
12854 else if (DECL_FUNCTION_SCOPE_P (decl)
12855 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12856 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12857 r = retrieve_local_specialization (decl);
12858 else
12859 /* The typedef is from a non-template context. */
12860 return t;
12861
12862 if (r)
12863 {
12864 r = TREE_TYPE (r);
12865 r = cp_build_qualified_type_real
12866 (r, cp_type_quals (t) | cp_type_quals (r),
12867 complain | tf_ignore_bad_quals);
12868 return r;
12869 }
12870 else
12871 {
12872 /* We don't have an instantiation yet, so drop the typedef. */
12873 int quals = cp_type_quals (t);
12874 t = DECL_ORIGINAL_TYPE (decl);
12875 t = cp_build_qualified_type_real (t, quals,
12876 complain | tf_ignore_bad_quals);
12877 }
12878 }
12879
12880 if (type
12881 && code != TYPENAME_TYPE
12882 && code != TEMPLATE_TYPE_PARM
12883 && code != IDENTIFIER_NODE
12884 && code != FUNCTION_TYPE
12885 && code != METHOD_TYPE)
12886 type = tsubst (type, args, complain, in_decl);
12887 if (type == error_mark_node)
12888 return error_mark_node;
12889
12890 switch (code)
12891 {
12892 case RECORD_TYPE:
12893 case UNION_TYPE:
12894 case ENUMERAL_TYPE:
12895 return tsubst_aggr_type (t, args, complain, in_decl,
12896 /*entering_scope=*/0);
12897
12898 case ERROR_MARK:
12899 case IDENTIFIER_NODE:
12900 case VOID_TYPE:
12901 case REAL_TYPE:
12902 case COMPLEX_TYPE:
12903 case VECTOR_TYPE:
12904 case BOOLEAN_TYPE:
12905 case NULLPTR_TYPE:
12906 case LANG_TYPE:
12907 return t;
12908
12909 case INTEGER_TYPE:
12910 if (t == integer_type_node)
12911 return t;
12912
12913 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12914 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12915 return t;
12916
12917 {
12918 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12919
12920 max = tsubst_expr (omax, args, complain, in_decl,
12921 /*integral_constant_expression_p=*/false);
12922
12923 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12924 needed. */
12925 if (TREE_CODE (max) == NOP_EXPR
12926 && TREE_SIDE_EFFECTS (omax)
12927 && !TREE_TYPE (max))
12928 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12929
12930 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12931 with TREE_SIDE_EFFECTS that indicates this is not an integral
12932 constant expression. */
12933 if (processing_template_decl
12934 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12935 {
12936 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12937 TREE_SIDE_EFFECTS (max) = 1;
12938 }
12939
12940 return compute_array_index_type (NULL_TREE, max, complain);
12941 }
12942
12943 case TEMPLATE_TYPE_PARM:
12944 case TEMPLATE_TEMPLATE_PARM:
12945 case BOUND_TEMPLATE_TEMPLATE_PARM:
12946 case TEMPLATE_PARM_INDEX:
12947 {
12948 int idx;
12949 int level;
12950 int levels;
12951 tree arg = NULL_TREE;
12952
12953 /* Early in template argument deduction substitution, we don't
12954 want to reduce the level of 'auto', or it will be confused
12955 with a normal template parm in subsequent deduction. */
12956 if (is_auto (t) && (complain & tf_partial))
12957 return t;
12958
12959 r = NULL_TREE;
12960
12961 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12962 template_parm_level_and_index (t, &level, &idx);
12963
12964 levels = TMPL_ARGS_DEPTH (args);
12965 if (level <= levels
12966 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12967 {
12968 arg = TMPL_ARG (args, level, idx);
12969
12970 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12971 {
12972 /* See through ARGUMENT_PACK_SELECT arguments. */
12973 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12974 /* If the selected argument is an expansion E, that most
12975 likely means we were called from
12976 gen_elem_of_pack_expansion_instantiation during the
12977 substituting of pack an argument pack (which Ith
12978 element is a pack expansion, where I is
12979 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12980 In this case, the Ith element resulting from this
12981 substituting is going to be a pack expansion, which
12982 pattern is the pattern of E. Let's return the
12983 pattern of E, and
12984 gen_elem_of_pack_expansion_instantiation will
12985 build the resulting pack expansion from it. */
12986 if (PACK_EXPANSION_P (arg))
12987 {
12988 /* Make sure we aren't throwing away arg info. */
12989 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12990 arg = PACK_EXPANSION_PATTERN (arg);
12991 }
12992 }
12993 }
12994
12995 if (arg == error_mark_node)
12996 return error_mark_node;
12997 else if (arg != NULL_TREE)
12998 {
12999 if (ARGUMENT_PACK_P (arg))
13000 /* If ARG is an argument pack, we don't actually want to
13001 perform a substitution here, because substitutions
13002 for argument packs are only done
13003 element-by-element. We can get to this point when
13004 substituting the type of a non-type template
13005 parameter pack, when that type actually contains
13006 template parameter packs from an outer template, e.g.,
13007
13008 template<typename... Types> struct A {
13009 template<Types... Values> struct B { };
13010 }; */
13011 return t;
13012
13013 if (code == TEMPLATE_TYPE_PARM)
13014 {
13015 int quals;
13016 gcc_assert (TYPE_P (arg));
13017
13018 quals = cp_type_quals (arg) | cp_type_quals (t);
13019
13020 return cp_build_qualified_type_real
13021 (arg, quals, complain | tf_ignore_bad_quals);
13022 }
13023 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13024 {
13025 /* We are processing a type constructed from a
13026 template template parameter. */
13027 tree argvec = tsubst (TYPE_TI_ARGS (t),
13028 args, complain, in_decl);
13029 if (argvec == error_mark_node)
13030 return error_mark_node;
13031
13032 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
13033 || TREE_CODE (arg) == TEMPLATE_DECL
13034 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
13035
13036 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
13037 /* Consider this code:
13038
13039 template <template <class> class Template>
13040 struct Internal {
13041 template <class Arg> using Bind = Template<Arg>;
13042 };
13043
13044 template <template <class> class Template, class Arg>
13045 using Instantiate = Template<Arg>; //#0
13046
13047 template <template <class> class Template,
13048 class Argument>
13049 using Bind =
13050 Instantiate<Internal<Template>::template Bind,
13051 Argument>; //#1
13052
13053 When #1 is parsed, the
13054 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13055 parameter `Template' in #0 matches the
13056 UNBOUND_CLASS_TEMPLATE representing the argument
13057 `Internal<Template>::template Bind'; We then want
13058 to assemble the type `Bind<Argument>' that can't
13059 be fully created right now, because
13060 `Internal<Template>' not being complete, the Bind
13061 template cannot be looked up in that context. So
13062 we need to "store" `Bind<Argument>' for later
13063 when the context of Bind becomes complete. Let's
13064 store that in a TYPENAME_TYPE. */
13065 return make_typename_type (TYPE_CONTEXT (arg),
13066 build_nt (TEMPLATE_ID_EXPR,
13067 TYPE_IDENTIFIER (arg),
13068 argvec),
13069 typename_type,
13070 complain);
13071
13072 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13073 are resolving nested-types in the signature of a
13074 member function templates. Otherwise ARG is a
13075 TEMPLATE_DECL and is the real template to be
13076 instantiated. */
13077 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13078 arg = TYPE_NAME (arg);
13079
13080 r = lookup_template_class (arg,
13081 argvec, in_decl,
13082 DECL_CONTEXT (arg),
13083 /*entering_scope=*/0,
13084 complain);
13085 return cp_build_qualified_type_real
13086 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13087 }
13088 else
13089 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
13090 return convert_from_reference (unshare_expr (arg));
13091 }
13092
13093 if (level == 1)
13094 /* This can happen during the attempted tsubst'ing in
13095 unify. This means that we don't yet have any information
13096 about the template parameter in question. */
13097 return t;
13098
13099 /* If we get here, we must have been looking at a parm for a
13100 more deeply nested template. Make a new version of this
13101 template parameter, but with a lower level. */
13102 switch (code)
13103 {
13104 case TEMPLATE_TYPE_PARM:
13105 case TEMPLATE_TEMPLATE_PARM:
13106 case BOUND_TEMPLATE_TEMPLATE_PARM:
13107 if (cp_type_quals (t))
13108 {
13109 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13110 r = cp_build_qualified_type_real
13111 (r, cp_type_quals (t),
13112 complain | (code == TEMPLATE_TYPE_PARM
13113 ? tf_ignore_bad_quals : 0));
13114 }
13115 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13116 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13117 && (r = (TEMPLATE_PARM_DESCENDANTS
13118 (TEMPLATE_TYPE_PARM_INDEX (t))))
13119 && (r = TREE_TYPE (r))
13120 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13121 /* Break infinite recursion when substituting the constraints
13122 of a constrained placeholder. */;
13123 else
13124 {
13125 r = copy_type (t);
13126 TEMPLATE_TYPE_PARM_INDEX (r)
13127 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13128 r, levels, args, complain);
13129 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13130 TYPE_MAIN_VARIANT (r) = r;
13131 TYPE_POINTER_TO (r) = NULL_TREE;
13132 TYPE_REFERENCE_TO (r) = NULL_TREE;
13133
13134 /* Propagate constraints on placeholders. */
13135 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13136 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13137 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13138 = tsubst_constraint (constr, args, complain, in_decl);
13139
13140 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13141 /* We have reduced the level of the template
13142 template parameter, but not the levels of its
13143 template parameters, so canonical_type_parameter
13144 will not be able to find the canonical template
13145 template parameter for this level. Thus, we
13146 require structural equality checking to compare
13147 TEMPLATE_TEMPLATE_PARMs. */
13148 SET_TYPE_STRUCTURAL_EQUALITY (r);
13149 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13150 SET_TYPE_STRUCTURAL_EQUALITY (r);
13151 else
13152 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13153
13154 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13155 {
13156 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
13157 complain, in_decl);
13158 if (argvec == error_mark_node)
13159 return error_mark_node;
13160
13161 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13162 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
13163 }
13164 }
13165 break;
13166
13167 case TEMPLATE_PARM_INDEX:
13168 r = reduce_template_parm_level (t, type, levels, args, complain);
13169 break;
13170
13171 default:
13172 gcc_unreachable ();
13173 }
13174
13175 return r;
13176 }
13177
13178 case TREE_LIST:
13179 {
13180 tree purpose, value, chain;
13181
13182 if (t == void_list_node)
13183 return t;
13184
13185 purpose = TREE_PURPOSE (t);
13186 if (purpose)
13187 {
13188 purpose = tsubst (purpose, args, complain, in_decl);
13189 if (purpose == error_mark_node)
13190 return error_mark_node;
13191 }
13192 value = TREE_VALUE (t);
13193 if (value)
13194 {
13195 value = tsubst (value, args, complain, in_decl);
13196 if (value == error_mark_node)
13197 return error_mark_node;
13198 }
13199 chain = TREE_CHAIN (t);
13200 if (chain && chain != void_type_node)
13201 {
13202 chain = tsubst (chain, args, complain, in_decl);
13203 if (chain == error_mark_node)
13204 return error_mark_node;
13205 }
13206 if (purpose == TREE_PURPOSE (t)
13207 && value == TREE_VALUE (t)
13208 && chain == TREE_CHAIN (t))
13209 return t;
13210 return hash_tree_cons (purpose, value, chain);
13211 }
13212
13213 case TREE_BINFO:
13214 /* We should never be tsubsting a binfo. */
13215 gcc_unreachable ();
13216
13217 case TREE_VEC:
13218 /* A vector of template arguments. */
13219 gcc_assert (!type);
13220 return tsubst_template_args (t, args, complain, in_decl);
13221
13222 case POINTER_TYPE:
13223 case REFERENCE_TYPE:
13224 {
13225 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13226 return t;
13227
13228 /* [temp.deduct]
13229
13230 Type deduction may fail for any of the following
13231 reasons:
13232
13233 -- Attempting to create a pointer to reference type.
13234 -- Attempting to create a reference to a reference type or
13235 a reference to void.
13236
13237 Core issue 106 says that creating a reference to a reference
13238 during instantiation is no longer a cause for failure. We
13239 only enforce this check in strict C++98 mode. */
13240 if ((TREE_CODE (type) == REFERENCE_TYPE
13241 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13242 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13243 {
13244 static location_t last_loc;
13245
13246 /* We keep track of the last time we issued this error
13247 message to avoid spewing a ton of messages during a
13248 single bad template instantiation. */
13249 if (complain & tf_error
13250 && last_loc != input_location)
13251 {
13252 if (VOID_TYPE_P (type))
13253 error ("forming reference to void");
13254 else if (code == POINTER_TYPE)
13255 error ("forming pointer to reference type %qT", type);
13256 else
13257 error ("forming reference to reference type %qT", type);
13258 last_loc = input_location;
13259 }
13260
13261 return error_mark_node;
13262 }
13263 else if (TREE_CODE (type) == FUNCTION_TYPE
13264 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13265 || type_memfn_rqual (type) != REF_QUAL_NONE))
13266 {
13267 if (complain & tf_error)
13268 {
13269 if (code == POINTER_TYPE)
13270 error ("forming pointer to qualified function type %qT",
13271 type);
13272 else
13273 error ("forming reference to qualified function type %qT",
13274 type);
13275 }
13276 return error_mark_node;
13277 }
13278 else if (code == POINTER_TYPE)
13279 {
13280 r = build_pointer_type (type);
13281 if (TREE_CODE (type) == METHOD_TYPE)
13282 r = build_ptrmemfunc_type (r);
13283 }
13284 else if (TREE_CODE (type) == REFERENCE_TYPE)
13285 /* In C++0x, during template argument substitution, when there is an
13286 attempt to create a reference to a reference type, reference
13287 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13288
13289 "If a template-argument for a template-parameter T names a type
13290 that is a reference to a type A, an attempt to create the type
13291 'lvalue reference to cv T' creates the type 'lvalue reference to
13292 A,' while an attempt to create the type type rvalue reference to
13293 cv T' creates the type T"
13294 */
13295 r = cp_build_reference_type
13296 (TREE_TYPE (type),
13297 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13298 else
13299 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13300 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13301
13302 if (r != error_mark_node)
13303 /* Will this ever be needed for TYPE_..._TO values? */
13304 layout_type (r);
13305
13306 return r;
13307 }
13308 case OFFSET_TYPE:
13309 {
13310 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13311 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13312 {
13313 /* [temp.deduct]
13314
13315 Type deduction may fail for any of the following
13316 reasons:
13317
13318 -- Attempting to create "pointer to member of T" when T
13319 is not a class type. */
13320 if (complain & tf_error)
13321 error ("creating pointer to member of non-class type %qT", r);
13322 return error_mark_node;
13323 }
13324 if (TREE_CODE (type) == REFERENCE_TYPE)
13325 {
13326 if (complain & tf_error)
13327 error ("creating pointer to member reference type %qT", type);
13328 return error_mark_node;
13329 }
13330 if (VOID_TYPE_P (type))
13331 {
13332 if (complain & tf_error)
13333 error ("creating pointer to member of type void");
13334 return error_mark_node;
13335 }
13336 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13337 if (TREE_CODE (type) == FUNCTION_TYPE)
13338 {
13339 /* The type of the implicit object parameter gets its
13340 cv-qualifiers from the FUNCTION_TYPE. */
13341 tree memptr;
13342 tree method_type
13343 = build_memfn_type (type, r, type_memfn_quals (type),
13344 type_memfn_rqual (type));
13345 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13346 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13347 complain);
13348 }
13349 else
13350 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13351 cp_type_quals (t),
13352 complain);
13353 }
13354 case FUNCTION_TYPE:
13355 case METHOD_TYPE:
13356 {
13357 tree fntype;
13358 tree specs;
13359 fntype = tsubst_function_type (t, args, complain, in_decl);
13360 if (fntype == error_mark_node)
13361 return error_mark_node;
13362
13363 /* Substitute the exception specification. */
13364 specs = tsubst_exception_specification (t, args, complain,
13365 in_decl, /*defer_ok*/true);
13366 if (specs == error_mark_node)
13367 return error_mark_node;
13368 if (specs)
13369 fntype = build_exception_variant (fntype, specs);
13370 return fntype;
13371 }
13372 case ARRAY_TYPE:
13373 {
13374 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13375 if (domain == error_mark_node)
13376 return error_mark_node;
13377
13378 /* As an optimization, we avoid regenerating the array type if
13379 it will obviously be the same as T. */
13380 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13381 return t;
13382
13383 /* These checks should match the ones in create_array_type_for_decl.
13384
13385 [temp.deduct]
13386
13387 The deduction may fail for any of the following reasons:
13388
13389 -- Attempting to create an array with an element type that
13390 is void, a function type, or a reference type, or [DR337]
13391 an abstract class type. */
13392 if (VOID_TYPE_P (type)
13393 || TREE_CODE (type) == FUNCTION_TYPE
13394 || (TREE_CODE (type) == ARRAY_TYPE
13395 && TYPE_DOMAIN (type) == NULL_TREE)
13396 || TREE_CODE (type) == REFERENCE_TYPE)
13397 {
13398 if (complain & tf_error)
13399 error ("creating array of %qT", type);
13400 return error_mark_node;
13401 }
13402
13403 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13404 return error_mark_node;
13405
13406 r = build_cplus_array_type (type, domain);
13407
13408 if (TYPE_USER_ALIGN (t))
13409 {
13410 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13411 TYPE_USER_ALIGN (r) = 1;
13412 }
13413
13414 return r;
13415 }
13416
13417 case TYPENAME_TYPE:
13418 {
13419 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13420 in_decl, /*entering_scope=*/1);
13421 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13422 complain, in_decl);
13423
13424 if (ctx == error_mark_node || f == error_mark_node)
13425 return error_mark_node;
13426
13427 if (!MAYBE_CLASS_TYPE_P (ctx))
13428 {
13429 if (complain & tf_error)
13430 error ("%qT is not a class, struct, or union type", ctx);
13431 return error_mark_node;
13432 }
13433 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13434 {
13435 /* Normally, make_typename_type does not require that the CTX
13436 have complete type in order to allow things like:
13437
13438 template <class T> struct S { typename S<T>::X Y; };
13439
13440 But, such constructs have already been resolved by this
13441 point, so here CTX really should have complete type, unless
13442 it's a partial instantiation. */
13443 ctx = complete_type (ctx);
13444 if (!COMPLETE_TYPE_P (ctx))
13445 {
13446 if (complain & tf_error)
13447 cxx_incomplete_type_error (NULL_TREE, ctx);
13448 return error_mark_node;
13449 }
13450 }
13451
13452 f = make_typename_type (ctx, f, typename_type,
13453 complain | tf_keep_type_decl);
13454 if (f == error_mark_node)
13455 return f;
13456 if (TREE_CODE (f) == TYPE_DECL)
13457 {
13458 complain |= tf_ignore_bad_quals;
13459 f = TREE_TYPE (f);
13460 }
13461
13462 if (TREE_CODE (f) != TYPENAME_TYPE)
13463 {
13464 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13465 {
13466 if (complain & tf_error)
13467 error ("%qT resolves to %qT, which is not an enumeration type",
13468 t, f);
13469 else
13470 return error_mark_node;
13471 }
13472 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13473 {
13474 if (complain & tf_error)
13475 error ("%qT resolves to %qT, which is is not a class type",
13476 t, f);
13477 else
13478 return error_mark_node;
13479 }
13480 }
13481
13482 return cp_build_qualified_type_real
13483 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13484 }
13485
13486 case UNBOUND_CLASS_TEMPLATE:
13487 {
13488 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13489 in_decl, /*entering_scope=*/1);
13490 tree name = TYPE_IDENTIFIER (t);
13491 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13492
13493 if (ctx == error_mark_node || name == error_mark_node)
13494 return error_mark_node;
13495
13496 if (parm_list)
13497 parm_list = tsubst_template_parms (parm_list, args, complain);
13498 return make_unbound_class_template (ctx, name, parm_list, complain);
13499 }
13500
13501 case TYPEOF_TYPE:
13502 {
13503 tree type;
13504
13505 ++cp_unevaluated_operand;
13506 ++c_inhibit_evaluation_warnings;
13507
13508 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13509 complain, in_decl,
13510 /*integral_constant_expression_p=*/false);
13511
13512 --cp_unevaluated_operand;
13513 --c_inhibit_evaluation_warnings;
13514
13515 type = finish_typeof (type);
13516 return cp_build_qualified_type_real (type,
13517 cp_type_quals (t)
13518 | cp_type_quals (type),
13519 complain);
13520 }
13521
13522 case DECLTYPE_TYPE:
13523 {
13524 tree type;
13525
13526 ++cp_unevaluated_operand;
13527 ++c_inhibit_evaluation_warnings;
13528
13529 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13530 complain|tf_decltype, in_decl,
13531 /*function_p*/false,
13532 /*integral_constant_expression*/false);
13533
13534 --cp_unevaluated_operand;
13535 --c_inhibit_evaluation_warnings;
13536
13537 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13538 type = lambda_capture_field_type (type,
13539 DECLTYPE_FOR_INIT_CAPTURE (t));
13540 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13541 type = lambda_proxy_type (type);
13542 else
13543 {
13544 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13545 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13546 && EXPR_P (type))
13547 /* In a template ~id could be either a complement expression
13548 or an unqualified-id naming a destructor; if instantiating
13549 it produces an expression, it's not an id-expression or
13550 member access. */
13551 id = false;
13552 type = finish_decltype_type (type, id, complain);
13553 }
13554 return cp_build_qualified_type_real (type,
13555 cp_type_quals (t)
13556 | cp_type_quals (type),
13557 complain | tf_ignore_bad_quals);
13558 }
13559
13560 case UNDERLYING_TYPE:
13561 {
13562 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13563 complain, in_decl);
13564 return finish_underlying_type (type);
13565 }
13566
13567 case TYPE_ARGUMENT_PACK:
13568 case NONTYPE_ARGUMENT_PACK:
13569 {
13570 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13571 tree packed_out =
13572 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13573 args,
13574 complain,
13575 in_decl);
13576 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13577
13578 /* For template nontype argument packs, also substitute into
13579 the type. */
13580 if (code == NONTYPE_ARGUMENT_PACK)
13581 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13582
13583 return r;
13584 }
13585 break;
13586
13587 case VOID_CST:
13588 case INTEGER_CST:
13589 case REAL_CST:
13590 case STRING_CST:
13591 case PLUS_EXPR:
13592 case MINUS_EXPR:
13593 case NEGATE_EXPR:
13594 case NOP_EXPR:
13595 case INDIRECT_REF:
13596 case ADDR_EXPR:
13597 case CALL_EXPR:
13598 case ARRAY_REF:
13599 case SCOPE_REF:
13600 /* We should use one of the expression tsubsts for these codes. */
13601 gcc_unreachable ();
13602
13603 default:
13604 sorry ("use of %qs in template", get_tree_code_name (code));
13605 return error_mark_node;
13606 }
13607 }
13608
13609 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13610 type of the expression on the left-hand side of the "." or "->"
13611 operator. */
13612
13613 static tree
13614 tsubst_baselink (tree baselink, tree object_type,
13615 tree args, tsubst_flags_t complain, tree in_decl)
13616 {
13617 tree name;
13618 tree qualifying_scope;
13619 tree fns;
13620 tree optype;
13621 tree template_args = 0;
13622 bool template_id_p = false;
13623 bool qualified = BASELINK_QUALIFIED_P (baselink);
13624
13625 /* A baselink indicates a function from a base class. Both the
13626 BASELINK_ACCESS_BINFO and the base class referenced may
13627 indicate bases of the template class, rather than the
13628 instantiated class. In addition, lookups that were not
13629 ambiguous before may be ambiguous now. Therefore, we perform
13630 the lookup again. */
13631 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13632 qualifying_scope = tsubst (qualifying_scope, args,
13633 complain, in_decl);
13634 fns = BASELINK_FUNCTIONS (baselink);
13635 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13636 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13637 {
13638 template_id_p = true;
13639 template_args = TREE_OPERAND (fns, 1);
13640 fns = TREE_OPERAND (fns, 0);
13641 if (template_args)
13642 template_args = tsubst_template_args (template_args, args,
13643 complain, in_decl);
13644 }
13645 name = DECL_NAME (get_first_fn (fns));
13646 if (IDENTIFIER_TYPENAME_P (name))
13647 name = mangle_conv_op_name_for_type (optype);
13648 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13649 if (!baselink)
13650 {
13651 if (constructor_name_p (name, qualifying_scope))
13652 {
13653 if (complain & tf_error)
13654 error ("cannot call constructor %<%T::%D%> directly",
13655 qualifying_scope, name);
13656 }
13657 return error_mark_node;
13658 }
13659
13660 /* If lookup found a single function, mark it as used at this
13661 point. (If it lookup found multiple functions the one selected
13662 later by overload resolution will be marked as used at that
13663 point.) */
13664 if (BASELINK_P (baselink))
13665 fns = BASELINK_FUNCTIONS (baselink);
13666 if (!template_id_p && !really_overloaded_fn (fns)
13667 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13668 return error_mark_node;
13669
13670 /* Add back the template arguments, if present. */
13671 if (BASELINK_P (baselink) && template_id_p)
13672 BASELINK_FUNCTIONS (baselink)
13673 = build_nt (TEMPLATE_ID_EXPR,
13674 BASELINK_FUNCTIONS (baselink),
13675 template_args);
13676 /* Update the conversion operator type. */
13677 BASELINK_OPTYPE (baselink) = optype;
13678
13679 if (!object_type)
13680 object_type = current_class_type;
13681
13682 if (qualified)
13683 baselink = adjust_result_of_qualified_name_lookup (baselink,
13684 qualifying_scope,
13685 object_type);
13686 return baselink;
13687 }
13688
13689 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13690 true if the qualified-id will be a postfix-expression in-and-of
13691 itself; false if more of the postfix-expression follows the
13692 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13693 of "&". */
13694
13695 static tree
13696 tsubst_qualified_id (tree qualified_id, tree args,
13697 tsubst_flags_t complain, tree in_decl,
13698 bool done, bool address_p)
13699 {
13700 tree expr;
13701 tree scope;
13702 tree name;
13703 bool is_template;
13704 tree template_args;
13705 location_t loc = UNKNOWN_LOCATION;
13706
13707 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13708
13709 /* Figure out what name to look up. */
13710 name = TREE_OPERAND (qualified_id, 1);
13711 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13712 {
13713 is_template = true;
13714 loc = EXPR_LOCATION (name);
13715 template_args = TREE_OPERAND (name, 1);
13716 if (template_args)
13717 template_args = tsubst_template_args (template_args, args,
13718 complain, in_decl);
13719 name = TREE_OPERAND (name, 0);
13720 }
13721 else
13722 {
13723 is_template = false;
13724 template_args = NULL_TREE;
13725 }
13726
13727 /* Substitute into the qualifying scope. When there are no ARGS, we
13728 are just trying to simplify a non-dependent expression. In that
13729 case the qualifying scope may be dependent, and, in any case,
13730 substituting will not help. */
13731 scope = TREE_OPERAND (qualified_id, 0);
13732 if (args)
13733 {
13734 scope = tsubst (scope, args, complain, in_decl);
13735 expr = tsubst_copy (name, args, complain, in_decl);
13736 }
13737 else
13738 expr = name;
13739
13740 if (dependent_scope_p (scope))
13741 {
13742 if (is_template)
13743 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13744 return build_qualified_name (NULL_TREE, scope, expr,
13745 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13746 }
13747
13748 if (!BASELINK_P (name) && !DECL_P (expr))
13749 {
13750 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13751 {
13752 /* A BIT_NOT_EXPR is used to represent a destructor. */
13753 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13754 {
13755 error ("qualifying type %qT does not match destructor name ~%qT",
13756 scope, TREE_OPERAND (expr, 0));
13757 expr = error_mark_node;
13758 }
13759 else
13760 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13761 /*is_type_p=*/0, false);
13762 }
13763 else
13764 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13765 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13766 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13767 {
13768 if (complain & tf_error)
13769 {
13770 error ("dependent-name %qE is parsed as a non-type, but "
13771 "instantiation yields a type", qualified_id);
13772 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13773 }
13774 return error_mark_node;
13775 }
13776 }
13777
13778 if (DECL_P (expr))
13779 {
13780 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13781 scope);
13782 /* Remember that there was a reference to this entity. */
13783 if (!mark_used (expr, complain) && !(complain & tf_error))
13784 return error_mark_node;
13785 }
13786
13787 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13788 {
13789 if (complain & tf_error)
13790 qualified_name_lookup_error (scope,
13791 TREE_OPERAND (qualified_id, 1),
13792 expr, input_location);
13793 return error_mark_node;
13794 }
13795
13796 if (is_template)
13797 {
13798 if (variable_template_p (expr))
13799 expr = lookup_and_finish_template_variable (expr, template_args,
13800 complain);
13801 else
13802 expr = lookup_template_function (expr, template_args);
13803 }
13804
13805 if (expr == error_mark_node && complain & tf_error)
13806 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13807 expr, input_location);
13808 else if (TYPE_P (scope))
13809 {
13810 expr = (adjust_result_of_qualified_name_lookup
13811 (expr, scope, current_nonlambda_class_type ()));
13812 expr = (finish_qualified_id_expr
13813 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13814 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13815 /*template_arg_p=*/false, complain));
13816 }
13817
13818 /* Expressions do not generally have reference type. */
13819 if (TREE_CODE (expr) != SCOPE_REF
13820 /* However, if we're about to form a pointer-to-member, we just
13821 want the referenced member referenced. */
13822 && TREE_CODE (expr) != OFFSET_REF)
13823 expr = convert_from_reference (expr);
13824
13825 return expr;
13826 }
13827
13828 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13829 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13830 for tsubst. */
13831
13832 static tree
13833 tsubst_init (tree init, tree decl, tree args,
13834 tsubst_flags_t complain, tree in_decl)
13835 {
13836 if (!init)
13837 return NULL_TREE;
13838
13839 init = tsubst_expr (init, args, complain, in_decl, false);
13840
13841 if (!init)
13842 {
13843 /* If we had an initializer but it
13844 instantiated to nothing,
13845 value-initialize the object. This will
13846 only occur when the initializer was a
13847 pack expansion where the parameter packs
13848 used in that expansion were of length
13849 zero. */
13850 init = build_value_init (TREE_TYPE (decl),
13851 complain);
13852 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13853 init = get_target_expr_sfinae (init, complain);
13854 }
13855
13856 return init;
13857 }
13858
13859 /* Like tsubst, but deals with expressions. This function just replaces
13860 template parms; to finish processing the resultant expression, use
13861 tsubst_copy_and_build or tsubst_expr. */
13862
13863 static tree
13864 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13865 {
13866 enum tree_code code;
13867 tree r;
13868
13869 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13870 return t;
13871
13872 code = TREE_CODE (t);
13873
13874 switch (code)
13875 {
13876 case PARM_DECL:
13877 r = retrieve_local_specialization (t);
13878
13879 if (r == NULL_TREE)
13880 {
13881 /* We get here for a use of 'this' in an NSDMI as part of a
13882 constructor call or as part of an aggregate initialization. */
13883 if (DECL_NAME (t) == this_identifier
13884 && ((current_function_decl
13885 && DECL_CONSTRUCTOR_P (current_function_decl))
13886 || (current_class_ref
13887 && TREE_CODE (current_class_ref) == PLACEHOLDER_EXPR)))
13888 return current_class_ptr;
13889
13890 /* This can happen for a parameter name used later in a function
13891 declaration (such as in a late-specified return type). Just
13892 make a dummy decl, since it's only used for its type. */
13893 gcc_assert (cp_unevaluated_operand != 0);
13894 r = tsubst_decl (t, args, complain);
13895 /* Give it the template pattern as its context; its true context
13896 hasn't been instantiated yet and this is good enough for
13897 mangling. */
13898 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13899 }
13900
13901 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13902 r = ARGUMENT_PACK_SELECT_ARG (r);
13903 if (!mark_used (r, complain) && !(complain & tf_error))
13904 return error_mark_node;
13905 return r;
13906
13907 case CONST_DECL:
13908 {
13909 tree enum_type;
13910 tree v;
13911
13912 if (DECL_TEMPLATE_PARM_P (t))
13913 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13914 /* There is no need to substitute into namespace-scope
13915 enumerators. */
13916 if (DECL_NAMESPACE_SCOPE_P (t))
13917 return t;
13918 /* If ARGS is NULL, then T is known to be non-dependent. */
13919 if (args == NULL_TREE)
13920 return scalar_constant_value (t);
13921
13922 /* Unfortunately, we cannot just call lookup_name here.
13923 Consider:
13924
13925 template <int I> int f() {
13926 enum E { a = I };
13927 struct S { void g() { E e = a; } };
13928 };
13929
13930 When we instantiate f<7>::S::g(), say, lookup_name is not
13931 clever enough to find f<7>::a. */
13932 enum_type
13933 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13934 /*entering_scope=*/0);
13935
13936 for (v = TYPE_VALUES (enum_type);
13937 v != NULL_TREE;
13938 v = TREE_CHAIN (v))
13939 if (TREE_PURPOSE (v) == DECL_NAME (t))
13940 return TREE_VALUE (v);
13941
13942 /* We didn't find the name. That should never happen; if
13943 name-lookup found it during preliminary parsing, we
13944 should find it again here during instantiation. */
13945 gcc_unreachable ();
13946 }
13947 return t;
13948
13949 case FIELD_DECL:
13950 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13951 {
13952 /* Check for a local specialization set up by
13953 tsubst_pack_expansion. */
13954 if (tree r = retrieve_local_specialization (t))
13955 {
13956 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13957 r = ARGUMENT_PACK_SELECT_ARG (r);
13958 return r;
13959 }
13960
13961 /* When retrieving a capture pack from a generic lambda, remove the
13962 lambda call op's own template argument list from ARGS. Only the
13963 template arguments active for the closure type should be used to
13964 retrieve the pack specialization. */
13965 if (LAMBDA_FUNCTION_P (current_function_decl)
13966 && (template_class_depth (DECL_CONTEXT (t))
13967 != TMPL_ARGS_DEPTH (args)))
13968 args = strip_innermost_template_args (args, 1);
13969
13970 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13971 tsubst_decl put in the hash table. */
13972 return retrieve_specialization (t, args, 0);
13973 }
13974
13975 if (DECL_CONTEXT (t))
13976 {
13977 tree ctx;
13978
13979 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13980 /*entering_scope=*/1);
13981 if (ctx != DECL_CONTEXT (t))
13982 {
13983 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13984 if (!r)
13985 {
13986 if (complain & tf_error)
13987 error ("using invalid field %qD", t);
13988 return error_mark_node;
13989 }
13990 return r;
13991 }
13992 }
13993
13994 return t;
13995
13996 case VAR_DECL:
13997 case FUNCTION_DECL:
13998 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13999 r = tsubst (t, args, complain, in_decl);
14000 else if (local_variable_p (t))
14001 {
14002 r = retrieve_local_specialization (t);
14003 if (r == NULL_TREE)
14004 {
14005 /* First try name lookup to find the instantiation. */
14006 r = lookup_name (DECL_NAME (t));
14007 if (r)
14008 {
14009 /* Make sure that the one we found is the one we want. */
14010 tree ctx = DECL_CONTEXT (t);
14011 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
14012 ctx = tsubst (ctx, args, complain, in_decl);
14013 if (ctx != DECL_CONTEXT (r))
14014 r = NULL_TREE;
14015 }
14016
14017 if (r)
14018 /* OK */;
14019 else
14020 {
14021 /* This can happen for a variable used in a
14022 late-specified return type of a local lambda, or for a
14023 local static or constant. Building a new VAR_DECL
14024 should be OK in all those cases. */
14025 r = tsubst_decl (t, args, complain);
14026 if (decl_maybe_constant_var_p (r))
14027 {
14028 /* We can't call cp_finish_decl, so handle the
14029 initializer by hand. */
14030 tree init = tsubst_init (DECL_INITIAL (t), r, args,
14031 complain, in_decl);
14032 if (!processing_template_decl)
14033 init = maybe_constant_init (init);
14034 if (processing_template_decl
14035 ? potential_constant_expression (init)
14036 : reduced_constant_expression_p (init))
14037 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
14038 = TREE_CONSTANT (r) = true;
14039 DECL_INITIAL (r) = init;
14040 }
14041 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
14042 || decl_constant_var_p (r)
14043 || errorcount || sorrycount);
14044 if (!processing_template_decl)
14045 {
14046 if (TREE_STATIC (r))
14047 rest_of_decl_compilation (r, toplevel_bindings_p (),
14048 at_eof);
14049 else
14050 r = process_outer_var_ref (r, complain);
14051 }
14052 }
14053 /* Remember this for subsequent uses. */
14054 if (local_specializations)
14055 register_local_specialization (r, t);
14056 }
14057 }
14058 else
14059 r = t;
14060 if (!mark_used (r, complain) && !(complain & tf_error))
14061 return error_mark_node;
14062 return r;
14063
14064 case NAMESPACE_DECL:
14065 return t;
14066
14067 case OVERLOAD:
14068 /* An OVERLOAD will always be a non-dependent overload set; an
14069 overload set from function scope will just be represented with an
14070 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14071 gcc_assert (!uses_template_parms (t));
14072 return t;
14073
14074 case BASELINK:
14075 return tsubst_baselink (t, current_nonlambda_class_type (),
14076 args, complain, in_decl);
14077
14078 case TEMPLATE_DECL:
14079 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14080 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14081 args, complain, in_decl);
14082 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14083 return tsubst (t, args, complain, in_decl);
14084 else if (DECL_CLASS_SCOPE_P (t)
14085 && uses_template_parms (DECL_CONTEXT (t)))
14086 {
14087 /* Template template argument like the following example need
14088 special treatment:
14089
14090 template <template <class> class TT> struct C {};
14091 template <class T> struct D {
14092 template <class U> struct E {};
14093 C<E> c; // #1
14094 };
14095 D<int> d; // #2
14096
14097 We are processing the template argument `E' in #1 for
14098 the template instantiation #2. Originally, `E' is a
14099 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14100 have to substitute this with one having context `D<int>'. */
14101
14102 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14103 return lookup_field (context, DECL_NAME(t), 0, false);
14104 }
14105 else
14106 /* Ordinary template template argument. */
14107 return t;
14108
14109 case CAST_EXPR:
14110 case REINTERPRET_CAST_EXPR:
14111 case CONST_CAST_EXPR:
14112 case STATIC_CAST_EXPR:
14113 case DYNAMIC_CAST_EXPR:
14114 case IMPLICIT_CONV_EXPR:
14115 case CONVERT_EXPR:
14116 case NOP_EXPR:
14117 {
14118 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14119 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14120 return build1 (code, type, op0);
14121 }
14122
14123 case SIZEOF_EXPR:
14124 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
14125 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
14126 {
14127 tree expanded, op = TREE_OPERAND (t, 0);
14128 int len = 0;
14129
14130 if (SIZEOF_EXPR_TYPE_P (t))
14131 op = TREE_TYPE (op);
14132
14133 ++cp_unevaluated_operand;
14134 ++c_inhibit_evaluation_warnings;
14135 /* We only want to compute the number of arguments. */
14136 if (PACK_EXPANSION_P (op))
14137 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14138 else
14139 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
14140 args, complain, in_decl);
14141 --cp_unevaluated_operand;
14142 --c_inhibit_evaluation_warnings;
14143
14144 if (TREE_CODE (expanded) == TREE_VEC)
14145 {
14146 len = TREE_VEC_LENGTH (expanded);
14147 /* Set TREE_USED for the benefit of -Wunused. */
14148 for (int i = 0; i < len; i++)
14149 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14150 }
14151
14152 if (expanded == error_mark_node)
14153 return error_mark_node;
14154 else if (PACK_EXPANSION_P (expanded)
14155 || (TREE_CODE (expanded) == TREE_VEC
14156 && pack_expansion_args_count (expanded)))
14157
14158 {
14159 if (PACK_EXPANSION_P (expanded))
14160 /* OK. */;
14161 else if (TREE_VEC_LENGTH (expanded) == 1)
14162 expanded = TREE_VEC_ELT (expanded, 0);
14163 else
14164 expanded = make_argument_pack (expanded);
14165
14166 if (TYPE_P (expanded))
14167 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14168 complain & tf_error);
14169 else
14170 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14171 complain & tf_error);
14172 }
14173 else
14174 return build_int_cst (size_type_node, len);
14175 }
14176 if (SIZEOF_EXPR_TYPE_P (t))
14177 {
14178 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14179 args, complain, in_decl);
14180 r = build1 (NOP_EXPR, r, error_mark_node);
14181 r = build1 (SIZEOF_EXPR,
14182 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14183 SIZEOF_EXPR_TYPE_P (r) = 1;
14184 return r;
14185 }
14186 /* Fall through */
14187
14188 case INDIRECT_REF:
14189 case NEGATE_EXPR:
14190 case TRUTH_NOT_EXPR:
14191 case BIT_NOT_EXPR:
14192 case ADDR_EXPR:
14193 case UNARY_PLUS_EXPR: /* Unary + */
14194 case ALIGNOF_EXPR:
14195 case AT_ENCODE_EXPR:
14196 case ARROW_EXPR:
14197 case THROW_EXPR:
14198 case TYPEID_EXPR:
14199 case REALPART_EXPR:
14200 case IMAGPART_EXPR:
14201 case PAREN_EXPR:
14202 {
14203 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14204 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14205 return build1 (code, type, op0);
14206 }
14207
14208 case COMPONENT_REF:
14209 {
14210 tree object;
14211 tree name;
14212
14213 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14214 name = TREE_OPERAND (t, 1);
14215 if (TREE_CODE (name) == BIT_NOT_EXPR)
14216 {
14217 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14218 complain, in_decl);
14219 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14220 }
14221 else if (TREE_CODE (name) == SCOPE_REF
14222 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14223 {
14224 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14225 complain, in_decl);
14226 name = TREE_OPERAND (name, 1);
14227 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14228 complain, in_decl);
14229 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14230 name = build_qualified_name (/*type=*/NULL_TREE,
14231 base, name,
14232 /*template_p=*/false);
14233 }
14234 else if (BASELINK_P (name))
14235 name = tsubst_baselink (name,
14236 non_reference (TREE_TYPE (object)),
14237 args, complain,
14238 in_decl);
14239 else
14240 name = tsubst_copy (name, args, complain, in_decl);
14241 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14242 }
14243
14244 case PLUS_EXPR:
14245 case MINUS_EXPR:
14246 case MULT_EXPR:
14247 case TRUNC_DIV_EXPR:
14248 case CEIL_DIV_EXPR:
14249 case FLOOR_DIV_EXPR:
14250 case ROUND_DIV_EXPR:
14251 case EXACT_DIV_EXPR:
14252 case BIT_AND_EXPR:
14253 case BIT_IOR_EXPR:
14254 case BIT_XOR_EXPR:
14255 case TRUNC_MOD_EXPR:
14256 case FLOOR_MOD_EXPR:
14257 case TRUTH_ANDIF_EXPR:
14258 case TRUTH_ORIF_EXPR:
14259 case TRUTH_AND_EXPR:
14260 case TRUTH_OR_EXPR:
14261 case RSHIFT_EXPR:
14262 case LSHIFT_EXPR:
14263 case RROTATE_EXPR:
14264 case LROTATE_EXPR:
14265 case EQ_EXPR:
14266 case NE_EXPR:
14267 case MAX_EXPR:
14268 case MIN_EXPR:
14269 case LE_EXPR:
14270 case GE_EXPR:
14271 case LT_EXPR:
14272 case GT_EXPR:
14273 case COMPOUND_EXPR:
14274 case DOTSTAR_EXPR:
14275 case MEMBER_REF:
14276 case PREDECREMENT_EXPR:
14277 case PREINCREMENT_EXPR:
14278 case POSTDECREMENT_EXPR:
14279 case POSTINCREMENT_EXPR:
14280 {
14281 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14282 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14283 return build_nt (code, op0, op1);
14284 }
14285
14286 case SCOPE_REF:
14287 {
14288 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14289 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14290 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14291 QUALIFIED_NAME_IS_TEMPLATE (t));
14292 }
14293
14294 case ARRAY_REF:
14295 {
14296 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14297 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14298 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14299 }
14300
14301 case CALL_EXPR:
14302 {
14303 int n = VL_EXP_OPERAND_LENGTH (t);
14304 tree result = build_vl_exp (CALL_EXPR, n);
14305 int i;
14306 for (i = 0; i < n; i++)
14307 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14308 complain, in_decl);
14309 return result;
14310 }
14311
14312 case COND_EXPR:
14313 case MODOP_EXPR:
14314 case PSEUDO_DTOR_EXPR:
14315 case VEC_PERM_EXPR:
14316 {
14317 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14318 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14319 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14320 r = build_nt (code, op0, op1, op2);
14321 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14322 return r;
14323 }
14324
14325 case NEW_EXPR:
14326 {
14327 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14328 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14329 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14330 r = build_nt (code, op0, op1, op2);
14331 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14332 return r;
14333 }
14334
14335 case DELETE_EXPR:
14336 {
14337 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14338 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14339 r = build_nt (code, op0, op1);
14340 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14341 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14342 return r;
14343 }
14344
14345 case TEMPLATE_ID_EXPR:
14346 {
14347 /* Substituted template arguments */
14348 tree fn = TREE_OPERAND (t, 0);
14349 tree targs = TREE_OPERAND (t, 1);
14350
14351 fn = tsubst_copy (fn, args, complain, in_decl);
14352 if (targs)
14353 targs = tsubst_template_args (targs, args, complain, in_decl);
14354
14355 return lookup_template_function (fn, targs);
14356 }
14357
14358 case TREE_LIST:
14359 {
14360 tree purpose, value, chain;
14361
14362 if (t == void_list_node)
14363 return t;
14364
14365 purpose = TREE_PURPOSE (t);
14366 if (purpose)
14367 purpose = tsubst_copy (purpose, args, complain, in_decl);
14368 value = TREE_VALUE (t);
14369 if (value)
14370 value = tsubst_copy (value, args, complain, in_decl);
14371 chain = TREE_CHAIN (t);
14372 if (chain && chain != void_type_node)
14373 chain = tsubst_copy (chain, args, complain, in_decl);
14374 if (purpose == TREE_PURPOSE (t)
14375 && value == TREE_VALUE (t)
14376 && chain == TREE_CHAIN (t))
14377 return t;
14378 return tree_cons (purpose, value, chain);
14379 }
14380
14381 case RECORD_TYPE:
14382 case UNION_TYPE:
14383 case ENUMERAL_TYPE:
14384 case INTEGER_TYPE:
14385 case TEMPLATE_TYPE_PARM:
14386 case TEMPLATE_TEMPLATE_PARM:
14387 case BOUND_TEMPLATE_TEMPLATE_PARM:
14388 case TEMPLATE_PARM_INDEX:
14389 case POINTER_TYPE:
14390 case REFERENCE_TYPE:
14391 case OFFSET_TYPE:
14392 case FUNCTION_TYPE:
14393 case METHOD_TYPE:
14394 case ARRAY_TYPE:
14395 case TYPENAME_TYPE:
14396 case UNBOUND_CLASS_TEMPLATE:
14397 case TYPEOF_TYPE:
14398 case DECLTYPE_TYPE:
14399 case TYPE_DECL:
14400 return tsubst (t, args, complain, in_decl);
14401
14402 case USING_DECL:
14403 t = DECL_NAME (t);
14404 /* Fall through. */
14405 case IDENTIFIER_NODE:
14406 if (IDENTIFIER_TYPENAME_P (t))
14407 {
14408 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14409 return mangle_conv_op_name_for_type (new_type);
14410 }
14411 else
14412 return t;
14413
14414 case CONSTRUCTOR:
14415 /* This is handled by tsubst_copy_and_build. */
14416 gcc_unreachable ();
14417
14418 case VA_ARG_EXPR:
14419 {
14420 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14421 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14422 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14423 }
14424
14425 case CLEANUP_POINT_EXPR:
14426 /* We shouldn't have built any of these during initial template
14427 generation. Instead, they should be built during instantiation
14428 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14429 gcc_unreachable ();
14430
14431 case OFFSET_REF:
14432 {
14433 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14434 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14435 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14436 r = build2 (code, type, op0, op1);
14437 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14438 if (!mark_used (TREE_OPERAND (r, 1), complain)
14439 && !(complain & tf_error))
14440 return error_mark_node;
14441 return r;
14442 }
14443
14444 case EXPR_PACK_EXPANSION:
14445 error ("invalid use of pack expansion expression");
14446 return error_mark_node;
14447
14448 case NONTYPE_ARGUMENT_PACK:
14449 error ("use %<...%> to expand argument pack");
14450 return error_mark_node;
14451
14452 case VOID_CST:
14453 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14454 return t;
14455
14456 case INTEGER_CST:
14457 case REAL_CST:
14458 case STRING_CST:
14459 case COMPLEX_CST:
14460 {
14461 /* Instantiate any typedefs in the type. */
14462 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14463 r = fold_convert (type, t);
14464 gcc_assert (TREE_CODE (r) == code);
14465 return r;
14466 }
14467
14468 case PTRMEM_CST:
14469 /* These can sometimes show up in a partial instantiation, but never
14470 involve template parms. */
14471 gcc_assert (!uses_template_parms (t));
14472 return t;
14473
14474 case UNARY_LEFT_FOLD_EXPR:
14475 return tsubst_unary_left_fold (t, args, complain, in_decl);
14476 case UNARY_RIGHT_FOLD_EXPR:
14477 return tsubst_unary_right_fold (t, args, complain, in_decl);
14478 case BINARY_LEFT_FOLD_EXPR:
14479 return tsubst_binary_left_fold (t, args, complain, in_decl);
14480 case BINARY_RIGHT_FOLD_EXPR:
14481 return tsubst_binary_right_fold (t, args, complain, in_decl);
14482
14483 default:
14484 /* We shouldn't get here, but keep going if !flag_checking. */
14485 if (flag_checking)
14486 gcc_unreachable ();
14487 return t;
14488 }
14489 }
14490
14491 /* Helper function for tsubst_omp_clauses, used for instantiation of
14492 OMP_CLAUSE_DECL of clauses. */
14493
14494 static tree
14495 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14496 tree in_decl)
14497 {
14498 if (decl == NULL_TREE)
14499 return NULL_TREE;
14500
14501 /* Handle an OpenMP array section represented as a TREE_LIST (or
14502 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14503 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14504 TREE_LIST. We can handle it exactly the same as an array section
14505 (purpose, value, and a chain), even though the nomenclature
14506 (low_bound, length, etc) is different. */
14507 if (TREE_CODE (decl) == TREE_LIST)
14508 {
14509 tree low_bound
14510 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14511 /*integral_constant_expression_p=*/false);
14512 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14513 /*integral_constant_expression_p=*/false);
14514 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14515 in_decl);
14516 if (TREE_PURPOSE (decl) == low_bound
14517 && TREE_VALUE (decl) == length
14518 && TREE_CHAIN (decl) == chain)
14519 return decl;
14520 tree ret = tree_cons (low_bound, length, chain);
14521 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14522 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14523 return ret;
14524 }
14525 tree ret = tsubst_expr (decl, args, complain, in_decl,
14526 /*integral_constant_expression_p=*/false);
14527 /* Undo convert_from_reference tsubst_expr could have called. */
14528 if (decl
14529 && REFERENCE_REF_P (ret)
14530 && !REFERENCE_REF_P (decl))
14531 ret = TREE_OPERAND (ret, 0);
14532 return ret;
14533 }
14534
14535 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14536
14537 static tree
14538 tsubst_omp_clauses (tree clauses, bool declare_simd, bool allow_fields,
14539 tree args, tsubst_flags_t complain, tree in_decl)
14540 {
14541 tree new_clauses = NULL_TREE, nc, oc;
14542 tree linear_no_step = NULL_TREE;
14543
14544 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14545 {
14546 nc = copy_node (oc);
14547 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14548 new_clauses = nc;
14549
14550 switch (OMP_CLAUSE_CODE (nc))
14551 {
14552 case OMP_CLAUSE_LASTPRIVATE:
14553 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14554 {
14555 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14556 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14557 in_decl, /*integral_constant_expression_p=*/false);
14558 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14559 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14560 }
14561 /* FALLTHRU */
14562 case OMP_CLAUSE_PRIVATE:
14563 case OMP_CLAUSE_SHARED:
14564 case OMP_CLAUSE_FIRSTPRIVATE:
14565 case OMP_CLAUSE_COPYIN:
14566 case OMP_CLAUSE_COPYPRIVATE:
14567 case OMP_CLAUSE_UNIFORM:
14568 case OMP_CLAUSE_DEPEND:
14569 case OMP_CLAUSE_FROM:
14570 case OMP_CLAUSE_TO:
14571 case OMP_CLAUSE_MAP:
14572 case OMP_CLAUSE_USE_DEVICE_PTR:
14573 case OMP_CLAUSE_IS_DEVICE_PTR:
14574 OMP_CLAUSE_DECL (nc)
14575 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14576 in_decl);
14577 break;
14578 case OMP_CLAUSE_IF:
14579 case OMP_CLAUSE_NUM_THREADS:
14580 case OMP_CLAUSE_SCHEDULE:
14581 case OMP_CLAUSE_COLLAPSE:
14582 case OMP_CLAUSE_FINAL:
14583 case OMP_CLAUSE_DEVICE:
14584 case OMP_CLAUSE_DIST_SCHEDULE:
14585 case OMP_CLAUSE_NUM_TEAMS:
14586 case OMP_CLAUSE_THREAD_LIMIT:
14587 case OMP_CLAUSE_SAFELEN:
14588 case OMP_CLAUSE_SIMDLEN:
14589 case OMP_CLAUSE_NUM_TASKS:
14590 case OMP_CLAUSE_GRAINSIZE:
14591 case OMP_CLAUSE_PRIORITY:
14592 case OMP_CLAUSE_ORDERED:
14593 case OMP_CLAUSE_HINT:
14594 case OMP_CLAUSE_NUM_GANGS:
14595 case OMP_CLAUSE_NUM_WORKERS:
14596 case OMP_CLAUSE_VECTOR_LENGTH:
14597 case OMP_CLAUSE_WORKER:
14598 case OMP_CLAUSE_VECTOR:
14599 case OMP_CLAUSE_ASYNC:
14600 case OMP_CLAUSE_WAIT:
14601 OMP_CLAUSE_OPERAND (nc, 0)
14602 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14603 in_decl, /*integral_constant_expression_p=*/false);
14604 break;
14605 case OMP_CLAUSE_REDUCTION:
14606 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14607 {
14608 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14609 if (TREE_CODE (placeholder) == SCOPE_REF)
14610 {
14611 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14612 complain, in_decl);
14613 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14614 = build_qualified_name (NULL_TREE, scope,
14615 TREE_OPERAND (placeholder, 1),
14616 false);
14617 }
14618 else
14619 gcc_assert (identifier_p (placeholder));
14620 }
14621 OMP_CLAUSE_DECL (nc)
14622 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14623 in_decl);
14624 break;
14625 case OMP_CLAUSE_GANG:
14626 case OMP_CLAUSE_ALIGNED:
14627 OMP_CLAUSE_DECL (nc)
14628 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14629 in_decl);
14630 OMP_CLAUSE_OPERAND (nc, 1)
14631 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14632 in_decl, /*integral_constant_expression_p=*/false);
14633 break;
14634 case OMP_CLAUSE_LINEAR:
14635 OMP_CLAUSE_DECL (nc)
14636 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14637 in_decl);
14638 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14639 {
14640 gcc_assert (!linear_no_step);
14641 linear_no_step = nc;
14642 }
14643 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14644 OMP_CLAUSE_LINEAR_STEP (nc)
14645 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14646 complain, in_decl);
14647 else
14648 OMP_CLAUSE_LINEAR_STEP (nc)
14649 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14650 in_decl,
14651 /*integral_constant_expression_p=*/false);
14652 break;
14653 case OMP_CLAUSE_NOWAIT:
14654 case OMP_CLAUSE_DEFAULT:
14655 case OMP_CLAUSE_UNTIED:
14656 case OMP_CLAUSE_MERGEABLE:
14657 case OMP_CLAUSE_INBRANCH:
14658 case OMP_CLAUSE_NOTINBRANCH:
14659 case OMP_CLAUSE_PROC_BIND:
14660 case OMP_CLAUSE_FOR:
14661 case OMP_CLAUSE_PARALLEL:
14662 case OMP_CLAUSE_SECTIONS:
14663 case OMP_CLAUSE_TASKGROUP:
14664 case OMP_CLAUSE_NOGROUP:
14665 case OMP_CLAUSE_THREADS:
14666 case OMP_CLAUSE_SIMD:
14667 case OMP_CLAUSE_DEFAULTMAP:
14668 case OMP_CLAUSE_INDEPENDENT:
14669 case OMP_CLAUSE_AUTO:
14670 case OMP_CLAUSE_SEQ:
14671 break;
14672 case OMP_CLAUSE_TILE:
14673 {
14674 tree lnc, loc;
14675 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14676 loc = OMP_CLAUSE_TILE_LIST (oc);
14677 loc;
14678 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14679 {
14680 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14681 complain, in_decl, false);
14682 }
14683 }
14684 break;
14685 default:
14686 gcc_unreachable ();
14687 }
14688 if (allow_fields)
14689 switch (OMP_CLAUSE_CODE (nc))
14690 {
14691 case OMP_CLAUSE_SHARED:
14692 case OMP_CLAUSE_PRIVATE:
14693 case OMP_CLAUSE_FIRSTPRIVATE:
14694 case OMP_CLAUSE_LASTPRIVATE:
14695 case OMP_CLAUSE_COPYPRIVATE:
14696 case OMP_CLAUSE_LINEAR:
14697 case OMP_CLAUSE_REDUCTION:
14698 case OMP_CLAUSE_USE_DEVICE_PTR:
14699 case OMP_CLAUSE_IS_DEVICE_PTR:
14700 /* tsubst_expr on SCOPE_REF results in returning
14701 finish_non_static_data_member result. Undo that here. */
14702 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14703 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14704 == IDENTIFIER_NODE))
14705 {
14706 tree t = OMP_CLAUSE_DECL (nc);
14707 tree v = t;
14708 while (v)
14709 switch (TREE_CODE (v))
14710 {
14711 case COMPONENT_REF:
14712 case MEM_REF:
14713 case INDIRECT_REF:
14714 CASE_CONVERT:
14715 case POINTER_PLUS_EXPR:
14716 v = TREE_OPERAND (v, 0);
14717 continue;
14718 case PARM_DECL:
14719 if (DECL_CONTEXT (v) == current_function_decl
14720 && DECL_ARTIFICIAL (v)
14721 && DECL_NAME (v) == this_identifier)
14722 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14723 /* FALLTHRU */
14724 default:
14725 v = NULL_TREE;
14726 break;
14727 }
14728 }
14729 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14730 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14731 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14732 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14733 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14734 {
14735 tree decl = OMP_CLAUSE_DECL (nc);
14736 if (VAR_P (decl))
14737 {
14738 if (!DECL_LANG_SPECIFIC (decl))
14739 retrofit_lang_decl (decl);
14740 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14741 }
14742 }
14743 break;
14744 default:
14745 break;
14746 }
14747 }
14748
14749 new_clauses = nreverse (new_clauses);
14750 if (!declare_simd)
14751 {
14752 new_clauses = finish_omp_clauses (new_clauses, allow_fields);
14753 if (linear_no_step)
14754 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14755 if (nc == linear_no_step)
14756 {
14757 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14758 break;
14759 }
14760 }
14761 return new_clauses;
14762 }
14763
14764 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14765
14766 static tree
14767 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14768 tree in_decl)
14769 {
14770 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14771
14772 tree purpose, value, chain;
14773
14774 if (t == NULL)
14775 return t;
14776
14777 if (TREE_CODE (t) != TREE_LIST)
14778 return tsubst_copy_and_build (t, args, complain, in_decl,
14779 /*function_p=*/false,
14780 /*integral_constant_expression_p=*/false);
14781
14782 if (t == void_list_node)
14783 return t;
14784
14785 purpose = TREE_PURPOSE (t);
14786 if (purpose)
14787 purpose = RECUR (purpose);
14788 value = TREE_VALUE (t);
14789 if (value)
14790 {
14791 if (TREE_CODE (value) != LABEL_DECL)
14792 value = RECUR (value);
14793 else
14794 {
14795 value = lookup_label (DECL_NAME (value));
14796 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14797 TREE_USED (value) = 1;
14798 }
14799 }
14800 chain = TREE_CHAIN (t);
14801 if (chain && chain != void_type_node)
14802 chain = RECUR (chain);
14803 return tree_cons (purpose, value, chain);
14804 #undef RECUR
14805 }
14806
14807 /* Used to temporarily communicate the list of #pragma omp parallel
14808 clauses to #pragma omp for instantiation if they are combined
14809 together. */
14810
14811 static tree *omp_parallel_combined_clauses;
14812
14813 /* Substitute one OMP_FOR iterator. */
14814
14815 static void
14816 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14817 tree initv, tree condv, tree incrv, tree *clauses,
14818 tree args, tsubst_flags_t complain, tree in_decl,
14819 bool integral_constant_expression_p)
14820 {
14821 #define RECUR(NODE) \
14822 tsubst_expr ((NODE), args, complain, in_decl, \
14823 integral_constant_expression_p)
14824 tree decl, init, cond, incr;
14825
14826 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14827 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14828
14829 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14830 {
14831 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14832 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14833 }
14834
14835 decl = TREE_OPERAND (init, 0);
14836 init = TREE_OPERAND (init, 1);
14837 tree decl_expr = NULL_TREE;
14838 if (init && TREE_CODE (init) == DECL_EXPR)
14839 {
14840 /* We need to jump through some hoops to handle declarations in the
14841 for-init-statement, since we might need to handle auto deduction,
14842 but we need to keep control of initialization. */
14843 decl_expr = init;
14844 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14845 decl = tsubst_decl (decl, args, complain);
14846 }
14847 else
14848 {
14849 if (TREE_CODE (decl) == SCOPE_REF)
14850 {
14851 decl = RECUR (decl);
14852 if (TREE_CODE (decl) == COMPONENT_REF)
14853 {
14854 tree v = decl;
14855 while (v)
14856 switch (TREE_CODE (v))
14857 {
14858 case COMPONENT_REF:
14859 case MEM_REF:
14860 case INDIRECT_REF:
14861 CASE_CONVERT:
14862 case POINTER_PLUS_EXPR:
14863 v = TREE_OPERAND (v, 0);
14864 continue;
14865 case PARM_DECL:
14866 if (DECL_CONTEXT (v) == current_function_decl
14867 && DECL_ARTIFICIAL (v)
14868 && DECL_NAME (v) == this_identifier)
14869 {
14870 decl = TREE_OPERAND (decl, 1);
14871 decl = omp_privatize_field (decl, false);
14872 }
14873 /* FALLTHRU */
14874 default:
14875 v = NULL_TREE;
14876 break;
14877 }
14878 }
14879 }
14880 else
14881 decl = RECUR (decl);
14882 }
14883 init = RECUR (init);
14884
14885 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14886 if (auto_node && init)
14887 TREE_TYPE (decl)
14888 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14889
14890 gcc_assert (!type_dependent_expression_p (decl));
14891
14892 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14893 {
14894 if (decl_expr)
14895 {
14896 /* Declare the variable, but don't let that initialize it. */
14897 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14898 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14899 RECUR (decl_expr);
14900 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14901 }
14902
14903 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14904 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14905 if (TREE_CODE (incr) == MODIFY_EXPR)
14906 {
14907 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14908 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14909 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14910 NOP_EXPR, rhs, complain);
14911 }
14912 else
14913 incr = RECUR (incr);
14914 TREE_VEC_ELT (declv, i) = decl;
14915 TREE_VEC_ELT (initv, i) = init;
14916 TREE_VEC_ELT (condv, i) = cond;
14917 TREE_VEC_ELT (incrv, i) = incr;
14918 return;
14919 }
14920
14921 if (decl_expr)
14922 {
14923 /* Declare and initialize the variable. */
14924 RECUR (decl_expr);
14925 init = NULL_TREE;
14926 }
14927 else if (init)
14928 {
14929 tree *pc;
14930 int j;
14931 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14932 {
14933 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14934 {
14935 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14936 && OMP_CLAUSE_DECL (*pc) == decl)
14937 break;
14938 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14939 && OMP_CLAUSE_DECL (*pc) == decl)
14940 {
14941 if (j)
14942 break;
14943 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14944 tree c = *pc;
14945 *pc = OMP_CLAUSE_CHAIN (c);
14946 OMP_CLAUSE_CHAIN (c) = *clauses;
14947 *clauses = c;
14948 }
14949 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14950 && OMP_CLAUSE_DECL (*pc) == decl)
14951 {
14952 error ("iteration variable %qD should not be firstprivate",
14953 decl);
14954 *pc = OMP_CLAUSE_CHAIN (*pc);
14955 }
14956 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14957 && OMP_CLAUSE_DECL (*pc) == decl)
14958 {
14959 error ("iteration variable %qD should not be reduction",
14960 decl);
14961 *pc = OMP_CLAUSE_CHAIN (*pc);
14962 }
14963 else
14964 pc = &OMP_CLAUSE_CHAIN (*pc);
14965 }
14966 if (*pc)
14967 break;
14968 }
14969 if (*pc == NULL_TREE)
14970 {
14971 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14972 OMP_CLAUSE_DECL (c) = decl;
14973 c = finish_omp_clauses (c, true);
14974 if (c)
14975 {
14976 OMP_CLAUSE_CHAIN (c) = *clauses;
14977 *clauses = c;
14978 }
14979 }
14980 }
14981 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14982 if (COMPARISON_CLASS_P (cond))
14983 {
14984 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14985 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14986 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14987 }
14988 else
14989 cond = RECUR (cond);
14990 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14991 switch (TREE_CODE (incr))
14992 {
14993 case PREINCREMENT_EXPR:
14994 case PREDECREMENT_EXPR:
14995 case POSTINCREMENT_EXPR:
14996 case POSTDECREMENT_EXPR:
14997 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14998 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14999 break;
15000 case MODIFY_EXPR:
15001 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15002 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15003 {
15004 tree rhs = TREE_OPERAND (incr, 1);
15005 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15006 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15007 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15008 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15009 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15010 rhs0, rhs1));
15011 }
15012 else
15013 incr = RECUR (incr);
15014 break;
15015 case MODOP_EXPR:
15016 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15017 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15018 {
15019 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15020 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15021 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
15022 TREE_TYPE (decl), lhs,
15023 RECUR (TREE_OPERAND (incr, 2))));
15024 }
15025 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
15026 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
15027 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
15028 {
15029 tree rhs = TREE_OPERAND (incr, 2);
15030 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15031 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15032 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15033 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15034 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15035 rhs0, rhs1));
15036 }
15037 else
15038 incr = RECUR (incr);
15039 break;
15040 default:
15041 incr = RECUR (incr);
15042 break;
15043 }
15044
15045 TREE_VEC_ELT (declv, i) = decl;
15046 TREE_VEC_ELT (initv, i) = init;
15047 TREE_VEC_ELT (condv, i) = cond;
15048 TREE_VEC_ELT (incrv, i) = incr;
15049 #undef RECUR
15050 }
15051
15052 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15053 of OMP_TARGET's body. */
15054
15055 static tree
15056 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
15057 {
15058 *walk_subtrees = 0;
15059 switch (TREE_CODE (*tp))
15060 {
15061 case OMP_TEAMS:
15062 return *tp;
15063 case BIND_EXPR:
15064 case STATEMENT_LIST:
15065 *walk_subtrees = 1;
15066 break;
15067 default:
15068 break;
15069 }
15070 return NULL_TREE;
15071 }
15072
15073 /* Like tsubst_copy for expressions, etc. but also does semantic
15074 processing. */
15075
15076 tree
15077 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15078 bool integral_constant_expression_p)
15079 {
15080 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15081 #define RECUR(NODE) \
15082 tsubst_expr ((NODE), args, complain, in_decl, \
15083 integral_constant_expression_p)
15084
15085 tree stmt, tmp;
15086 tree r;
15087 location_t loc;
15088
15089 if (t == NULL_TREE || t == error_mark_node)
15090 return t;
15091
15092 loc = input_location;
15093 if (EXPR_HAS_LOCATION (t))
15094 input_location = EXPR_LOCATION (t);
15095 if (STATEMENT_CODE_P (TREE_CODE (t)))
15096 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15097
15098 switch (TREE_CODE (t))
15099 {
15100 case STATEMENT_LIST:
15101 {
15102 tree_stmt_iterator i;
15103 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15104 RECUR (tsi_stmt (i));
15105 break;
15106 }
15107
15108 case CTOR_INITIALIZER:
15109 finish_mem_initializers (tsubst_initializer_list
15110 (TREE_OPERAND (t, 0), args));
15111 break;
15112
15113 case RETURN_EXPR:
15114 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15115 break;
15116
15117 case EXPR_STMT:
15118 tmp = RECUR (EXPR_STMT_EXPR (t));
15119 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15120 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15121 else
15122 finish_expr_stmt (tmp);
15123 break;
15124
15125 case USING_STMT:
15126 do_using_directive (USING_STMT_NAMESPACE (t));
15127 break;
15128
15129 case DECL_EXPR:
15130 {
15131 tree decl, pattern_decl;
15132 tree init;
15133
15134 pattern_decl = decl = DECL_EXPR_DECL (t);
15135 if (TREE_CODE (decl) == LABEL_DECL)
15136 finish_label_decl (DECL_NAME (decl));
15137 else if (TREE_CODE (decl) == USING_DECL)
15138 {
15139 tree scope = USING_DECL_SCOPE (decl);
15140 tree name = DECL_NAME (decl);
15141 tree decl;
15142
15143 scope = tsubst (scope, args, complain, in_decl);
15144 decl = lookup_qualified_name (scope, name,
15145 /*is_type_p=*/false,
15146 /*complain=*/false);
15147 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15148 qualified_name_lookup_error (scope, name, decl, input_location);
15149 else
15150 do_local_using_decl (decl, scope, name);
15151 }
15152 else if (DECL_PACK_P (decl))
15153 {
15154 /* Don't build up decls for a variadic capture proxy, we'll
15155 instantiate the elements directly as needed. */
15156 break;
15157 }
15158 else
15159 {
15160 init = DECL_INITIAL (decl);
15161 decl = tsubst (decl, args, complain, in_decl);
15162 if (decl != error_mark_node)
15163 {
15164 /* By marking the declaration as instantiated, we avoid
15165 trying to instantiate it. Since instantiate_decl can't
15166 handle local variables, and since we've already done
15167 all that needs to be done, that's the right thing to
15168 do. */
15169 if (VAR_P (decl))
15170 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15171 if (VAR_P (decl)
15172 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15173 /* Anonymous aggregates are a special case. */
15174 finish_anon_union (decl);
15175 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15176 {
15177 DECL_CONTEXT (decl) = current_function_decl;
15178 if (DECL_NAME (decl) == this_identifier)
15179 {
15180 tree lam = DECL_CONTEXT (current_function_decl);
15181 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15182 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15183 }
15184 insert_capture_proxy (decl);
15185 }
15186 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15187 /* We already did a pushtag. */;
15188 else if (TREE_CODE (decl) == FUNCTION_DECL
15189 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15190 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15191 {
15192 DECL_CONTEXT (decl) = NULL_TREE;
15193 pushdecl (decl);
15194 DECL_CONTEXT (decl) = current_function_decl;
15195 cp_check_omp_declare_reduction (decl);
15196 }
15197 else if (VAR_P (decl)
15198 && DECL_PRETTY_FUNCTION_P (decl))
15199 {
15200 /* For __PRETTY_FUNCTION__ we have to adjust the
15201 initializer. */
15202 const char *const name
15203 = cxx_printable_name (current_function_decl, 2);
15204 init = cp_fname_init (name, &TREE_TYPE (decl));
15205 SET_DECL_VALUE_EXPR (decl, init);
15206 DECL_HAS_VALUE_EXPR_P (decl) = 1;
15207 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
15208 maybe_push_decl (decl);
15209 }
15210 else
15211 {
15212 int const_init = false;
15213 maybe_push_decl (decl);
15214
15215 init = tsubst_init (init, decl, args, complain, in_decl);
15216
15217 if (VAR_P (decl))
15218 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15219 (pattern_decl));
15220 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15221 }
15222 }
15223 }
15224
15225 break;
15226 }
15227
15228 case FOR_STMT:
15229 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15230 RECUR (FOR_INIT_STMT (t));
15231 finish_for_init_stmt (stmt);
15232 tmp = RECUR (FOR_COND (t));
15233 finish_for_cond (tmp, stmt, false);
15234 tmp = RECUR (FOR_EXPR (t));
15235 finish_for_expr (tmp, stmt);
15236 RECUR (FOR_BODY (t));
15237 finish_for_stmt (stmt);
15238 break;
15239
15240 case RANGE_FOR_STMT:
15241 {
15242 tree decl, expr;
15243 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15244 decl = RANGE_FOR_DECL (t);
15245 decl = tsubst (decl, args, complain, in_decl);
15246 maybe_push_decl (decl);
15247 expr = RECUR (RANGE_FOR_EXPR (t));
15248 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15249 RECUR (RANGE_FOR_BODY (t));
15250 finish_for_stmt (stmt);
15251 }
15252 break;
15253
15254 case WHILE_STMT:
15255 stmt = begin_while_stmt ();
15256 tmp = RECUR (WHILE_COND (t));
15257 finish_while_stmt_cond (tmp, stmt, false);
15258 RECUR (WHILE_BODY (t));
15259 finish_while_stmt (stmt);
15260 break;
15261
15262 case DO_STMT:
15263 stmt = begin_do_stmt ();
15264 RECUR (DO_BODY (t));
15265 finish_do_body (stmt);
15266 tmp = RECUR (DO_COND (t));
15267 finish_do_stmt (tmp, stmt, false);
15268 break;
15269
15270 case IF_STMT:
15271 stmt = begin_if_stmt ();
15272 tmp = RECUR (IF_COND (t));
15273 finish_if_stmt_cond (tmp, stmt);
15274 RECUR (THEN_CLAUSE (t));
15275 finish_then_clause (stmt);
15276
15277 if (ELSE_CLAUSE (t))
15278 {
15279 begin_else_clause (stmt);
15280 RECUR (ELSE_CLAUSE (t));
15281 finish_else_clause (stmt);
15282 }
15283
15284 finish_if_stmt (stmt);
15285 break;
15286
15287 case BIND_EXPR:
15288 if (BIND_EXPR_BODY_BLOCK (t))
15289 stmt = begin_function_body ();
15290 else
15291 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15292 ? BCS_TRY_BLOCK : 0);
15293
15294 RECUR (BIND_EXPR_BODY (t));
15295
15296 if (BIND_EXPR_BODY_BLOCK (t))
15297 finish_function_body (stmt);
15298 else
15299 finish_compound_stmt (stmt);
15300 break;
15301
15302 case BREAK_STMT:
15303 finish_break_stmt ();
15304 break;
15305
15306 case CONTINUE_STMT:
15307 finish_continue_stmt ();
15308 break;
15309
15310 case SWITCH_STMT:
15311 stmt = begin_switch_stmt ();
15312 tmp = RECUR (SWITCH_STMT_COND (t));
15313 finish_switch_cond (tmp, stmt);
15314 RECUR (SWITCH_STMT_BODY (t));
15315 finish_switch_stmt (stmt);
15316 break;
15317
15318 case CASE_LABEL_EXPR:
15319 {
15320 tree low = RECUR (CASE_LOW (t));
15321 tree high = RECUR (CASE_HIGH (t));
15322 finish_case_label (EXPR_LOCATION (t), low, high);
15323 }
15324 break;
15325
15326 case LABEL_EXPR:
15327 {
15328 tree decl = LABEL_EXPR_LABEL (t);
15329 tree label;
15330
15331 label = finish_label_stmt (DECL_NAME (decl));
15332 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15333 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15334 }
15335 break;
15336
15337 case GOTO_EXPR:
15338 tmp = GOTO_DESTINATION (t);
15339 if (TREE_CODE (tmp) != LABEL_DECL)
15340 /* Computed goto's must be tsubst'd into. On the other hand,
15341 non-computed gotos must not be; the identifier in question
15342 will have no binding. */
15343 tmp = RECUR (tmp);
15344 else
15345 tmp = DECL_NAME (tmp);
15346 finish_goto_stmt (tmp);
15347 break;
15348
15349 case ASM_EXPR:
15350 {
15351 tree string = RECUR (ASM_STRING (t));
15352 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15353 complain, in_decl);
15354 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15355 complain, in_decl);
15356 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15357 complain, in_decl);
15358 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15359 complain, in_decl);
15360 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15361 clobbers, labels);
15362 tree asm_expr = tmp;
15363 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15364 asm_expr = TREE_OPERAND (asm_expr, 0);
15365 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15366 }
15367 break;
15368
15369 case TRY_BLOCK:
15370 if (CLEANUP_P (t))
15371 {
15372 stmt = begin_try_block ();
15373 RECUR (TRY_STMTS (t));
15374 finish_cleanup_try_block (stmt);
15375 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15376 }
15377 else
15378 {
15379 tree compound_stmt = NULL_TREE;
15380
15381 if (FN_TRY_BLOCK_P (t))
15382 stmt = begin_function_try_block (&compound_stmt);
15383 else
15384 stmt = begin_try_block ();
15385
15386 RECUR (TRY_STMTS (t));
15387
15388 if (FN_TRY_BLOCK_P (t))
15389 finish_function_try_block (stmt);
15390 else
15391 finish_try_block (stmt);
15392
15393 RECUR (TRY_HANDLERS (t));
15394 if (FN_TRY_BLOCK_P (t))
15395 finish_function_handler_sequence (stmt, compound_stmt);
15396 else
15397 finish_handler_sequence (stmt);
15398 }
15399 break;
15400
15401 case HANDLER:
15402 {
15403 tree decl = HANDLER_PARMS (t);
15404
15405 if (decl)
15406 {
15407 decl = tsubst (decl, args, complain, in_decl);
15408 /* Prevent instantiate_decl from trying to instantiate
15409 this variable. We've already done all that needs to be
15410 done. */
15411 if (decl != error_mark_node)
15412 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15413 }
15414 stmt = begin_handler ();
15415 finish_handler_parms (decl, stmt);
15416 RECUR (HANDLER_BODY (t));
15417 finish_handler (stmt);
15418 }
15419 break;
15420
15421 case TAG_DEFN:
15422 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15423 if (CLASS_TYPE_P (tmp))
15424 {
15425 /* Local classes are not independent templates; they are
15426 instantiated along with their containing function. And this
15427 way we don't have to deal with pushing out of one local class
15428 to instantiate a member of another local class. */
15429 tree fn;
15430 /* Closures are handled by the LAMBDA_EXPR. */
15431 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15432 complete_type (tmp);
15433 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15434 if (!DECL_ARTIFICIAL (fn))
15435 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15436 }
15437 break;
15438
15439 case STATIC_ASSERT:
15440 {
15441 tree condition;
15442
15443 ++c_inhibit_evaluation_warnings;
15444 condition =
15445 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15446 args,
15447 complain, in_decl,
15448 /*integral_constant_expression_p=*/true);
15449 --c_inhibit_evaluation_warnings;
15450
15451 finish_static_assert (condition,
15452 STATIC_ASSERT_MESSAGE (t),
15453 STATIC_ASSERT_SOURCE_LOCATION (t),
15454 /*member_p=*/false);
15455 }
15456 break;
15457
15458 case OACC_KERNELS:
15459 case OACC_PARALLEL:
15460 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, false, args, complain,
15461 in_decl);
15462 stmt = begin_omp_parallel ();
15463 RECUR (OMP_BODY (t));
15464 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15465 break;
15466
15467 case OMP_PARALLEL:
15468 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15469 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false, true,
15470 args, complain, in_decl);
15471 if (OMP_PARALLEL_COMBINED (t))
15472 omp_parallel_combined_clauses = &tmp;
15473 stmt = begin_omp_parallel ();
15474 RECUR (OMP_PARALLEL_BODY (t));
15475 gcc_assert (omp_parallel_combined_clauses == NULL);
15476 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15477 = OMP_PARALLEL_COMBINED (t);
15478 pop_omp_privatization_clauses (r);
15479 break;
15480
15481 case OMP_TASK:
15482 r = push_omp_privatization_clauses (false);
15483 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false, true,
15484 args, complain, in_decl);
15485 stmt = begin_omp_task ();
15486 RECUR (OMP_TASK_BODY (t));
15487 finish_omp_task (tmp, stmt);
15488 pop_omp_privatization_clauses (r);
15489 break;
15490
15491 case OMP_FOR:
15492 case OMP_SIMD:
15493 case CILK_SIMD:
15494 case CILK_FOR:
15495 case OMP_DISTRIBUTE:
15496 case OMP_TASKLOOP:
15497 case OACC_LOOP:
15498 {
15499 tree clauses, body, pre_body;
15500 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15501 tree orig_declv = NULL_TREE;
15502 tree incrv = NULL_TREE;
15503 int i;
15504
15505 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15506 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
15507 TREE_CODE (t) != OACC_LOOP,
15508 args, complain, in_decl);
15509 if (OMP_FOR_INIT (t) != NULL_TREE)
15510 {
15511 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15512 if (OMP_FOR_ORIG_DECLS (t))
15513 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15514 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15515 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15516 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15517 }
15518
15519 stmt = begin_omp_structured_block ();
15520
15521 pre_body = push_stmt_list ();
15522 RECUR (OMP_FOR_PRE_BODY (t));
15523 pre_body = pop_stmt_list (pre_body);
15524
15525 if (OMP_FOR_INIT (t) != NULL_TREE)
15526 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15527 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15528 incrv, &clauses, args, complain, in_decl,
15529 integral_constant_expression_p);
15530 omp_parallel_combined_clauses = NULL;
15531
15532 body = push_stmt_list ();
15533 RECUR (OMP_FOR_BODY (t));
15534 body = pop_stmt_list (body);
15535
15536 if (OMP_FOR_INIT (t) != NULL_TREE)
15537 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15538 orig_declv, initv, condv, incrv, body, pre_body,
15539 NULL, clauses);
15540 else
15541 {
15542 t = make_node (TREE_CODE (t));
15543 TREE_TYPE (t) = void_type_node;
15544 OMP_FOR_BODY (t) = body;
15545 OMP_FOR_PRE_BODY (t) = pre_body;
15546 OMP_FOR_CLAUSES (t) = clauses;
15547 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15548 add_stmt (t);
15549 }
15550
15551 add_stmt (finish_omp_structured_block (stmt));
15552 pop_omp_privatization_clauses (r);
15553 }
15554 break;
15555
15556 case OMP_SECTIONS:
15557 omp_parallel_combined_clauses = NULL;
15558 /* FALLTHRU */
15559 case OMP_SINGLE:
15560 case OMP_TEAMS:
15561 case OMP_CRITICAL:
15562 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15563 && OMP_TEAMS_COMBINED (t));
15564 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15565 args, complain, in_decl);
15566 stmt = push_stmt_list ();
15567 RECUR (OMP_BODY (t));
15568 stmt = pop_stmt_list (stmt);
15569
15570 t = copy_node (t);
15571 OMP_BODY (t) = stmt;
15572 OMP_CLAUSES (t) = tmp;
15573 add_stmt (t);
15574 pop_omp_privatization_clauses (r);
15575 break;
15576
15577 case OACC_DATA:
15578 case OMP_TARGET_DATA:
15579 case OMP_TARGET:
15580 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15581 TREE_CODE (t) != OACC_DATA,
15582 args, complain, in_decl);
15583 keep_next_level (true);
15584 stmt = begin_omp_structured_block ();
15585
15586 RECUR (OMP_BODY (t));
15587 stmt = finish_omp_structured_block (stmt);
15588
15589 t = copy_node (t);
15590 OMP_BODY (t) = stmt;
15591 OMP_CLAUSES (t) = tmp;
15592 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15593 {
15594 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15595 if (teams)
15596 {
15597 /* For combined target teams, ensure the num_teams and
15598 thread_limit clause expressions are evaluated on the host,
15599 before entering the target construct. */
15600 tree c;
15601 for (c = OMP_TEAMS_CLAUSES (teams);
15602 c; c = OMP_CLAUSE_CHAIN (c))
15603 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15604 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15605 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15606 {
15607 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15608 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15609 if (expr == error_mark_node)
15610 continue;
15611 tmp = TARGET_EXPR_SLOT (expr);
15612 add_stmt (expr);
15613 OMP_CLAUSE_OPERAND (c, 0) = expr;
15614 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15615 OMP_CLAUSE_FIRSTPRIVATE);
15616 OMP_CLAUSE_DECL (tc) = tmp;
15617 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15618 OMP_TARGET_CLAUSES (t) = tc;
15619 }
15620 }
15621 }
15622 add_stmt (t);
15623 break;
15624
15625 case OACC_DECLARE:
15626 t = copy_node (t);
15627 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), false, false,
15628 args, complain, in_decl);
15629 OACC_DECLARE_CLAUSES (t) = tmp;
15630 add_stmt (t);
15631 break;
15632
15633 case OMP_TARGET_UPDATE:
15634 case OMP_TARGET_ENTER_DATA:
15635 case OMP_TARGET_EXIT_DATA:
15636 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, true,
15637 args, complain, in_decl);
15638 t = copy_node (t);
15639 OMP_STANDALONE_CLAUSES (t) = tmp;
15640 add_stmt (t);
15641 break;
15642
15643 case OACC_ENTER_DATA:
15644 case OACC_EXIT_DATA:
15645 case OACC_UPDATE:
15646 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, false,
15647 args, complain, in_decl);
15648 t = copy_node (t);
15649 OMP_STANDALONE_CLAUSES (t) = tmp;
15650 add_stmt (t);
15651 break;
15652
15653 case OMP_ORDERED:
15654 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), false, true,
15655 args, complain, in_decl);
15656 stmt = push_stmt_list ();
15657 RECUR (OMP_BODY (t));
15658 stmt = pop_stmt_list (stmt);
15659
15660 t = copy_node (t);
15661 OMP_BODY (t) = stmt;
15662 OMP_ORDERED_CLAUSES (t) = tmp;
15663 add_stmt (t);
15664 break;
15665
15666 case OMP_SECTION:
15667 case OMP_MASTER:
15668 case OMP_TASKGROUP:
15669 stmt = push_stmt_list ();
15670 RECUR (OMP_BODY (t));
15671 stmt = pop_stmt_list (stmt);
15672
15673 t = copy_node (t);
15674 OMP_BODY (t) = stmt;
15675 add_stmt (t);
15676 break;
15677
15678 case OMP_ATOMIC:
15679 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15680 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15681 {
15682 tree op1 = TREE_OPERAND (t, 1);
15683 tree rhs1 = NULL_TREE;
15684 tree lhs, rhs;
15685 if (TREE_CODE (op1) == COMPOUND_EXPR)
15686 {
15687 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15688 op1 = TREE_OPERAND (op1, 1);
15689 }
15690 lhs = RECUR (TREE_OPERAND (op1, 0));
15691 rhs = RECUR (TREE_OPERAND (op1, 1));
15692 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15693 NULL_TREE, NULL_TREE, rhs1,
15694 OMP_ATOMIC_SEQ_CST (t));
15695 }
15696 else
15697 {
15698 tree op1 = TREE_OPERAND (t, 1);
15699 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15700 tree rhs1 = NULL_TREE;
15701 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15702 enum tree_code opcode = NOP_EXPR;
15703 if (code == OMP_ATOMIC_READ)
15704 {
15705 v = RECUR (TREE_OPERAND (op1, 0));
15706 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15707 }
15708 else if (code == OMP_ATOMIC_CAPTURE_OLD
15709 || code == OMP_ATOMIC_CAPTURE_NEW)
15710 {
15711 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15712 v = RECUR (TREE_OPERAND (op1, 0));
15713 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15714 if (TREE_CODE (op11) == COMPOUND_EXPR)
15715 {
15716 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15717 op11 = TREE_OPERAND (op11, 1);
15718 }
15719 lhs = RECUR (TREE_OPERAND (op11, 0));
15720 rhs = RECUR (TREE_OPERAND (op11, 1));
15721 opcode = TREE_CODE (op11);
15722 if (opcode == MODIFY_EXPR)
15723 opcode = NOP_EXPR;
15724 }
15725 else
15726 {
15727 code = OMP_ATOMIC;
15728 lhs = RECUR (TREE_OPERAND (op1, 0));
15729 rhs = RECUR (TREE_OPERAND (op1, 1));
15730 }
15731 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15732 OMP_ATOMIC_SEQ_CST (t));
15733 }
15734 break;
15735
15736 case TRANSACTION_EXPR:
15737 {
15738 int flags = 0;
15739 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15740 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15741
15742 if (TRANSACTION_EXPR_IS_STMT (t))
15743 {
15744 tree body = TRANSACTION_EXPR_BODY (t);
15745 tree noex = NULL_TREE;
15746 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15747 {
15748 noex = MUST_NOT_THROW_COND (body);
15749 if (noex == NULL_TREE)
15750 noex = boolean_true_node;
15751 body = TREE_OPERAND (body, 0);
15752 }
15753 stmt = begin_transaction_stmt (input_location, NULL, flags);
15754 RECUR (body);
15755 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15756 }
15757 else
15758 {
15759 stmt = build_transaction_expr (EXPR_LOCATION (t),
15760 RECUR (TRANSACTION_EXPR_BODY (t)),
15761 flags, NULL_TREE);
15762 RETURN (stmt);
15763 }
15764 }
15765 break;
15766
15767 case MUST_NOT_THROW_EXPR:
15768 {
15769 tree op0 = RECUR (TREE_OPERAND (t, 0));
15770 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15771 RETURN (build_must_not_throw_expr (op0, cond));
15772 }
15773
15774 case EXPR_PACK_EXPANSION:
15775 error ("invalid use of pack expansion expression");
15776 RETURN (error_mark_node);
15777
15778 case NONTYPE_ARGUMENT_PACK:
15779 error ("use %<...%> to expand argument pack");
15780 RETURN (error_mark_node);
15781
15782 case CILK_SPAWN_STMT:
15783 cfun->calls_cilk_spawn = 1;
15784 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15785
15786 case CILK_SYNC_STMT:
15787 RETURN (build_cilk_sync ());
15788
15789 case COMPOUND_EXPR:
15790 tmp = RECUR (TREE_OPERAND (t, 0));
15791 if (tmp == NULL_TREE)
15792 /* If the first operand was a statement, we're done with it. */
15793 RETURN (RECUR (TREE_OPERAND (t, 1)));
15794 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15795 RECUR (TREE_OPERAND (t, 1)),
15796 complain));
15797
15798 case ANNOTATE_EXPR:
15799 tmp = RECUR (TREE_OPERAND (t, 0));
15800 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15801 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15802
15803 default:
15804 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15805
15806 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15807 /*function_p=*/false,
15808 integral_constant_expression_p));
15809 }
15810
15811 RETURN (NULL_TREE);
15812 out:
15813 input_location = loc;
15814 return r;
15815 #undef RECUR
15816 #undef RETURN
15817 }
15818
15819 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15820 function. For description of the body see comment above
15821 cp_parser_omp_declare_reduction_exprs. */
15822
15823 static void
15824 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15825 {
15826 if (t == NULL_TREE || t == error_mark_node)
15827 return;
15828
15829 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15830
15831 tree_stmt_iterator tsi;
15832 int i;
15833 tree stmts[7];
15834 memset (stmts, 0, sizeof stmts);
15835 for (i = 0, tsi = tsi_start (t);
15836 i < 7 && !tsi_end_p (tsi);
15837 i++, tsi_next (&tsi))
15838 stmts[i] = tsi_stmt (tsi);
15839 gcc_assert (tsi_end_p (tsi));
15840
15841 if (i >= 3)
15842 {
15843 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15844 && TREE_CODE (stmts[1]) == DECL_EXPR);
15845 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15846 args, complain, in_decl);
15847 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15848 args, complain, in_decl);
15849 DECL_CONTEXT (omp_out) = current_function_decl;
15850 DECL_CONTEXT (omp_in) = current_function_decl;
15851 keep_next_level (true);
15852 tree block = begin_omp_structured_block ();
15853 tsubst_expr (stmts[2], args, complain, in_decl, false);
15854 block = finish_omp_structured_block (block);
15855 block = maybe_cleanup_point_expr_void (block);
15856 add_decl_expr (omp_out);
15857 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15858 TREE_NO_WARNING (omp_out) = 1;
15859 add_decl_expr (omp_in);
15860 finish_expr_stmt (block);
15861 }
15862 if (i >= 6)
15863 {
15864 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15865 && TREE_CODE (stmts[4]) == DECL_EXPR);
15866 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15867 args, complain, in_decl);
15868 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15869 args, complain, in_decl);
15870 DECL_CONTEXT (omp_priv) = current_function_decl;
15871 DECL_CONTEXT (omp_orig) = current_function_decl;
15872 keep_next_level (true);
15873 tree block = begin_omp_structured_block ();
15874 tsubst_expr (stmts[5], args, complain, in_decl, false);
15875 block = finish_omp_structured_block (block);
15876 block = maybe_cleanup_point_expr_void (block);
15877 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15878 add_decl_expr (omp_priv);
15879 add_decl_expr (omp_orig);
15880 finish_expr_stmt (block);
15881 if (i == 7)
15882 add_decl_expr (omp_orig);
15883 }
15884 }
15885
15886 /* T is a postfix-expression that is not being used in a function
15887 call. Return the substituted version of T. */
15888
15889 static tree
15890 tsubst_non_call_postfix_expression (tree t, tree args,
15891 tsubst_flags_t complain,
15892 tree in_decl)
15893 {
15894 if (TREE_CODE (t) == SCOPE_REF)
15895 t = tsubst_qualified_id (t, args, complain, in_decl,
15896 /*done=*/false, /*address_p=*/false);
15897 else
15898 t = tsubst_copy_and_build (t, args, complain, in_decl,
15899 /*function_p=*/false,
15900 /*integral_constant_expression_p=*/false);
15901
15902 return t;
15903 }
15904
15905 /* Like tsubst but deals with expressions and performs semantic
15906 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15907
15908 tree
15909 tsubst_copy_and_build (tree t,
15910 tree args,
15911 tsubst_flags_t complain,
15912 tree in_decl,
15913 bool function_p,
15914 bool integral_constant_expression_p)
15915 {
15916 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15917 #define RECUR(NODE) \
15918 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15919 /*function_p=*/false, \
15920 integral_constant_expression_p)
15921
15922 tree retval, op1;
15923 location_t loc;
15924
15925 if (t == NULL_TREE || t == error_mark_node)
15926 return t;
15927
15928 loc = input_location;
15929 if (EXPR_HAS_LOCATION (t))
15930 input_location = EXPR_LOCATION (t);
15931
15932 /* N3276 decltype magic only applies to calls at the top level or on the
15933 right side of a comma. */
15934 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15935 complain &= ~tf_decltype;
15936
15937 switch (TREE_CODE (t))
15938 {
15939 case USING_DECL:
15940 t = DECL_NAME (t);
15941 /* Fall through. */
15942 case IDENTIFIER_NODE:
15943 {
15944 tree decl;
15945 cp_id_kind idk;
15946 bool non_integral_constant_expression_p;
15947 const char *error_msg;
15948
15949 if (IDENTIFIER_TYPENAME_P (t))
15950 {
15951 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15952 t = mangle_conv_op_name_for_type (new_type);
15953 }
15954
15955 /* Look up the name. */
15956 decl = lookup_name (t);
15957
15958 /* By convention, expressions use ERROR_MARK_NODE to indicate
15959 failure, not NULL_TREE. */
15960 if (decl == NULL_TREE)
15961 decl = error_mark_node;
15962
15963 decl = finish_id_expression (t, decl, NULL_TREE,
15964 &idk,
15965 integral_constant_expression_p,
15966 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15967 &non_integral_constant_expression_p,
15968 /*template_p=*/false,
15969 /*done=*/true,
15970 /*address_p=*/false,
15971 /*template_arg_p=*/false,
15972 &error_msg,
15973 input_location);
15974 if (error_msg)
15975 error (error_msg);
15976 if (!function_p && identifier_p (decl))
15977 {
15978 if (complain & tf_error)
15979 unqualified_name_lookup_error (decl);
15980 decl = error_mark_node;
15981 }
15982 RETURN (decl);
15983 }
15984
15985 case TEMPLATE_ID_EXPR:
15986 {
15987 tree object;
15988 tree templ = RECUR (TREE_OPERAND (t, 0));
15989 tree targs = TREE_OPERAND (t, 1);
15990
15991 if (targs)
15992 targs = tsubst_template_args (targs, args, complain, in_decl);
15993 if (targs == error_mark_node)
15994 return error_mark_node;
15995
15996 if (variable_template_p (templ))
15997 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
15998
15999 if (TREE_CODE (templ) == COMPONENT_REF)
16000 {
16001 object = TREE_OPERAND (templ, 0);
16002 templ = TREE_OPERAND (templ, 1);
16003 }
16004 else
16005 object = NULL_TREE;
16006 templ = lookup_template_function (templ, targs);
16007
16008 if (object)
16009 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
16010 object, templ, NULL_TREE));
16011 else
16012 RETURN (baselink_for_fns (templ));
16013 }
16014
16015 case INDIRECT_REF:
16016 {
16017 tree r = RECUR (TREE_OPERAND (t, 0));
16018
16019 if (REFERENCE_REF_P (t))
16020 {
16021 /* A type conversion to reference type will be enclosed in
16022 such an indirect ref, but the substitution of the cast
16023 will have also added such an indirect ref. */
16024 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
16025 r = convert_from_reference (r);
16026 }
16027 else
16028 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
16029 complain|decltype_flag);
16030
16031 if (TREE_CODE (r) == INDIRECT_REF)
16032 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16033
16034 RETURN (r);
16035 }
16036
16037 case NOP_EXPR:
16038 {
16039 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16040 tree op0 = RECUR (TREE_OPERAND (t, 0));
16041 RETURN (build_nop (type, op0));
16042 }
16043
16044 case IMPLICIT_CONV_EXPR:
16045 {
16046 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16047 tree expr = RECUR (TREE_OPERAND (t, 0));
16048 int flags = LOOKUP_IMPLICIT;
16049 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
16050 flags = LOOKUP_NORMAL;
16051 RETURN (perform_implicit_conversion_flags (type, expr, complain,
16052 flags));
16053 }
16054
16055 case CONVERT_EXPR:
16056 {
16057 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16058 tree op0 = RECUR (TREE_OPERAND (t, 0));
16059 RETURN (build1 (CONVERT_EXPR, type, op0));
16060 }
16061
16062 case CAST_EXPR:
16063 case REINTERPRET_CAST_EXPR:
16064 case CONST_CAST_EXPR:
16065 case DYNAMIC_CAST_EXPR:
16066 case STATIC_CAST_EXPR:
16067 {
16068 tree type;
16069 tree op, r = NULL_TREE;
16070
16071 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16072 if (integral_constant_expression_p
16073 && !cast_valid_in_integral_constant_expression_p (type))
16074 {
16075 if (complain & tf_error)
16076 error ("a cast to a type other than an integral or "
16077 "enumeration type cannot appear in a constant-expression");
16078 RETURN (error_mark_node);
16079 }
16080
16081 op = RECUR (TREE_OPERAND (t, 0));
16082
16083 warning_sentinel s(warn_useless_cast);
16084 switch (TREE_CODE (t))
16085 {
16086 case CAST_EXPR:
16087 r = build_functional_cast (type, op, complain);
16088 break;
16089 case REINTERPRET_CAST_EXPR:
16090 r = build_reinterpret_cast (type, op, complain);
16091 break;
16092 case CONST_CAST_EXPR:
16093 r = build_const_cast (type, op, complain);
16094 break;
16095 case DYNAMIC_CAST_EXPR:
16096 r = build_dynamic_cast (type, op, complain);
16097 break;
16098 case STATIC_CAST_EXPR:
16099 r = build_static_cast (type, op, complain);
16100 break;
16101 default:
16102 gcc_unreachable ();
16103 }
16104
16105 RETURN (r);
16106 }
16107
16108 case POSTDECREMENT_EXPR:
16109 case POSTINCREMENT_EXPR:
16110 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16111 args, complain, in_decl);
16112 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16113 complain|decltype_flag));
16114
16115 case PREDECREMENT_EXPR:
16116 case PREINCREMENT_EXPR:
16117 case NEGATE_EXPR:
16118 case BIT_NOT_EXPR:
16119 case ABS_EXPR:
16120 case TRUTH_NOT_EXPR:
16121 case UNARY_PLUS_EXPR: /* Unary + */
16122 case REALPART_EXPR:
16123 case IMAGPART_EXPR:
16124 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16125 RECUR (TREE_OPERAND (t, 0)),
16126 complain|decltype_flag));
16127
16128 case FIX_TRUNC_EXPR:
16129 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16130 0, complain));
16131
16132 case ADDR_EXPR:
16133 op1 = TREE_OPERAND (t, 0);
16134 if (TREE_CODE (op1) == LABEL_DECL)
16135 RETURN (finish_label_address_expr (DECL_NAME (op1),
16136 EXPR_LOCATION (op1)));
16137 if (TREE_CODE (op1) == SCOPE_REF)
16138 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16139 /*done=*/true, /*address_p=*/true);
16140 else
16141 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16142 in_decl);
16143 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16144 complain|decltype_flag));
16145
16146 case PLUS_EXPR:
16147 case MINUS_EXPR:
16148 case MULT_EXPR:
16149 case TRUNC_DIV_EXPR:
16150 case CEIL_DIV_EXPR:
16151 case FLOOR_DIV_EXPR:
16152 case ROUND_DIV_EXPR:
16153 case EXACT_DIV_EXPR:
16154 case BIT_AND_EXPR:
16155 case BIT_IOR_EXPR:
16156 case BIT_XOR_EXPR:
16157 case TRUNC_MOD_EXPR:
16158 case FLOOR_MOD_EXPR:
16159 case TRUTH_ANDIF_EXPR:
16160 case TRUTH_ORIF_EXPR:
16161 case TRUTH_AND_EXPR:
16162 case TRUTH_OR_EXPR:
16163 case RSHIFT_EXPR:
16164 case LSHIFT_EXPR:
16165 case RROTATE_EXPR:
16166 case LROTATE_EXPR:
16167 case EQ_EXPR:
16168 case NE_EXPR:
16169 case MAX_EXPR:
16170 case MIN_EXPR:
16171 case LE_EXPR:
16172 case GE_EXPR:
16173 case LT_EXPR:
16174 case GT_EXPR:
16175 case MEMBER_REF:
16176 case DOTSTAR_EXPR:
16177 {
16178 warning_sentinel s1(warn_type_limits);
16179 warning_sentinel s2(warn_div_by_zero);
16180 warning_sentinel s3(warn_logical_op);
16181 warning_sentinel s4(warn_tautological_compare);
16182 tree op0 = RECUR (TREE_OPERAND (t, 0));
16183 tree op1 = RECUR (TREE_OPERAND (t, 1));
16184 tree r = build_x_binary_op
16185 (input_location, TREE_CODE (t),
16186 op0,
16187 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16188 ? ERROR_MARK
16189 : TREE_CODE (TREE_OPERAND (t, 0))),
16190 op1,
16191 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16192 ? ERROR_MARK
16193 : TREE_CODE (TREE_OPERAND (t, 1))),
16194 /*overload=*/NULL,
16195 complain|decltype_flag);
16196 if (EXPR_P (r) && TREE_NO_WARNING (t))
16197 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16198
16199 RETURN (r);
16200 }
16201
16202 case POINTER_PLUS_EXPR:
16203 {
16204 tree op0 = RECUR (TREE_OPERAND (t, 0));
16205 tree op1 = RECUR (TREE_OPERAND (t, 1));
16206 return fold_build_pointer_plus (op0, op1);
16207 }
16208
16209 case SCOPE_REF:
16210 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16211 /*address_p=*/false));
16212 case ARRAY_REF:
16213 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16214 args, complain, in_decl);
16215 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16216 RECUR (TREE_OPERAND (t, 1)),
16217 complain|decltype_flag));
16218
16219 case ARRAY_NOTATION_REF:
16220 {
16221 tree start_index, length, stride;
16222 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16223 args, complain, in_decl);
16224 start_index = RECUR (ARRAY_NOTATION_START (t));
16225 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16226 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16227 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16228 length, stride, TREE_TYPE (op1)));
16229 }
16230 case SIZEOF_EXPR:
16231 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
16232 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
16233 RETURN (tsubst_copy (t, args, complain, in_decl));
16234 /* Fall through */
16235
16236 case ALIGNOF_EXPR:
16237 {
16238 tree r;
16239
16240 op1 = TREE_OPERAND (t, 0);
16241 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16242 op1 = TREE_TYPE (op1);
16243 if (!args)
16244 {
16245 /* When there are no ARGS, we are trying to evaluate a
16246 non-dependent expression from the parser. Trying to do
16247 the substitutions may not work. */
16248 if (!TYPE_P (op1))
16249 op1 = TREE_TYPE (op1);
16250 }
16251 else
16252 {
16253 ++cp_unevaluated_operand;
16254 ++c_inhibit_evaluation_warnings;
16255 if (TYPE_P (op1))
16256 op1 = tsubst (op1, args, complain, in_decl);
16257 else
16258 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16259 /*function_p=*/false,
16260 /*integral_constant_expression_p=*/
16261 false);
16262 --cp_unevaluated_operand;
16263 --c_inhibit_evaluation_warnings;
16264 }
16265 if (TYPE_P (op1))
16266 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16267 complain & tf_error);
16268 else
16269 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16270 complain & tf_error);
16271 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16272 {
16273 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16274 {
16275 if (!processing_template_decl && TYPE_P (op1))
16276 {
16277 r = build_min (SIZEOF_EXPR, size_type_node,
16278 build1 (NOP_EXPR, op1, error_mark_node));
16279 SIZEOF_EXPR_TYPE_P (r) = 1;
16280 }
16281 else
16282 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16283 TREE_SIDE_EFFECTS (r) = 0;
16284 TREE_READONLY (r) = 1;
16285 }
16286 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16287 }
16288 RETURN (r);
16289 }
16290
16291 case AT_ENCODE_EXPR:
16292 {
16293 op1 = TREE_OPERAND (t, 0);
16294 ++cp_unevaluated_operand;
16295 ++c_inhibit_evaluation_warnings;
16296 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16297 /*function_p=*/false,
16298 /*integral_constant_expression_p=*/false);
16299 --cp_unevaluated_operand;
16300 --c_inhibit_evaluation_warnings;
16301 RETURN (objc_build_encode_expr (op1));
16302 }
16303
16304 case NOEXCEPT_EXPR:
16305 op1 = TREE_OPERAND (t, 0);
16306 ++cp_unevaluated_operand;
16307 ++c_inhibit_evaluation_warnings;
16308 ++cp_noexcept_operand;
16309 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16310 /*function_p=*/false,
16311 /*integral_constant_expression_p=*/false);
16312 --cp_unevaluated_operand;
16313 --c_inhibit_evaluation_warnings;
16314 --cp_noexcept_operand;
16315 RETURN (finish_noexcept_expr (op1, complain));
16316
16317 case MODOP_EXPR:
16318 {
16319 warning_sentinel s(warn_div_by_zero);
16320 tree lhs = RECUR (TREE_OPERAND (t, 0));
16321 tree rhs = RECUR (TREE_OPERAND (t, 2));
16322 tree r = build_x_modify_expr
16323 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16324 complain|decltype_flag);
16325 /* TREE_NO_WARNING must be set if either the expression was
16326 parenthesized or it uses an operator such as >>= rather
16327 than plain assignment. In the former case, it was already
16328 set and must be copied. In the latter case,
16329 build_x_modify_expr sets it and it must not be reset
16330 here. */
16331 if (TREE_NO_WARNING (t))
16332 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16333
16334 RETURN (r);
16335 }
16336
16337 case ARROW_EXPR:
16338 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16339 args, complain, in_decl);
16340 /* Remember that there was a reference to this entity. */
16341 if (DECL_P (op1)
16342 && !mark_used (op1, complain) && !(complain & tf_error))
16343 RETURN (error_mark_node);
16344 RETURN (build_x_arrow (input_location, op1, complain));
16345
16346 case NEW_EXPR:
16347 {
16348 tree placement = RECUR (TREE_OPERAND (t, 0));
16349 tree init = RECUR (TREE_OPERAND (t, 3));
16350 vec<tree, va_gc> *placement_vec;
16351 vec<tree, va_gc> *init_vec;
16352 tree ret;
16353
16354 if (placement == NULL_TREE)
16355 placement_vec = NULL;
16356 else
16357 {
16358 placement_vec = make_tree_vector ();
16359 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16360 vec_safe_push (placement_vec, TREE_VALUE (placement));
16361 }
16362
16363 /* If there was an initializer in the original tree, but it
16364 instantiated to an empty list, then we should pass a
16365 non-NULL empty vector to tell build_new that it was an
16366 empty initializer() rather than no initializer. This can
16367 only happen when the initializer is a pack expansion whose
16368 parameter packs are of length zero. */
16369 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16370 init_vec = NULL;
16371 else
16372 {
16373 init_vec = make_tree_vector ();
16374 if (init == void_node)
16375 gcc_assert (init_vec != NULL);
16376 else
16377 {
16378 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16379 vec_safe_push (init_vec, TREE_VALUE (init));
16380 }
16381 }
16382
16383 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16384 tree op2 = RECUR (TREE_OPERAND (t, 2));
16385 ret = build_new (&placement_vec, op1, op2, &init_vec,
16386 NEW_EXPR_USE_GLOBAL (t),
16387 complain);
16388
16389 if (placement_vec != NULL)
16390 release_tree_vector (placement_vec);
16391 if (init_vec != NULL)
16392 release_tree_vector (init_vec);
16393
16394 RETURN (ret);
16395 }
16396
16397 case DELETE_EXPR:
16398 {
16399 tree op0 = RECUR (TREE_OPERAND (t, 0));
16400 tree op1 = RECUR (TREE_OPERAND (t, 1));
16401 RETURN (delete_sanity (op0, op1,
16402 DELETE_EXPR_USE_VEC (t),
16403 DELETE_EXPR_USE_GLOBAL (t),
16404 complain));
16405 }
16406
16407 case COMPOUND_EXPR:
16408 {
16409 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16410 complain & ~tf_decltype, in_decl,
16411 /*function_p=*/false,
16412 integral_constant_expression_p);
16413 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16414 op0,
16415 RECUR (TREE_OPERAND (t, 1)),
16416 complain|decltype_flag));
16417 }
16418
16419 case CALL_EXPR:
16420 {
16421 tree function;
16422 vec<tree, va_gc> *call_args;
16423 unsigned int nargs, i;
16424 bool qualified_p;
16425 bool koenig_p;
16426 tree ret;
16427
16428 function = CALL_EXPR_FN (t);
16429 /* When we parsed the expression, we determined whether or
16430 not Koenig lookup should be performed. */
16431 koenig_p = KOENIG_LOOKUP_P (t);
16432 if (TREE_CODE (function) == SCOPE_REF)
16433 {
16434 qualified_p = true;
16435 function = tsubst_qualified_id (function, args, complain, in_decl,
16436 /*done=*/false,
16437 /*address_p=*/false);
16438 }
16439 else if (koenig_p && identifier_p (function))
16440 {
16441 /* Do nothing; calling tsubst_copy_and_build on an identifier
16442 would incorrectly perform unqualified lookup again.
16443
16444 Note that we can also have an IDENTIFIER_NODE if the earlier
16445 unqualified lookup found a member function; in that case
16446 koenig_p will be false and we do want to do the lookup
16447 again to find the instantiated member function.
16448
16449 FIXME but doing that causes c++/15272, so we need to stop
16450 using IDENTIFIER_NODE in that situation. */
16451 qualified_p = false;
16452 }
16453 else
16454 {
16455 if (TREE_CODE (function) == COMPONENT_REF)
16456 {
16457 tree op = TREE_OPERAND (function, 1);
16458
16459 qualified_p = (TREE_CODE (op) == SCOPE_REF
16460 || (BASELINK_P (op)
16461 && BASELINK_QUALIFIED_P (op)));
16462 }
16463 else
16464 qualified_p = false;
16465
16466 if (TREE_CODE (function) == ADDR_EXPR
16467 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16468 /* Avoid error about taking the address of a constructor. */
16469 function = TREE_OPERAND (function, 0);
16470
16471 function = tsubst_copy_and_build (function, args, complain,
16472 in_decl,
16473 !qualified_p,
16474 integral_constant_expression_p);
16475
16476 if (BASELINK_P (function))
16477 qualified_p = true;
16478 }
16479
16480 nargs = call_expr_nargs (t);
16481 call_args = make_tree_vector ();
16482 for (i = 0; i < nargs; ++i)
16483 {
16484 tree arg = CALL_EXPR_ARG (t, i);
16485
16486 if (!PACK_EXPANSION_P (arg))
16487 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16488 else
16489 {
16490 /* Expand the pack expansion and push each entry onto
16491 CALL_ARGS. */
16492 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16493 if (TREE_CODE (arg) == TREE_VEC)
16494 {
16495 unsigned int len, j;
16496
16497 len = TREE_VEC_LENGTH (arg);
16498 for (j = 0; j < len; ++j)
16499 {
16500 tree value = TREE_VEC_ELT (arg, j);
16501 if (value != NULL_TREE)
16502 value = convert_from_reference (value);
16503 vec_safe_push (call_args, value);
16504 }
16505 }
16506 else
16507 {
16508 /* A partial substitution. Add one entry. */
16509 vec_safe_push (call_args, arg);
16510 }
16511 }
16512 }
16513
16514 /* We do not perform argument-dependent lookup if normal
16515 lookup finds a non-function, in accordance with the
16516 expected resolution of DR 218. */
16517 if (koenig_p
16518 && ((is_overloaded_fn (function)
16519 /* If lookup found a member function, the Koenig lookup is
16520 not appropriate, even if an unqualified-name was used
16521 to denote the function. */
16522 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16523 || identifier_p (function))
16524 /* Only do this when substitution turns a dependent call
16525 into a non-dependent call. */
16526 && type_dependent_expression_p_push (t)
16527 && !any_type_dependent_arguments_p (call_args))
16528 function = perform_koenig_lookup (function, call_args, tf_none);
16529
16530 if (identifier_p (function)
16531 && !any_type_dependent_arguments_p (call_args))
16532 {
16533 if (koenig_p && (complain & tf_warning_or_error))
16534 {
16535 /* For backwards compatibility and good diagnostics, try
16536 the unqualified lookup again if we aren't in SFINAE
16537 context. */
16538 tree unq = (tsubst_copy_and_build
16539 (function, args, complain, in_decl, true,
16540 integral_constant_expression_p));
16541 if (unq == error_mark_node)
16542 RETURN (error_mark_node);
16543
16544 if (unq != function)
16545 {
16546 tree fn = unq;
16547 if (INDIRECT_REF_P (fn))
16548 fn = TREE_OPERAND (fn, 0);
16549 if (TREE_CODE (fn) == COMPONENT_REF)
16550 fn = TREE_OPERAND (fn, 1);
16551 if (is_overloaded_fn (fn))
16552 fn = get_first_fn (fn);
16553 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16554 "%qD was not declared in this scope, "
16555 "and no declarations were found by "
16556 "argument-dependent lookup at the point "
16557 "of instantiation", function))
16558 {
16559 if (!DECL_P (fn))
16560 /* Can't say anything more. */;
16561 else if (DECL_CLASS_SCOPE_P (fn))
16562 {
16563 location_t loc = EXPR_LOC_OR_LOC (t,
16564 input_location);
16565 inform (loc,
16566 "declarations in dependent base %qT are "
16567 "not found by unqualified lookup",
16568 DECL_CLASS_CONTEXT (fn));
16569 if (current_class_ptr)
16570 inform (loc,
16571 "use %<this->%D%> instead", function);
16572 else
16573 inform (loc,
16574 "use %<%T::%D%> instead",
16575 current_class_name, function);
16576 }
16577 else
16578 inform (DECL_SOURCE_LOCATION (fn),
16579 "%qD declared here, later in the "
16580 "translation unit", fn);
16581 }
16582 function = unq;
16583 }
16584 }
16585 if (identifier_p (function))
16586 {
16587 if (complain & tf_error)
16588 unqualified_name_lookup_error (function);
16589 release_tree_vector (call_args);
16590 RETURN (error_mark_node);
16591 }
16592 }
16593
16594 /* Remember that there was a reference to this entity. */
16595 if (DECL_P (function)
16596 && !mark_used (function, complain) && !(complain & tf_error))
16597 RETURN (error_mark_node);
16598
16599 /* Put back tf_decltype for the actual call. */
16600 complain |= decltype_flag;
16601
16602 if (TREE_CODE (function) == OFFSET_REF)
16603 ret = build_offset_ref_call_from_tree (function, &call_args,
16604 complain);
16605 else if (TREE_CODE (function) == COMPONENT_REF)
16606 {
16607 tree instance = TREE_OPERAND (function, 0);
16608 tree fn = TREE_OPERAND (function, 1);
16609
16610 if (processing_template_decl
16611 && (type_dependent_expression_p (instance)
16612 || (!BASELINK_P (fn)
16613 && TREE_CODE (fn) != FIELD_DECL)
16614 || type_dependent_expression_p (fn)
16615 || any_type_dependent_arguments_p (call_args)))
16616 ret = build_nt_call_vec (function, call_args);
16617 else if (!BASELINK_P (fn))
16618 ret = finish_call_expr (function, &call_args,
16619 /*disallow_virtual=*/false,
16620 /*koenig_p=*/false,
16621 complain);
16622 else
16623 ret = (build_new_method_call
16624 (instance, fn,
16625 &call_args, NULL_TREE,
16626 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16627 /*fn_p=*/NULL,
16628 complain));
16629 }
16630 else
16631 ret = finish_call_expr (function, &call_args,
16632 /*disallow_virtual=*/qualified_p,
16633 koenig_p,
16634 complain);
16635
16636 release_tree_vector (call_args);
16637
16638 RETURN (ret);
16639 }
16640
16641 case COND_EXPR:
16642 {
16643 tree cond = RECUR (TREE_OPERAND (t, 0));
16644 tree folded_cond = fold_non_dependent_expr (cond);
16645 tree exp1, exp2;
16646
16647 if (TREE_CODE (folded_cond) == INTEGER_CST)
16648 {
16649 if (integer_zerop (folded_cond))
16650 {
16651 ++c_inhibit_evaluation_warnings;
16652 exp1 = RECUR (TREE_OPERAND (t, 1));
16653 --c_inhibit_evaluation_warnings;
16654 exp2 = RECUR (TREE_OPERAND (t, 2));
16655 }
16656 else
16657 {
16658 exp1 = RECUR (TREE_OPERAND (t, 1));
16659 ++c_inhibit_evaluation_warnings;
16660 exp2 = RECUR (TREE_OPERAND (t, 2));
16661 --c_inhibit_evaluation_warnings;
16662 }
16663 cond = folded_cond;
16664 }
16665 else
16666 {
16667 exp1 = RECUR (TREE_OPERAND (t, 1));
16668 exp2 = RECUR (TREE_OPERAND (t, 2));
16669 }
16670
16671 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16672 cond, exp1, exp2, complain));
16673 }
16674
16675 case PSEUDO_DTOR_EXPR:
16676 {
16677 tree op0 = RECUR (TREE_OPERAND (t, 0));
16678 tree op1 = RECUR (TREE_OPERAND (t, 1));
16679 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16680 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16681 input_location));
16682 }
16683
16684 case TREE_LIST:
16685 {
16686 tree purpose, value, chain;
16687
16688 if (t == void_list_node)
16689 RETURN (t);
16690
16691 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16692 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16693 {
16694 /* We have pack expansions, so expand those and
16695 create a new list out of it. */
16696 tree purposevec = NULL_TREE;
16697 tree valuevec = NULL_TREE;
16698 tree chain;
16699 int i, len = -1;
16700
16701 /* Expand the argument expressions. */
16702 if (TREE_PURPOSE (t))
16703 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16704 complain, in_decl);
16705 if (TREE_VALUE (t))
16706 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16707 complain, in_decl);
16708
16709 /* Build the rest of the list. */
16710 chain = TREE_CHAIN (t);
16711 if (chain && chain != void_type_node)
16712 chain = RECUR (chain);
16713
16714 /* Determine the number of arguments. */
16715 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16716 {
16717 len = TREE_VEC_LENGTH (purposevec);
16718 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16719 }
16720 else if (TREE_CODE (valuevec) == TREE_VEC)
16721 len = TREE_VEC_LENGTH (valuevec);
16722 else
16723 {
16724 /* Since we only performed a partial substitution into
16725 the argument pack, we only RETURN (a single list
16726 node. */
16727 if (purposevec == TREE_PURPOSE (t)
16728 && valuevec == TREE_VALUE (t)
16729 && chain == TREE_CHAIN (t))
16730 RETURN (t);
16731
16732 RETURN (tree_cons (purposevec, valuevec, chain));
16733 }
16734
16735 /* Convert the argument vectors into a TREE_LIST */
16736 i = len;
16737 while (i > 0)
16738 {
16739 /* Grab the Ith values. */
16740 i--;
16741 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16742 : NULL_TREE;
16743 value
16744 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16745 : NULL_TREE;
16746
16747 /* Build the list (backwards). */
16748 chain = tree_cons (purpose, value, chain);
16749 }
16750
16751 RETURN (chain);
16752 }
16753
16754 purpose = TREE_PURPOSE (t);
16755 if (purpose)
16756 purpose = RECUR (purpose);
16757 value = TREE_VALUE (t);
16758 if (value)
16759 value = RECUR (value);
16760 chain = TREE_CHAIN (t);
16761 if (chain && chain != void_type_node)
16762 chain = RECUR (chain);
16763 if (purpose == TREE_PURPOSE (t)
16764 && value == TREE_VALUE (t)
16765 && chain == TREE_CHAIN (t))
16766 RETURN (t);
16767 RETURN (tree_cons (purpose, value, chain));
16768 }
16769
16770 case COMPONENT_REF:
16771 {
16772 tree object;
16773 tree object_type;
16774 tree member;
16775 tree r;
16776
16777 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16778 args, complain, in_decl);
16779 /* Remember that there was a reference to this entity. */
16780 if (DECL_P (object)
16781 && !mark_used (object, complain) && !(complain & tf_error))
16782 RETURN (error_mark_node);
16783 object_type = TREE_TYPE (object);
16784
16785 member = TREE_OPERAND (t, 1);
16786 if (BASELINK_P (member))
16787 member = tsubst_baselink (member,
16788 non_reference (TREE_TYPE (object)),
16789 args, complain, in_decl);
16790 else
16791 member = tsubst_copy (member, args, complain, in_decl);
16792 if (member == error_mark_node)
16793 RETURN (error_mark_node);
16794
16795 if (type_dependent_expression_p (object))
16796 /* We can't do much here. */;
16797 else if (!CLASS_TYPE_P (object_type))
16798 {
16799 if (scalarish_type_p (object_type))
16800 {
16801 tree s = NULL_TREE;
16802 tree dtor = member;
16803
16804 if (TREE_CODE (dtor) == SCOPE_REF)
16805 {
16806 s = TREE_OPERAND (dtor, 0);
16807 dtor = TREE_OPERAND (dtor, 1);
16808 }
16809 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16810 {
16811 dtor = TREE_OPERAND (dtor, 0);
16812 if (TYPE_P (dtor))
16813 RETURN (finish_pseudo_destructor_expr
16814 (object, s, dtor, input_location));
16815 }
16816 }
16817 }
16818 else if (TREE_CODE (member) == SCOPE_REF
16819 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16820 {
16821 /* Lookup the template functions now that we know what the
16822 scope is. */
16823 tree scope = TREE_OPERAND (member, 0);
16824 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16825 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16826 member = lookup_qualified_name (scope, tmpl,
16827 /*is_type_p=*/false,
16828 /*complain=*/false);
16829 if (BASELINK_P (member))
16830 {
16831 BASELINK_FUNCTIONS (member)
16832 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16833 args);
16834 member = (adjust_result_of_qualified_name_lookup
16835 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16836 object_type));
16837 }
16838 else
16839 {
16840 qualified_name_lookup_error (scope, tmpl, member,
16841 input_location);
16842 RETURN (error_mark_node);
16843 }
16844 }
16845 else if (TREE_CODE (member) == SCOPE_REF
16846 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16847 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16848 {
16849 if (complain & tf_error)
16850 {
16851 if (TYPE_P (TREE_OPERAND (member, 0)))
16852 error ("%qT is not a class or namespace",
16853 TREE_OPERAND (member, 0));
16854 else
16855 error ("%qD is not a class or namespace",
16856 TREE_OPERAND (member, 0));
16857 }
16858 RETURN (error_mark_node);
16859 }
16860 else if (TREE_CODE (member) == FIELD_DECL)
16861 {
16862 r = finish_non_static_data_member (member, object, NULL_TREE);
16863 if (TREE_CODE (r) == COMPONENT_REF)
16864 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16865 RETURN (r);
16866 }
16867
16868 r = finish_class_member_access_expr (object, member,
16869 /*template_p=*/false,
16870 complain);
16871 if (TREE_CODE (r) == COMPONENT_REF)
16872 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16873 RETURN (r);
16874 }
16875
16876 case THROW_EXPR:
16877 RETURN (build_throw
16878 (RECUR (TREE_OPERAND (t, 0))));
16879
16880 case CONSTRUCTOR:
16881 {
16882 vec<constructor_elt, va_gc> *n;
16883 constructor_elt *ce;
16884 unsigned HOST_WIDE_INT idx;
16885 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16886 bool process_index_p;
16887 int newlen;
16888 bool need_copy_p = false;
16889 tree r;
16890
16891 if (type == error_mark_node)
16892 RETURN (error_mark_node);
16893
16894 /* digest_init will do the wrong thing if we let it. */
16895 if (type && TYPE_PTRMEMFUNC_P (type))
16896 RETURN (t);
16897
16898 /* We do not want to process the index of aggregate
16899 initializers as they are identifier nodes which will be
16900 looked up by digest_init. */
16901 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16902
16903 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16904 newlen = vec_safe_length (n);
16905 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16906 {
16907 if (ce->index && process_index_p
16908 /* An identifier index is looked up in the type
16909 being initialized, not the current scope. */
16910 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16911 ce->index = RECUR (ce->index);
16912
16913 if (PACK_EXPANSION_P (ce->value))
16914 {
16915 /* Substitute into the pack expansion. */
16916 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16917 in_decl);
16918
16919 if (ce->value == error_mark_node
16920 || PACK_EXPANSION_P (ce->value))
16921 ;
16922 else if (TREE_VEC_LENGTH (ce->value) == 1)
16923 /* Just move the argument into place. */
16924 ce->value = TREE_VEC_ELT (ce->value, 0);
16925 else
16926 {
16927 /* Update the length of the final CONSTRUCTOR
16928 arguments vector, and note that we will need to
16929 copy.*/
16930 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16931 need_copy_p = true;
16932 }
16933 }
16934 else
16935 ce->value = RECUR (ce->value);
16936 }
16937
16938 if (need_copy_p)
16939 {
16940 vec<constructor_elt, va_gc> *old_n = n;
16941
16942 vec_alloc (n, newlen);
16943 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16944 {
16945 if (TREE_CODE (ce->value) == TREE_VEC)
16946 {
16947 int i, len = TREE_VEC_LENGTH (ce->value);
16948 for (i = 0; i < len; ++i)
16949 CONSTRUCTOR_APPEND_ELT (n, 0,
16950 TREE_VEC_ELT (ce->value, i));
16951 }
16952 else
16953 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16954 }
16955 }
16956
16957 r = build_constructor (init_list_type_node, n);
16958 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16959
16960 if (TREE_HAS_CONSTRUCTOR (t))
16961 RETURN (finish_compound_literal (type, r, complain));
16962
16963 TREE_TYPE (r) = type;
16964 RETURN (r);
16965 }
16966
16967 case TYPEID_EXPR:
16968 {
16969 tree operand_0 = TREE_OPERAND (t, 0);
16970 if (TYPE_P (operand_0))
16971 {
16972 operand_0 = tsubst (operand_0, args, complain, in_decl);
16973 RETURN (get_typeid (operand_0, complain));
16974 }
16975 else
16976 {
16977 operand_0 = RECUR (operand_0);
16978 RETURN (build_typeid (operand_0, complain));
16979 }
16980 }
16981
16982 case VAR_DECL:
16983 if (!args)
16984 RETURN (t);
16985 else if (DECL_PACK_P (t))
16986 {
16987 /* We don't build decls for an instantiation of a
16988 variadic capture proxy, we instantiate the elements
16989 when needed. */
16990 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16991 return RECUR (DECL_VALUE_EXPR (t));
16992 }
16993 /* Fall through */
16994
16995 case PARM_DECL:
16996 {
16997 tree r = tsubst_copy (t, args, complain, in_decl);
16998 /* ??? We're doing a subset of finish_id_expression here. */
16999 if (VAR_P (r)
17000 && !processing_template_decl
17001 && !cp_unevaluated_operand
17002 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
17003 && CP_DECL_THREAD_LOCAL_P (r))
17004 {
17005 if (tree wrap = get_tls_wrapper_fn (r))
17006 /* Replace an evaluated use of the thread_local variable with
17007 a call to its wrapper. */
17008 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
17009 }
17010 else if (outer_automatic_var_p (r))
17011 {
17012 r = process_outer_var_ref (r, complain);
17013 if (is_capture_proxy (r))
17014 register_local_specialization (r, t);
17015 }
17016
17017 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
17018 /* If the original type was a reference, we'll be wrapped in
17019 the appropriate INDIRECT_REF. */
17020 r = convert_from_reference (r);
17021 RETURN (r);
17022 }
17023
17024 case VA_ARG_EXPR:
17025 {
17026 tree op0 = RECUR (TREE_OPERAND (t, 0));
17027 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17028 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
17029 }
17030
17031 case OFFSETOF_EXPR:
17032 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
17033 EXPR_LOCATION (t)));
17034
17035 case TRAIT_EXPR:
17036 {
17037 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
17038 complain, in_decl);
17039
17040 tree type2 = TRAIT_EXPR_TYPE2 (t);
17041 if (type2 && TREE_CODE (type2) == TREE_LIST)
17042 type2 = RECUR (type2);
17043 else if (type2)
17044 type2 = tsubst (type2, args, complain, in_decl);
17045
17046 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
17047 }
17048
17049 case STMT_EXPR:
17050 {
17051 tree old_stmt_expr = cur_stmt_expr;
17052 tree stmt_expr = begin_stmt_expr ();
17053
17054 cur_stmt_expr = stmt_expr;
17055 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
17056 integral_constant_expression_p);
17057 stmt_expr = finish_stmt_expr (stmt_expr, false);
17058 cur_stmt_expr = old_stmt_expr;
17059
17060 /* If the resulting list of expression statement is empty,
17061 fold it further into void_node. */
17062 if (empty_expr_stmt_p (stmt_expr))
17063 stmt_expr = void_node;
17064
17065 RETURN (stmt_expr);
17066 }
17067
17068 case LAMBDA_EXPR:
17069 {
17070 tree r = build_lambda_expr ();
17071
17072 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
17073 LAMBDA_EXPR_CLOSURE (r) = type;
17074 CLASSTYPE_LAMBDA_EXPR (type) = r;
17075
17076 LAMBDA_EXPR_LOCATION (r)
17077 = LAMBDA_EXPR_LOCATION (t);
17078 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17079 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17080 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17081 LAMBDA_EXPR_DISCRIMINATOR (r)
17082 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17083 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17084 if (!scope)
17085 /* No substitution needed. */;
17086 else if (VAR_OR_FUNCTION_DECL_P (scope))
17087 /* For a function or variable scope, we want to use tsubst so that we
17088 don't complain about referring to an auto before deduction. */
17089 scope = tsubst (scope, args, complain, in_decl);
17090 else if (TREE_CODE (scope) == PARM_DECL)
17091 {
17092 /* Look up the parameter we want directly, as tsubst_copy
17093 doesn't do what we need. */
17094 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17095 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17096 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17097 parm = DECL_CHAIN (parm);
17098 scope = parm;
17099 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17100 if (DECL_CONTEXT (scope) == NULL_TREE)
17101 DECL_CONTEXT (scope) = fn;
17102 }
17103 else if (TREE_CODE (scope) == FIELD_DECL)
17104 /* For a field, use tsubst_copy so that we look up the existing field
17105 rather than build a new one. */
17106 scope = RECUR (scope);
17107 else
17108 gcc_unreachable ();
17109 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17110
17111 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17112 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17113
17114 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17115 determine_visibility (TYPE_NAME (type));
17116 /* Now that we know visibility, instantiate the type so we have a
17117 declaration of the op() for later calls to lambda_function. */
17118 complete_type (type);
17119
17120 if (tree fn = lambda_function (type))
17121 LAMBDA_EXPR_RETURN_TYPE (r) = TREE_TYPE (TREE_TYPE (fn));
17122
17123 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17124
17125 insert_pending_capture_proxies ();
17126
17127 RETURN (build_lambda_object (r));
17128 }
17129
17130 case TARGET_EXPR:
17131 /* We can get here for a constant initializer of non-dependent type.
17132 FIXME stop folding in cp_parser_initializer_clause. */
17133 {
17134 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17135 complain);
17136 RETURN (r);
17137 }
17138
17139 case TRANSACTION_EXPR:
17140 RETURN (tsubst_expr(t, args, complain, in_decl,
17141 integral_constant_expression_p));
17142
17143 case PAREN_EXPR:
17144 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17145
17146 case VEC_PERM_EXPR:
17147 {
17148 tree op0 = RECUR (TREE_OPERAND (t, 0));
17149 tree op1 = RECUR (TREE_OPERAND (t, 1));
17150 tree op2 = RECUR (TREE_OPERAND (t, 2));
17151 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17152 complain));
17153 }
17154
17155 case REQUIRES_EXPR:
17156 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17157
17158 default:
17159 /* Handle Objective-C++ constructs, if appropriate. */
17160 {
17161 tree subst
17162 = objcp_tsubst_copy_and_build (t, args, complain,
17163 in_decl, /*function_p=*/false);
17164 if (subst)
17165 RETURN (subst);
17166 }
17167 RETURN (tsubst_copy (t, args, complain, in_decl));
17168 }
17169
17170 #undef RECUR
17171 #undef RETURN
17172 out:
17173 input_location = loc;
17174 return retval;
17175 }
17176
17177 /* Verify that the instantiated ARGS are valid. For type arguments,
17178 make sure that the type's linkage is ok. For non-type arguments,
17179 make sure they are constants if they are integral or enumerations.
17180 Emit an error under control of COMPLAIN, and return TRUE on error. */
17181
17182 static bool
17183 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17184 {
17185 if (dependent_template_arg_p (t))
17186 return false;
17187 if (ARGUMENT_PACK_P (t))
17188 {
17189 tree vec = ARGUMENT_PACK_ARGS (t);
17190 int len = TREE_VEC_LENGTH (vec);
17191 bool result = false;
17192 int i;
17193
17194 for (i = 0; i < len; ++i)
17195 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17196 result = true;
17197 return result;
17198 }
17199 else if (TYPE_P (t))
17200 {
17201 /* [basic.link]: A name with no linkage (notably, the name
17202 of a class or enumeration declared in a local scope)
17203 shall not be used to declare an entity with linkage.
17204 This implies that names with no linkage cannot be used as
17205 template arguments
17206
17207 DR 757 relaxes this restriction for C++0x. */
17208 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17209 : no_linkage_check (t, /*relaxed_p=*/false));
17210
17211 if (nt)
17212 {
17213 /* DR 488 makes use of a type with no linkage cause
17214 type deduction to fail. */
17215 if (complain & tf_error)
17216 {
17217 if (TYPE_ANONYMOUS_P (nt))
17218 error ("%qT is/uses anonymous type", t);
17219 else
17220 error ("template argument for %qD uses local type %qT",
17221 tmpl, t);
17222 }
17223 return true;
17224 }
17225 /* In order to avoid all sorts of complications, we do not
17226 allow variably-modified types as template arguments. */
17227 else if (variably_modified_type_p (t, NULL_TREE))
17228 {
17229 if (complain & tf_error)
17230 error ("%qT is a variably modified type", t);
17231 return true;
17232 }
17233 }
17234 /* Class template and alias template arguments should be OK. */
17235 else if (DECL_TYPE_TEMPLATE_P (t))
17236 ;
17237 /* A non-type argument of integral or enumerated type must be a
17238 constant. */
17239 else if (TREE_TYPE (t)
17240 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17241 && !REFERENCE_REF_P (t)
17242 && !TREE_CONSTANT (t))
17243 {
17244 if (complain & tf_error)
17245 error ("integral expression %qE is not constant", t);
17246 return true;
17247 }
17248 return false;
17249 }
17250
17251 static bool
17252 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17253 {
17254 int ix, len = DECL_NTPARMS (tmpl);
17255 bool result = false;
17256
17257 for (ix = 0; ix != len; ix++)
17258 {
17259 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17260 result = true;
17261 }
17262 if (result && (complain & tf_error))
17263 error (" trying to instantiate %qD", tmpl);
17264 return result;
17265 }
17266
17267 /* We're out of SFINAE context now, so generate diagnostics for the access
17268 errors we saw earlier when instantiating D from TMPL and ARGS. */
17269
17270 static void
17271 recheck_decl_substitution (tree d, tree tmpl, tree args)
17272 {
17273 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17274 tree type = TREE_TYPE (pattern);
17275 location_t loc = input_location;
17276
17277 push_access_scope (d);
17278 push_deferring_access_checks (dk_no_deferred);
17279 input_location = DECL_SOURCE_LOCATION (pattern);
17280 tsubst (type, args, tf_warning_or_error, d);
17281 input_location = loc;
17282 pop_deferring_access_checks ();
17283 pop_access_scope (d);
17284 }
17285
17286 /* Instantiate the indicated variable, function, or alias template TMPL with
17287 the template arguments in TARG_PTR. */
17288
17289 static tree
17290 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17291 {
17292 tree targ_ptr = orig_args;
17293 tree fndecl;
17294 tree gen_tmpl;
17295 tree spec;
17296 bool access_ok = true;
17297
17298 if (tmpl == error_mark_node)
17299 return error_mark_node;
17300
17301 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17302
17303 /* If this function is a clone, handle it specially. */
17304 if (DECL_CLONED_FUNCTION_P (tmpl))
17305 {
17306 tree spec;
17307 tree clone;
17308
17309 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17310 DECL_CLONED_FUNCTION. */
17311 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17312 targ_ptr, complain);
17313 if (spec == error_mark_node)
17314 return error_mark_node;
17315
17316 /* Look for the clone. */
17317 FOR_EACH_CLONE (clone, spec)
17318 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17319 return clone;
17320 /* We should always have found the clone by now. */
17321 gcc_unreachable ();
17322 return NULL_TREE;
17323 }
17324
17325 if (targ_ptr == error_mark_node)
17326 return error_mark_node;
17327
17328 /* Check to see if we already have this specialization. */
17329 gen_tmpl = most_general_template (tmpl);
17330 if (tmpl != gen_tmpl)
17331 /* The TMPL is a partial instantiation. To get a full set of
17332 arguments we must add the arguments used to perform the
17333 partial instantiation. */
17334 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
17335 targ_ptr);
17336
17337 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17338 but it doesn't seem to be on the hot path. */
17339 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17340
17341 gcc_assert (tmpl == gen_tmpl
17342 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17343 == spec)
17344 || fndecl == NULL_TREE);
17345
17346 if (spec != NULL_TREE)
17347 {
17348 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17349 {
17350 if (complain & tf_error)
17351 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17352 return error_mark_node;
17353 }
17354 return spec;
17355 }
17356
17357 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17358 complain))
17359 return error_mark_node;
17360
17361 /* We are building a FUNCTION_DECL, during which the access of its
17362 parameters and return types have to be checked. However this
17363 FUNCTION_DECL which is the desired context for access checking
17364 is not built yet. We solve this chicken-and-egg problem by
17365 deferring all checks until we have the FUNCTION_DECL. */
17366 push_deferring_access_checks (dk_deferred);
17367
17368 /* Instantiation of the function happens in the context of the function
17369 template, not the context of the overload resolution we're doing. */
17370 push_to_top_level ();
17371 /* If there are dependent arguments, e.g. because we're doing partial
17372 ordering, make sure processing_template_decl stays set. */
17373 if (uses_template_parms (targ_ptr))
17374 ++processing_template_decl;
17375 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17376 {
17377 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17378 complain, gen_tmpl, true);
17379 push_nested_class (ctx);
17380 }
17381
17382 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17383
17384 if (VAR_P (pattern))
17385 {
17386 /* We need to determine if we're using a partial or explicit
17387 specialization now, because the type of the variable could be
17388 different. */
17389 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17390 tree elt = most_specialized_partial_spec (tid, complain);
17391 if (elt == error_mark_node)
17392 pattern = error_mark_node;
17393 else if (elt)
17394 {
17395 tmpl = TREE_VALUE (elt);
17396 pattern = DECL_TEMPLATE_RESULT (tmpl);
17397 targ_ptr = TREE_PURPOSE (elt);
17398 }
17399 }
17400
17401 /* Substitute template parameters to obtain the specialization. */
17402 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17403 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17404 pop_nested_class ();
17405 pop_from_top_level ();
17406
17407 if (fndecl == error_mark_node)
17408 {
17409 pop_deferring_access_checks ();
17410 return error_mark_node;
17411 }
17412
17413 /* The DECL_TI_TEMPLATE should always be the immediate parent
17414 template, not the most general template. */
17415 DECL_TI_TEMPLATE (fndecl) = tmpl;
17416 DECL_TI_ARGS (fndecl) = targ_ptr;
17417
17418 /* Now we know the specialization, compute access previously
17419 deferred. */
17420 push_access_scope (fndecl);
17421 if (!perform_deferred_access_checks (complain))
17422 access_ok = false;
17423 pop_access_scope (fndecl);
17424 pop_deferring_access_checks ();
17425
17426 /* If we've just instantiated the main entry point for a function,
17427 instantiate all the alternate entry points as well. We do this
17428 by cloning the instantiation of the main entry point, not by
17429 instantiating the template clones. */
17430 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17431 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17432
17433 if (!access_ok)
17434 {
17435 if (!(complain & tf_error))
17436 {
17437 /* Remember to reinstantiate when we're out of SFINAE so the user
17438 can see the errors. */
17439 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17440 }
17441 return error_mark_node;
17442 }
17443 return fndecl;
17444 }
17445
17446 /* Wrapper for instantiate_template_1. */
17447
17448 tree
17449 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17450 {
17451 tree ret;
17452 timevar_push (TV_TEMPLATE_INST);
17453 ret = instantiate_template_1 (tmpl, orig_args, complain);
17454 timevar_pop (TV_TEMPLATE_INST);
17455 return ret;
17456 }
17457
17458 /* Instantiate the alias template TMPL with ARGS. Also push a template
17459 instantiation level, which instantiate_template doesn't do because
17460 functions and variables have sufficient context established by the
17461 callers. */
17462
17463 static tree
17464 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17465 {
17466 struct pending_template *old_last_pend = last_pending_template;
17467 struct tinst_level *old_error_tinst = last_error_tinst_level;
17468 if (tmpl == error_mark_node || args == error_mark_node)
17469 return error_mark_node;
17470 tree tinst = build_tree_list (tmpl, args);
17471 if (!push_tinst_level (tinst))
17472 {
17473 ggc_free (tinst);
17474 return error_mark_node;
17475 }
17476
17477 args =
17478 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17479 args, tmpl, complain,
17480 /*require_all_args=*/true,
17481 /*use_default_args=*/true);
17482
17483 tree r = instantiate_template (tmpl, args, complain);
17484 pop_tinst_level ();
17485 /* We can't free this if a pending_template entry or last_error_tinst_level
17486 is pointing at it. */
17487 if (last_pending_template == old_last_pend
17488 && last_error_tinst_level == old_error_tinst)
17489 ggc_free (tinst);
17490
17491 return r;
17492 }
17493
17494 /* PARM is a template parameter pack for FN. Returns true iff
17495 PARM is used in a deducible way in the argument list of FN. */
17496
17497 static bool
17498 pack_deducible_p (tree parm, tree fn)
17499 {
17500 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17501 for (; t; t = TREE_CHAIN (t))
17502 {
17503 tree type = TREE_VALUE (t);
17504 tree packs;
17505 if (!PACK_EXPANSION_P (type))
17506 continue;
17507 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17508 packs; packs = TREE_CHAIN (packs))
17509 if (template_args_equal (TREE_VALUE (packs), parm))
17510 {
17511 /* The template parameter pack is used in a function parameter
17512 pack. If this is the end of the parameter list, the
17513 template parameter pack is deducible. */
17514 if (TREE_CHAIN (t) == void_list_node)
17515 return true;
17516 else
17517 /* Otherwise, not. Well, it could be deduced from
17518 a non-pack parameter, but doing so would end up with
17519 a deduction mismatch, so don't bother. */
17520 return false;
17521 }
17522 }
17523 /* The template parameter pack isn't used in any function parameter
17524 packs, but it might be used deeper, e.g. tuple<Args...>. */
17525 return true;
17526 }
17527
17528 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17529 NARGS elements of the arguments that are being used when calling
17530 it. TARGS is a vector into which the deduced template arguments
17531 are placed.
17532
17533 Returns either a FUNCTION_DECL for the matching specialization of FN or
17534 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17535 true, diagnostics will be printed to explain why it failed.
17536
17537 If FN is a conversion operator, or we are trying to produce a specific
17538 specialization, RETURN_TYPE is the return type desired.
17539
17540 The EXPLICIT_TARGS are explicit template arguments provided via a
17541 template-id.
17542
17543 The parameter STRICT is one of:
17544
17545 DEDUCE_CALL:
17546 We are deducing arguments for a function call, as in
17547 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17548 deducing arguments for a call to the result of a conversion
17549 function template, as in [over.call.object].
17550
17551 DEDUCE_CONV:
17552 We are deducing arguments for a conversion function, as in
17553 [temp.deduct.conv].
17554
17555 DEDUCE_EXACT:
17556 We are deducing arguments when doing an explicit instantiation
17557 as in [temp.explicit], when determining an explicit specialization
17558 as in [temp.expl.spec], or when taking the address of a function
17559 template, as in [temp.deduct.funcaddr]. */
17560
17561 tree
17562 fn_type_unification (tree fn,
17563 tree explicit_targs,
17564 tree targs,
17565 const tree *args,
17566 unsigned int nargs,
17567 tree return_type,
17568 unification_kind_t strict,
17569 int flags,
17570 bool explain_p,
17571 bool decltype_p)
17572 {
17573 tree parms;
17574 tree fntype;
17575 tree decl = NULL_TREE;
17576 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17577 bool ok;
17578 static int deduction_depth;
17579 struct pending_template *old_last_pend = last_pending_template;
17580 struct tinst_level *old_error_tinst = last_error_tinst_level;
17581 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17582 tree tinst;
17583 tree r = error_mark_node;
17584
17585 if (decltype_p)
17586 complain |= tf_decltype;
17587
17588 /* In C++0x, it's possible to have a function template whose type depends
17589 on itself recursively. This is most obvious with decltype, but can also
17590 occur with enumeration scope (c++/48969). So we need to catch infinite
17591 recursion and reject the substitution at deduction time; this function
17592 will return error_mark_node for any repeated substitution.
17593
17594 This also catches excessive recursion such as when f<N> depends on
17595 f<N-1> across all integers, and returns error_mark_node for all the
17596 substitutions back up to the initial one.
17597
17598 This is, of course, not reentrant. */
17599 if (excessive_deduction_depth)
17600 return error_mark_node;
17601 tinst = build_tree_list (fn, NULL_TREE);
17602 ++deduction_depth;
17603
17604 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17605
17606 fntype = TREE_TYPE (fn);
17607 if (explicit_targs)
17608 {
17609 /* [temp.deduct]
17610
17611 The specified template arguments must match the template
17612 parameters in kind (i.e., type, nontype, template), and there
17613 must not be more arguments than there are parameters;
17614 otherwise type deduction fails.
17615
17616 Nontype arguments must match the types of the corresponding
17617 nontype template parameters, or must be convertible to the
17618 types of the corresponding nontype parameters as specified in
17619 _temp.arg.nontype_, otherwise type deduction fails.
17620
17621 All references in the function type of the function template
17622 to the corresponding template parameters are replaced by the
17623 specified template argument values. If a substitution in a
17624 template parameter or in the function type of the function
17625 template results in an invalid type, type deduction fails. */
17626 int i, len = TREE_VEC_LENGTH (tparms);
17627 location_t loc = input_location;
17628 bool incomplete = false;
17629
17630 /* Adjust any explicit template arguments before entering the
17631 substitution context. */
17632 explicit_targs
17633 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17634 complain,
17635 /*require_all_args=*/false,
17636 /*use_default_args=*/false));
17637 if (explicit_targs == error_mark_node)
17638 goto fail;
17639
17640 /* Substitute the explicit args into the function type. This is
17641 necessary so that, for instance, explicitly declared function
17642 arguments can match null pointed constants. If we were given
17643 an incomplete set of explicit args, we must not do semantic
17644 processing during substitution as we could create partial
17645 instantiations. */
17646 for (i = 0; i < len; i++)
17647 {
17648 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17649 bool parameter_pack = false;
17650 tree targ = TREE_VEC_ELT (explicit_targs, i);
17651
17652 /* Dig out the actual parm. */
17653 if (TREE_CODE (parm) == TYPE_DECL
17654 || TREE_CODE (parm) == TEMPLATE_DECL)
17655 {
17656 parm = TREE_TYPE (parm);
17657 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17658 }
17659 else if (TREE_CODE (parm) == PARM_DECL)
17660 {
17661 parm = DECL_INITIAL (parm);
17662 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17663 }
17664
17665 if (!parameter_pack && targ == NULL_TREE)
17666 /* No explicit argument for this template parameter. */
17667 incomplete = true;
17668
17669 if (parameter_pack && pack_deducible_p (parm, fn))
17670 {
17671 /* Mark the argument pack as "incomplete". We could
17672 still deduce more arguments during unification.
17673 We remove this mark in type_unification_real. */
17674 if (targ)
17675 {
17676 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17677 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17678 = ARGUMENT_PACK_ARGS (targ);
17679 }
17680
17681 /* We have some incomplete argument packs. */
17682 incomplete = true;
17683 }
17684 }
17685
17686 TREE_VALUE (tinst) = explicit_targs;
17687 if (!push_tinst_level (tinst))
17688 {
17689 excessive_deduction_depth = true;
17690 goto fail;
17691 }
17692 processing_template_decl += incomplete;
17693 input_location = DECL_SOURCE_LOCATION (fn);
17694 /* Ignore any access checks; we'll see them again in
17695 instantiate_template and they might have the wrong
17696 access path at this point. */
17697 push_deferring_access_checks (dk_deferred);
17698 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17699 complain | tf_partial, NULL_TREE);
17700 pop_deferring_access_checks ();
17701 input_location = loc;
17702 processing_template_decl -= incomplete;
17703 pop_tinst_level ();
17704
17705 if (fntype == error_mark_node)
17706 goto fail;
17707
17708 /* Place the explicitly specified arguments in TARGS. */
17709 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17710 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17711 }
17712
17713 /* Never do unification on the 'this' parameter. */
17714 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17715
17716 if (return_type && strict == DEDUCE_CALL)
17717 {
17718 /* We're deducing for a call to the result of a template conversion
17719 function. The parms we really want are in return_type. */
17720 if (POINTER_TYPE_P (return_type))
17721 return_type = TREE_TYPE (return_type);
17722 parms = TYPE_ARG_TYPES (return_type);
17723 }
17724 else if (return_type)
17725 {
17726 tree *new_args;
17727
17728 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17729 new_args = XALLOCAVEC (tree, nargs + 1);
17730 new_args[0] = return_type;
17731 memcpy (new_args + 1, args, nargs * sizeof (tree));
17732 args = new_args;
17733 ++nargs;
17734 }
17735
17736 /* We allow incomplete unification without an error message here
17737 because the standard doesn't seem to explicitly prohibit it. Our
17738 callers must be ready to deal with unification failures in any
17739 event. */
17740
17741 TREE_VALUE (tinst) = targs;
17742 /* If we aren't explaining yet, push tinst context so we can see where
17743 any errors (e.g. from class instantiations triggered by instantiation
17744 of default template arguments) come from. If we are explaining, this
17745 context is redundant. */
17746 if (!explain_p && !push_tinst_level (tinst))
17747 {
17748 excessive_deduction_depth = true;
17749 goto fail;
17750 }
17751
17752 /* type_unification_real will pass back any access checks from default
17753 template argument substitution. */
17754 vec<deferred_access_check, va_gc> *checks;
17755 checks = NULL;
17756
17757 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17758 targs, parms, args, nargs, /*subr=*/0,
17759 strict, flags, &checks, explain_p);
17760 if (!explain_p)
17761 pop_tinst_level ();
17762 if (!ok)
17763 goto fail;
17764
17765 /* Now that we have bindings for all of the template arguments,
17766 ensure that the arguments deduced for the template template
17767 parameters have compatible template parameter lists. We cannot
17768 check this property before we have deduced all template
17769 arguments, because the template parameter types of a template
17770 template parameter might depend on prior template parameters
17771 deduced after the template template parameter. The following
17772 ill-formed example illustrates this issue:
17773
17774 template<typename T, template<T> class C> void f(C<5>, T);
17775
17776 template<int N> struct X {};
17777
17778 void g() {
17779 f(X<5>(), 5l); // error: template argument deduction fails
17780 }
17781
17782 The template parameter list of 'C' depends on the template type
17783 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17784 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17785 time that we deduce 'C'. */
17786 if (!template_template_parm_bindings_ok_p
17787 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17788 {
17789 unify_inconsistent_template_template_parameters (explain_p);
17790 goto fail;
17791 }
17792
17793 /* All is well so far. Now, check:
17794
17795 [temp.deduct]
17796
17797 When all template arguments have been deduced, all uses of
17798 template parameters in nondeduced contexts are replaced with
17799 the corresponding deduced argument values. If the
17800 substitution results in an invalid type, as described above,
17801 type deduction fails. */
17802 TREE_VALUE (tinst) = targs;
17803 if (!push_tinst_level (tinst))
17804 {
17805 excessive_deduction_depth = true;
17806 goto fail;
17807 }
17808
17809 /* Also collect access checks from the instantiation. */
17810 reopen_deferring_access_checks (checks);
17811
17812 decl = instantiate_template (fn, targs, complain);
17813
17814 checks = get_deferred_access_checks ();
17815 pop_deferring_access_checks ();
17816
17817 pop_tinst_level ();
17818
17819 if (decl == error_mark_node)
17820 goto fail;
17821
17822 /* Now perform any access checks encountered during substitution. */
17823 push_access_scope (decl);
17824 ok = perform_access_checks (checks, complain);
17825 pop_access_scope (decl);
17826 if (!ok)
17827 goto fail;
17828
17829 /* If we're looking for an exact match, check that what we got
17830 is indeed an exact match. It might not be if some template
17831 parameters are used in non-deduced contexts. But don't check
17832 for an exact match if we have dependent template arguments;
17833 in that case we're doing partial ordering, and we already know
17834 that we have two candidates that will provide the actual type. */
17835 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17836 {
17837 tree substed = TREE_TYPE (decl);
17838 unsigned int i;
17839
17840 tree sarg
17841 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17842 if (return_type)
17843 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17844 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17845 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17846 {
17847 unify_type_mismatch (explain_p, args[i],
17848 TREE_VALUE (sarg));
17849 goto fail;
17850 }
17851 }
17852
17853 r = decl;
17854
17855 fail:
17856 --deduction_depth;
17857 if (excessive_deduction_depth)
17858 {
17859 if (deduction_depth == 0)
17860 /* Reset once we're all the way out. */
17861 excessive_deduction_depth = false;
17862 }
17863
17864 /* We can't free this if a pending_template entry or last_error_tinst_level
17865 is pointing at it. */
17866 if (last_pending_template == old_last_pend
17867 && last_error_tinst_level == old_error_tinst)
17868 ggc_free (tinst);
17869
17870 return r;
17871 }
17872
17873 /* Adjust types before performing type deduction, as described in
17874 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17875 sections are symmetric. PARM is the type of a function parameter
17876 or the return type of the conversion function. ARG is the type of
17877 the argument passed to the call, or the type of the value
17878 initialized with the result of the conversion function.
17879 ARG_EXPR is the original argument expression, which may be null. */
17880
17881 static int
17882 maybe_adjust_types_for_deduction (unification_kind_t strict,
17883 tree* parm,
17884 tree* arg,
17885 tree arg_expr)
17886 {
17887 int result = 0;
17888
17889 switch (strict)
17890 {
17891 case DEDUCE_CALL:
17892 break;
17893
17894 case DEDUCE_CONV:
17895 /* Swap PARM and ARG throughout the remainder of this
17896 function; the handling is precisely symmetric since PARM
17897 will initialize ARG rather than vice versa. */
17898 std::swap (parm, arg);
17899 break;
17900
17901 case DEDUCE_EXACT:
17902 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17903 too, but here handle it by stripping the reference from PARM
17904 rather than by adding it to ARG. */
17905 if (TREE_CODE (*parm) == REFERENCE_TYPE
17906 && TYPE_REF_IS_RVALUE (*parm)
17907 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17908 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17909 && TREE_CODE (*arg) == REFERENCE_TYPE
17910 && !TYPE_REF_IS_RVALUE (*arg))
17911 *parm = TREE_TYPE (*parm);
17912 /* Nothing else to do in this case. */
17913 return 0;
17914
17915 default:
17916 gcc_unreachable ();
17917 }
17918
17919 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17920 {
17921 /* [temp.deduct.call]
17922
17923 If P is not a reference type:
17924
17925 --If A is an array type, the pointer type produced by the
17926 array-to-pointer standard conversion (_conv.array_) is
17927 used in place of A for type deduction; otherwise,
17928
17929 --If A is a function type, the pointer type produced by
17930 the function-to-pointer standard conversion
17931 (_conv.func_) is used in place of A for type deduction;
17932 otherwise,
17933
17934 --If A is a cv-qualified type, the top level
17935 cv-qualifiers of A's type are ignored for type
17936 deduction. */
17937 if (TREE_CODE (*arg) == ARRAY_TYPE)
17938 *arg = build_pointer_type (TREE_TYPE (*arg));
17939 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17940 *arg = build_pointer_type (*arg);
17941 else
17942 *arg = TYPE_MAIN_VARIANT (*arg);
17943 }
17944
17945 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17946 of the form T&&, where T is a template parameter, and the argument
17947 is an lvalue, T is deduced as A& */
17948 if (TREE_CODE (*parm) == REFERENCE_TYPE
17949 && TYPE_REF_IS_RVALUE (*parm)
17950 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17951 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17952 && (arg_expr ? real_lvalue_p (arg_expr)
17953 /* try_one_overload doesn't provide an arg_expr, but
17954 functions are always lvalues. */
17955 : TREE_CODE (*arg) == FUNCTION_TYPE))
17956 *arg = build_reference_type (*arg);
17957
17958 /* [temp.deduct.call]
17959
17960 If P is a cv-qualified type, the top level cv-qualifiers
17961 of P's type are ignored for type deduction. If P is a
17962 reference type, the type referred to by P is used for
17963 type deduction. */
17964 *parm = TYPE_MAIN_VARIANT (*parm);
17965 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17966 {
17967 *parm = TREE_TYPE (*parm);
17968 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17969 }
17970
17971 /* DR 322. For conversion deduction, remove a reference type on parm
17972 too (which has been swapped into ARG). */
17973 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17974 *arg = TREE_TYPE (*arg);
17975
17976 return result;
17977 }
17978
17979 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17980 template which does contain any deducible template parameters; check if
17981 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17982 unify_one_argument. */
17983
17984 static int
17985 check_non_deducible_conversion (tree parm, tree arg, int strict,
17986 int flags, bool explain_p)
17987 {
17988 tree type;
17989
17990 if (!TYPE_P (arg))
17991 type = TREE_TYPE (arg);
17992 else
17993 type = arg;
17994
17995 if (same_type_p (parm, type))
17996 return unify_success (explain_p);
17997
17998 if (strict == DEDUCE_CONV)
17999 {
18000 if (can_convert_arg (type, parm, NULL_TREE, flags,
18001 explain_p ? tf_warning_or_error : tf_none))
18002 return unify_success (explain_p);
18003 }
18004 else if (strict != DEDUCE_EXACT)
18005 {
18006 if (can_convert_arg (parm, type,
18007 TYPE_P (arg) ? NULL_TREE : arg,
18008 flags, explain_p ? tf_warning_or_error : tf_none))
18009 return unify_success (explain_p);
18010 }
18011
18012 if (strict == DEDUCE_EXACT)
18013 return unify_type_mismatch (explain_p, parm, arg);
18014 else
18015 return unify_arg_conversion (explain_p, parm, type, arg);
18016 }
18017
18018 static bool uses_deducible_template_parms (tree type);
18019
18020 /* Returns true iff the expression EXPR is one from which a template
18021 argument can be deduced. In other words, if it's an undecorated
18022 use of a template non-type parameter. */
18023
18024 static bool
18025 deducible_expression (tree expr)
18026 {
18027 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
18028 }
18029
18030 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18031 deducible way; that is, if it has a max value of <PARM> - 1. */
18032
18033 static bool
18034 deducible_array_bound (tree domain)
18035 {
18036 if (domain == NULL_TREE)
18037 return false;
18038
18039 tree max = TYPE_MAX_VALUE (domain);
18040 if (TREE_CODE (max) != MINUS_EXPR)
18041 return false;
18042
18043 return deducible_expression (TREE_OPERAND (max, 0));
18044 }
18045
18046 /* Returns true iff the template arguments ARGS use a template parameter
18047 in a deducible way. */
18048
18049 static bool
18050 deducible_template_args (tree args)
18051 {
18052 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
18053 {
18054 bool deducible;
18055 tree elt = TREE_VEC_ELT (args, i);
18056 if (ARGUMENT_PACK_P (elt))
18057 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
18058 else
18059 {
18060 if (PACK_EXPANSION_P (elt))
18061 elt = PACK_EXPANSION_PATTERN (elt);
18062 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
18063 deducible = true;
18064 else if (TYPE_P (elt))
18065 deducible = uses_deducible_template_parms (elt);
18066 else
18067 deducible = deducible_expression (elt);
18068 }
18069 if (deducible)
18070 return true;
18071 }
18072 return false;
18073 }
18074
18075 /* Returns true iff TYPE contains any deducible references to template
18076 parameters, as per 14.8.2.5. */
18077
18078 static bool
18079 uses_deducible_template_parms (tree type)
18080 {
18081 if (PACK_EXPANSION_P (type))
18082 type = PACK_EXPANSION_PATTERN (type);
18083
18084 /* T
18085 cv-list T
18086 TT<T>
18087 TT<i>
18088 TT<> */
18089 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18090 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18091 return true;
18092
18093 /* T*
18094 T&
18095 T&& */
18096 if (POINTER_TYPE_P (type))
18097 return uses_deducible_template_parms (TREE_TYPE (type));
18098
18099 /* T[integer-constant ]
18100 type [i] */
18101 if (TREE_CODE (type) == ARRAY_TYPE)
18102 return (uses_deducible_template_parms (TREE_TYPE (type))
18103 || deducible_array_bound (TYPE_DOMAIN (type)));
18104
18105 /* T type ::*
18106 type T::*
18107 T T::*
18108 T (type ::*)()
18109 type (T::*)()
18110 type (type ::*)(T)
18111 type (T::*)(T)
18112 T (type ::*)(T)
18113 T (T::*)()
18114 T (T::*)(T) */
18115 if (TYPE_PTRMEM_P (type))
18116 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18117 || (uses_deducible_template_parms
18118 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18119
18120 /* template-name <T> (where template-name refers to a class template)
18121 template-name <i> (where template-name refers to a class template) */
18122 if (CLASS_TYPE_P (type)
18123 && CLASSTYPE_TEMPLATE_INFO (type)
18124 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18125 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18126 (CLASSTYPE_TI_ARGS (type)));
18127
18128 /* type (T)
18129 T()
18130 T(T) */
18131 if (TREE_CODE (type) == FUNCTION_TYPE
18132 || TREE_CODE (type) == METHOD_TYPE)
18133 {
18134 if (uses_deducible_template_parms (TREE_TYPE (type)))
18135 return true;
18136 tree parm = TYPE_ARG_TYPES (type);
18137 if (TREE_CODE (type) == METHOD_TYPE)
18138 parm = TREE_CHAIN (parm);
18139 for (; parm; parm = TREE_CHAIN (parm))
18140 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18141 return true;
18142 }
18143
18144 return false;
18145 }
18146
18147 /* Subroutine of type_unification_real and unify_pack_expansion to
18148 handle unification of a single P/A pair. Parameters are as
18149 for those functions. */
18150
18151 static int
18152 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18153 int subr, unification_kind_t strict,
18154 bool explain_p)
18155 {
18156 tree arg_expr = NULL_TREE;
18157 int arg_strict;
18158
18159 if (arg == error_mark_node || parm == error_mark_node)
18160 return unify_invalid (explain_p);
18161 if (arg == unknown_type_node)
18162 /* We can't deduce anything from this, but we might get all the
18163 template args from other function args. */
18164 return unify_success (explain_p);
18165
18166 /* Implicit conversions (Clause 4) will be performed on a function
18167 argument to convert it to the type of the corresponding function
18168 parameter if the parameter type contains no template-parameters that
18169 participate in template argument deduction. */
18170 if (strict != DEDUCE_EXACT
18171 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18172 /* For function parameters with no deducible template parameters,
18173 just return. We'll check non-dependent conversions later. */
18174 return unify_success (explain_p);
18175
18176 switch (strict)
18177 {
18178 case DEDUCE_CALL:
18179 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18180 | UNIFY_ALLOW_MORE_CV_QUAL
18181 | UNIFY_ALLOW_DERIVED);
18182 break;
18183
18184 case DEDUCE_CONV:
18185 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18186 break;
18187
18188 case DEDUCE_EXACT:
18189 arg_strict = UNIFY_ALLOW_NONE;
18190 break;
18191
18192 default:
18193 gcc_unreachable ();
18194 }
18195
18196 /* We only do these transformations if this is the top-level
18197 parameter_type_list in a call or declaration matching; in other
18198 situations (nested function declarators, template argument lists) we
18199 won't be comparing a type to an expression, and we don't do any type
18200 adjustments. */
18201 if (!subr)
18202 {
18203 if (!TYPE_P (arg))
18204 {
18205 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18206 if (type_unknown_p (arg))
18207 {
18208 /* [temp.deduct.type] A template-argument can be
18209 deduced from a pointer to function or pointer
18210 to member function argument if the set of
18211 overloaded functions does not contain function
18212 templates and at most one of a set of
18213 overloaded functions provides a unique
18214 match. */
18215
18216 if (resolve_overloaded_unification
18217 (tparms, targs, parm, arg, strict,
18218 arg_strict, explain_p))
18219 return unify_success (explain_p);
18220 return unify_overload_resolution_failure (explain_p, arg);
18221 }
18222
18223 arg_expr = arg;
18224 arg = unlowered_expr_type (arg);
18225 if (arg == error_mark_node)
18226 return unify_invalid (explain_p);
18227 }
18228
18229 arg_strict |=
18230 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18231 }
18232 else
18233 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18234 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18235 return unify_template_argument_mismatch (explain_p, parm, arg);
18236
18237 /* For deduction from an init-list we need the actual list. */
18238 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18239 arg = arg_expr;
18240 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18241 }
18242
18243 /* Most parms like fn_type_unification.
18244
18245 If SUBR is 1, we're being called recursively (to unify the
18246 arguments of a function or method parameter of a function
18247 template).
18248
18249 CHECKS is a pointer to a vector of access checks encountered while
18250 substituting default template arguments. */
18251
18252 static int
18253 type_unification_real (tree tparms,
18254 tree targs,
18255 tree xparms,
18256 const tree *xargs,
18257 unsigned int xnargs,
18258 int subr,
18259 unification_kind_t strict,
18260 int flags,
18261 vec<deferred_access_check, va_gc> **checks,
18262 bool explain_p)
18263 {
18264 tree parm, arg;
18265 int i;
18266 int ntparms = TREE_VEC_LENGTH (tparms);
18267 int saw_undeduced = 0;
18268 tree parms;
18269 const tree *args;
18270 unsigned int nargs;
18271 unsigned int ia;
18272
18273 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18274 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18275 gcc_assert (ntparms > 0);
18276
18277 /* Reset the number of non-defaulted template arguments contained
18278 in TARGS. */
18279 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18280
18281 again:
18282 parms = xparms;
18283 args = xargs;
18284 nargs = xnargs;
18285
18286 ia = 0;
18287 while (parms && parms != void_list_node
18288 && ia < nargs)
18289 {
18290 parm = TREE_VALUE (parms);
18291
18292 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18293 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18294 /* For a function parameter pack that occurs at the end of the
18295 parameter-declaration-list, the type A of each remaining
18296 argument of the call is compared with the type P of the
18297 declarator-id of the function parameter pack. */
18298 break;
18299
18300 parms = TREE_CHAIN (parms);
18301
18302 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18303 /* For a function parameter pack that does not occur at the
18304 end of the parameter-declaration-list, the type of the
18305 parameter pack is a non-deduced context. */
18306 continue;
18307
18308 arg = args[ia];
18309 ++ia;
18310
18311 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18312 explain_p))
18313 return 1;
18314 }
18315
18316 if (parms
18317 && parms != void_list_node
18318 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18319 {
18320 /* Unify the remaining arguments with the pack expansion type. */
18321 tree argvec;
18322 tree parmvec = make_tree_vec (1);
18323
18324 /* Allocate a TREE_VEC and copy in all of the arguments */
18325 argvec = make_tree_vec (nargs - ia);
18326 for (i = 0; ia < nargs; ++ia, ++i)
18327 TREE_VEC_ELT (argvec, i) = args[ia];
18328
18329 /* Copy the parameter into parmvec. */
18330 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18331 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18332 /*subr=*/subr, explain_p))
18333 return 1;
18334
18335 /* Advance to the end of the list of parameters. */
18336 parms = TREE_CHAIN (parms);
18337 }
18338
18339 /* Fail if we've reached the end of the parm list, and more args
18340 are present, and the parm list isn't variadic. */
18341 if (ia < nargs && parms == void_list_node)
18342 return unify_too_many_arguments (explain_p, nargs, ia);
18343 /* Fail if parms are left and they don't have default values and
18344 they aren't all deduced as empty packs (c++/57397). This is
18345 consistent with sufficient_parms_p. */
18346 if (parms && parms != void_list_node
18347 && TREE_PURPOSE (parms) == NULL_TREE)
18348 {
18349 unsigned int count = nargs;
18350 tree p = parms;
18351 bool type_pack_p;
18352 do
18353 {
18354 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18355 if (!type_pack_p)
18356 count++;
18357 p = TREE_CHAIN (p);
18358 }
18359 while (p && p != void_list_node);
18360 if (count != nargs)
18361 return unify_too_few_arguments (explain_p, ia, count,
18362 type_pack_p);
18363 }
18364
18365 if (!subr)
18366 {
18367 tsubst_flags_t complain = (explain_p
18368 ? tf_warning_or_error
18369 : tf_none);
18370
18371 for (i = 0; i < ntparms; i++)
18372 {
18373 tree targ = TREE_VEC_ELT (targs, i);
18374 tree tparm = TREE_VEC_ELT (tparms, i);
18375
18376 /* Clear the "incomplete" flags on all argument packs now so that
18377 substituting them into later default arguments works. */
18378 if (targ && ARGUMENT_PACK_P (targ))
18379 {
18380 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18381 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18382 }
18383
18384 if (targ || tparm == error_mark_node)
18385 continue;
18386 tparm = TREE_VALUE (tparm);
18387
18388 /* If this is an undeduced nontype parameter that depends on
18389 a type parameter, try another pass; its type may have been
18390 deduced from a later argument than the one from which
18391 this parameter can be deduced. */
18392 if (TREE_CODE (tparm) == PARM_DECL
18393 && uses_template_parms (TREE_TYPE (tparm))
18394 && saw_undeduced < 2)
18395 {
18396 saw_undeduced = 1;
18397 continue;
18398 }
18399
18400 /* Core issue #226 (C++0x) [temp.deduct]:
18401
18402 If a template argument has not been deduced, its
18403 default template argument, if any, is used.
18404
18405 When we are in C++98 mode, TREE_PURPOSE will either
18406 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18407 to explicitly check cxx_dialect here. */
18408 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18409 /* OK, there is a default argument. Wait until after the
18410 conversion check to do substitution. */
18411 continue;
18412
18413 /* If the type parameter is a parameter pack, then it will
18414 be deduced to an empty parameter pack. */
18415 if (template_parameter_pack_p (tparm))
18416 {
18417 tree arg;
18418
18419 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18420 {
18421 arg = make_node (NONTYPE_ARGUMENT_PACK);
18422 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18423 TREE_CONSTANT (arg) = 1;
18424 }
18425 else
18426 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18427
18428 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18429
18430 TREE_VEC_ELT (targs, i) = arg;
18431 continue;
18432 }
18433
18434 return unify_parameter_deduction_failure (explain_p, tparm);
18435 }
18436
18437 /* DR 1391: All parameters have args, now check non-dependent parms for
18438 convertibility. */
18439 if (saw_undeduced < 2)
18440 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18441 parms && parms != void_list_node && ia < nargs; )
18442 {
18443 parm = TREE_VALUE (parms);
18444
18445 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18446 && (!TREE_CHAIN (parms)
18447 || TREE_CHAIN (parms) == void_list_node))
18448 /* For a function parameter pack that occurs at the end of the
18449 parameter-declaration-list, the type A of each remaining
18450 argument of the call is compared with the type P of the
18451 declarator-id of the function parameter pack. */
18452 break;
18453
18454 parms = TREE_CHAIN (parms);
18455
18456 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18457 /* For a function parameter pack that does not occur at the
18458 end of the parameter-declaration-list, the type of the
18459 parameter pack is a non-deduced context. */
18460 continue;
18461
18462 arg = args[ia];
18463 ++ia;
18464
18465 if (uses_template_parms (parm))
18466 continue;
18467 if (check_non_deducible_conversion (parm, arg, strict, flags,
18468 explain_p))
18469 return 1;
18470 }
18471
18472 /* Now substitute into the default template arguments. */
18473 for (i = 0; i < ntparms; i++)
18474 {
18475 tree targ = TREE_VEC_ELT (targs, i);
18476 tree tparm = TREE_VEC_ELT (tparms, i);
18477
18478 if (targ || tparm == error_mark_node)
18479 continue;
18480 tree parm = TREE_VALUE (tparm);
18481
18482 if (TREE_CODE (parm) == PARM_DECL
18483 && uses_template_parms (TREE_TYPE (parm))
18484 && saw_undeduced < 2)
18485 continue;
18486
18487 tree arg = TREE_PURPOSE (tparm);
18488 reopen_deferring_access_checks (*checks);
18489 location_t save_loc = input_location;
18490 if (DECL_P (parm))
18491 input_location = DECL_SOURCE_LOCATION (parm);
18492 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18493 arg = convert_template_argument (parm, arg, targs, complain,
18494 i, NULL_TREE);
18495 input_location = save_loc;
18496 *checks = get_deferred_access_checks ();
18497 pop_deferring_access_checks ();
18498 if (arg == error_mark_node)
18499 return 1;
18500 else
18501 {
18502 TREE_VEC_ELT (targs, i) = arg;
18503 /* The position of the first default template argument,
18504 is also the number of non-defaulted arguments in TARGS.
18505 Record that. */
18506 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18507 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18508 continue;
18509 }
18510 }
18511
18512 if (saw_undeduced++ == 1)
18513 goto again;
18514 }
18515
18516 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18517 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18518
18519 return unify_success (explain_p);
18520 }
18521
18522 /* Subroutine of type_unification_real. Args are like the variables
18523 at the call site. ARG is an overloaded function (or template-id);
18524 we try deducing template args from each of the overloads, and if
18525 only one succeeds, we go with that. Modifies TARGS and returns
18526 true on success. */
18527
18528 static bool
18529 resolve_overloaded_unification (tree tparms,
18530 tree targs,
18531 tree parm,
18532 tree arg,
18533 unification_kind_t strict,
18534 int sub_strict,
18535 bool explain_p)
18536 {
18537 tree tempargs = copy_node (targs);
18538 int good = 0;
18539 tree goodfn = NULL_TREE;
18540 bool addr_p;
18541
18542 if (TREE_CODE (arg) == ADDR_EXPR)
18543 {
18544 arg = TREE_OPERAND (arg, 0);
18545 addr_p = true;
18546 }
18547 else
18548 addr_p = false;
18549
18550 if (TREE_CODE (arg) == COMPONENT_REF)
18551 /* Handle `&x' where `x' is some static or non-static member
18552 function name. */
18553 arg = TREE_OPERAND (arg, 1);
18554
18555 if (TREE_CODE (arg) == OFFSET_REF)
18556 arg = TREE_OPERAND (arg, 1);
18557
18558 /* Strip baselink information. */
18559 if (BASELINK_P (arg))
18560 arg = BASELINK_FUNCTIONS (arg);
18561
18562 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18563 {
18564 /* If we got some explicit template args, we need to plug them into
18565 the affected templates before we try to unify, in case the
18566 explicit args will completely resolve the templates in question. */
18567
18568 int ok = 0;
18569 tree expl_subargs = TREE_OPERAND (arg, 1);
18570 arg = TREE_OPERAND (arg, 0);
18571
18572 for (; arg; arg = OVL_NEXT (arg))
18573 {
18574 tree fn = OVL_CURRENT (arg);
18575 tree subargs, elem;
18576
18577 if (TREE_CODE (fn) != TEMPLATE_DECL)
18578 continue;
18579
18580 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18581 expl_subargs, NULL_TREE, tf_none,
18582 /*require_all_args=*/true,
18583 /*use_default_args=*/true);
18584 if (subargs != error_mark_node
18585 && !any_dependent_template_arguments_p (subargs))
18586 {
18587 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18588 if (try_one_overload (tparms, targs, tempargs, parm,
18589 elem, strict, sub_strict, addr_p, explain_p)
18590 && (!goodfn || !same_type_p (goodfn, elem)))
18591 {
18592 goodfn = elem;
18593 ++good;
18594 }
18595 }
18596 else if (subargs)
18597 ++ok;
18598 }
18599 /* If no templates (or more than one) are fully resolved by the
18600 explicit arguments, this template-id is a non-deduced context; it
18601 could still be OK if we deduce all template arguments for the
18602 enclosing call through other arguments. */
18603 if (good != 1)
18604 good = ok;
18605 }
18606 else if (TREE_CODE (arg) != OVERLOAD
18607 && TREE_CODE (arg) != FUNCTION_DECL)
18608 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18609 -- but the deduction does not succeed because the expression is
18610 not just the function on its own. */
18611 return false;
18612 else
18613 for (; arg; arg = OVL_NEXT (arg))
18614 if (try_one_overload (tparms, targs, tempargs, parm,
18615 TREE_TYPE (OVL_CURRENT (arg)),
18616 strict, sub_strict, addr_p, explain_p)
18617 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18618 {
18619 goodfn = OVL_CURRENT (arg);
18620 ++good;
18621 }
18622
18623 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18624 to function or pointer to member function argument if the set of
18625 overloaded functions does not contain function templates and at most
18626 one of a set of overloaded functions provides a unique match.
18627
18628 So if we found multiple possibilities, we return success but don't
18629 deduce anything. */
18630
18631 if (good == 1)
18632 {
18633 int i = TREE_VEC_LENGTH (targs);
18634 for (; i--; )
18635 if (TREE_VEC_ELT (tempargs, i))
18636 {
18637 tree old = TREE_VEC_ELT (targs, i);
18638 tree new_ = TREE_VEC_ELT (tempargs, i);
18639 if (new_ && old && ARGUMENT_PACK_P (old)
18640 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18641 /* Don't forget explicit template arguments in a pack. */
18642 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18643 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18644 TREE_VEC_ELT (targs, i) = new_;
18645 }
18646 }
18647 if (good)
18648 return true;
18649
18650 return false;
18651 }
18652
18653 /* Core DR 115: In contexts where deduction is done and fails, or in
18654 contexts where deduction is not done, if a template argument list is
18655 specified and it, along with any default template arguments, identifies
18656 a single function template specialization, then the template-id is an
18657 lvalue for the function template specialization. */
18658
18659 tree
18660 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
18661 {
18662 tree expr, offset, baselink;
18663 bool addr;
18664
18665 if (!type_unknown_p (orig_expr))
18666 return orig_expr;
18667
18668 expr = orig_expr;
18669 addr = false;
18670 offset = NULL_TREE;
18671 baselink = NULL_TREE;
18672
18673 if (TREE_CODE (expr) == ADDR_EXPR)
18674 {
18675 expr = TREE_OPERAND (expr, 0);
18676 addr = true;
18677 }
18678 if (TREE_CODE (expr) == OFFSET_REF)
18679 {
18680 offset = expr;
18681 expr = TREE_OPERAND (expr, 1);
18682 }
18683 if (BASELINK_P (expr))
18684 {
18685 baselink = expr;
18686 expr = BASELINK_FUNCTIONS (expr);
18687 }
18688
18689 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18690 {
18691 int good = 0;
18692 tree goodfn = NULL_TREE;
18693
18694 /* If we got some explicit template args, we need to plug them into
18695 the affected templates before we try to unify, in case the
18696 explicit args will completely resolve the templates in question. */
18697
18698 tree expl_subargs = TREE_OPERAND (expr, 1);
18699 tree arg = TREE_OPERAND (expr, 0);
18700 tree badfn = NULL_TREE;
18701 tree badargs = NULL_TREE;
18702
18703 for (; arg; arg = OVL_NEXT (arg))
18704 {
18705 tree fn = OVL_CURRENT (arg);
18706 tree subargs, elem;
18707
18708 if (TREE_CODE (fn) != TEMPLATE_DECL)
18709 continue;
18710
18711 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18712 expl_subargs, NULL_TREE, tf_none,
18713 /*require_all_args=*/true,
18714 /*use_default_args=*/true);
18715 if (subargs != error_mark_node
18716 && !any_dependent_template_arguments_p (subargs))
18717 {
18718 elem = instantiate_template (fn, subargs, tf_none);
18719 if (elem == error_mark_node)
18720 {
18721 badfn = fn;
18722 badargs = subargs;
18723 }
18724 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18725 {
18726 goodfn = elem;
18727 ++good;
18728 }
18729 }
18730 }
18731 if (good == 1)
18732 {
18733 mark_used (goodfn);
18734 expr = goodfn;
18735 if (baselink)
18736 expr = build_baselink (BASELINK_BINFO (baselink),
18737 BASELINK_ACCESS_BINFO (baselink),
18738 expr, BASELINK_OPTYPE (baselink));
18739 if (offset)
18740 {
18741 tree base
18742 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18743 expr = build_offset_ref (base, expr, addr, complain);
18744 }
18745 if (addr)
18746 expr = cp_build_addr_expr (expr, complain);
18747 return expr;
18748 }
18749 else if (good == 0 && badargs && (complain & tf_error))
18750 /* There were no good options and at least one bad one, so let the
18751 user know what the problem is. */
18752 instantiate_template (badfn, badargs, complain);
18753 }
18754 return orig_expr;
18755 }
18756
18757 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18758 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18759 different overloads deduce different arguments for a given parm.
18760 ADDR_P is true if the expression for which deduction is being
18761 performed was of the form "& fn" rather than simply "fn".
18762
18763 Returns 1 on success. */
18764
18765 static int
18766 try_one_overload (tree tparms,
18767 tree orig_targs,
18768 tree targs,
18769 tree parm,
18770 tree arg,
18771 unification_kind_t strict,
18772 int sub_strict,
18773 bool addr_p,
18774 bool explain_p)
18775 {
18776 int nargs;
18777 tree tempargs;
18778 int i;
18779
18780 if (arg == error_mark_node)
18781 return 0;
18782
18783 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18784 to function or pointer to member function argument if the set of
18785 overloaded functions does not contain function templates and at most
18786 one of a set of overloaded functions provides a unique match.
18787
18788 So if this is a template, just return success. */
18789
18790 if (uses_template_parms (arg))
18791 return 1;
18792
18793 if (TREE_CODE (arg) == METHOD_TYPE)
18794 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18795 else if (addr_p)
18796 arg = build_pointer_type (arg);
18797
18798 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18799
18800 /* We don't copy orig_targs for this because if we have already deduced
18801 some template args from previous args, unify would complain when we
18802 try to deduce a template parameter for the same argument, even though
18803 there isn't really a conflict. */
18804 nargs = TREE_VEC_LENGTH (targs);
18805 tempargs = make_tree_vec (nargs);
18806
18807 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18808 return 0;
18809
18810 /* First make sure we didn't deduce anything that conflicts with
18811 explicitly specified args. */
18812 for (i = nargs; i--; )
18813 {
18814 tree elt = TREE_VEC_ELT (tempargs, i);
18815 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18816
18817 if (!elt)
18818 /*NOP*/;
18819 else if (uses_template_parms (elt))
18820 /* Since we're unifying against ourselves, we will fill in
18821 template args used in the function parm list with our own
18822 template parms. Discard them. */
18823 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18824 else if (oldelt && ARGUMENT_PACK_P (oldelt))
18825 {
18826 /* Check that the argument at each index of the deduced argument pack
18827 is equivalent to the corresponding explicitly specified argument.
18828 We may have deduced more arguments than were explicitly specified,
18829 and that's OK. */
18830 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt));
18831 gcc_assert (ARGUMENT_PACK_ARGS (oldelt)
18832 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt));
18833
18834 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
18835 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
18836
18837 if (TREE_VEC_LENGTH (deduced_pack)
18838 < TREE_VEC_LENGTH (explicit_pack))
18839 return 0;
18840
18841 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
18842 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
18843 TREE_VEC_ELT (deduced_pack, j)))
18844 return 0;
18845 }
18846 else if (oldelt && !template_args_equal (oldelt, elt))
18847 return 0;
18848 }
18849
18850 for (i = nargs; i--; )
18851 {
18852 tree elt = TREE_VEC_ELT (tempargs, i);
18853
18854 if (elt)
18855 TREE_VEC_ELT (targs, i) = elt;
18856 }
18857
18858 return 1;
18859 }
18860
18861 /* PARM is a template class (perhaps with unbound template
18862 parameters). ARG is a fully instantiated type. If ARG can be
18863 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18864 TARGS are as for unify. */
18865
18866 static tree
18867 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18868 bool explain_p)
18869 {
18870 tree copy_of_targs;
18871
18872 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18873 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18874 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18875 return NULL_TREE;
18876
18877 /* We need to make a new template argument vector for the call to
18878 unify. If we used TARGS, we'd clutter it up with the result of
18879 the attempted unification, even if this class didn't work out.
18880 We also don't want to commit ourselves to all the unifications
18881 we've already done, since unification is supposed to be done on
18882 an argument-by-argument basis. In other words, consider the
18883 following pathological case:
18884
18885 template <int I, int J, int K>
18886 struct S {};
18887
18888 template <int I, int J>
18889 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18890
18891 template <int I, int J, int K>
18892 void f(S<I, J, K>, S<I, I, I>);
18893
18894 void g() {
18895 S<0, 0, 0> s0;
18896 S<0, 1, 2> s2;
18897
18898 f(s0, s2);
18899 }
18900
18901 Now, by the time we consider the unification involving `s2', we
18902 already know that we must have `f<0, 0, 0>'. But, even though
18903 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18904 because there are two ways to unify base classes of S<0, 1, 2>
18905 with S<I, I, I>. If we kept the already deduced knowledge, we
18906 would reject the possibility I=1. */
18907 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18908
18909 /* If unification failed, we're done. */
18910 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18911 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18912 return NULL_TREE;
18913
18914 return arg;
18915 }
18916
18917 /* Given a template type PARM and a class type ARG, find the unique
18918 base type in ARG that is an instance of PARM. We do not examine
18919 ARG itself; only its base-classes. If there is not exactly one
18920 appropriate base class, return NULL_TREE. PARM may be the type of
18921 a partial specialization, as well as a plain template type. Used
18922 by unify. */
18923
18924 static enum template_base_result
18925 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18926 bool explain_p, tree *result)
18927 {
18928 tree rval = NULL_TREE;
18929 tree binfo;
18930
18931 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18932
18933 binfo = TYPE_BINFO (complete_type (arg));
18934 if (!binfo)
18935 {
18936 /* The type could not be completed. */
18937 *result = NULL_TREE;
18938 return tbr_incomplete_type;
18939 }
18940
18941 /* Walk in inheritance graph order. The search order is not
18942 important, and this avoids multiple walks of virtual bases. */
18943 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18944 {
18945 tree r = try_class_unification (tparms, targs, parm,
18946 BINFO_TYPE (binfo), explain_p);
18947
18948 if (r)
18949 {
18950 /* If there is more than one satisfactory baseclass, then:
18951
18952 [temp.deduct.call]
18953
18954 If they yield more than one possible deduced A, the type
18955 deduction fails.
18956
18957 applies. */
18958 if (rval && !same_type_p (r, rval))
18959 {
18960 *result = NULL_TREE;
18961 return tbr_ambiguous_baseclass;
18962 }
18963
18964 rval = r;
18965 }
18966 }
18967
18968 *result = rval;
18969 return tbr_success;
18970 }
18971
18972 /* Returns the level of DECL, which declares a template parameter. */
18973
18974 static int
18975 template_decl_level (tree decl)
18976 {
18977 switch (TREE_CODE (decl))
18978 {
18979 case TYPE_DECL:
18980 case TEMPLATE_DECL:
18981 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18982
18983 case PARM_DECL:
18984 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18985
18986 default:
18987 gcc_unreachable ();
18988 }
18989 return 0;
18990 }
18991
18992 /* Decide whether ARG can be unified with PARM, considering only the
18993 cv-qualifiers of each type, given STRICT as documented for unify.
18994 Returns nonzero iff the unification is OK on that basis. */
18995
18996 static int
18997 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18998 {
18999 int arg_quals = cp_type_quals (arg);
19000 int parm_quals = cp_type_quals (parm);
19001
19002 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19003 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19004 {
19005 /* Although a CVR qualifier is ignored when being applied to a
19006 substituted template parameter ([8.3.2]/1 for example), that
19007 does not allow us to unify "const T" with "int&" because both
19008 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19009 It is ok when we're allowing additional CV qualifiers
19010 at the outer level [14.8.2.1]/3,1st bullet. */
19011 if ((TREE_CODE (arg) == REFERENCE_TYPE
19012 || TREE_CODE (arg) == FUNCTION_TYPE
19013 || TREE_CODE (arg) == METHOD_TYPE)
19014 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
19015 return 0;
19016
19017 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
19018 && (parm_quals & TYPE_QUAL_RESTRICT))
19019 return 0;
19020 }
19021
19022 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19023 && (arg_quals & parm_quals) != parm_quals)
19024 return 0;
19025
19026 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
19027 && (parm_quals & arg_quals) != arg_quals)
19028 return 0;
19029
19030 return 1;
19031 }
19032
19033 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19034 void
19035 template_parm_level_and_index (tree parm, int* level, int* index)
19036 {
19037 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19038 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19039 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19040 {
19041 *index = TEMPLATE_TYPE_IDX (parm);
19042 *level = TEMPLATE_TYPE_LEVEL (parm);
19043 }
19044 else
19045 {
19046 *index = TEMPLATE_PARM_IDX (parm);
19047 *level = TEMPLATE_PARM_LEVEL (parm);
19048 }
19049 }
19050
19051 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19052 do { \
19053 if (unify (TP, TA, P, A, S, EP)) \
19054 return 1; \
19055 } while (0);
19056
19057 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19058 expansion at the end of PACKED_PARMS. Returns 0 if the type
19059 deduction succeeds, 1 otherwise. STRICT is the same as in
19060 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
19061 call argument list. We'll need to adjust the arguments to make them
19062 types. SUBR tells us if this is from a recursive call to
19063 type_unification_real, or for comparing two template argument
19064 lists. */
19065
19066 static int
19067 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
19068 tree packed_args, unification_kind_t strict,
19069 bool subr, bool explain_p)
19070 {
19071 tree parm
19072 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
19073 tree pattern = PACK_EXPANSION_PATTERN (parm);
19074 tree pack, packs = NULL_TREE;
19075 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
19076
19077 packed_args = expand_template_argument_pack (packed_args);
19078
19079 int len = TREE_VEC_LENGTH (packed_args);
19080
19081 /* Determine the parameter packs we will be deducing from the
19082 pattern, and record their current deductions. */
19083 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19084 pack; pack = TREE_CHAIN (pack))
19085 {
19086 tree parm_pack = TREE_VALUE (pack);
19087 int idx, level;
19088
19089 /* Determine the index and level of this parameter pack. */
19090 template_parm_level_and_index (parm_pack, &level, &idx);
19091
19092 /* Keep track of the parameter packs and their corresponding
19093 argument packs. */
19094 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19095 TREE_TYPE (packs) = make_tree_vec (len - start);
19096 }
19097
19098 /* Loop through all of the arguments that have not yet been
19099 unified and unify each with the pattern. */
19100 for (i = start; i < len; i++)
19101 {
19102 tree parm;
19103 bool any_explicit = false;
19104 tree arg = TREE_VEC_ELT (packed_args, i);
19105
19106 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19107 or the element of its argument pack at the current index if
19108 this argument was explicitly specified. */
19109 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19110 {
19111 int idx, level;
19112 tree arg, pargs;
19113 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19114
19115 arg = NULL_TREE;
19116 if (TREE_VALUE (pack)
19117 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19118 && (i - start < TREE_VEC_LENGTH (pargs)))
19119 {
19120 any_explicit = true;
19121 arg = TREE_VEC_ELT (pargs, i - start);
19122 }
19123 TMPL_ARG (targs, level, idx) = arg;
19124 }
19125
19126 /* If we had explicit template arguments, substitute them into the
19127 pattern before deduction. */
19128 if (any_explicit)
19129 {
19130 /* Some arguments might still be unspecified or dependent. */
19131 bool dependent;
19132 ++processing_template_decl;
19133 dependent = any_dependent_template_arguments_p (targs);
19134 if (!dependent)
19135 --processing_template_decl;
19136 parm = tsubst (pattern, targs,
19137 explain_p ? tf_warning_or_error : tf_none,
19138 NULL_TREE);
19139 if (dependent)
19140 --processing_template_decl;
19141 if (parm == error_mark_node)
19142 return 1;
19143 }
19144 else
19145 parm = pattern;
19146
19147 /* Unify the pattern with the current argument. */
19148 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19149 explain_p))
19150 return 1;
19151
19152 /* For each parameter pack, collect the deduced value. */
19153 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19154 {
19155 int idx, level;
19156 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19157
19158 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19159 TMPL_ARG (targs, level, idx);
19160 }
19161 }
19162
19163 /* Verify that the results of unification with the parameter packs
19164 produce results consistent with what we've seen before, and make
19165 the deduced argument packs available. */
19166 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19167 {
19168 tree old_pack = TREE_VALUE (pack);
19169 tree new_args = TREE_TYPE (pack);
19170 int i, len = TREE_VEC_LENGTH (new_args);
19171 int idx, level;
19172 bool nondeduced_p = false;
19173
19174 /* By default keep the original deduced argument pack.
19175 If necessary, more specific code is going to update the
19176 resulting deduced argument later down in this function. */
19177 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19178 TMPL_ARG (targs, level, idx) = old_pack;
19179
19180 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19181 actually deduce anything. */
19182 for (i = 0; i < len && !nondeduced_p; ++i)
19183 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19184 nondeduced_p = true;
19185 if (nondeduced_p)
19186 continue;
19187
19188 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19189 {
19190 /* If we had fewer function args than explicit template args,
19191 just use the explicits. */
19192 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19193 int explicit_len = TREE_VEC_LENGTH (explicit_args);
19194 if (len < explicit_len)
19195 new_args = explicit_args;
19196 }
19197
19198 if (!old_pack)
19199 {
19200 tree result;
19201 /* Build the deduced *_ARGUMENT_PACK. */
19202 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
19203 {
19204 result = make_node (NONTYPE_ARGUMENT_PACK);
19205 TREE_TYPE (result) =
19206 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
19207 TREE_CONSTANT (result) = 1;
19208 }
19209 else
19210 result = cxx_make_type (TYPE_ARGUMENT_PACK);
19211
19212 SET_ARGUMENT_PACK_ARGS (result, new_args);
19213
19214 /* Note the deduced argument packs for this parameter
19215 pack. */
19216 TMPL_ARG (targs, level, idx) = result;
19217 }
19218 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
19219 && (ARGUMENT_PACK_ARGS (old_pack)
19220 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
19221 {
19222 /* We only had the explicitly-provided arguments before, but
19223 now we have a complete set of arguments. */
19224 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19225
19226 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
19227 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
19228 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
19229 }
19230 else
19231 {
19232 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
19233 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
19234
19235 if (!comp_template_args (old_args, new_args,
19236 &bad_old_arg, &bad_new_arg))
19237 /* Inconsistent unification of this parameter pack. */
19238 return unify_parameter_pack_inconsistent (explain_p,
19239 bad_old_arg,
19240 bad_new_arg);
19241 }
19242 }
19243
19244 return unify_success (explain_p);
19245 }
19246
19247 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19248 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19249 parameters and return value are as for unify. */
19250
19251 static int
19252 unify_array_domain (tree tparms, tree targs,
19253 tree parm_dom, tree arg_dom,
19254 bool explain_p)
19255 {
19256 tree parm_max;
19257 tree arg_max;
19258 bool parm_cst;
19259 bool arg_cst;
19260
19261 /* Our representation of array types uses "N - 1" as the
19262 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19263 not an integer constant. We cannot unify arbitrarily
19264 complex expressions, so we eliminate the MINUS_EXPRs
19265 here. */
19266 parm_max = TYPE_MAX_VALUE (parm_dom);
19267 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19268 if (!parm_cst)
19269 {
19270 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19271 parm_max = TREE_OPERAND (parm_max, 0);
19272 }
19273 arg_max = TYPE_MAX_VALUE (arg_dom);
19274 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19275 if (!arg_cst)
19276 {
19277 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19278 trying to unify the type of a variable with the type
19279 of a template parameter. For example:
19280
19281 template <unsigned int N>
19282 void f (char (&) [N]);
19283 int g();
19284 void h(int i) {
19285 char a[g(i)];
19286 f(a);
19287 }
19288
19289 Here, the type of the ARG will be "int [g(i)]", and
19290 may be a SAVE_EXPR, etc. */
19291 if (TREE_CODE (arg_max) != MINUS_EXPR)
19292 return unify_vla_arg (explain_p, arg_dom);
19293 arg_max = TREE_OPERAND (arg_max, 0);
19294 }
19295
19296 /* If only one of the bounds used a MINUS_EXPR, compensate
19297 by adding one to the other bound. */
19298 if (parm_cst && !arg_cst)
19299 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19300 integer_type_node,
19301 parm_max,
19302 integer_one_node);
19303 else if (arg_cst && !parm_cst)
19304 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19305 integer_type_node,
19306 arg_max,
19307 integer_one_node);
19308
19309 return unify (tparms, targs, parm_max, arg_max,
19310 UNIFY_ALLOW_INTEGER, explain_p);
19311 }
19312
19313 /* Deduce the value of template parameters. TPARMS is the (innermost)
19314 set of template parameters to a template. TARGS is the bindings
19315 for those template parameters, as determined thus far; TARGS may
19316 include template arguments for outer levels of template parameters
19317 as well. PARM is a parameter to a template function, or a
19318 subcomponent of that parameter; ARG is the corresponding argument.
19319 This function attempts to match PARM with ARG in a manner
19320 consistent with the existing assignments in TARGS. If more values
19321 are deduced, then TARGS is updated.
19322
19323 Returns 0 if the type deduction succeeds, 1 otherwise. The
19324 parameter STRICT is a bitwise or of the following flags:
19325
19326 UNIFY_ALLOW_NONE:
19327 Require an exact match between PARM and ARG.
19328 UNIFY_ALLOW_MORE_CV_QUAL:
19329 Allow the deduced ARG to be more cv-qualified (by qualification
19330 conversion) than ARG.
19331 UNIFY_ALLOW_LESS_CV_QUAL:
19332 Allow the deduced ARG to be less cv-qualified than ARG.
19333 UNIFY_ALLOW_DERIVED:
19334 Allow the deduced ARG to be a template base class of ARG,
19335 or a pointer to a template base class of the type pointed to by
19336 ARG.
19337 UNIFY_ALLOW_INTEGER:
19338 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19339 case for more information.
19340 UNIFY_ALLOW_OUTER_LEVEL:
19341 This is the outermost level of a deduction. Used to determine validity
19342 of qualification conversions. A valid qualification conversion must
19343 have const qualified pointers leading up to the inner type which
19344 requires additional CV quals, except at the outer level, where const
19345 is not required [conv.qual]. It would be normal to set this flag in
19346 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19347 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19348 This is the outermost level of a deduction, and PARM can be more CV
19349 qualified at this point.
19350 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19351 This is the outermost level of a deduction, and PARM can be less CV
19352 qualified at this point. */
19353
19354 static int
19355 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19356 bool explain_p)
19357 {
19358 int idx;
19359 tree targ;
19360 tree tparm;
19361 int strict_in = strict;
19362
19363 /* I don't think this will do the right thing with respect to types.
19364 But the only case I've seen it in so far has been array bounds, where
19365 signedness is the only information lost, and I think that will be
19366 okay. */
19367 while (TREE_CODE (parm) == NOP_EXPR)
19368 parm = TREE_OPERAND (parm, 0);
19369
19370 if (arg == error_mark_node)
19371 return unify_invalid (explain_p);
19372 if (arg == unknown_type_node
19373 || arg == init_list_type_node)
19374 /* We can't deduce anything from this, but we might get all the
19375 template args from other function args. */
19376 return unify_success (explain_p);
19377
19378 /* If PARM uses template parameters, then we can't bail out here,
19379 even if ARG == PARM, since we won't record unifications for the
19380 template parameters. We might need them if we're trying to
19381 figure out which of two things is more specialized. */
19382 if (arg == parm && !uses_template_parms (parm))
19383 return unify_success (explain_p);
19384
19385 /* Handle init lists early, so the rest of the function can assume
19386 we're dealing with a type. */
19387 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19388 {
19389 tree elt, elttype;
19390 unsigned i;
19391 tree orig_parm = parm;
19392
19393 /* Replace T with std::initializer_list<T> for deduction. */
19394 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19395 && flag_deduce_init_list)
19396 parm = listify (parm);
19397
19398 if (!is_std_init_list (parm)
19399 && TREE_CODE (parm) != ARRAY_TYPE)
19400 /* We can only deduce from an initializer list argument if the
19401 parameter is std::initializer_list or an array; otherwise this
19402 is a non-deduced context. */
19403 return unify_success (explain_p);
19404
19405 if (TREE_CODE (parm) == ARRAY_TYPE)
19406 elttype = TREE_TYPE (parm);
19407 else
19408 {
19409 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19410 /* Deduction is defined in terms of a single type, so just punt
19411 on the (bizarre) std::initializer_list<T...>. */
19412 if (PACK_EXPANSION_P (elttype))
19413 return unify_success (explain_p);
19414 }
19415
19416 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19417 {
19418 int elt_strict = strict;
19419
19420 if (elt == error_mark_node)
19421 return unify_invalid (explain_p);
19422
19423 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19424 {
19425 tree type = TREE_TYPE (elt);
19426 if (type == error_mark_node)
19427 return unify_invalid (explain_p);
19428 /* It should only be possible to get here for a call. */
19429 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19430 elt_strict |= maybe_adjust_types_for_deduction
19431 (DEDUCE_CALL, &elttype, &type, elt);
19432 elt = type;
19433 }
19434
19435 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19436 explain_p);
19437 }
19438
19439 if (TREE_CODE (parm) == ARRAY_TYPE
19440 && deducible_array_bound (TYPE_DOMAIN (parm)))
19441 {
19442 /* Also deduce from the length of the initializer list. */
19443 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19444 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19445 if (idx == error_mark_node)
19446 return unify_invalid (explain_p);
19447 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19448 idx, explain_p);
19449 }
19450
19451 /* If the std::initializer_list<T> deduction worked, replace the
19452 deduced A with std::initializer_list<A>. */
19453 if (orig_parm != parm)
19454 {
19455 idx = TEMPLATE_TYPE_IDX (orig_parm);
19456 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19457 targ = listify (targ);
19458 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19459 }
19460 return unify_success (explain_p);
19461 }
19462
19463 /* Immediately reject some pairs that won't unify because of
19464 cv-qualification mismatches. */
19465 if (TREE_CODE (arg) == TREE_CODE (parm)
19466 && TYPE_P (arg)
19467 /* It is the elements of the array which hold the cv quals of an array
19468 type, and the elements might be template type parms. We'll check
19469 when we recurse. */
19470 && TREE_CODE (arg) != ARRAY_TYPE
19471 /* We check the cv-qualifiers when unifying with template type
19472 parameters below. We want to allow ARG `const T' to unify with
19473 PARM `T' for example, when computing which of two templates
19474 is more specialized, for example. */
19475 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19476 && !check_cv_quals_for_unify (strict_in, arg, parm))
19477 return unify_cv_qual_mismatch (explain_p, parm, arg);
19478
19479 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19480 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19481 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19482 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19483 strict &= ~UNIFY_ALLOW_DERIVED;
19484 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19485 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19486
19487 switch (TREE_CODE (parm))
19488 {
19489 case TYPENAME_TYPE:
19490 case SCOPE_REF:
19491 case UNBOUND_CLASS_TEMPLATE:
19492 /* In a type which contains a nested-name-specifier, template
19493 argument values cannot be deduced for template parameters used
19494 within the nested-name-specifier. */
19495 return unify_success (explain_p);
19496
19497 case TEMPLATE_TYPE_PARM:
19498 case TEMPLATE_TEMPLATE_PARM:
19499 case BOUND_TEMPLATE_TEMPLATE_PARM:
19500 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19501 if (error_operand_p (tparm))
19502 return unify_invalid (explain_p);
19503
19504 if (TEMPLATE_TYPE_LEVEL (parm)
19505 != template_decl_level (tparm))
19506 /* The PARM is not one we're trying to unify. Just check
19507 to see if it matches ARG. */
19508 {
19509 if (TREE_CODE (arg) == TREE_CODE (parm)
19510 && (is_auto (parm) ? is_auto (arg)
19511 : same_type_p (parm, arg)))
19512 return unify_success (explain_p);
19513 else
19514 return unify_type_mismatch (explain_p, parm, arg);
19515 }
19516 idx = TEMPLATE_TYPE_IDX (parm);
19517 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19518 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19519 if (error_operand_p (tparm))
19520 return unify_invalid (explain_p);
19521
19522 /* Check for mixed types and values. */
19523 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19524 && TREE_CODE (tparm) != TYPE_DECL)
19525 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19526 && TREE_CODE (tparm) != TEMPLATE_DECL))
19527 gcc_unreachable ();
19528
19529 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19530 {
19531 /* ARG must be constructed from a template class or a template
19532 template parameter. */
19533 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19534 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19535 return unify_template_deduction_failure (explain_p, parm, arg);
19536 {
19537 tree parmvec = TYPE_TI_ARGS (parm);
19538 /* An alias template name is never deduced. */
19539 if (TYPE_ALIAS_P (arg))
19540 arg = strip_typedefs (arg);
19541 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19542 tree full_argvec = add_to_template_args (targs, argvec);
19543 tree parm_parms
19544 = DECL_INNERMOST_TEMPLATE_PARMS
19545 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19546 int i, len;
19547 int parm_variadic_p = 0;
19548
19549 /* The resolution to DR150 makes clear that default
19550 arguments for an N-argument may not be used to bind T
19551 to a template template parameter with fewer than N
19552 parameters. It is not safe to permit the binding of
19553 default arguments as an extension, as that may change
19554 the meaning of a conforming program. Consider:
19555
19556 struct Dense { static const unsigned int dim = 1; };
19557
19558 template <template <typename> class View,
19559 typename Block>
19560 void operator+(float, View<Block> const&);
19561
19562 template <typename Block,
19563 unsigned int Dim = Block::dim>
19564 struct Lvalue_proxy { operator float() const; };
19565
19566 void
19567 test_1d (void) {
19568 Lvalue_proxy<Dense> p;
19569 float b;
19570 b + p;
19571 }
19572
19573 Here, if Lvalue_proxy is permitted to bind to View, then
19574 the global operator+ will be used; if they are not, the
19575 Lvalue_proxy will be converted to float. */
19576 if (coerce_template_parms (parm_parms,
19577 full_argvec,
19578 TYPE_TI_TEMPLATE (parm),
19579 (explain_p
19580 ? tf_warning_or_error
19581 : tf_none),
19582 /*require_all_args=*/true,
19583 /*use_default_args=*/false)
19584 == error_mark_node)
19585 return 1;
19586
19587 /* Deduce arguments T, i from TT<T> or TT<i>.
19588 We check each element of PARMVEC and ARGVEC individually
19589 rather than the whole TREE_VEC since they can have
19590 different number of elements. */
19591
19592 parmvec = expand_template_argument_pack (parmvec);
19593 argvec = expand_template_argument_pack (argvec);
19594
19595 len = TREE_VEC_LENGTH (parmvec);
19596
19597 /* Check if the parameters end in a pack, making them
19598 variadic. */
19599 if (len > 0
19600 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19601 parm_variadic_p = 1;
19602
19603 for (i = 0; i < len - parm_variadic_p; ++i)
19604 /* If the template argument list of P contains a pack
19605 expansion that is not the last template argument, the
19606 entire template argument list is a non-deduced
19607 context. */
19608 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19609 return unify_success (explain_p);
19610
19611 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19612 return unify_too_few_arguments (explain_p,
19613 TREE_VEC_LENGTH (argvec), len);
19614
19615 for (i = 0; i < len - parm_variadic_p; ++i)
19616 {
19617 RECUR_AND_CHECK_FAILURE (tparms, targs,
19618 TREE_VEC_ELT (parmvec, i),
19619 TREE_VEC_ELT (argvec, i),
19620 UNIFY_ALLOW_NONE, explain_p);
19621 }
19622
19623 if (parm_variadic_p
19624 && unify_pack_expansion (tparms, targs,
19625 parmvec, argvec,
19626 DEDUCE_EXACT,
19627 /*subr=*/true, explain_p))
19628 return 1;
19629 }
19630 arg = TYPE_TI_TEMPLATE (arg);
19631
19632 /* Fall through to deduce template name. */
19633 }
19634
19635 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19636 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19637 {
19638 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19639
19640 /* Simple cases: Value already set, does match or doesn't. */
19641 if (targ != NULL_TREE && template_args_equal (targ, arg))
19642 return unify_success (explain_p);
19643 else if (targ)
19644 return unify_inconsistency (explain_p, parm, targ, arg);
19645 }
19646 else
19647 {
19648 /* If PARM is `const T' and ARG is only `int', we don't have
19649 a match unless we are allowing additional qualification.
19650 If ARG is `const int' and PARM is just `T' that's OK;
19651 that binds `const int' to `T'. */
19652 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19653 arg, parm))
19654 return unify_cv_qual_mismatch (explain_p, parm, arg);
19655
19656 /* Consider the case where ARG is `const volatile int' and
19657 PARM is `const T'. Then, T should be `volatile int'. */
19658 arg = cp_build_qualified_type_real
19659 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19660 if (arg == error_mark_node)
19661 return unify_invalid (explain_p);
19662
19663 /* Simple cases: Value already set, does match or doesn't. */
19664 if (targ != NULL_TREE && same_type_p (targ, arg))
19665 return unify_success (explain_p);
19666 else if (targ)
19667 return unify_inconsistency (explain_p, parm, targ, arg);
19668
19669 /* Make sure that ARG is not a variable-sized array. (Note
19670 that were talking about variable-sized arrays (like
19671 `int[n]'), rather than arrays of unknown size (like
19672 `int[]').) We'll get very confused by such a type since
19673 the bound of the array is not constant, and therefore
19674 not mangleable. Besides, such types are not allowed in
19675 ISO C++, so we can do as we please here. We do allow
19676 them for 'auto' deduction, since that isn't ABI-exposed. */
19677 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19678 return unify_vla_arg (explain_p, arg);
19679
19680 /* Strip typedefs as in convert_template_argument. */
19681 arg = canonicalize_type_argument (arg, tf_none);
19682 }
19683
19684 /* If ARG is a parameter pack or an expansion, we cannot unify
19685 against it unless PARM is also a parameter pack. */
19686 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19687 && !template_parameter_pack_p (parm))
19688 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19689
19690 /* If the argument deduction results is a METHOD_TYPE,
19691 then there is a problem.
19692 METHOD_TYPE doesn't map to any real C++ type the result of
19693 the deduction can not be of that type. */
19694 if (TREE_CODE (arg) == METHOD_TYPE)
19695 return unify_method_type_error (explain_p, arg);
19696
19697 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19698 return unify_success (explain_p);
19699
19700 case TEMPLATE_PARM_INDEX:
19701 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19702 if (error_operand_p (tparm))
19703 return unify_invalid (explain_p);
19704
19705 if (TEMPLATE_PARM_LEVEL (parm)
19706 != template_decl_level (tparm))
19707 {
19708 /* The PARM is not one we're trying to unify. Just check
19709 to see if it matches ARG. */
19710 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19711 && cp_tree_equal (parm, arg));
19712 if (result)
19713 unify_expression_unequal (explain_p, parm, arg);
19714 return result;
19715 }
19716
19717 idx = TEMPLATE_PARM_IDX (parm);
19718 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19719
19720 if (targ)
19721 {
19722 int x = !cp_tree_equal (targ, arg);
19723 if (x)
19724 unify_inconsistency (explain_p, parm, targ, arg);
19725 return x;
19726 }
19727
19728 /* [temp.deduct.type] If, in the declaration of a function template
19729 with a non-type template-parameter, the non-type
19730 template-parameter is used in an expression in the function
19731 parameter-list and, if the corresponding template-argument is
19732 deduced, the template-argument type shall match the type of the
19733 template-parameter exactly, except that a template-argument
19734 deduced from an array bound may be of any integral type.
19735 The non-type parameter might use already deduced type parameters. */
19736 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19737 if (!TREE_TYPE (arg))
19738 /* Template-parameter dependent expression. Just accept it for now.
19739 It will later be processed in convert_template_argument. */
19740 ;
19741 else if (same_type_p (TREE_TYPE (arg), tparm))
19742 /* OK */;
19743 else if ((strict & UNIFY_ALLOW_INTEGER)
19744 && CP_INTEGRAL_TYPE_P (tparm))
19745 /* Convert the ARG to the type of PARM; the deduced non-type
19746 template argument must exactly match the types of the
19747 corresponding parameter. */
19748 arg = fold (build_nop (tparm, arg));
19749 else if (uses_template_parms (tparm))
19750 /* We haven't deduced the type of this parameter yet. Try again
19751 later. */
19752 return unify_success (explain_p);
19753 else
19754 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19755
19756 /* If ARG is a parameter pack or an expansion, we cannot unify
19757 against it unless PARM is also a parameter pack. */
19758 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19759 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19760 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19761
19762 {
19763 bool removed_attr = false;
19764 arg = strip_typedefs_expr (arg, &removed_attr);
19765 }
19766 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19767 return unify_success (explain_p);
19768
19769 case PTRMEM_CST:
19770 {
19771 /* A pointer-to-member constant can be unified only with
19772 another constant. */
19773 if (TREE_CODE (arg) != PTRMEM_CST)
19774 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19775
19776 /* Just unify the class member. It would be useless (and possibly
19777 wrong, depending on the strict flags) to unify also
19778 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19779 arg refer to the same variable, even if through different
19780 classes. For instance:
19781
19782 struct A { int x; };
19783 struct B : A { };
19784
19785 Unification of &A::x and &B::x must succeed. */
19786 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19787 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19788 }
19789
19790 case POINTER_TYPE:
19791 {
19792 if (!TYPE_PTR_P (arg))
19793 return unify_type_mismatch (explain_p, parm, arg);
19794
19795 /* [temp.deduct.call]
19796
19797 A can be another pointer or pointer to member type that can
19798 be converted to the deduced A via a qualification
19799 conversion (_conv.qual_).
19800
19801 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19802 This will allow for additional cv-qualification of the
19803 pointed-to types if appropriate. */
19804
19805 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19806 /* The derived-to-base conversion only persists through one
19807 level of pointers. */
19808 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19809
19810 return unify (tparms, targs, TREE_TYPE (parm),
19811 TREE_TYPE (arg), strict, explain_p);
19812 }
19813
19814 case REFERENCE_TYPE:
19815 if (TREE_CODE (arg) != REFERENCE_TYPE)
19816 return unify_type_mismatch (explain_p, parm, arg);
19817 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19818 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19819
19820 case ARRAY_TYPE:
19821 if (TREE_CODE (arg) != ARRAY_TYPE)
19822 return unify_type_mismatch (explain_p, parm, arg);
19823 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19824 != (TYPE_DOMAIN (arg) == NULL_TREE))
19825 return unify_type_mismatch (explain_p, parm, arg);
19826 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19827 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19828 if (TYPE_DOMAIN (parm) != NULL_TREE)
19829 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19830 TYPE_DOMAIN (arg), explain_p);
19831 return unify_success (explain_p);
19832
19833 case REAL_TYPE:
19834 case COMPLEX_TYPE:
19835 case VECTOR_TYPE:
19836 case INTEGER_TYPE:
19837 case BOOLEAN_TYPE:
19838 case ENUMERAL_TYPE:
19839 case VOID_TYPE:
19840 case NULLPTR_TYPE:
19841 if (TREE_CODE (arg) != TREE_CODE (parm))
19842 return unify_type_mismatch (explain_p, parm, arg);
19843
19844 /* We have already checked cv-qualification at the top of the
19845 function. */
19846 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19847 return unify_type_mismatch (explain_p, parm, arg);
19848
19849 /* As far as unification is concerned, this wins. Later checks
19850 will invalidate it if necessary. */
19851 return unify_success (explain_p);
19852
19853 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19854 /* Type INTEGER_CST can come from ordinary constant template args. */
19855 case INTEGER_CST:
19856 while (TREE_CODE (arg) == NOP_EXPR)
19857 arg = TREE_OPERAND (arg, 0);
19858
19859 if (TREE_CODE (arg) != INTEGER_CST)
19860 return unify_template_argument_mismatch (explain_p, parm, arg);
19861 return (tree_int_cst_equal (parm, arg)
19862 ? unify_success (explain_p)
19863 : unify_template_argument_mismatch (explain_p, parm, arg));
19864
19865 case TREE_VEC:
19866 {
19867 int i, len, argslen;
19868 int parm_variadic_p = 0;
19869
19870 if (TREE_CODE (arg) != TREE_VEC)
19871 return unify_template_argument_mismatch (explain_p, parm, arg);
19872
19873 len = TREE_VEC_LENGTH (parm);
19874 argslen = TREE_VEC_LENGTH (arg);
19875
19876 /* Check for pack expansions in the parameters. */
19877 for (i = 0; i < len; ++i)
19878 {
19879 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19880 {
19881 if (i == len - 1)
19882 /* We can unify against something with a trailing
19883 parameter pack. */
19884 parm_variadic_p = 1;
19885 else
19886 /* [temp.deduct.type]/9: If the template argument list of
19887 P contains a pack expansion that is not the last
19888 template argument, the entire template argument list
19889 is a non-deduced context. */
19890 return unify_success (explain_p);
19891 }
19892 }
19893
19894 /* If we don't have enough arguments to satisfy the parameters
19895 (not counting the pack expression at the end), or we have
19896 too many arguments for a parameter list that doesn't end in
19897 a pack expression, we can't unify. */
19898 if (parm_variadic_p
19899 ? argslen < len - parm_variadic_p
19900 : argslen != len)
19901 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19902
19903 /* Unify all of the parameters that precede the (optional)
19904 pack expression. */
19905 for (i = 0; i < len - parm_variadic_p; ++i)
19906 {
19907 RECUR_AND_CHECK_FAILURE (tparms, targs,
19908 TREE_VEC_ELT (parm, i),
19909 TREE_VEC_ELT (arg, i),
19910 UNIFY_ALLOW_NONE, explain_p);
19911 }
19912 if (parm_variadic_p)
19913 return unify_pack_expansion (tparms, targs, parm, arg,
19914 DEDUCE_EXACT,
19915 /*subr=*/true, explain_p);
19916 return unify_success (explain_p);
19917 }
19918
19919 case RECORD_TYPE:
19920 case UNION_TYPE:
19921 if (TREE_CODE (arg) != TREE_CODE (parm))
19922 return unify_type_mismatch (explain_p, parm, arg);
19923
19924 if (TYPE_PTRMEMFUNC_P (parm))
19925 {
19926 if (!TYPE_PTRMEMFUNC_P (arg))
19927 return unify_type_mismatch (explain_p, parm, arg);
19928
19929 return unify (tparms, targs,
19930 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19931 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19932 strict, explain_p);
19933 }
19934 else if (TYPE_PTRMEMFUNC_P (arg))
19935 return unify_type_mismatch (explain_p, parm, arg);
19936
19937 if (CLASSTYPE_TEMPLATE_INFO (parm))
19938 {
19939 tree t = NULL_TREE;
19940
19941 if (strict_in & UNIFY_ALLOW_DERIVED)
19942 {
19943 /* First, we try to unify the PARM and ARG directly. */
19944 t = try_class_unification (tparms, targs,
19945 parm, arg, explain_p);
19946
19947 if (!t)
19948 {
19949 /* Fallback to the special case allowed in
19950 [temp.deduct.call]:
19951
19952 If P is a class, and P has the form
19953 template-id, then A can be a derived class of
19954 the deduced A. Likewise, if P is a pointer to
19955 a class of the form template-id, A can be a
19956 pointer to a derived class pointed to by the
19957 deduced A. */
19958 enum template_base_result r;
19959 r = get_template_base (tparms, targs, parm, arg,
19960 explain_p, &t);
19961
19962 if (!t)
19963 {
19964 /* Don't give the derived diagnostic if we're
19965 already dealing with the same template. */
19966 bool same_template
19967 = (CLASSTYPE_TEMPLATE_INFO (arg)
19968 && (CLASSTYPE_TI_TEMPLATE (parm)
19969 == CLASSTYPE_TI_TEMPLATE (arg)));
19970 return unify_no_common_base (explain_p && !same_template,
19971 r, parm, arg);
19972 }
19973 }
19974 }
19975 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19976 && (CLASSTYPE_TI_TEMPLATE (parm)
19977 == CLASSTYPE_TI_TEMPLATE (arg)))
19978 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19979 Then, we should unify `int' and `U'. */
19980 t = arg;
19981 else
19982 /* There's no chance of unification succeeding. */
19983 return unify_type_mismatch (explain_p, parm, arg);
19984
19985 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19986 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19987 }
19988 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19989 return unify_type_mismatch (explain_p, parm, arg);
19990 return unify_success (explain_p);
19991
19992 case METHOD_TYPE:
19993 case FUNCTION_TYPE:
19994 {
19995 unsigned int nargs;
19996 tree *args;
19997 tree a;
19998 unsigned int i;
19999
20000 if (TREE_CODE (arg) != TREE_CODE (parm))
20001 return unify_type_mismatch (explain_p, parm, arg);
20002
20003 /* CV qualifications for methods can never be deduced, they must
20004 match exactly. We need to check them explicitly here,
20005 because type_unification_real treats them as any other
20006 cv-qualified parameter. */
20007 if (TREE_CODE (parm) == METHOD_TYPE
20008 && (!check_cv_quals_for_unify
20009 (UNIFY_ALLOW_NONE,
20010 class_of_this_parm (arg),
20011 class_of_this_parm (parm))))
20012 return unify_cv_qual_mismatch (explain_p, parm, arg);
20013
20014 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
20015 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
20016
20017 nargs = list_length (TYPE_ARG_TYPES (arg));
20018 args = XALLOCAVEC (tree, nargs);
20019 for (a = TYPE_ARG_TYPES (arg), i = 0;
20020 a != NULL_TREE && a != void_list_node;
20021 a = TREE_CHAIN (a), ++i)
20022 args[i] = TREE_VALUE (a);
20023 nargs = i;
20024
20025 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
20026 args, nargs, 1, DEDUCE_EXACT,
20027 LOOKUP_NORMAL, NULL, explain_p);
20028 }
20029
20030 case OFFSET_TYPE:
20031 /* Unify a pointer to member with a pointer to member function, which
20032 deduces the type of the member as a function type. */
20033 if (TYPE_PTRMEMFUNC_P (arg))
20034 {
20035 /* Check top-level cv qualifiers */
20036 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
20037 return unify_cv_qual_mismatch (explain_p, parm, arg);
20038
20039 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20040 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
20041 UNIFY_ALLOW_NONE, explain_p);
20042
20043 /* Determine the type of the function we are unifying against. */
20044 tree fntype = static_fn_type (arg);
20045
20046 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
20047 }
20048
20049 if (TREE_CODE (arg) != OFFSET_TYPE)
20050 return unify_type_mismatch (explain_p, parm, arg);
20051 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20052 TYPE_OFFSET_BASETYPE (arg),
20053 UNIFY_ALLOW_NONE, explain_p);
20054 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20055 strict, explain_p);
20056
20057 case CONST_DECL:
20058 if (DECL_TEMPLATE_PARM_P (parm))
20059 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
20060 if (arg != scalar_constant_value (parm))
20061 return unify_template_argument_mismatch (explain_p, parm, arg);
20062 return unify_success (explain_p);
20063
20064 case FIELD_DECL:
20065 case TEMPLATE_DECL:
20066 /* Matched cases are handled by the ARG == PARM test above. */
20067 return unify_template_argument_mismatch (explain_p, parm, arg);
20068
20069 case VAR_DECL:
20070 /* We might get a variable as a non-type template argument in parm if the
20071 corresponding parameter is type-dependent. Make any necessary
20072 adjustments based on whether arg is a reference. */
20073 if (CONSTANT_CLASS_P (arg))
20074 parm = fold_non_dependent_expr (parm);
20075 else if (REFERENCE_REF_P (arg))
20076 {
20077 tree sub = TREE_OPERAND (arg, 0);
20078 STRIP_NOPS (sub);
20079 if (TREE_CODE (sub) == ADDR_EXPR)
20080 arg = TREE_OPERAND (sub, 0);
20081 }
20082 /* Now use the normal expression code to check whether they match. */
20083 goto expr;
20084
20085 case TYPE_ARGUMENT_PACK:
20086 case NONTYPE_ARGUMENT_PACK:
20087 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20088 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20089
20090 case TYPEOF_TYPE:
20091 case DECLTYPE_TYPE:
20092 case UNDERLYING_TYPE:
20093 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20094 or UNDERLYING_TYPE nodes. */
20095 return unify_success (explain_p);
20096
20097 case ERROR_MARK:
20098 /* Unification fails if we hit an error node. */
20099 return unify_invalid (explain_p);
20100
20101 case INDIRECT_REF:
20102 if (REFERENCE_REF_P (parm))
20103 {
20104 if (REFERENCE_REF_P (arg))
20105 arg = TREE_OPERAND (arg, 0);
20106 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20107 strict, explain_p);
20108 }
20109 /* FALLTHRU */
20110
20111 default:
20112 /* An unresolved overload is a nondeduced context. */
20113 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20114 return unify_success (explain_p);
20115 gcc_assert (EXPR_P (parm));
20116 expr:
20117 /* We must be looking at an expression. This can happen with
20118 something like:
20119
20120 template <int I>
20121 void foo(S<I>, S<I + 2>);
20122
20123 This is a "nondeduced context":
20124
20125 [deduct.type]
20126
20127 The nondeduced contexts are:
20128
20129 --A type that is a template-id in which one or more of
20130 the template-arguments is an expression that references
20131 a template-parameter.
20132
20133 In these cases, we assume deduction succeeded, but don't
20134 actually infer any unifications. */
20135
20136 if (!uses_template_parms (parm)
20137 && !template_args_equal (parm, arg))
20138 return unify_expression_unequal (explain_p, parm, arg);
20139 else
20140 return unify_success (explain_p);
20141 }
20142 }
20143 #undef RECUR_AND_CHECK_FAILURE
20144 \f
20145 /* Note that DECL can be defined in this translation unit, if
20146 required. */
20147
20148 static void
20149 mark_definable (tree decl)
20150 {
20151 tree clone;
20152 DECL_NOT_REALLY_EXTERN (decl) = 1;
20153 FOR_EACH_CLONE (clone, decl)
20154 DECL_NOT_REALLY_EXTERN (clone) = 1;
20155 }
20156
20157 /* Called if RESULT is explicitly instantiated, or is a member of an
20158 explicitly instantiated class. */
20159
20160 void
20161 mark_decl_instantiated (tree result, int extern_p)
20162 {
20163 SET_DECL_EXPLICIT_INSTANTIATION (result);
20164
20165 /* If this entity has already been written out, it's too late to
20166 make any modifications. */
20167 if (TREE_ASM_WRITTEN (result))
20168 return;
20169
20170 /* For anonymous namespace we don't need to do anything. */
20171 if (decl_anon_ns_mem_p (result))
20172 {
20173 gcc_assert (!TREE_PUBLIC (result));
20174 return;
20175 }
20176
20177 if (TREE_CODE (result) != FUNCTION_DECL)
20178 /* The TREE_PUBLIC flag for function declarations will have been
20179 set correctly by tsubst. */
20180 TREE_PUBLIC (result) = 1;
20181
20182 /* This might have been set by an earlier implicit instantiation. */
20183 DECL_COMDAT (result) = 0;
20184
20185 if (extern_p)
20186 DECL_NOT_REALLY_EXTERN (result) = 0;
20187 else
20188 {
20189 mark_definable (result);
20190 mark_needed (result);
20191 /* Always make artificials weak. */
20192 if (DECL_ARTIFICIAL (result) && flag_weak)
20193 comdat_linkage (result);
20194 /* For WIN32 we also want to put explicit instantiations in
20195 linkonce sections. */
20196 else if (TREE_PUBLIC (result))
20197 maybe_make_one_only (result);
20198 }
20199
20200 /* If EXTERN_P, then this function will not be emitted -- unless
20201 followed by an explicit instantiation, at which point its linkage
20202 will be adjusted. If !EXTERN_P, then this function will be
20203 emitted here. In neither circumstance do we want
20204 import_export_decl to adjust the linkage. */
20205 DECL_INTERFACE_KNOWN (result) = 1;
20206 }
20207
20208 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
20209 important template arguments. If any are missing, we check whether
20210 they're important by using error_mark_node for substituting into any
20211 args that were used for partial ordering (the ones between ARGS and END)
20212 and seeing if it bubbles up. */
20213
20214 static bool
20215 check_undeduced_parms (tree targs, tree args, tree end)
20216 {
20217 bool found = false;
20218 int i;
20219 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
20220 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
20221 {
20222 found = true;
20223 TREE_VEC_ELT (targs, i) = error_mark_node;
20224 }
20225 if (found)
20226 {
20227 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
20228 if (substed == error_mark_node)
20229 return true;
20230 }
20231 return false;
20232 }
20233
20234 /* Given two function templates PAT1 and PAT2, return:
20235
20236 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20237 -1 if PAT2 is more specialized than PAT1.
20238 0 if neither is more specialized.
20239
20240 LEN indicates the number of parameters we should consider
20241 (defaulted parameters should not be considered).
20242
20243 The 1998 std underspecified function template partial ordering, and
20244 DR214 addresses the issue. We take pairs of arguments, one from
20245 each of the templates, and deduce them against each other. One of
20246 the templates will be more specialized if all the *other*
20247 template's arguments deduce against its arguments and at least one
20248 of its arguments *does* *not* deduce against the other template's
20249 corresponding argument. Deduction is done as for class templates.
20250 The arguments used in deduction have reference and top level cv
20251 qualifiers removed. Iff both arguments were originally reference
20252 types *and* deduction succeeds in both directions, an lvalue reference
20253 wins against an rvalue reference and otherwise the template
20254 with the more cv-qualified argument wins for that pairing (if
20255 neither is more cv-qualified, they both are equal). Unlike regular
20256 deduction, after all the arguments have been deduced in this way,
20257 we do *not* verify the deduced template argument values can be
20258 substituted into non-deduced contexts.
20259
20260 The logic can be a bit confusing here, because we look at deduce1 and
20261 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20262 can find template arguments for pat1 to make arg1 look like arg2, that
20263 means that arg2 is at least as specialized as arg1. */
20264
20265 int
20266 more_specialized_fn (tree pat1, tree pat2, int len)
20267 {
20268 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20269 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20270 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20271 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20272 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20273 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20274 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20275 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20276 tree origs1, origs2;
20277 bool lose1 = false;
20278 bool lose2 = false;
20279
20280 /* Remove the this parameter from non-static member functions. If
20281 one is a non-static member function and the other is not a static
20282 member function, remove the first parameter from that function
20283 also. This situation occurs for operator functions where we
20284 locate both a member function (with this pointer) and non-member
20285 operator (with explicit first operand). */
20286 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20287 {
20288 len--; /* LEN is the number of significant arguments for DECL1 */
20289 args1 = TREE_CHAIN (args1);
20290 if (!DECL_STATIC_FUNCTION_P (decl2))
20291 args2 = TREE_CHAIN (args2);
20292 }
20293 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20294 {
20295 args2 = TREE_CHAIN (args2);
20296 if (!DECL_STATIC_FUNCTION_P (decl1))
20297 {
20298 len--;
20299 args1 = TREE_CHAIN (args1);
20300 }
20301 }
20302
20303 /* If only one is a conversion operator, they are unordered. */
20304 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20305 return 0;
20306
20307 /* Consider the return type for a conversion function */
20308 if (DECL_CONV_FN_P (decl1))
20309 {
20310 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20311 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20312 len++;
20313 }
20314
20315 processing_template_decl++;
20316
20317 origs1 = args1;
20318 origs2 = args2;
20319
20320 while (len--
20321 /* Stop when an ellipsis is seen. */
20322 && args1 != NULL_TREE && args2 != NULL_TREE)
20323 {
20324 tree arg1 = TREE_VALUE (args1);
20325 tree arg2 = TREE_VALUE (args2);
20326 int deduce1, deduce2;
20327 int quals1 = -1;
20328 int quals2 = -1;
20329 int ref1 = 0;
20330 int ref2 = 0;
20331
20332 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20333 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20334 {
20335 /* When both arguments are pack expansions, we need only
20336 unify the patterns themselves. */
20337 arg1 = PACK_EXPANSION_PATTERN (arg1);
20338 arg2 = PACK_EXPANSION_PATTERN (arg2);
20339
20340 /* This is the last comparison we need to do. */
20341 len = 0;
20342 }
20343
20344 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20345 {
20346 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20347 arg1 = TREE_TYPE (arg1);
20348 quals1 = cp_type_quals (arg1);
20349 }
20350
20351 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20352 {
20353 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20354 arg2 = TREE_TYPE (arg2);
20355 quals2 = cp_type_quals (arg2);
20356 }
20357
20358 arg1 = TYPE_MAIN_VARIANT (arg1);
20359 arg2 = TYPE_MAIN_VARIANT (arg2);
20360
20361 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20362 {
20363 int i, len2 = remaining_arguments (args2);
20364 tree parmvec = make_tree_vec (1);
20365 tree argvec = make_tree_vec (len2);
20366 tree ta = args2;
20367
20368 /* Setup the parameter vector, which contains only ARG1. */
20369 TREE_VEC_ELT (parmvec, 0) = arg1;
20370
20371 /* Setup the argument vector, which contains the remaining
20372 arguments. */
20373 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20374 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20375
20376 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20377 argvec, DEDUCE_EXACT,
20378 /*subr=*/true, /*explain_p=*/false)
20379 == 0);
20380
20381 /* We cannot deduce in the other direction, because ARG1 is
20382 a pack expansion but ARG2 is not. */
20383 deduce2 = 0;
20384 }
20385 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20386 {
20387 int i, len1 = remaining_arguments (args1);
20388 tree parmvec = make_tree_vec (1);
20389 tree argvec = make_tree_vec (len1);
20390 tree ta = args1;
20391
20392 /* Setup the parameter vector, which contains only ARG1. */
20393 TREE_VEC_ELT (parmvec, 0) = arg2;
20394
20395 /* Setup the argument vector, which contains the remaining
20396 arguments. */
20397 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20398 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20399
20400 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20401 argvec, DEDUCE_EXACT,
20402 /*subr=*/true, /*explain_p=*/false)
20403 == 0);
20404
20405 /* We cannot deduce in the other direction, because ARG2 is
20406 a pack expansion but ARG1 is not.*/
20407 deduce1 = 0;
20408 }
20409
20410 else
20411 {
20412 /* The normal case, where neither argument is a pack
20413 expansion. */
20414 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20415 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20416 == 0);
20417 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20418 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20419 == 0);
20420 }
20421
20422 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20423 arg2, then arg2 is not as specialized as arg1. */
20424 if (!deduce1)
20425 lose2 = true;
20426 if (!deduce2)
20427 lose1 = true;
20428
20429 /* "If, for a given type, deduction succeeds in both directions
20430 (i.e., the types are identical after the transformations above)
20431 and both P and A were reference types (before being replaced with
20432 the type referred to above):
20433 - if the type from the argument template was an lvalue reference and
20434 the type from the parameter template was not, the argument type is
20435 considered to be more specialized than the other; otherwise,
20436 - if the type from the argument template is more cv-qualified
20437 than the type from the parameter template (as described above),
20438 the argument type is considered to be more specialized than the other;
20439 otherwise,
20440 - neither type is more specialized than the other." */
20441
20442 if (deduce1 && deduce2)
20443 {
20444 if (ref1 && ref2 && ref1 != ref2)
20445 {
20446 if (ref1 > ref2)
20447 lose1 = true;
20448 else
20449 lose2 = true;
20450 }
20451 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20452 {
20453 if ((quals1 & quals2) == quals2)
20454 lose2 = true;
20455 if ((quals1 & quals2) == quals1)
20456 lose1 = true;
20457 }
20458 }
20459
20460 if (lose1 && lose2)
20461 /* We've failed to deduce something in either direction.
20462 These must be unordered. */
20463 break;
20464
20465 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20466 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20467 /* We have already processed all of the arguments in our
20468 handing of the pack expansion type. */
20469 len = 0;
20470
20471 args1 = TREE_CHAIN (args1);
20472 args2 = TREE_CHAIN (args2);
20473 }
20474
20475 /* "In most cases, all template parameters must have values in order for
20476 deduction to succeed, but for partial ordering purposes a template
20477 parameter may remain without a value provided it is not used in the
20478 types being used for partial ordering."
20479
20480 Thus, if we are missing any of the targs1 we need to substitute into
20481 origs1, then pat2 is not as specialized as pat1. This can happen when
20482 there is a nondeduced context. */
20483 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20484 lose2 = true;
20485 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20486 lose1 = true;
20487
20488 processing_template_decl--;
20489
20490 /* If both deductions succeed, the partial ordering selects the more
20491 constrained template. */
20492 if (!lose1 && !lose2)
20493 {
20494 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20495 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20496 lose1 = !subsumes_constraints (c1, c2);
20497 lose2 = !subsumes_constraints (c2, c1);
20498 }
20499
20500 /* All things being equal, if the next argument is a pack expansion
20501 for one function but not for the other, prefer the
20502 non-variadic function. FIXME this is bogus; see c++/41958. */
20503 if (lose1 == lose2
20504 && args1 && TREE_VALUE (args1)
20505 && args2 && TREE_VALUE (args2))
20506 {
20507 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20508 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20509 }
20510
20511 if (lose1 == lose2)
20512 return 0;
20513 else if (!lose1)
20514 return 1;
20515 else
20516 return -1;
20517 }
20518
20519 /* Determine which of two partial specializations of TMPL is more
20520 specialized.
20521
20522 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20523 to the first partial specialization. The TREE_PURPOSE is the
20524 innermost set of template parameters for the partial
20525 specialization. PAT2 is similar, but for the second template.
20526
20527 Return 1 if the first partial specialization is more specialized;
20528 -1 if the second is more specialized; 0 if neither is more
20529 specialized.
20530
20531 See [temp.class.order] for information about determining which of
20532 two templates is more specialized. */
20533
20534 static int
20535 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20536 {
20537 tree targs;
20538 int winner = 0;
20539 bool any_deductions = false;
20540
20541 tree tmpl1 = TREE_VALUE (pat1);
20542 tree tmpl2 = TREE_VALUE (pat2);
20543 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20544 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20545 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20546 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20547
20548 /* Just like what happens for functions, if we are ordering between
20549 different template specializations, we may encounter dependent
20550 types in the arguments, and we need our dependency check functions
20551 to behave correctly. */
20552 ++processing_template_decl;
20553 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20554 if (targs)
20555 {
20556 --winner;
20557 any_deductions = true;
20558 }
20559
20560 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20561 if (targs)
20562 {
20563 ++winner;
20564 any_deductions = true;
20565 }
20566 --processing_template_decl;
20567
20568 /* If both deductions succeed, the partial ordering selects the more
20569 constrained template. */
20570 if (!winner && any_deductions)
20571 return more_constrained (tmpl1, tmpl2);
20572
20573 /* In the case of a tie where at least one of the templates
20574 has a parameter pack at the end, the template with the most
20575 non-packed parameters wins. */
20576 if (winner == 0
20577 && any_deductions
20578 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20579 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20580 {
20581 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20582 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20583 int len1 = TREE_VEC_LENGTH (args1);
20584 int len2 = TREE_VEC_LENGTH (args2);
20585
20586 /* We don't count the pack expansion at the end. */
20587 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20588 --len1;
20589 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20590 --len2;
20591
20592 if (len1 > len2)
20593 return 1;
20594 else if (len1 < len2)
20595 return -1;
20596 }
20597
20598 return winner;
20599 }
20600
20601 /* Return the template arguments that will produce the function signature
20602 DECL from the function template FN, with the explicit template
20603 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20604 also match. Return NULL_TREE if no satisfactory arguments could be
20605 found. */
20606
20607 static tree
20608 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20609 {
20610 int ntparms = DECL_NTPARMS (fn);
20611 tree targs = make_tree_vec (ntparms);
20612 tree decl_type = TREE_TYPE (decl);
20613 tree decl_arg_types;
20614 tree *args;
20615 unsigned int nargs, ix;
20616 tree arg;
20617
20618 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20619
20620 /* Never do unification on the 'this' parameter. */
20621 decl_arg_types = skip_artificial_parms_for (decl,
20622 TYPE_ARG_TYPES (decl_type));
20623
20624 nargs = list_length (decl_arg_types);
20625 args = XALLOCAVEC (tree, nargs);
20626 for (arg = decl_arg_types, ix = 0;
20627 arg != NULL_TREE && arg != void_list_node;
20628 arg = TREE_CHAIN (arg), ++ix)
20629 args[ix] = TREE_VALUE (arg);
20630
20631 if (fn_type_unification (fn, explicit_args, targs,
20632 args, ix,
20633 (check_rettype || DECL_CONV_FN_P (fn)
20634 ? TREE_TYPE (decl_type) : NULL_TREE),
20635 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20636 /*decltype*/false)
20637 == error_mark_node)
20638 return NULL_TREE;
20639
20640 return targs;
20641 }
20642
20643 /* Return the innermost template arguments that, when applied to a partial
20644 specialization of TMPL whose innermost template parameters are
20645 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20646 ARGS.
20647
20648 For example, suppose we have:
20649
20650 template <class T, class U> struct S {};
20651 template <class T> struct S<T*, int> {};
20652
20653 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20654 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20655 int}. The resulting vector will be {double}, indicating that `T'
20656 is bound to `double'. */
20657
20658 static tree
20659 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20660 {
20661 int i, ntparms = TREE_VEC_LENGTH (tparms);
20662 tree deduced_args;
20663 tree innermost_deduced_args;
20664
20665 innermost_deduced_args = make_tree_vec (ntparms);
20666 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20667 {
20668 deduced_args = copy_node (args);
20669 SET_TMPL_ARGS_LEVEL (deduced_args,
20670 TMPL_ARGS_DEPTH (deduced_args),
20671 innermost_deduced_args);
20672 }
20673 else
20674 deduced_args = innermost_deduced_args;
20675
20676 if (unify (tparms, deduced_args,
20677 INNERMOST_TEMPLATE_ARGS (spec_args),
20678 INNERMOST_TEMPLATE_ARGS (args),
20679 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20680 return NULL_TREE;
20681
20682 for (i = 0; i < ntparms; ++i)
20683 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20684 return NULL_TREE;
20685
20686 /* Verify that nondeduced template arguments agree with the type
20687 obtained from argument deduction.
20688
20689 For example:
20690
20691 struct A { typedef int X; };
20692 template <class T, class U> struct C {};
20693 template <class T> struct C<T, typename T::X> {};
20694
20695 Then with the instantiation `C<A, int>', we can deduce that
20696 `T' is `A' but unify () does not check whether `typename T::X'
20697 is `int'. */
20698 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20699 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20700 spec_args, tmpl,
20701 tf_none, false, false);
20702 if (spec_args == error_mark_node
20703 /* We only need to check the innermost arguments; the other
20704 arguments will always agree. */
20705 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20706 INNERMOST_TEMPLATE_ARGS (args)))
20707 return NULL_TREE;
20708
20709 /* Now that we have bindings for all of the template arguments,
20710 ensure that the arguments deduced for the template template
20711 parameters have compatible template parameter lists. See the use
20712 of template_template_parm_bindings_ok_p in fn_type_unification
20713 for more information. */
20714 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20715 return NULL_TREE;
20716
20717 return deduced_args;
20718 }
20719
20720 // Compare two function templates T1 and T2 by deducing bindings
20721 // from one against the other. If both deductions succeed, compare
20722 // constraints to see which is more constrained.
20723 static int
20724 more_specialized_inst (tree t1, tree t2)
20725 {
20726 int fate = 0;
20727 int count = 0;
20728
20729 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20730 {
20731 --fate;
20732 ++count;
20733 }
20734
20735 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20736 {
20737 ++fate;
20738 ++count;
20739 }
20740
20741 // If both deductions succeed, then one may be more constrained.
20742 if (count == 2 && fate == 0)
20743 fate = more_constrained (t1, t2);
20744
20745 return fate;
20746 }
20747
20748 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20749 Return the TREE_LIST node with the most specialized template, if
20750 any. If there is no most specialized template, the error_mark_node
20751 is returned.
20752
20753 Note that this function does not look at, or modify, the
20754 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20755 returned is one of the elements of INSTANTIATIONS, callers may
20756 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20757 and retrieve it from the value returned. */
20758
20759 tree
20760 most_specialized_instantiation (tree templates)
20761 {
20762 tree fn, champ;
20763
20764 ++processing_template_decl;
20765
20766 champ = templates;
20767 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20768 {
20769 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20770 if (fate == -1)
20771 champ = fn;
20772 else if (!fate)
20773 {
20774 /* Equally specialized, move to next function. If there
20775 is no next function, nothing's most specialized. */
20776 fn = TREE_CHAIN (fn);
20777 champ = fn;
20778 if (!fn)
20779 break;
20780 }
20781 }
20782
20783 if (champ)
20784 /* Now verify that champ is better than everything earlier in the
20785 instantiation list. */
20786 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20787 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20788 {
20789 champ = NULL_TREE;
20790 break;
20791 }
20792 }
20793
20794 processing_template_decl--;
20795
20796 if (!champ)
20797 return error_mark_node;
20798
20799 return champ;
20800 }
20801
20802 /* If DECL is a specialization of some template, return the most
20803 general such template. Otherwise, returns NULL_TREE.
20804
20805 For example, given:
20806
20807 template <class T> struct S { template <class U> void f(U); };
20808
20809 if TMPL is `template <class U> void S<int>::f(U)' this will return
20810 the full template. This function will not trace past partial
20811 specializations, however. For example, given in addition:
20812
20813 template <class T> struct S<T*> { template <class U> void f(U); };
20814
20815 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20816 `template <class T> template <class U> S<T*>::f(U)'. */
20817
20818 tree
20819 most_general_template (tree decl)
20820 {
20821 if (TREE_CODE (decl) != TEMPLATE_DECL)
20822 {
20823 if (tree tinfo = get_template_info (decl))
20824 decl = TI_TEMPLATE (tinfo);
20825 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20826 template friend, or a FIELD_DECL for a capture pack. */
20827 if (TREE_CODE (decl) != TEMPLATE_DECL)
20828 return NULL_TREE;
20829 }
20830
20831 /* Look for more and more general templates. */
20832 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20833 {
20834 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20835 (See cp-tree.h for details.) */
20836 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20837 break;
20838
20839 if (CLASS_TYPE_P (TREE_TYPE (decl))
20840 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20841 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20842 break;
20843
20844 /* Stop if we run into an explicitly specialized class template. */
20845 if (!DECL_NAMESPACE_SCOPE_P (decl)
20846 && DECL_CONTEXT (decl)
20847 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20848 break;
20849
20850 decl = DECL_TI_TEMPLATE (decl);
20851 }
20852
20853 return decl;
20854 }
20855
20856 /* True iff the TEMPLATE_DECL tmpl is a partial specialization. */
20857
20858 static bool
20859 partial_specialization_p (tree tmpl)
20860 {
20861 /* Any specialization has DECL_TEMPLATE_SPECIALIZATION. */
20862 if (!DECL_TEMPLATE_SPECIALIZATION (tmpl))
20863 return false;
20864 tree t = DECL_TI_TEMPLATE (tmpl);
20865 /* A specialization that fully specializes one of the containing classes is
20866 not a partial specialization. */
20867 return (list_length (DECL_TEMPLATE_PARMS (tmpl))
20868 == list_length (DECL_TEMPLATE_PARMS (t)));
20869 }
20870
20871 /* If TMPL is a partial specialization, return the arguments for its primary
20872 template. */
20873
20874 static tree
20875 impartial_args (tree tmpl, tree args)
20876 {
20877 if (!partial_specialization_p (tmpl))
20878 return args;
20879
20880 /* If TMPL is a partial specialization, we need to substitute to get
20881 the args for the primary template. */
20882 return tsubst_template_args (DECL_TI_ARGS (tmpl), args,
20883 tf_warning_or_error, tmpl);
20884 }
20885
20886 /* Return the most specialized of the template partial specializations
20887 which can produce TARGET, a specialization of some class or variable
20888 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20889 a TEMPLATE_DECL node corresponding to the partial specialization, while
20890 the TREE_PURPOSE is the set of template arguments that must be
20891 substituted into the template pattern in order to generate TARGET.
20892
20893 If the choice of partial specialization is ambiguous, a diagnostic
20894 is issued, and the error_mark_node is returned. If there are no
20895 partial specializations matching TARGET, then NULL_TREE is
20896 returned, indicating that the primary template should be used. */
20897
20898 static tree
20899 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20900 {
20901 tree list = NULL_TREE;
20902 tree t;
20903 tree champ;
20904 int fate;
20905 bool ambiguous_p;
20906 tree outer_args = NULL_TREE;
20907 tree tmpl, args;
20908
20909 if (TYPE_P (target))
20910 {
20911 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20912 tmpl = TI_TEMPLATE (tinfo);
20913 args = TI_ARGS (tinfo);
20914 }
20915 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20916 {
20917 tmpl = TREE_OPERAND (target, 0);
20918 args = TREE_OPERAND (target, 1);
20919 }
20920 else if (VAR_P (target))
20921 {
20922 tree tinfo = DECL_TEMPLATE_INFO (target);
20923 tmpl = TI_TEMPLATE (tinfo);
20924 args = TI_ARGS (tinfo);
20925 }
20926 else
20927 gcc_unreachable ();
20928
20929 tree main_tmpl = most_general_template (tmpl);
20930
20931 /* For determining which partial specialization to use, only the
20932 innermost args are interesting. */
20933 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20934 {
20935 outer_args = strip_innermost_template_args (args, 1);
20936 args = INNERMOST_TEMPLATE_ARGS (args);
20937 }
20938
20939 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20940 {
20941 tree partial_spec_args;
20942 tree spec_args;
20943 tree spec_tmpl = TREE_VALUE (t);
20944
20945 partial_spec_args = TREE_PURPOSE (t);
20946
20947 ++processing_template_decl;
20948
20949 if (outer_args)
20950 {
20951 /* Discard the outer levels of args, and then substitute in the
20952 template args from the enclosing class. */
20953 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20954 partial_spec_args = tsubst_template_args
20955 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20956
20957 /* And the same for the partial specialization TEMPLATE_DECL. */
20958 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20959 }
20960
20961 partial_spec_args =
20962 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20963 partial_spec_args,
20964 tmpl, tf_none,
20965 /*require_all_args=*/true,
20966 /*use_default_args=*/true);
20967
20968 --processing_template_decl;
20969
20970 if (partial_spec_args == error_mark_node)
20971 return error_mark_node;
20972 if (spec_tmpl == error_mark_node)
20973 return error_mark_node;
20974
20975 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20976 spec_args = get_partial_spec_bindings (tmpl, parms,
20977 partial_spec_args,
20978 args);
20979 if (spec_args)
20980 {
20981 if (outer_args)
20982 spec_args = add_to_template_args (outer_args, spec_args);
20983
20984 /* Keep the candidate only if the constraints are satisfied,
20985 or if we're not compiling with concepts. */
20986 if (!flag_concepts
20987 || constraints_satisfied_p (spec_tmpl, spec_args))
20988 {
20989 list = tree_cons (spec_args, TREE_VALUE (t), list);
20990 TREE_TYPE (list) = TREE_TYPE (t);
20991 }
20992 }
20993 }
20994
20995 if (! list)
20996 return NULL_TREE;
20997
20998 ambiguous_p = false;
20999 t = list;
21000 champ = t;
21001 t = TREE_CHAIN (t);
21002 for (; t; t = TREE_CHAIN (t))
21003 {
21004 fate = more_specialized_partial_spec (tmpl, champ, t);
21005 if (fate == 1)
21006 ;
21007 else
21008 {
21009 if (fate == 0)
21010 {
21011 t = TREE_CHAIN (t);
21012 if (! t)
21013 {
21014 ambiguous_p = true;
21015 break;
21016 }
21017 }
21018 champ = t;
21019 }
21020 }
21021
21022 if (!ambiguous_p)
21023 for (t = list; t && t != champ; t = TREE_CHAIN (t))
21024 {
21025 fate = more_specialized_partial_spec (tmpl, champ, t);
21026 if (fate != 1)
21027 {
21028 ambiguous_p = true;
21029 break;
21030 }
21031 }
21032
21033 if (ambiguous_p)
21034 {
21035 const char *str;
21036 char *spaces = NULL;
21037 if (!(complain & tf_error))
21038 return error_mark_node;
21039 if (TYPE_P (target))
21040 error ("ambiguous template instantiation for %q#T", target);
21041 else
21042 error ("ambiguous template instantiation for %q#D", target);
21043 str = ngettext ("candidate is:", "candidates are:", list_length (list));
21044 for (t = list; t; t = TREE_CHAIN (t))
21045 {
21046 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
21047 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
21048 "%s %#S", spaces ? spaces : str, subst);
21049 spaces = spaces ? spaces : get_spaces (str);
21050 }
21051 free (spaces);
21052 return error_mark_node;
21053 }
21054
21055 return champ;
21056 }
21057
21058 /* Explicitly instantiate DECL. */
21059
21060 void
21061 do_decl_instantiation (tree decl, tree storage)
21062 {
21063 tree result = NULL_TREE;
21064 int extern_p = 0;
21065
21066 if (!decl || decl == error_mark_node)
21067 /* An error occurred, for which grokdeclarator has already issued
21068 an appropriate message. */
21069 return;
21070 else if (! DECL_LANG_SPECIFIC (decl))
21071 {
21072 error ("explicit instantiation of non-template %q#D", decl);
21073 return;
21074 }
21075
21076 bool var_templ = (DECL_TEMPLATE_INFO (decl)
21077 && variable_template_p (DECL_TI_TEMPLATE (decl)));
21078
21079 if (VAR_P (decl) && !var_templ)
21080 {
21081 /* There is an asymmetry here in the way VAR_DECLs and
21082 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21083 the latter, the DECL we get back will be marked as a
21084 template instantiation, and the appropriate
21085 DECL_TEMPLATE_INFO will be set up. This does not happen for
21086 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21087 should handle VAR_DECLs as it currently handles
21088 FUNCTION_DECLs. */
21089 if (!DECL_CLASS_SCOPE_P (decl))
21090 {
21091 error ("%qD is not a static data member of a class template", decl);
21092 return;
21093 }
21094 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21095 if (!result || !VAR_P (result))
21096 {
21097 error ("no matching template for %qD found", decl);
21098 return;
21099 }
21100 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21101 {
21102 error ("type %qT for explicit instantiation %qD does not match "
21103 "declared type %qT", TREE_TYPE (result), decl,
21104 TREE_TYPE (decl));
21105 return;
21106 }
21107 }
21108 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21109 {
21110 error ("explicit instantiation of %q#D", decl);
21111 return;
21112 }
21113 else
21114 result = decl;
21115
21116 /* Check for various error cases. Note that if the explicit
21117 instantiation is valid the RESULT will currently be marked as an
21118 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21119 until we get here. */
21120
21121 if (DECL_TEMPLATE_SPECIALIZATION (result))
21122 {
21123 /* DR 259 [temp.spec].
21124
21125 Both an explicit instantiation and a declaration of an explicit
21126 specialization shall not appear in a program unless the explicit
21127 instantiation follows a declaration of the explicit specialization.
21128
21129 For a given set of template parameters, if an explicit
21130 instantiation of a template appears after a declaration of an
21131 explicit specialization for that template, the explicit
21132 instantiation has no effect. */
21133 return;
21134 }
21135 else if (DECL_EXPLICIT_INSTANTIATION (result))
21136 {
21137 /* [temp.spec]
21138
21139 No program shall explicitly instantiate any template more
21140 than once.
21141
21142 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21143 the first instantiation was `extern' and the second is not,
21144 and EXTERN_P for the opposite case. */
21145 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21146 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21147 /* If an "extern" explicit instantiation follows an ordinary
21148 explicit instantiation, the template is instantiated. */
21149 if (extern_p)
21150 return;
21151 }
21152 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21153 {
21154 error ("no matching template for %qD found", result);
21155 return;
21156 }
21157 else if (!DECL_TEMPLATE_INFO (result))
21158 {
21159 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21160 return;
21161 }
21162
21163 if (storage == NULL_TREE)
21164 ;
21165 else if (storage == ridpointers[(int) RID_EXTERN])
21166 {
21167 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21168 pedwarn (input_location, OPT_Wpedantic,
21169 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21170 "instantiations");
21171 extern_p = 1;
21172 }
21173 else
21174 error ("storage class %qD applied to template instantiation", storage);
21175
21176 check_explicit_instantiation_namespace (result);
21177 mark_decl_instantiated (result, extern_p);
21178 if (! extern_p)
21179 instantiate_decl (result, /*defer_ok=*/1,
21180 /*expl_inst_class_mem_p=*/false);
21181 }
21182
21183 static void
21184 mark_class_instantiated (tree t, int extern_p)
21185 {
21186 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21187 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21188 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21189 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21190 if (! extern_p)
21191 {
21192 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21193 rest_of_type_compilation (t, 1);
21194 }
21195 }
21196
21197 /* Called from do_type_instantiation through binding_table_foreach to
21198 do recursive instantiation for the type bound in ENTRY. */
21199 static void
21200 bt_instantiate_type_proc (binding_entry entry, void *data)
21201 {
21202 tree storage = *(tree *) data;
21203
21204 if (MAYBE_CLASS_TYPE_P (entry->type)
21205 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21206 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21207 }
21208
21209 /* Called from do_type_instantiation to instantiate a member
21210 (a member function or a static member variable) of an
21211 explicitly instantiated class template. */
21212 static void
21213 instantiate_class_member (tree decl, int extern_p)
21214 {
21215 mark_decl_instantiated (decl, extern_p);
21216 if (! extern_p)
21217 instantiate_decl (decl, /*defer_ok=*/1,
21218 /*expl_inst_class_mem_p=*/true);
21219 }
21220
21221 /* Perform an explicit instantiation of template class T. STORAGE, if
21222 non-null, is the RID for extern, inline or static. COMPLAIN is
21223 nonzero if this is called from the parser, zero if called recursively,
21224 since the standard is unclear (as detailed below). */
21225
21226 void
21227 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
21228 {
21229 int extern_p = 0;
21230 int nomem_p = 0;
21231 int static_p = 0;
21232 int previous_instantiation_extern_p = 0;
21233
21234 if (TREE_CODE (t) == TYPE_DECL)
21235 t = TREE_TYPE (t);
21236
21237 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
21238 {
21239 tree tmpl =
21240 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
21241 if (tmpl)
21242 error ("explicit instantiation of non-class template %qD", tmpl);
21243 else
21244 error ("explicit instantiation of non-template type %qT", t);
21245 return;
21246 }
21247
21248 complete_type (t);
21249
21250 if (!COMPLETE_TYPE_P (t))
21251 {
21252 if (complain & tf_error)
21253 error ("explicit instantiation of %q#T before definition of template",
21254 t);
21255 return;
21256 }
21257
21258 if (storage != NULL_TREE)
21259 {
21260 if (!in_system_header_at (input_location))
21261 {
21262 if (storage == ridpointers[(int) RID_EXTERN])
21263 {
21264 if (cxx_dialect == cxx98)
21265 pedwarn (input_location, OPT_Wpedantic,
21266 "ISO C++ 1998 forbids the use of %<extern%> on "
21267 "explicit instantiations");
21268 }
21269 else
21270 pedwarn (input_location, OPT_Wpedantic,
21271 "ISO C++ forbids the use of %qE"
21272 " on explicit instantiations", storage);
21273 }
21274
21275 if (storage == ridpointers[(int) RID_INLINE])
21276 nomem_p = 1;
21277 else if (storage == ridpointers[(int) RID_EXTERN])
21278 extern_p = 1;
21279 else if (storage == ridpointers[(int) RID_STATIC])
21280 static_p = 1;
21281 else
21282 {
21283 error ("storage class %qD applied to template instantiation",
21284 storage);
21285 extern_p = 0;
21286 }
21287 }
21288
21289 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21290 {
21291 /* DR 259 [temp.spec].
21292
21293 Both an explicit instantiation and a declaration of an explicit
21294 specialization shall not appear in a program unless the explicit
21295 instantiation follows a declaration of the explicit specialization.
21296
21297 For a given set of template parameters, if an explicit
21298 instantiation of a template appears after a declaration of an
21299 explicit specialization for that template, the explicit
21300 instantiation has no effect. */
21301 return;
21302 }
21303 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21304 {
21305 /* [temp.spec]
21306
21307 No program shall explicitly instantiate any template more
21308 than once.
21309
21310 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21311 instantiation was `extern'. If EXTERN_P then the second is.
21312 These cases are OK. */
21313 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21314
21315 if (!previous_instantiation_extern_p && !extern_p
21316 && (complain & tf_error))
21317 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21318
21319 /* If we've already instantiated the template, just return now. */
21320 if (!CLASSTYPE_INTERFACE_ONLY (t))
21321 return;
21322 }
21323
21324 check_explicit_instantiation_namespace (TYPE_NAME (t));
21325 mark_class_instantiated (t, extern_p);
21326
21327 if (nomem_p)
21328 return;
21329
21330 {
21331 tree tmp;
21332
21333 /* In contrast to implicit instantiation, where only the
21334 declarations, and not the definitions, of members are
21335 instantiated, we have here:
21336
21337 [temp.explicit]
21338
21339 The explicit instantiation of a class template specialization
21340 implies the instantiation of all of its members not
21341 previously explicitly specialized in the translation unit
21342 containing the explicit instantiation.
21343
21344 Of course, we can't instantiate member template classes, since
21345 we don't have any arguments for them. Note that the standard
21346 is unclear on whether the instantiation of the members are
21347 *explicit* instantiations or not. However, the most natural
21348 interpretation is that it should be an explicit instantiation. */
21349
21350 if (! static_p)
21351 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21352 if (TREE_CODE (tmp) == FUNCTION_DECL
21353 && DECL_TEMPLATE_INSTANTIATION (tmp))
21354 instantiate_class_member (tmp, extern_p);
21355
21356 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21357 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21358 instantiate_class_member (tmp, extern_p);
21359
21360 if (CLASSTYPE_NESTED_UTDS (t))
21361 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21362 bt_instantiate_type_proc, &storage);
21363 }
21364 }
21365
21366 /* Given a function DECL, which is a specialization of TMPL, modify
21367 DECL to be a re-instantiation of TMPL with the same template
21368 arguments. TMPL should be the template into which tsubst'ing
21369 should occur for DECL, not the most general template.
21370
21371 One reason for doing this is a scenario like this:
21372
21373 template <class T>
21374 void f(const T&, int i);
21375
21376 void g() { f(3, 7); }
21377
21378 template <class T>
21379 void f(const T& t, const int i) { }
21380
21381 Note that when the template is first instantiated, with
21382 instantiate_template, the resulting DECL will have no name for the
21383 first parameter, and the wrong type for the second. So, when we go
21384 to instantiate the DECL, we regenerate it. */
21385
21386 static void
21387 regenerate_decl_from_template (tree decl, tree tmpl)
21388 {
21389 /* The arguments used to instantiate DECL, from the most general
21390 template. */
21391 tree args;
21392 tree code_pattern;
21393
21394 args = DECL_TI_ARGS (decl);
21395 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21396
21397 /* Make sure that we can see identifiers, and compute access
21398 correctly. */
21399 push_access_scope (decl);
21400
21401 if (TREE_CODE (decl) == FUNCTION_DECL)
21402 {
21403 tree decl_parm;
21404 tree pattern_parm;
21405 tree specs;
21406 int args_depth;
21407 int parms_depth;
21408
21409 args_depth = TMPL_ARGS_DEPTH (args);
21410 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21411 if (args_depth > parms_depth)
21412 args = get_innermost_template_args (args, parms_depth);
21413
21414 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21415 args, tf_error, NULL_TREE,
21416 /*defer_ok*/false);
21417 if (specs && specs != error_mark_node)
21418 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21419 specs);
21420
21421 /* Merge parameter declarations. */
21422 decl_parm = skip_artificial_parms_for (decl,
21423 DECL_ARGUMENTS (decl));
21424 pattern_parm
21425 = skip_artificial_parms_for (code_pattern,
21426 DECL_ARGUMENTS (code_pattern));
21427 while (decl_parm && !DECL_PACK_P (pattern_parm))
21428 {
21429 tree parm_type;
21430 tree attributes;
21431
21432 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21433 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21434 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21435 NULL_TREE);
21436 parm_type = type_decays_to (parm_type);
21437 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21438 TREE_TYPE (decl_parm) = parm_type;
21439 attributes = DECL_ATTRIBUTES (pattern_parm);
21440 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21441 {
21442 DECL_ATTRIBUTES (decl_parm) = attributes;
21443 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21444 }
21445 decl_parm = DECL_CHAIN (decl_parm);
21446 pattern_parm = DECL_CHAIN (pattern_parm);
21447 }
21448 /* Merge any parameters that match with the function parameter
21449 pack. */
21450 if (pattern_parm && DECL_PACK_P (pattern_parm))
21451 {
21452 int i, len;
21453 tree expanded_types;
21454 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21455 the parameters in this function parameter pack. */
21456 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21457 args, tf_error, NULL_TREE);
21458 len = TREE_VEC_LENGTH (expanded_types);
21459 for (i = 0; i < len; i++)
21460 {
21461 tree parm_type;
21462 tree attributes;
21463
21464 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21465 /* Rename the parameter to include the index. */
21466 DECL_NAME (decl_parm) =
21467 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21468 parm_type = TREE_VEC_ELT (expanded_types, i);
21469 parm_type = type_decays_to (parm_type);
21470 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21471 TREE_TYPE (decl_parm) = parm_type;
21472 attributes = DECL_ATTRIBUTES (pattern_parm);
21473 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21474 {
21475 DECL_ATTRIBUTES (decl_parm) = attributes;
21476 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21477 }
21478 decl_parm = DECL_CHAIN (decl_parm);
21479 }
21480 }
21481 /* Merge additional specifiers from the CODE_PATTERN. */
21482 if (DECL_DECLARED_INLINE_P (code_pattern)
21483 && !DECL_DECLARED_INLINE_P (decl))
21484 DECL_DECLARED_INLINE_P (decl) = 1;
21485 }
21486 else if (VAR_P (decl))
21487 {
21488 DECL_INITIAL (decl) =
21489 tsubst_expr (DECL_INITIAL (code_pattern), args,
21490 tf_error, DECL_TI_TEMPLATE (decl),
21491 /*integral_constant_expression_p=*/false);
21492 if (VAR_HAD_UNKNOWN_BOUND (decl))
21493 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21494 tf_error, DECL_TI_TEMPLATE (decl));
21495 }
21496 else
21497 gcc_unreachable ();
21498
21499 pop_access_scope (decl);
21500 }
21501
21502 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21503 substituted to get DECL. */
21504
21505 tree
21506 template_for_substitution (tree decl)
21507 {
21508 tree tmpl = DECL_TI_TEMPLATE (decl);
21509
21510 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21511 for the instantiation. This is not always the most general
21512 template. Consider, for example:
21513
21514 template <class T>
21515 struct S { template <class U> void f();
21516 template <> void f<int>(); };
21517
21518 and an instantiation of S<double>::f<int>. We want TD to be the
21519 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21520 while (/* An instantiation cannot have a definition, so we need a
21521 more general template. */
21522 DECL_TEMPLATE_INSTANTIATION (tmpl)
21523 /* We must also deal with friend templates. Given:
21524
21525 template <class T> struct S {
21526 template <class U> friend void f() {};
21527 };
21528
21529 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21530 so far as the language is concerned, but that's still
21531 where we get the pattern for the instantiation from. On
21532 other hand, if the definition comes outside the class, say:
21533
21534 template <class T> struct S {
21535 template <class U> friend void f();
21536 };
21537 template <class U> friend void f() {}
21538
21539 we don't need to look any further. That's what the check for
21540 DECL_INITIAL is for. */
21541 || (TREE_CODE (decl) == FUNCTION_DECL
21542 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21543 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21544 {
21545 /* The present template, TD, should not be a definition. If it
21546 were a definition, we should be using it! Note that we
21547 cannot restructure the loop to just keep going until we find
21548 a template with a definition, since that might go too far if
21549 a specialization was declared, but not defined. */
21550
21551 /* Fetch the more general template. */
21552 tmpl = DECL_TI_TEMPLATE (tmpl);
21553 }
21554
21555 return tmpl;
21556 }
21557
21558 /* Returns true if we need to instantiate this template instance even if we
21559 know we aren't going to emit it. */
21560
21561 bool
21562 always_instantiate_p (tree decl)
21563 {
21564 /* We always instantiate inline functions so that we can inline them. An
21565 explicit instantiation declaration prohibits implicit instantiation of
21566 non-inline functions. With high levels of optimization, we would
21567 normally inline non-inline functions -- but we're not allowed to do
21568 that for "extern template" functions. Therefore, we check
21569 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21570 return ((TREE_CODE (decl) == FUNCTION_DECL
21571 && (DECL_DECLARED_INLINE_P (decl)
21572 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21573 /* And we need to instantiate static data members so that
21574 their initializers are available in integral constant
21575 expressions. */
21576 || (VAR_P (decl)
21577 && decl_maybe_constant_var_p (decl)));
21578 }
21579
21580 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21581 instantiate it now, modifying TREE_TYPE (fn). */
21582
21583 void
21584 maybe_instantiate_noexcept (tree fn)
21585 {
21586 tree fntype, spec, noex, clone;
21587
21588 /* Don't instantiate a noexcept-specification from template context. */
21589 if (processing_template_decl)
21590 return;
21591
21592 if (DECL_CLONED_FUNCTION_P (fn))
21593 fn = DECL_CLONED_FUNCTION (fn);
21594 fntype = TREE_TYPE (fn);
21595 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21596
21597 if (!spec || !TREE_PURPOSE (spec))
21598 return;
21599
21600 noex = TREE_PURPOSE (spec);
21601
21602 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21603 {
21604 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21605 spec = get_defaulted_eh_spec (fn);
21606 else if (push_tinst_level (fn))
21607 {
21608 push_access_scope (fn);
21609 push_deferring_access_checks (dk_no_deferred);
21610 input_location = DECL_SOURCE_LOCATION (fn);
21611 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21612 DEFERRED_NOEXCEPT_ARGS (noex),
21613 tf_warning_or_error, fn,
21614 /*function_p=*/false,
21615 /*integral_constant_expression_p=*/true);
21616 pop_deferring_access_checks ();
21617 pop_access_scope (fn);
21618 pop_tinst_level ();
21619 spec = build_noexcept_spec (noex, tf_warning_or_error);
21620 if (spec == error_mark_node)
21621 spec = noexcept_false_spec;
21622 }
21623 else
21624 spec = noexcept_false_spec;
21625
21626 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21627 }
21628
21629 FOR_EACH_CLONE (clone, fn)
21630 {
21631 if (TREE_TYPE (clone) == fntype)
21632 TREE_TYPE (clone) = TREE_TYPE (fn);
21633 else
21634 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21635 }
21636 }
21637
21638 /* Produce the definition of D, a _DECL generated from a template. If
21639 DEFER_OK is nonzero, then we don't have to actually do the
21640 instantiation now; we just have to do it sometime. Normally it is
21641 an error if this is an explicit instantiation but D is undefined.
21642 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21643 explicitly instantiated class template. */
21644
21645 tree
21646 instantiate_decl (tree d, int defer_ok,
21647 bool expl_inst_class_mem_p)
21648 {
21649 tree tmpl = DECL_TI_TEMPLATE (d);
21650 tree gen_args;
21651 tree args;
21652 tree td;
21653 tree code_pattern;
21654 tree spec;
21655 tree gen_tmpl;
21656 bool pattern_defined;
21657 location_t saved_loc = input_location;
21658 int saved_unevaluated_operand = cp_unevaluated_operand;
21659 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21660 bool external_p;
21661 bool deleted_p;
21662 tree fn_context;
21663 bool nested = false;
21664
21665 /* This function should only be used to instantiate templates for
21666 functions and static member variables. */
21667 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21668
21669 /* A concept is never instantiated. */
21670 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21671
21672 /* Variables are never deferred; if instantiation is required, they
21673 are instantiated right away. That allows for better code in the
21674 case that an expression refers to the value of the variable --
21675 if the variable has a constant value the referring expression can
21676 take advantage of that fact. */
21677 if (VAR_P (d)
21678 || DECL_DECLARED_CONSTEXPR_P (d))
21679 defer_ok = 0;
21680
21681 /* Don't instantiate cloned functions. Instead, instantiate the
21682 functions they cloned. */
21683 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21684 d = DECL_CLONED_FUNCTION (d);
21685
21686 if (DECL_TEMPLATE_INSTANTIATED (d)
21687 || (TREE_CODE (d) == FUNCTION_DECL
21688 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21689 || DECL_TEMPLATE_SPECIALIZATION (d))
21690 /* D has already been instantiated or explicitly specialized, so
21691 there's nothing for us to do here.
21692
21693 It might seem reasonable to check whether or not D is an explicit
21694 instantiation, and, if so, stop here. But when an explicit
21695 instantiation is deferred until the end of the compilation,
21696 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21697 the instantiation. */
21698 return d;
21699
21700 /* Check to see whether we know that this template will be
21701 instantiated in some other file, as with "extern template"
21702 extension. */
21703 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21704
21705 /* In general, we do not instantiate such templates. */
21706 if (external_p && !always_instantiate_p (d))
21707 return d;
21708
21709 gen_tmpl = most_general_template (tmpl);
21710 gen_args = impartial_args (tmpl, DECL_TI_ARGS (d));
21711
21712 if (tmpl != gen_tmpl)
21713 /* We should already have the extra args. */
21714 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21715 == TMPL_ARGS_DEPTH (gen_args));
21716 /* And what's in the hash table should match D. */
21717 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21718 || spec == NULL_TREE);
21719
21720 /* This needs to happen before any tsubsting. */
21721 if (! push_tinst_level (d))
21722 return d;
21723
21724 timevar_push (TV_TEMPLATE_INST);
21725
21726 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21727 for the instantiation. */
21728 td = template_for_substitution (d);
21729 code_pattern = DECL_TEMPLATE_RESULT (td);
21730
21731 /* We should never be trying to instantiate a member of a class
21732 template or partial specialization. */
21733 gcc_assert (d != code_pattern);
21734
21735 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21736 || DECL_TEMPLATE_SPECIALIZATION (td))
21737 /* In the case of a friend template whose definition is provided
21738 outside the class, we may have too many arguments. Drop the
21739 ones we don't need. The same is true for specializations. */
21740 args = get_innermost_template_args
21741 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21742 else
21743 args = gen_args;
21744
21745 if (TREE_CODE (d) == FUNCTION_DECL)
21746 {
21747 deleted_p = DECL_DELETED_FN (code_pattern);
21748 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21749 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21750 || deleted_p);
21751 }
21752 else
21753 {
21754 deleted_p = false;
21755 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21756 }
21757
21758 /* We may be in the middle of deferred access check. Disable it now. */
21759 push_deferring_access_checks (dk_no_deferred);
21760
21761 /* Unless an explicit instantiation directive has already determined
21762 the linkage of D, remember that a definition is available for
21763 this entity. */
21764 if (pattern_defined
21765 && !DECL_INTERFACE_KNOWN (d)
21766 && !DECL_NOT_REALLY_EXTERN (d))
21767 mark_definable (d);
21768
21769 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21770 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21771 input_location = DECL_SOURCE_LOCATION (d);
21772
21773 /* If D is a member of an explicitly instantiated class template,
21774 and no definition is available, treat it like an implicit
21775 instantiation. */
21776 if (!pattern_defined && expl_inst_class_mem_p
21777 && DECL_EXPLICIT_INSTANTIATION (d))
21778 {
21779 /* Leave linkage flags alone on instantiations with anonymous
21780 visibility. */
21781 if (TREE_PUBLIC (d))
21782 {
21783 DECL_NOT_REALLY_EXTERN (d) = 0;
21784 DECL_INTERFACE_KNOWN (d) = 0;
21785 }
21786 SET_DECL_IMPLICIT_INSTANTIATION (d);
21787 }
21788
21789 /* Defer all other templates, unless we have been explicitly
21790 forbidden from doing so. */
21791 if (/* If there is no definition, we cannot instantiate the
21792 template. */
21793 ! pattern_defined
21794 /* If it's OK to postpone instantiation, do so. */
21795 || defer_ok
21796 /* If this is a static data member that will be defined
21797 elsewhere, we don't want to instantiate the entire data
21798 member, but we do want to instantiate the initializer so that
21799 we can substitute that elsewhere. */
21800 || (external_p && VAR_P (d))
21801 /* Handle here a deleted function too, avoid generating
21802 its body (c++/61080). */
21803 || deleted_p)
21804 {
21805 /* The definition of the static data member is now required so
21806 we must substitute the initializer. */
21807 if (VAR_P (d)
21808 && !DECL_INITIAL (d)
21809 && DECL_INITIAL (code_pattern))
21810 {
21811 tree ns;
21812 tree init;
21813 bool const_init = false;
21814 bool enter_context = DECL_CLASS_SCOPE_P (d);
21815
21816 ns = decl_namespace_context (d);
21817 push_nested_namespace (ns);
21818 if (enter_context)
21819 push_nested_class (DECL_CONTEXT (d));
21820 init = tsubst_expr (DECL_INITIAL (code_pattern),
21821 args,
21822 tf_warning_or_error, NULL_TREE,
21823 /*integral_constant_expression_p=*/false);
21824 /* If instantiating the initializer involved instantiating this
21825 again, don't call cp_finish_decl twice. */
21826 if (!DECL_INITIAL (d))
21827 {
21828 /* Make sure the initializer is still constant, in case of
21829 circular dependency (template/instantiate6.C). */
21830 const_init
21831 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21832 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21833 /*asmspec_tree=*/NULL_TREE,
21834 LOOKUP_ONLYCONVERTING);
21835 }
21836 if (enter_context)
21837 pop_nested_class ();
21838 pop_nested_namespace (ns);
21839 }
21840
21841 /* We restore the source position here because it's used by
21842 add_pending_template. */
21843 input_location = saved_loc;
21844
21845 if (at_eof && !pattern_defined
21846 && DECL_EXPLICIT_INSTANTIATION (d)
21847 && DECL_NOT_REALLY_EXTERN (d))
21848 /* [temp.explicit]
21849
21850 The definition of a non-exported function template, a
21851 non-exported member function template, or a non-exported
21852 member function or static data member of a class template
21853 shall be present in every translation unit in which it is
21854 explicitly instantiated. */
21855 permerror (input_location, "explicit instantiation of %qD "
21856 "but no definition available", d);
21857
21858 /* If we're in unevaluated context, we just wanted to get the
21859 constant value; this isn't an odr use, so don't queue
21860 a full instantiation. */
21861 if (cp_unevaluated_operand != 0)
21862 goto out;
21863 /* ??? Historically, we have instantiated inline functions, even
21864 when marked as "extern template". */
21865 if (!(external_p && VAR_P (d)))
21866 add_pending_template (d);
21867 goto out;
21868 }
21869 /* Tell the repository that D is available in this translation unit
21870 -- and see if it is supposed to be instantiated here. */
21871 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21872 {
21873 /* In a PCH file, despite the fact that the repository hasn't
21874 requested instantiation in the PCH it is still possible that
21875 an instantiation will be required in a file that includes the
21876 PCH. */
21877 if (pch_file)
21878 add_pending_template (d);
21879 /* Instantiate inline functions so that the inliner can do its
21880 job, even though we'll not be emitting a copy of this
21881 function. */
21882 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21883 goto out;
21884 }
21885
21886 fn_context = decl_function_context (d);
21887 nested = (current_function_decl != NULL_TREE);
21888 vec<tree> omp_privatization_save;
21889 if (nested)
21890 save_omp_privatization_clauses (omp_privatization_save);
21891
21892 if (!fn_context)
21893 push_to_top_level ();
21894 else
21895 {
21896 if (nested)
21897 push_function_context ();
21898 cp_unevaluated_operand = 0;
21899 c_inhibit_evaluation_warnings = 0;
21900 }
21901
21902 /* Mark D as instantiated so that recursive calls to
21903 instantiate_decl do not try to instantiate it again. */
21904 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21905
21906 /* Regenerate the declaration in case the template has been modified
21907 by a subsequent redeclaration. */
21908 regenerate_decl_from_template (d, td);
21909
21910 /* We already set the file and line above. Reset them now in case
21911 they changed as a result of calling regenerate_decl_from_template. */
21912 input_location = DECL_SOURCE_LOCATION (d);
21913
21914 if (VAR_P (d))
21915 {
21916 tree init;
21917 bool const_init = false;
21918
21919 /* Clear out DECL_RTL; whatever was there before may not be right
21920 since we've reset the type of the declaration. */
21921 SET_DECL_RTL (d, NULL);
21922 DECL_IN_AGGR_P (d) = 0;
21923
21924 /* The initializer is placed in DECL_INITIAL by
21925 regenerate_decl_from_template so we don't need to
21926 push/pop_access_scope again here. Pull it out so that
21927 cp_finish_decl can process it. */
21928 init = DECL_INITIAL (d);
21929 DECL_INITIAL (d) = NULL_TREE;
21930 DECL_INITIALIZED_P (d) = 0;
21931
21932 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21933 initializer. That function will defer actual emission until
21934 we have a chance to determine linkage. */
21935 DECL_EXTERNAL (d) = 0;
21936
21937 /* Enter the scope of D so that access-checking works correctly. */
21938 bool enter_context = DECL_CLASS_SCOPE_P (d);
21939 if (enter_context)
21940 push_nested_class (DECL_CONTEXT (d));
21941
21942 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21943 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21944
21945 if (enter_context)
21946 pop_nested_class ();
21947
21948 if (variable_template_p (gen_tmpl))
21949 note_variable_template_instantiation (d);
21950 }
21951 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21952 synthesize_method (d);
21953 else if (TREE_CODE (d) == FUNCTION_DECL)
21954 {
21955 hash_map<tree, tree> *saved_local_specializations;
21956 tree subst_decl;
21957 tree tmpl_parm;
21958 tree spec_parm;
21959 tree block = NULL_TREE;
21960
21961 /* Save away the current list, in case we are instantiating one
21962 template from within the body of another. */
21963 saved_local_specializations = local_specializations;
21964
21965 /* Set up the list of local specializations. */
21966 local_specializations = new hash_map<tree, tree>;
21967
21968 /* Set up context. */
21969 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21970 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21971 block = push_stmt_list ();
21972 else
21973 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21974
21975 /* Some typedefs referenced from within the template code need to be
21976 access checked at template instantiation time, i.e now. These
21977 types were added to the template at parsing time. Let's get those
21978 and perform the access checks then. */
21979 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21980 gen_args);
21981
21982 /* Create substitution entries for the parameters. */
21983 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21984 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21985 spec_parm = DECL_ARGUMENTS (d);
21986 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21987 {
21988 register_local_specialization (spec_parm, tmpl_parm);
21989 spec_parm = skip_artificial_parms_for (d, spec_parm);
21990 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21991 }
21992 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21993 {
21994 if (!DECL_PACK_P (tmpl_parm))
21995 {
21996 register_local_specialization (spec_parm, tmpl_parm);
21997 spec_parm = DECL_CHAIN (spec_parm);
21998 }
21999 else
22000 {
22001 /* Register the (value) argument pack as a specialization of
22002 TMPL_PARM, then move on. */
22003 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
22004 register_local_specialization (argpack, tmpl_parm);
22005 }
22006 }
22007 gcc_assert (!spec_parm);
22008
22009 /* Substitute into the body of the function. */
22010 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22011 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
22012 tf_warning_or_error, tmpl);
22013 else
22014 {
22015 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
22016 tf_warning_or_error, tmpl,
22017 /*integral_constant_expression_p=*/false);
22018
22019 /* Set the current input_location to the end of the function
22020 so that finish_function knows where we are. */
22021 input_location
22022 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
22023
22024 /* Remember if we saw an infinite loop in the template. */
22025 current_function_infinite_loop
22026 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
22027 }
22028
22029 /* We don't need the local specializations any more. */
22030 delete local_specializations;
22031 local_specializations = saved_local_specializations;
22032
22033 /* Finish the function. */
22034 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22035 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22036 DECL_SAVED_TREE (d) = pop_stmt_list (block);
22037 else
22038 {
22039 d = finish_function (0);
22040 expand_or_defer_fn (d);
22041 }
22042
22043 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22044 cp_check_omp_declare_reduction (d);
22045 }
22046
22047 /* We're not deferring instantiation any more. */
22048 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
22049
22050 if (!fn_context)
22051 pop_from_top_level ();
22052 else if (nested)
22053 pop_function_context ();
22054
22055 out:
22056 input_location = saved_loc;
22057 cp_unevaluated_operand = saved_unevaluated_operand;
22058 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
22059 pop_deferring_access_checks ();
22060 pop_tinst_level ();
22061 if (nested)
22062 restore_omp_privatization_clauses (omp_privatization_save);
22063
22064 timevar_pop (TV_TEMPLATE_INST);
22065
22066 return d;
22067 }
22068
22069 /* Run through the list of templates that we wish we could
22070 instantiate, and instantiate any we can. RETRIES is the
22071 number of times we retry pending template instantiation. */
22072
22073 void
22074 instantiate_pending_templates (int retries)
22075 {
22076 int reconsider;
22077 location_t saved_loc = input_location;
22078
22079 /* Instantiating templates may trigger vtable generation. This in turn
22080 may require further template instantiations. We place a limit here
22081 to avoid infinite loop. */
22082 if (pending_templates && retries >= max_tinst_depth)
22083 {
22084 tree decl = pending_templates->tinst->decl;
22085
22086 fatal_error (input_location,
22087 "template instantiation depth exceeds maximum of %d"
22088 " instantiating %q+D, possibly from virtual table generation"
22089 " (use -ftemplate-depth= to increase the maximum)",
22090 max_tinst_depth, decl);
22091 if (TREE_CODE (decl) == FUNCTION_DECL)
22092 /* Pretend that we defined it. */
22093 DECL_INITIAL (decl) = error_mark_node;
22094 return;
22095 }
22096
22097 do
22098 {
22099 struct pending_template **t = &pending_templates;
22100 struct pending_template *last = NULL;
22101 reconsider = 0;
22102 while (*t)
22103 {
22104 tree instantiation = reopen_tinst_level ((*t)->tinst);
22105 bool complete = false;
22106
22107 if (TYPE_P (instantiation))
22108 {
22109 tree fn;
22110
22111 if (!COMPLETE_TYPE_P (instantiation))
22112 {
22113 instantiate_class_template (instantiation);
22114 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22115 for (fn = TYPE_METHODS (instantiation);
22116 fn;
22117 fn = TREE_CHAIN (fn))
22118 if (! DECL_ARTIFICIAL (fn))
22119 instantiate_decl (fn,
22120 /*defer_ok=*/0,
22121 /*expl_inst_class_mem_p=*/false);
22122 if (COMPLETE_TYPE_P (instantiation))
22123 reconsider = 1;
22124 }
22125
22126 complete = COMPLETE_TYPE_P (instantiation);
22127 }
22128 else
22129 {
22130 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22131 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22132 {
22133 instantiation
22134 = instantiate_decl (instantiation,
22135 /*defer_ok=*/0,
22136 /*expl_inst_class_mem_p=*/false);
22137 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22138 reconsider = 1;
22139 }
22140
22141 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22142 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22143 }
22144
22145 if (complete)
22146 /* If INSTANTIATION has been instantiated, then we don't
22147 need to consider it again in the future. */
22148 *t = (*t)->next;
22149 else
22150 {
22151 last = *t;
22152 t = &(*t)->next;
22153 }
22154 tinst_depth = 0;
22155 current_tinst_level = NULL;
22156 }
22157 last_pending_template = last;
22158 }
22159 while (reconsider);
22160
22161 input_location = saved_loc;
22162 }
22163
22164 /* Substitute ARGVEC into T, which is a list of initializers for
22165 either base class or a non-static data member. The TREE_PURPOSEs
22166 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22167 instantiate_decl. */
22168
22169 static tree
22170 tsubst_initializer_list (tree t, tree argvec)
22171 {
22172 tree inits = NULL_TREE;
22173
22174 for (; t; t = TREE_CHAIN (t))
22175 {
22176 tree decl;
22177 tree init;
22178 tree expanded_bases = NULL_TREE;
22179 tree expanded_arguments = NULL_TREE;
22180 int i, len = 1;
22181
22182 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22183 {
22184 tree expr;
22185 tree arg;
22186
22187 /* Expand the base class expansion type into separate base
22188 classes. */
22189 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22190 tf_warning_or_error,
22191 NULL_TREE);
22192 if (expanded_bases == error_mark_node)
22193 continue;
22194
22195 /* We'll be building separate TREE_LISTs of arguments for
22196 each base. */
22197 len = TREE_VEC_LENGTH (expanded_bases);
22198 expanded_arguments = make_tree_vec (len);
22199 for (i = 0; i < len; i++)
22200 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
22201
22202 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22203 expand each argument in the TREE_VALUE of t. */
22204 expr = make_node (EXPR_PACK_EXPANSION);
22205 PACK_EXPANSION_LOCAL_P (expr) = true;
22206 PACK_EXPANSION_PARAMETER_PACKS (expr) =
22207 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
22208
22209 if (TREE_VALUE (t) == void_type_node)
22210 /* VOID_TYPE_NODE is used to indicate
22211 value-initialization. */
22212 {
22213 for (i = 0; i < len; i++)
22214 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
22215 }
22216 else
22217 {
22218 /* Substitute parameter packs into each argument in the
22219 TREE_LIST. */
22220 in_base_initializer = 1;
22221 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
22222 {
22223 tree expanded_exprs;
22224
22225 /* Expand the argument. */
22226 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
22227 expanded_exprs
22228 = tsubst_pack_expansion (expr, argvec,
22229 tf_warning_or_error,
22230 NULL_TREE);
22231 if (expanded_exprs == error_mark_node)
22232 continue;
22233
22234 /* Prepend each of the expanded expressions to the
22235 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
22236 for (i = 0; i < len; i++)
22237 {
22238 TREE_VEC_ELT (expanded_arguments, i) =
22239 tree_cons (NULL_TREE,
22240 TREE_VEC_ELT (expanded_exprs, i),
22241 TREE_VEC_ELT (expanded_arguments, i));
22242 }
22243 }
22244 in_base_initializer = 0;
22245
22246 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22247 since we built them backwards. */
22248 for (i = 0; i < len; i++)
22249 {
22250 TREE_VEC_ELT (expanded_arguments, i) =
22251 nreverse (TREE_VEC_ELT (expanded_arguments, i));
22252 }
22253 }
22254 }
22255
22256 for (i = 0; i < len; ++i)
22257 {
22258 if (expanded_bases)
22259 {
22260 decl = TREE_VEC_ELT (expanded_bases, i);
22261 decl = expand_member_init (decl);
22262 init = TREE_VEC_ELT (expanded_arguments, i);
22263 }
22264 else
22265 {
22266 tree tmp;
22267 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
22268 tf_warning_or_error, NULL_TREE);
22269
22270 decl = expand_member_init (decl);
22271 if (decl && !DECL_P (decl))
22272 in_base_initializer = 1;
22273
22274 init = TREE_VALUE (t);
22275 tmp = init;
22276 if (init != void_type_node)
22277 init = tsubst_expr (init, argvec,
22278 tf_warning_or_error, NULL_TREE,
22279 /*integral_constant_expression_p=*/false);
22280 if (init == NULL_TREE && tmp != NULL_TREE)
22281 /* If we had an initializer but it instantiated to nothing,
22282 value-initialize the object. This will only occur when
22283 the initializer was a pack expansion where the parameter
22284 packs used in that expansion were of length zero. */
22285 init = void_type_node;
22286 in_base_initializer = 0;
22287 }
22288
22289 if (decl)
22290 {
22291 init = build_tree_list (decl, init);
22292 TREE_CHAIN (init) = inits;
22293 inits = init;
22294 }
22295 }
22296 }
22297 return inits;
22298 }
22299
22300 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22301
22302 static void
22303 set_current_access_from_decl (tree decl)
22304 {
22305 if (TREE_PRIVATE (decl))
22306 current_access_specifier = access_private_node;
22307 else if (TREE_PROTECTED (decl))
22308 current_access_specifier = access_protected_node;
22309 else
22310 current_access_specifier = access_public_node;
22311 }
22312
22313 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22314 is the instantiation (which should have been created with
22315 start_enum) and ARGS are the template arguments to use. */
22316
22317 static void
22318 tsubst_enum (tree tag, tree newtag, tree args)
22319 {
22320 tree e;
22321
22322 if (SCOPED_ENUM_P (newtag))
22323 begin_scope (sk_scoped_enum, newtag);
22324
22325 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22326 {
22327 tree value;
22328 tree decl;
22329
22330 decl = TREE_VALUE (e);
22331 /* Note that in a template enum, the TREE_VALUE is the
22332 CONST_DECL, not the corresponding INTEGER_CST. */
22333 value = tsubst_expr (DECL_INITIAL (decl),
22334 args, tf_warning_or_error, NULL_TREE,
22335 /*integral_constant_expression_p=*/true);
22336
22337 /* Give this enumeration constant the correct access. */
22338 set_current_access_from_decl (decl);
22339
22340 /* Actually build the enumerator itself. Here we're assuming that
22341 enumerators can't have dependent attributes. */
22342 build_enumerator (DECL_NAME (decl), value, newtag,
22343 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22344 }
22345
22346 if (SCOPED_ENUM_P (newtag))
22347 finish_scope ();
22348
22349 finish_enum_value_list (newtag);
22350 finish_enum (newtag);
22351
22352 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22353 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22354 }
22355
22356 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22357 its type -- but without substituting the innermost set of template
22358 arguments. So, innermost set of template parameters will appear in
22359 the type. */
22360
22361 tree
22362 get_mostly_instantiated_function_type (tree decl)
22363 {
22364 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22365 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22366 }
22367
22368 /* Return truthvalue if we're processing a template different from
22369 the last one involved in diagnostics. */
22370 bool
22371 problematic_instantiation_changed (void)
22372 {
22373 return current_tinst_level != last_error_tinst_level;
22374 }
22375
22376 /* Remember current template involved in diagnostics. */
22377 void
22378 record_last_problematic_instantiation (void)
22379 {
22380 last_error_tinst_level = current_tinst_level;
22381 }
22382
22383 struct tinst_level *
22384 current_instantiation (void)
22385 {
22386 return current_tinst_level;
22387 }
22388
22389 /* Return TRUE if current_function_decl is being instantiated, false
22390 otherwise. */
22391
22392 bool
22393 instantiating_current_function_p (void)
22394 {
22395 return (current_instantiation ()
22396 && current_instantiation ()->decl == current_function_decl);
22397 }
22398
22399 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22400 type. Return zero for ok, nonzero for disallowed. Issue error and
22401 warning messages under control of COMPLAIN. */
22402
22403 static int
22404 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22405 {
22406 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22407 return 0;
22408 else if (POINTER_TYPE_P (type))
22409 return 0;
22410 else if (TYPE_PTRMEM_P (type))
22411 return 0;
22412 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22413 return 0;
22414 else if (TREE_CODE (type) == TYPENAME_TYPE)
22415 return 0;
22416 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22417 return 0;
22418 else if (TREE_CODE (type) == NULLPTR_TYPE)
22419 return 0;
22420 /* A bound template template parm could later be instantiated to have a valid
22421 nontype parm type via an alias template. */
22422 else if (cxx_dialect >= cxx11
22423 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22424 return 0;
22425
22426 if (complain & tf_error)
22427 {
22428 if (type == error_mark_node)
22429 inform (input_location, "invalid template non-type parameter");
22430 else
22431 error ("%q#T is not a valid type for a template non-type parameter",
22432 type);
22433 }
22434 return 1;
22435 }
22436
22437 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22438 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22439
22440 static bool
22441 dependent_type_p_r (tree type)
22442 {
22443 tree scope;
22444
22445 /* [temp.dep.type]
22446
22447 A type is dependent if it is:
22448
22449 -- a template parameter. Template template parameters are types
22450 for us (since TYPE_P holds true for them) so we handle
22451 them here. */
22452 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22453 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22454 return true;
22455 /* -- a qualified-id with a nested-name-specifier which contains a
22456 class-name that names a dependent type or whose unqualified-id
22457 names a dependent type. */
22458 if (TREE_CODE (type) == TYPENAME_TYPE)
22459 return true;
22460
22461 /* An alias template specialization can be dependent even if the
22462 resulting type is not. */
22463 if (dependent_alias_template_spec_p (type))
22464 return true;
22465
22466 /* -- a cv-qualified type where the cv-unqualified type is
22467 dependent.
22468 No code is necessary for this bullet; the code below handles
22469 cv-qualified types, and we don't want to strip aliases with
22470 TYPE_MAIN_VARIANT because of DR 1558. */
22471 /* -- a compound type constructed from any dependent type. */
22472 if (TYPE_PTRMEM_P (type))
22473 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22474 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22475 (type)));
22476 else if (TYPE_PTR_P (type)
22477 || TREE_CODE (type) == REFERENCE_TYPE)
22478 return dependent_type_p (TREE_TYPE (type));
22479 else if (TREE_CODE (type) == FUNCTION_TYPE
22480 || TREE_CODE (type) == METHOD_TYPE)
22481 {
22482 tree arg_type;
22483
22484 if (dependent_type_p (TREE_TYPE (type)))
22485 return true;
22486 for (arg_type = TYPE_ARG_TYPES (type);
22487 arg_type;
22488 arg_type = TREE_CHAIN (arg_type))
22489 if (dependent_type_p (TREE_VALUE (arg_type)))
22490 return true;
22491 return false;
22492 }
22493 /* -- an array type constructed from any dependent type or whose
22494 size is specified by a constant expression that is
22495 value-dependent.
22496
22497 We checked for type- and value-dependence of the bounds in
22498 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22499 if (TREE_CODE (type) == ARRAY_TYPE)
22500 {
22501 if (TYPE_DOMAIN (type)
22502 && dependent_type_p (TYPE_DOMAIN (type)))
22503 return true;
22504 return dependent_type_p (TREE_TYPE (type));
22505 }
22506
22507 /* -- a template-id in which either the template name is a template
22508 parameter ... */
22509 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22510 return true;
22511 /* ... or any of the template arguments is a dependent type or
22512 an expression that is type-dependent or value-dependent. */
22513 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22514 && (any_dependent_template_arguments_p
22515 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22516 return true;
22517
22518 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22519 dependent; if the argument of the `typeof' expression is not
22520 type-dependent, then it should already been have resolved. */
22521 if (TREE_CODE (type) == TYPEOF_TYPE
22522 || TREE_CODE (type) == DECLTYPE_TYPE
22523 || TREE_CODE (type) == UNDERLYING_TYPE)
22524 return true;
22525
22526 /* A template argument pack is dependent if any of its packed
22527 arguments are. */
22528 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22529 {
22530 tree args = ARGUMENT_PACK_ARGS (type);
22531 int i, len = TREE_VEC_LENGTH (args);
22532 for (i = 0; i < len; ++i)
22533 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22534 return true;
22535 }
22536
22537 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22538 be template parameters. */
22539 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22540 return true;
22541
22542 /* The standard does not specifically mention types that are local
22543 to template functions or local classes, but they should be
22544 considered dependent too. For example:
22545
22546 template <int I> void f() {
22547 enum E { a = I };
22548 S<sizeof (E)> s;
22549 }
22550
22551 The size of `E' cannot be known until the value of `I' has been
22552 determined. Therefore, `E' must be considered dependent. */
22553 scope = TYPE_CONTEXT (type);
22554 if (scope && TYPE_P (scope))
22555 return dependent_type_p (scope);
22556 /* Don't use type_dependent_expression_p here, as it can lead
22557 to infinite recursion trying to determine whether a lambda
22558 nested in a lambda is dependent (c++/47687). */
22559 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22560 && DECL_LANG_SPECIFIC (scope)
22561 && DECL_TEMPLATE_INFO (scope)
22562 && (any_dependent_template_arguments_p
22563 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22564 return true;
22565
22566 /* Other types are non-dependent. */
22567 return false;
22568 }
22569
22570 /* Returns TRUE if TYPE is dependent, in the sense of
22571 [temp.dep.type]. Note that a NULL type is considered dependent. */
22572
22573 bool
22574 dependent_type_p (tree type)
22575 {
22576 /* If there are no template parameters in scope, then there can't be
22577 any dependent types. */
22578 if (!processing_template_decl)
22579 {
22580 /* If we are not processing a template, then nobody should be
22581 providing us with a dependent type. */
22582 gcc_assert (type);
22583 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22584 return false;
22585 }
22586
22587 /* If the type is NULL, we have not computed a type for the entity
22588 in question; in that case, the type is dependent. */
22589 if (!type)
22590 return true;
22591
22592 /* Erroneous types can be considered non-dependent. */
22593 if (type == error_mark_node)
22594 return false;
22595
22596 /* If we have not already computed the appropriate value for TYPE,
22597 do so now. */
22598 if (!TYPE_DEPENDENT_P_VALID (type))
22599 {
22600 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22601 TYPE_DEPENDENT_P_VALID (type) = 1;
22602 }
22603
22604 return TYPE_DEPENDENT_P (type);
22605 }
22606
22607 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22608 lookup. In other words, a dependent type that is not the current
22609 instantiation. */
22610
22611 bool
22612 dependent_scope_p (tree scope)
22613 {
22614 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22615 && !currently_open_class (scope));
22616 }
22617
22618 /* T is a SCOPE_REF; return whether we need to consider it
22619 instantiation-dependent so that we can check access at instantiation
22620 time even though we know which member it resolves to. */
22621
22622 static bool
22623 instantiation_dependent_scope_ref_p (tree t)
22624 {
22625 if (DECL_P (TREE_OPERAND (t, 1))
22626 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22627 && accessible_in_template_p (TREE_OPERAND (t, 0),
22628 TREE_OPERAND (t, 1)))
22629 return false;
22630 else
22631 return true;
22632 }
22633
22634 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22635 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22636 expression. */
22637
22638 /* Note that this predicate is not appropriate for general expressions;
22639 only constant expressions (that satisfy potential_constant_expression)
22640 can be tested for value dependence. */
22641
22642 bool
22643 value_dependent_expression_p (tree expression)
22644 {
22645 if (!processing_template_decl)
22646 return false;
22647
22648 /* A name declared with a dependent type. */
22649 if (DECL_P (expression) && type_dependent_expression_p (expression))
22650 return true;
22651
22652 switch (TREE_CODE (expression))
22653 {
22654 case IDENTIFIER_NODE:
22655 /* A name that has not been looked up -- must be dependent. */
22656 return true;
22657
22658 case TEMPLATE_PARM_INDEX:
22659 /* A non-type template parm. */
22660 return true;
22661
22662 case CONST_DECL:
22663 /* A non-type template parm. */
22664 if (DECL_TEMPLATE_PARM_P (expression))
22665 return true;
22666 return value_dependent_expression_p (DECL_INITIAL (expression));
22667
22668 case VAR_DECL:
22669 /* A constant with literal type and is initialized
22670 with an expression that is value-dependent.
22671
22672 Note that a non-dependent parenthesized initializer will have
22673 already been replaced with its constant value, so if we see
22674 a TREE_LIST it must be dependent. */
22675 if (DECL_INITIAL (expression)
22676 && decl_constant_var_p (expression)
22677 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22678 /* cp_finish_decl doesn't fold reference initializers. */
22679 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22680 || value_dependent_expression_p (DECL_INITIAL (expression))))
22681 return true;
22682 return false;
22683
22684 case DYNAMIC_CAST_EXPR:
22685 case STATIC_CAST_EXPR:
22686 case CONST_CAST_EXPR:
22687 case REINTERPRET_CAST_EXPR:
22688 case CAST_EXPR:
22689 /* These expressions are value-dependent if the type to which
22690 the cast occurs is dependent or the expression being casted
22691 is value-dependent. */
22692 {
22693 tree type = TREE_TYPE (expression);
22694
22695 if (dependent_type_p (type))
22696 return true;
22697
22698 /* A functional cast has a list of operands. */
22699 expression = TREE_OPERAND (expression, 0);
22700 if (!expression)
22701 {
22702 /* If there are no operands, it must be an expression such
22703 as "int()". This should not happen for aggregate types
22704 because it would form non-constant expressions. */
22705 gcc_assert (cxx_dialect >= cxx11
22706 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22707
22708 return false;
22709 }
22710
22711 if (TREE_CODE (expression) == TREE_LIST)
22712 return any_value_dependent_elements_p (expression);
22713
22714 return value_dependent_expression_p (expression);
22715 }
22716
22717 case SIZEOF_EXPR:
22718 if (SIZEOF_EXPR_TYPE_P (expression))
22719 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22720 /* FALLTHRU */
22721 case ALIGNOF_EXPR:
22722 case TYPEID_EXPR:
22723 /* A `sizeof' expression is value-dependent if the operand is
22724 type-dependent or is a pack expansion. */
22725 expression = TREE_OPERAND (expression, 0);
22726 if (PACK_EXPANSION_P (expression))
22727 return true;
22728 else if (TYPE_P (expression))
22729 return dependent_type_p (expression);
22730 return instantiation_dependent_expression_p (expression);
22731
22732 case AT_ENCODE_EXPR:
22733 /* An 'encode' expression is value-dependent if the operand is
22734 type-dependent. */
22735 expression = TREE_OPERAND (expression, 0);
22736 return dependent_type_p (expression);
22737
22738 case NOEXCEPT_EXPR:
22739 expression = TREE_OPERAND (expression, 0);
22740 return instantiation_dependent_expression_p (expression);
22741
22742 case SCOPE_REF:
22743 /* All instantiation-dependent expressions should also be considered
22744 value-dependent. */
22745 return instantiation_dependent_scope_ref_p (expression);
22746
22747 case COMPONENT_REF:
22748 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22749 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22750
22751 case NONTYPE_ARGUMENT_PACK:
22752 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22753 is value-dependent. */
22754 {
22755 tree values = ARGUMENT_PACK_ARGS (expression);
22756 int i, len = TREE_VEC_LENGTH (values);
22757
22758 for (i = 0; i < len; ++i)
22759 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22760 return true;
22761
22762 return false;
22763 }
22764
22765 case TRAIT_EXPR:
22766 {
22767 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22768 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22769 || (type2 ? dependent_type_p (type2) : false));
22770 }
22771
22772 case MODOP_EXPR:
22773 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22774 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22775
22776 case ARRAY_REF:
22777 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22778 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22779
22780 case ADDR_EXPR:
22781 {
22782 tree op = TREE_OPERAND (expression, 0);
22783 return (value_dependent_expression_p (op)
22784 || has_value_dependent_address (op));
22785 }
22786
22787 case REQUIRES_EXPR:
22788 /* Treat all requires-expressions as value-dependent so
22789 we don't try to fold them. */
22790 return true;
22791
22792 case TYPE_REQ:
22793 return dependent_type_p (TREE_OPERAND (expression, 0));
22794
22795 case CALL_EXPR:
22796 {
22797 tree fn = get_callee_fndecl (expression);
22798 int i, nargs;
22799 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22800 return true;
22801 nargs = call_expr_nargs (expression);
22802 for (i = 0; i < nargs; ++i)
22803 {
22804 tree op = CALL_EXPR_ARG (expression, i);
22805 /* In a call to a constexpr member function, look through the
22806 implicit ADDR_EXPR on the object argument so that it doesn't
22807 cause the call to be considered value-dependent. We also
22808 look through it in potential_constant_expression. */
22809 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22810 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22811 && TREE_CODE (op) == ADDR_EXPR)
22812 op = TREE_OPERAND (op, 0);
22813 if (value_dependent_expression_p (op))
22814 return true;
22815 }
22816 return false;
22817 }
22818
22819 case TEMPLATE_ID_EXPR:
22820 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22821 type-dependent. */
22822 return type_dependent_expression_p (expression)
22823 || variable_concept_p (TREE_OPERAND (expression, 0));
22824
22825 case CONSTRUCTOR:
22826 {
22827 unsigned ix;
22828 tree val;
22829 if (dependent_type_p (TREE_TYPE (expression)))
22830 return true;
22831 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22832 if (value_dependent_expression_p (val))
22833 return true;
22834 return false;
22835 }
22836
22837 case STMT_EXPR:
22838 /* Treat a GNU statement expression as dependent to avoid crashing
22839 under instantiate_non_dependent_expr; it can't be constant. */
22840 return true;
22841
22842 default:
22843 /* A constant expression is value-dependent if any subexpression is
22844 value-dependent. */
22845 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22846 {
22847 case tcc_reference:
22848 case tcc_unary:
22849 case tcc_comparison:
22850 case tcc_binary:
22851 case tcc_expression:
22852 case tcc_vl_exp:
22853 {
22854 int i, len = cp_tree_operand_length (expression);
22855
22856 for (i = 0; i < len; i++)
22857 {
22858 tree t = TREE_OPERAND (expression, i);
22859
22860 /* In some cases, some of the operands may be missing.l
22861 (For example, in the case of PREDECREMENT_EXPR, the
22862 amount to increment by may be missing.) That doesn't
22863 make the expression dependent. */
22864 if (t && value_dependent_expression_p (t))
22865 return true;
22866 }
22867 }
22868 break;
22869 default:
22870 break;
22871 }
22872 break;
22873 }
22874
22875 /* The expression is not value-dependent. */
22876 return false;
22877 }
22878
22879 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22880 [temp.dep.expr]. Note that an expression with no type is
22881 considered dependent. Other parts of the compiler arrange for an
22882 expression with type-dependent subexpressions to have no type, so
22883 this function doesn't have to be fully recursive. */
22884
22885 bool
22886 type_dependent_expression_p (tree expression)
22887 {
22888 if (!processing_template_decl)
22889 return false;
22890
22891 if (expression == NULL_TREE || expression == error_mark_node)
22892 return false;
22893
22894 /* An unresolved name is always dependent. */
22895 if (identifier_p (expression)
22896 || TREE_CODE (expression) == USING_DECL
22897 || TREE_CODE (expression) == WILDCARD_DECL)
22898 return true;
22899
22900 /* A fold expression is type-dependent. */
22901 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22902 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22903 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22904 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22905 return true;
22906
22907 /* Some expression forms are never type-dependent. */
22908 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22909 || TREE_CODE (expression) == SIZEOF_EXPR
22910 || TREE_CODE (expression) == ALIGNOF_EXPR
22911 || TREE_CODE (expression) == AT_ENCODE_EXPR
22912 || TREE_CODE (expression) == NOEXCEPT_EXPR
22913 || TREE_CODE (expression) == TRAIT_EXPR
22914 || TREE_CODE (expression) == TYPEID_EXPR
22915 || TREE_CODE (expression) == DELETE_EXPR
22916 || TREE_CODE (expression) == VEC_DELETE_EXPR
22917 || TREE_CODE (expression) == THROW_EXPR
22918 || TREE_CODE (expression) == REQUIRES_EXPR)
22919 return false;
22920
22921 /* The types of these expressions depends only on the type to which
22922 the cast occurs. */
22923 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22924 || TREE_CODE (expression) == STATIC_CAST_EXPR
22925 || TREE_CODE (expression) == CONST_CAST_EXPR
22926 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22927 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22928 || TREE_CODE (expression) == CAST_EXPR)
22929 return dependent_type_p (TREE_TYPE (expression));
22930
22931 /* The types of these expressions depends only on the type created
22932 by the expression. */
22933 if (TREE_CODE (expression) == NEW_EXPR
22934 || TREE_CODE (expression) == VEC_NEW_EXPR)
22935 {
22936 /* For NEW_EXPR tree nodes created inside a template, either
22937 the object type itself or a TREE_LIST may appear as the
22938 operand 1. */
22939 tree type = TREE_OPERAND (expression, 1);
22940 if (TREE_CODE (type) == TREE_LIST)
22941 /* This is an array type. We need to check array dimensions
22942 as well. */
22943 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22944 || value_dependent_expression_p
22945 (TREE_OPERAND (TREE_VALUE (type), 1));
22946 else
22947 return dependent_type_p (type);
22948 }
22949
22950 if (TREE_CODE (expression) == SCOPE_REF)
22951 {
22952 tree scope = TREE_OPERAND (expression, 0);
22953 tree name = TREE_OPERAND (expression, 1);
22954
22955 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22956 contains an identifier associated by name lookup with one or more
22957 declarations declared with a dependent type, or...a
22958 nested-name-specifier or qualified-id that names a member of an
22959 unknown specialization. */
22960 return (type_dependent_expression_p (name)
22961 || dependent_scope_p (scope));
22962 }
22963
22964 /* A function template specialization is type-dependent if it has any
22965 dependent template arguments. */
22966 if (TREE_CODE (expression) == FUNCTION_DECL
22967 && DECL_LANG_SPECIFIC (expression)
22968 && DECL_TEMPLATE_INFO (expression))
22969 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22970
22971 if (TREE_CODE (expression) == TEMPLATE_DECL
22972 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22973 return false;
22974
22975 if (TREE_CODE (expression) == STMT_EXPR)
22976 expression = stmt_expr_value_expr (expression);
22977
22978 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22979 {
22980 tree elt;
22981 unsigned i;
22982
22983 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22984 {
22985 if (type_dependent_expression_p (elt))
22986 return true;
22987 }
22988 return false;
22989 }
22990
22991 /* A static data member of the current instantiation with incomplete
22992 array type is type-dependent, as the definition and specializations
22993 can have different bounds. */
22994 if (VAR_P (expression)
22995 && DECL_CLASS_SCOPE_P (expression)
22996 && dependent_type_p (DECL_CONTEXT (expression))
22997 && VAR_HAD_UNKNOWN_BOUND (expression))
22998 return true;
22999
23000 /* An array of unknown bound depending on a variadic parameter, eg:
23001
23002 template<typename... Args>
23003 void foo (Args... args)
23004 {
23005 int arr[] = { args... };
23006 }
23007
23008 template<int... vals>
23009 void bar ()
23010 {
23011 int arr[] = { vals... };
23012 }
23013
23014 If the array has no length and has an initializer, it must be that
23015 we couldn't determine its length in cp_complete_array_type because
23016 it is dependent. */
23017 if (VAR_P (expression)
23018 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
23019 && !TYPE_DOMAIN (TREE_TYPE (expression))
23020 && DECL_INITIAL (expression))
23021 return true;
23022
23023 /* A variable template specialization is type-dependent if it has any
23024 dependent template arguments. */
23025 if (VAR_P (expression)
23026 && DECL_LANG_SPECIFIC (expression)
23027 && DECL_TEMPLATE_INFO (expression)
23028 && variable_template_p (DECL_TI_TEMPLATE (expression)))
23029 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
23030
23031 /* Always dependent, on the number of arguments if nothing else. */
23032 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
23033 return true;
23034
23035 if (TREE_TYPE (expression) == unknown_type_node)
23036 {
23037 if (TREE_CODE (expression) == ADDR_EXPR)
23038 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
23039 if (TREE_CODE (expression) == COMPONENT_REF
23040 || TREE_CODE (expression) == OFFSET_REF)
23041 {
23042 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
23043 return true;
23044 expression = TREE_OPERAND (expression, 1);
23045 if (identifier_p (expression))
23046 return false;
23047 }
23048 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23049 if (TREE_CODE (expression) == SCOPE_REF)
23050 return false;
23051
23052 if (BASELINK_P (expression))
23053 {
23054 if (BASELINK_OPTYPE (expression)
23055 && dependent_type_p (BASELINK_OPTYPE (expression)))
23056 return true;
23057 expression = BASELINK_FUNCTIONS (expression);
23058 }
23059
23060 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
23061 {
23062 if (any_dependent_template_arguments_p
23063 (TREE_OPERAND (expression, 1)))
23064 return true;
23065 expression = TREE_OPERAND (expression, 0);
23066 if (identifier_p (expression))
23067 return true;
23068 }
23069
23070 gcc_assert (TREE_CODE (expression) == OVERLOAD
23071 || TREE_CODE (expression) == FUNCTION_DECL);
23072
23073 while (expression)
23074 {
23075 if (type_dependent_expression_p (OVL_CURRENT (expression)))
23076 return true;
23077 expression = OVL_NEXT (expression);
23078 }
23079 return false;
23080 }
23081
23082 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23083
23084 return (dependent_type_p (TREE_TYPE (expression)));
23085 }
23086
23087 /* walk_tree callback function for instantiation_dependent_expression_p,
23088 below. Returns non-zero if a dependent subexpression is found. */
23089
23090 static tree
23091 instantiation_dependent_r (tree *tp, int *walk_subtrees,
23092 void * /*data*/)
23093 {
23094 if (TYPE_P (*tp))
23095 {
23096 /* We don't have to worry about decltype currently because decltype
23097 of an instantiation-dependent expr is a dependent type. This
23098 might change depending on the resolution of DR 1172. */
23099 *walk_subtrees = false;
23100 return NULL_TREE;
23101 }
23102 enum tree_code code = TREE_CODE (*tp);
23103 switch (code)
23104 {
23105 /* Don't treat an argument list as dependent just because it has no
23106 TREE_TYPE. */
23107 case TREE_LIST:
23108 case TREE_VEC:
23109 return NULL_TREE;
23110
23111 case VAR_DECL:
23112 case CONST_DECL:
23113 /* A constant with a dependent initializer is dependent. */
23114 if (value_dependent_expression_p (*tp))
23115 return *tp;
23116 break;
23117
23118 case TEMPLATE_PARM_INDEX:
23119 return *tp;
23120
23121 /* Handle expressions with type operands. */
23122 case SIZEOF_EXPR:
23123 case ALIGNOF_EXPR:
23124 case TYPEID_EXPR:
23125 case AT_ENCODE_EXPR:
23126 {
23127 tree op = TREE_OPERAND (*tp, 0);
23128 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23129 op = TREE_TYPE (op);
23130 if (TYPE_P (op))
23131 {
23132 if (dependent_type_p (op))
23133 return *tp;
23134 else
23135 {
23136 *walk_subtrees = false;
23137 return NULL_TREE;
23138 }
23139 }
23140 break;
23141 }
23142
23143 case TRAIT_EXPR:
23144 if (value_dependent_expression_p (*tp))
23145 return *tp;
23146 *walk_subtrees = false;
23147 return NULL_TREE;
23148
23149 case COMPONENT_REF:
23150 if (identifier_p (TREE_OPERAND (*tp, 1)))
23151 /* In a template, finish_class_member_access_expr creates a
23152 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23153 type-dependent, so that we can check access control at
23154 instantiation time (PR 42277). See also Core issue 1273. */
23155 return *tp;
23156 break;
23157
23158 case SCOPE_REF:
23159 if (instantiation_dependent_scope_ref_p (*tp))
23160 return *tp;
23161 else
23162 break;
23163
23164 /* Treat statement-expressions as dependent. */
23165 case BIND_EXPR:
23166 return *tp;
23167
23168 /* Treat requires-expressions as dependent. */
23169 case REQUIRES_EXPR:
23170 return *tp;
23171
23172 case CALL_EXPR:
23173 /* Treat calls to function concepts as dependent. */
23174 if (function_concept_check_p (*tp))
23175 return *tp;
23176 break;
23177
23178 case TEMPLATE_ID_EXPR:
23179 /* And variable concepts. */
23180 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
23181 return *tp;
23182 break;
23183
23184 default:
23185 break;
23186 }
23187
23188 if (type_dependent_expression_p (*tp))
23189 return *tp;
23190 else
23191 return NULL_TREE;
23192 }
23193
23194 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
23195 sense defined by the ABI:
23196
23197 "An expression is instantiation-dependent if it is type-dependent
23198 or value-dependent, or it has a subexpression that is type-dependent
23199 or value-dependent." */
23200
23201 bool
23202 instantiation_dependent_expression_p (tree expression)
23203 {
23204 tree result;
23205
23206 if (!processing_template_decl)
23207 return false;
23208
23209 if (expression == error_mark_node)
23210 return false;
23211
23212 result = cp_walk_tree_without_duplicates (&expression,
23213 instantiation_dependent_r, NULL);
23214 return result != NULL_TREE;
23215 }
23216
23217 /* Like type_dependent_expression_p, but it also works while not processing
23218 a template definition, i.e. during substitution or mangling. */
23219
23220 bool
23221 type_dependent_expression_p_push (tree expr)
23222 {
23223 bool b;
23224 ++processing_template_decl;
23225 b = type_dependent_expression_p (expr);
23226 --processing_template_decl;
23227 return b;
23228 }
23229
23230 /* Returns TRUE if ARGS contains a type-dependent expression. */
23231
23232 bool
23233 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
23234 {
23235 unsigned int i;
23236 tree arg;
23237
23238 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
23239 {
23240 if (type_dependent_expression_p (arg))
23241 return true;
23242 }
23243 return false;
23244 }
23245
23246 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23247 expressions) contains any type-dependent expressions. */
23248
23249 bool
23250 any_type_dependent_elements_p (const_tree list)
23251 {
23252 for (; list; list = TREE_CHAIN (list))
23253 if (type_dependent_expression_p (TREE_VALUE (list)))
23254 return true;
23255
23256 return false;
23257 }
23258
23259 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23260 expressions) contains any value-dependent expressions. */
23261
23262 bool
23263 any_value_dependent_elements_p (const_tree list)
23264 {
23265 for (; list; list = TREE_CHAIN (list))
23266 if (value_dependent_expression_p (TREE_VALUE (list)))
23267 return true;
23268
23269 return false;
23270 }
23271
23272 /* Returns TRUE if the ARG (a template argument) is dependent. */
23273
23274 bool
23275 dependent_template_arg_p (tree arg)
23276 {
23277 if (!processing_template_decl)
23278 return false;
23279
23280 /* Assume a template argument that was wrongly written by the user
23281 is dependent. This is consistent with what
23282 any_dependent_template_arguments_p [that calls this function]
23283 does. */
23284 if (!arg || arg == error_mark_node)
23285 return true;
23286
23287 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23288 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23289
23290 if (TREE_CODE (arg) == TEMPLATE_DECL
23291 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23292 return dependent_template_p (arg);
23293 else if (ARGUMENT_PACK_P (arg))
23294 {
23295 tree args = ARGUMENT_PACK_ARGS (arg);
23296 int i, len = TREE_VEC_LENGTH (args);
23297 for (i = 0; i < len; ++i)
23298 {
23299 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23300 return true;
23301 }
23302
23303 return false;
23304 }
23305 else if (TYPE_P (arg))
23306 return dependent_type_p (arg);
23307 else
23308 return (type_dependent_expression_p (arg)
23309 || value_dependent_expression_p (arg));
23310 }
23311
23312 /* Returns true if ARGS (a collection of template arguments) contains
23313 any types that require structural equality testing. */
23314
23315 bool
23316 any_template_arguments_need_structural_equality_p (tree args)
23317 {
23318 int i;
23319 int j;
23320
23321 if (!args)
23322 return false;
23323 if (args == error_mark_node)
23324 return true;
23325
23326 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23327 {
23328 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23329 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23330 {
23331 tree arg = TREE_VEC_ELT (level, j);
23332 tree packed_args = NULL_TREE;
23333 int k, len = 1;
23334
23335 if (ARGUMENT_PACK_P (arg))
23336 {
23337 /* Look inside the argument pack. */
23338 packed_args = ARGUMENT_PACK_ARGS (arg);
23339 len = TREE_VEC_LENGTH (packed_args);
23340 }
23341
23342 for (k = 0; k < len; ++k)
23343 {
23344 if (packed_args)
23345 arg = TREE_VEC_ELT (packed_args, k);
23346
23347 if (error_operand_p (arg))
23348 return true;
23349 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23350 continue;
23351 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23352 return true;
23353 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23354 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23355 return true;
23356 }
23357 }
23358 }
23359
23360 return false;
23361 }
23362
23363 /* Returns true if ARGS (a collection of template arguments) contains
23364 any dependent arguments. */
23365
23366 bool
23367 any_dependent_template_arguments_p (const_tree args)
23368 {
23369 int i;
23370 int j;
23371
23372 if (!args)
23373 return false;
23374 if (args == error_mark_node)
23375 return true;
23376
23377 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23378 {
23379 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23380 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23381 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23382 return true;
23383 }
23384
23385 return false;
23386 }
23387
23388 /* Returns TRUE if the template TMPL is dependent. */
23389
23390 bool
23391 dependent_template_p (tree tmpl)
23392 {
23393 if (TREE_CODE (tmpl) == OVERLOAD)
23394 {
23395 while (tmpl)
23396 {
23397 if (dependent_template_p (OVL_CURRENT (tmpl)))
23398 return true;
23399 tmpl = OVL_NEXT (tmpl);
23400 }
23401 return false;
23402 }
23403
23404 /* Template template parameters are dependent. */
23405 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23406 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23407 return true;
23408 /* So are names that have not been looked up. */
23409 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23410 return true;
23411 /* So are member templates of dependent classes. */
23412 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
23413 return dependent_type_p (DECL_CONTEXT (tmpl));
23414 return false;
23415 }
23416
23417 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23418
23419 bool
23420 dependent_template_id_p (tree tmpl, tree args)
23421 {
23422 return (dependent_template_p (tmpl)
23423 || any_dependent_template_arguments_p (args));
23424 }
23425
23426 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23427 are dependent. */
23428
23429 bool
23430 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23431 {
23432 int i;
23433
23434 if (!processing_template_decl)
23435 return false;
23436
23437 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23438 {
23439 tree decl = TREE_VEC_ELT (declv, i);
23440 tree init = TREE_VEC_ELT (initv, i);
23441 tree cond = TREE_VEC_ELT (condv, i);
23442 tree incr = TREE_VEC_ELT (incrv, i);
23443
23444 if (type_dependent_expression_p (decl)
23445 || TREE_CODE (decl) == SCOPE_REF)
23446 return true;
23447
23448 if (init && type_dependent_expression_p (init))
23449 return true;
23450
23451 if (type_dependent_expression_p (cond))
23452 return true;
23453
23454 if (COMPARISON_CLASS_P (cond)
23455 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23456 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23457 return true;
23458
23459 if (TREE_CODE (incr) == MODOP_EXPR)
23460 {
23461 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23462 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23463 return true;
23464 }
23465 else if (type_dependent_expression_p (incr))
23466 return true;
23467 else if (TREE_CODE (incr) == MODIFY_EXPR)
23468 {
23469 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23470 return true;
23471 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23472 {
23473 tree t = TREE_OPERAND (incr, 1);
23474 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23475 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23476 return true;
23477 }
23478 }
23479 }
23480
23481 return false;
23482 }
23483
23484 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23485 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23486 no such TYPE can be found. Note that this function peers inside
23487 uninstantiated templates and therefore should be used only in
23488 extremely limited situations. ONLY_CURRENT_P restricts this
23489 peering to the currently open classes hierarchy (which is required
23490 when comparing types). */
23491
23492 tree
23493 resolve_typename_type (tree type, bool only_current_p)
23494 {
23495 tree scope;
23496 tree name;
23497 tree decl;
23498 int quals;
23499 tree pushed_scope;
23500 tree result;
23501
23502 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23503
23504 scope = TYPE_CONTEXT (type);
23505 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23506 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23507 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23508 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23509 identifier of the TYPENAME_TYPE anymore.
23510 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23511 TYPENAME_TYPE instead, we avoid messing up with a possible
23512 typedef variant case. */
23513 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23514
23515 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23516 it first before we can figure out what NAME refers to. */
23517 if (TREE_CODE (scope) == TYPENAME_TYPE)
23518 {
23519 if (TYPENAME_IS_RESOLVING_P (scope))
23520 /* Given a class template A with a dependent base with nested type C,
23521 typedef typename A::C::C C will land us here, as trying to resolve
23522 the initial A::C leads to the local C typedef, which leads back to
23523 A::C::C. So we break the recursion now. */
23524 return type;
23525 else
23526 scope = resolve_typename_type (scope, only_current_p);
23527 }
23528 /* If we don't know what SCOPE refers to, then we cannot resolve the
23529 TYPENAME_TYPE. */
23530 if (TREE_CODE (scope) == TYPENAME_TYPE)
23531 return type;
23532 /* If the SCOPE is a template type parameter, we have no way of
23533 resolving the name. */
23534 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23535 return type;
23536 /* If the SCOPE is not the current instantiation, there's no reason
23537 to look inside it. */
23538 if (only_current_p && !currently_open_class (scope))
23539 return type;
23540 /* If this is a typedef, we don't want to look inside (c++/11987). */
23541 if (typedef_variant_p (type))
23542 return type;
23543 /* If SCOPE isn't the template itself, it will not have a valid
23544 TYPE_FIELDS list. */
23545 if (CLASS_TYPE_P (scope)
23546 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23547 /* scope is either the template itself or a compatible instantiation
23548 like X<T>, so look up the name in the original template. */
23549 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23550 else
23551 /* scope is a partial instantiation, so we can't do the lookup or we
23552 will lose the template arguments. */
23553 return type;
23554 /* Enter the SCOPE so that name lookup will be resolved as if we
23555 were in the class definition. In particular, SCOPE will no
23556 longer be considered a dependent type. */
23557 pushed_scope = push_scope (scope);
23558 /* Look up the declaration. */
23559 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23560 tf_warning_or_error);
23561
23562 result = NULL_TREE;
23563
23564 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23565 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23566 if (!decl)
23567 /*nop*/;
23568 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23569 && TREE_CODE (decl) == TYPE_DECL)
23570 {
23571 result = TREE_TYPE (decl);
23572 if (result == error_mark_node)
23573 result = NULL_TREE;
23574 }
23575 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23576 && DECL_CLASS_TEMPLATE_P (decl))
23577 {
23578 tree tmpl;
23579 tree args;
23580 /* Obtain the template and the arguments. */
23581 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23582 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23583 /* Instantiate the template. */
23584 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23585 /*entering_scope=*/0,
23586 tf_error | tf_user);
23587 if (result == error_mark_node)
23588 result = NULL_TREE;
23589 }
23590
23591 /* Leave the SCOPE. */
23592 if (pushed_scope)
23593 pop_scope (pushed_scope);
23594
23595 /* If we failed to resolve it, return the original typename. */
23596 if (!result)
23597 return type;
23598
23599 /* If lookup found a typename type, resolve that too. */
23600 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23601 {
23602 /* Ill-formed programs can cause infinite recursion here, so we
23603 must catch that. */
23604 TYPENAME_IS_RESOLVING_P (type) = 1;
23605 result = resolve_typename_type (result, only_current_p);
23606 TYPENAME_IS_RESOLVING_P (type) = 0;
23607 }
23608
23609 /* Qualify the resulting type. */
23610 quals = cp_type_quals (type);
23611 if (quals)
23612 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23613
23614 return result;
23615 }
23616
23617 /* EXPR is an expression which is not type-dependent. Return a proxy
23618 for EXPR that can be used to compute the types of larger
23619 expressions containing EXPR. */
23620
23621 tree
23622 build_non_dependent_expr (tree expr)
23623 {
23624 tree inner_expr;
23625
23626 /* When checking, try to get a constant value for all non-dependent
23627 expressions in order to expose bugs in *_dependent_expression_p
23628 and constexpr. */
23629 if (flag_checking && cxx_dialect >= cxx11
23630 /* Don't do this during nsdmi parsing as it can lead to
23631 unexpected recursive instantiations. */
23632 && !parsing_nsdmi ())
23633 fold_non_dependent_expr (expr);
23634
23635 /* Preserve OVERLOADs; the functions must be available to resolve
23636 types. */
23637 inner_expr = expr;
23638 if (TREE_CODE (inner_expr) == STMT_EXPR)
23639 inner_expr = stmt_expr_value_expr (inner_expr);
23640 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23641 inner_expr = TREE_OPERAND (inner_expr, 0);
23642 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23643 inner_expr = TREE_OPERAND (inner_expr, 1);
23644 if (is_overloaded_fn (inner_expr)
23645 || TREE_CODE (inner_expr) == OFFSET_REF)
23646 return expr;
23647 /* There is no need to return a proxy for a variable. */
23648 if (VAR_P (expr))
23649 return expr;
23650 /* Preserve string constants; conversions from string constants to
23651 "char *" are allowed, even though normally a "const char *"
23652 cannot be used to initialize a "char *". */
23653 if (TREE_CODE (expr) == STRING_CST)
23654 return expr;
23655 /* Preserve void and arithmetic constants, as an optimization -- there is no
23656 reason to create a new node. */
23657 if (TREE_CODE (expr) == VOID_CST
23658 || TREE_CODE (expr) == INTEGER_CST
23659 || TREE_CODE (expr) == REAL_CST)
23660 return expr;
23661 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23662 There is at least one place where we want to know that a
23663 particular expression is a throw-expression: when checking a ?:
23664 expression, there are special rules if the second or third
23665 argument is a throw-expression. */
23666 if (TREE_CODE (expr) == THROW_EXPR)
23667 return expr;
23668
23669 /* Don't wrap an initializer list, we need to be able to look inside. */
23670 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23671 return expr;
23672
23673 /* Don't wrap a dummy object, we need to be able to test for it. */
23674 if (is_dummy_object (expr))
23675 return expr;
23676
23677 if (TREE_CODE (expr) == COND_EXPR)
23678 return build3 (COND_EXPR,
23679 TREE_TYPE (expr),
23680 TREE_OPERAND (expr, 0),
23681 (TREE_OPERAND (expr, 1)
23682 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23683 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23684 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23685 if (TREE_CODE (expr) == COMPOUND_EXPR
23686 && !COMPOUND_EXPR_OVERLOADED (expr))
23687 return build2 (COMPOUND_EXPR,
23688 TREE_TYPE (expr),
23689 TREE_OPERAND (expr, 0),
23690 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23691
23692 /* If the type is unknown, it can't really be non-dependent */
23693 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23694
23695 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23696 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23697 }
23698
23699 /* ARGS is a vector of expressions as arguments to a function call.
23700 Replace the arguments with equivalent non-dependent expressions.
23701 This modifies ARGS in place. */
23702
23703 void
23704 make_args_non_dependent (vec<tree, va_gc> *args)
23705 {
23706 unsigned int ix;
23707 tree arg;
23708
23709 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23710 {
23711 tree newarg = build_non_dependent_expr (arg);
23712 if (newarg != arg)
23713 (*args)[ix] = newarg;
23714 }
23715 }
23716
23717 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23718 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23719 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23720
23721 static tree
23722 make_auto_1 (tree name, bool set_canonical)
23723 {
23724 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23725 TYPE_NAME (au) = build_decl (input_location,
23726 TYPE_DECL, name, au);
23727 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23728 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23729 (0, processing_template_decl + 1, processing_template_decl + 1,
23730 TYPE_NAME (au), NULL_TREE);
23731 if (set_canonical)
23732 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23733 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23734 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23735
23736 return au;
23737 }
23738
23739 tree
23740 make_decltype_auto (void)
23741 {
23742 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23743 }
23744
23745 tree
23746 make_auto (void)
23747 {
23748 return make_auto_1 (get_identifier ("auto"), true);
23749 }
23750
23751 /* Make a "constrained auto" type-specifier. This is an
23752 auto type with constraints that must be associated after
23753 deduction. The constraint is formed from the given
23754 CONC and its optional sequence of arguments, which are
23755 non-null if written as partial-concept-id. */
23756
23757 tree
23758 make_constrained_auto (tree con, tree args)
23759 {
23760 tree type = make_auto_1 (get_identifier ("auto"), false);
23761
23762 /* Build the constraint. */
23763 tree tmpl = DECL_TI_TEMPLATE (con);
23764 tree expr;
23765 if (VAR_P (con))
23766 expr = build_concept_check (tmpl, type, args);
23767 else
23768 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
23769
23770 tree constr = make_predicate_constraint (expr);
23771 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
23772
23773 /* Our canonical type depends on the constraint. */
23774 TYPE_CANONICAL (type) = canonical_type_parameter (type);
23775
23776 /* Attach the constraint to the type declaration. */
23777 tree decl = TYPE_NAME (type);
23778 return decl;
23779 }
23780
23781 /* Given type ARG, return std::initializer_list<ARG>. */
23782
23783 static tree
23784 listify (tree arg)
23785 {
23786 tree std_init_list = namespace_binding
23787 (get_identifier ("initializer_list"), std_node);
23788 tree argvec;
23789 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23790 {
23791 error ("deducing from brace-enclosed initializer list requires "
23792 "#include <initializer_list>");
23793 return error_mark_node;
23794 }
23795 argvec = make_tree_vec (1);
23796 TREE_VEC_ELT (argvec, 0) = arg;
23797 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23798 NULL_TREE, 0, tf_warning_or_error);
23799 }
23800
23801 /* Replace auto in TYPE with std::initializer_list<auto>. */
23802
23803 static tree
23804 listify_autos (tree type, tree auto_node)
23805 {
23806 tree init_auto = listify (auto_node);
23807 tree argvec = make_tree_vec (1);
23808 TREE_VEC_ELT (argvec, 0) = init_auto;
23809 if (processing_template_decl)
23810 argvec = add_to_template_args (current_template_args (), argvec);
23811 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23812 }
23813
23814 /* Hash traits for hashing possibly constrained 'auto'
23815 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23816
23817 struct auto_hash : default_hash_traits<tree>
23818 {
23819 static inline hashval_t hash (tree);
23820 static inline bool equal (tree, tree);
23821 };
23822
23823 /* Hash the 'auto' T. */
23824
23825 inline hashval_t
23826 auto_hash::hash (tree t)
23827 {
23828 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23829 /* Matching constrained-type-specifiers denote the same template
23830 parameter, so hash the constraint. */
23831 return hash_placeholder_constraint (c);
23832 else
23833 /* But unconstrained autos are all separate, so just hash the pointer. */
23834 return iterative_hash_object (t, 0);
23835 }
23836
23837 /* Compare two 'auto's. */
23838
23839 inline bool
23840 auto_hash::equal (tree t1, tree t2)
23841 {
23842 if (t1 == t2)
23843 return true;
23844
23845 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23846 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23847
23848 /* Two unconstrained autos are distinct. */
23849 if (!c1 || !c2)
23850 return false;
23851
23852 return equivalent_placeholder_constraints (c1, c2);
23853 }
23854
23855 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23856 constrained) auto, add it to the vector. */
23857
23858 static int
23859 extract_autos_r (tree t, void *data)
23860 {
23861 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23862 if (is_auto_or_concept (t))
23863 {
23864 /* All the autos were built with index 0; fix that up now. */
23865 tree *p = hash.find_slot (t, INSERT);
23866 unsigned idx;
23867 if (*p)
23868 /* If this is a repeated constrained-type-specifier, use the index we
23869 chose before. */
23870 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23871 else
23872 {
23873 /* Otherwise this is new, so use the current count. */
23874 *p = t;
23875 idx = hash.elements () - 1;
23876 }
23877 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23878 }
23879
23880 /* Always keep walking. */
23881 return 0;
23882 }
23883
23884 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23885 says they can appear anywhere in the type. */
23886
23887 static tree
23888 extract_autos (tree type)
23889 {
23890 hash_set<tree> visited;
23891 hash_table<auto_hash> hash (2);
23892
23893 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23894
23895 tree tree_vec = make_tree_vec (hash.elements());
23896 for (hash_table<auto_hash>::iterator iter = hash.begin();
23897 iter != hash.end(); ++iter)
23898 {
23899 tree elt = *iter;
23900 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23901 TREE_VEC_ELT (tree_vec, i)
23902 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23903 }
23904
23905 return tree_vec;
23906 }
23907
23908 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23909 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23910
23911 tree
23912 do_auto_deduction (tree type, tree init, tree auto_node)
23913 {
23914 return do_auto_deduction (type, init, auto_node,
23915 tf_warning_or_error,
23916 adc_unspecified);
23917 }
23918
23919 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23920 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23921 The CONTEXT determines the context in which auto deduction is performed
23922 and is used to control error diagnostics. */
23923
23924 tree
23925 do_auto_deduction (tree type, tree init, tree auto_node,
23926 tsubst_flags_t complain, auto_deduction_context context)
23927 {
23928 tree targs;
23929
23930 if (init == error_mark_node)
23931 return error_mark_node;
23932
23933 if (type_dependent_expression_p (init))
23934 /* Defining a subset of type-dependent expressions that we can deduce
23935 from ahead of time isn't worth the trouble. */
23936 return type;
23937
23938 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23939 with either a new invented type template parameter U or, if the
23940 initializer is a braced-init-list (8.5.4), with
23941 std::initializer_list<U>. */
23942 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23943 {
23944 if (!DIRECT_LIST_INIT_P (init))
23945 type = listify_autos (type, auto_node);
23946 else if (CONSTRUCTOR_NELTS (init) == 1)
23947 init = CONSTRUCTOR_ELT (init, 0)->value;
23948 else
23949 {
23950 if (complain & tf_warning_or_error)
23951 {
23952 if (permerror (input_location, "direct-list-initialization of "
23953 "%<auto%> requires exactly one element"))
23954 inform (input_location,
23955 "for deduction to %<std::initializer_list%>, use copy-"
23956 "list-initialization (i.e. add %<=%> before the %<{%>)");
23957 }
23958 type = listify_autos (type, auto_node);
23959 }
23960 }
23961
23962 if (type == error_mark_node)
23963 return error_mark_node;
23964
23965 init = resolve_nondeduced_context (init, complain);
23966
23967 if (AUTO_IS_DECLTYPE (auto_node))
23968 {
23969 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23970 && !REF_PARENTHESIZED_P (init)));
23971 targs = make_tree_vec (1);
23972 TREE_VEC_ELT (targs, 0)
23973 = finish_decltype_type (init, id, tf_warning_or_error);
23974 if (type != auto_node)
23975 {
23976 if (complain & tf_error)
23977 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23978 return error_mark_node;
23979 }
23980 }
23981 else
23982 {
23983 tree parms = build_tree_list (NULL_TREE, type);
23984 tree tparms;
23985
23986 if (flag_concepts)
23987 tparms = extract_autos (type);
23988 else
23989 {
23990 tparms = make_tree_vec (1);
23991 TREE_VEC_ELT (tparms, 0)
23992 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23993 }
23994
23995 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
23996 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23997 DEDUCE_CALL, LOOKUP_NORMAL,
23998 NULL, /*explain_p=*/false);
23999 if (val > 0)
24000 {
24001 if (processing_template_decl)
24002 /* Try again at instantiation time. */
24003 return type;
24004 if (type && type != error_mark_node
24005 && (complain & tf_error))
24006 /* If type is error_mark_node a diagnostic must have been
24007 emitted by now. Also, having a mention to '<type error>'
24008 in the diagnostic is not really useful to the user. */
24009 {
24010 if (cfun && auto_node == current_function_auto_return_pattern
24011 && LAMBDA_FUNCTION_P (current_function_decl))
24012 error ("unable to deduce lambda return type from %qE", init);
24013 else
24014 error ("unable to deduce %qT from %qE", type, init);
24015 type_unification_real (tparms, targs, parms, &init, 1, 0,
24016 DEDUCE_CALL, LOOKUP_NORMAL,
24017 NULL, /*explain_p=*/true);
24018 }
24019 return error_mark_node;
24020 }
24021 }
24022
24023 /* Check any placeholder constraints against the deduced type. */
24024 if (flag_concepts && !processing_template_decl)
24025 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
24026 {
24027 /* Use the deduced type to check the associated constraints. */
24028 if (!constraints_satisfied_p (constr, targs))
24029 {
24030 if (complain & tf_warning_or_error)
24031 {
24032 switch (context)
24033 {
24034 case adc_unspecified:
24035 error("placeholder constraints not satisfied");
24036 break;
24037 case adc_variable_type:
24038 error ("deduced initializer does not satisfy "
24039 "placeholder constraints");
24040 break;
24041 case adc_return_type:
24042 error ("deduced return type does not satisfy "
24043 "placeholder constraints");
24044 break;
24045 case adc_requirement:
24046 error ("deduced expression type does not saatisy "
24047 "placeholder constraints");
24048 break;
24049 }
24050 diagnose_constraints (input_location, constr, targs);
24051 }
24052 return error_mark_node;
24053 }
24054 }
24055
24056 if (processing_template_decl)
24057 targs = add_to_template_args (current_template_args (), targs);
24058 return tsubst (type, targs, complain, NULL_TREE);
24059 }
24060
24061 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
24062 result. */
24063
24064 tree
24065 splice_late_return_type (tree type, tree late_return_type)
24066 {
24067 if (is_auto (type))
24068 {
24069 if (late_return_type)
24070 return late_return_type;
24071
24072 tree idx = get_template_parm_index (type);
24073 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
24074 /* In an abbreviated function template we didn't know we were dealing
24075 with a function template when we saw the auto return type, so update
24076 it to have the correct level. */
24077 return make_auto_1 (TYPE_IDENTIFIER (type), true);
24078 }
24079 return type;
24080 }
24081
24082 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
24083 'decltype(auto)'. */
24084
24085 bool
24086 is_auto (const_tree type)
24087 {
24088 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
24089 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
24090 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
24091 return true;
24092 else
24093 return false;
24094 }
24095
24096 /* for_each_template_parm callback for type_uses_auto. */
24097
24098 int
24099 is_auto_r (tree tp, void */*data*/)
24100 {
24101 return is_auto_or_concept (tp);
24102 }
24103
24104 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
24105 a use of `auto'. Returns NULL_TREE otherwise. */
24106
24107 tree
24108 type_uses_auto (tree type)
24109 {
24110 if (type == NULL_TREE)
24111 return NULL_TREE;
24112 else if (flag_concepts)
24113 {
24114 /* The Concepts TS allows multiple autos in one type-specifier; just
24115 return the first one we find, do_auto_deduction will collect all of
24116 them. */
24117 if (uses_template_parms (type))
24118 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
24119 /*visited*/NULL, /*nondeduced*/true);
24120 else
24121 return NULL_TREE;
24122 }
24123 else
24124 return find_type_usage (type, is_auto);
24125 }
24126
24127 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
24128 'decltype(auto)' or a concept. */
24129
24130 bool
24131 is_auto_or_concept (const_tree type)
24132 {
24133 return is_auto (type); // or concept
24134 }
24135
24136 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
24137 a concept identifier) iff TYPE contains a use of a generic type. Returns
24138 NULL_TREE otherwise. */
24139
24140 tree
24141 type_uses_auto_or_concept (tree type)
24142 {
24143 return find_type_usage (type, is_auto_or_concept);
24144 }
24145
24146
24147 /* For a given template T, return the vector of typedefs referenced
24148 in T for which access check is needed at T instantiation time.
24149 T is either a FUNCTION_DECL or a RECORD_TYPE.
24150 Those typedefs were added to T by the function
24151 append_type_to_template_for_access_check. */
24152
24153 vec<qualified_typedef_usage_t, va_gc> *
24154 get_types_needing_access_check (tree t)
24155 {
24156 tree ti;
24157 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
24158
24159 if (!t || t == error_mark_node)
24160 return NULL;
24161
24162 if (!(ti = get_template_info (t)))
24163 return NULL;
24164
24165 if (CLASS_TYPE_P (t)
24166 || TREE_CODE (t) == FUNCTION_DECL)
24167 {
24168 if (!TI_TEMPLATE (ti))
24169 return NULL;
24170
24171 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
24172 }
24173
24174 return result;
24175 }
24176
24177 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
24178 tied to T. That list of typedefs will be access checked at
24179 T instantiation time.
24180 T is either a FUNCTION_DECL or a RECORD_TYPE.
24181 TYPE_DECL is a TYPE_DECL node representing a typedef.
24182 SCOPE is the scope through which TYPE_DECL is accessed.
24183 LOCATION is the location of the usage point of TYPE_DECL.
24184
24185 This function is a subroutine of
24186 append_type_to_template_for_access_check. */
24187
24188 static void
24189 append_type_to_template_for_access_check_1 (tree t,
24190 tree type_decl,
24191 tree scope,
24192 location_t location)
24193 {
24194 qualified_typedef_usage_t typedef_usage;
24195 tree ti;
24196
24197 if (!t || t == error_mark_node)
24198 return;
24199
24200 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
24201 || CLASS_TYPE_P (t))
24202 && type_decl
24203 && TREE_CODE (type_decl) == TYPE_DECL
24204 && scope);
24205
24206 if (!(ti = get_template_info (t)))
24207 return;
24208
24209 gcc_assert (TI_TEMPLATE (ti));
24210
24211 typedef_usage.typedef_decl = type_decl;
24212 typedef_usage.context = scope;
24213 typedef_usage.locus = location;
24214
24215 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
24216 }
24217
24218 /* Append TYPE_DECL to the template TEMPL.
24219 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
24220 At TEMPL instanciation time, TYPE_DECL will be checked to see
24221 if it can be accessed through SCOPE.
24222 LOCATION is the location of the usage point of TYPE_DECL.
24223
24224 e.g. consider the following code snippet:
24225
24226 class C
24227 {
24228 typedef int myint;
24229 };
24230
24231 template<class U> struct S
24232 {
24233 C::myint mi; // <-- usage point of the typedef C::myint
24234 };
24235
24236 S<char> s;
24237
24238 At S<char> instantiation time, we need to check the access of C::myint
24239 In other words, we need to check the access of the myint typedef through
24240 the C scope. For that purpose, this function will add the myint typedef
24241 and the scope C through which its being accessed to a list of typedefs
24242 tied to the template S. That list will be walked at template instantiation
24243 time and access check performed on each typedefs it contains.
24244 Note that this particular code snippet should yield an error because
24245 myint is private to C. */
24246
24247 void
24248 append_type_to_template_for_access_check (tree templ,
24249 tree type_decl,
24250 tree scope,
24251 location_t location)
24252 {
24253 qualified_typedef_usage_t *iter;
24254 unsigned i;
24255
24256 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
24257
24258 /* Make sure we don't append the type to the template twice. */
24259 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
24260 if (iter->typedef_decl == type_decl && scope == iter->context)
24261 return;
24262
24263 append_type_to_template_for_access_check_1 (templ, type_decl,
24264 scope, location);
24265 }
24266
24267 /* Convert the generic type parameters in PARM that match the types given in the
24268 range [START_IDX, END_IDX) from the current_template_parms into generic type
24269 packs. */
24270
24271 tree
24272 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
24273 {
24274 tree current = current_template_parms;
24275 int depth = TMPL_PARMS_DEPTH (current);
24276 current = INNERMOST_TEMPLATE_PARMS (current);
24277 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
24278
24279 for (int i = 0; i < start_idx; ++i)
24280 TREE_VEC_ELT (replacement, i)
24281 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24282
24283 for (int i = start_idx; i < end_idx; ++i)
24284 {
24285 /* Create a distinct parameter pack type from the current parm and add it
24286 to the replacement args to tsubst below into the generic function
24287 parameter. */
24288
24289 tree o = TREE_TYPE (TREE_VALUE
24290 (TREE_VEC_ELT (current, i)));
24291 tree t = copy_type (o);
24292 TEMPLATE_TYPE_PARM_INDEX (t)
24293 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
24294 o, 0, 0, tf_none);
24295 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
24296 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
24297 TYPE_MAIN_VARIANT (t) = t;
24298 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
24299 TYPE_CANONICAL (t) = canonical_type_parameter (t);
24300 TREE_VEC_ELT (replacement, i) = t;
24301 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24302 }
24303
24304 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24305 TREE_VEC_ELT (replacement, i)
24306 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24307
24308 /* If there are more levels then build up the replacement with the outer
24309 template parms. */
24310 if (depth > 1)
24311 replacement = add_to_template_args (template_parms_to_args
24312 (TREE_CHAIN (current_template_parms)),
24313 replacement);
24314
24315 return tsubst (parm, replacement, tf_none, NULL_TREE);
24316 }
24317
24318 /* Entries in the decl_constraint hash table. */
24319 struct GTY((for_user)) constr_entry
24320 {
24321 tree decl;
24322 tree ci;
24323 };
24324
24325 /* Hashing function and equality for constraint entries. */
24326 struct constr_hasher : ggc_ptr_hash<constr_entry>
24327 {
24328 static hashval_t hash (constr_entry *e)
24329 {
24330 return (hashval_t)DECL_UID (e->decl);
24331 }
24332
24333 static bool equal (constr_entry *e1, constr_entry *e2)
24334 {
24335 return e1->decl == e2->decl;
24336 }
24337 };
24338
24339 /* A mapping from declarations to constraint information. Note that
24340 both templates and their underlying declarations are mapped to the
24341 same constraint information.
24342
24343 FIXME: This is defined in pt.c because garbage collection
24344 code is not being generated for constraint.cc. */
24345
24346 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24347
24348 /* Returns true iff cinfo contains a valid set of constraints.
24349 This is the case when the associated requirements have been
24350 successfully decomposed into lists of atomic constraints.
24351 That is, when the saved assumptions are not error_mark_node. */
24352
24353 bool
24354 valid_constraints_p (tree cinfo)
24355 {
24356 gcc_assert (cinfo);
24357 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
24358 }
24359
24360 /* Returns the template constraints of declaration T. If T is not
24361 constrained, return NULL_TREE. Note that T must be non-null. */
24362
24363 tree
24364 get_constraints (tree t)
24365 {
24366 gcc_assert (DECL_P (t));
24367 if (TREE_CODE (t) == TEMPLATE_DECL)
24368 t = DECL_TEMPLATE_RESULT (t);
24369 constr_entry elt = { t, NULL_TREE };
24370 constr_entry* found = decl_constraints->find (&elt);
24371 if (found)
24372 return found->ci;
24373 else
24374 return NULL_TREE;
24375 }
24376
24377 /* Associate the given constraint information CI with the declaration
24378 T. If T is a template, then the constraints are associated with
24379 its underlying declaration. Don't build associations if CI is
24380 NULL_TREE. */
24381
24382 void
24383 set_constraints (tree t, tree ci)
24384 {
24385 if (!ci)
24386 return;
24387 gcc_assert (t);
24388 if (TREE_CODE (t) == TEMPLATE_DECL)
24389 t = DECL_TEMPLATE_RESULT (t);
24390 gcc_assert (!get_constraints (t));
24391 constr_entry elt = {t, ci};
24392 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24393 constr_entry* entry = ggc_alloc<constr_entry> ();
24394 *entry = elt;
24395 *slot = entry;
24396 }
24397
24398 /* Remove the associated constraints of the declaration T. */
24399
24400 void
24401 remove_constraints (tree t)
24402 {
24403 gcc_assert (DECL_P (t));
24404 if (TREE_CODE (t) == TEMPLATE_DECL)
24405 t = DECL_TEMPLATE_RESULT (t);
24406
24407 constr_entry elt = {t, NULL_TREE};
24408 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24409 if (slot)
24410 decl_constraints->clear_slot (slot);
24411 }
24412
24413 /* Set up the hash table for constraint association. */
24414
24415 void
24416 init_constraint_processing (void)
24417 {
24418 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24419 }
24420
24421 /* Set up the hash tables for template instantiations. */
24422
24423 void
24424 init_template_processing (void)
24425 {
24426 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24427 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24428 }
24429
24430 /* Print stats about the template hash tables for -fstats. */
24431
24432 void
24433 print_template_statistics (void)
24434 {
24435 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24436 "%f collisions\n", (long) decl_specializations->size (),
24437 (long) decl_specializations->elements (),
24438 decl_specializations->collisions ());
24439 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24440 "%f collisions\n", (long) type_specializations->size (),
24441 (long) type_specializations->elements (),
24442 type_specializations->collisions ());
24443 }
24444
24445 #include "gt-cp-pt.h"