re PR c++/69009 (ICE in instantiate_decl, at cp/pt.c:21511)
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2016 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Known bugs or deficiencies include:
23
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "cp-tree.h"
31 #include "timevar.h"
32 #include "stringpool.h"
33 #include "varasm.h"
34 #include "attribs.h"
35 #include "stor-layout.h"
36 #include "intl.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "toplev.h"
40 #include "tree-iterator.h"
41 #include "type-utils.h"
42 #include "gimplify.h"
43
44 /* The type of functions taking a tree, and some additional data, and
45 returning an int. */
46 typedef int (*tree_fn_t) (tree, void*);
47
48 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
49 instantiations have been deferred, either because their definitions
50 were not yet available, or because we were putting off doing the work. */
51 struct GTY ((chain_next ("%h.next"))) pending_template {
52 struct pending_template *next;
53 struct tinst_level *tinst;
54 };
55
56 static GTY(()) struct pending_template *pending_templates;
57 static GTY(()) struct pending_template *last_pending_template;
58
59 int processing_template_parmlist;
60 static int template_header_count;
61
62 static GTY(()) tree saved_trees;
63 static vec<int> inline_parm_levels;
64
65 static GTY(()) struct tinst_level *current_tinst_level;
66
67 static GTY(()) tree saved_access_scope;
68
69 /* Live only within one (recursive) call to tsubst_expr. We use
70 this to pass the statement expression node from the STMT_EXPR
71 to the EXPR_STMT that is its result. */
72 static tree cur_stmt_expr;
73
74 // -------------------------------------------------------------------------- //
75 // Local Specialization Stack
76 //
77 // Implementation of the RAII helper for creating new local
78 // specializations.
79 local_specialization_stack::local_specialization_stack ()
80 : saved (local_specializations)
81 {
82 local_specializations = new hash_map<tree, tree>;
83 }
84
85 local_specialization_stack::~local_specialization_stack ()
86 {
87 delete local_specializations;
88 local_specializations = saved;
89 }
90
91 /* True if we've recursed into fn_type_unification too many times. */
92 static bool excessive_deduction_depth;
93
94 struct GTY((for_user)) spec_entry
95 {
96 tree tmpl;
97 tree args;
98 tree spec;
99 };
100
101 struct spec_hasher : ggc_ptr_hash<spec_entry>
102 {
103 static hashval_t hash (spec_entry *);
104 static bool equal (spec_entry *, spec_entry *);
105 };
106
107 static GTY (()) hash_table<spec_hasher> *decl_specializations;
108
109 static GTY (()) hash_table<spec_hasher> *type_specializations;
110
111 /* Contains canonical template parameter types. The vector is indexed by
112 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
113 TREE_LIST, whose TREE_VALUEs contain the canonical template
114 parameters of various types and levels. */
115 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
116
117 #define UNIFY_ALLOW_NONE 0
118 #define UNIFY_ALLOW_MORE_CV_QUAL 1
119 #define UNIFY_ALLOW_LESS_CV_QUAL 2
120 #define UNIFY_ALLOW_DERIVED 4
121 #define UNIFY_ALLOW_INTEGER 8
122 #define UNIFY_ALLOW_OUTER_LEVEL 16
123 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
124 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
125
126 enum template_base_result {
127 tbr_incomplete_type,
128 tbr_ambiguous_baseclass,
129 tbr_success
130 };
131
132 static void push_access_scope (tree);
133 static void pop_access_scope (tree);
134 static bool resolve_overloaded_unification (tree, tree, tree, tree,
135 unification_kind_t, int,
136 bool);
137 static int try_one_overload (tree, tree, tree, tree, tree,
138 unification_kind_t, int, bool, bool);
139 static int unify (tree, tree, tree, tree, int, bool);
140 static void add_pending_template (tree);
141 static tree reopen_tinst_level (struct tinst_level *);
142 static tree tsubst_initializer_list (tree, tree);
143 static tree get_partial_spec_bindings (tree, tree, tree, tree);
144 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
145 bool, bool);
146 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
147 bool, bool);
148 static void tsubst_enum (tree, tree, tree);
149 static tree add_to_template_args (tree, tree);
150 static tree add_outermost_template_args (tree, tree);
151 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
152 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
153 tree);
154 static int type_unification_real (tree, tree, tree, const tree *,
155 unsigned int, int, unification_kind_t, int,
156 vec<deferred_access_check, va_gc> **,
157 bool);
158 static void note_template_header (int);
159 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
160 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
161 static tree convert_template_argument (tree, tree, tree,
162 tsubst_flags_t, int, tree);
163 static tree for_each_template_parm (tree, tree_fn_t, void*,
164 hash_set<tree> *, bool);
165 static tree expand_template_argument_pack (tree);
166 static tree build_template_parm_index (int, int, int, tree, tree);
167 static bool inline_needs_template_parms (tree, bool);
168 static void push_inline_template_parms_recursive (tree, int);
169 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
170 static int mark_template_parm (tree, void *);
171 static int template_parm_this_level_p (tree, void *);
172 static tree tsubst_friend_function (tree, tree);
173 static tree tsubst_friend_class (tree, tree);
174 static int can_complete_type_without_circularity (tree);
175 static tree get_bindings (tree, tree, tree, bool);
176 static int template_decl_level (tree);
177 static int check_cv_quals_for_unify (int, tree, tree);
178 static void template_parm_level_and_index (tree, int*, int*);
179 static int unify_pack_expansion (tree, tree, tree,
180 tree, unification_kind_t, bool, bool);
181 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
182 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
183 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
184 static void regenerate_decl_from_template (tree, tree);
185 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
186 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
187 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
188 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
189 static bool check_specialization_scope (void);
190 static tree process_partial_specialization (tree);
191 static void set_current_access_from_decl (tree);
192 static enum template_base_result get_template_base (tree, tree, tree, tree,
193 bool , tree *);
194 static tree try_class_unification (tree, tree, tree, tree, bool);
195 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
196 tree, tree);
197 static bool template_template_parm_bindings_ok_p (tree, tree);
198 static int template_args_equal (tree, tree);
199 static void tsubst_default_arguments (tree, tsubst_flags_t);
200 static tree for_each_template_parm_r (tree *, int *, void *);
201 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
202 static void copy_default_args_to_explicit_spec (tree);
203 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
204 static bool dependent_template_arg_p (tree);
205 static bool any_template_arguments_need_structural_equality_p (tree);
206 static bool dependent_type_p_r (tree);
207 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
208 static tree tsubst_decl (tree, tree, tsubst_flags_t);
209 static void perform_typedefs_access_check (tree tmpl, tree targs);
210 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
211 location_t);
212 static tree listify (tree);
213 static tree listify_autos (tree, tree);
214 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
215 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
216 static bool complex_alias_template_p (const_tree tmpl);
217 static tree tsubst_attributes (tree, tree, tsubst_flags_t, tree);
218
219 /* Make the current scope suitable for access checking when we are
220 processing T. T can be FUNCTION_DECL for instantiated function
221 template, VAR_DECL for static member variable, or TYPE_DECL for
222 alias template (needed by instantiate_decl). */
223
224 static void
225 push_access_scope (tree t)
226 {
227 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
228 || TREE_CODE (t) == TYPE_DECL);
229
230 if (DECL_FRIEND_CONTEXT (t))
231 push_nested_class (DECL_FRIEND_CONTEXT (t));
232 else if (DECL_CLASS_SCOPE_P (t))
233 push_nested_class (DECL_CONTEXT (t));
234 else
235 push_to_top_level ();
236
237 if (TREE_CODE (t) == FUNCTION_DECL)
238 {
239 saved_access_scope = tree_cons
240 (NULL_TREE, current_function_decl, saved_access_scope);
241 current_function_decl = t;
242 }
243 }
244
245 /* Restore the scope set up by push_access_scope. T is the node we
246 are processing. */
247
248 static void
249 pop_access_scope (tree t)
250 {
251 if (TREE_CODE (t) == FUNCTION_DECL)
252 {
253 current_function_decl = TREE_VALUE (saved_access_scope);
254 saved_access_scope = TREE_CHAIN (saved_access_scope);
255 }
256
257 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
258 pop_nested_class ();
259 else
260 pop_from_top_level ();
261 }
262
263 /* Do any processing required when DECL (a member template
264 declaration) is finished. Returns the TEMPLATE_DECL corresponding
265 to DECL, unless it is a specialization, in which case the DECL
266 itself is returned. */
267
268 tree
269 finish_member_template_decl (tree decl)
270 {
271 if (decl == error_mark_node)
272 return error_mark_node;
273
274 gcc_assert (DECL_P (decl));
275
276 if (TREE_CODE (decl) == TYPE_DECL)
277 {
278 tree type;
279
280 type = TREE_TYPE (decl);
281 if (type == error_mark_node)
282 return error_mark_node;
283 if (MAYBE_CLASS_TYPE_P (type)
284 && CLASSTYPE_TEMPLATE_INFO (type)
285 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
286 {
287 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
288 check_member_template (tmpl);
289 return tmpl;
290 }
291 return NULL_TREE;
292 }
293 else if (TREE_CODE (decl) == FIELD_DECL)
294 error ("data member %qD cannot be a member template", decl);
295 else if (DECL_TEMPLATE_INFO (decl))
296 {
297 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
298 {
299 check_member_template (DECL_TI_TEMPLATE (decl));
300 return DECL_TI_TEMPLATE (decl);
301 }
302 else
303 return decl;
304 }
305 else
306 error ("invalid member template declaration %qD", decl);
307
308 return error_mark_node;
309 }
310
311 /* Create a template info node. */
312
313 tree
314 build_template_info (tree template_decl, tree template_args)
315 {
316 tree result = make_node (TEMPLATE_INFO);
317 TI_TEMPLATE (result) = template_decl;
318 TI_ARGS (result) = template_args;
319 return result;
320 }
321
322 /* Return the template info node corresponding to T, whatever T is. */
323
324 tree
325 get_template_info (const_tree t)
326 {
327 tree tinfo = NULL_TREE;
328
329 if (!t || t == error_mark_node)
330 return NULL;
331
332 if (TREE_CODE (t) == NAMESPACE_DECL)
333 return NULL;
334
335 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
336 tinfo = DECL_TEMPLATE_INFO (t);
337
338 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
339 t = TREE_TYPE (t);
340
341 if (OVERLOAD_TYPE_P (t))
342 tinfo = TYPE_TEMPLATE_INFO (t);
343 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
344 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
345
346 return tinfo;
347 }
348
349 /* Returns the template nesting level of the indicated class TYPE.
350
351 For example, in:
352 template <class T>
353 struct A
354 {
355 template <class U>
356 struct B {};
357 };
358
359 A<T>::B<U> has depth two, while A<T> has depth one.
360 Both A<T>::B<int> and A<int>::B<U> have depth one, if
361 they are instantiations, not specializations.
362
363 This function is guaranteed to return 0 if passed NULL_TREE so
364 that, for example, `template_class_depth (current_class_type)' is
365 always safe. */
366
367 int
368 template_class_depth (tree type)
369 {
370 int depth;
371
372 for (depth = 0;
373 type && TREE_CODE (type) != NAMESPACE_DECL;
374 type = (TREE_CODE (type) == FUNCTION_DECL)
375 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
376 {
377 tree tinfo = get_template_info (type);
378
379 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
380 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
381 ++depth;
382 }
383
384 return depth;
385 }
386
387 /* Subroutine of maybe_begin_member_template_processing.
388 Returns true if processing DECL needs us to push template parms. */
389
390 static bool
391 inline_needs_template_parms (tree decl, bool nsdmi)
392 {
393 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
394 return false;
395
396 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
397 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
398 }
399
400 /* Subroutine of maybe_begin_member_template_processing.
401 Push the template parms in PARMS, starting from LEVELS steps into the
402 chain, and ending at the beginning, since template parms are listed
403 innermost first. */
404
405 static void
406 push_inline_template_parms_recursive (tree parmlist, int levels)
407 {
408 tree parms = TREE_VALUE (parmlist);
409 int i;
410
411 if (levels > 1)
412 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
413
414 ++processing_template_decl;
415 current_template_parms
416 = tree_cons (size_int (processing_template_decl),
417 parms, current_template_parms);
418 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
419
420 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
421 NULL);
422 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
423 {
424 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
425
426 if (error_operand_p (parm))
427 continue;
428
429 gcc_assert (DECL_P (parm));
430
431 switch (TREE_CODE (parm))
432 {
433 case TYPE_DECL:
434 case TEMPLATE_DECL:
435 pushdecl (parm);
436 break;
437
438 case PARM_DECL:
439 /* Push the CONST_DECL. */
440 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
441 break;
442
443 default:
444 gcc_unreachable ();
445 }
446 }
447 }
448
449 /* Restore the template parameter context for a member template, a
450 friend template defined in a class definition, or a non-template
451 member of template class. */
452
453 void
454 maybe_begin_member_template_processing (tree decl)
455 {
456 tree parms;
457 int levels = 0;
458 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
459
460 if (nsdmi)
461 {
462 tree ctx = DECL_CONTEXT (decl);
463 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
464 /* Disregard full specializations (c++/60999). */
465 && uses_template_parms (ctx)
466 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
467 }
468
469 if (inline_needs_template_parms (decl, nsdmi))
470 {
471 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
472 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
473
474 if (DECL_TEMPLATE_SPECIALIZATION (decl))
475 {
476 --levels;
477 parms = TREE_CHAIN (parms);
478 }
479
480 push_inline_template_parms_recursive (parms, levels);
481 }
482
483 /* Remember how many levels of template parameters we pushed so that
484 we can pop them later. */
485 inline_parm_levels.safe_push (levels);
486 }
487
488 /* Undo the effects of maybe_begin_member_template_processing. */
489
490 void
491 maybe_end_member_template_processing (void)
492 {
493 int i;
494 int last;
495
496 if (inline_parm_levels.length () == 0)
497 return;
498
499 last = inline_parm_levels.pop ();
500 for (i = 0; i < last; ++i)
501 {
502 --processing_template_decl;
503 current_template_parms = TREE_CHAIN (current_template_parms);
504 poplevel (0, 0, 0);
505 }
506 }
507
508 /* Return a new template argument vector which contains all of ARGS,
509 but has as its innermost set of arguments the EXTRA_ARGS. */
510
511 static tree
512 add_to_template_args (tree args, tree extra_args)
513 {
514 tree new_args;
515 int extra_depth;
516 int i;
517 int j;
518
519 if (args == NULL_TREE || extra_args == error_mark_node)
520 return extra_args;
521
522 extra_depth = TMPL_ARGS_DEPTH (extra_args);
523 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
524
525 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
526 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
527
528 for (j = 1; j <= extra_depth; ++j, ++i)
529 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
530
531 return new_args;
532 }
533
534 /* Like add_to_template_args, but only the outermost ARGS are added to
535 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
536 (EXTRA_ARGS) levels are added. This function is used to combine
537 the template arguments from a partial instantiation with the
538 template arguments used to attain the full instantiation from the
539 partial instantiation. */
540
541 static tree
542 add_outermost_template_args (tree args, tree extra_args)
543 {
544 tree new_args;
545
546 /* If there are more levels of EXTRA_ARGS than there are ARGS,
547 something very fishy is going on. */
548 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
549
550 /* If *all* the new arguments will be the EXTRA_ARGS, just return
551 them. */
552 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
553 return extra_args;
554
555 /* For the moment, we make ARGS look like it contains fewer levels. */
556 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
557
558 new_args = add_to_template_args (args, extra_args);
559
560 /* Now, we restore ARGS to its full dimensions. */
561 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
562
563 return new_args;
564 }
565
566 /* Return the N levels of innermost template arguments from the ARGS. */
567
568 tree
569 get_innermost_template_args (tree args, int n)
570 {
571 tree new_args;
572 int extra_levels;
573 int i;
574
575 gcc_assert (n >= 0);
576
577 /* If N is 1, just return the innermost set of template arguments. */
578 if (n == 1)
579 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
580
581 /* If we're not removing anything, just return the arguments we were
582 given. */
583 extra_levels = TMPL_ARGS_DEPTH (args) - n;
584 gcc_assert (extra_levels >= 0);
585 if (extra_levels == 0)
586 return args;
587
588 /* Make a new set of arguments, not containing the outer arguments. */
589 new_args = make_tree_vec (n);
590 for (i = 1; i <= n; ++i)
591 SET_TMPL_ARGS_LEVEL (new_args, i,
592 TMPL_ARGS_LEVEL (args, i + extra_levels));
593
594 return new_args;
595 }
596
597 /* The inverse of get_innermost_template_args: Return all but the innermost
598 EXTRA_LEVELS levels of template arguments from the ARGS. */
599
600 static tree
601 strip_innermost_template_args (tree args, int extra_levels)
602 {
603 tree new_args;
604 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
605 int i;
606
607 gcc_assert (n >= 0);
608
609 /* If N is 1, just return the outermost set of template arguments. */
610 if (n == 1)
611 return TMPL_ARGS_LEVEL (args, 1);
612
613 /* If we're not removing anything, just return the arguments we were
614 given. */
615 gcc_assert (extra_levels >= 0);
616 if (extra_levels == 0)
617 return args;
618
619 /* Make a new set of arguments, not containing the inner arguments. */
620 new_args = make_tree_vec (n);
621 for (i = 1; i <= n; ++i)
622 SET_TMPL_ARGS_LEVEL (new_args, i,
623 TMPL_ARGS_LEVEL (args, i));
624
625 return new_args;
626 }
627
628 /* We've got a template header coming up; push to a new level for storing
629 the parms. */
630
631 void
632 begin_template_parm_list (void)
633 {
634 /* We use a non-tag-transparent scope here, which causes pushtag to
635 put tags in this scope, rather than in the enclosing class or
636 namespace scope. This is the right thing, since we want
637 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
638 global template class, push_template_decl handles putting the
639 TEMPLATE_DECL into top-level scope. For a nested template class,
640 e.g.:
641
642 template <class T> struct S1 {
643 template <class T> struct S2 {};
644 };
645
646 pushtag contains special code to call pushdecl_with_scope on the
647 TEMPLATE_DECL for S2. */
648 begin_scope (sk_template_parms, NULL);
649 ++processing_template_decl;
650 ++processing_template_parmlist;
651 note_template_header (0);
652
653 /* Add a dummy parameter level while we process the parameter list. */
654 current_template_parms
655 = tree_cons (size_int (processing_template_decl),
656 make_tree_vec (0),
657 current_template_parms);
658 }
659
660 /* This routine is called when a specialization is declared. If it is
661 invalid to declare a specialization here, an error is reported and
662 false is returned, otherwise this routine will return true. */
663
664 static bool
665 check_specialization_scope (void)
666 {
667 tree scope = current_scope ();
668
669 /* [temp.expl.spec]
670
671 An explicit specialization shall be declared in the namespace of
672 which the template is a member, or, for member templates, in the
673 namespace of which the enclosing class or enclosing class
674 template is a member. An explicit specialization of a member
675 function, member class or static data member of a class template
676 shall be declared in the namespace of which the class template
677 is a member. */
678 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
679 {
680 error ("explicit specialization in non-namespace scope %qD", scope);
681 return false;
682 }
683
684 /* [temp.expl.spec]
685
686 In an explicit specialization declaration for a member of a class
687 template or a member template that appears in namespace scope,
688 the member template and some of its enclosing class templates may
689 remain unspecialized, except that the declaration shall not
690 explicitly specialize a class member template if its enclosing
691 class templates are not explicitly specialized as well. */
692 if (current_template_parms)
693 {
694 error ("enclosing class templates are not explicitly specialized");
695 return false;
696 }
697
698 return true;
699 }
700
701 /* We've just seen template <>. */
702
703 bool
704 begin_specialization (void)
705 {
706 begin_scope (sk_template_spec, NULL);
707 note_template_header (1);
708 return check_specialization_scope ();
709 }
710
711 /* Called at then end of processing a declaration preceded by
712 template<>. */
713
714 void
715 end_specialization (void)
716 {
717 finish_scope ();
718 reset_specialization ();
719 }
720
721 /* Any template <>'s that we have seen thus far are not referring to a
722 function specialization. */
723
724 void
725 reset_specialization (void)
726 {
727 processing_specialization = 0;
728 template_header_count = 0;
729 }
730
731 /* We've just seen a template header. If SPECIALIZATION is nonzero,
732 it was of the form template <>. */
733
734 static void
735 note_template_header (int specialization)
736 {
737 processing_specialization = specialization;
738 template_header_count++;
739 }
740
741 /* We're beginning an explicit instantiation. */
742
743 void
744 begin_explicit_instantiation (void)
745 {
746 gcc_assert (!processing_explicit_instantiation);
747 processing_explicit_instantiation = true;
748 }
749
750
751 void
752 end_explicit_instantiation (void)
753 {
754 gcc_assert (processing_explicit_instantiation);
755 processing_explicit_instantiation = false;
756 }
757
758 /* An explicit specialization or partial specialization of TMPL is being
759 declared. Check that the namespace in which the specialization is
760 occurring is permissible. Returns false iff it is invalid to
761 specialize TMPL in the current namespace. */
762
763 static bool
764 check_specialization_namespace (tree tmpl)
765 {
766 tree tpl_ns = decl_namespace_context (tmpl);
767
768 /* [tmpl.expl.spec]
769
770 An explicit specialization shall be declared in the namespace of
771 which the template is a member, or, for member templates, in the
772 namespace of which the enclosing class or enclosing class
773 template is a member. An explicit specialization of a member
774 function, member class or static data member of a class template
775 shall be declared in the namespace of which the class template is
776 a member. */
777 if (current_scope() != DECL_CONTEXT (tmpl)
778 && !at_namespace_scope_p ())
779 {
780 error ("specialization of %qD must appear at namespace scope", tmpl);
781 return false;
782 }
783 if (is_associated_namespace (current_namespace, tpl_ns))
784 /* Same or super-using namespace. */
785 return true;
786 else
787 {
788 permerror (input_location,
789 "specialization of %qD in different namespace", tmpl);
790 permerror (DECL_SOURCE_LOCATION (tmpl),
791 " from definition of %q#D", tmpl);
792 return false;
793 }
794 }
795
796 /* SPEC is an explicit instantiation. Check that it is valid to
797 perform this explicit instantiation in the current namespace. */
798
799 static void
800 check_explicit_instantiation_namespace (tree spec)
801 {
802 tree ns;
803
804 /* DR 275: An explicit instantiation shall appear in an enclosing
805 namespace of its template. */
806 ns = decl_namespace_context (spec);
807 if (!is_ancestor (current_namespace, ns))
808 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
809 "(which does not enclose namespace %qD)",
810 spec, current_namespace, ns);
811 }
812
813 // Returns the type of a template specialization only if that
814 // specialization needs to be defined. Otherwise (e.g., if the type has
815 // already been defined), the function returns NULL_TREE.
816 static tree
817 maybe_new_partial_specialization (tree type)
818 {
819 // An implicit instantiation of an incomplete type implies
820 // the definition of a new class template.
821 //
822 // template<typename T>
823 // struct S;
824 //
825 // template<typename T>
826 // struct S<T*>;
827 //
828 // Here, S<T*> is an implicit instantiation of S whose type
829 // is incomplete.
830 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
831 return type;
832
833 // It can also be the case that TYPE is a completed specialization.
834 // Continuing the previous example, suppose we also declare:
835 //
836 // template<typename T>
837 // requires Integral<T>
838 // struct S<T*>;
839 //
840 // Here, S<T*> refers to the specialization S<T*> defined
841 // above. However, we need to differentiate definitions because
842 // we intend to define a new partial specialization. In this case,
843 // we rely on the fact that the constraints are different for
844 // this declaration than that above.
845 //
846 // Note that we also get here for injected class names and
847 // late-parsed template definitions. We must ensure that we
848 // do not create new type declarations for those cases.
849 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
850 {
851 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
852 tree args = CLASSTYPE_TI_ARGS (type);
853
854 // If there are no template parameters, this cannot be a new
855 // partial template specializtion?
856 if (!current_template_parms)
857 return NULL_TREE;
858
859 // The injected-class-name is not a new partial specialization.
860 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
861 return NULL_TREE;
862
863 // If the constraints are not the same as those of the primary
864 // then, we can probably create a new specialization.
865 tree type_constr = current_template_constraints ();
866
867 if (type == TREE_TYPE (tmpl))
868 {
869 tree main_constr = get_constraints (tmpl);
870 if (equivalent_constraints (type_constr, main_constr))
871 return NULL_TREE;
872 }
873
874 // Also, if there's a pre-existing specialization with matching
875 // constraints, then this also isn't new.
876 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
877 while (specs)
878 {
879 tree spec_tmpl = TREE_VALUE (specs);
880 tree spec_args = TREE_PURPOSE (specs);
881 tree spec_constr = get_constraints (spec_tmpl);
882 if (comp_template_args (args, spec_args)
883 && equivalent_constraints (type_constr, spec_constr))
884 return NULL_TREE;
885 specs = TREE_CHAIN (specs);
886 }
887
888 // Create a new type node (and corresponding type decl)
889 // for the newly declared specialization.
890 tree t = make_class_type (TREE_CODE (type));
891 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
892 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
893 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
894
895 /* We only need a separate type node for storing the definition of this
896 partial specialization; uses of S<T*> are unconstrained, so all are
897 equivalent. So keep TYPE_CANONICAL the same. */
898 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
899
900 // Build the corresponding type decl.
901 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
902 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
903 DECL_SOURCE_LOCATION (d) = input_location;
904
905 return t;
906 }
907
908 return NULL_TREE;
909 }
910
911 /* The TYPE is being declared. If it is a template type, that means it
912 is a partial specialization. Do appropriate error-checking. */
913
914 tree
915 maybe_process_partial_specialization (tree type)
916 {
917 tree context;
918
919 if (type == error_mark_node)
920 return error_mark_node;
921
922 /* A lambda that appears in specialization context is not itself a
923 specialization. */
924 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
925 return type;
926
927 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
928 {
929 error ("name of class shadows template template parameter %qD",
930 TYPE_NAME (type));
931 return error_mark_node;
932 }
933
934 context = TYPE_CONTEXT (type);
935
936 if (TYPE_ALIAS_P (type))
937 {
938 if (TYPE_TEMPLATE_INFO (type)
939 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
940 error ("specialization of alias template %qD",
941 TYPE_TI_TEMPLATE (type));
942 else
943 error ("explicit specialization of non-template %qT", type);
944 return error_mark_node;
945 }
946 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
947 {
948 /* This is for ordinary explicit specialization and partial
949 specialization of a template class such as:
950
951 template <> class C<int>;
952
953 or:
954
955 template <class T> class C<T*>;
956
957 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
958
959 if (tree t = maybe_new_partial_specialization (type))
960 {
961 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
962 && !at_namespace_scope_p ())
963 return error_mark_node;
964 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
965 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
966 if (processing_template_decl)
967 {
968 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
969 if (decl == error_mark_node)
970 return error_mark_node;
971 return TREE_TYPE (decl);
972 }
973 }
974 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
975 error ("specialization of %qT after instantiation", type);
976 else if (errorcount && !processing_specialization
977 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
978 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
979 /* Trying to define a specialization either without a template<> header
980 or in an inappropriate place. We've already given an error, so just
981 bail now so we don't actually define the specialization. */
982 return error_mark_node;
983 }
984 else if (CLASS_TYPE_P (type)
985 && !CLASSTYPE_USE_TEMPLATE (type)
986 && CLASSTYPE_TEMPLATE_INFO (type)
987 && context && CLASS_TYPE_P (context)
988 && CLASSTYPE_TEMPLATE_INFO (context))
989 {
990 /* This is for an explicit specialization of member class
991 template according to [temp.expl.spec/18]:
992
993 template <> template <class U> class C<int>::D;
994
995 The context `C<int>' must be an implicit instantiation.
996 Otherwise this is just a member class template declared
997 earlier like:
998
999 template <> class C<int> { template <class U> class D; };
1000 template <> template <class U> class C<int>::D;
1001
1002 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1003 while in the second case, `C<int>::D' is a primary template
1004 and `C<T>::D' may not exist. */
1005
1006 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1007 && !COMPLETE_TYPE_P (type))
1008 {
1009 tree t;
1010 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1011
1012 if (current_namespace
1013 != decl_namespace_context (tmpl))
1014 {
1015 permerror (input_location,
1016 "specializing %q#T in different namespace", type);
1017 permerror (DECL_SOURCE_LOCATION (tmpl),
1018 " from definition of %q#D", tmpl);
1019 }
1020
1021 /* Check for invalid specialization after instantiation:
1022
1023 template <> template <> class C<int>::D<int>;
1024 template <> template <class U> class C<int>::D; */
1025
1026 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1027 t; t = TREE_CHAIN (t))
1028 {
1029 tree inst = TREE_VALUE (t);
1030 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1031 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1032 {
1033 /* We already have a full specialization of this partial
1034 instantiation, or a full specialization has been
1035 looked up but not instantiated. Reassign it to the
1036 new member specialization template. */
1037 spec_entry elt;
1038 spec_entry *entry;
1039
1040 elt.tmpl = most_general_template (tmpl);
1041 elt.args = CLASSTYPE_TI_ARGS (inst);
1042 elt.spec = inst;
1043
1044 type_specializations->remove_elt (&elt);
1045
1046 elt.tmpl = tmpl;
1047 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1048
1049 spec_entry **slot
1050 = type_specializations->find_slot (&elt, INSERT);
1051 entry = ggc_alloc<spec_entry> ();
1052 *entry = elt;
1053 *slot = entry;
1054 }
1055 else
1056 /* But if we've had an implicit instantiation, that's a
1057 problem ([temp.expl.spec]/6). */
1058 error ("specialization %qT after instantiation %qT",
1059 type, inst);
1060 }
1061
1062 /* Mark TYPE as a specialization. And as a result, we only
1063 have one level of template argument for the innermost
1064 class template. */
1065 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1066 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1067 CLASSTYPE_TI_ARGS (type)
1068 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1069 }
1070 }
1071 else if (processing_specialization)
1072 {
1073 /* Someday C++0x may allow for enum template specialization. */
1074 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1075 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1076 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1077 "of %qD not allowed by ISO C++", type);
1078 else
1079 {
1080 error ("explicit specialization of non-template %qT", type);
1081 return error_mark_node;
1082 }
1083 }
1084
1085 return type;
1086 }
1087
1088 /* Returns nonzero if we can optimize the retrieval of specializations
1089 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1090 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1091
1092 static inline bool
1093 optimize_specialization_lookup_p (tree tmpl)
1094 {
1095 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1096 && DECL_CLASS_SCOPE_P (tmpl)
1097 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1098 parameter. */
1099 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1100 /* The optimized lookup depends on the fact that the
1101 template arguments for the member function template apply
1102 purely to the containing class, which is not true if the
1103 containing class is an explicit or partial
1104 specialization. */
1105 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1106 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1107 && !DECL_CONV_FN_P (tmpl)
1108 /* It is possible to have a template that is not a member
1109 template and is not a member of a template class:
1110
1111 template <typename T>
1112 struct S { friend A::f(); };
1113
1114 Here, the friend function is a template, but the context does
1115 not have template information. The optimized lookup relies
1116 on having ARGS be the template arguments for both the class
1117 and the function template. */
1118 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1119 }
1120
1121 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1122 gone through coerce_template_parms by now. */
1123
1124 static void
1125 verify_unstripped_args (tree args)
1126 {
1127 ++processing_template_decl;
1128 if (!any_dependent_template_arguments_p (args))
1129 {
1130 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1131 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1132 {
1133 tree arg = TREE_VEC_ELT (inner, i);
1134 if (TREE_CODE (arg) == TEMPLATE_DECL)
1135 /* OK */;
1136 else if (TYPE_P (arg))
1137 gcc_assert (strip_typedefs (arg, NULL) == arg);
1138 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1139 /* Allow typedefs on the type of a non-type argument, since a
1140 parameter can have them. */;
1141 else
1142 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1143 }
1144 }
1145 --processing_template_decl;
1146 }
1147
1148 /* Retrieve the specialization (in the sense of [temp.spec] - a
1149 specialization is either an instantiation or an explicit
1150 specialization) of TMPL for the given template ARGS. If there is
1151 no such specialization, return NULL_TREE. The ARGS are a vector of
1152 arguments, or a vector of vectors of arguments, in the case of
1153 templates with more than one level of parameters.
1154
1155 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1156 then we search for a partial specialization matching ARGS. This
1157 parameter is ignored if TMPL is not a class template.
1158
1159 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1160 result is a NONTYPE_ARGUMENT_PACK. */
1161
1162 static tree
1163 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1164 {
1165 if (tmpl == NULL_TREE)
1166 return NULL_TREE;
1167
1168 if (args == error_mark_node)
1169 return NULL_TREE;
1170
1171 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1172 || TREE_CODE (tmpl) == FIELD_DECL);
1173
1174 /* There should be as many levels of arguments as there are
1175 levels of parameters. */
1176 gcc_assert (TMPL_ARGS_DEPTH (args)
1177 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1178 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1179 : template_class_depth (DECL_CONTEXT (tmpl))));
1180
1181 if (flag_checking)
1182 verify_unstripped_args (args);
1183
1184 if (optimize_specialization_lookup_p (tmpl))
1185 {
1186 tree class_template;
1187 tree class_specialization;
1188 vec<tree, va_gc> *methods;
1189 tree fns;
1190 int idx;
1191
1192 /* The template arguments actually apply to the containing
1193 class. Find the class specialization with those
1194 arguments. */
1195 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1196 class_specialization
1197 = retrieve_specialization (class_template, args, 0);
1198 if (!class_specialization)
1199 return NULL_TREE;
1200 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1201 for the specialization. */
1202 idx = class_method_index_for_fn (class_specialization, tmpl);
1203 if (idx == -1)
1204 return NULL_TREE;
1205 /* Iterate through the methods with the indicated name, looking
1206 for the one that has an instance of TMPL. */
1207 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1208 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1209 {
1210 tree fn = OVL_CURRENT (fns);
1211 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1212 /* using-declarations can add base methods to the method vec,
1213 and we don't want those here. */
1214 && DECL_CONTEXT (fn) == class_specialization)
1215 return fn;
1216 }
1217 return NULL_TREE;
1218 }
1219 else
1220 {
1221 spec_entry *found;
1222 spec_entry elt;
1223 hash_table<spec_hasher> *specializations;
1224
1225 elt.tmpl = tmpl;
1226 elt.args = args;
1227 elt.spec = NULL_TREE;
1228
1229 if (DECL_CLASS_TEMPLATE_P (tmpl))
1230 specializations = type_specializations;
1231 else
1232 specializations = decl_specializations;
1233
1234 if (hash == 0)
1235 hash = spec_hasher::hash (&elt);
1236 found = specializations->find_with_hash (&elt, hash);
1237 if (found)
1238 return found->spec;
1239 }
1240
1241 return NULL_TREE;
1242 }
1243
1244 /* Like retrieve_specialization, but for local declarations. */
1245
1246 tree
1247 retrieve_local_specialization (tree tmpl)
1248 {
1249 if (local_specializations == NULL)
1250 return NULL_TREE;
1251
1252 tree *slot = local_specializations->get (tmpl);
1253 return slot ? *slot : NULL_TREE;
1254 }
1255
1256 /* Returns nonzero iff DECL is a specialization of TMPL. */
1257
1258 int
1259 is_specialization_of (tree decl, tree tmpl)
1260 {
1261 tree t;
1262
1263 if (TREE_CODE (decl) == FUNCTION_DECL)
1264 {
1265 for (t = decl;
1266 t != NULL_TREE;
1267 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1268 if (t == tmpl)
1269 return 1;
1270 }
1271 else
1272 {
1273 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1274
1275 for (t = TREE_TYPE (decl);
1276 t != NULL_TREE;
1277 t = CLASSTYPE_USE_TEMPLATE (t)
1278 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1279 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1280 return 1;
1281 }
1282
1283 return 0;
1284 }
1285
1286 /* Returns nonzero iff DECL is a specialization of friend declaration
1287 FRIEND_DECL according to [temp.friend]. */
1288
1289 bool
1290 is_specialization_of_friend (tree decl, tree friend_decl)
1291 {
1292 bool need_template = true;
1293 int template_depth;
1294
1295 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1296 || TREE_CODE (decl) == TYPE_DECL);
1297
1298 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1299 of a template class, we want to check if DECL is a specialization
1300 if this. */
1301 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1302 && DECL_TEMPLATE_INFO (friend_decl)
1303 && !DECL_USE_TEMPLATE (friend_decl))
1304 {
1305 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1306 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1307 need_template = false;
1308 }
1309 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1310 && !PRIMARY_TEMPLATE_P (friend_decl))
1311 need_template = false;
1312
1313 /* There is nothing to do if this is not a template friend. */
1314 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1315 return false;
1316
1317 if (is_specialization_of (decl, friend_decl))
1318 return true;
1319
1320 /* [temp.friend/6]
1321 A member of a class template may be declared to be a friend of a
1322 non-template class. In this case, the corresponding member of
1323 every specialization of the class template is a friend of the
1324 class granting friendship.
1325
1326 For example, given a template friend declaration
1327
1328 template <class T> friend void A<T>::f();
1329
1330 the member function below is considered a friend
1331
1332 template <> struct A<int> {
1333 void f();
1334 };
1335
1336 For this type of template friend, TEMPLATE_DEPTH below will be
1337 nonzero. To determine if DECL is a friend of FRIEND, we first
1338 check if the enclosing class is a specialization of another. */
1339
1340 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1341 if (template_depth
1342 && DECL_CLASS_SCOPE_P (decl)
1343 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1344 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1345 {
1346 /* Next, we check the members themselves. In order to handle
1347 a few tricky cases, such as when FRIEND_DECL's are
1348
1349 template <class T> friend void A<T>::g(T t);
1350 template <class T> template <T t> friend void A<T>::h();
1351
1352 and DECL's are
1353
1354 void A<int>::g(int);
1355 template <int> void A<int>::h();
1356
1357 we need to figure out ARGS, the template arguments from
1358 the context of DECL. This is required for template substitution
1359 of `T' in the function parameter of `g' and template parameter
1360 of `h' in the above examples. Here ARGS corresponds to `int'. */
1361
1362 tree context = DECL_CONTEXT (decl);
1363 tree args = NULL_TREE;
1364 int current_depth = 0;
1365
1366 while (current_depth < template_depth)
1367 {
1368 if (CLASSTYPE_TEMPLATE_INFO (context))
1369 {
1370 if (current_depth == 0)
1371 args = TYPE_TI_ARGS (context);
1372 else
1373 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1374 current_depth++;
1375 }
1376 context = TYPE_CONTEXT (context);
1377 }
1378
1379 if (TREE_CODE (decl) == FUNCTION_DECL)
1380 {
1381 bool is_template;
1382 tree friend_type;
1383 tree decl_type;
1384 tree friend_args_type;
1385 tree decl_args_type;
1386
1387 /* Make sure that both DECL and FRIEND_DECL are templates or
1388 non-templates. */
1389 is_template = DECL_TEMPLATE_INFO (decl)
1390 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1391 if (need_template ^ is_template)
1392 return false;
1393 else if (is_template)
1394 {
1395 /* If both are templates, check template parameter list. */
1396 tree friend_parms
1397 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1398 args, tf_none);
1399 if (!comp_template_parms
1400 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1401 friend_parms))
1402 return false;
1403
1404 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1405 }
1406 else
1407 decl_type = TREE_TYPE (decl);
1408
1409 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1410 tf_none, NULL_TREE);
1411 if (friend_type == error_mark_node)
1412 return false;
1413
1414 /* Check if return types match. */
1415 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1416 return false;
1417
1418 /* Check if function parameter types match, ignoring the
1419 `this' parameter. */
1420 friend_args_type = TYPE_ARG_TYPES (friend_type);
1421 decl_args_type = TYPE_ARG_TYPES (decl_type);
1422 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1423 friend_args_type = TREE_CHAIN (friend_args_type);
1424 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1425 decl_args_type = TREE_CHAIN (decl_args_type);
1426
1427 return compparms (decl_args_type, friend_args_type);
1428 }
1429 else
1430 {
1431 /* DECL is a TYPE_DECL */
1432 bool is_template;
1433 tree decl_type = TREE_TYPE (decl);
1434
1435 /* Make sure that both DECL and FRIEND_DECL are templates or
1436 non-templates. */
1437 is_template
1438 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1439 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1440
1441 if (need_template ^ is_template)
1442 return false;
1443 else if (is_template)
1444 {
1445 tree friend_parms;
1446 /* If both are templates, check the name of the two
1447 TEMPLATE_DECL's first because is_friend didn't. */
1448 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1449 != DECL_NAME (friend_decl))
1450 return false;
1451
1452 /* Now check template parameter list. */
1453 friend_parms
1454 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1455 args, tf_none);
1456 return comp_template_parms
1457 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1458 friend_parms);
1459 }
1460 else
1461 return (DECL_NAME (decl)
1462 == DECL_NAME (friend_decl));
1463 }
1464 }
1465 return false;
1466 }
1467
1468 /* Register the specialization SPEC as a specialization of TMPL with
1469 the indicated ARGS. IS_FRIEND indicates whether the specialization
1470 is actually just a friend declaration. Returns SPEC, or an
1471 equivalent prior declaration, if available.
1472
1473 We also store instantiations of field packs in the hash table, even
1474 though they are not themselves templates, to make lookup easier. */
1475
1476 static tree
1477 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1478 hashval_t hash)
1479 {
1480 tree fn;
1481 spec_entry **slot = NULL;
1482 spec_entry elt;
1483
1484 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1485 || (TREE_CODE (tmpl) == FIELD_DECL
1486 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1487
1488 if (TREE_CODE (spec) == FUNCTION_DECL
1489 && uses_template_parms (DECL_TI_ARGS (spec)))
1490 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1491 register it; we want the corresponding TEMPLATE_DECL instead.
1492 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1493 the more obvious `uses_template_parms (spec)' to avoid problems
1494 with default function arguments. In particular, given
1495 something like this:
1496
1497 template <class T> void f(T t1, T t = T())
1498
1499 the default argument expression is not substituted for in an
1500 instantiation unless and until it is actually needed. */
1501 return spec;
1502
1503 if (optimize_specialization_lookup_p (tmpl))
1504 /* We don't put these specializations in the hash table, but we might
1505 want to give an error about a mismatch. */
1506 fn = retrieve_specialization (tmpl, args, 0);
1507 else
1508 {
1509 elt.tmpl = tmpl;
1510 elt.args = args;
1511 elt.spec = spec;
1512
1513 if (hash == 0)
1514 hash = spec_hasher::hash (&elt);
1515
1516 slot =
1517 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1518 if (*slot)
1519 fn = ((spec_entry *) *slot)->spec;
1520 else
1521 fn = NULL_TREE;
1522 }
1523
1524 /* We can sometimes try to re-register a specialization that we've
1525 already got. In particular, regenerate_decl_from_template calls
1526 duplicate_decls which will update the specialization list. But,
1527 we'll still get called again here anyhow. It's more convenient
1528 to simply allow this than to try to prevent it. */
1529 if (fn == spec)
1530 return spec;
1531 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1532 {
1533 if (DECL_TEMPLATE_INSTANTIATION (fn))
1534 {
1535 if (DECL_ODR_USED (fn)
1536 || DECL_EXPLICIT_INSTANTIATION (fn))
1537 {
1538 error ("specialization of %qD after instantiation",
1539 fn);
1540 return error_mark_node;
1541 }
1542 else
1543 {
1544 tree clone;
1545 /* This situation should occur only if the first
1546 specialization is an implicit instantiation, the
1547 second is an explicit specialization, and the
1548 implicit instantiation has not yet been used. That
1549 situation can occur if we have implicitly
1550 instantiated a member function and then specialized
1551 it later.
1552
1553 We can also wind up here if a friend declaration that
1554 looked like an instantiation turns out to be a
1555 specialization:
1556
1557 template <class T> void foo(T);
1558 class S { friend void foo<>(int) };
1559 template <> void foo(int);
1560
1561 We transform the existing DECL in place so that any
1562 pointers to it become pointers to the updated
1563 declaration.
1564
1565 If there was a definition for the template, but not
1566 for the specialization, we want this to look as if
1567 there were no definition, and vice versa. */
1568 DECL_INITIAL (fn) = NULL_TREE;
1569 duplicate_decls (spec, fn, is_friend);
1570 /* The call to duplicate_decls will have applied
1571 [temp.expl.spec]:
1572
1573 An explicit specialization of a function template
1574 is inline only if it is explicitly declared to be,
1575 and independently of whether its function template
1576 is.
1577
1578 to the primary function; now copy the inline bits to
1579 the various clones. */
1580 FOR_EACH_CLONE (clone, fn)
1581 {
1582 DECL_DECLARED_INLINE_P (clone)
1583 = DECL_DECLARED_INLINE_P (fn);
1584 DECL_SOURCE_LOCATION (clone)
1585 = DECL_SOURCE_LOCATION (fn);
1586 DECL_DELETED_FN (clone)
1587 = DECL_DELETED_FN (fn);
1588 }
1589 check_specialization_namespace (tmpl);
1590
1591 return fn;
1592 }
1593 }
1594 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1595 {
1596 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1597 /* Dup decl failed, but this is a new definition. Set the
1598 line number so any errors match this new
1599 definition. */
1600 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1601
1602 return fn;
1603 }
1604 }
1605 else if (fn)
1606 return duplicate_decls (spec, fn, is_friend);
1607
1608 /* A specialization must be declared in the same namespace as the
1609 template it is specializing. */
1610 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1611 && !check_specialization_namespace (tmpl))
1612 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1613
1614 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1615 {
1616 spec_entry *entry = ggc_alloc<spec_entry> ();
1617 gcc_assert (tmpl && args && spec);
1618 *entry = elt;
1619 *slot = entry;
1620 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1621 && PRIMARY_TEMPLATE_P (tmpl)
1622 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1623 || variable_template_p (tmpl))
1624 /* If TMPL is a forward declaration of a template function, keep a list
1625 of all specializations in case we need to reassign them to a friend
1626 template later in tsubst_friend_function.
1627
1628 Also keep a list of all variable template instantiations so that
1629 process_partial_specialization can check whether a later partial
1630 specialization would have used it. */
1631 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1632 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1633 }
1634
1635 return spec;
1636 }
1637
1638 /* Returns true iff two spec_entry nodes are equivalent. */
1639
1640 int comparing_specializations;
1641
1642 bool
1643 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1644 {
1645 int equal;
1646
1647 ++comparing_specializations;
1648 equal = (e1->tmpl == e2->tmpl
1649 && comp_template_args (e1->args, e2->args));
1650 if (equal && flag_concepts
1651 /* tmpl could be a FIELD_DECL for a capture pack. */
1652 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1653 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1654 && uses_template_parms (e1->args))
1655 {
1656 /* Partial specializations of a variable template can be distinguished by
1657 constraints. */
1658 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1659 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1660 equal = equivalent_constraints (c1, c2);
1661 }
1662 --comparing_specializations;
1663
1664 return equal;
1665 }
1666
1667 /* Returns a hash for a template TMPL and template arguments ARGS. */
1668
1669 static hashval_t
1670 hash_tmpl_and_args (tree tmpl, tree args)
1671 {
1672 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1673 return iterative_hash_template_arg (args, val);
1674 }
1675
1676 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1677 ignoring SPEC. */
1678
1679 hashval_t
1680 spec_hasher::hash (spec_entry *e)
1681 {
1682 return hash_tmpl_and_args (e->tmpl, e->args);
1683 }
1684
1685 /* Recursively calculate a hash value for a template argument ARG, for use
1686 in the hash tables of template specializations. */
1687
1688 hashval_t
1689 iterative_hash_template_arg (tree arg, hashval_t val)
1690 {
1691 unsigned HOST_WIDE_INT i;
1692 enum tree_code code;
1693 char tclass;
1694
1695 if (arg == NULL_TREE)
1696 return iterative_hash_object (arg, val);
1697
1698 if (!TYPE_P (arg))
1699 STRIP_NOPS (arg);
1700
1701 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1702 /* We can get one of these when re-hashing a previous entry in the middle
1703 of substituting into a pack expansion. Just look through it. */
1704 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1705
1706 code = TREE_CODE (arg);
1707 tclass = TREE_CODE_CLASS (code);
1708
1709 val = iterative_hash_object (code, val);
1710
1711 switch (code)
1712 {
1713 case ERROR_MARK:
1714 return val;
1715
1716 case IDENTIFIER_NODE:
1717 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1718
1719 case TREE_VEC:
1720 {
1721 int i, len = TREE_VEC_LENGTH (arg);
1722 for (i = 0; i < len; ++i)
1723 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1724 return val;
1725 }
1726
1727 case TYPE_PACK_EXPANSION:
1728 case EXPR_PACK_EXPANSION:
1729 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1730 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1731
1732 case TYPE_ARGUMENT_PACK:
1733 case NONTYPE_ARGUMENT_PACK:
1734 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1735
1736 case TREE_LIST:
1737 for (; arg; arg = TREE_CHAIN (arg))
1738 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1739 return val;
1740
1741 case OVERLOAD:
1742 for (; arg; arg = OVL_NEXT (arg))
1743 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1744 return val;
1745
1746 case CONSTRUCTOR:
1747 {
1748 tree field, value;
1749 iterative_hash_template_arg (TREE_TYPE (arg), val);
1750 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1751 {
1752 val = iterative_hash_template_arg (field, val);
1753 val = iterative_hash_template_arg (value, val);
1754 }
1755 return val;
1756 }
1757
1758 case PARM_DECL:
1759 if (!DECL_ARTIFICIAL (arg))
1760 {
1761 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1762 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1763 }
1764 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1765
1766 case TARGET_EXPR:
1767 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1768
1769 case PTRMEM_CST:
1770 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1771 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1772
1773 case TEMPLATE_PARM_INDEX:
1774 val = iterative_hash_template_arg
1775 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1776 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1777 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1778
1779 case TRAIT_EXPR:
1780 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1781 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1782 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1783
1784 case BASELINK:
1785 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1786 val);
1787 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1788 val);
1789
1790 case MODOP_EXPR:
1791 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1792 code = TREE_CODE (TREE_OPERAND (arg, 1));
1793 val = iterative_hash_object (code, val);
1794 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1795
1796 case LAMBDA_EXPR:
1797 /* A lambda can't appear in a template arg, but don't crash on
1798 erroneous input. */
1799 gcc_assert (seen_error ());
1800 return val;
1801
1802 case CAST_EXPR:
1803 case IMPLICIT_CONV_EXPR:
1804 case STATIC_CAST_EXPR:
1805 case REINTERPRET_CAST_EXPR:
1806 case CONST_CAST_EXPR:
1807 case DYNAMIC_CAST_EXPR:
1808 case NEW_EXPR:
1809 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1810 /* Now hash operands as usual. */
1811 break;
1812
1813 default:
1814 break;
1815 }
1816
1817 switch (tclass)
1818 {
1819 case tcc_type:
1820 if (alias_template_specialization_p (arg))
1821 {
1822 // We want an alias specialization that survived strip_typedefs
1823 // to hash differently from its TYPE_CANONICAL, to avoid hash
1824 // collisions that compare as different in template_args_equal.
1825 // These could be dependent specializations that strip_typedefs
1826 // left alone, or untouched specializations because
1827 // coerce_template_parms returns the unconverted template
1828 // arguments if it sees incomplete argument packs.
1829 tree ti = TYPE_TEMPLATE_INFO (arg);
1830 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1831 }
1832 if (TYPE_CANONICAL (arg))
1833 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1834 val);
1835 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1836 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1837 /* Otherwise just compare the types during lookup. */
1838 return val;
1839
1840 case tcc_declaration:
1841 case tcc_constant:
1842 return iterative_hash_expr (arg, val);
1843
1844 default:
1845 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1846 {
1847 unsigned n = cp_tree_operand_length (arg);
1848 for (i = 0; i < n; ++i)
1849 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1850 return val;
1851 }
1852 }
1853 gcc_unreachable ();
1854 return 0;
1855 }
1856
1857 /* Unregister the specialization SPEC as a specialization of TMPL.
1858 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1859 if the SPEC was listed as a specialization of TMPL.
1860
1861 Note that SPEC has been ggc_freed, so we can't look inside it. */
1862
1863 bool
1864 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1865 {
1866 spec_entry *entry;
1867 spec_entry elt;
1868
1869 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1870 elt.args = TI_ARGS (tinfo);
1871 elt.spec = NULL_TREE;
1872
1873 entry = decl_specializations->find (&elt);
1874 if (entry != NULL)
1875 {
1876 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1877 gcc_assert (new_spec != NULL_TREE);
1878 entry->spec = new_spec;
1879 return 1;
1880 }
1881
1882 return 0;
1883 }
1884
1885 /* Like register_specialization, but for local declarations. We are
1886 registering SPEC, an instantiation of TMPL. */
1887
1888 void
1889 register_local_specialization (tree spec, tree tmpl)
1890 {
1891 local_specializations->put (tmpl, spec);
1892 }
1893
1894 /* TYPE is a class type. Returns true if TYPE is an explicitly
1895 specialized class. */
1896
1897 bool
1898 explicit_class_specialization_p (tree type)
1899 {
1900 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1901 return false;
1902 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1903 }
1904
1905 /* Print the list of functions at FNS, going through all the overloads
1906 for each element of the list. Alternatively, FNS can not be a
1907 TREE_LIST, in which case it will be printed together with all the
1908 overloads.
1909
1910 MORE and *STR should respectively be FALSE and NULL when the function
1911 is called from the outside. They are used internally on recursive
1912 calls. print_candidates manages the two parameters and leaves NULL
1913 in *STR when it ends. */
1914
1915 static void
1916 print_candidates_1 (tree fns, bool more, const char **str)
1917 {
1918 tree fn, fn2;
1919 char *spaces = NULL;
1920
1921 for (fn = fns; fn; fn = OVL_NEXT (fn))
1922 if (TREE_CODE (fn) == TREE_LIST)
1923 {
1924 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1925 print_candidates_1 (TREE_VALUE (fn2),
1926 TREE_CHAIN (fn2) || more, str);
1927 }
1928 else
1929 {
1930 tree cand = OVL_CURRENT (fn);
1931 if (!*str)
1932 {
1933 /* Pick the prefix string. */
1934 if (!more && !OVL_NEXT (fns))
1935 {
1936 inform (DECL_SOURCE_LOCATION (cand),
1937 "candidate is: %#D", cand);
1938 continue;
1939 }
1940
1941 *str = _("candidates are:");
1942 spaces = get_spaces (*str);
1943 }
1944 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1945 *str = spaces ? spaces : *str;
1946 }
1947
1948 if (!more)
1949 {
1950 free (spaces);
1951 *str = NULL;
1952 }
1953 }
1954
1955 /* Print the list of candidate FNS in an error message. FNS can also
1956 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1957
1958 void
1959 print_candidates (tree fns)
1960 {
1961 const char *str = NULL;
1962 print_candidates_1 (fns, false, &str);
1963 gcc_assert (str == NULL);
1964 }
1965
1966 /* Get a (possibly) constrained template declaration for the
1967 purpose of ordering candidates. */
1968 static tree
1969 get_template_for_ordering (tree list)
1970 {
1971 gcc_assert (TREE_CODE (list) == TREE_LIST);
1972 tree f = TREE_VALUE (list);
1973 if (tree ti = DECL_TEMPLATE_INFO (f))
1974 return TI_TEMPLATE (ti);
1975 return f;
1976 }
1977
1978 /* Among candidates having the same signature, return the
1979 most constrained or NULL_TREE if there is no best candidate.
1980 If the signatures of candidates vary (e.g., template
1981 specialization vs. member function), then there can be no
1982 most constrained.
1983
1984 Note that we don't compare constraints on the functions
1985 themselves, but rather those of their templates. */
1986 static tree
1987 most_constrained_function (tree candidates)
1988 {
1989 // Try to find the best candidate in a first pass.
1990 tree champ = candidates;
1991 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1992 {
1993 int winner = more_constrained (get_template_for_ordering (champ),
1994 get_template_for_ordering (c));
1995 if (winner == -1)
1996 champ = c; // The candidate is more constrained
1997 else if (winner == 0)
1998 return NULL_TREE; // Neither is more constrained
1999 }
2000
2001 // Verify that the champ is better than previous candidates.
2002 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2003 if (!more_constrained (get_template_for_ordering (champ),
2004 get_template_for_ordering (c)))
2005 return NULL_TREE;
2006 }
2007
2008 return champ;
2009 }
2010
2011
2012 /* Returns the template (one of the functions given by TEMPLATE_ID)
2013 which can be specialized to match the indicated DECL with the
2014 explicit template args given in TEMPLATE_ID. The DECL may be
2015 NULL_TREE if none is available. In that case, the functions in
2016 TEMPLATE_ID are non-members.
2017
2018 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2019 specialization of a member template.
2020
2021 The TEMPLATE_COUNT is the number of references to qualifying
2022 template classes that appeared in the name of the function. See
2023 check_explicit_specialization for a more accurate description.
2024
2025 TSK indicates what kind of template declaration (if any) is being
2026 declared. TSK_TEMPLATE indicates that the declaration given by
2027 DECL, though a FUNCTION_DECL, has template parameters, and is
2028 therefore a template function.
2029
2030 The template args (those explicitly specified and those deduced)
2031 are output in a newly created vector *TARGS_OUT.
2032
2033 If it is impossible to determine the result, an error message is
2034 issued. The error_mark_node is returned to indicate failure. */
2035
2036 static tree
2037 determine_specialization (tree template_id,
2038 tree decl,
2039 tree* targs_out,
2040 int need_member_template,
2041 int template_count,
2042 tmpl_spec_kind tsk)
2043 {
2044 tree fns;
2045 tree targs;
2046 tree explicit_targs;
2047 tree candidates = NULL_TREE;
2048
2049 /* A TREE_LIST of templates of which DECL may be a specialization.
2050 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2051 corresponding TREE_PURPOSE is the set of template arguments that,
2052 when used to instantiate the template, would produce a function
2053 with the signature of DECL. */
2054 tree templates = NULL_TREE;
2055 int header_count;
2056 cp_binding_level *b;
2057
2058 *targs_out = NULL_TREE;
2059
2060 if (template_id == error_mark_node || decl == error_mark_node)
2061 return error_mark_node;
2062
2063 /* We shouldn't be specializing a member template of an
2064 unspecialized class template; we already gave an error in
2065 check_specialization_scope, now avoid crashing. */
2066 if (template_count && DECL_CLASS_SCOPE_P (decl)
2067 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2068 {
2069 gcc_assert (errorcount);
2070 return error_mark_node;
2071 }
2072
2073 fns = TREE_OPERAND (template_id, 0);
2074 explicit_targs = TREE_OPERAND (template_id, 1);
2075
2076 if (fns == error_mark_node)
2077 return error_mark_node;
2078
2079 /* Check for baselinks. */
2080 if (BASELINK_P (fns))
2081 fns = BASELINK_FUNCTIONS (fns);
2082
2083 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2084 {
2085 error ("%qD is not a function template", fns);
2086 return error_mark_node;
2087 }
2088 else if (VAR_P (decl) && !variable_template_p (fns))
2089 {
2090 error ("%qD is not a variable template", fns);
2091 return error_mark_node;
2092 }
2093
2094 /* Count the number of template headers specified for this
2095 specialization. */
2096 header_count = 0;
2097 for (b = current_binding_level;
2098 b->kind == sk_template_parms;
2099 b = b->level_chain)
2100 ++header_count;
2101
2102 tree orig_fns = fns;
2103
2104 if (variable_template_p (fns))
2105 {
2106 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2107 targs = coerce_template_parms (parms, explicit_targs, fns,
2108 tf_warning_or_error,
2109 /*req_all*/true, /*use_defarg*/true);
2110 if (targs != error_mark_node)
2111 templates = tree_cons (targs, fns, templates);
2112 }
2113 else for (; fns; fns = OVL_NEXT (fns))
2114 {
2115 tree fn = OVL_CURRENT (fns);
2116
2117 if (TREE_CODE (fn) == TEMPLATE_DECL)
2118 {
2119 tree decl_arg_types;
2120 tree fn_arg_types;
2121 tree insttype;
2122
2123 /* In case of explicit specialization, we need to check if
2124 the number of template headers appearing in the specialization
2125 is correct. This is usually done in check_explicit_specialization,
2126 but the check done there cannot be exhaustive when specializing
2127 member functions. Consider the following code:
2128
2129 template <> void A<int>::f(int);
2130 template <> template <> void A<int>::f(int);
2131
2132 Assuming that A<int> is not itself an explicit specialization
2133 already, the first line specializes "f" which is a non-template
2134 member function, whilst the second line specializes "f" which
2135 is a template member function. So both lines are syntactically
2136 correct, and check_explicit_specialization does not reject
2137 them.
2138
2139 Here, we can do better, as we are matching the specialization
2140 against the declarations. We count the number of template
2141 headers, and we check if they match TEMPLATE_COUNT + 1
2142 (TEMPLATE_COUNT is the number of qualifying template classes,
2143 plus there must be another header for the member template
2144 itself).
2145
2146 Notice that if header_count is zero, this is not a
2147 specialization but rather a template instantiation, so there
2148 is no check we can perform here. */
2149 if (header_count && header_count != template_count + 1)
2150 continue;
2151
2152 /* Check that the number of template arguments at the
2153 innermost level for DECL is the same as for FN. */
2154 if (current_binding_level->kind == sk_template_parms
2155 && !current_binding_level->explicit_spec_p
2156 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2157 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2158 (current_template_parms))))
2159 continue;
2160
2161 /* DECL might be a specialization of FN. */
2162 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2163 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2164
2165 /* For a non-static member function, we need to make sure
2166 that the const qualification is the same. Since
2167 get_bindings does not try to merge the "this" parameter,
2168 we must do the comparison explicitly. */
2169 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2170 && !same_type_p (TREE_VALUE (fn_arg_types),
2171 TREE_VALUE (decl_arg_types)))
2172 continue;
2173
2174 /* Skip the "this" parameter and, for constructors of
2175 classes with virtual bases, the VTT parameter. A
2176 full specialization of a constructor will have a VTT
2177 parameter, but a template never will. */
2178 decl_arg_types
2179 = skip_artificial_parms_for (decl, decl_arg_types);
2180 fn_arg_types
2181 = skip_artificial_parms_for (fn, fn_arg_types);
2182
2183 /* Function templates cannot be specializations; there are
2184 no partial specializations of functions. Therefore, if
2185 the type of DECL does not match FN, there is no
2186 match.
2187
2188 Note that it should never be the case that we have both
2189 candidates added here, and for regular member functions
2190 below. */
2191 if (tsk == tsk_template)
2192 {
2193 if (compparms (fn_arg_types, decl_arg_types))
2194 candidates = tree_cons (NULL_TREE, fn, candidates);
2195 continue;
2196 }
2197
2198 /* See whether this function might be a specialization of this
2199 template. Suppress access control because we might be trying
2200 to make this specialization a friend, and we have already done
2201 access control for the declaration of the specialization. */
2202 push_deferring_access_checks (dk_no_check);
2203 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2204 pop_deferring_access_checks ();
2205
2206 if (!targs)
2207 /* We cannot deduce template arguments that when used to
2208 specialize TMPL will produce DECL. */
2209 continue;
2210
2211 /* Remove, from the set of candidates, all those functions
2212 whose constraints are not satisfied. */
2213 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2214 continue;
2215
2216 // Then, try to form the new function type.
2217 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2218 if (insttype == error_mark_node)
2219 continue;
2220 fn_arg_types
2221 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2222 if (!compparms (fn_arg_types, decl_arg_types))
2223 continue;
2224
2225 /* Save this template, and the arguments deduced. */
2226 templates = tree_cons (targs, fn, templates);
2227 }
2228 else if (need_member_template)
2229 /* FN is an ordinary member function, and we need a
2230 specialization of a member template. */
2231 ;
2232 else if (TREE_CODE (fn) != FUNCTION_DECL)
2233 /* We can get IDENTIFIER_NODEs here in certain erroneous
2234 cases. */
2235 ;
2236 else if (!DECL_FUNCTION_MEMBER_P (fn))
2237 /* This is just an ordinary non-member function. Nothing can
2238 be a specialization of that. */
2239 ;
2240 else if (DECL_ARTIFICIAL (fn))
2241 /* Cannot specialize functions that are created implicitly. */
2242 ;
2243 else
2244 {
2245 tree decl_arg_types;
2246
2247 /* This is an ordinary member function. However, since
2248 we're here, we can assume its enclosing class is a
2249 template class. For example,
2250
2251 template <typename T> struct S { void f(); };
2252 template <> void S<int>::f() {}
2253
2254 Here, S<int>::f is a non-template, but S<int> is a
2255 template class. If FN has the same type as DECL, we
2256 might be in business. */
2257
2258 if (!DECL_TEMPLATE_INFO (fn))
2259 /* Its enclosing class is an explicit specialization
2260 of a template class. This is not a candidate. */
2261 continue;
2262
2263 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2264 TREE_TYPE (TREE_TYPE (fn))))
2265 /* The return types differ. */
2266 continue;
2267
2268 /* Adjust the type of DECL in case FN is a static member. */
2269 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2270 if (DECL_STATIC_FUNCTION_P (fn)
2271 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2272 decl_arg_types = TREE_CHAIN (decl_arg_types);
2273
2274 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2275 decl_arg_types))
2276 continue;
2277
2278 // If the deduced arguments do not satisfy the constraints,
2279 // this is not a candidate.
2280 if (flag_concepts && !constraints_satisfied_p (fn))
2281 continue;
2282
2283 // Add the candidate.
2284 candidates = tree_cons (NULL_TREE, fn, candidates);
2285 }
2286 }
2287
2288 if (templates && TREE_CHAIN (templates))
2289 {
2290 /* We have:
2291
2292 [temp.expl.spec]
2293
2294 It is possible for a specialization with a given function
2295 signature to be instantiated from more than one function
2296 template. In such cases, explicit specification of the
2297 template arguments must be used to uniquely identify the
2298 function template specialization being specialized.
2299
2300 Note that here, there's no suggestion that we're supposed to
2301 determine which of the candidate templates is most
2302 specialized. However, we, also have:
2303
2304 [temp.func.order]
2305
2306 Partial ordering of overloaded function template
2307 declarations is used in the following contexts to select
2308 the function template to which a function template
2309 specialization refers:
2310
2311 -- when an explicit specialization refers to a function
2312 template.
2313
2314 So, we do use the partial ordering rules, at least for now.
2315 This extension can only serve to make invalid programs valid,
2316 so it's safe. And, there is strong anecdotal evidence that
2317 the committee intended the partial ordering rules to apply;
2318 the EDG front end has that behavior, and John Spicer claims
2319 that the committee simply forgot to delete the wording in
2320 [temp.expl.spec]. */
2321 tree tmpl = most_specialized_instantiation (templates);
2322 if (tmpl != error_mark_node)
2323 {
2324 templates = tmpl;
2325 TREE_CHAIN (templates) = NULL_TREE;
2326 }
2327 }
2328
2329 // Concepts allows multiple declarations of member functions
2330 // with the same signature. Like above, we need to rely on
2331 // on the partial ordering of those candidates to determine which
2332 // is the best.
2333 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2334 {
2335 if (tree cand = most_constrained_function (candidates))
2336 {
2337 candidates = cand;
2338 TREE_CHAIN (cand) = NULL_TREE;
2339 }
2340 }
2341
2342 if (templates == NULL_TREE && candidates == NULL_TREE)
2343 {
2344 error ("template-id %qD for %q+D does not match any template "
2345 "declaration", template_id, decl);
2346 if (header_count && header_count != template_count + 1)
2347 inform (input_location, "saw %d %<template<>%>, need %d for "
2348 "specializing a member function template",
2349 header_count, template_count + 1);
2350 else
2351 print_candidates (orig_fns);
2352 return error_mark_node;
2353 }
2354 else if ((templates && TREE_CHAIN (templates))
2355 || (candidates && TREE_CHAIN (candidates))
2356 || (templates && candidates))
2357 {
2358 error ("ambiguous template specialization %qD for %q+D",
2359 template_id, decl);
2360 candidates = chainon (candidates, templates);
2361 print_candidates (candidates);
2362 return error_mark_node;
2363 }
2364
2365 /* We have one, and exactly one, match. */
2366 if (candidates)
2367 {
2368 tree fn = TREE_VALUE (candidates);
2369 *targs_out = copy_node (DECL_TI_ARGS (fn));
2370
2371 // Propagate the candidate's constraints to the declaration.
2372 set_constraints (decl, get_constraints (fn));
2373
2374 /* DECL is a re-declaration or partial instantiation of a template
2375 function. */
2376 if (TREE_CODE (fn) == TEMPLATE_DECL)
2377 return fn;
2378 /* It was a specialization of an ordinary member function in a
2379 template class. */
2380 return DECL_TI_TEMPLATE (fn);
2381 }
2382
2383 /* It was a specialization of a template. */
2384 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2385 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2386 {
2387 *targs_out = copy_node (targs);
2388 SET_TMPL_ARGS_LEVEL (*targs_out,
2389 TMPL_ARGS_DEPTH (*targs_out),
2390 TREE_PURPOSE (templates));
2391 }
2392 else
2393 *targs_out = TREE_PURPOSE (templates);
2394 return TREE_VALUE (templates);
2395 }
2396
2397 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2398 but with the default argument values filled in from those in the
2399 TMPL_TYPES. */
2400
2401 static tree
2402 copy_default_args_to_explicit_spec_1 (tree spec_types,
2403 tree tmpl_types)
2404 {
2405 tree new_spec_types;
2406
2407 if (!spec_types)
2408 return NULL_TREE;
2409
2410 if (spec_types == void_list_node)
2411 return void_list_node;
2412
2413 /* Substitute into the rest of the list. */
2414 new_spec_types =
2415 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2416 TREE_CHAIN (tmpl_types));
2417
2418 /* Add the default argument for this parameter. */
2419 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2420 TREE_VALUE (spec_types),
2421 new_spec_types);
2422 }
2423
2424 /* DECL is an explicit specialization. Replicate default arguments
2425 from the template it specializes. (That way, code like:
2426
2427 template <class T> void f(T = 3);
2428 template <> void f(double);
2429 void g () { f (); }
2430
2431 works, as required.) An alternative approach would be to look up
2432 the correct default arguments at the call-site, but this approach
2433 is consistent with how implicit instantiations are handled. */
2434
2435 static void
2436 copy_default_args_to_explicit_spec (tree decl)
2437 {
2438 tree tmpl;
2439 tree spec_types;
2440 tree tmpl_types;
2441 tree new_spec_types;
2442 tree old_type;
2443 tree new_type;
2444 tree t;
2445 tree object_type = NULL_TREE;
2446 tree in_charge = NULL_TREE;
2447 tree vtt = NULL_TREE;
2448
2449 /* See if there's anything we need to do. */
2450 tmpl = DECL_TI_TEMPLATE (decl);
2451 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2452 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2453 if (TREE_PURPOSE (t))
2454 break;
2455 if (!t)
2456 return;
2457
2458 old_type = TREE_TYPE (decl);
2459 spec_types = TYPE_ARG_TYPES (old_type);
2460
2461 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2462 {
2463 /* Remove the this pointer, but remember the object's type for
2464 CV quals. */
2465 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2466 spec_types = TREE_CHAIN (spec_types);
2467 tmpl_types = TREE_CHAIN (tmpl_types);
2468
2469 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2470 {
2471 /* DECL may contain more parameters than TMPL due to the extra
2472 in-charge parameter in constructors and destructors. */
2473 in_charge = spec_types;
2474 spec_types = TREE_CHAIN (spec_types);
2475 }
2476 if (DECL_HAS_VTT_PARM_P (decl))
2477 {
2478 vtt = spec_types;
2479 spec_types = TREE_CHAIN (spec_types);
2480 }
2481 }
2482
2483 /* Compute the merged default arguments. */
2484 new_spec_types =
2485 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2486
2487 /* Compute the new FUNCTION_TYPE. */
2488 if (object_type)
2489 {
2490 if (vtt)
2491 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2492 TREE_VALUE (vtt),
2493 new_spec_types);
2494
2495 if (in_charge)
2496 /* Put the in-charge parameter back. */
2497 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2498 TREE_VALUE (in_charge),
2499 new_spec_types);
2500
2501 new_type = build_method_type_directly (object_type,
2502 TREE_TYPE (old_type),
2503 new_spec_types);
2504 }
2505 else
2506 new_type = build_function_type (TREE_TYPE (old_type),
2507 new_spec_types);
2508 new_type = cp_build_type_attribute_variant (new_type,
2509 TYPE_ATTRIBUTES (old_type));
2510 new_type = build_exception_variant (new_type,
2511 TYPE_RAISES_EXCEPTIONS (old_type));
2512
2513 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2514 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2515
2516 TREE_TYPE (decl) = new_type;
2517 }
2518
2519 /* Return the number of template headers we expect to see for a definition
2520 or specialization of CTYPE or one of its non-template members. */
2521
2522 int
2523 num_template_headers_for_class (tree ctype)
2524 {
2525 int num_templates = 0;
2526
2527 while (ctype && CLASS_TYPE_P (ctype))
2528 {
2529 /* You're supposed to have one `template <...>' for every
2530 template class, but you don't need one for a full
2531 specialization. For example:
2532
2533 template <class T> struct S{};
2534 template <> struct S<int> { void f(); };
2535 void S<int>::f () {}
2536
2537 is correct; there shouldn't be a `template <>' for the
2538 definition of `S<int>::f'. */
2539 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2540 /* If CTYPE does not have template information of any
2541 kind, then it is not a template, nor is it nested
2542 within a template. */
2543 break;
2544 if (explicit_class_specialization_p (ctype))
2545 break;
2546 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2547 ++num_templates;
2548
2549 ctype = TYPE_CONTEXT (ctype);
2550 }
2551
2552 return num_templates;
2553 }
2554
2555 /* Do a simple sanity check on the template headers that precede the
2556 variable declaration DECL. */
2557
2558 void
2559 check_template_variable (tree decl)
2560 {
2561 tree ctx = CP_DECL_CONTEXT (decl);
2562 int wanted = num_template_headers_for_class (ctx);
2563 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2564 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2565 {
2566 if (cxx_dialect < cxx14)
2567 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2568 "variable templates only available with "
2569 "-std=c++14 or -std=gnu++14");
2570
2571 // Namespace-scope variable templates should have a template header.
2572 ++wanted;
2573 }
2574 if (template_header_count > wanted)
2575 {
2576 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2577 "too many template headers for %D (should be %d)",
2578 decl, wanted);
2579 if (warned && CLASS_TYPE_P (ctx)
2580 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2581 inform (DECL_SOURCE_LOCATION (decl),
2582 "members of an explicitly specialized class are defined "
2583 "without a template header");
2584 }
2585 }
2586
2587 /* Check to see if the function just declared, as indicated in
2588 DECLARATOR, and in DECL, is a specialization of a function
2589 template. We may also discover that the declaration is an explicit
2590 instantiation at this point.
2591
2592 Returns DECL, or an equivalent declaration that should be used
2593 instead if all goes well. Issues an error message if something is
2594 amiss. Returns error_mark_node if the error is not easily
2595 recoverable.
2596
2597 FLAGS is a bitmask consisting of the following flags:
2598
2599 2: The function has a definition.
2600 4: The function is a friend.
2601
2602 The TEMPLATE_COUNT is the number of references to qualifying
2603 template classes that appeared in the name of the function. For
2604 example, in
2605
2606 template <class T> struct S { void f(); };
2607 void S<int>::f();
2608
2609 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2610 classes are not counted in the TEMPLATE_COUNT, so that in
2611
2612 template <class T> struct S {};
2613 template <> struct S<int> { void f(); }
2614 template <> void S<int>::f();
2615
2616 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2617 invalid; there should be no template <>.)
2618
2619 If the function is a specialization, it is marked as such via
2620 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2621 is set up correctly, and it is added to the list of specializations
2622 for that template. */
2623
2624 tree
2625 check_explicit_specialization (tree declarator,
2626 tree decl,
2627 int template_count,
2628 int flags)
2629 {
2630 int have_def = flags & 2;
2631 int is_friend = flags & 4;
2632 bool is_concept = flags & 8;
2633 int specialization = 0;
2634 int explicit_instantiation = 0;
2635 int member_specialization = 0;
2636 tree ctype = DECL_CLASS_CONTEXT (decl);
2637 tree dname = DECL_NAME (decl);
2638 tmpl_spec_kind tsk;
2639
2640 if (is_friend)
2641 {
2642 if (!processing_specialization)
2643 tsk = tsk_none;
2644 else
2645 tsk = tsk_excessive_parms;
2646 }
2647 else
2648 tsk = current_tmpl_spec_kind (template_count);
2649
2650 switch (tsk)
2651 {
2652 case tsk_none:
2653 if (processing_specialization && !VAR_P (decl))
2654 {
2655 specialization = 1;
2656 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2657 }
2658 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2659 {
2660 if (is_friend)
2661 /* This could be something like:
2662
2663 template <class T> void f(T);
2664 class S { friend void f<>(int); } */
2665 specialization = 1;
2666 else
2667 {
2668 /* This case handles bogus declarations like template <>
2669 template <class T> void f<int>(); */
2670
2671 error ("template-id %qD in declaration of primary template",
2672 declarator);
2673 return decl;
2674 }
2675 }
2676 break;
2677
2678 case tsk_invalid_member_spec:
2679 /* The error has already been reported in
2680 check_specialization_scope. */
2681 return error_mark_node;
2682
2683 case tsk_invalid_expl_inst:
2684 error ("template parameter list used in explicit instantiation");
2685
2686 /* Fall through. */
2687
2688 case tsk_expl_inst:
2689 if (have_def)
2690 error ("definition provided for explicit instantiation");
2691
2692 explicit_instantiation = 1;
2693 break;
2694
2695 case tsk_excessive_parms:
2696 case tsk_insufficient_parms:
2697 if (tsk == tsk_excessive_parms)
2698 error ("too many template parameter lists in declaration of %qD",
2699 decl);
2700 else if (template_header_count)
2701 error("too few template parameter lists in declaration of %qD", decl);
2702 else
2703 error("explicit specialization of %qD must be introduced by "
2704 "%<template <>%>", decl);
2705
2706 /* Fall through. */
2707 case tsk_expl_spec:
2708 if (is_concept)
2709 error ("explicit specialization declared %<concept%>");
2710
2711 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2712 /* In cases like template<> constexpr bool v = true;
2713 We'll give an error in check_template_variable. */
2714 break;
2715
2716 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2717 if (ctype)
2718 member_specialization = 1;
2719 else
2720 specialization = 1;
2721 break;
2722
2723 case tsk_template:
2724 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2725 {
2726 /* This case handles bogus declarations like template <>
2727 template <class T> void f<int>(); */
2728
2729 if (!uses_template_parms (declarator))
2730 error ("template-id %qD in declaration of primary template",
2731 declarator);
2732 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2733 {
2734 /* Partial specialization of variable template. */
2735 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2736 specialization = 1;
2737 goto ok;
2738 }
2739 else if (cxx_dialect < cxx14)
2740 error ("non-type partial specialization %qD "
2741 "is not allowed", declarator);
2742 else
2743 error ("non-class, non-variable partial specialization %qD "
2744 "is not allowed", declarator);
2745 return decl;
2746 ok:;
2747 }
2748
2749 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2750 /* This is a specialization of a member template, without
2751 specialization the containing class. Something like:
2752
2753 template <class T> struct S {
2754 template <class U> void f (U);
2755 };
2756 template <> template <class U> void S<int>::f(U) {}
2757
2758 That's a specialization -- but of the entire template. */
2759 specialization = 1;
2760 break;
2761
2762 default:
2763 gcc_unreachable ();
2764 }
2765
2766 if ((specialization || member_specialization)
2767 /* This doesn't apply to variable templates. */
2768 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2769 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2770 {
2771 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2772 for (; t; t = TREE_CHAIN (t))
2773 if (TREE_PURPOSE (t))
2774 {
2775 permerror (input_location,
2776 "default argument specified in explicit specialization");
2777 break;
2778 }
2779 }
2780
2781 if (specialization || member_specialization || explicit_instantiation)
2782 {
2783 tree tmpl = NULL_TREE;
2784 tree targs = NULL_TREE;
2785 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2786
2787 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2788 if (!was_template_id)
2789 {
2790 tree fns;
2791
2792 gcc_assert (identifier_p (declarator));
2793 if (ctype)
2794 fns = dname;
2795 else
2796 {
2797 /* If there is no class context, the explicit instantiation
2798 must be at namespace scope. */
2799 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2800
2801 /* Find the namespace binding, using the declaration
2802 context. */
2803 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2804 false, true);
2805 if (fns == error_mark_node || !is_overloaded_fn (fns))
2806 {
2807 error ("%qD is not a template function", dname);
2808 fns = error_mark_node;
2809 }
2810 }
2811
2812 declarator = lookup_template_function (fns, NULL_TREE);
2813 }
2814
2815 if (declarator == error_mark_node)
2816 return error_mark_node;
2817
2818 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2819 {
2820 if (!explicit_instantiation)
2821 /* A specialization in class scope. This is invalid,
2822 but the error will already have been flagged by
2823 check_specialization_scope. */
2824 return error_mark_node;
2825 else
2826 {
2827 /* It's not valid to write an explicit instantiation in
2828 class scope, e.g.:
2829
2830 class C { template void f(); }
2831
2832 This case is caught by the parser. However, on
2833 something like:
2834
2835 template class C { void f(); };
2836
2837 (which is invalid) we can get here. The error will be
2838 issued later. */
2839 ;
2840 }
2841
2842 return decl;
2843 }
2844 else if (ctype != NULL_TREE
2845 && (identifier_p (TREE_OPERAND (declarator, 0))))
2846 {
2847 // We'll match variable templates in start_decl.
2848 if (VAR_P (decl))
2849 return decl;
2850
2851 /* Find the list of functions in ctype that have the same
2852 name as the declared function. */
2853 tree name = TREE_OPERAND (declarator, 0);
2854 tree fns = NULL_TREE;
2855 int idx;
2856
2857 if (constructor_name_p (name, ctype))
2858 {
2859 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2860
2861 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2862 : !CLASSTYPE_DESTRUCTORS (ctype))
2863 {
2864 /* From [temp.expl.spec]:
2865
2866 If such an explicit specialization for the member
2867 of a class template names an implicitly-declared
2868 special member function (clause _special_), the
2869 program is ill-formed.
2870
2871 Similar language is found in [temp.explicit]. */
2872 error ("specialization of implicitly-declared special member function");
2873 return error_mark_node;
2874 }
2875
2876 name = is_constructor ? ctor_identifier : dtor_identifier;
2877 }
2878
2879 if (!DECL_CONV_FN_P (decl))
2880 {
2881 idx = lookup_fnfields_1 (ctype, name);
2882 if (idx >= 0)
2883 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2884 }
2885 else
2886 {
2887 vec<tree, va_gc> *methods;
2888 tree ovl;
2889
2890 /* For a type-conversion operator, we cannot do a
2891 name-based lookup. We might be looking for `operator
2892 int' which will be a specialization of `operator T'.
2893 So, we find *all* the conversion operators, and then
2894 select from them. */
2895 fns = NULL_TREE;
2896
2897 methods = CLASSTYPE_METHOD_VEC (ctype);
2898 if (methods)
2899 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2900 methods->iterate (idx, &ovl);
2901 ++idx)
2902 {
2903 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2904 /* There are no more conversion functions. */
2905 break;
2906
2907 /* Glue all these conversion functions together
2908 with those we already have. */
2909 for (; ovl; ovl = OVL_NEXT (ovl))
2910 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2911 }
2912 }
2913
2914 if (fns == NULL_TREE)
2915 {
2916 error ("no member function %qD declared in %qT", name, ctype);
2917 return error_mark_node;
2918 }
2919 else
2920 TREE_OPERAND (declarator, 0) = fns;
2921 }
2922
2923 /* Figure out what exactly is being specialized at this point.
2924 Note that for an explicit instantiation, even one for a
2925 member function, we cannot tell apriori whether the
2926 instantiation is for a member template, or just a member
2927 function of a template class. Even if a member template is
2928 being instantiated, the member template arguments may be
2929 elided if they can be deduced from the rest of the
2930 declaration. */
2931 tmpl = determine_specialization (declarator, decl,
2932 &targs,
2933 member_specialization,
2934 template_count,
2935 tsk);
2936
2937 if (!tmpl || tmpl == error_mark_node)
2938 /* We couldn't figure out what this declaration was
2939 specializing. */
2940 return error_mark_node;
2941 else
2942 {
2943 if (!ctype && !was_template_id
2944 && (specialization || member_specialization
2945 || explicit_instantiation)
2946 && !is_associated_namespace (CP_DECL_CONTEXT (decl),
2947 CP_DECL_CONTEXT (tmpl)))
2948 error ("%qD is not declared in %qD",
2949 tmpl, current_namespace);
2950
2951 tree gen_tmpl = most_general_template (tmpl);
2952
2953 if (explicit_instantiation)
2954 {
2955 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2956 is done by do_decl_instantiation later. */
2957
2958 int arg_depth = TMPL_ARGS_DEPTH (targs);
2959 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2960
2961 if (arg_depth > parm_depth)
2962 {
2963 /* If TMPL is not the most general template (for
2964 example, if TMPL is a friend template that is
2965 injected into namespace scope), then there will
2966 be too many levels of TARGS. Remove some of them
2967 here. */
2968 int i;
2969 tree new_targs;
2970
2971 new_targs = make_tree_vec (parm_depth);
2972 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2973 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2974 = TREE_VEC_ELT (targs, i);
2975 targs = new_targs;
2976 }
2977
2978 return instantiate_template (tmpl, targs, tf_error);
2979 }
2980
2981 /* If we thought that the DECL was a member function, but it
2982 turns out to be specializing a static member function,
2983 make DECL a static member function as well. */
2984 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2985 && DECL_STATIC_FUNCTION_P (tmpl)
2986 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2987 revert_static_member_fn (decl);
2988
2989 /* If this is a specialization of a member template of a
2990 template class, we want to return the TEMPLATE_DECL, not
2991 the specialization of it. */
2992 if (tsk == tsk_template && !was_template_id)
2993 {
2994 tree result = DECL_TEMPLATE_RESULT (tmpl);
2995 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2996 DECL_INITIAL (result) = NULL_TREE;
2997 if (have_def)
2998 {
2999 tree parm;
3000 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3001 DECL_SOURCE_LOCATION (result)
3002 = DECL_SOURCE_LOCATION (decl);
3003 /* We want to use the argument list specified in the
3004 definition, not in the original declaration. */
3005 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3006 for (parm = DECL_ARGUMENTS (result); parm;
3007 parm = DECL_CHAIN (parm))
3008 DECL_CONTEXT (parm) = result;
3009 }
3010 return register_specialization (tmpl, gen_tmpl, targs,
3011 is_friend, 0);
3012 }
3013
3014 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3015 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3016
3017 if (was_template_id)
3018 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3019
3020 /* Inherit default function arguments from the template
3021 DECL is specializing. */
3022 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3023 copy_default_args_to_explicit_spec (decl);
3024
3025 /* This specialization has the same protection as the
3026 template it specializes. */
3027 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3028 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3029
3030 /* 7.1.1-1 [dcl.stc]
3031
3032 A storage-class-specifier shall not be specified in an
3033 explicit specialization...
3034
3035 The parser rejects these, so unless action is taken here,
3036 explicit function specializations will always appear with
3037 global linkage.
3038
3039 The action recommended by the C++ CWG in response to C++
3040 defect report 605 is to make the storage class and linkage
3041 of the explicit specialization match the templated function:
3042
3043 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3044 */
3045 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3046 {
3047 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3048 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3049
3050 /* A concept cannot be specialized. */
3051 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3052 {
3053 error ("explicit specialization of function concept %qD",
3054 gen_tmpl);
3055 return error_mark_node;
3056 }
3057
3058 /* This specialization has the same linkage and visibility as
3059 the function template it specializes. */
3060 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3061 if (! TREE_PUBLIC (decl))
3062 {
3063 DECL_INTERFACE_KNOWN (decl) = 1;
3064 DECL_NOT_REALLY_EXTERN (decl) = 1;
3065 }
3066 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3067 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3068 {
3069 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3070 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3071 }
3072 }
3073
3074 /* If DECL is a friend declaration, declared using an
3075 unqualified name, the namespace associated with DECL may
3076 have been set incorrectly. For example, in:
3077
3078 template <typename T> void f(T);
3079 namespace N {
3080 struct S { friend void f<int>(int); }
3081 }
3082
3083 we will have set the DECL_CONTEXT for the friend
3084 declaration to N, rather than to the global namespace. */
3085 if (DECL_NAMESPACE_SCOPE_P (decl))
3086 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3087
3088 if (is_friend && !have_def)
3089 /* This is not really a declaration of a specialization.
3090 It's just the name of an instantiation. But, it's not
3091 a request for an instantiation, either. */
3092 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3093 else if (TREE_CODE (decl) == FUNCTION_DECL)
3094 /* A specialization is not necessarily COMDAT. */
3095 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3096 && DECL_DECLARED_INLINE_P (decl));
3097 else if (VAR_P (decl))
3098 DECL_COMDAT (decl) = false;
3099
3100 /* If this is a full specialization, register it so that we can find
3101 it again. Partial specializations will be registered in
3102 process_partial_specialization. */
3103 if (!processing_template_decl)
3104 decl = register_specialization (decl, gen_tmpl, targs,
3105 is_friend, 0);
3106
3107 /* A 'structor should already have clones. */
3108 gcc_assert (decl == error_mark_node
3109 || variable_template_p (tmpl)
3110 || !(DECL_CONSTRUCTOR_P (decl)
3111 || DECL_DESTRUCTOR_P (decl))
3112 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3113 }
3114 }
3115
3116 return decl;
3117 }
3118
3119 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3120 parameters. These are represented in the same format used for
3121 DECL_TEMPLATE_PARMS. */
3122
3123 int
3124 comp_template_parms (const_tree parms1, const_tree parms2)
3125 {
3126 const_tree p1;
3127 const_tree p2;
3128
3129 if (parms1 == parms2)
3130 return 1;
3131
3132 for (p1 = parms1, p2 = parms2;
3133 p1 != NULL_TREE && p2 != NULL_TREE;
3134 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3135 {
3136 tree t1 = TREE_VALUE (p1);
3137 tree t2 = TREE_VALUE (p2);
3138 int i;
3139
3140 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3141 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3142
3143 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3144 return 0;
3145
3146 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3147 {
3148 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3149 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3150
3151 /* If either of the template parameters are invalid, assume
3152 they match for the sake of error recovery. */
3153 if (error_operand_p (parm1) || error_operand_p (parm2))
3154 return 1;
3155
3156 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3157 return 0;
3158
3159 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3160 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3161 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3162 continue;
3163 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3164 return 0;
3165 }
3166 }
3167
3168 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3169 /* One set of parameters has more parameters lists than the
3170 other. */
3171 return 0;
3172
3173 return 1;
3174 }
3175
3176 /* Determine whether PARM is a parameter pack. */
3177
3178 bool
3179 template_parameter_pack_p (const_tree parm)
3180 {
3181 /* Determine if we have a non-type template parameter pack. */
3182 if (TREE_CODE (parm) == PARM_DECL)
3183 return (DECL_TEMPLATE_PARM_P (parm)
3184 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3185 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3186 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3187
3188 /* If this is a list of template parameters, we could get a
3189 TYPE_DECL or a TEMPLATE_DECL. */
3190 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3191 parm = TREE_TYPE (parm);
3192
3193 /* Otherwise it must be a type template parameter. */
3194 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3195 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3196 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3197 }
3198
3199 /* Determine if T is a function parameter pack. */
3200
3201 bool
3202 function_parameter_pack_p (const_tree t)
3203 {
3204 if (t && TREE_CODE (t) == PARM_DECL)
3205 return DECL_PACK_P (t);
3206 return false;
3207 }
3208
3209 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3210 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3211
3212 tree
3213 get_function_template_decl (const_tree primary_func_tmpl_inst)
3214 {
3215 if (! primary_func_tmpl_inst
3216 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3217 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3218 return NULL;
3219
3220 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3221 }
3222
3223 /* Return true iff the function parameter PARAM_DECL was expanded
3224 from the function parameter pack PACK. */
3225
3226 bool
3227 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3228 {
3229 if (DECL_ARTIFICIAL (param_decl)
3230 || !function_parameter_pack_p (pack))
3231 return false;
3232
3233 /* The parameter pack and its pack arguments have the same
3234 DECL_PARM_INDEX. */
3235 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3236 }
3237
3238 /* Determine whether ARGS describes a variadic template args list,
3239 i.e., one that is terminated by a template argument pack. */
3240
3241 static bool
3242 template_args_variadic_p (tree args)
3243 {
3244 int nargs;
3245 tree last_parm;
3246
3247 if (args == NULL_TREE)
3248 return false;
3249
3250 args = INNERMOST_TEMPLATE_ARGS (args);
3251 nargs = TREE_VEC_LENGTH (args);
3252
3253 if (nargs == 0)
3254 return false;
3255
3256 last_parm = TREE_VEC_ELT (args, nargs - 1);
3257
3258 return ARGUMENT_PACK_P (last_parm);
3259 }
3260
3261 /* Generate a new name for the parameter pack name NAME (an
3262 IDENTIFIER_NODE) that incorporates its */
3263
3264 static tree
3265 make_ith_pack_parameter_name (tree name, int i)
3266 {
3267 /* Munge the name to include the parameter index. */
3268 #define NUMBUF_LEN 128
3269 char numbuf[NUMBUF_LEN];
3270 char* newname;
3271 int newname_len;
3272
3273 if (name == NULL_TREE)
3274 return name;
3275 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3276 newname_len = IDENTIFIER_LENGTH (name)
3277 + strlen (numbuf) + 2;
3278 newname = (char*)alloca (newname_len);
3279 snprintf (newname, newname_len,
3280 "%s#%i", IDENTIFIER_POINTER (name), i);
3281 return get_identifier (newname);
3282 }
3283
3284 /* Return true if T is a primary function, class or alias template
3285 instantiation. */
3286
3287 bool
3288 primary_template_instantiation_p (const_tree t)
3289 {
3290 if (!t)
3291 return false;
3292
3293 if (TREE_CODE (t) == FUNCTION_DECL)
3294 return DECL_LANG_SPECIFIC (t)
3295 && DECL_TEMPLATE_INSTANTIATION (t)
3296 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3297 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3298 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3299 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3300 else if (alias_template_specialization_p (t))
3301 return true;
3302 return false;
3303 }
3304
3305 /* Return true if PARM is a template template parameter. */
3306
3307 bool
3308 template_template_parameter_p (const_tree parm)
3309 {
3310 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3311 }
3312
3313 /* Return true iff PARM is a DECL representing a type template
3314 parameter. */
3315
3316 bool
3317 template_type_parameter_p (const_tree parm)
3318 {
3319 return (parm
3320 && (TREE_CODE (parm) == TYPE_DECL
3321 || TREE_CODE (parm) == TEMPLATE_DECL)
3322 && DECL_TEMPLATE_PARM_P (parm));
3323 }
3324
3325 /* Return the template parameters of T if T is a
3326 primary template instantiation, NULL otherwise. */
3327
3328 tree
3329 get_primary_template_innermost_parameters (const_tree t)
3330 {
3331 tree parms = NULL, template_info = NULL;
3332
3333 if ((template_info = get_template_info (t))
3334 && primary_template_instantiation_p (t))
3335 parms = INNERMOST_TEMPLATE_PARMS
3336 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3337
3338 return parms;
3339 }
3340
3341 /* Return the template parameters of the LEVELth level from the full list
3342 of template parameters PARMS. */
3343
3344 tree
3345 get_template_parms_at_level (tree parms, int level)
3346 {
3347 tree p;
3348 if (!parms
3349 || TREE_CODE (parms) != TREE_LIST
3350 || level > TMPL_PARMS_DEPTH (parms))
3351 return NULL_TREE;
3352
3353 for (p = parms; p; p = TREE_CHAIN (p))
3354 if (TMPL_PARMS_DEPTH (p) == level)
3355 return p;
3356
3357 return NULL_TREE;
3358 }
3359
3360 /* Returns the template arguments of T if T is a template instantiation,
3361 NULL otherwise. */
3362
3363 tree
3364 get_template_innermost_arguments (const_tree t)
3365 {
3366 tree args = NULL, template_info = NULL;
3367
3368 if ((template_info = get_template_info (t))
3369 && TI_ARGS (template_info))
3370 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3371
3372 return args;
3373 }
3374
3375 /* Return the argument pack elements of T if T is a template argument pack,
3376 NULL otherwise. */
3377
3378 tree
3379 get_template_argument_pack_elems (const_tree t)
3380 {
3381 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3382 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3383 return NULL;
3384
3385 return ARGUMENT_PACK_ARGS (t);
3386 }
3387
3388 /* Structure used to track the progress of find_parameter_packs_r. */
3389 struct find_parameter_pack_data
3390 {
3391 /* TREE_LIST that will contain all of the parameter packs found by
3392 the traversal. */
3393 tree* parameter_packs;
3394
3395 /* Set of AST nodes that have been visited by the traversal. */
3396 hash_set<tree> *visited;
3397
3398 /* True iff we're making a type pack expansion. */
3399 bool type_pack_expansion_p;
3400 };
3401
3402 /* Identifies all of the argument packs that occur in a template
3403 argument and appends them to the TREE_LIST inside DATA, which is a
3404 find_parameter_pack_data structure. This is a subroutine of
3405 make_pack_expansion and uses_parameter_packs. */
3406 static tree
3407 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3408 {
3409 tree t = *tp;
3410 struct find_parameter_pack_data* ppd =
3411 (struct find_parameter_pack_data*)data;
3412 bool parameter_pack_p = false;
3413
3414 /* Handle type aliases/typedefs. */
3415 if (TYPE_ALIAS_P (t))
3416 {
3417 if (TYPE_TEMPLATE_INFO (t))
3418 cp_walk_tree (&TYPE_TI_ARGS (t),
3419 &find_parameter_packs_r,
3420 ppd, ppd->visited);
3421 *walk_subtrees = 0;
3422 return NULL_TREE;
3423 }
3424
3425 /* Identify whether this is a parameter pack or not. */
3426 switch (TREE_CODE (t))
3427 {
3428 case TEMPLATE_PARM_INDEX:
3429 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3430 parameter_pack_p = true;
3431 break;
3432
3433 case TEMPLATE_TYPE_PARM:
3434 t = TYPE_MAIN_VARIANT (t);
3435 case TEMPLATE_TEMPLATE_PARM:
3436 /* If the placeholder appears in the decl-specifier-seq of a function
3437 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3438 is a pack expansion, the invented template parameter is a template
3439 parameter pack. */
3440 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3441 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3442 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3443 parameter_pack_p = true;
3444 break;
3445
3446 case FIELD_DECL:
3447 case PARM_DECL:
3448 if (DECL_PACK_P (t))
3449 {
3450 /* We don't want to walk into the type of a PARM_DECL,
3451 because we don't want to see the type parameter pack. */
3452 *walk_subtrees = 0;
3453 parameter_pack_p = true;
3454 }
3455 break;
3456
3457 /* Look through a lambda capture proxy to the field pack. */
3458 case VAR_DECL:
3459 if (DECL_HAS_VALUE_EXPR_P (t))
3460 {
3461 tree v = DECL_VALUE_EXPR (t);
3462 cp_walk_tree (&v,
3463 &find_parameter_packs_r,
3464 ppd, ppd->visited);
3465 *walk_subtrees = 0;
3466 }
3467 else if (variable_template_specialization_p (t))
3468 {
3469 cp_walk_tree (&DECL_TI_ARGS (t),
3470 find_parameter_packs_r,
3471 ppd, ppd->visited);
3472 *walk_subtrees = 0;
3473 }
3474 break;
3475
3476 case BASES:
3477 parameter_pack_p = true;
3478 break;
3479 default:
3480 /* Not a parameter pack. */
3481 break;
3482 }
3483
3484 if (parameter_pack_p)
3485 {
3486 /* Add this parameter pack to the list. */
3487 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3488 }
3489
3490 if (TYPE_P (t))
3491 cp_walk_tree (&TYPE_CONTEXT (t),
3492 &find_parameter_packs_r, ppd, ppd->visited);
3493
3494 /* This switch statement will return immediately if we don't find a
3495 parameter pack. */
3496 switch (TREE_CODE (t))
3497 {
3498 case TEMPLATE_PARM_INDEX:
3499 return NULL_TREE;
3500
3501 case BOUND_TEMPLATE_TEMPLATE_PARM:
3502 /* Check the template itself. */
3503 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3504 &find_parameter_packs_r, ppd, ppd->visited);
3505 /* Check the template arguments. */
3506 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3507 ppd->visited);
3508 *walk_subtrees = 0;
3509 return NULL_TREE;
3510
3511 case TEMPLATE_TYPE_PARM:
3512 case TEMPLATE_TEMPLATE_PARM:
3513 return NULL_TREE;
3514
3515 case PARM_DECL:
3516 return NULL_TREE;
3517
3518 case RECORD_TYPE:
3519 if (TYPE_PTRMEMFUNC_P (t))
3520 return NULL_TREE;
3521 /* Fall through. */
3522
3523 case UNION_TYPE:
3524 case ENUMERAL_TYPE:
3525 if (TYPE_TEMPLATE_INFO (t))
3526 cp_walk_tree (&TYPE_TI_ARGS (t),
3527 &find_parameter_packs_r, ppd, ppd->visited);
3528
3529 *walk_subtrees = 0;
3530 return NULL_TREE;
3531
3532 case CONSTRUCTOR:
3533 case TEMPLATE_DECL:
3534 cp_walk_tree (&TREE_TYPE (t),
3535 &find_parameter_packs_r, ppd, ppd->visited);
3536 return NULL_TREE;
3537
3538 case TYPENAME_TYPE:
3539 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3540 ppd, ppd->visited);
3541 *walk_subtrees = 0;
3542 return NULL_TREE;
3543
3544 case TYPE_PACK_EXPANSION:
3545 case EXPR_PACK_EXPANSION:
3546 *walk_subtrees = 0;
3547 return NULL_TREE;
3548
3549 case INTEGER_TYPE:
3550 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3551 ppd, ppd->visited);
3552 *walk_subtrees = 0;
3553 return NULL_TREE;
3554
3555 case IDENTIFIER_NODE:
3556 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3557 ppd->visited);
3558 *walk_subtrees = 0;
3559 return NULL_TREE;
3560
3561 case DECLTYPE_TYPE:
3562 {
3563 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3564 type_pack_expansion_p to false so that any placeholders
3565 within the expression don't get marked as parameter packs. */
3566 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3567 ppd->type_pack_expansion_p = false;
3568 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3569 ppd, ppd->visited);
3570 ppd->type_pack_expansion_p = type_pack_expansion_p;
3571 *walk_subtrees = 0;
3572 return NULL_TREE;
3573 }
3574
3575 default:
3576 return NULL_TREE;
3577 }
3578
3579 return NULL_TREE;
3580 }
3581
3582 /* Determines if the expression or type T uses any parameter packs. */
3583 bool
3584 uses_parameter_packs (tree t)
3585 {
3586 tree parameter_packs = NULL_TREE;
3587 struct find_parameter_pack_data ppd;
3588 ppd.parameter_packs = &parameter_packs;
3589 ppd.visited = new hash_set<tree>;
3590 ppd.type_pack_expansion_p = false;
3591 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3592 delete ppd.visited;
3593 return parameter_packs != NULL_TREE;
3594 }
3595
3596 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3597 representation a base-class initializer into a parameter pack
3598 expansion. If all goes well, the resulting node will be an
3599 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3600 respectively. */
3601 tree
3602 make_pack_expansion (tree arg)
3603 {
3604 tree result;
3605 tree parameter_packs = NULL_TREE;
3606 bool for_types = false;
3607 struct find_parameter_pack_data ppd;
3608
3609 if (!arg || arg == error_mark_node)
3610 return arg;
3611
3612 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3613 {
3614 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3615 class initializer. In this case, the TREE_PURPOSE will be a
3616 _TYPE node (representing the base class expansion we're
3617 initializing) and the TREE_VALUE will be a TREE_LIST
3618 containing the initialization arguments.
3619
3620 The resulting expansion looks somewhat different from most
3621 expansions. Rather than returning just one _EXPANSION, we
3622 return a TREE_LIST whose TREE_PURPOSE is a
3623 TYPE_PACK_EXPANSION containing the bases that will be
3624 initialized. The TREE_VALUE will be identical to the
3625 original TREE_VALUE, which is a list of arguments that will
3626 be passed to each base. We do not introduce any new pack
3627 expansion nodes into the TREE_VALUE (although it is possible
3628 that some already exist), because the TREE_PURPOSE and
3629 TREE_VALUE all need to be expanded together with the same
3630 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3631 resulting TREE_PURPOSE will mention the parameter packs in
3632 both the bases and the arguments to the bases. */
3633 tree purpose;
3634 tree value;
3635 tree parameter_packs = NULL_TREE;
3636
3637 /* Determine which parameter packs will be used by the base
3638 class expansion. */
3639 ppd.visited = new hash_set<tree>;
3640 ppd.parameter_packs = &parameter_packs;
3641 ppd.type_pack_expansion_p = true;
3642 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3643 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3644 &ppd, ppd.visited);
3645
3646 if (parameter_packs == NULL_TREE)
3647 {
3648 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3649 delete ppd.visited;
3650 return error_mark_node;
3651 }
3652
3653 if (TREE_VALUE (arg) != void_type_node)
3654 {
3655 /* Collect the sets of parameter packs used in each of the
3656 initialization arguments. */
3657 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3658 {
3659 /* Determine which parameter packs will be expanded in this
3660 argument. */
3661 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3662 &ppd, ppd.visited);
3663 }
3664 }
3665
3666 delete ppd.visited;
3667
3668 /* Create the pack expansion type for the base type. */
3669 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3670 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3671 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3672
3673 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3674 they will rarely be compared to anything. */
3675 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3676
3677 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3678 }
3679
3680 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3681 for_types = true;
3682
3683 /* Build the PACK_EXPANSION_* node. */
3684 result = for_types
3685 ? cxx_make_type (TYPE_PACK_EXPANSION)
3686 : make_node (EXPR_PACK_EXPANSION);
3687 SET_PACK_EXPANSION_PATTERN (result, arg);
3688 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3689 {
3690 /* Propagate type and const-expression information. */
3691 TREE_TYPE (result) = TREE_TYPE (arg);
3692 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3693 }
3694 else
3695 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3696 they will rarely be compared to anything. */
3697 SET_TYPE_STRUCTURAL_EQUALITY (result);
3698
3699 /* Determine which parameter packs will be expanded. */
3700 ppd.parameter_packs = &parameter_packs;
3701 ppd.visited = new hash_set<tree>;
3702 ppd.type_pack_expansion_p = TYPE_P (arg);
3703 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3704 delete ppd.visited;
3705
3706 /* Make sure we found some parameter packs. */
3707 if (parameter_packs == NULL_TREE)
3708 {
3709 if (TYPE_P (arg))
3710 error ("expansion pattern %<%T%> contains no argument packs", arg);
3711 else
3712 error ("expansion pattern %<%E%> contains no argument packs", arg);
3713 return error_mark_node;
3714 }
3715 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3716
3717 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3718
3719 return result;
3720 }
3721
3722 /* Checks T for any "bare" parameter packs, which have not yet been
3723 expanded, and issues an error if any are found. This operation can
3724 only be done on full expressions or types (e.g., an expression
3725 statement, "if" condition, etc.), because we could have expressions like:
3726
3727 foo(f(g(h(args)))...)
3728
3729 where "args" is a parameter pack. check_for_bare_parameter_packs
3730 should not be called for the subexpressions args, h(args),
3731 g(h(args)), or f(g(h(args))), because we would produce erroneous
3732 error messages.
3733
3734 Returns TRUE and emits an error if there were bare parameter packs,
3735 returns FALSE otherwise. */
3736 bool
3737 check_for_bare_parameter_packs (tree t)
3738 {
3739 tree parameter_packs = NULL_TREE;
3740 struct find_parameter_pack_data ppd;
3741
3742 if (!processing_template_decl || !t || t == error_mark_node)
3743 return false;
3744
3745 if (TREE_CODE (t) == TYPE_DECL)
3746 t = TREE_TYPE (t);
3747
3748 ppd.parameter_packs = &parameter_packs;
3749 ppd.visited = new hash_set<tree>;
3750 ppd.type_pack_expansion_p = false;
3751 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3752 delete ppd.visited;
3753
3754 if (parameter_packs)
3755 {
3756 error ("parameter packs not expanded with %<...%>:");
3757 while (parameter_packs)
3758 {
3759 tree pack = TREE_VALUE (parameter_packs);
3760 tree name = NULL_TREE;
3761
3762 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3763 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3764 name = TYPE_NAME (pack);
3765 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3766 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3767 else
3768 name = DECL_NAME (pack);
3769
3770 if (name)
3771 inform (input_location, " %qD", name);
3772 else
3773 inform (input_location, " <anonymous>");
3774
3775 parameter_packs = TREE_CHAIN (parameter_packs);
3776 }
3777
3778 return true;
3779 }
3780
3781 return false;
3782 }
3783
3784 /* Expand any parameter packs that occur in the template arguments in
3785 ARGS. */
3786 tree
3787 expand_template_argument_pack (tree args)
3788 {
3789 tree result_args = NULL_TREE;
3790 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3791 int num_result_args = -1;
3792 int non_default_args_count = -1;
3793
3794 /* First, determine if we need to expand anything, and the number of
3795 slots we'll need. */
3796 for (in_arg = 0; in_arg < nargs; ++in_arg)
3797 {
3798 tree arg = TREE_VEC_ELT (args, in_arg);
3799 if (arg == NULL_TREE)
3800 return args;
3801 if (ARGUMENT_PACK_P (arg))
3802 {
3803 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3804 if (num_result_args < 0)
3805 num_result_args = in_arg + num_packed;
3806 else
3807 num_result_args += num_packed;
3808 }
3809 else
3810 {
3811 if (num_result_args >= 0)
3812 num_result_args++;
3813 }
3814 }
3815
3816 /* If no expansion is necessary, we're done. */
3817 if (num_result_args < 0)
3818 return args;
3819
3820 /* Expand arguments. */
3821 result_args = make_tree_vec (num_result_args);
3822 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3823 non_default_args_count =
3824 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3825 for (in_arg = 0; in_arg < nargs; ++in_arg)
3826 {
3827 tree arg = TREE_VEC_ELT (args, in_arg);
3828 if (ARGUMENT_PACK_P (arg))
3829 {
3830 tree packed = ARGUMENT_PACK_ARGS (arg);
3831 int i, num_packed = TREE_VEC_LENGTH (packed);
3832 for (i = 0; i < num_packed; ++i, ++out_arg)
3833 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3834 if (non_default_args_count > 0)
3835 non_default_args_count += num_packed - 1;
3836 }
3837 else
3838 {
3839 TREE_VEC_ELT (result_args, out_arg) = arg;
3840 ++out_arg;
3841 }
3842 }
3843 if (non_default_args_count >= 0)
3844 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3845 return result_args;
3846 }
3847
3848 /* Checks if DECL shadows a template parameter.
3849
3850 [temp.local]: A template-parameter shall not be redeclared within its
3851 scope (including nested scopes).
3852
3853 Emits an error and returns TRUE if the DECL shadows a parameter,
3854 returns FALSE otherwise. */
3855
3856 bool
3857 check_template_shadow (tree decl)
3858 {
3859 tree olddecl;
3860
3861 /* If we're not in a template, we can't possibly shadow a template
3862 parameter. */
3863 if (!current_template_parms)
3864 return true;
3865
3866 /* Figure out what we're shadowing. */
3867 if (TREE_CODE (decl) == OVERLOAD)
3868 decl = OVL_CURRENT (decl);
3869 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3870
3871 /* If there's no previous binding for this name, we're not shadowing
3872 anything, let alone a template parameter. */
3873 if (!olddecl)
3874 return true;
3875
3876 /* If we're not shadowing a template parameter, we're done. Note
3877 that OLDDECL might be an OVERLOAD (or perhaps even an
3878 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3879 node. */
3880 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3881 return true;
3882
3883 /* We check for decl != olddecl to avoid bogus errors for using a
3884 name inside a class. We check TPFI to avoid duplicate errors for
3885 inline member templates. */
3886 if (decl == olddecl
3887 || (DECL_TEMPLATE_PARM_P (decl)
3888 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3889 return true;
3890
3891 /* Don't complain about the injected class name, as we've already
3892 complained about the class itself. */
3893 if (DECL_SELF_REFERENCE_P (decl))
3894 return false;
3895
3896 if (DECL_TEMPLATE_PARM_P (decl))
3897 error ("declaration of template parameter %q+D shadows "
3898 "template parameter", decl);
3899 else
3900 error ("declaration of %q+#D shadows template parameter", decl);
3901 inform (DECL_SOURCE_LOCATION (olddecl),
3902 "template parameter %qD declared here", olddecl);
3903 return false;
3904 }
3905
3906 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3907 ORIG_LEVEL, DECL, and TYPE. */
3908
3909 static tree
3910 build_template_parm_index (int index,
3911 int level,
3912 int orig_level,
3913 tree decl,
3914 tree type)
3915 {
3916 tree t = make_node (TEMPLATE_PARM_INDEX);
3917 TEMPLATE_PARM_IDX (t) = index;
3918 TEMPLATE_PARM_LEVEL (t) = level;
3919 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3920 TEMPLATE_PARM_DECL (t) = decl;
3921 TREE_TYPE (t) = type;
3922 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3923 TREE_READONLY (t) = TREE_READONLY (decl);
3924
3925 return t;
3926 }
3927
3928 /* Find the canonical type parameter for the given template type
3929 parameter. Returns the canonical type parameter, which may be TYPE
3930 if no such parameter existed. */
3931
3932 static tree
3933 canonical_type_parameter (tree type)
3934 {
3935 tree list;
3936 int idx = TEMPLATE_TYPE_IDX (type);
3937 if (!canonical_template_parms)
3938 vec_alloc (canonical_template_parms, idx+1);
3939
3940 while (canonical_template_parms->length () <= (unsigned)idx)
3941 vec_safe_push (canonical_template_parms, NULL_TREE);
3942
3943 list = (*canonical_template_parms)[idx];
3944 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3945 list = TREE_CHAIN (list);
3946
3947 if (list)
3948 return TREE_VALUE (list);
3949 else
3950 {
3951 (*canonical_template_parms)[idx]
3952 = tree_cons (NULL_TREE, type,
3953 (*canonical_template_parms)[idx]);
3954 return type;
3955 }
3956 }
3957
3958 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3959 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3960 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3961 new one is created. */
3962
3963 static tree
3964 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3965 tsubst_flags_t complain)
3966 {
3967 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3968 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3969 != TEMPLATE_PARM_LEVEL (index) - levels)
3970 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3971 {
3972 tree orig_decl = TEMPLATE_PARM_DECL (index);
3973 tree decl, t;
3974
3975 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3976 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3977 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3978 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3979 DECL_ARTIFICIAL (decl) = 1;
3980 SET_DECL_TEMPLATE_PARM_P (decl);
3981
3982 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3983 TEMPLATE_PARM_LEVEL (index) - levels,
3984 TEMPLATE_PARM_ORIG_LEVEL (index),
3985 decl, type);
3986 TEMPLATE_PARM_DESCENDANTS (index) = t;
3987 TEMPLATE_PARM_PARAMETER_PACK (t)
3988 = TEMPLATE_PARM_PARAMETER_PACK (index);
3989
3990 /* Template template parameters need this. */
3991 if (TREE_CODE (decl) == TEMPLATE_DECL)
3992 {
3993 DECL_TEMPLATE_RESULT (decl)
3994 = build_decl (DECL_SOURCE_LOCATION (decl),
3995 TYPE_DECL, DECL_NAME (decl), type);
3996 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3997 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3998 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
3999 }
4000 }
4001
4002 return TEMPLATE_PARM_DESCENDANTS (index);
4003 }
4004
4005 /* Process information from new template parameter PARM and append it
4006 to the LIST being built. This new parameter is a non-type
4007 parameter iff IS_NON_TYPE is true. This new parameter is a
4008 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4009 is in PARM_LOC. */
4010
4011 tree
4012 process_template_parm (tree list, location_t parm_loc, tree parm,
4013 bool is_non_type, bool is_parameter_pack)
4014 {
4015 tree decl = 0;
4016 int idx = 0;
4017
4018 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4019 tree defval = TREE_PURPOSE (parm);
4020 tree constr = TREE_TYPE (parm);
4021
4022 if (list)
4023 {
4024 tree p = tree_last (list);
4025
4026 if (p && TREE_VALUE (p) != error_mark_node)
4027 {
4028 p = TREE_VALUE (p);
4029 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4030 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4031 else
4032 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4033 }
4034
4035 ++idx;
4036 }
4037
4038 if (is_non_type)
4039 {
4040 parm = TREE_VALUE (parm);
4041
4042 SET_DECL_TEMPLATE_PARM_P (parm);
4043
4044 if (TREE_TYPE (parm) != error_mark_node)
4045 {
4046 /* [temp.param]
4047
4048 The top-level cv-qualifiers on the template-parameter are
4049 ignored when determining its type. */
4050 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4051 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4052 TREE_TYPE (parm) = error_mark_node;
4053 else if (uses_parameter_packs (TREE_TYPE (parm))
4054 && !is_parameter_pack
4055 /* If we're in a nested template parameter list, the template
4056 template parameter could be a parameter pack. */
4057 && processing_template_parmlist == 1)
4058 {
4059 /* This template parameter is not a parameter pack, but it
4060 should be. Complain about "bare" parameter packs. */
4061 check_for_bare_parameter_packs (TREE_TYPE (parm));
4062
4063 /* Recover by calling this a parameter pack. */
4064 is_parameter_pack = true;
4065 }
4066 }
4067
4068 /* A template parameter is not modifiable. */
4069 TREE_CONSTANT (parm) = 1;
4070 TREE_READONLY (parm) = 1;
4071 decl = build_decl (parm_loc,
4072 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4073 TREE_CONSTANT (decl) = 1;
4074 TREE_READONLY (decl) = 1;
4075 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4076 = build_template_parm_index (idx, processing_template_decl,
4077 processing_template_decl,
4078 decl, TREE_TYPE (parm));
4079
4080 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4081 = is_parameter_pack;
4082 }
4083 else
4084 {
4085 tree t;
4086 parm = TREE_VALUE (TREE_VALUE (parm));
4087
4088 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4089 {
4090 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4091 /* This is for distinguishing between real templates and template
4092 template parameters */
4093 TREE_TYPE (parm) = t;
4094 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4095 decl = parm;
4096 }
4097 else
4098 {
4099 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4100 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4101 decl = build_decl (parm_loc,
4102 TYPE_DECL, parm, t);
4103 }
4104
4105 TYPE_NAME (t) = decl;
4106 TYPE_STUB_DECL (t) = decl;
4107 parm = decl;
4108 TEMPLATE_TYPE_PARM_INDEX (t)
4109 = build_template_parm_index (idx, processing_template_decl,
4110 processing_template_decl,
4111 decl, TREE_TYPE (parm));
4112 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4113 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4114 }
4115 DECL_ARTIFICIAL (decl) = 1;
4116 SET_DECL_TEMPLATE_PARM_P (decl);
4117
4118 /* Build requirements for the type/template parameter.
4119 This must be done after SET_DECL_TEMPLATE_PARM_P or
4120 process_template_parm could fail. */
4121 tree reqs = finish_shorthand_constraint (parm, constr);
4122
4123 pushdecl (decl);
4124
4125 /* Build the parameter node linking the parameter declaration,
4126 its default argument (if any), and its constraints (if any). */
4127 parm = build_tree_list (defval, parm);
4128 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4129
4130 return chainon (list, parm);
4131 }
4132
4133 /* The end of a template parameter list has been reached. Process the
4134 tree list into a parameter vector, converting each parameter into a more
4135 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4136 as PARM_DECLs. */
4137
4138 tree
4139 end_template_parm_list (tree parms)
4140 {
4141 int nparms;
4142 tree parm, next;
4143 tree saved_parmlist = make_tree_vec (list_length (parms));
4144
4145 /* Pop the dummy parameter level and add the real one. */
4146 current_template_parms = TREE_CHAIN (current_template_parms);
4147
4148 current_template_parms
4149 = tree_cons (size_int (processing_template_decl),
4150 saved_parmlist, current_template_parms);
4151
4152 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4153 {
4154 next = TREE_CHAIN (parm);
4155 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4156 TREE_CHAIN (parm) = NULL_TREE;
4157 }
4158
4159 --processing_template_parmlist;
4160
4161 return saved_parmlist;
4162 }
4163
4164 // Explicitly indicate the end of the template parameter list. We assume
4165 // that the current template parameters have been constructed and/or
4166 // managed explicitly, as when creating new template template parameters
4167 // from a shorthand constraint.
4168 void
4169 end_template_parm_list ()
4170 {
4171 --processing_template_parmlist;
4172 }
4173
4174 /* end_template_decl is called after a template declaration is seen. */
4175
4176 void
4177 end_template_decl (void)
4178 {
4179 reset_specialization ();
4180
4181 if (! processing_template_decl)
4182 return;
4183
4184 /* This matches the pushlevel in begin_template_parm_list. */
4185 finish_scope ();
4186
4187 --processing_template_decl;
4188 current_template_parms = TREE_CHAIN (current_template_parms);
4189 }
4190
4191 /* Takes a TREE_LIST representing a template parameter and convert it
4192 into an argument suitable to be passed to the type substitution
4193 functions. Note that If the TREE_LIST contains an error_mark
4194 node, the returned argument is error_mark_node. */
4195
4196 tree
4197 template_parm_to_arg (tree t)
4198 {
4199
4200 if (t == NULL_TREE
4201 || TREE_CODE (t) != TREE_LIST)
4202 return t;
4203
4204 if (error_operand_p (TREE_VALUE (t)))
4205 return error_mark_node;
4206
4207 t = TREE_VALUE (t);
4208
4209 if (TREE_CODE (t) == TYPE_DECL
4210 || TREE_CODE (t) == TEMPLATE_DECL)
4211 {
4212 t = TREE_TYPE (t);
4213
4214 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4215 {
4216 /* Turn this argument into a TYPE_ARGUMENT_PACK
4217 with a single element, which expands T. */
4218 tree vec = make_tree_vec (1);
4219 if (CHECKING_P)
4220 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4221
4222 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4223
4224 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4225 SET_ARGUMENT_PACK_ARGS (t, vec);
4226 }
4227 }
4228 else
4229 {
4230 t = DECL_INITIAL (t);
4231
4232 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4233 {
4234 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4235 with a single element, which expands T. */
4236 tree vec = make_tree_vec (1);
4237 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4238 if (CHECKING_P)
4239 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4240
4241 t = convert_from_reference (t);
4242 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4243
4244 t = make_node (NONTYPE_ARGUMENT_PACK);
4245 SET_ARGUMENT_PACK_ARGS (t, vec);
4246 TREE_TYPE (t) = type;
4247 }
4248 else
4249 t = convert_from_reference (t);
4250 }
4251 return t;
4252 }
4253
4254 /* Given a set of template parameters, return them as a set of template
4255 arguments. The template parameters are represented as a TREE_VEC, in
4256 the form documented in cp-tree.h for template arguments. */
4257
4258 static tree
4259 template_parms_to_args (tree parms)
4260 {
4261 tree header;
4262 tree args = NULL_TREE;
4263 int length = TMPL_PARMS_DEPTH (parms);
4264 int l = length;
4265
4266 /* If there is only one level of template parameters, we do not
4267 create a TREE_VEC of TREE_VECs. Instead, we return a single
4268 TREE_VEC containing the arguments. */
4269 if (length > 1)
4270 args = make_tree_vec (length);
4271
4272 for (header = parms; header; header = TREE_CHAIN (header))
4273 {
4274 tree a = copy_node (TREE_VALUE (header));
4275 int i;
4276
4277 TREE_TYPE (a) = NULL_TREE;
4278 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4279 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4280
4281 if (CHECKING_P)
4282 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4283
4284 if (length > 1)
4285 TREE_VEC_ELT (args, --l) = a;
4286 else
4287 args = a;
4288 }
4289
4290 return args;
4291 }
4292
4293 /* Within the declaration of a template, return the currently active
4294 template parameters as an argument TREE_VEC. */
4295
4296 static tree
4297 current_template_args (void)
4298 {
4299 return template_parms_to_args (current_template_parms);
4300 }
4301
4302 /* Update the declared TYPE by doing any lookups which were thought to be
4303 dependent, but are not now that we know the SCOPE of the declarator. */
4304
4305 tree
4306 maybe_update_decl_type (tree orig_type, tree scope)
4307 {
4308 tree type = orig_type;
4309
4310 if (type == NULL_TREE)
4311 return type;
4312
4313 if (TREE_CODE (orig_type) == TYPE_DECL)
4314 type = TREE_TYPE (type);
4315
4316 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4317 && dependent_type_p (type)
4318 /* Don't bother building up the args in this case. */
4319 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4320 {
4321 /* tsubst in the args corresponding to the template parameters,
4322 including auto if present. Most things will be unchanged, but
4323 make_typename_type and tsubst_qualified_id will resolve
4324 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4325 tree args = current_template_args ();
4326 tree auto_node = type_uses_auto (type);
4327 tree pushed;
4328 if (auto_node)
4329 {
4330 tree auto_vec = make_tree_vec (1);
4331 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4332 args = add_to_template_args (args, auto_vec);
4333 }
4334 pushed = push_scope (scope);
4335 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4336 if (pushed)
4337 pop_scope (scope);
4338 }
4339
4340 if (type == error_mark_node)
4341 return orig_type;
4342
4343 if (TREE_CODE (orig_type) == TYPE_DECL)
4344 {
4345 if (same_type_p (type, TREE_TYPE (orig_type)))
4346 type = orig_type;
4347 else
4348 type = TYPE_NAME (type);
4349 }
4350 return type;
4351 }
4352
4353 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4354 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4355 the new template is a member template. */
4356
4357 tree
4358 build_template_decl (tree decl, tree parms, bool member_template_p)
4359 {
4360 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4361 DECL_TEMPLATE_PARMS (tmpl) = parms;
4362 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4363 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4364 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4365
4366 return tmpl;
4367 }
4368
4369 struct template_parm_data
4370 {
4371 /* The level of the template parameters we are currently
4372 processing. */
4373 int level;
4374
4375 /* The index of the specialization argument we are currently
4376 processing. */
4377 int current_arg;
4378
4379 /* An array whose size is the number of template parameters. The
4380 elements are nonzero if the parameter has been used in any one
4381 of the arguments processed so far. */
4382 int* parms;
4383
4384 /* An array whose size is the number of template arguments. The
4385 elements are nonzero if the argument makes use of template
4386 parameters of this level. */
4387 int* arg_uses_template_parms;
4388 };
4389
4390 /* Subroutine of push_template_decl used to see if each template
4391 parameter in a partial specialization is used in the explicit
4392 argument list. If T is of the LEVEL given in DATA (which is
4393 treated as a template_parm_data*), then DATA->PARMS is marked
4394 appropriately. */
4395
4396 static int
4397 mark_template_parm (tree t, void* data)
4398 {
4399 int level;
4400 int idx;
4401 struct template_parm_data* tpd = (struct template_parm_data*) data;
4402
4403 template_parm_level_and_index (t, &level, &idx);
4404
4405 if (level == tpd->level)
4406 {
4407 tpd->parms[idx] = 1;
4408 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4409 }
4410
4411 /* Return zero so that for_each_template_parm will continue the
4412 traversal of the tree; we want to mark *every* template parm. */
4413 return 0;
4414 }
4415
4416 /* Process the partial specialization DECL. */
4417
4418 static tree
4419 process_partial_specialization (tree decl)
4420 {
4421 tree type = TREE_TYPE (decl);
4422 tree tinfo = get_template_info (decl);
4423 tree maintmpl = TI_TEMPLATE (tinfo);
4424 tree specargs = TI_ARGS (tinfo);
4425 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4426 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4427 tree inner_parms;
4428 tree inst;
4429 int nargs = TREE_VEC_LENGTH (inner_args);
4430 int ntparms;
4431 int i;
4432 bool did_error_intro = false;
4433 struct template_parm_data tpd;
4434 struct template_parm_data tpd2;
4435
4436 gcc_assert (current_template_parms);
4437
4438 /* A concept cannot be specialized. */
4439 if (flag_concepts && variable_concept_p (maintmpl))
4440 {
4441 error ("specialization of variable concept %q#D", maintmpl);
4442 return error_mark_node;
4443 }
4444
4445 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4446 ntparms = TREE_VEC_LENGTH (inner_parms);
4447
4448 /* We check that each of the template parameters given in the
4449 partial specialization is used in the argument list to the
4450 specialization. For example:
4451
4452 template <class T> struct S;
4453 template <class T> struct S<T*>;
4454
4455 The second declaration is OK because `T*' uses the template
4456 parameter T, whereas
4457
4458 template <class T> struct S<int>;
4459
4460 is no good. Even trickier is:
4461
4462 template <class T>
4463 struct S1
4464 {
4465 template <class U>
4466 struct S2;
4467 template <class U>
4468 struct S2<T>;
4469 };
4470
4471 The S2<T> declaration is actually invalid; it is a
4472 full-specialization. Of course,
4473
4474 template <class U>
4475 struct S2<T (*)(U)>;
4476
4477 or some such would have been OK. */
4478 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4479 tpd.parms = XALLOCAVEC (int, ntparms);
4480 memset (tpd.parms, 0, sizeof (int) * ntparms);
4481
4482 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4483 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4484 for (i = 0; i < nargs; ++i)
4485 {
4486 tpd.current_arg = i;
4487 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4488 &mark_template_parm,
4489 &tpd,
4490 NULL,
4491 /*include_nondeduced_p=*/false);
4492 }
4493 for (i = 0; i < ntparms; ++i)
4494 if (tpd.parms[i] == 0)
4495 {
4496 /* One of the template parms was not used in a deduced context in the
4497 specialization. */
4498 if (!did_error_intro)
4499 {
4500 error ("template parameters not deducible in "
4501 "partial specialization:");
4502 did_error_intro = true;
4503 }
4504
4505 inform (input_location, " %qD",
4506 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4507 }
4508
4509 if (did_error_intro)
4510 return error_mark_node;
4511
4512 /* [temp.class.spec]
4513
4514 The argument list of the specialization shall not be identical to
4515 the implicit argument list of the primary template. */
4516 tree main_args
4517 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4518 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4519 && (!flag_concepts
4520 || !strictly_subsumes (current_template_constraints (),
4521 get_constraints (maintmpl))))
4522 {
4523 if (!flag_concepts)
4524 error ("partial specialization %q+D does not specialize "
4525 "any template arguments", decl);
4526 else
4527 error ("partial specialization %q+D does not specialize any "
4528 "template arguments and is not more constrained than", decl);
4529 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4530 }
4531
4532 /* A partial specialization that replaces multiple parameters of the
4533 primary template with a pack expansion is less specialized for those
4534 parameters. */
4535 if (nargs < DECL_NTPARMS (maintmpl))
4536 {
4537 error ("partial specialization is not more specialized than the "
4538 "primary template because it replaces multiple parameters "
4539 "with a pack expansion");
4540 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4541 return decl;
4542 }
4543
4544 /* [temp.class.spec]
4545
4546 A partially specialized non-type argument expression shall not
4547 involve template parameters of the partial specialization except
4548 when the argument expression is a simple identifier.
4549
4550 The type of a template parameter corresponding to a specialized
4551 non-type argument shall not be dependent on a parameter of the
4552 specialization.
4553
4554 Also, we verify that pack expansions only occur at the
4555 end of the argument list. */
4556 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4557 tpd2.parms = 0;
4558 for (i = 0; i < nargs; ++i)
4559 {
4560 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4561 tree arg = TREE_VEC_ELT (inner_args, i);
4562 tree packed_args = NULL_TREE;
4563 int j, len = 1;
4564
4565 if (ARGUMENT_PACK_P (arg))
4566 {
4567 /* Extract the arguments from the argument pack. We'll be
4568 iterating over these in the following loop. */
4569 packed_args = ARGUMENT_PACK_ARGS (arg);
4570 len = TREE_VEC_LENGTH (packed_args);
4571 }
4572
4573 for (j = 0; j < len; j++)
4574 {
4575 if (packed_args)
4576 /* Get the Jth argument in the parameter pack. */
4577 arg = TREE_VEC_ELT (packed_args, j);
4578
4579 if (PACK_EXPANSION_P (arg))
4580 {
4581 /* Pack expansions must come at the end of the
4582 argument list. */
4583 if ((packed_args && j < len - 1)
4584 || (!packed_args && i < nargs - 1))
4585 {
4586 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4587 error ("parameter pack argument %qE must be at the "
4588 "end of the template argument list", arg);
4589 else
4590 error ("parameter pack argument %qT must be at the "
4591 "end of the template argument list", arg);
4592 }
4593 }
4594
4595 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4596 /* We only care about the pattern. */
4597 arg = PACK_EXPANSION_PATTERN (arg);
4598
4599 if (/* These first two lines are the `non-type' bit. */
4600 !TYPE_P (arg)
4601 && TREE_CODE (arg) != TEMPLATE_DECL
4602 /* This next two lines are the `argument expression is not just a
4603 simple identifier' condition and also the `specialized
4604 non-type argument' bit. */
4605 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4606 && !(REFERENCE_REF_P (arg)
4607 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4608 {
4609 if ((!packed_args && tpd.arg_uses_template_parms[i])
4610 || (packed_args && uses_template_parms (arg)))
4611 error ("template argument %qE involves template parameter(s)",
4612 arg);
4613 else
4614 {
4615 /* Look at the corresponding template parameter,
4616 marking which template parameters its type depends
4617 upon. */
4618 tree type = TREE_TYPE (parm);
4619
4620 if (!tpd2.parms)
4621 {
4622 /* We haven't yet initialized TPD2. Do so now. */
4623 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4624 /* The number of parameters here is the number in the
4625 main template, which, as checked in the assertion
4626 above, is NARGS. */
4627 tpd2.parms = XALLOCAVEC (int, nargs);
4628 tpd2.level =
4629 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4630 }
4631
4632 /* Mark the template parameters. But this time, we're
4633 looking for the template parameters of the main
4634 template, not in the specialization. */
4635 tpd2.current_arg = i;
4636 tpd2.arg_uses_template_parms[i] = 0;
4637 memset (tpd2.parms, 0, sizeof (int) * nargs);
4638 for_each_template_parm (type,
4639 &mark_template_parm,
4640 &tpd2,
4641 NULL,
4642 /*include_nondeduced_p=*/false);
4643
4644 if (tpd2.arg_uses_template_parms [i])
4645 {
4646 /* The type depended on some template parameters.
4647 If they are fully specialized in the
4648 specialization, that's OK. */
4649 int j;
4650 int count = 0;
4651 for (j = 0; j < nargs; ++j)
4652 if (tpd2.parms[j] != 0
4653 && tpd.arg_uses_template_parms [j])
4654 ++count;
4655 if (count != 0)
4656 error_n (input_location, count,
4657 "type %qT of template argument %qE depends "
4658 "on a template parameter",
4659 "type %qT of template argument %qE depends "
4660 "on template parameters",
4661 type,
4662 arg);
4663 }
4664 }
4665 }
4666 }
4667 }
4668
4669 /* We should only get here once. */
4670 if (TREE_CODE (decl) == TYPE_DECL)
4671 gcc_assert (!COMPLETE_TYPE_P (type));
4672
4673 // Build the template decl.
4674 tree tmpl = build_template_decl (decl, current_template_parms,
4675 DECL_MEMBER_TEMPLATE_P (maintmpl));
4676 TREE_TYPE (tmpl) = type;
4677 DECL_TEMPLATE_RESULT (tmpl) = decl;
4678 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4679 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4680 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4681
4682 if (VAR_P (decl))
4683 /* We didn't register this in check_explicit_specialization so we could
4684 wait until the constraints were set. */
4685 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4686 else
4687 associate_classtype_constraints (type);
4688
4689 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4690 = tree_cons (specargs, tmpl,
4691 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4692 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4693
4694 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4695 inst = TREE_CHAIN (inst))
4696 {
4697 tree instance = TREE_VALUE (inst);
4698 if (TYPE_P (instance)
4699 ? (COMPLETE_TYPE_P (instance)
4700 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4701 : DECL_TEMPLATE_INSTANTIATION (instance))
4702 {
4703 tree spec = most_specialized_partial_spec (instance, tf_none);
4704 tree inst_decl = (DECL_P (instance)
4705 ? instance : TYPE_NAME (instance));
4706 if (!spec)
4707 /* OK */;
4708 else if (spec == error_mark_node)
4709 permerror (input_location,
4710 "declaration of %qD ambiguates earlier template "
4711 "instantiation for %qD", decl, inst_decl);
4712 else if (TREE_VALUE (spec) == tmpl)
4713 permerror (input_location,
4714 "partial specialization of %qD after instantiation "
4715 "of %qD", decl, inst_decl);
4716 }
4717 }
4718
4719 return decl;
4720 }
4721
4722 /* PARM is a template parameter of some form; return the corresponding
4723 TEMPLATE_PARM_INDEX. */
4724
4725 static tree
4726 get_template_parm_index (tree parm)
4727 {
4728 if (TREE_CODE (parm) == PARM_DECL
4729 || TREE_CODE (parm) == CONST_DECL)
4730 parm = DECL_INITIAL (parm);
4731 else if (TREE_CODE (parm) == TYPE_DECL
4732 || TREE_CODE (parm) == TEMPLATE_DECL)
4733 parm = TREE_TYPE (parm);
4734 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4735 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4736 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4737 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4738 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4739 return parm;
4740 }
4741
4742 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4743 parameter packs used by the template parameter PARM. */
4744
4745 static void
4746 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4747 {
4748 /* A type parm can't refer to another parm. */
4749 if (TREE_CODE (parm) == TYPE_DECL)
4750 return;
4751 else if (TREE_CODE (parm) == PARM_DECL)
4752 {
4753 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4754 ppd, ppd->visited);
4755 return;
4756 }
4757
4758 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4759
4760 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4761 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4762 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4763 }
4764
4765 /* PARM is a template parameter pack. Return any parameter packs used in
4766 its type or the type of any of its template parameters. If there are
4767 any such packs, it will be instantiated into a fixed template parameter
4768 list by partial instantiation rather than be fully deduced. */
4769
4770 tree
4771 fixed_parameter_pack_p (tree parm)
4772 {
4773 /* This can only be true in a member template. */
4774 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4775 return NULL_TREE;
4776 /* This can only be true for a parameter pack. */
4777 if (!template_parameter_pack_p (parm))
4778 return NULL_TREE;
4779 /* A type parm can't refer to another parm. */
4780 if (TREE_CODE (parm) == TYPE_DECL)
4781 return NULL_TREE;
4782
4783 tree parameter_packs = NULL_TREE;
4784 struct find_parameter_pack_data ppd;
4785 ppd.parameter_packs = &parameter_packs;
4786 ppd.visited = new hash_set<tree>;
4787 ppd.type_pack_expansion_p = false;
4788
4789 fixed_parameter_pack_p_1 (parm, &ppd);
4790
4791 delete ppd.visited;
4792 return parameter_packs;
4793 }
4794
4795 /* Check that a template declaration's use of default arguments and
4796 parameter packs is not invalid. Here, PARMS are the template
4797 parameters. IS_PRIMARY is true if DECL is the thing declared by
4798 a primary template. IS_PARTIAL is true if DECL is a partial
4799 specialization.
4800
4801 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4802 declaration (but not a definition); 1 indicates a declaration, 2
4803 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4804 emitted for extraneous default arguments.
4805
4806 Returns TRUE if there were no errors found, FALSE otherwise. */
4807
4808 bool
4809 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4810 bool is_partial, int is_friend_decl)
4811 {
4812 const char *msg;
4813 int last_level_to_check;
4814 tree parm_level;
4815 bool no_errors = true;
4816
4817 /* [temp.param]
4818
4819 A default template-argument shall not be specified in a
4820 function template declaration or a function template definition, nor
4821 in the template-parameter-list of the definition of a member of a
4822 class template. */
4823
4824 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4825 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4826 /* You can't have a function template declaration in a local
4827 scope, nor you can you define a member of a class template in a
4828 local scope. */
4829 return true;
4830
4831 if ((TREE_CODE (decl) == TYPE_DECL
4832 && TREE_TYPE (decl)
4833 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4834 || (TREE_CODE (decl) == FUNCTION_DECL
4835 && LAMBDA_FUNCTION_P (decl)))
4836 /* A lambda doesn't have an explicit declaration; don't complain
4837 about the parms of the enclosing class. */
4838 return true;
4839
4840 if (current_class_type
4841 && !TYPE_BEING_DEFINED (current_class_type)
4842 && DECL_LANG_SPECIFIC (decl)
4843 && DECL_DECLARES_FUNCTION_P (decl)
4844 /* If this is either a friend defined in the scope of the class
4845 or a member function. */
4846 && (DECL_FUNCTION_MEMBER_P (decl)
4847 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4848 : DECL_FRIEND_CONTEXT (decl)
4849 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4850 : false)
4851 /* And, if it was a member function, it really was defined in
4852 the scope of the class. */
4853 && (!DECL_FUNCTION_MEMBER_P (decl)
4854 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4855 /* We already checked these parameters when the template was
4856 declared, so there's no need to do it again now. This function
4857 was defined in class scope, but we're processing its body now
4858 that the class is complete. */
4859 return true;
4860
4861 /* Core issue 226 (C++0x only): the following only applies to class
4862 templates. */
4863 if (is_primary
4864 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4865 {
4866 /* [temp.param]
4867
4868 If a template-parameter has a default template-argument, all
4869 subsequent template-parameters shall have a default
4870 template-argument supplied. */
4871 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4872 {
4873 tree inner_parms = TREE_VALUE (parm_level);
4874 int ntparms = TREE_VEC_LENGTH (inner_parms);
4875 int seen_def_arg_p = 0;
4876 int i;
4877
4878 for (i = 0; i < ntparms; ++i)
4879 {
4880 tree parm = TREE_VEC_ELT (inner_parms, i);
4881
4882 if (parm == error_mark_node)
4883 continue;
4884
4885 if (TREE_PURPOSE (parm))
4886 seen_def_arg_p = 1;
4887 else if (seen_def_arg_p
4888 && !template_parameter_pack_p (TREE_VALUE (parm)))
4889 {
4890 error ("no default argument for %qD", TREE_VALUE (parm));
4891 /* For better subsequent error-recovery, we indicate that
4892 there should have been a default argument. */
4893 TREE_PURPOSE (parm) = error_mark_node;
4894 no_errors = false;
4895 }
4896 else if (!is_partial
4897 && !is_friend_decl
4898 /* Don't complain about an enclosing partial
4899 specialization. */
4900 && parm_level == parms
4901 && TREE_CODE (decl) == TYPE_DECL
4902 && i < ntparms - 1
4903 && template_parameter_pack_p (TREE_VALUE (parm))
4904 /* A fixed parameter pack will be partially
4905 instantiated into a fixed length list. */
4906 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4907 {
4908 /* A primary class template can only have one
4909 parameter pack, at the end of the template
4910 parameter list. */
4911
4912 error ("parameter pack %q+D must be at the end of the"
4913 " template parameter list", TREE_VALUE (parm));
4914
4915 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4916 = error_mark_node;
4917 no_errors = false;
4918 }
4919 }
4920 }
4921 }
4922
4923 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4924 || is_partial
4925 || !is_primary
4926 || is_friend_decl)
4927 /* For an ordinary class template, default template arguments are
4928 allowed at the innermost level, e.g.:
4929 template <class T = int>
4930 struct S {};
4931 but, in a partial specialization, they're not allowed even
4932 there, as we have in [temp.class.spec]:
4933
4934 The template parameter list of a specialization shall not
4935 contain default template argument values.
4936
4937 So, for a partial specialization, or for a function template
4938 (in C++98/C++03), we look at all of them. */
4939 ;
4940 else
4941 /* But, for a primary class template that is not a partial
4942 specialization we look at all template parameters except the
4943 innermost ones. */
4944 parms = TREE_CHAIN (parms);
4945
4946 /* Figure out what error message to issue. */
4947 if (is_friend_decl == 2)
4948 msg = G_("default template arguments may not be used in function template "
4949 "friend re-declaration");
4950 else if (is_friend_decl)
4951 msg = G_("default template arguments may not be used in function template "
4952 "friend declarations");
4953 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4954 msg = G_("default template arguments may not be used in function templates "
4955 "without -std=c++11 or -std=gnu++11");
4956 else if (is_partial)
4957 msg = G_("default template arguments may not be used in "
4958 "partial specializations");
4959 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4960 msg = G_("default argument for template parameter for class enclosing %qD");
4961 else
4962 /* Per [temp.param]/9, "A default template-argument shall not be
4963 specified in the template-parameter-lists of the definition of
4964 a member of a class template that appears outside of the member's
4965 class.", thus if we aren't handling a member of a class template
4966 there is no need to examine the parameters. */
4967 return true;
4968
4969 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4970 /* If we're inside a class definition, there's no need to
4971 examine the parameters to the class itself. On the one
4972 hand, they will be checked when the class is defined, and,
4973 on the other, default arguments are valid in things like:
4974 template <class T = double>
4975 struct S { template <class U> void f(U); };
4976 Here the default argument for `S' has no bearing on the
4977 declaration of `f'. */
4978 last_level_to_check = template_class_depth (current_class_type) + 1;
4979 else
4980 /* Check everything. */
4981 last_level_to_check = 0;
4982
4983 for (parm_level = parms;
4984 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4985 parm_level = TREE_CHAIN (parm_level))
4986 {
4987 tree inner_parms = TREE_VALUE (parm_level);
4988 int i;
4989 int ntparms;
4990
4991 ntparms = TREE_VEC_LENGTH (inner_parms);
4992 for (i = 0; i < ntparms; ++i)
4993 {
4994 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4995 continue;
4996
4997 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4998 {
4999 if (msg)
5000 {
5001 no_errors = false;
5002 if (is_friend_decl == 2)
5003 return no_errors;
5004
5005 error (msg, decl);
5006 msg = 0;
5007 }
5008
5009 /* Clear out the default argument so that we are not
5010 confused later. */
5011 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5012 }
5013 }
5014
5015 /* At this point, if we're still interested in issuing messages,
5016 they must apply to classes surrounding the object declared. */
5017 if (msg)
5018 msg = G_("default argument for template parameter for class "
5019 "enclosing %qD");
5020 }
5021
5022 return no_errors;
5023 }
5024
5025 /* Worker for push_template_decl_real, called via
5026 for_each_template_parm. DATA is really an int, indicating the
5027 level of the parameters we are interested in. If T is a template
5028 parameter of that level, return nonzero. */
5029
5030 static int
5031 template_parm_this_level_p (tree t, void* data)
5032 {
5033 int this_level = *(int *)data;
5034 int level;
5035
5036 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5037 level = TEMPLATE_PARM_LEVEL (t);
5038 else
5039 level = TEMPLATE_TYPE_LEVEL (t);
5040 return level == this_level;
5041 }
5042
5043 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5044 parameters given by current_template_args, or reuses a
5045 previously existing one, if appropriate. Returns the DECL, or an
5046 equivalent one, if it is replaced via a call to duplicate_decls.
5047
5048 If IS_FRIEND is true, DECL is a friend declaration. */
5049
5050 tree
5051 push_template_decl_real (tree decl, bool is_friend)
5052 {
5053 tree tmpl;
5054 tree args;
5055 tree info;
5056 tree ctx;
5057 bool is_primary;
5058 bool is_partial;
5059 int new_template_p = 0;
5060 /* True if the template is a member template, in the sense of
5061 [temp.mem]. */
5062 bool member_template_p = false;
5063
5064 if (decl == error_mark_node || !current_template_parms)
5065 return error_mark_node;
5066
5067 /* See if this is a partial specialization. */
5068 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5069 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5070 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5071 || (VAR_P (decl)
5072 && DECL_LANG_SPECIFIC (decl)
5073 && DECL_TEMPLATE_SPECIALIZATION (decl)
5074 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5075
5076 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5077 is_friend = true;
5078
5079 if (is_friend)
5080 /* For a friend, we want the context of the friend function, not
5081 the type of which it is a friend. */
5082 ctx = CP_DECL_CONTEXT (decl);
5083 else if (CP_DECL_CONTEXT (decl)
5084 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5085 /* In the case of a virtual function, we want the class in which
5086 it is defined. */
5087 ctx = CP_DECL_CONTEXT (decl);
5088 else
5089 /* Otherwise, if we're currently defining some class, the DECL
5090 is assumed to be a member of the class. */
5091 ctx = current_scope ();
5092
5093 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5094 ctx = NULL_TREE;
5095
5096 if (!DECL_CONTEXT (decl))
5097 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5098
5099 /* See if this is a primary template. */
5100 if (is_friend && ctx
5101 && uses_template_parms_level (ctx, processing_template_decl))
5102 /* A friend template that specifies a class context, i.e.
5103 template <typename T> friend void A<T>::f();
5104 is not primary. */
5105 is_primary = false;
5106 else if (TREE_CODE (decl) == TYPE_DECL
5107 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5108 is_primary = false;
5109 else
5110 is_primary = template_parm_scope_p ();
5111
5112 if (is_primary)
5113 {
5114 warning (OPT_Wtemplates, "template %qD declared", decl);
5115
5116 if (DECL_CLASS_SCOPE_P (decl))
5117 member_template_p = true;
5118 if (TREE_CODE (decl) == TYPE_DECL
5119 && anon_aggrname_p (DECL_NAME (decl)))
5120 {
5121 error ("template class without a name");
5122 return error_mark_node;
5123 }
5124 else if (TREE_CODE (decl) == FUNCTION_DECL)
5125 {
5126 if (member_template_p)
5127 {
5128 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5129 error ("member template %qD may not have virt-specifiers", decl);
5130 }
5131 if (DECL_DESTRUCTOR_P (decl))
5132 {
5133 /* [temp.mem]
5134
5135 A destructor shall not be a member template. */
5136 error ("destructor %qD declared as member template", decl);
5137 return error_mark_node;
5138 }
5139 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5140 && (!prototype_p (TREE_TYPE (decl))
5141 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5142 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5143 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5144 == void_list_node)))
5145 {
5146 /* [basic.stc.dynamic.allocation]
5147
5148 An allocation function can be a function
5149 template. ... Template allocation functions shall
5150 have two or more parameters. */
5151 error ("invalid template declaration of %qD", decl);
5152 return error_mark_node;
5153 }
5154 }
5155 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5156 && CLASS_TYPE_P (TREE_TYPE (decl)))
5157 /* OK */;
5158 else if (TREE_CODE (decl) == TYPE_DECL
5159 && TYPE_DECL_ALIAS_P (decl))
5160 /* alias-declaration */
5161 gcc_assert (!DECL_ARTIFICIAL (decl));
5162 else if (VAR_P (decl))
5163 /* C++14 variable template. */;
5164 else
5165 {
5166 error ("template declaration of %q#D", decl);
5167 return error_mark_node;
5168 }
5169 }
5170
5171 /* Check to see that the rules regarding the use of default
5172 arguments are not being violated. */
5173 check_default_tmpl_args (decl, current_template_parms,
5174 is_primary, is_partial, /*is_friend_decl=*/0);
5175
5176 /* Ensure that there are no parameter packs in the type of this
5177 declaration that have not been expanded. */
5178 if (TREE_CODE (decl) == FUNCTION_DECL)
5179 {
5180 /* Check each of the arguments individually to see if there are
5181 any bare parameter packs. */
5182 tree type = TREE_TYPE (decl);
5183 tree arg = DECL_ARGUMENTS (decl);
5184 tree argtype = TYPE_ARG_TYPES (type);
5185
5186 while (arg && argtype)
5187 {
5188 if (!DECL_PACK_P (arg)
5189 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5190 {
5191 /* This is a PARM_DECL that contains unexpanded parameter
5192 packs. We have already complained about this in the
5193 check_for_bare_parameter_packs call, so just replace
5194 these types with ERROR_MARK_NODE. */
5195 TREE_TYPE (arg) = error_mark_node;
5196 TREE_VALUE (argtype) = error_mark_node;
5197 }
5198
5199 arg = DECL_CHAIN (arg);
5200 argtype = TREE_CHAIN (argtype);
5201 }
5202
5203 /* Check for bare parameter packs in the return type and the
5204 exception specifiers. */
5205 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5206 /* Errors were already issued, set return type to int
5207 as the frontend doesn't expect error_mark_node as
5208 the return type. */
5209 TREE_TYPE (type) = integer_type_node;
5210 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5211 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5212 }
5213 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5214 && TYPE_DECL_ALIAS_P (decl))
5215 ? DECL_ORIGINAL_TYPE (decl)
5216 : TREE_TYPE (decl)))
5217 {
5218 TREE_TYPE (decl) = error_mark_node;
5219 return error_mark_node;
5220 }
5221
5222 if (is_partial)
5223 return process_partial_specialization (decl);
5224
5225 args = current_template_args ();
5226
5227 if (!ctx
5228 || TREE_CODE (ctx) == FUNCTION_DECL
5229 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5230 || (TREE_CODE (decl) == TYPE_DECL
5231 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5232 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5233 {
5234 if (DECL_LANG_SPECIFIC (decl)
5235 && DECL_TEMPLATE_INFO (decl)
5236 && DECL_TI_TEMPLATE (decl))
5237 tmpl = DECL_TI_TEMPLATE (decl);
5238 /* If DECL is a TYPE_DECL for a class-template, then there won't
5239 be DECL_LANG_SPECIFIC. The information equivalent to
5240 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5241 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5242 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5243 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5244 {
5245 /* Since a template declaration already existed for this
5246 class-type, we must be redeclaring it here. Make sure
5247 that the redeclaration is valid. */
5248 redeclare_class_template (TREE_TYPE (decl),
5249 current_template_parms,
5250 current_template_constraints ());
5251 /* We don't need to create a new TEMPLATE_DECL; just use the
5252 one we already had. */
5253 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5254 }
5255 else
5256 {
5257 tmpl = build_template_decl (decl, current_template_parms,
5258 member_template_p);
5259 new_template_p = 1;
5260
5261 if (DECL_LANG_SPECIFIC (decl)
5262 && DECL_TEMPLATE_SPECIALIZATION (decl))
5263 {
5264 /* A specialization of a member template of a template
5265 class. */
5266 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5267 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5268 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5269 }
5270 }
5271 }
5272 else
5273 {
5274 tree a, t, current, parms;
5275 int i;
5276 tree tinfo = get_template_info (decl);
5277
5278 if (!tinfo)
5279 {
5280 error ("template definition of non-template %q#D", decl);
5281 return error_mark_node;
5282 }
5283
5284 tmpl = TI_TEMPLATE (tinfo);
5285
5286 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5287 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5288 && DECL_TEMPLATE_SPECIALIZATION (decl)
5289 && DECL_MEMBER_TEMPLATE_P (tmpl))
5290 {
5291 tree new_tmpl;
5292
5293 /* The declaration is a specialization of a member
5294 template, declared outside the class. Therefore, the
5295 innermost template arguments will be NULL, so we
5296 replace them with the arguments determined by the
5297 earlier call to check_explicit_specialization. */
5298 args = DECL_TI_ARGS (decl);
5299
5300 new_tmpl
5301 = build_template_decl (decl, current_template_parms,
5302 member_template_p);
5303 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5304 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5305 DECL_TI_TEMPLATE (decl) = new_tmpl;
5306 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5307 DECL_TEMPLATE_INFO (new_tmpl)
5308 = build_template_info (tmpl, args);
5309
5310 register_specialization (new_tmpl,
5311 most_general_template (tmpl),
5312 args,
5313 is_friend, 0);
5314 return decl;
5315 }
5316
5317 /* Make sure the template headers we got make sense. */
5318
5319 parms = DECL_TEMPLATE_PARMS (tmpl);
5320 i = TMPL_PARMS_DEPTH (parms);
5321 if (TMPL_ARGS_DEPTH (args) != i)
5322 {
5323 error ("expected %d levels of template parms for %q#D, got %d",
5324 i, decl, TMPL_ARGS_DEPTH (args));
5325 DECL_INTERFACE_KNOWN (decl) = 1;
5326 return error_mark_node;
5327 }
5328 else
5329 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5330 {
5331 a = TMPL_ARGS_LEVEL (args, i);
5332 t = INNERMOST_TEMPLATE_PARMS (parms);
5333
5334 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5335 {
5336 if (current == decl)
5337 error ("got %d template parameters for %q#D",
5338 TREE_VEC_LENGTH (a), decl);
5339 else
5340 error ("got %d template parameters for %q#T",
5341 TREE_VEC_LENGTH (a), current);
5342 error (" but %d required", TREE_VEC_LENGTH (t));
5343 /* Avoid crash in import_export_decl. */
5344 DECL_INTERFACE_KNOWN (decl) = 1;
5345 return error_mark_node;
5346 }
5347
5348 if (current == decl)
5349 current = ctx;
5350 else if (current == NULL_TREE)
5351 /* Can happen in erroneous input. */
5352 break;
5353 else
5354 current = get_containing_scope (current);
5355 }
5356
5357 /* Check that the parms are used in the appropriate qualifying scopes
5358 in the declarator. */
5359 if (!comp_template_args
5360 (TI_ARGS (tinfo),
5361 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5362 {
5363 error ("\
5364 template arguments to %qD do not match original template %qD",
5365 decl, DECL_TEMPLATE_RESULT (tmpl));
5366 if (!uses_template_parms (TI_ARGS (tinfo)))
5367 inform (input_location, "use template<> for an explicit specialization");
5368 /* Avoid crash in import_export_decl. */
5369 DECL_INTERFACE_KNOWN (decl) = 1;
5370 return error_mark_node;
5371 }
5372 }
5373
5374 DECL_TEMPLATE_RESULT (tmpl) = decl;
5375 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5376
5377 /* Push template declarations for global functions and types. Note
5378 that we do not try to push a global template friend declared in a
5379 template class; such a thing may well depend on the template
5380 parameters of the class. */
5381 if (new_template_p && !ctx
5382 && !(is_friend && template_class_depth (current_class_type) > 0))
5383 {
5384 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5385 if (tmpl == error_mark_node)
5386 return error_mark_node;
5387
5388 /* Hide template friend classes that haven't been declared yet. */
5389 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5390 {
5391 DECL_ANTICIPATED (tmpl) = 1;
5392 DECL_FRIEND_P (tmpl) = 1;
5393 }
5394 }
5395
5396 if (is_primary)
5397 {
5398 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5399 int i;
5400
5401 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5402 if (DECL_CONV_FN_P (tmpl))
5403 {
5404 int depth = TMPL_PARMS_DEPTH (parms);
5405
5406 /* It is a conversion operator. See if the type converted to
5407 depends on innermost template operands. */
5408
5409 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5410 depth))
5411 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5412 }
5413
5414 /* Give template template parms a DECL_CONTEXT of the template
5415 for which they are a parameter. */
5416 parms = INNERMOST_TEMPLATE_PARMS (parms);
5417 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5418 {
5419 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5420 if (TREE_CODE (parm) == TEMPLATE_DECL)
5421 DECL_CONTEXT (parm) = tmpl;
5422 }
5423
5424 if (TREE_CODE (decl) == TYPE_DECL
5425 && TYPE_DECL_ALIAS_P (decl)
5426 && complex_alias_template_p (tmpl))
5427 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5428 }
5429
5430 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5431 back to its most general template. If TMPL is a specialization,
5432 ARGS may only have the innermost set of arguments. Add the missing
5433 argument levels if necessary. */
5434 if (DECL_TEMPLATE_INFO (tmpl))
5435 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5436
5437 info = build_template_info (tmpl, args);
5438
5439 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5440 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5441 else
5442 {
5443 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5444 retrofit_lang_decl (decl);
5445 if (DECL_LANG_SPECIFIC (decl))
5446 DECL_TEMPLATE_INFO (decl) = info;
5447 }
5448
5449 if (flag_implicit_templates
5450 && !is_friend
5451 && TREE_PUBLIC (decl)
5452 && VAR_OR_FUNCTION_DECL_P (decl))
5453 /* Set DECL_COMDAT on template instantiations; if we force
5454 them to be emitted by explicit instantiation or -frepo,
5455 mark_needed will tell cgraph to do the right thing. */
5456 DECL_COMDAT (decl) = true;
5457
5458 return DECL_TEMPLATE_RESULT (tmpl);
5459 }
5460
5461 tree
5462 push_template_decl (tree decl)
5463 {
5464 return push_template_decl_real (decl, false);
5465 }
5466
5467 /* FN is an inheriting constructor that inherits from the constructor
5468 template INHERITED; turn FN into a constructor template with a matching
5469 template header. */
5470
5471 tree
5472 add_inherited_template_parms (tree fn, tree inherited)
5473 {
5474 tree inner_parms
5475 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5476 inner_parms = copy_node (inner_parms);
5477 tree parms
5478 = tree_cons (size_int (processing_template_decl + 1),
5479 inner_parms, current_template_parms);
5480 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5481 tree args = template_parms_to_args (parms);
5482 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5483 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5484 DECL_TEMPLATE_RESULT (tmpl) = fn;
5485 DECL_ARTIFICIAL (tmpl) = true;
5486 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5487 return tmpl;
5488 }
5489
5490 /* Called when a class template TYPE is redeclared with the indicated
5491 template PARMS, e.g.:
5492
5493 template <class T> struct S;
5494 template <class T> struct S {}; */
5495
5496 bool
5497 redeclare_class_template (tree type, tree parms, tree cons)
5498 {
5499 tree tmpl;
5500 tree tmpl_parms;
5501 int i;
5502
5503 if (!TYPE_TEMPLATE_INFO (type))
5504 {
5505 error ("%qT is not a template type", type);
5506 return false;
5507 }
5508
5509 tmpl = TYPE_TI_TEMPLATE (type);
5510 if (!PRIMARY_TEMPLATE_P (tmpl))
5511 /* The type is nested in some template class. Nothing to worry
5512 about here; there are no new template parameters for the nested
5513 type. */
5514 return true;
5515
5516 if (!parms)
5517 {
5518 error ("template specifiers not specified in declaration of %qD",
5519 tmpl);
5520 return false;
5521 }
5522
5523 parms = INNERMOST_TEMPLATE_PARMS (parms);
5524 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5525
5526 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5527 {
5528 error_n (input_location, TREE_VEC_LENGTH (parms),
5529 "redeclared with %d template parameter",
5530 "redeclared with %d template parameters",
5531 TREE_VEC_LENGTH (parms));
5532 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5533 "previous declaration %qD used %d template parameter",
5534 "previous declaration %qD used %d template parameters",
5535 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5536 return false;
5537 }
5538
5539 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5540 {
5541 tree tmpl_parm;
5542 tree parm;
5543 tree tmpl_default;
5544 tree parm_default;
5545
5546 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5547 || TREE_VEC_ELT (parms, i) == error_mark_node)
5548 continue;
5549
5550 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5551 if (error_operand_p (tmpl_parm))
5552 return false;
5553
5554 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5555 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5556 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5557
5558 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5559 TEMPLATE_DECL. */
5560 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5561 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5562 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5563 || (TREE_CODE (tmpl_parm) != PARM_DECL
5564 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5565 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5566 || (TREE_CODE (tmpl_parm) == PARM_DECL
5567 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5568 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5569 {
5570 error ("template parameter %q+#D", tmpl_parm);
5571 error ("redeclared here as %q#D", parm);
5572 return false;
5573 }
5574
5575 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5576 {
5577 /* We have in [temp.param]:
5578
5579 A template-parameter may not be given default arguments
5580 by two different declarations in the same scope. */
5581 error_at (input_location, "redefinition of default argument for %q#D", parm);
5582 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5583 "original definition appeared here");
5584 return false;
5585 }
5586
5587 if (parm_default != NULL_TREE)
5588 /* Update the previous template parameters (which are the ones
5589 that will really count) with the new default value. */
5590 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5591 else if (tmpl_default != NULL_TREE)
5592 /* Update the new parameters, too; they'll be used as the
5593 parameters for any members. */
5594 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5595
5596 /* Give each template template parm in this redeclaration a
5597 DECL_CONTEXT of the template for which they are a parameter. */
5598 if (TREE_CODE (parm) == TEMPLATE_DECL)
5599 {
5600 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5601 DECL_CONTEXT (parm) = tmpl;
5602 }
5603 }
5604
5605 // Cannot redeclare a class template with a different set of constraints.
5606 if (!equivalent_constraints (get_constraints (tmpl), cons))
5607 {
5608 error_at (input_location, "redeclaration %q#D with different "
5609 "constraints", tmpl);
5610 inform (DECL_SOURCE_LOCATION (tmpl),
5611 "original declaration appeared here");
5612 }
5613
5614 return true;
5615 }
5616
5617 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5618 to be used when the caller has already checked
5619 (processing_template_decl
5620 && !instantiation_dependent_expression_p (expr)
5621 && potential_constant_expression (expr))
5622 and cleared processing_template_decl. */
5623
5624 tree
5625 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5626 {
5627 return tsubst_copy_and_build (expr,
5628 /*args=*/NULL_TREE,
5629 complain,
5630 /*in_decl=*/NULL_TREE,
5631 /*function_p=*/false,
5632 /*integral_constant_expression_p=*/true);
5633 }
5634
5635 /* Simplify EXPR if it is a non-dependent expression. Returns the
5636 (possibly simplified) expression. */
5637
5638 tree
5639 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5640 {
5641 if (expr == NULL_TREE)
5642 return NULL_TREE;
5643
5644 /* If we're in a template, but EXPR isn't value dependent, simplify
5645 it. We're supposed to treat:
5646
5647 template <typename T> void f(T[1 + 1]);
5648 template <typename T> void f(T[2]);
5649
5650 as two declarations of the same function, for example. */
5651 if (processing_template_decl
5652 && !instantiation_dependent_expression_p (expr)
5653 && potential_constant_expression (expr))
5654 {
5655 processing_template_decl_sentinel s;
5656 expr = instantiate_non_dependent_expr_internal (expr, complain);
5657 }
5658 return expr;
5659 }
5660
5661 tree
5662 instantiate_non_dependent_expr (tree expr)
5663 {
5664 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5665 }
5666
5667 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5668 an uninstantiated expression. */
5669
5670 tree
5671 instantiate_non_dependent_or_null (tree expr)
5672 {
5673 if (expr == NULL_TREE)
5674 return NULL_TREE;
5675 if (processing_template_decl)
5676 {
5677 if (instantiation_dependent_expression_p (expr)
5678 || !potential_constant_expression (expr))
5679 expr = NULL_TREE;
5680 else
5681 {
5682 processing_template_decl_sentinel s;
5683 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5684 }
5685 }
5686 return expr;
5687 }
5688
5689 /* True iff T is a specialization of a variable template. */
5690
5691 bool
5692 variable_template_specialization_p (tree t)
5693 {
5694 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5695 return false;
5696 tree tmpl = DECL_TI_TEMPLATE (t);
5697 return variable_template_p (tmpl);
5698 }
5699
5700 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5701 template declaration, or a TYPE_DECL for an alias declaration. */
5702
5703 bool
5704 alias_type_or_template_p (tree t)
5705 {
5706 if (t == NULL_TREE)
5707 return false;
5708 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5709 || (TYPE_P (t)
5710 && TYPE_NAME (t)
5711 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5712 || DECL_ALIAS_TEMPLATE_P (t));
5713 }
5714
5715 /* Return TRUE iff T is a specialization of an alias template. */
5716
5717 bool
5718 alias_template_specialization_p (const_tree t)
5719 {
5720 /* It's an alias template specialization if it's an alias and its
5721 TYPE_NAME is a specialization of a primary template. */
5722 if (TYPE_ALIAS_P (t))
5723 {
5724 tree name = TYPE_NAME (t);
5725 if (DECL_LANG_SPECIFIC (name))
5726 if (tree ti = DECL_TEMPLATE_INFO (name))
5727 {
5728 tree tmpl = TI_TEMPLATE (ti);
5729 return PRIMARY_TEMPLATE_P (tmpl);
5730 }
5731 }
5732 return false;
5733 }
5734
5735 /* An alias template is complex from a SFINAE perspective if a template-id
5736 using that alias can be ill-formed when the expansion is not, as with
5737 the void_t template. We determine this by checking whether the
5738 expansion for the alias template uses all its template parameters. */
5739
5740 struct uses_all_template_parms_data
5741 {
5742 int level;
5743 bool *seen;
5744 };
5745
5746 static int
5747 uses_all_template_parms_r (tree t, void *data_)
5748 {
5749 struct uses_all_template_parms_data &data
5750 = *(struct uses_all_template_parms_data*)data_;
5751 tree idx = get_template_parm_index (t);
5752
5753 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5754 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5755 return 0;
5756 }
5757
5758 static bool
5759 complex_alias_template_p (const_tree tmpl)
5760 {
5761 struct uses_all_template_parms_data data;
5762 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5763 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5764 data.level = TMPL_PARMS_DEPTH (parms);
5765 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5766 data.seen = XALLOCAVEC (bool, len);
5767 for (int i = 0; i < len; ++i)
5768 data.seen[i] = false;
5769
5770 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5771 for (int i = 0; i < len; ++i)
5772 if (!data.seen[i])
5773 return true;
5774 return false;
5775 }
5776
5777 /* Return TRUE iff T is a specialization of a complex alias template with
5778 dependent template-arguments. */
5779
5780 bool
5781 dependent_alias_template_spec_p (const_tree t)
5782 {
5783 return (alias_template_specialization_p (t)
5784 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5785 && (any_dependent_template_arguments_p
5786 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5787 }
5788
5789 /* Return the number of innermost template parameters in TMPL. */
5790
5791 static int
5792 num_innermost_template_parms (tree tmpl)
5793 {
5794 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5795 return TREE_VEC_LENGTH (parms);
5796 }
5797
5798 /* Return either TMPL or another template that it is equivalent to under DR
5799 1286: An alias that just changes the name of a template is equivalent to
5800 the other template. */
5801
5802 static tree
5803 get_underlying_template (tree tmpl)
5804 {
5805 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5806 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5807 {
5808 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5809 if (TYPE_TEMPLATE_INFO (result))
5810 {
5811 tree sub = TYPE_TI_TEMPLATE (result);
5812 if (PRIMARY_TEMPLATE_P (sub)
5813 && (num_innermost_template_parms (tmpl)
5814 == num_innermost_template_parms (sub)))
5815 {
5816 tree alias_args = INNERMOST_TEMPLATE_ARGS
5817 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5818 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5819 break;
5820 /* The alias type is equivalent to the pattern of the
5821 underlying template, so strip the alias. */
5822 tmpl = sub;
5823 continue;
5824 }
5825 }
5826 break;
5827 }
5828 return tmpl;
5829 }
5830
5831 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5832 must be a function or a pointer-to-function type, as specified
5833 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5834 and check that the resulting function has external linkage. */
5835
5836 static tree
5837 convert_nontype_argument_function (tree type, tree expr,
5838 tsubst_flags_t complain)
5839 {
5840 tree fns = expr;
5841 tree fn, fn_no_ptr;
5842 linkage_kind linkage;
5843
5844 fn = instantiate_type (type, fns, tf_none);
5845 if (fn == error_mark_node)
5846 return error_mark_node;
5847
5848 fn_no_ptr = fn;
5849 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5850 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5851 if (BASELINK_P (fn_no_ptr))
5852 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5853
5854 /* [temp.arg.nontype]/1
5855
5856 A template-argument for a non-type, non-template template-parameter
5857 shall be one of:
5858 [...]
5859 -- the address of an object or function with external [C++11: or
5860 internal] linkage. */
5861
5862 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5863 {
5864 if (complain & tf_error)
5865 {
5866 error ("%qE is not a valid template argument for type %qT",
5867 expr, type);
5868 if (TYPE_PTR_P (type))
5869 error ("it must be the address of a function with "
5870 "external linkage");
5871 else
5872 error ("it must be the name of a function with "
5873 "external linkage");
5874 }
5875 return NULL_TREE;
5876 }
5877
5878 linkage = decl_linkage (fn_no_ptr);
5879 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5880 {
5881 if (complain & tf_error)
5882 {
5883 if (cxx_dialect >= cxx11)
5884 error ("%qE is not a valid template argument for type %qT "
5885 "because %qD has no linkage",
5886 expr, type, fn_no_ptr);
5887 else
5888 error ("%qE is not a valid template argument for type %qT "
5889 "because %qD does not have external linkage",
5890 expr, type, fn_no_ptr);
5891 }
5892 return NULL_TREE;
5893 }
5894
5895 return fn;
5896 }
5897
5898 /* Subroutine of convert_nontype_argument.
5899 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5900 Emit an error otherwise. */
5901
5902 static bool
5903 check_valid_ptrmem_cst_expr (tree type, tree expr,
5904 tsubst_flags_t complain)
5905 {
5906 STRIP_NOPS (expr);
5907 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5908 return true;
5909 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5910 return true;
5911 if (processing_template_decl
5912 && TREE_CODE (expr) == ADDR_EXPR
5913 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5914 return true;
5915 if (complain & tf_error)
5916 {
5917 error ("%qE is not a valid template argument for type %qT",
5918 expr, type);
5919 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5920 }
5921 return false;
5922 }
5923
5924 /* Returns TRUE iff the address of OP is value-dependent.
5925
5926 14.6.2.4 [temp.dep.temp]:
5927 A non-integral non-type template-argument is dependent if its type is
5928 dependent or it has either of the following forms
5929 qualified-id
5930 & qualified-id
5931 and contains a nested-name-specifier which specifies a class-name that
5932 names a dependent type.
5933
5934 We generalize this to just say that the address of a member of a
5935 dependent class is value-dependent; the above doesn't cover the
5936 address of a static data member named with an unqualified-id. */
5937
5938 static bool
5939 has_value_dependent_address (tree op)
5940 {
5941 /* We could use get_inner_reference here, but there's no need;
5942 this is only relevant for template non-type arguments, which
5943 can only be expressed as &id-expression. */
5944 if (DECL_P (op))
5945 {
5946 tree ctx = CP_DECL_CONTEXT (op);
5947 if (TYPE_P (ctx) && dependent_type_p (ctx))
5948 return true;
5949 }
5950
5951 return false;
5952 }
5953
5954 /* The next set of functions are used for providing helpful explanatory
5955 diagnostics for failed overload resolution. Their messages should be
5956 indented by two spaces for consistency with the messages in
5957 call.c */
5958
5959 static int
5960 unify_success (bool /*explain_p*/)
5961 {
5962 return 0;
5963 }
5964
5965 static int
5966 unify_parameter_deduction_failure (bool explain_p, tree parm)
5967 {
5968 if (explain_p)
5969 inform (input_location,
5970 " couldn't deduce template parameter %qD", parm);
5971 return 1;
5972 }
5973
5974 static int
5975 unify_invalid (bool /*explain_p*/)
5976 {
5977 return 1;
5978 }
5979
5980 static int
5981 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5982 {
5983 if (explain_p)
5984 inform (input_location,
5985 " types %qT and %qT have incompatible cv-qualifiers",
5986 parm, arg);
5987 return 1;
5988 }
5989
5990 static int
5991 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5992 {
5993 if (explain_p)
5994 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5995 return 1;
5996 }
5997
5998 static int
5999 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6000 {
6001 if (explain_p)
6002 inform (input_location,
6003 " template parameter %qD is not a parameter pack, but "
6004 "argument %qD is",
6005 parm, arg);
6006 return 1;
6007 }
6008
6009 static int
6010 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6011 {
6012 if (explain_p)
6013 inform (input_location,
6014 " template argument %qE does not match "
6015 "pointer-to-member constant %qE",
6016 arg, parm);
6017 return 1;
6018 }
6019
6020 static int
6021 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6022 {
6023 if (explain_p)
6024 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6025 return 1;
6026 }
6027
6028 static int
6029 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6030 {
6031 if (explain_p)
6032 inform (input_location,
6033 " inconsistent parameter pack deduction with %qT and %qT",
6034 old_arg, new_arg);
6035 return 1;
6036 }
6037
6038 static int
6039 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6040 {
6041 if (explain_p)
6042 {
6043 if (TYPE_P (parm))
6044 inform (input_location,
6045 " deduced conflicting types for parameter %qT (%qT and %qT)",
6046 parm, first, second);
6047 else
6048 inform (input_location,
6049 " deduced conflicting values for non-type parameter "
6050 "%qE (%qE and %qE)", parm, first, second);
6051 }
6052 return 1;
6053 }
6054
6055 static int
6056 unify_vla_arg (bool explain_p, tree arg)
6057 {
6058 if (explain_p)
6059 inform (input_location,
6060 " variable-sized array type %qT is not "
6061 "a valid template argument",
6062 arg);
6063 return 1;
6064 }
6065
6066 static int
6067 unify_method_type_error (bool explain_p, tree arg)
6068 {
6069 if (explain_p)
6070 inform (input_location,
6071 " member function type %qT is not a valid template argument",
6072 arg);
6073 return 1;
6074 }
6075
6076 static int
6077 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6078 {
6079 if (explain_p)
6080 {
6081 if (least_p)
6082 inform_n (input_location, wanted,
6083 " candidate expects at least %d argument, %d provided",
6084 " candidate expects at least %d arguments, %d provided",
6085 wanted, have);
6086 else
6087 inform_n (input_location, wanted,
6088 " candidate expects %d argument, %d provided",
6089 " candidate expects %d arguments, %d provided",
6090 wanted, have);
6091 }
6092 return 1;
6093 }
6094
6095 static int
6096 unify_too_many_arguments (bool explain_p, int have, int wanted)
6097 {
6098 return unify_arity (explain_p, have, wanted);
6099 }
6100
6101 static int
6102 unify_too_few_arguments (bool explain_p, int have, int wanted,
6103 bool least_p = false)
6104 {
6105 return unify_arity (explain_p, have, wanted, least_p);
6106 }
6107
6108 static int
6109 unify_arg_conversion (bool explain_p, tree to_type,
6110 tree from_type, tree arg)
6111 {
6112 if (explain_p)
6113 inform (EXPR_LOC_OR_LOC (arg, input_location),
6114 " cannot convert %qE (type %qT) to type %qT",
6115 arg, from_type, to_type);
6116 return 1;
6117 }
6118
6119 static int
6120 unify_no_common_base (bool explain_p, enum template_base_result r,
6121 tree parm, tree arg)
6122 {
6123 if (explain_p)
6124 switch (r)
6125 {
6126 case tbr_ambiguous_baseclass:
6127 inform (input_location, " %qT is an ambiguous base class of %qT",
6128 parm, arg);
6129 break;
6130 default:
6131 inform (input_location, " %qT is not derived from %qT", arg, parm);
6132 break;
6133 }
6134 return 1;
6135 }
6136
6137 static int
6138 unify_inconsistent_template_template_parameters (bool explain_p)
6139 {
6140 if (explain_p)
6141 inform (input_location,
6142 " template parameters of a template template argument are "
6143 "inconsistent with other deduced template arguments");
6144 return 1;
6145 }
6146
6147 static int
6148 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6149 {
6150 if (explain_p)
6151 inform (input_location,
6152 " can't deduce a template for %qT from non-template type %qT",
6153 parm, arg);
6154 return 1;
6155 }
6156
6157 static int
6158 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6159 {
6160 if (explain_p)
6161 inform (input_location,
6162 " template argument %qE does not match %qD", arg, parm);
6163 return 1;
6164 }
6165
6166 static int
6167 unify_overload_resolution_failure (bool explain_p, tree arg)
6168 {
6169 if (explain_p)
6170 inform (input_location,
6171 " could not resolve address from overloaded function %qE",
6172 arg);
6173 return 1;
6174 }
6175
6176 /* Attempt to convert the non-type template parameter EXPR to the
6177 indicated TYPE. If the conversion is successful, return the
6178 converted value. If the conversion is unsuccessful, return
6179 NULL_TREE if we issued an error message, or error_mark_node if we
6180 did not. We issue error messages for out-and-out bad template
6181 parameters, but not simply because the conversion failed, since we
6182 might be just trying to do argument deduction. Both TYPE and EXPR
6183 must be non-dependent.
6184
6185 The conversion follows the special rules described in
6186 [temp.arg.nontype], and it is much more strict than an implicit
6187 conversion.
6188
6189 This function is called twice for each template argument (see
6190 lookup_template_class for a more accurate description of this
6191 problem). This means that we need to handle expressions which
6192 are not valid in a C++ source, but can be created from the
6193 first call (for instance, casts to perform conversions). These
6194 hacks can go away after we fix the double coercion problem. */
6195
6196 static tree
6197 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6198 {
6199 tree expr_type;
6200
6201 /* Detect immediately string literals as invalid non-type argument.
6202 This special-case is not needed for correctness (we would easily
6203 catch this later), but only to provide better diagnostic for this
6204 common user mistake. As suggested by DR 100, we do not mention
6205 linkage issues in the diagnostic as this is not the point. */
6206 /* FIXME we're making this OK. */
6207 if (TREE_CODE (expr) == STRING_CST)
6208 {
6209 if (complain & tf_error)
6210 error ("%qE is not a valid template argument for type %qT "
6211 "because string literals can never be used in this context",
6212 expr, type);
6213 return NULL_TREE;
6214 }
6215
6216 /* Add the ADDR_EXPR now for the benefit of
6217 value_dependent_expression_p. */
6218 if (TYPE_PTROBV_P (type)
6219 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6220 {
6221 expr = decay_conversion (expr, complain);
6222 if (expr == error_mark_node)
6223 return error_mark_node;
6224 }
6225
6226 /* If we are in a template, EXPR may be non-dependent, but still
6227 have a syntactic, rather than semantic, form. For example, EXPR
6228 might be a SCOPE_REF, rather than the VAR_DECL to which the
6229 SCOPE_REF refers. Preserving the qualifying scope is necessary
6230 so that access checking can be performed when the template is
6231 instantiated -- but here we need the resolved form so that we can
6232 convert the argument. */
6233 bool non_dep = false;
6234 if (TYPE_REF_OBJ_P (type)
6235 && has_value_dependent_address (expr))
6236 /* If we want the address and it's value-dependent, don't fold. */;
6237 else if (!type_unknown_p (expr)
6238 && processing_template_decl
6239 && !instantiation_dependent_expression_p (expr)
6240 && potential_constant_expression (expr))
6241 non_dep = true;
6242 if (error_operand_p (expr))
6243 return error_mark_node;
6244 expr_type = TREE_TYPE (expr);
6245 if (TREE_CODE (type) == REFERENCE_TYPE)
6246 expr = mark_lvalue_use (expr);
6247 else
6248 expr = mark_rvalue_use (expr);
6249
6250 /* If the argument is non-dependent, perform any conversions in
6251 non-dependent context as well. */
6252 processing_template_decl_sentinel s (non_dep);
6253 if (non_dep)
6254 expr = instantiate_non_dependent_expr_internal (expr, complain);
6255
6256 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6257 to a non-type argument of "nullptr". */
6258 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6259 expr = fold_simple (convert (type, expr));
6260
6261 /* In C++11, integral or enumeration non-type template arguments can be
6262 arbitrary constant expressions. Pointer and pointer to
6263 member arguments can be general constant expressions that evaluate
6264 to a null value, but otherwise still need to be of a specific form. */
6265 if (cxx_dialect >= cxx11)
6266 {
6267 if (TREE_CODE (expr) == PTRMEM_CST)
6268 /* A PTRMEM_CST is already constant, and a valid template
6269 argument for a parameter of pointer to member type, we just want
6270 to leave it in that form rather than lower it to a
6271 CONSTRUCTOR. */;
6272 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6273 expr = maybe_constant_value (expr);
6274 else if (cxx_dialect >= cxx1z)
6275 {
6276 if (TREE_CODE (type) != REFERENCE_TYPE)
6277 expr = maybe_constant_value (expr);
6278 else if (REFERENCE_REF_P (expr))
6279 {
6280 expr = TREE_OPERAND (expr, 0);
6281 expr = maybe_constant_value (expr);
6282 expr = convert_from_reference (expr);
6283 }
6284 }
6285 else if (TYPE_PTR_OR_PTRMEM_P (type))
6286 {
6287 tree folded = maybe_constant_value (expr);
6288 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6289 : null_member_pointer_value_p (folded))
6290 expr = folded;
6291 }
6292 }
6293
6294 /* HACK: Due to double coercion, we can get a
6295 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6296 which is the tree that we built on the first call (see
6297 below when coercing to reference to object or to reference to
6298 function). We just strip everything and get to the arg.
6299 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6300 for examples. */
6301 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6302 {
6303 tree probe_type, probe = expr;
6304 if (REFERENCE_REF_P (probe))
6305 probe = TREE_OPERAND (probe, 0);
6306 probe_type = TREE_TYPE (probe);
6307 if (TREE_CODE (probe) == NOP_EXPR)
6308 {
6309 /* ??? Maybe we could use convert_from_reference here, but we
6310 would need to relax its constraints because the NOP_EXPR
6311 could actually change the type to something more cv-qualified,
6312 and this is not folded by convert_from_reference. */
6313 tree addr = TREE_OPERAND (probe, 0);
6314 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6315 && TREE_CODE (addr) == ADDR_EXPR
6316 && TYPE_PTR_P (TREE_TYPE (addr))
6317 && (same_type_ignoring_top_level_qualifiers_p
6318 (TREE_TYPE (probe_type),
6319 TREE_TYPE (TREE_TYPE (addr)))))
6320 {
6321 expr = TREE_OPERAND (addr, 0);
6322 expr_type = TREE_TYPE (probe_type);
6323 }
6324 }
6325 }
6326
6327 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6328 parameter is a pointer to object, through decay and
6329 qualification conversion. Let's strip everything. */
6330 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6331 {
6332 tree probe = expr;
6333 STRIP_NOPS (probe);
6334 if (TREE_CODE (probe) == ADDR_EXPR
6335 && TYPE_PTR_P (TREE_TYPE (probe)))
6336 {
6337 /* Skip the ADDR_EXPR only if it is part of the decay for
6338 an array. Otherwise, it is part of the original argument
6339 in the source code. */
6340 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6341 probe = TREE_OPERAND (probe, 0);
6342 expr = probe;
6343 expr_type = TREE_TYPE (expr);
6344 }
6345 }
6346
6347 /* [temp.arg.nontype]/5, bullet 1
6348
6349 For a non-type template-parameter of integral or enumeration type,
6350 integral promotions (_conv.prom_) and integral conversions
6351 (_conv.integral_) are applied. */
6352 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6353 {
6354 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6355 t = maybe_constant_value (t);
6356 if (t != error_mark_node)
6357 expr = t;
6358
6359 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6360 return error_mark_node;
6361
6362 /* Notice that there are constant expressions like '4 % 0' which
6363 do not fold into integer constants. */
6364 if (TREE_CODE (expr) != INTEGER_CST)
6365 {
6366 if (complain & tf_error)
6367 {
6368 int errs = errorcount, warns = warningcount + werrorcount;
6369 if (processing_template_decl
6370 && !require_potential_constant_expression (expr))
6371 return NULL_TREE;
6372 expr = cxx_constant_value (expr);
6373 if (errorcount > errs || warningcount + werrorcount > warns)
6374 inform (EXPR_LOC_OR_LOC (expr, input_location),
6375 "in template argument for type %qT ", type);
6376 if (expr == error_mark_node)
6377 return NULL_TREE;
6378 /* else cxx_constant_value complained but gave us
6379 a real constant, so go ahead. */
6380 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6381 }
6382 else
6383 return NULL_TREE;
6384 }
6385
6386 /* Avoid typedef problems. */
6387 if (TREE_TYPE (expr) != type)
6388 expr = fold_convert (type, expr);
6389 }
6390 /* [temp.arg.nontype]/5, bullet 2
6391
6392 For a non-type template-parameter of type pointer to object,
6393 qualification conversions (_conv.qual_) and the array-to-pointer
6394 conversion (_conv.array_) are applied. */
6395 else if (TYPE_PTROBV_P (type))
6396 {
6397 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6398
6399 A template-argument for a non-type, non-template template-parameter
6400 shall be one of: [...]
6401
6402 -- the name of a non-type template-parameter;
6403 -- the address of an object or function with external linkage, [...]
6404 expressed as "& id-expression" where the & is optional if the name
6405 refers to a function or array, or if the corresponding
6406 template-parameter is a reference.
6407
6408 Here, we do not care about functions, as they are invalid anyway
6409 for a parameter of type pointer-to-object. */
6410
6411 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6412 /* Non-type template parameters are OK. */
6413 ;
6414 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6415 /* Null pointer values are OK in C++11. */;
6416 else if (TREE_CODE (expr) != ADDR_EXPR
6417 && TREE_CODE (expr_type) != ARRAY_TYPE)
6418 {
6419 if (VAR_P (expr))
6420 {
6421 if (complain & tf_error)
6422 error ("%qD is not a valid template argument "
6423 "because %qD is a variable, not the address of "
6424 "a variable", expr, expr);
6425 return NULL_TREE;
6426 }
6427 if (POINTER_TYPE_P (expr_type))
6428 {
6429 if (complain & tf_error)
6430 error ("%qE is not a valid template argument for %qT "
6431 "because it is not the address of a variable",
6432 expr, type);
6433 return NULL_TREE;
6434 }
6435 /* Other values, like integer constants, might be valid
6436 non-type arguments of some other type. */
6437 return error_mark_node;
6438 }
6439 else
6440 {
6441 tree decl;
6442
6443 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6444 ? TREE_OPERAND (expr, 0) : expr);
6445 if (!VAR_P (decl))
6446 {
6447 if (complain & tf_error)
6448 error ("%qE is not a valid template argument of type %qT "
6449 "because %qE is not a variable", expr, type, decl);
6450 return NULL_TREE;
6451 }
6452 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6453 {
6454 if (complain & tf_error)
6455 error ("%qE is not a valid template argument of type %qT "
6456 "because %qD does not have external linkage",
6457 expr, type, decl);
6458 return NULL_TREE;
6459 }
6460 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6461 {
6462 if (complain & tf_error)
6463 error ("%qE is not a valid template argument of type %qT "
6464 "because %qD has no linkage", expr, type, decl);
6465 return NULL_TREE;
6466 }
6467 }
6468
6469 expr = decay_conversion (expr, complain);
6470 if (expr == error_mark_node)
6471 return error_mark_node;
6472
6473 expr = perform_qualification_conversions (type, expr);
6474 if (expr == error_mark_node)
6475 return error_mark_node;
6476 }
6477 /* [temp.arg.nontype]/5, bullet 3
6478
6479 For a non-type template-parameter of type reference to object, no
6480 conversions apply. The type referred to by the reference may be more
6481 cv-qualified than the (otherwise identical) type of the
6482 template-argument. The template-parameter is bound directly to the
6483 template-argument, which must be an lvalue. */
6484 else if (TYPE_REF_OBJ_P (type))
6485 {
6486 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6487 expr_type))
6488 return error_mark_node;
6489
6490 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6491 {
6492 if (complain & tf_error)
6493 error ("%qE is not a valid template argument for type %qT "
6494 "because of conflicts in cv-qualification", expr, type);
6495 return NULL_TREE;
6496 }
6497
6498 if (!real_lvalue_p (expr))
6499 {
6500 if (complain & tf_error)
6501 error ("%qE is not a valid template argument for type %qT "
6502 "because it is not an lvalue", expr, type);
6503 return NULL_TREE;
6504 }
6505
6506 /* [temp.arg.nontype]/1
6507
6508 A template-argument for a non-type, non-template template-parameter
6509 shall be one of: [...]
6510
6511 -- the address of an object or function with external linkage. */
6512 if (INDIRECT_REF_P (expr)
6513 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6514 {
6515 expr = TREE_OPERAND (expr, 0);
6516 if (DECL_P (expr))
6517 {
6518 if (complain & tf_error)
6519 error ("%q#D is not a valid template argument for type %qT "
6520 "because a reference variable does not have a constant "
6521 "address", expr, type);
6522 return NULL_TREE;
6523 }
6524 }
6525
6526 if (!DECL_P (expr))
6527 {
6528 if (complain & tf_error)
6529 error ("%qE is not a valid template argument for type %qT "
6530 "because it is not an object with linkage",
6531 expr, type);
6532 return NULL_TREE;
6533 }
6534
6535 /* DR 1155 allows internal linkage in C++11 and up. */
6536 linkage_kind linkage = decl_linkage (expr);
6537 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6538 {
6539 if (complain & tf_error)
6540 error ("%qE is not a valid template argument for type %qT "
6541 "because object %qD does not have linkage",
6542 expr, type, expr);
6543 return NULL_TREE;
6544 }
6545
6546 expr = build_nop (type, build_address (expr));
6547 }
6548 /* [temp.arg.nontype]/5, bullet 4
6549
6550 For a non-type template-parameter of type pointer to function, only
6551 the function-to-pointer conversion (_conv.func_) is applied. If the
6552 template-argument represents a set of overloaded functions (or a
6553 pointer to such), the matching function is selected from the set
6554 (_over.over_). */
6555 else if (TYPE_PTRFN_P (type))
6556 {
6557 /* If the argument is a template-id, we might not have enough
6558 context information to decay the pointer. */
6559 if (!type_unknown_p (expr_type))
6560 {
6561 expr = decay_conversion (expr, complain);
6562 if (expr == error_mark_node)
6563 return error_mark_node;
6564 }
6565
6566 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6567 /* Null pointer values are OK in C++11. */
6568 return perform_qualification_conversions (type, expr);
6569
6570 expr = convert_nontype_argument_function (type, expr, complain);
6571 if (!expr || expr == error_mark_node)
6572 return expr;
6573 }
6574 /* [temp.arg.nontype]/5, bullet 5
6575
6576 For a non-type template-parameter of type reference to function, no
6577 conversions apply. If the template-argument represents a set of
6578 overloaded functions, the matching function is selected from the set
6579 (_over.over_). */
6580 else if (TYPE_REFFN_P (type))
6581 {
6582 if (TREE_CODE (expr) == ADDR_EXPR)
6583 {
6584 if (complain & tf_error)
6585 {
6586 error ("%qE is not a valid template argument for type %qT "
6587 "because it is a pointer", expr, type);
6588 inform (input_location, "try using %qE instead",
6589 TREE_OPERAND (expr, 0));
6590 }
6591 return NULL_TREE;
6592 }
6593
6594 expr = convert_nontype_argument_function (type, expr, complain);
6595 if (!expr || expr == error_mark_node)
6596 return expr;
6597
6598 expr = build_nop (type, build_address (expr));
6599 }
6600 /* [temp.arg.nontype]/5, bullet 6
6601
6602 For a non-type template-parameter of type pointer to member function,
6603 no conversions apply. If the template-argument represents a set of
6604 overloaded member functions, the matching member function is selected
6605 from the set (_over.over_). */
6606 else if (TYPE_PTRMEMFUNC_P (type))
6607 {
6608 expr = instantiate_type (type, expr, tf_none);
6609 if (expr == error_mark_node)
6610 return error_mark_node;
6611
6612 /* [temp.arg.nontype] bullet 1 says the pointer to member
6613 expression must be a pointer-to-member constant. */
6614 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6615 return error_mark_node;
6616
6617 /* There is no way to disable standard conversions in
6618 resolve_address_of_overloaded_function (called by
6619 instantiate_type). It is possible that the call succeeded by
6620 converting &B::I to &D::I (where B is a base of D), so we need
6621 to reject this conversion here.
6622
6623 Actually, even if there was a way to disable standard conversions,
6624 it would still be better to reject them here so that we can
6625 provide a superior diagnostic. */
6626 if (!same_type_p (TREE_TYPE (expr), type))
6627 {
6628 if (complain & tf_error)
6629 {
6630 error ("%qE is not a valid template argument for type %qT "
6631 "because it is of type %qT", expr, type,
6632 TREE_TYPE (expr));
6633 /* If we are just one standard conversion off, explain. */
6634 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6635 inform (input_location,
6636 "standard conversions are not allowed in this context");
6637 }
6638 return NULL_TREE;
6639 }
6640 }
6641 /* [temp.arg.nontype]/5, bullet 7
6642
6643 For a non-type template-parameter of type pointer to data member,
6644 qualification conversions (_conv.qual_) are applied. */
6645 else if (TYPE_PTRDATAMEM_P (type))
6646 {
6647 /* [temp.arg.nontype] bullet 1 says the pointer to member
6648 expression must be a pointer-to-member constant. */
6649 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6650 return error_mark_node;
6651
6652 expr = perform_qualification_conversions (type, expr);
6653 if (expr == error_mark_node)
6654 return expr;
6655 }
6656 else if (NULLPTR_TYPE_P (type))
6657 {
6658 if (expr != nullptr_node)
6659 {
6660 if (complain & tf_error)
6661 error ("%qE is not a valid template argument for type %qT "
6662 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6663 return NULL_TREE;
6664 }
6665 return expr;
6666 }
6667 /* A template non-type parameter must be one of the above. */
6668 else
6669 gcc_unreachable ();
6670
6671 /* Sanity check: did we actually convert the argument to the
6672 right type? */
6673 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6674 (type, TREE_TYPE (expr)));
6675 return convert_from_reference (expr);
6676 }
6677
6678 /* Subroutine of coerce_template_template_parms, which returns 1 if
6679 PARM_PARM and ARG_PARM match using the rule for the template
6680 parameters of template template parameters. Both PARM and ARG are
6681 template parameters; the rest of the arguments are the same as for
6682 coerce_template_template_parms.
6683 */
6684 static int
6685 coerce_template_template_parm (tree parm,
6686 tree arg,
6687 tsubst_flags_t complain,
6688 tree in_decl,
6689 tree outer_args)
6690 {
6691 if (arg == NULL_TREE || error_operand_p (arg)
6692 || parm == NULL_TREE || error_operand_p (parm))
6693 return 0;
6694
6695 if (TREE_CODE (arg) != TREE_CODE (parm))
6696 return 0;
6697
6698 switch (TREE_CODE (parm))
6699 {
6700 case TEMPLATE_DECL:
6701 /* We encounter instantiations of templates like
6702 template <template <template <class> class> class TT>
6703 class C; */
6704 {
6705 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6706 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6707
6708 if (!coerce_template_template_parms
6709 (parmparm, argparm, complain, in_decl, outer_args))
6710 return 0;
6711 }
6712 /* Fall through. */
6713
6714 case TYPE_DECL:
6715 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6716 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6717 /* Argument is a parameter pack but parameter is not. */
6718 return 0;
6719 break;
6720
6721 case PARM_DECL:
6722 /* The tsubst call is used to handle cases such as
6723
6724 template <int> class C {};
6725 template <class T, template <T> class TT> class D {};
6726 D<int, C> d;
6727
6728 i.e. the parameter list of TT depends on earlier parameters. */
6729 if (!uses_template_parms (TREE_TYPE (arg)))
6730 {
6731 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6732 if (!uses_template_parms (t)
6733 && !same_type_p (t, TREE_TYPE (arg)))
6734 return 0;
6735 }
6736
6737 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6738 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6739 /* Argument is a parameter pack but parameter is not. */
6740 return 0;
6741
6742 break;
6743
6744 default:
6745 gcc_unreachable ();
6746 }
6747
6748 return 1;
6749 }
6750
6751
6752 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6753 template template parameters. Both PARM_PARMS and ARG_PARMS are
6754 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6755 or PARM_DECL.
6756
6757 Consider the example:
6758 template <class T> class A;
6759 template<template <class U> class TT> class B;
6760
6761 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6762 the parameters to A, and OUTER_ARGS contains A. */
6763
6764 static int
6765 coerce_template_template_parms (tree parm_parms,
6766 tree arg_parms,
6767 tsubst_flags_t complain,
6768 tree in_decl,
6769 tree outer_args)
6770 {
6771 int nparms, nargs, i;
6772 tree parm, arg;
6773 int variadic_p = 0;
6774
6775 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6776 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6777
6778 nparms = TREE_VEC_LENGTH (parm_parms);
6779 nargs = TREE_VEC_LENGTH (arg_parms);
6780
6781 /* Determine whether we have a parameter pack at the end of the
6782 template template parameter's template parameter list. */
6783 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6784 {
6785 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6786
6787 if (error_operand_p (parm))
6788 return 0;
6789
6790 switch (TREE_CODE (parm))
6791 {
6792 case TEMPLATE_DECL:
6793 case TYPE_DECL:
6794 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6795 variadic_p = 1;
6796 break;
6797
6798 case PARM_DECL:
6799 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6800 variadic_p = 1;
6801 break;
6802
6803 default:
6804 gcc_unreachable ();
6805 }
6806 }
6807
6808 if (nargs != nparms
6809 && !(variadic_p && nargs >= nparms - 1))
6810 return 0;
6811
6812 /* Check all of the template parameters except the parameter pack at
6813 the end (if any). */
6814 for (i = 0; i < nparms - variadic_p; ++i)
6815 {
6816 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6817 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6818 continue;
6819
6820 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6821 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6822
6823 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6824 outer_args))
6825 return 0;
6826
6827 }
6828
6829 if (variadic_p)
6830 {
6831 /* Check each of the template parameters in the template
6832 argument against the template parameter pack at the end of
6833 the template template parameter. */
6834 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6835 return 0;
6836
6837 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6838
6839 for (; i < nargs; ++i)
6840 {
6841 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6842 continue;
6843
6844 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6845
6846 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6847 outer_args))
6848 return 0;
6849 }
6850 }
6851
6852 return 1;
6853 }
6854
6855 /* Verifies that the deduced template arguments (in TARGS) for the
6856 template template parameters (in TPARMS) represent valid bindings,
6857 by comparing the template parameter list of each template argument
6858 to the template parameter list of its corresponding template
6859 template parameter, in accordance with DR150. This
6860 routine can only be called after all template arguments have been
6861 deduced. It will return TRUE if all of the template template
6862 parameter bindings are okay, FALSE otherwise. */
6863 bool
6864 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6865 {
6866 int i, ntparms = TREE_VEC_LENGTH (tparms);
6867 bool ret = true;
6868
6869 /* We're dealing with template parms in this process. */
6870 ++processing_template_decl;
6871
6872 targs = INNERMOST_TEMPLATE_ARGS (targs);
6873
6874 for (i = 0; i < ntparms; ++i)
6875 {
6876 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6877 tree targ = TREE_VEC_ELT (targs, i);
6878
6879 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6880 {
6881 tree packed_args = NULL_TREE;
6882 int idx, len = 1;
6883
6884 if (ARGUMENT_PACK_P (targ))
6885 {
6886 /* Look inside the argument pack. */
6887 packed_args = ARGUMENT_PACK_ARGS (targ);
6888 len = TREE_VEC_LENGTH (packed_args);
6889 }
6890
6891 for (idx = 0; idx < len; ++idx)
6892 {
6893 tree targ_parms = NULL_TREE;
6894
6895 if (packed_args)
6896 /* Extract the next argument from the argument
6897 pack. */
6898 targ = TREE_VEC_ELT (packed_args, idx);
6899
6900 if (PACK_EXPANSION_P (targ))
6901 /* Look at the pattern of the pack expansion. */
6902 targ = PACK_EXPANSION_PATTERN (targ);
6903
6904 /* Extract the template parameters from the template
6905 argument. */
6906 if (TREE_CODE (targ) == TEMPLATE_DECL)
6907 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6908 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6909 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6910
6911 /* Verify that we can coerce the template template
6912 parameters from the template argument to the template
6913 parameter. This requires an exact match. */
6914 if (targ_parms
6915 && !coerce_template_template_parms
6916 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6917 targ_parms,
6918 tf_none,
6919 tparm,
6920 targs))
6921 {
6922 ret = false;
6923 goto out;
6924 }
6925 }
6926 }
6927 }
6928
6929 out:
6930
6931 --processing_template_decl;
6932 return ret;
6933 }
6934
6935 /* Since type attributes aren't mangled, we need to strip them from
6936 template type arguments. */
6937
6938 static tree
6939 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6940 {
6941 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6942 return arg;
6943 bool removed_attributes = false;
6944 tree canon = strip_typedefs (arg, &removed_attributes);
6945 if (removed_attributes
6946 && (complain & tf_warning))
6947 warning (0, "ignoring attributes on template argument %qT", arg);
6948 return canon;
6949 }
6950
6951 // A template declaration can be substituted for a constrained
6952 // template template parameter only when the argument is more
6953 // constrained than the parameter.
6954 static bool
6955 is_compatible_template_arg (tree parm, tree arg)
6956 {
6957 tree parm_cons = get_constraints (parm);
6958
6959 /* For now, allow constrained template template arguments
6960 and unconstrained template template parameters. */
6961 if (parm_cons == NULL_TREE)
6962 return true;
6963
6964 tree arg_cons = get_constraints (arg);
6965
6966 // If the template parameter is constrained, we need to rewrite its
6967 // constraints in terms of the ARG's template parameters. This ensures
6968 // that all of the template parameter types will have the same depth.
6969 //
6970 // Note that this is only valid when coerce_template_template_parm is
6971 // true for the innermost template parameters of PARM and ARG. In other
6972 // words, because coercion is successful, this conversion will be valid.
6973 if (parm_cons)
6974 {
6975 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6976 parm_cons = tsubst_constraint_info (parm_cons,
6977 INNERMOST_TEMPLATE_ARGS (args),
6978 tf_none, NULL_TREE);
6979 if (parm_cons == error_mark_node)
6980 return false;
6981 }
6982
6983 return subsumes (parm_cons, arg_cons);
6984 }
6985
6986 // Convert a placeholder argument into a binding to the original
6987 // parameter. The original parameter is saved as the TREE_TYPE of
6988 // ARG.
6989 static inline tree
6990 convert_wildcard_argument (tree parm, tree arg)
6991 {
6992 TREE_TYPE (arg) = parm;
6993 return arg;
6994 }
6995
6996 /* Convert the indicated template ARG as necessary to match the
6997 indicated template PARM. Returns the converted ARG, or
6998 error_mark_node if the conversion was unsuccessful. Error and
6999 warning messages are issued under control of COMPLAIN. This
7000 conversion is for the Ith parameter in the parameter list. ARGS is
7001 the full set of template arguments deduced so far. */
7002
7003 static tree
7004 convert_template_argument (tree parm,
7005 tree arg,
7006 tree args,
7007 tsubst_flags_t complain,
7008 int i,
7009 tree in_decl)
7010 {
7011 tree orig_arg;
7012 tree val;
7013 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7014
7015 if (parm == error_mark_node)
7016 return error_mark_node;
7017
7018 /* Trivially convert placeholders. */
7019 if (TREE_CODE (arg) == WILDCARD_DECL)
7020 return convert_wildcard_argument (parm, arg);
7021
7022 if (TREE_CODE (arg) == TREE_LIST
7023 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7024 {
7025 /* The template argument was the name of some
7026 member function. That's usually
7027 invalid, but static members are OK. In any
7028 case, grab the underlying fields/functions
7029 and issue an error later if required. */
7030 orig_arg = TREE_VALUE (arg);
7031 TREE_TYPE (arg) = unknown_type_node;
7032 }
7033
7034 orig_arg = arg;
7035
7036 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7037 requires_type = (TREE_CODE (parm) == TYPE_DECL
7038 || requires_tmpl_type);
7039
7040 /* When determining whether an argument pack expansion is a template,
7041 look at the pattern. */
7042 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7043 arg = PACK_EXPANSION_PATTERN (arg);
7044
7045 /* Deal with an injected-class-name used as a template template arg. */
7046 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7047 {
7048 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7049 if (TREE_CODE (t) == TEMPLATE_DECL)
7050 {
7051 if (cxx_dialect >= cxx11)
7052 /* OK under DR 1004. */;
7053 else if (complain & tf_warning_or_error)
7054 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7055 " used as template template argument", TYPE_NAME (arg));
7056 else if (flag_pedantic_errors)
7057 t = arg;
7058
7059 arg = t;
7060 }
7061 }
7062
7063 is_tmpl_type =
7064 ((TREE_CODE (arg) == TEMPLATE_DECL
7065 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7066 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7067 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7068 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7069
7070 if (is_tmpl_type
7071 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7072 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7073 arg = TYPE_STUB_DECL (arg);
7074
7075 is_type = TYPE_P (arg) || is_tmpl_type;
7076
7077 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7078 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7079 {
7080 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7081 {
7082 if (complain & tf_error)
7083 error ("invalid use of destructor %qE as a type", orig_arg);
7084 return error_mark_node;
7085 }
7086
7087 permerror (input_location,
7088 "to refer to a type member of a template parameter, "
7089 "use %<typename %E%>", orig_arg);
7090
7091 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7092 TREE_OPERAND (arg, 1),
7093 typename_type,
7094 complain);
7095 arg = orig_arg;
7096 is_type = 1;
7097 }
7098 if (is_type != requires_type)
7099 {
7100 if (in_decl)
7101 {
7102 if (complain & tf_error)
7103 {
7104 error ("type/value mismatch at argument %d in template "
7105 "parameter list for %qD",
7106 i + 1, in_decl);
7107 if (is_type)
7108 inform (input_location,
7109 " expected a constant of type %qT, got %qT",
7110 TREE_TYPE (parm),
7111 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7112 else if (requires_tmpl_type)
7113 inform (input_location,
7114 " expected a class template, got %qE", orig_arg);
7115 else
7116 inform (input_location,
7117 " expected a type, got %qE", orig_arg);
7118 }
7119 }
7120 return error_mark_node;
7121 }
7122 if (is_tmpl_type ^ requires_tmpl_type)
7123 {
7124 if (in_decl && (complain & tf_error))
7125 {
7126 error ("type/value mismatch at argument %d in template "
7127 "parameter list for %qD",
7128 i + 1, in_decl);
7129 if (is_tmpl_type)
7130 inform (input_location,
7131 " expected a type, got %qT", DECL_NAME (arg));
7132 else
7133 inform (input_location,
7134 " expected a class template, got %qT", orig_arg);
7135 }
7136 return error_mark_node;
7137 }
7138
7139 if (is_type)
7140 {
7141 if (requires_tmpl_type)
7142 {
7143 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7144 val = orig_arg;
7145 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7146 /* The number of argument required is not known yet.
7147 Just accept it for now. */
7148 val = TREE_TYPE (arg);
7149 else
7150 {
7151 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7152 tree argparm;
7153
7154 /* Strip alias templates that are equivalent to another
7155 template. */
7156 arg = get_underlying_template (arg);
7157 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7158
7159 if (coerce_template_template_parms (parmparm, argparm,
7160 complain, in_decl,
7161 args))
7162 {
7163 val = arg;
7164
7165 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7166 TEMPLATE_DECL. */
7167 if (val != error_mark_node)
7168 {
7169 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7170 val = TREE_TYPE (val);
7171 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7172 val = make_pack_expansion (val);
7173 }
7174 }
7175 else
7176 {
7177 if (in_decl && (complain & tf_error))
7178 {
7179 error ("type/value mismatch at argument %d in "
7180 "template parameter list for %qD",
7181 i + 1, in_decl);
7182 inform (input_location,
7183 " expected a template of type %qD, got %qT",
7184 parm, orig_arg);
7185 }
7186
7187 val = error_mark_node;
7188 }
7189
7190 // Check that the constraints are compatible before allowing the
7191 // substitution.
7192 if (val != error_mark_node)
7193 if (!is_compatible_template_arg (parm, arg))
7194 {
7195 if (in_decl && (complain & tf_error))
7196 {
7197 error ("constraint mismatch at argument %d in "
7198 "template parameter list for %qD",
7199 i + 1, in_decl);
7200 inform (input_location, " expected %qD but got %qD",
7201 parm, arg);
7202 }
7203 val = error_mark_node;
7204 }
7205 }
7206 }
7207 else
7208 val = orig_arg;
7209 /* We only form one instance of each template specialization.
7210 Therefore, if we use a non-canonical variant (i.e., a
7211 typedef), any future messages referring to the type will use
7212 the typedef, which is confusing if those future uses do not
7213 themselves also use the typedef. */
7214 if (TYPE_P (val))
7215 val = canonicalize_type_argument (val, complain);
7216 }
7217 else
7218 {
7219 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7220
7221 if (invalid_nontype_parm_type_p (t, complain))
7222 return error_mark_node;
7223
7224 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7225 {
7226 if (same_type_p (t, TREE_TYPE (orig_arg)))
7227 val = orig_arg;
7228 else
7229 {
7230 /* Not sure if this is reachable, but it doesn't hurt
7231 to be robust. */
7232 error ("type mismatch in nontype parameter pack");
7233 val = error_mark_node;
7234 }
7235 }
7236 else if (!dependent_template_arg_p (orig_arg)
7237 && !uses_template_parms (t))
7238 /* We used to call digest_init here. However, digest_init
7239 will report errors, which we don't want when complain
7240 is zero. More importantly, digest_init will try too
7241 hard to convert things: for example, `0' should not be
7242 converted to pointer type at this point according to
7243 the standard. Accepting this is not merely an
7244 extension, since deciding whether or not these
7245 conversions can occur is part of determining which
7246 function template to call, or whether a given explicit
7247 argument specification is valid. */
7248 val = convert_nontype_argument (t, orig_arg, complain);
7249 else
7250 {
7251 bool removed_attr = false;
7252 val = strip_typedefs_expr (orig_arg, &removed_attr);
7253 }
7254
7255 if (val == NULL_TREE)
7256 val = error_mark_node;
7257 else if (val == error_mark_node && (complain & tf_error))
7258 error ("could not convert template argument %qE to %qT", orig_arg, t);
7259
7260 if (INDIRECT_REF_P (val))
7261 {
7262 /* Reject template arguments that are references to built-in
7263 functions with no library fallbacks. */
7264 const_tree inner = TREE_OPERAND (val, 0);
7265 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7266 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7267 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7268 && 0 < TREE_OPERAND_LENGTH (inner)
7269 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7270 return error_mark_node;
7271 }
7272
7273 if (TREE_CODE (val) == SCOPE_REF)
7274 {
7275 /* Strip typedefs from the SCOPE_REF. */
7276 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7277 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7278 complain);
7279 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7280 QUALIFIED_NAME_IS_TEMPLATE (val));
7281 }
7282 }
7283
7284 return val;
7285 }
7286
7287 /* Coerces the remaining template arguments in INNER_ARGS (from
7288 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7289 Returns the coerced argument pack. PARM_IDX is the position of this
7290 parameter in the template parameter list. ARGS is the original
7291 template argument list. */
7292 static tree
7293 coerce_template_parameter_pack (tree parms,
7294 int parm_idx,
7295 tree args,
7296 tree inner_args,
7297 int arg_idx,
7298 tree new_args,
7299 int* lost,
7300 tree in_decl,
7301 tsubst_flags_t complain)
7302 {
7303 tree parm = TREE_VEC_ELT (parms, parm_idx);
7304 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7305 tree packed_args;
7306 tree argument_pack;
7307 tree packed_parms = NULL_TREE;
7308
7309 if (arg_idx > nargs)
7310 arg_idx = nargs;
7311
7312 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7313 {
7314 /* When the template parameter is a non-type template parameter pack
7315 or template template parameter pack whose type or template
7316 parameters use parameter packs, we know exactly how many arguments
7317 we are looking for. Build a vector of the instantiated decls for
7318 these template parameters in PACKED_PARMS. */
7319 /* We can't use make_pack_expansion here because it would interpret a
7320 _DECL as a use rather than a declaration. */
7321 tree decl = TREE_VALUE (parm);
7322 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7323 SET_PACK_EXPANSION_PATTERN (exp, decl);
7324 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7325 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7326
7327 TREE_VEC_LENGTH (args)--;
7328 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7329 TREE_VEC_LENGTH (args)++;
7330
7331 if (packed_parms == error_mark_node)
7332 return error_mark_node;
7333
7334 /* If we're doing a partial instantiation of a member template,
7335 verify that all of the types used for the non-type
7336 template parameter pack are, in fact, valid for non-type
7337 template parameters. */
7338 if (arg_idx < nargs
7339 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7340 {
7341 int j, len = TREE_VEC_LENGTH (packed_parms);
7342 for (j = 0; j < len; ++j)
7343 {
7344 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7345 if (invalid_nontype_parm_type_p (t, complain))
7346 return error_mark_node;
7347 }
7348 /* We don't know how many args we have yet, just
7349 use the unconverted ones for now. */
7350 return NULL_TREE;
7351 }
7352
7353 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7354 }
7355 /* Check if we have a placeholder pack, which indicates we're
7356 in the context of a introduction list. In that case we want
7357 to match this pack to the single placeholder. */
7358 else if (arg_idx < nargs
7359 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7360 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7361 {
7362 nargs = arg_idx + 1;
7363 packed_args = make_tree_vec (1);
7364 }
7365 else
7366 packed_args = make_tree_vec (nargs - arg_idx);
7367
7368 /* Convert the remaining arguments, which will be a part of the
7369 parameter pack "parm". */
7370 for (; arg_idx < nargs; ++arg_idx)
7371 {
7372 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7373 tree actual_parm = TREE_VALUE (parm);
7374 int pack_idx = arg_idx - parm_idx;
7375
7376 if (packed_parms)
7377 {
7378 /* Once we've packed as many args as we have types, stop. */
7379 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7380 break;
7381 else if (PACK_EXPANSION_P (arg))
7382 /* We don't know how many args we have yet, just
7383 use the unconverted ones for now. */
7384 return NULL_TREE;
7385 else
7386 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7387 }
7388
7389 if (arg == error_mark_node)
7390 {
7391 if (complain & tf_error)
7392 error ("template argument %d is invalid", arg_idx + 1);
7393 }
7394 else
7395 arg = convert_template_argument (actual_parm,
7396 arg, new_args, complain, parm_idx,
7397 in_decl);
7398 if (arg == error_mark_node)
7399 (*lost)++;
7400 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7401 }
7402
7403 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7404 && TREE_VEC_LENGTH (packed_args) > 0)
7405 {
7406 if (complain & tf_error)
7407 error ("wrong number of template arguments (%d, should be %d)",
7408 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7409 return error_mark_node;
7410 }
7411
7412 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7413 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7414 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7415 else
7416 {
7417 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7418 TREE_TYPE (argument_pack)
7419 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7420 TREE_CONSTANT (argument_pack) = 1;
7421 }
7422
7423 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7424 if (CHECKING_P)
7425 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7426 TREE_VEC_LENGTH (packed_args));
7427 return argument_pack;
7428 }
7429
7430 /* Returns the number of pack expansions in the template argument vector
7431 ARGS. */
7432
7433 static int
7434 pack_expansion_args_count (tree args)
7435 {
7436 int i;
7437 int count = 0;
7438 if (args)
7439 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7440 {
7441 tree elt = TREE_VEC_ELT (args, i);
7442 if (elt && PACK_EXPANSION_P (elt))
7443 ++count;
7444 }
7445 return count;
7446 }
7447
7448 /* Convert all template arguments to their appropriate types, and
7449 return a vector containing the innermost resulting template
7450 arguments. If any error occurs, return error_mark_node. Error and
7451 warning messages are issued under control of COMPLAIN.
7452
7453 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7454 for arguments not specified in ARGS. Otherwise, if
7455 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7456 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7457 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7458 ARGS. */
7459
7460 static tree
7461 coerce_template_parms (tree parms,
7462 tree args,
7463 tree in_decl,
7464 tsubst_flags_t complain,
7465 bool require_all_args,
7466 bool use_default_args)
7467 {
7468 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7469 tree orig_inner_args;
7470 tree inner_args;
7471 tree new_args;
7472 tree new_inner_args;
7473 int saved_unevaluated_operand;
7474 int saved_inhibit_evaluation_warnings;
7475
7476 /* When used as a boolean value, indicates whether this is a
7477 variadic template parameter list. Since it's an int, we can also
7478 subtract it from nparms to get the number of non-variadic
7479 parameters. */
7480 int variadic_p = 0;
7481 int variadic_args_p = 0;
7482 int post_variadic_parms = 0;
7483
7484 /* Likewise for parameters with default arguments. */
7485 int default_p = 0;
7486
7487 if (args == error_mark_node)
7488 return error_mark_node;
7489
7490 nparms = TREE_VEC_LENGTH (parms);
7491
7492 /* Determine if there are any parameter packs or default arguments. */
7493 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7494 {
7495 tree parm = TREE_VEC_ELT (parms, parm_idx);
7496 if (variadic_p)
7497 ++post_variadic_parms;
7498 if (template_parameter_pack_p (TREE_VALUE (parm)))
7499 ++variadic_p;
7500 if (TREE_PURPOSE (parm))
7501 ++default_p;
7502 }
7503
7504 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7505 /* If there are no parameters that follow a parameter pack, we need to
7506 expand any argument packs so that we can deduce a parameter pack from
7507 some non-packed args followed by an argument pack, as in variadic85.C.
7508 If there are such parameters, we need to leave argument packs intact
7509 so the arguments are assigned properly. This can happen when dealing
7510 with a nested class inside a partial specialization of a class
7511 template, as in variadic92.C, or when deducing a template parameter pack
7512 from a sub-declarator, as in variadic114.C. */
7513 if (!post_variadic_parms)
7514 inner_args = expand_template_argument_pack (inner_args);
7515
7516 /* Count any pack expansion args. */
7517 variadic_args_p = pack_expansion_args_count (inner_args);
7518
7519 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7520 if ((nargs > nparms && !variadic_p)
7521 || (nargs < nparms - variadic_p
7522 && require_all_args
7523 && !variadic_args_p
7524 && (!use_default_args
7525 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7526 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7527 {
7528 if (complain & tf_error)
7529 {
7530 if (variadic_p || default_p)
7531 {
7532 nparms -= variadic_p + default_p;
7533 error ("wrong number of template arguments "
7534 "(%d, should be at least %d)", nargs, nparms);
7535 }
7536 else
7537 error ("wrong number of template arguments "
7538 "(%d, should be %d)", nargs, nparms);
7539
7540 if (in_decl)
7541 inform (DECL_SOURCE_LOCATION (in_decl),
7542 "provided for %qD", in_decl);
7543 }
7544
7545 return error_mark_node;
7546 }
7547 /* We can't pass a pack expansion to a non-pack parameter of an alias
7548 template (DR 1430). */
7549 else if (in_decl
7550 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7551 || concept_template_p (in_decl))
7552 && variadic_args_p
7553 && nargs - variadic_args_p < nparms - variadic_p)
7554 {
7555 if (complain & tf_error)
7556 {
7557 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7558 {
7559 tree arg = TREE_VEC_ELT (inner_args, i);
7560 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7561
7562 if (PACK_EXPANSION_P (arg)
7563 && !template_parameter_pack_p (parm))
7564 {
7565 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7566 error_at (location_of (arg),
7567 "pack expansion argument for non-pack parameter "
7568 "%qD of alias template %qD", parm, in_decl);
7569 else
7570 error_at (location_of (arg),
7571 "pack expansion argument for non-pack parameter "
7572 "%qD of concept %qD", parm, in_decl);
7573 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7574 goto found;
7575 }
7576 }
7577 gcc_unreachable ();
7578 found:;
7579 }
7580 return error_mark_node;
7581 }
7582
7583 /* We need to evaluate the template arguments, even though this
7584 template-id may be nested within a "sizeof". */
7585 saved_unevaluated_operand = cp_unevaluated_operand;
7586 cp_unevaluated_operand = 0;
7587 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7588 c_inhibit_evaluation_warnings = 0;
7589 new_inner_args = make_tree_vec (nparms);
7590 new_args = add_outermost_template_args (args, new_inner_args);
7591 int pack_adjust = 0;
7592 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7593 {
7594 tree arg;
7595 tree parm;
7596
7597 /* Get the Ith template parameter. */
7598 parm = TREE_VEC_ELT (parms, parm_idx);
7599
7600 if (parm == error_mark_node)
7601 {
7602 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7603 continue;
7604 }
7605
7606 /* Calculate the next argument. */
7607 if (arg_idx < nargs)
7608 arg = TREE_VEC_ELT (inner_args, arg_idx);
7609 else
7610 arg = NULL_TREE;
7611
7612 if (template_parameter_pack_p (TREE_VALUE (parm))
7613 && !(arg && ARGUMENT_PACK_P (arg)))
7614 {
7615 /* Some arguments will be placed in the
7616 template parameter pack PARM. */
7617 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7618 inner_args, arg_idx,
7619 new_args, &lost,
7620 in_decl, complain);
7621
7622 if (arg == NULL_TREE)
7623 {
7624 /* We don't know how many args we have yet, just use the
7625 unconverted (and still packed) ones for now. */
7626 new_inner_args = orig_inner_args;
7627 arg_idx = nargs;
7628 break;
7629 }
7630
7631 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7632
7633 /* Store this argument. */
7634 if (arg == error_mark_node)
7635 {
7636 lost++;
7637 /* We are done with all of the arguments. */
7638 arg_idx = nargs;
7639 }
7640 else
7641 {
7642 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7643 arg_idx += pack_adjust;
7644 }
7645
7646 continue;
7647 }
7648 else if (arg)
7649 {
7650 if (PACK_EXPANSION_P (arg))
7651 {
7652 /* "If every valid specialization of a variadic template
7653 requires an empty template parameter pack, the template is
7654 ill-formed, no diagnostic required." So check that the
7655 pattern works with this parameter. */
7656 tree pattern = PACK_EXPANSION_PATTERN (arg);
7657 tree conv = convert_template_argument (TREE_VALUE (parm),
7658 pattern, new_args,
7659 complain, parm_idx,
7660 in_decl);
7661 if (conv == error_mark_node)
7662 {
7663 inform (input_location, "so any instantiation with a "
7664 "non-empty parameter pack would be ill-formed");
7665 ++lost;
7666 }
7667 else if (TYPE_P (conv) && !TYPE_P (pattern))
7668 /* Recover from missing typename. */
7669 TREE_VEC_ELT (inner_args, arg_idx)
7670 = make_pack_expansion (conv);
7671
7672 /* We don't know how many args we have yet, just
7673 use the unconverted ones for now. */
7674 new_inner_args = inner_args;
7675 arg_idx = nargs;
7676 break;
7677 }
7678 }
7679 else if (require_all_args)
7680 {
7681 /* There must be a default arg in this case. */
7682 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7683 complain, in_decl);
7684 /* The position of the first default template argument,
7685 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7686 Record that. */
7687 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7688 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7689 arg_idx - pack_adjust);
7690 }
7691 else
7692 break;
7693
7694 if (arg == error_mark_node)
7695 {
7696 if (complain & tf_error)
7697 error ("template argument %d is invalid", arg_idx + 1);
7698 }
7699 else if (!arg)
7700 /* This only occurs if there was an error in the template
7701 parameter list itself (which we would already have
7702 reported) that we are trying to recover from, e.g., a class
7703 template with a parameter list such as
7704 template<typename..., typename>. */
7705 ++lost;
7706 else
7707 arg = convert_template_argument (TREE_VALUE (parm),
7708 arg, new_args, complain,
7709 parm_idx, in_decl);
7710
7711 if (arg == error_mark_node)
7712 lost++;
7713 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7714 }
7715 cp_unevaluated_operand = saved_unevaluated_operand;
7716 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7717
7718 if (variadic_p && arg_idx < nargs)
7719 {
7720 if (complain & tf_error)
7721 {
7722 error ("wrong number of template arguments "
7723 "(%d, should be %d)", nargs, arg_idx);
7724 if (in_decl)
7725 error ("provided for %q+D", in_decl);
7726 }
7727 return error_mark_node;
7728 }
7729
7730 if (lost)
7731 return error_mark_node;
7732
7733 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7734 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7735 TREE_VEC_LENGTH (new_inner_args));
7736
7737 return new_inner_args;
7738 }
7739
7740 /* Convert all template arguments to their appropriate types, and
7741 return a vector containing the innermost resulting template
7742 arguments. If any error occurs, return error_mark_node. Error and
7743 warning messages are not issued.
7744
7745 Note that no function argument deduction is performed, and default
7746 arguments are used to fill in unspecified arguments. */
7747 tree
7748 coerce_template_parms (tree parms, tree args, tree in_decl)
7749 {
7750 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7751 }
7752
7753 /* Convert all template arguments to their appropriate type, and
7754 instantiate default arguments as needed. This returns a vector
7755 containing the innermost resulting template arguments, or
7756 error_mark_node if unsuccessful. */
7757 tree
7758 coerce_template_parms (tree parms, tree args, tree in_decl,
7759 tsubst_flags_t complain)
7760 {
7761 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7762 }
7763
7764 /* Like coerce_template_parms. If PARMS represents all template
7765 parameters levels, this function returns a vector of vectors
7766 representing all the resulting argument levels. Note that in this
7767 case, only the innermost arguments are coerced because the
7768 outermost ones are supposed to have been coerced already.
7769
7770 Otherwise, if PARMS represents only (the innermost) vector of
7771 parameters, this function returns a vector containing just the
7772 innermost resulting arguments. */
7773
7774 static tree
7775 coerce_innermost_template_parms (tree parms,
7776 tree args,
7777 tree in_decl,
7778 tsubst_flags_t complain,
7779 bool require_all_args,
7780 bool use_default_args)
7781 {
7782 int parms_depth = TMPL_PARMS_DEPTH (parms);
7783 int args_depth = TMPL_ARGS_DEPTH (args);
7784 tree coerced_args;
7785
7786 if (parms_depth > 1)
7787 {
7788 coerced_args = make_tree_vec (parms_depth);
7789 tree level;
7790 int cur_depth;
7791
7792 for (level = parms, cur_depth = parms_depth;
7793 parms_depth > 0 && level != NULL_TREE;
7794 level = TREE_CHAIN (level), --cur_depth)
7795 {
7796 tree l;
7797 if (cur_depth == args_depth)
7798 l = coerce_template_parms (TREE_VALUE (level),
7799 args, in_decl, complain,
7800 require_all_args,
7801 use_default_args);
7802 else
7803 l = TMPL_ARGS_LEVEL (args, cur_depth);
7804
7805 if (l == error_mark_node)
7806 return error_mark_node;
7807
7808 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7809 }
7810 }
7811 else
7812 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7813 args, in_decl, complain,
7814 require_all_args,
7815 use_default_args);
7816 return coerced_args;
7817 }
7818
7819 /* Returns 1 if template args OT and NT are equivalent. */
7820
7821 static int
7822 template_args_equal (tree ot, tree nt)
7823 {
7824 if (nt == ot)
7825 return 1;
7826 if (nt == NULL_TREE || ot == NULL_TREE)
7827 return false;
7828
7829 if (TREE_CODE (nt) == TREE_VEC)
7830 /* For member templates */
7831 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7832 else if (PACK_EXPANSION_P (ot))
7833 return (PACK_EXPANSION_P (nt)
7834 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7835 PACK_EXPANSION_PATTERN (nt))
7836 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7837 PACK_EXPANSION_EXTRA_ARGS (nt)));
7838 else if (ARGUMENT_PACK_P (ot))
7839 {
7840 int i, len;
7841 tree opack, npack;
7842
7843 if (!ARGUMENT_PACK_P (nt))
7844 return 0;
7845
7846 opack = ARGUMENT_PACK_ARGS (ot);
7847 npack = ARGUMENT_PACK_ARGS (nt);
7848 len = TREE_VEC_LENGTH (opack);
7849 if (TREE_VEC_LENGTH (npack) != len)
7850 return 0;
7851 for (i = 0; i < len; ++i)
7852 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7853 TREE_VEC_ELT (npack, i)))
7854 return 0;
7855 return 1;
7856 }
7857 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7858 {
7859 /* We get here probably because we are in the middle of substituting
7860 into the pattern of a pack expansion. In that case the
7861 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7862 interested in. So we want to use the initial pack argument for
7863 the comparison. */
7864 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7865 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7866 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7867 return template_args_equal (ot, nt);
7868 }
7869 else if (TYPE_P (nt))
7870 {
7871 if (!TYPE_P (ot))
7872 return false;
7873 /* Don't treat an alias template specialization with dependent
7874 arguments as equivalent to its underlying type when used as a
7875 template argument; we need them to be distinct so that we
7876 substitute into the specialization arguments at instantiation
7877 time. And aliases can't be equivalent without being ==, so
7878 we don't need to look any deeper. */
7879 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7880 return false;
7881 else
7882 return same_type_p (ot, nt);
7883 }
7884 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7885 return 0;
7886 else
7887 {
7888 /* Try to treat a template non-type argument that has been converted
7889 to the parameter type as equivalent to one that hasn't yet. */
7890 for (enum tree_code code1 = TREE_CODE (ot);
7891 CONVERT_EXPR_CODE_P (code1)
7892 || code1 == NON_LVALUE_EXPR;
7893 code1 = TREE_CODE (ot))
7894 ot = TREE_OPERAND (ot, 0);
7895 for (enum tree_code code2 = TREE_CODE (nt);
7896 CONVERT_EXPR_CODE_P (code2)
7897 || code2 == NON_LVALUE_EXPR;
7898 code2 = TREE_CODE (nt))
7899 nt = TREE_OPERAND (nt, 0);
7900
7901 return cp_tree_equal (ot, nt);
7902 }
7903 }
7904
7905 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7906 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7907 NEWARG_PTR with the offending arguments if they are non-NULL. */
7908
7909 int
7910 comp_template_args (tree oldargs, tree newargs,
7911 tree *oldarg_ptr, tree *newarg_ptr)
7912 {
7913 int i;
7914
7915 if (oldargs == newargs)
7916 return 1;
7917
7918 if (!oldargs || !newargs)
7919 return 0;
7920
7921 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7922 return 0;
7923
7924 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7925 {
7926 tree nt = TREE_VEC_ELT (newargs, i);
7927 tree ot = TREE_VEC_ELT (oldargs, i);
7928
7929 if (! template_args_equal (ot, nt))
7930 {
7931 if (oldarg_ptr != NULL)
7932 *oldarg_ptr = ot;
7933 if (newarg_ptr != NULL)
7934 *newarg_ptr = nt;
7935 return 0;
7936 }
7937 }
7938 return 1;
7939 }
7940
7941 static void
7942 add_pending_template (tree d)
7943 {
7944 tree ti = (TYPE_P (d)
7945 ? CLASSTYPE_TEMPLATE_INFO (d)
7946 : DECL_TEMPLATE_INFO (d));
7947 struct pending_template *pt;
7948 int level;
7949
7950 if (TI_PENDING_TEMPLATE_FLAG (ti))
7951 return;
7952
7953 /* We are called both from instantiate_decl, where we've already had a
7954 tinst_level pushed, and instantiate_template, where we haven't.
7955 Compensate. */
7956 level = !current_tinst_level || current_tinst_level->decl != d;
7957
7958 if (level)
7959 push_tinst_level (d);
7960
7961 pt = ggc_alloc<pending_template> ();
7962 pt->next = NULL;
7963 pt->tinst = current_tinst_level;
7964 if (last_pending_template)
7965 last_pending_template->next = pt;
7966 else
7967 pending_templates = pt;
7968
7969 last_pending_template = pt;
7970
7971 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7972
7973 if (level)
7974 pop_tinst_level ();
7975 }
7976
7977
7978 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7979 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7980 documentation for TEMPLATE_ID_EXPR. */
7981
7982 tree
7983 lookup_template_function (tree fns, tree arglist)
7984 {
7985 tree type;
7986
7987 if (fns == error_mark_node || arglist == error_mark_node)
7988 return error_mark_node;
7989
7990 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7991
7992 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7993 {
7994 error ("%q#D is not a function template", fns);
7995 return error_mark_node;
7996 }
7997
7998 if (BASELINK_P (fns))
7999 {
8000 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8001 unknown_type_node,
8002 BASELINK_FUNCTIONS (fns),
8003 arglist);
8004 return fns;
8005 }
8006
8007 type = TREE_TYPE (fns);
8008 if (TREE_CODE (fns) == OVERLOAD || !type)
8009 type = unknown_type_node;
8010
8011 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8012 }
8013
8014 /* Within the scope of a template class S<T>, the name S gets bound
8015 (in build_self_reference) to a TYPE_DECL for the class, not a
8016 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8017 or one of its enclosing classes, and that type is a template,
8018 return the associated TEMPLATE_DECL. Otherwise, the original
8019 DECL is returned.
8020
8021 Also handle the case when DECL is a TREE_LIST of ambiguous
8022 injected-class-names from different bases. */
8023
8024 tree
8025 maybe_get_template_decl_from_type_decl (tree decl)
8026 {
8027 if (decl == NULL_TREE)
8028 return decl;
8029
8030 /* DR 176: A lookup that finds an injected-class-name (10.2
8031 [class.member.lookup]) can result in an ambiguity in certain cases
8032 (for example, if it is found in more than one base class). If all of
8033 the injected-class-names that are found refer to specializations of
8034 the same class template, and if the name is followed by a
8035 template-argument-list, the reference refers to the class template
8036 itself and not a specialization thereof, and is not ambiguous. */
8037 if (TREE_CODE (decl) == TREE_LIST)
8038 {
8039 tree t, tmpl = NULL_TREE;
8040 for (t = decl; t; t = TREE_CHAIN (t))
8041 {
8042 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8043 if (!tmpl)
8044 tmpl = elt;
8045 else if (tmpl != elt)
8046 break;
8047 }
8048 if (tmpl && t == NULL_TREE)
8049 return tmpl;
8050 else
8051 return decl;
8052 }
8053
8054 return (decl != NULL_TREE
8055 && DECL_SELF_REFERENCE_P (decl)
8056 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8057 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8058 }
8059
8060 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8061 parameters, find the desired type.
8062
8063 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8064
8065 IN_DECL, if non-NULL, is the template declaration we are trying to
8066 instantiate.
8067
8068 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8069 the class we are looking up.
8070
8071 Issue error and warning messages under control of COMPLAIN.
8072
8073 If the template class is really a local class in a template
8074 function, then the FUNCTION_CONTEXT is the function in which it is
8075 being instantiated.
8076
8077 ??? Note that this function is currently called *twice* for each
8078 template-id: the first time from the parser, while creating the
8079 incomplete type (finish_template_type), and the second type during the
8080 real instantiation (instantiate_template_class). This is surely something
8081 that we want to avoid. It also causes some problems with argument
8082 coercion (see convert_nontype_argument for more information on this). */
8083
8084 static tree
8085 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8086 int entering_scope, tsubst_flags_t complain)
8087 {
8088 tree templ = NULL_TREE, parmlist;
8089 tree t;
8090 spec_entry **slot;
8091 spec_entry *entry;
8092 spec_entry elt;
8093 hashval_t hash;
8094
8095 if (identifier_p (d1))
8096 {
8097 tree value = innermost_non_namespace_value (d1);
8098 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8099 templ = value;
8100 else
8101 {
8102 if (context)
8103 push_decl_namespace (context);
8104 templ = lookup_name (d1);
8105 templ = maybe_get_template_decl_from_type_decl (templ);
8106 if (context)
8107 pop_decl_namespace ();
8108 }
8109 if (templ)
8110 context = DECL_CONTEXT (templ);
8111 }
8112 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8113 {
8114 tree type = TREE_TYPE (d1);
8115
8116 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8117 an implicit typename for the second A. Deal with it. */
8118 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8119 type = TREE_TYPE (type);
8120
8121 if (CLASSTYPE_TEMPLATE_INFO (type))
8122 {
8123 templ = CLASSTYPE_TI_TEMPLATE (type);
8124 d1 = DECL_NAME (templ);
8125 }
8126 }
8127 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8128 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8129 {
8130 templ = TYPE_TI_TEMPLATE (d1);
8131 d1 = DECL_NAME (templ);
8132 }
8133 else if (DECL_TYPE_TEMPLATE_P (d1))
8134 {
8135 templ = d1;
8136 d1 = DECL_NAME (templ);
8137 context = DECL_CONTEXT (templ);
8138 }
8139 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8140 {
8141 templ = d1;
8142 d1 = DECL_NAME (templ);
8143 }
8144
8145 /* Issue an error message if we didn't find a template. */
8146 if (! templ)
8147 {
8148 if (complain & tf_error)
8149 error ("%qT is not a template", d1);
8150 return error_mark_node;
8151 }
8152
8153 if (TREE_CODE (templ) != TEMPLATE_DECL
8154 /* Make sure it's a user visible template, if it was named by
8155 the user. */
8156 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8157 && !PRIMARY_TEMPLATE_P (templ)))
8158 {
8159 if (complain & tf_error)
8160 {
8161 error ("non-template type %qT used as a template", d1);
8162 if (in_decl)
8163 error ("for template declaration %q+D", in_decl);
8164 }
8165 return error_mark_node;
8166 }
8167
8168 complain &= ~tf_user;
8169
8170 /* An alias that just changes the name of a template is equivalent to the
8171 other template, so if any of the arguments are pack expansions, strip
8172 the alias to avoid problems with a pack expansion passed to a non-pack
8173 alias template parameter (DR 1430). */
8174 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8175 templ = get_underlying_template (templ);
8176
8177 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8178 {
8179 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8180 template arguments */
8181
8182 tree parm;
8183 tree arglist2;
8184 tree outer;
8185
8186 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8187
8188 /* Consider an example where a template template parameter declared as
8189
8190 template <class T, class U = std::allocator<T> > class TT
8191
8192 The template parameter level of T and U are one level larger than
8193 of TT. To proper process the default argument of U, say when an
8194 instantiation `TT<int>' is seen, we need to build the full
8195 arguments containing {int} as the innermost level. Outer levels,
8196 available when not appearing as default template argument, can be
8197 obtained from the arguments of the enclosing template.
8198
8199 Suppose that TT is later substituted with std::vector. The above
8200 instantiation is `TT<int, std::allocator<T> >' with TT at
8201 level 1, and T at level 2, while the template arguments at level 1
8202 becomes {std::vector} and the inner level 2 is {int}. */
8203
8204 outer = DECL_CONTEXT (templ);
8205 if (outer)
8206 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8207 else if (current_template_parms)
8208 {
8209 /* This is an argument of the current template, so we haven't set
8210 DECL_CONTEXT yet. */
8211 tree relevant_template_parms;
8212
8213 /* Parameter levels that are greater than the level of the given
8214 template template parm are irrelevant. */
8215 relevant_template_parms = current_template_parms;
8216 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8217 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8218 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8219
8220 outer = template_parms_to_args (relevant_template_parms);
8221 }
8222
8223 if (outer)
8224 arglist = add_to_template_args (outer, arglist);
8225
8226 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8227 complain,
8228 /*require_all_args=*/true,
8229 /*use_default_args=*/true);
8230 if (arglist2 == error_mark_node
8231 || (!uses_template_parms (arglist2)
8232 && check_instantiated_args (templ, arglist2, complain)))
8233 return error_mark_node;
8234
8235 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8236 return parm;
8237 }
8238 else
8239 {
8240 tree template_type = TREE_TYPE (templ);
8241 tree gen_tmpl;
8242 tree type_decl;
8243 tree found = NULL_TREE;
8244 int arg_depth;
8245 int parm_depth;
8246 int is_dependent_type;
8247 int use_partial_inst_tmpl = false;
8248
8249 if (template_type == error_mark_node)
8250 /* An error occurred while building the template TEMPL, and a
8251 diagnostic has most certainly been emitted for that
8252 already. Let's propagate that error. */
8253 return error_mark_node;
8254
8255 gen_tmpl = most_general_template (templ);
8256 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8257 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8258 arg_depth = TMPL_ARGS_DEPTH (arglist);
8259
8260 if (arg_depth == 1 && parm_depth > 1)
8261 {
8262 /* We've been given an incomplete set of template arguments.
8263 For example, given:
8264
8265 template <class T> struct S1 {
8266 template <class U> struct S2 {};
8267 template <class U> struct S2<U*> {};
8268 };
8269
8270 we will be called with an ARGLIST of `U*', but the
8271 TEMPLATE will be `template <class T> template
8272 <class U> struct S1<T>::S2'. We must fill in the missing
8273 arguments. */
8274 arglist
8275 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8276 arglist);
8277 arg_depth = TMPL_ARGS_DEPTH (arglist);
8278 }
8279
8280 /* Now we should have enough arguments. */
8281 gcc_assert (parm_depth == arg_depth);
8282
8283 /* From here on, we're only interested in the most general
8284 template. */
8285
8286 /* Calculate the BOUND_ARGS. These will be the args that are
8287 actually tsubst'd into the definition to create the
8288 instantiation. */
8289 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8290 complain,
8291 /*require_all_args=*/true,
8292 /*use_default_args=*/true);
8293
8294 if (arglist == error_mark_node)
8295 /* We were unable to bind the arguments. */
8296 return error_mark_node;
8297
8298 /* In the scope of a template class, explicit references to the
8299 template class refer to the type of the template, not any
8300 instantiation of it. For example, in:
8301
8302 template <class T> class C { void f(C<T>); }
8303
8304 the `C<T>' is just the same as `C'. Outside of the
8305 class, however, such a reference is an instantiation. */
8306 if ((entering_scope
8307 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8308 || currently_open_class (template_type))
8309 /* comp_template_args is expensive, check it last. */
8310 && comp_template_args (TYPE_TI_ARGS (template_type),
8311 arglist))
8312 return template_type;
8313
8314 /* If we already have this specialization, return it. */
8315 elt.tmpl = gen_tmpl;
8316 elt.args = arglist;
8317 elt.spec = NULL_TREE;
8318 hash = spec_hasher::hash (&elt);
8319 entry = type_specializations->find_with_hash (&elt, hash);
8320
8321 if (entry)
8322 return entry->spec;
8323
8324 /* If the the template's constraints are not satisfied,
8325 then we cannot form a valid type.
8326
8327 Note that the check is deferred until after the hash
8328 lookup. This prevents redundant checks on previously
8329 instantiated specializations. */
8330 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8331 {
8332 if (complain & tf_error)
8333 {
8334 error ("template constraint failure");
8335 diagnose_constraints (input_location, gen_tmpl, arglist);
8336 }
8337 return error_mark_node;
8338 }
8339
8340 is_dependent_type = uses_template_parms (arglist);
8341
8342 /* If the deduced arguments are invalid, then the binding
8343 failed. */
8344 if (!is_dependent_type
8345 && check_instantiated_args (gen_tmpl,
8346 INNERMOST_TEMPLATE_ARGS (arglist),
8347 complain))
8348 return error_mark_node;
8349
8350 if (!is_dependent_type
8351 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8352 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8353 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8354 {
8355 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8356 DECL_NAME (gen_tmpl),
8357 /*tag_scope=*/ts_global);
8358 return found;
8359 }
8360
8361 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8362 complain, in_decl);
8363 if (context == error_mark_node)
8364 return error_mark_node;
8365
8366 if (!context)
8367 context = global_namespace;
8368
8369 /* Create the type. */
8370 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8371 {
8372 /* The user referred to a specialization of an alias
8373 template represented by GEN_TMPL.
8374
8375 [temp.alias]/2 says:
8376
8377 When a template-id refers to the specialization of an
8378 alias template, it is equivalent to the associated
8379 type obtained by substitution of its
8380 template-arguments for the template-parameters in the
8381 type-id of the alias template. */
8382
8383 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8384 /* Note that the call above (by indirectly calling
8385 register_specialization in tsubst_decl) registers the
8386 TYPE_DECL representing the specialization of the alias
8387 template. So next time someone substitutes ARGLIST for
8388 the template parms into the alias template (GEN_TMPL),
8389 she'll get that TYPE_DECL back. */
8390
8391 if (t == error_mark_node)
8392 return t;
8393 }
8394 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8395 {
8396 if (!is_dependent_type)
8397 {
8398 set_current_access_from_decl (TYPE_NAME (template_type));
8399 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8400 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8401 arglist, complain, in_decl),
8402 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8403 arglist, complain, in_decl),
8404 SCOPED_ENUM_P (template_type), NULL);
8405
8406 if (t == error_mark_node)
8407 return t;
8408 }
8409 else
8410 {
8411 /* We don't want to call start_enum for this type, since
8412 the values for the enumeration constants may involve
8413 template parameters. And, no one should be interested
8414 in the enumeration constants for such a type. */
8415 t = cxx_make_type (ENUMERAL_TYPE);
8416 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8417 }
8418 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8419 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8420 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8421 }
8422 else if (CLASS_TYPE_P (template_type))
8423 {
8424 t = make_class_type (TREE_CODE (template_type));
8425 CLASSTYPE_DECLARED_CLASS (t)
8426 = CLASSTYPE_DECLARED_CLASS (template_type);
8427 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8428 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8429
8430 /* A local class. Make sure the decl gets registered properly. */
8431 if (context == current_function_decl)
8432 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8433
8434 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8435 /* This instantiation is another name for the primary
8436 template type. Set the TYPE_CANONICAL field
8437 appropriately. */
8438 TYPE_CANONICAL (t) = template_type;
8439 else if (any_template_arguments_need_structural_equality_p (arglist))
8440 /* Some of the template arguments require structural
8441 equality testing, so this template class requires
8442 structural equality testing. */
8443 SET_TYPE_STRUCTURAL_EQUALITY (t);
8444 }
8445 else
8446 gcc_unreachable ();
8447
8448 /* If we called start_enum or pushtag above, this information
8449 will already be set up. */
8450 if (!TYPE_NAME (t))
8451 {
8452 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8453
8454 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8455 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8456 DECL_SOURCE_LOCATION (type_decl)
8457 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8458 }
8459 else
8460 type_decl = TYPE_NAME (t);
8461
8462 if (CLASS_TYPE_P (template_type))
8463 {
8464 TREE_PRIVATE (type_decl)
8465 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8466 TREE_PROTECTED (type_decl)
8467 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8468 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8469 {
8470 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8471 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8472 }
8473 }
8474
8475 if (OVERLOAD_TYPE_P (t)
8476 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8477 {
8478 static const char *tags[] = {"abi_tag", "may_alias"};
8479
8480 for (unsigned ix = 0; ix != 2; ix++)
8481 {
8482 tree attributes
8483 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8484
8485 if (attributes)
8486 TYPE_ATTRIBUTES (t)
8487 = tree_cons (TREE_PURPOSE (attributes),
8488 TREE_VALUE (attributes),
8489 TYPE_ATTRIBUTES (t));
8490 }
8491 }
8492
8493 /* Let's consider the explicit specialization of a member
8494 of a class template specialization that is implicitly instantiated,
8495 e.g.:
8496 template<class T>
8497 struct S
8498 {
8499 template<class U> struct M {}; //#0
8500 };
8501
8502 template<>
8503 template<>
8504 struct S<int>::M<char> //#1
8505 {
8506 int i;
8507 };
8508 [temp.expl.spec]/4 says this is valid.
8509
8510 In this case, when we write:
8511 S<int>::M<char> m;
8512
8513 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8514 the one of #0.
8515
8516 When we encounter #1, we want to store the partial instantiation
8517 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8518
8519 For all cases other than this "explicit specialization of member of a
8520 class template", we just want to store the most general template into
8521 the CLASSTYPE_TI_TEMPLATE of M.
8522
8523 This case of "explicit specialization of member of a class template"
8524 only happens when:
8525 1/ the enclosing class is an instantiation of, and therefore not
8526 the same as, the context of the most general template, and
8527 2/ we aren't looking at the partial instantiation itself, i.e.
8528 the innermost arguments are not the same as the innermost parms of
8529 the most general template.
8530
8531 So it's only when 1/ and 2/ happens that we want to use the partial
8532 instantiation of the member template in lieu of its most general
8533 template. */
8534
8535 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8536 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8537 /* the enclosing class must be an instantiation... */
8538 && CLASS_TYPE_P (context)
8539 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8540 {
8541 tree partial_inst_args;
8542 TREE_VEC_LENGTH (arglist)--;
8543 ++processing_template_decl;
8544 partial_inst_args =
8545 tsubst (INNERMOST_TEMPLATE_ARGS
8546 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8547 arglist, complain, NULL_TREE);
8548 --processing_template_decl;
8549 TREE_VEC_LENGTH (arglist)++;
8550 use_partial_inst_tmpl =
8551 /*...and we must not be looking at the partial instantiation
8552 itself. */
8553 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8554 partial_inst_args);
8555 }
8556
8557 if (!use_partial_inst_tmpl)
8558 /* This case is easy; there are no member templates involved. */
8559 found = gen_tmpl;
8560 else
8561 {
8562 /* This is a full instantiation of a member template. Find
8563 the partial instantiation of which this is an instance. */
8564
8565 /* Temporarily reduce by one the number of levels in the ARGLIST
8566 so as to avoid comparing the last set of arguments. */
8567 TREE_VEC_LENGTH (arglist)--;
8568 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8569 TREE_VEC_LENGTH (arglist)++;
8570 /* FOUND is either a proper class type, or an alias
8571 template specialization. In the later case, it's a
8572 TYPE_DECL, resulting from the substituting of arguments
8573 for parameters in the TYPE_DECL of the alias template
8574 done earlier. So be careful while getting the template
8575 of FOUND. */
8576 found = TREE_CODE (found) == TYPE_DECL
8577 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8578 : CLASSTYPE_TI_TEMPLATE (found);
8579 }
8580
8581 // Build template info for the new specialization.
8582 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8583
8584 elt.spec = t;
8585 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8586 entry = ggc_alloc<spec_entry> ();
8587 *entry = elt;
8588 *slot = entry;
8589
8590 /* Note this use of the partial instantiation so we can check it
8591 later in maybe_process_partial_specialization. */
8592 DECL_TEMPLATE_INSTANTIATIONS (found)
8593 = tree_cons (arglist, t,
8594 DECL_TEMPLATE_INSTANTIATIONS (found));
8595
8596 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8597 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8598 /* Now that the type has been registered on the instantiations
8599 list, we set up the enumerators. Because the enumeration
8600 constants may involve the enumeration type itself, we make
8601 sure to register the type first, and then create the
8602 constants. That way, doing tsubst_expr for the enumeration
8603 constants won't result in recursive calls here; we'll find
8604 the instantiation and exit above. */
8605 tsubst_enum (template_type, t, arglist);
8606
8607 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8608 /* If the type makes use of template parameters, the
8609 code that generates debugging information will crash. */
8610 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8611
8612 /* Possibly limit visibility based on template args. */
8613 TREE_PUBLIC (type_decl) = 1;
8614 determine_visibility (type_decl);
8615
8616 inherit_targ_abi_tags (t);
8617
8618 return t;
8619 }
8620 }
8621
8622 /* Wrapper for lookup_template_class_1. */
8623
8624 tree
8625 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8626 int entering_scope, tsubst_flags_t complain)
8627 {
8628 tree ret;
8629 timevar_push (TV_TEMPLATE_INST);
8630 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8631 entering_scope, complain);
8632 timevar_pop (TV_TEMPLATE_INST);
8633 return ret;
8634 }
8635
8636 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8637
8638 tree
8639 lookup_template_variable (tree templ, tree arglist)
8640 {
8641 /* The type of the expression is NULL_TREE since the template-id could refer
8642 to an explicit or partial specialization. */
8643 tree type = NULL_TREE;
8644 if (flag_concepts && variable_concept_p (templ))
8645 /* Except that concepts are always bool. */
8646 type = boolean_type_node;
8647 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8648 }
8649
8650 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8651
8652 tree
8653 finish_template_variable (tree var, tsubst_flags_t complain)
8654 {
8655 tree templ = TREE_OPERAND (var, 0);
8656 tree arglist = TREE_OPERAND (var, 1);
8657
8658 /* We never want to return a VAR_DECL for a variable concept, since they
8659 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8660 bool concept_p = flag_concepts && variable_concept_p (templ);
8661 if (concept_p && processing_template_decl)
8662 return var;
8663
8664 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8665 arglist = add_outermost_template_args (tmpl_args, arglist);
8666
8667 tree parms = DECL_TEMPLATE_PARMS (templ);
8668 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8669 /*req_all*/true,
8670 /*use_default*/true);
8671
8672 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8673 {
8674 if (complain & tf_error)
8675 {
8676 error ("constraints for %qD not satisfied", templ);
8677 diagnose_constraints (location_of (var), templ, arglist);
8678 }
8679 return error_mark_node;
8680 }
8681
8682 /* If a template-id refers to a specialization of a variable
8683 concept, then the expression is true if and only if the
8684 concept's constraints are satisfied by the given template
8685 arguments.
8686
8687 NOTE: This is an extension of Concepts Lite TS that
8688 allows constraints to be used in expressions. */
8689 if (concept_p)
8690 {
8691 tree decl = DECL_TEMPLATE_RESULT (templ);
8692 return evaluate_variable_concept (decl, arglist);
8693 }
8694
8695 return instantiate_template (templ, arglist, complain);
8696 }
8697 \f
8698 struct pair_fn_data
8699 {
8700 tree_fn_t fn;
8701 void *data;
8702 /* True when we should also visit template parameters that occur in
8703 non-deduced contexts. */
8704 bool include_nondeduced_p;
8705 hash_set<tree> *visited;
8706 };
8707
8708 /* Called from for_each_template_parm via walk_tree. */
8709
8710 static tree
8711 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8712 {
8713 tree t = *tp;
8714 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8715 tree_fn_t fn = pfd->fn;
8716 void *data = pfd->data;
8717 tree result = NULL_TREE;
8718
8719 #define WALK_SUBTREE(NODE) \
8720 do \
8721 { \
8722 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8723 pfd->include_nondeduced_p); \
8724 if (result) goto out; \
8725 } \
8726 while (0)
8727
8728 if (TYPE_P (t)
8729 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8730 WALK_SUBTREE (TYPE_CONTEXT (t));
8731
8732 switch (TREE_CODE (t))
8733 {
8734 case RECORD_TYPE:
8735 if (TYPE_PTRMEMFUNC_P (t))
8736 break;
8737 /* Fall through. */
8738
8739 case UNION_TYPE:
8740 case ENUMERAL_TYPE:
8741 if (!TYPE_TEMPLATE_INFO (t))
8742 *walk_subtrees = 0;
8743 else
8744 WALK_SUBTREE (TYPE_TI_ARGS (t));
8745 break;
8746
8747 case INTEGER_TYPE:
8748 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8749 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8750 break;
8751
8752 case METHOD_TYPE:
8753 /* Since we're not going to walk subtrees, we have to do this
8754 explicitly here. */
8755 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8756 /* Fall through. */
8757
8758 case FUNCTION_TYPE:
8759 /* Check the return type. */
8760 WALK_SUBTREE (TREE_TYPE (t));
8761
8762 /* Check the parameter types. Since default arguments are not
8763 instantiated until they are needed, the TYPE_ARG_TYPES may
8764 contain expressions that involve template parameters. But,
8765 no-one should be looking at them yet. And, once they're
8766 instantiated, they don't contain template parameters, so
8767 there's no point in looking at them then, either. */
8768 {
8769 tree parm;
8770
8771 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8772 WALK_SUBTREE (TREE_VALUE (parm));
8773
8774 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8775 want walk_tree walking into them itself. */
8776 *walk_subtrees = 0;
8777 }
8778 break;
8779
8780 case TYPEOF_TYPE:
8781 case UNDERLYING_TYPE:
8782 if (pfd->include_nondeduced_p
8783 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8784 pfd->visited,
8785 pfd->include_nondeduced_p))
8786 return error_mark_node;
8787 break;
8788
8789 case FUNCTION_DECL:
8790 case VAR_DECL:
8791 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8792 WALK_SUBTREE (DECL_TI_ARGS (t));
8793 /* Fall through. */
8794
8795 case PARM_DECL:
8796 case CONST_DECL:
8797 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8798 WALK_SUBTREE (DECL_INITIAL (t));
8799 if (DECL_CONTEXT (t)
8800 && pfd->include_nondeduced_p)
8801 WALK_SUBTREE (DECL_CONTEXT (t));
8802 break;
8803
8804 case BOUND_TEMPLATE_TEMPLATE_PARM:
8805 /* Record template parameters such as `T' inside `TT<T>'. */
8806 WALK_SUBTREE (TYPE_TI_ARGS (t));
8807 /* Fall through. */
8808
8809 case TEMPLATE_TEMPLATE_PARM:
8810 case TEMPLATE_TYPE_PARM:
8811 case TEMPLATE_PARM_INDEX:
8812 if (fn && (*fn)(t, data))
8813 return t;
8814 else if (!fn)
8815 return t;
8816 break;
8817
8818 case TEMPLATE_DECL:
8819 /* A template template parameter is encountered. */
8820 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8821 WALK_SUBTREE (TREE_TYPE (t));
8822
8823 /* Already substituted template template parameter */
8824 *walk_subtrees = 0;
8825 break;
8826
8827 case TYPENAME_TYPE:
8828 if (!fn)
8829 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8830 break;
8831
8832 case CONSTRUCTOR:
8833 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8834 && pfd->include_nondeduced_p)
8835 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8836 break;
8837
8838 case INDIRECT_REF:
8839 case COMPONENT_REF:
8840 /* If there's no type, then this thing must be some expression
8841 involving template parameters. */
8842 if (!fn && !TREE_TYPE (t))
8843 return error_mark_node;
8844 break;
8845
8846 case MODOP_EXPR:
8847 case CAST_EXPR:
8848 case IMPLICIT_CONV_EXPR:
8849 case REINTERPRET_CAST_EXPR:
8850 case CONST_CAST_EXPR:
8851 case STATIC_CAST_EXPR:
8852 case DYNAMIC_CAST_EXPR:
8853 case ARROW_EXPR:
8854 case DOTSTAR_EXPR:
8855 case TYPEID_EXPR:
8856 case PSEUDO_DTOR_EXPR:
8857 if (!fn)
8858 return error_mark_node;
8859 break;
8860
8861 default:
8862 break;
8863 }
8864
8865 #undef WALK_SUBTREE
8866
8867 /* We didn't find any template parameters we liked. */
8868 out:
8869 return result;
8870 }
8871
8872 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8873 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8874 call FN with the parameter and the DATA.
8875 If FN returns nonzero, the iteration is terminated, and
8876 for_each_template_parm returns 1. Otherwise, the iteration
8877 continues. If FN never returns a nonzero value, the value
8878 returned by for_each_template_parm is 0. If FN is NULL, it is
8879 considered to be the function which always returns 1.
8880
8881 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8882 parameters that occur in non-deduced contexts. When false, only
8883 visits those template parameters that can be deduced. */
8884
8885 static tree
8886 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8887 hash_set<tree> *visited,
8888 bool include_nondeduced_p)
8889 {
8890 struct pair_fn_data pfd;
8891 tree result;
8892
8893 /* Set up. */
8894 pfd.fn = fn;
8895 pfd.data = data;
8896 pfd.include_nondeduced_p = include_nondeduced_p;
8897
8898 /* Walk the tree. (Conceptually, we would like to walk without
8899 duplicates, but for_each_template_parm_r recursively calls
8900 for_each_template_parm, so we would need to reorganize a fair
8901 bit to use walk_tree_without_duplicates, so we keep our own
8902 visited list.) */
8903 if (visited)
8904 pfd.visited = visited;
8905 else
8906 pfd.visited = new hash_set<tree>;
8907 result = cp_walk_tree (&t,
8908 for_each_template_parm_r,
8909 &pfd,
8910 pfd.visited);
8911
8912 /* Clean up. */
8913 if (!visited)
8914 {
8915 delete pfd.visited;
8916 pfd.visited = 0;
8917 }
8918
8919 return result;
8920 }
8921
8922 /* Returns true if T depends on any template parameter. */
8923
8924 int
8925 uses_template_parms (tree t)
8926 {
8927 if (t == NULL_TREE)
8928 return false;
8929
8930 bool dependent_p;
8931 int saved_processing_template_decl;
8932
8933 saved_processing_template_decl = processing_template_decl;
8934 if (!saved_processing_template_decl)
8935 processing_template_decl = 1;
8936 if (TYPE_P (t))
8937 dependent_p = dependent_type_p (t);
8938 else if (TREE_CODE (t) == TREE_VEC)
8939 dependent_p = any_dependent_template_arguments_p (t);
8940 else if (TREE_CODE (t) == TREE_LIST)
8941 dependent_p = (uses_template_parms (TREE_VALUE (t))
8942 || uses_template_parms (TREE_CHAIN (t)));
8943 else if (TREE_CODE (t) == TYPE_DECL)
8944 dependent_p = dependent_type_p (TREE_TYPE (t));
8945 else if (DECL_P (t)
8946 || EXPR_P (t)
8947 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8948 || TREE_CODE (t) == OVERLOAD
8949 || BASELINK_P (t)
8950 || identifier_p (t)
8951 || TREE_CODE (t) == TRAIT_EXPR
8952 || TREE_CODE (t) == CONSTRUCTOR
8953 || CONSTANT_CLASS_P (t))
8954 dependent_p = (type_dependent_expression_p (t)
8955 || value_dependent_expression_p (t));
8956 else
8957 {
8958 gcc_assert (t == error_mark_node);
8959 dependent_p = false;
8960 }
8961
8962 processing_template_decl = saved_processing_template_decl;
8963
8964 return dependent_p;
8965 }
8966
8967 /* Returns true iff current_function_decl is an incompletely instantiated
8968 template. Useful instead of processing_template_decl because the latter
8969 is set to 0 during instantiate_non_dependent_expr. */
8970
8971 bool
8972 in_template_function (void)
8973 {
8974 tree fn = current_function_decl;
8975 bool ret;
8976 ++processing_template_decl;
8977 ret = (fn && DECL_LANG_SPECIFIC (fn)
8978 && DECL_TEMPLATE_INFO (fn)
8979 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8980 --processing_template_decl;
8981 return ret;
8982 }
8983
8984 /* Returns true if T depends on any template parameter with level LEVEL. */
8985
8986 bool
8987 uses_template_parms_level (tree t, int level)
8988 {
8989 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8990 /*include_nondeduced_p=*/true);
8991 }
8992
8993 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8994 ill-formed translation unit, i.e. a variable or function that isn't
8995 usable in a constant expression. */
8996
8997 static inline bool
8998 neglectable_inst_p (tree d)
8999 {
9000 return (DECL_P (d)
9001 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9002 : decl_maybe_constant_var_p (d)));
9003 }
9004
9005 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9006 neglectable and instantiated from within an erroneous instantiation. */
9007
9008 static bool
9009 limit_bad_template_recursion (tree decl)
9010 {
9011 struct tinst_level *lev = current_tinst_level;
9012 int errs = errorcount + sorrycount;
9013 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9014 return false;
9015
9016 for (; lev; lev = lev->next)
9017 if (neglectable_inst_p (lev->decl))
9018 break;
9019
9020 return (lev && errs > lev->errors);
9021 }
9022
9023 static int tinst_depth;
9024 extern int max_tinst_depth;
9025 int depth_reached;
9026
9027 static GTY(()) struct tinst_level *last_error_tinst_level;
9028
9029 /* We're starting to instantiate D; record the template instantiation context
9030 for diagnostics and to restore it later. */
9031
9032 bool
9033 push_tinst_level (tree d)
9034 {
9035 return push_tinst_level_loc (d, input_location);
9036 }
9037
9038 /* We're starting to instantiate D; record the template instantiation context
9039 at LOC for diagnostics and to restore it later. */
9040
9041 bool
9042 push_tinst_level_loc (tree d, location_t loc)
9043 {
9044 struct tinst_level *new_level;
9045
9046 if (tinst_depth >= max_tinst_depth)
9047 {
9048 fatal_error (input_location,
9049 "template instantiation depth exceeds maximum of %d"
9050 " (use -ftemplate-depth= to increase the maximum)",
9051 max_tinst_depth);
9052 return false;
9053 }
9054
9055 /* If the current instantiation caused problems, don't let it instantiate
9056 anything else. Do allow deduction substitution and decls usable in
9057 constant expressions. */
9058 if (limit_bad_template_recursion (d))
9059 return false;
9060
9061 new_level = ggc_alloc<tinst_level> ();
9062 new_level->decl = d;
9063 new_level->locus = loc;
9064 new_level->errors = errorcount+sorrycount;
9065 new_level->in_system_header_p = in_system_header_at (input_location);
9066 new_level->next = current_tinst_level;
9067 current_tinst_level = new_level;
9068
9069 ++tinst_depth;
9070 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9071 depth_reached = tinst_depth;
9072
9073 return true;
9074 }
9075
9076 /* We're done instantiating this template; return to the instantiation
9077 context. */
9078
9079 void
9080 pop_tinst_level (void)
9081 {
9082 /* Restore the filename and line number stashed away when we started
9083 this instantiation. */
9084 input_location = current_tinst_level->locus;
9085 current_tinst_level = current_tinst_level->next;
9086 --tinst_depth;
9087 }
9088
9089 /* We're instantiating a deferred template; restore the template
9090 instantiation context in which the instantiation was requested, which
9091 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9092
9093 static tree
9094 reopen_tinst_level (struct tinst_level *level)
9095 {
9096 struct tinst_level *t;
9097
9098 tinst_depth = 0;
9099 for (t = level; t; t = t->next)
9100 ++tinst_depth;
9101
9102 current_tinst_level = level;
9103 pop_tinst_level ();
9104 if (current_tinst_level)
9105 current_tinst_level->errors = errorcount+sorrycount;
9106 return level->decl;
9107 }
9108
9109 /* Returns the TINST_LEVEL which gives the original instantiation
9110 context. */
9111
9112 struct tinst_level *
9113 outermost_tinst_level (void)
9114 {
9115 struct tinst_level *level = current_tinst_level;
9116 if (level)
9117 while (level->next)
9118 level = level->next;
9119 return level;
9120 }
9121
9122 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9123 vector of template arguments, as for tsubst.
9124
9125 Returns an appropriate tsubst'd friend declaration. */
9126
9127 static tree
9128 tsubst_friend_function (tree decl, tree args)
9129 {
9130 tree new_friend;
9131
9132 if (TREE_CODE (decl) == FUNCTION_DECL
9133 && DECL_TEMPLATE_INSTANTIATION (decl)
9134 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9135 /* This was a friend declared with an explicit template
9136 argument list, e.g.:
9137
9138 friend void f<>(T);
9139
9140 to indicate that f was a template instantiation, not a new
9141 function declaration. Now, we have to figure out what
9142 instantiation of what template. */
9143 {
9144 tree template_id, arglist, fns;
9145 tree new_args;
9146 tree tmpl;
9147 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9148
9149 /* Friend functions are looked up in the containing namespace scope.
9150 We must enter that scope, to avoid finding member functions of the
9151 current class with same name. */
9152 push_nested_namespace (ns);
9153 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9154 tf_warning_or_error, NULL_TREE,
9155 /*integral_constant_expression_p=*/false);
9156 pop_nested_namespace (ns);
9157 arglist = tsubst (DECL_TI_ARGS (decl), args,
9158 tf_warning_or_error, NULL_TREE);
9159 template_id = lookup_template_function (fns, arglist);
9160
9161 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9162 tmpl = determine_specialization (template_id, new_friend,
9163 &new_args,
9164 /*need_member_template=*/0,
9165 TREE_VEC_LENGTH (args),
9166 tsk_none);
9167 return instantiate_template (tmpl, new_args, tf_error);
9168 }
9169
9170 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9171
9172 /* The NEW_FRIEND will look like an instantiation, to the
9173 compiler, but is not an instantiation from the point of view of
9174 the language. For example, we might have had:
9175
9176 template <class T> struct S {
9177 template <class U> friend void f(T, U);
9178 };
9179
9180 Then, in S<int>, template <class U> void f(int, U) is not an
9181 instantiation of anything. */
9182 if (new_friend == error_mark_node)
9183 return error_mark_node;
9184
9185 DECL_USE_TEMPLATE (new_friend) = 0;
9186 if (TREE_CODE (decl) == TEMPLATE_DECL)
9187 {
9188 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9189 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9190 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9191 }
9192
9193 /* The mangled name for the NEW_FRIEND is incorrect. The function
9194 is not a template instantiation and should not be mangled like
9195 one. Therefore, we forget the mangling here; we'll recompute it
9196 later if we need it. */
9197 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9198 {
9199 SET_DECL_RTL (new_friend, NULL);
9200 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9201 }
9202
9203 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9204 {
9205 tree old_decl;
9206 tree new_friend_template_info;
9207 tree new_friend_result_template_info;
9208 tree ns;
9209 int new_friend_is_defn;
9210
9211 /* We must save some information from NEW_FRIEND before calling
9212 duplicate decls since that function will free NEW_FRIEND if
9213 possible. */
9214 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9215 new_friend_is_defn =
9216 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9217 (template_for_substitution (new_friend)))
9218 != NULL_TREE);
9219 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9220 {
9221 /* This declaration is a `primary' template. */
9222 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9223
9224 new_friend_result_template_info
9225 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9226 }
9227 else
9228 new_friend_result_template_info = NULL_TREE;
9229
9230 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9231 if (new_friend_is_defn)
9232 DECL_INITIAL (new_friend) = error_mark_node;
9233
9234 /* Inside pushdecl_namespace_level, we will push into the
9235 current namespace. However, the friend function should go
9236 into the namespace of the template. */
9237 ns = decl_namespace_context (new_friend);
9238 push_nested_namespace (ns);
9239 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9240 pop_nested_namespace (ns);
9241
9242 if (old_decl == error_mark_node)
9243 return error_mark_node;
9244
9245 if (old_decl != new_friend)
9246 {
9247 /* This new friend declaration matched an existing
9248 declaration. For example, given:
9249
9250 template <class T> void f(T);
9251 template <class U> class C {
9252 template <class T> friend void f(T) {}
9253 };
9254
9255 the friend declaration actually provides the definition
9256 of `f', once C has been instantiated for some type. So,
9257 old_decl will be the out-of-class template declaration,
9258 while new_friend is the in-class definition.
9259
9260 But, if `f' was called before this point, the
9261 instantiation of `f' will have DECL_TI_ARGS corresponding
9262 to `T' but not to `U', references to which might appear
9263 in the definition of `f'. Previously, the most general
9264 template for an instantiation of `f' was the out-of-class
9265 version; now it is the in-class version. Therefore, we
9266 run through all specialization of `f', adding to their
9267 DECL_TI_ARGS appropriately. In particular, they need a
9268 new set of outer arguments, corresponding to the
9269 arguments for this class instantiation.
9270
9271 The same situation can arise with something like this:
9272
9273 friend void f(int);
9274 template <class T> class C {
9275 friend void f(T) {}
9276 };
9277
9278 when `C<int>' is instantiated. Now, `f(int)' is defined
9279 in the class. */
9280
9281 if (!new_friend_is_defn)
9282 /* On the other hand, if the in-class declaration does
9283 *not* provide a definition, then we don't want to alter
9284 existing definitions. We can just leave everything
9285 alone. */
9286 ;
9287 else
9288 {
9289 tree new_template = TI_TEMPLATE (new_friend_template_info);
9290 tree new_args = TI_ARGS (new_friend_template_info);
9291
9292 /* Overwrite whatever template info was there before, if
9293 any, with the new template information pertaining to
9294 the declaration. */
9295 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9296
9297 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9298 {
9299 /* We should have called reregister_specialization in
9300 duplicate_decls. */
9301 gcc_assert (retrieve_specialization (new_template,
9302 new_args, 0)
9303 == old_decl);
9304
9305 /* Instantiate it if the global has already been used. */
9306 if (DECL_ODR_USED (old_decl))
9307 instantiate_decl (old_decl, /*defer_ok=*/true,
9308 /*expl_inst_class_mem_p=*/false);
9309 }
9310 else
9311 {
9312 tree t;
9313
9314 /* Indicate that the old function template is a partial
9315 instantiation. */
9316 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9317 = new_friend_result_template_info;
9318
9319 gcc_assert (new_template
9320 == most_general_template (new_template));
9321 gcc_assert (new_template != old_decl);
9322
9323 /* Reassign any specializations already in the hash table
9324 to the new more general template, and add the
9325 additional template args. */
9326 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9327 t != NULL_TREE;
9328 t = TREE_CHAIN (t))
9329 {
9330 tree spec = TREE_VALUE (t);
9331 spec_entry elt;
9332
9333 elt.tmpl = old_decl;
9334 elt.args = DECL_TI_ARGS (spec);
9335 elt.spec = NULL_TREE;
9336
9337 decl_specializations->remove_elt (&elt);
9338
9339 DECL_TI_ARGS (spec)
9340 = add_outermost_template_args (new_args,
9341 DECL_TI_ARGS (spec));
9342
9343 register_specialization
9344 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9345
9346 }
9347 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9348 }
9349 }
9350
9351 /* The information from NEW_FRIEND has been merged into OLD_DECL
9352 by duplicate_decls. */
9353 new_friend = old_decl;
9354 }
9355 }
9356 else
9357 {
9358 tree context = DECL_CONTEXT (new_friend);
9359 bool dependent_p;
9360
9361 /* In the code
9362 template <class T> class C {
9363 template <class U> friend void C1<U>::f (); // case 1
9364 friend void C2<T>::f (); // case 2
9365 };
9366 we only need to make sure CONTEXT is a complete type for
9367 case 2. To distinguish between the two cases, we note that
9368 CONTEXT of case 1 remains dependent type after tsubst while
9369 this isn't true for case 2. */
9370 ++processing_template_decl;
9371 dependent_p = dependent_type_p (context);
9372 --processing_template_decl;
9373
9374 if (!dependent_p
9375 && !complete_type_or_else (context, NULL_TREE))
9376 return error_mark_node;
9377
9378 if (COMPLETE_TYPE_P (context))
9379 {
9380 tree fn = new_friend;
9381 /* do_friend adds the TEMPLATE_DECL for any member friend
9382 template even if it isn't a member template, i.e.
9383 template <class T> friend A<T>::f();
9384 Look through it in that case. */
9385 if (TREE_CODE (fn) == TEMPLATE_DECL
9386 && !PRIMARY_TEMPLATE_P (fn))
9387 fn = DECL_TEMPLATE_RESULT (fn);
9388 /* Check to see that the declaration is really present, and,
9389 possibly obtain an improved declaration. */
9390 fn = check_classfn (context, fn, NULL_TREE);
9391
9392 if (fn)
9393 new_friend = fn;
9394 }
9395 }
9396
9397 return new_friend;
9398 }
9399
9400 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9401 template arguments, as for tsubst.
9402
9403 Returns an appropriate tsubst'd friend type or error_mark_node on
9404 failure. */
9405
9406 static tree
9407 tsubst_friend_class (tree friend_tmpl, tree args)
9408 {
9409 tree friend_type;
9410 tree tmpl;
9411 tree context;
9412
9413 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9414 {
9415 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9416 return TREE_TYPE (t);
9417 }
9418
9419 context = CP_DECL_CONTEXT (friend_tmpl);
9420
9421 if (context != global_namespace)
9422 {
9423 if (TREE_CODE (context) == NAMESPACE_DECL)
9424 push_nested_namespace (context);
9425 else
9426 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9427 }
9428
9429 /* Look for a class template declaration. We look for hidden names
9430 because two friend declarations of the same template are the
9431 same. For example, in:
9432
9433 struct A {
9434 template <typename> friend class F;
9435 };
9436 template <typename> struct B {
9437 template <typename> friend class F;
9438 };
9439
9440 both F templates are the same. */
9441 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9442 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9443
9444 /* But, if we don't find one, it might be because we're in a
9445 situation like this:
9446
9447 template <class T>
9448 struct S {
9449 template <class U>
9450 friend struct S;
9451 };
9452
9453 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9454 for `S<int>', not the TEMPLATE_DECL. */
9455 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9456 {
9457 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9458 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9459 }
9460
9461 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9462 {
9463 /* The friend template has already been declared. Just
9464 check to see that the declarations match, and install any new
9465 default parameters. We must tsubst the default parameters,
9466 of course. We only need the innermost template parameters
9467 because that is all that redeclare_class_template will look
9468 at. */
9469 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9470 > TMPL_ARGS_DEPTH (args))
9471 {
9472 tree parms;
9473 location_t saved_input_location;
9474 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9475 args, tf_warning_or_error);
9476
9477 saved_input_location = input_location;
9478 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9479 tree cons = get_constraints (tmpl);
9480 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9481 input_location = saved_input_location;
9482
9483 }
9484
9485 friend_type = TREE_TYPE (tmpl);
9486 }
9487 else
9488 {
9489 /* The friend template has not already been declared. In this
9490 case, the instantiation of the template class will cause the
9491 injection of this template into the global scope. */
9492 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9493 if (tmpl == error_mark_node)
9494 return error_mark_node;
9495
9496 /* The new TMPL is not an instantiation of anything, so we
9497 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9498 the new type because that is supposed to be the corresponding
9499 template decl, i.e., TMPL. */
9500 DECL_USE_TEMPLATE (tmpl) = 0;
9501 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9502 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9503 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9504 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9505
9506 /* Inject this template into the global scope. */
9507 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9508 }
9509
9510 if (context != global_namespace)
9511 {
9512 if (TREE_CODE (context) == NAMESPACE_DECL)
9513 pop_nested_namespace (context);
9514 else
9515 pop_nested_class ();
9516 }
9517
9518 return friend_type;
9519 }
9520
9521 /* Returns zero if TYPE cannot be completed later due to circularity.
9522 Otherwise returns one. */
9523
9524 static int
9525 can_complete_type_without_circularity (tree type)
9526 {
9527 if (type == NULL_TREE || type == error_mark_node)
9528 return 0;
9529 else if (COMPLETE_TYPE_P (type))
9530 return 1;
9531 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9532 return can_complete_type_without_circularity (TREE_TYPE (type));
9533 else if (CLASS_TYPE_P (type)
9534 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9535 return 0;
9536 else
9537 return 1;
9538 }
9539
9540 static tree tsubst_omp_clauses (tree, bool, bool, tree, tsubst_flags_t, tree);
9541
9542 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9543 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9544
9545 static tree
9546 tsubst_attribute (tree t, tree *decl_p, tree args,
9547 tsubst_flags_t complain, tree in_decl)
9548 {
9549 gcc_assert (ATTR_IS_DEPENDENT (t));
9550
9551 tree val = TREE_VALUE (t);
9552 if (val == NULL_TREE)
9553 /* Nothing to do. */;
9554 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9555 && is_attribute_p ("omp declare simd",
9556 get_attribute_name (t)))
9557 {
9558 tree clauses = TREE_VALUE (val);
9559 clauses = tsubst_omp_clauses (clauses, true, false, args,
9560 complain, in_decl);
9561 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9562 clauses = finish_omp_clauses (clauses, false, true);
9563 tree parms = DECL_ARGUMENTS (*decl_p);
9564 clauses
9565 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9566 if (clauses)
9567 val = build_tree_list (NULL_TREE, clauses);
9568 else
9569 val = NULL_TREE;
9570 }
9571 /* If the first attribute argument is an identifier, don't
9572 pass it through tsubst. Attributes like mode, format,
9573 cleanup and several target specific attributes expect it
9574 unmodified. */
9575 else if (attribute_takes_identifier_p (get_attribute_name (t)))
9576 {
9577 tree chain
9578 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
9579 /*integral_constant_expression_p=*/false);
9580 if (chain != TREE_CHAIN (val))
9581 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
9582 }
9583 else if (PACK_EXPANSION_P (val))
9584 {
9585 /* An attribute pack expansion. */
9586 tree purp = TREE_PURPOSE (t);
9587 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
9588 int len = TREE_VEC_LENGTH (pack);
9589 tree list = NULL_TREE;
9590 tree *q = &list;
9591 for (int i = 0; i < len; ++i)
9592 {
9593 tree elt = TREE_VEC_ELT (pack, i);
9594 *q = build_tree_list (purp, elt);
9595 q = &TREE_CHAIN (*q);
9596 }
9597 return list;
9598 }
9599 else
9600 val = tsubst_expr (val, args, complain, in_decl,
9601 /*integral_constant_expression_p=*/false);
9602
9603 if (val != TREE_VALUE (t))
9604 return build_tree_list (TREE_PURPOSE (t), val);
9605 return t;
9606 }
9607
9608 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
9609 unchanged or a new TREE_LIST chain. */
9610
9611 static tree
9612 tsubst_attributes (tree attributes, tree args,
9613 tsubst_flags_t complain, tree in_decl)
9614 {
9615 tree last_dep = NULL_TREE;
9616
9617 for (tree t = attributes; t; t = TREE_CHAIN (t))
9618 if (ATTR_IS_DEPENDENT (t))
9619 {
9620 last_dep = t;
9621 attributes = copy_list (attributes);
9622 break;
9623 }
9624
9625 if (last_dep)
9626 for (tree *p = &attributes; *p; p = &TREE_CHAIN (*p))
9627 {
9628 tree t = *p;
9629 if (ATTR_IS_DEPENDENT (t))
9630 {
9631 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
9632 if (subst == t)
9633 continue;
9634 *p = subst;
9635 do
9636 p = &TREE_CHAIN (*p);
9637 while (*p);
9638 *p = TREE_CHAIN (t);
9639 }
9640 }
9641
9642 return attributes;
9643 }
9644
9645 /* Apply any attributes which had to be deferred until instantiation
9646 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9647 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9648
9649 static void
9650 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9651 tree args, tsubst_flags_t complain, tree in_decl)
9652 {
9653 tree last_dep = NULL_TREE;
9654 tree t;
9655 tree *p;
9656
9657 for (t = attributes; t; t = TREE_CHAIN (t))
9658 if (ATTR_IS_DEPENDENT (t))
9659 {
9660 last_dep = t;
9661 attributes = copy_list (attributes);
9662 break;
9663 }
9664
9665 if (DECL_P (*decl_p))
9666 {
9667 if (TREE_TYPE (*decl_p) == error_mark_node)
9668 return;
9669 p = &DECL_ATTRIBUTES (*decl_p);
9670 }
9671 else
9672 p = &TYPE_ATTRIBUTES (*decl_p);
9673
9674 if (last_dep)
9675 {
9676 tree late_attrs = NULL_TREE;
9677 tree *q = &late_attrs;
9678
9679 for (*p = attributes; *p; )
9680 {
9681 t = *p;
9682 if (ATTR_IS_DEPENDENT (t))
9683 {
9684 *p = TREE_CHAIN (t);
9685 TREE_CHAIN (t) = NULL_TREE;
9686 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
9687 do
9688 q = &TREE_CHAIN (*q);
9689 while (*q);
9690 }
9691 else
9692 p = &TREE_CHAIN (t);
9693 }
9694
9695 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9696 }
9697 }
9698
9699 /* Perform (or defer) access check for typedefs that were referenced
9700 from within the template TMPL code.
9701 This is a subroutine of instantiate_decl and instantiate_class_template.
9702 TMPL is the template to consider and TARGS is the list of arguments of
9703 that template. */
9704
9705 static void
9706 perform_typedefs_access_check (tree tmpl, tree targs)
9707 {
9708 location_t saved_location;
9709 unsigned i;
9710 qualified_typedef_usage_t *iter;
9711
9712 if (!tmpl
9713 || (!CLASS_TYPE_P (tmpl)
9714 && TREE_CODE (tmpl) != FUNCTION_DECL))
9715 return;
9716
9717 saved_location = input_location;
9718 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9719 {
9720 tree type_decl = iter->typedef_decl;
9721 tree type_scope = iter->context;
9722
9723 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9724 continue;
9725
9726 if (uses_template_parms (type_decl))
9727 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9728 if (uses_template_parms (type_scope))
9729 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9730
9731 /* Make access check error messages point to the location
9732 of the use of the typedef. */
9733 input_location = iter->locus;
9734 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9735 type_decl, type_decl,
9736 tf_warning_or_error);
9737 }
9738 input_location = saved_location;
9739 }
9740
9741 static tree
9742 instantiate_class_template_1 (tree type)
9743 {
9744 tree templ, args, pattern, t, member;
9745 tree typedecl;
9746 tree pbinfo;
9747 tree base_list;
9748 unsigned int saved_maximum_field_alignment;
9749 tree fn_context;
9750
9751 if (type == error_mark_node)
9752 return error_mark_node;
9753
9754 if (COMPLETE_OR_OPEN_TYPE_P (type)
9755 || uses_template_parms (type))
9756 return type;
9757
9758 /* Figure out which template is being instantiated. */
9759 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9760 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9761
9762 /* Determine what specialization of the original template to
9763 instantiate. */
9764 t = most_specialized_partial_spec (type, tf_warning_or_error);
9765 if (t == error_mark_node)
9766 {
9767 TYPE_BEING_DEFINED (type) = 1;
9768 return error_mark_node;
9769 }
9770 else if (t)
9771 {
9772 /* This TYPE is actually an instantiation of a partial
9773 specialization. We replace the innermost set of ARGS with
9774 the arguments appropriate for substitution. For example,
9775 given:
9776
9777 template <class T> struct S {};
9778 template <class T> struct S<T*> {};
9779
9780 and supposing that we are instantiating S<int*>, ARGS will
9781 presently be {int*} -- but we need {int}. */
9782 pattern = TREE_TYPE (t);
9783 args = TREE_PURPOSE (t);
9784 }
9785 else
9786 {
9787 pattern = TREE_TYPE (templ);
9788 args = CLASSTYPE_TI_ARGS (type);
9789 }
9790
9791 /* If the template we're instantiating is incomplete, then clearly
9792 there's nothing we can do. */
9793 if (!COMPLETE_TYPE_P (pattern))
9794 return type;
9795
9796 /* If we've recursively instantiated too many templates, stop. */
9797 if (! push_tinst_level (type))
9798 return type;
9799
9800 /* Now we're really doing the instantiation. Mark the type as in
9801 the process of being defined. */
9802 TYPE_BEING_DEFINED (type) = 1;
9803
9804 /* We may be in the middle of deferred access check. Disable
9805 it now. */
9806 push_deferring_access_checks (dk_no_deferred);
9807
9808 int saved_unevaluated_operand = cp_unevaluated_operand;
9809 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9810
9811 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9812 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9813 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9814 fn_context = error_mark_node;
9815 if (!fn_context)
9816 push_to_top_level ();
9817 else
9818 {
9819 cp_unevaluated_operand = 0;
9820 c_inhibit_evaluation_warnings = 0;
9821 }
9822 /* Use #pragma pack from the template context. */
9823 saved_maximum_field_alignment = maximum_field_alignment;
9824 maximum_field_alignment = TYPE_PRECISION (pattern);
9825
9826 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9827
9828 /* Set the input location to the most specialized template definition.
9829 This is needed if tsubsting causes an error. */
9830 typedecl = TYPE_MAIN_DECL (pattern);
9831 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9832 DECL_SOURCE_LOCATION (typedecl);
9833
9834 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9835 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9836 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9837 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9838 if (ANON_AGGR_TYPE_P (pattern))
9839 SET_ANON_AGGR_TYPE_P (type);
9840 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9841 {
9842 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9843 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9844 /* Adjust visibility for template arguments. */
9845 determine_visibility (TYPE_MAIN_DECL (type));
9846 }
9847 if (CLASS_TYPE_P (type))
9848 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9849
9850 pbinfo = TYPE_BINFO (pattern);
9851
9852 /* We should never instantiate a nested class before its enclosing
9853 class; we need to look up the nested class by name before we can
9854 instantiate it, and that lookup should instantiate the enclosing
9855 class. */
9856 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9857 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9858
9859 base_list = NULL_TREE;
9860 if (BINFO_N_BASE_BINFOS (pbinfo))
9861 {
9862 tree pbase_binfo;
9863 tree pushed_scope;
9864 int i;
9865
9866 /* We must enter the scope containing the type, as that is where
9867 the accessibility of types named in dependent bases are
9868 looked up from. */
9869 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9870
9871 /* Substitute into each of the bases to determine the actual
9872 basetypes. */
9873 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9874 {
9875 tree base;
9876 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9877 tree expanded_bases = NULL_TREE;
9878 int idx, len = 1;
9879
9880 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9881 {
9882 expanded_bases =
9883 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9884 args, tf_error, NULL_TREE);
9885 if (expanded_bases == error_mark_node)
9886 continue;
9887
9888 len = TREE_VEC_LENGTH (expanded_bases);
9889 }
9890
9891 for (idx = 0; idx < len; idx++)
9892 {
9893 if (expanded_bases)
9894 /* Extract the already-expanded base class. */
9895 base = TREE_VEC_ELT (expanded_bases, idx);
9896 else
9897 /* Substitute to figure out the base class. */
9898 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9899 NULL_TREE);
9900
9901 if (base == error_mark_node)
9902 continue;
9903
9904 base_list = tree_cons (access, base, base_list);
9905 if (BINFO_VIRTUAL_P (pbase_binfo))
9906 TREE_TYPE (base_list) = integer_type_node;
9907 }
9908 }
9909
9910 /* The list is now in reverse order; correct that. */
9911 base_list = nreverse (base_list);
9912
9913 if (pushed_scope)
9914 pop_scope (pushed_scope);
9915 }
9916 /* Now call xref_basetypes to set up all the base-class
9917 information. */
9918 xref_basetypes (type, base_list);
9919
9920 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9921 (int) ATTR_FLAG_TYPE_IN_PLACE,
9922 args, tf_error, NULL_TREE);
9923 fixup_attribute_variants (type);
9924
9925 /* Now that our base classes are set up, enter the scope of the
9926 class, so that name lookups into base classes, etc. will work
9927 correctly. This is precisely analogous to what we do in
9928 begin_class_definition when defining an ordinary non-template
9929 class, except we also need to push the enclosing classes. */
9930 push_nested_class (type);
9931
9932 /* Now members are processed in the order of declaration. */
9933 for (member = CLASSTYPE_DECL_LIST (pattern);
9934 member; member = TREE_CHAIN (member))
9935 {
9936 tree t = TREE_VALUE (member);
9937
9938 if (TREE_PURPOSE (member))
9939 {
9940 if (TYPE_P (t))
9941 {
9942 /* Build new CLASSTYPE_NESTED_UTDS. */
9943
9944 tree newtag;
9945 bool class_template_p;
9946
9947 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9948 && TYPE_LANG_SPECIFIC (t)
9949 && CLASSTYPE_IS_TEMPLATE (t));
9950 /* If the member is a class template, then -- even after
9951 substitution -- there may be dependent types in the
9952 template argument list for the class. We increment
9953 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9954 that function will assume that no types are dependent
9955 when outside of a template. */
9956 if (class_template_p)
9957 ++processing_template_decl;
9958 newtag = tsubst (t, args, tf_error, NULL_TREE);
9959 if (class_template_p)
9960 --processing_template_decl;
9961 if (newtag == error_mark_node)
9962 continue;
9963
9964 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9965 {
9966 tree name = TYPE_IDENTIFIER (t);
9967
9968 if (class_template_p)
9969 /* Unfortunately, lookup_template_class sets
9970 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9971 instantiation (i.e., for the type of a member
9972 template class nested within a template class.)
9973 This behavior is required for
9974 maybe_process_partial_specialization to work
9975 correctly, but is not accurate in this case;
9976 the TAG is not an instantiation of anything.
9977 (The corresponding TEMPLATE_DECL is an
9978 instantiation, but the TYPE is not.) */
9979 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9980
9981 /* Now, we call pushtag to put this NEWTAG into the scope of
9982 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9983 pushtag calling push_template_decl. We don't have to do
9984 this for enums because it will already have been done in
9985 tsubst_enum. */
9986 if (name)
9987 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9988 pushtag (name, newtag, /*tag_scope=*/ts_current);
9989 }
9990 }
9991 else if (DECL_DECLARES_FUNCTION_P (t))
9992 {
9993 /* Build new TYPE_METHODS. */
9994 tree r;
9995
9996 if (TREE_CODE (t) == TEMPLATE_DECL)
9997 ++processing_template_decl;
9998 r = tsubst (t, args, tf_error, NULL_TREE);
9999 if (TREE_CODE (t) == TEMPLATE_DECL)
10000 --processing_template_decl;
10001 set_current_access_from_decl (r);
10002 finish_member_declaration (r);
10003 /* Instantiate members marked with attribute used. */
10004 if (r != error_mark_node && DECL_PRESERVE_P (r))
10005 mark_used (r);
10006 if (TREE_CODE (r) == FUNCTION_DECL
10007 && DECL_OMP_DECLARE_REDUCTION_P (r))
10008 cp_check_omp_declare_reduction (r);
10009 }
10010 else if (DECL_CLASS_TEMPLATE_P (t)
10011 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10012 /* A closure type for a lambda in a default argument for a
10013 member template. Ignore it; it will be instantiated with
10014 the default argument. */;
10015 else
10016 {
10017 /* Build new TYPE_FIELDS. */
10018 if (TREE_CODE (t) == STATIC_ASSERT)
10019 {
10020 tree condition;
10021
10022 ++c_inhibit_evaluation_warnings;
10023 condition =
10024 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10025 tf_warning_or_error, NULL_TREE,
10026 /*integral_constant_expression_p=*/true);
10027 --c_inhibit_evaluation_warnings;
10028
10029 finish_static_assert (condition,
10030 STATIC_ASSERT_MESSAGE (t),
10031 STATIC_ASSERT_SOURCE_LOCATION (t),
10032 /*member_p=*/true);
10033 }
10034 else if (TREE_CODE (t) != CONST_DECL)
10035 {
10036 tree r;
10037 tree vec = NULL_TREE;
10038 int len = 1;
10039
10040 /* The file and line for this declaration, to
10041 assist in error message reporting. Since we
10042 called push_tinst_level above, we don't need to
10043 restore these. */
10044 input_location = DECL_SOURCE_LOCATION (t);
10045
10046 if (TREE_CODE (t) == TEMPLATE_DECL)
10047 ++processing_template_decl;
10048 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10049 if (TREE_CODE (t) == TEMPLATE_DECL)
10050 --processing_template_decl;
10051
10052 if (TREE_CODE (r) == TREE_VEC)
10053 {
10054 /* A capture pack became multiple fields. */
10055 vec = r;
10056 len = TREE_VEC_LENGTH (vec);
10057 }
10058
10059 for (int i = 0; i < len; ++i)
10060 {
10061 if (vec)
10062 r = TREE_VEC_ELT (vec, i);
10063 if (VAR_P (r))
10064 {
10065 /* In [temp.inst]:
10066
10067 [t]he initialization (and any associated
10068 side-effects) of a static data member does
10069 not occur unless the static data member is
10070 itself used in a way that requires the
10071 definition of the static data member to
10072 exist.
10073
10074 Therefore, we do not substitute into the
10075 initialized for the static data member here. */
10076 finish_static_data_member_decl
10077 (r,
10078 /*init=*/NULL_TREE,
10079 /*init_const_expr_p=*/false,
10080 /*asmspec_tree=*/NULL_TREE,
10081 /*flags=*/0);
10082 /* Instantiate members marked with attribute used. */
10083 if (r != error_mark_node && DECL_PRESERVE_P (r))
10084 mark_used (r);
10085 }
10086 else if (TREE_CODE (r) == FIELD_DECL)
10087 {
10088 /* Determine whether R has a valid type and can be
10089 completed later. If R is invalid, then its type
10090 is replaced by error_mark_node. */
10091 tree rtype = TREE_TYPE (r);
10092 if (can_complete_type_without_circularity (rtype))
10093 complete_type (rtype);
10094
10095 if (TREE_CODE (r) == FIELD_DECL
10096 && TREE_CODE (rtype) == ARRAY_TYPE
10097 && COMPLETE_TYPE_P (TREE_TYPE (rtype))
10098 && !COMPLETE_TYPE_P (rtype))
10099 {
10100 /* Flexible array mmembers of elements
10101 of complete type have an incomplete type
10102 and that's okay. */
10103 }
10104 else if (!COMPLETE_TYPE_P (rtype))
10105 {
10106 cxx_incomplete_type_error (r, rtype);
10107 TREE_TYPE (r) = error_mark_node;
10108 }
10109 }
10110
10111 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10112 such a thing will already have been added to the field
10113 list by tsubst_enum in finish_member_declaration in the
10114 CLASSTYPE_NESTED_UTDS case above. */
10115 if (!(TREE_CODE (r) == TYPE_DECL
10116 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10117 && DECL_ARTIFICIAL (r)))
10118 {
10119 set_current_access_from_decl (r);
10120 finish_member_declaration (r);
10121 }
10122 }
10123 }
10124 }
10125 }
10126 else
10127 {
10128 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10129 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10130 {
10131 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10132
10133 tree friend_type = t;
10134 bool adjust_processing_template_decl = false;
10135
10136 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10137 {
10138 /* template <class T> friend class C; */
10139 friend_type = tsubst_friend_class (friend_type, args);
10140 adjust_processing_template_decl = true;
10141 }
10142 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10143 {
10144 /* template <class T> friend class C::D; */
10145 friend_type = tsubst (friend_type, args,
10146 tf_warning_or_error, NULL_TREE);
10147 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10148 friend_type = TREE_TYPE (friend_type);
10149 adjust_processing_template_decl = true;
10150 }
10151 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10152 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10153 {
10154 /* This could be either
10155
10156 friend class T::C;
10157
10158 when dependent_type_p is false or
10159
10160 template <class U> friend class T::C;
10161
10162 otherwise. */
10163 friend_type = tsubst (friend_type, args,
10164 tf_warning_or_error, NULL_TREE);
10165 /* Bump processing_template_decl for correct
10166 dependent_type_p calculation. */
10167 ++processing_template_decl;
10168 if (dependent_type_p (friend_type))
10169 adjust_processing_template_decl = true;
10170 --processing_template_decl;
10171 }
10172 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10173 && hidden_name_p (TYPE_NAME (friend_type)))
10174 {
10175 /* friend class C;
10176
10177 where C hasn't been declared yet. Let's lookup name
10178 from namespace scope directly, bypassing any name that
10179 come from dependent base class. */
10180 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10181
10182 /* The call to xref_tag_from_type does injection for friend
10183 classes. */
10184 push_nested_namespace (ns);
10185 friend_type =
10186 xref_tag_from_type (friend_type, NULL_TREE,
10187 /*tag_scope=*/ts_current);
10188 pop_nested_namespace (ns);
10189 }
10190 else if (uses_template_parms (friend_type))
10191 /* friend class C<T>; */
10192 friend_type = tsubst (friend_type, args,
10193 tf_warning_or_error, NULL_TREE);
10194 /* Otherwise it's
10195
10196 friend class C;
10197
10198 where C is already declared or
10199
10200 friend class C<int>;
10201
10202 We don't have to do anything in these cases. */
10203
10204 if (adjust_processing_template_decl)
10205 /* Trick make_friend_class into realizing that the friend
10206 we're adding is a template, not an ordinary class. It's
10207 important that we use make_friend_class since it will
10208 perform some error-checking and output cross-reference
10209 information. */
10210 ++processing_template_decl;
10211
10212 if (friend_type != error_mark_node)
10213 make_friend_class (type, friend_type, /*complain=*/false);
10214
10215 if (adjust_processing_template_decl)
10216 --processing_template_decl;
10217 }
10218 else
10219 {
10220 /* Build new DECL_FRIENDLIST. */
10221 tree r;
10222
10223 /* The file and line for this declaration, to
10224 assist in error message reporting. Since we
10225 called push_tinst_level above, we don't need to
10226 restore these. */
10227 input_location = DECL_SOURCE_LOCATION (t);
10228
10229 if (TREE_CODE (t) == TEMPLATE_DECL)
10230 {
10231 ++processing_template_decl;
10232 push_deferring_access_checks (dk_no_check);
10233 }
10234
10235 r = tsubst_friend_function (t, args);
10236 add_friend (type, r, /*complain=*/false);
10237 if (TREE_CODE (t) == TEMPLATE_DECL)
10238 {
10239 pop_deferring_access_checks ();
10240 --processing_template_decl;
10241 }
10242 }
10243 }
10244 }
10245
10246 if (fn_context)
10247 {
10248 /* Restore these before substituting into the lambda capture
10249 initializers. */
10250 cp_unevaluated_operand = saved_unevaluated_operand;
10251 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10252 }
10253
10254 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10255 {
10256 tree decl = lambda_function (type);
10257 if (decl)
10258 {
10259 if (!DECL_TEMPLATE_INFO (decl)
10260 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10261 {
10262 /* Set function_depth to avoid garbage collection. */
10263 ++function_depth;
10264 instantiate_decl (decl, false, false);
10265 --function_depth;
10266 }
10267
10268 /* We need to instantiate the capture list from the template
10269 after we've instantiated the closure members, but before we
10270 consider adding the conversion op. Also keep any captures
10271 that may have been added during instantiation of the op(). */
10272 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10273 tree tmpl_cap
10274 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10275 args, tf_warning_or_error, NULL_TREE,
10276 false, false);
10277
10278 LAMBDA_EXPR_CAPTURE_LIST (expr)
10279 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10280
10281 maybe_add_lambda_conv_op (type);
10282 }
10283 else
10284 gcc_assert (errorcount);
10285 }
10286
10287 /* Set the file and line number information to whatever is given for
10288 the class itself. This puts error messages involving generated
10289 implicit functions at a predictable point, and the same point
10290 that would be used for non-template classes. */
10291 input_location = DECL_SOURCE_LOCATION (typedecl);
10292
10293 unreverse_member_declarations (type);
10294 finish_struct_1 (type);
10295 TYPE_BEING_DEFINED (type) = 0;
10296
10297 /* We don't instantiate default arguments for member functions. 14.7.1:
10298
10299 The implicit instantiation of a class template specialization causes
10300 the implicit instantiation of the declarations, but not of the
10301 definitions or default arguments, of the class member functions,
10302 member classes, static data members and member templates.... */
10303
10304 /* Some typedefs referenced from within the template code need to be access
10305 checked at template instantiation time, i.e now. These types were
10306 added to the template at parsing time. Let's get those and perform
10307 the access checks then. */
10308 perform_typedefs_access_check (pattern, args);
10309 perform_deferred_access_checks (tf_warning_or_error);
10310 pop_nested_class ();
10311 maximum_field_alignment = saved_maximum_field_alignment;
10312 if (!fn_context)
10313 pop_from_top_level ();
10314 pop_deferring_access_checks ();
10315 pop_tinst_level ();
10316
10317 /* The vtable for a template class can be emitted in any translation
10318 unit in which the class is instantiated. When there is no key
10319 method, however, finish_struct_1 will already have added TYPE to
10320 the keyed_classes list. */
10321 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10322 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10323
10324 return type;
10325 }
10326
10327 /* Wrapper for instantiate_class_template_1. */
10328
10329 tree
10330 instantiate_class_template (tree type)
10331 {
10332 tree ret;
10333 timevar_push (TV_TEMPLATE_INST);
10334 ret = instantiate_class_template_1 (type);
10335 timevar_pop (TV_TEMPLATE_INST);
10336 return ret;
10337 }
10338
10339 static tree
10340 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10341 {
10342 tree r;
10343
10344 if (!t)
10345 r = t;
10346 else if (TYPE_P (t))
10347 r = tsubst (t, args, complain, in_decl);
10348 else
10349 {
10350 if (!(complain & tf_warning))
10351 ++c_inhibit_evaluation_warnings;
10352 r = tsubst_expr (t, args, complain, in_decl,
10353 /*integral_constant_expression_p=*/true);
10354 if (!(complain & tf_warning))
10355 --c_inhibit_evaluation_warnings;
10356 }
10357 return r;
10358 }
10359
10360 /* Given a function parameter pack TMPL_PARM and some function parameters
10361 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10362 and set *SPEC_P to point at the next point in the list. */
10363
10364 tree
10365 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10366 {
10367 /* Collect all of the extra "packed" parameters into an
10368 argument pack. */
10369 tree parmvec;
10370 tree parmtypevec;
10371 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10372 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10373 tree spec_parm = *spec_p;
10374 int i, len;
10375
10376 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10377 if (tmpl_parm
10378 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10379 break;
10380
10381 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10382 parmvec = make_tree_vec (len);
10383 parmtypevec = make_tree_vec (len);
10384 spec_parm = *spec_p;
10385 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10386 {
10387 TREE_VEC_ELT (parmvec, i) = spec_parm;
10388 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10389 }
10390
10391 /* Build the argument packs. */
10392 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10393 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10394 TREE_TYPE (argpack) = argtypepack;
10395 *spec_p = spec_parm;
10396
10397 return argpack;
10398 }
10399
10400 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10401 NONTYPE_ARGUMENT_PACK. */
10402
10403 static tree
10404 make_fnparm_pack (tree spec_parm)
10405 {
10406 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10407 }
10408
10409 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10410 pack expansion with no extra args, 2 if it has extra args, or 0
10411 if it is not a pack expansion. */
10412
10413 static int
10414 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10415 {
10416 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10417 if (i >= TREE_VEC_LENGTH (vec))
10418 return 0;
10419 tree elt = TREE_VEC_ELT (vec, i);
10420 if (DECL_P (elt))
10421 /* A decl pack is itself an expansion. */
10422 elt = TREE_TYPE (elt);
10423 if (!PACK_EXPANSION_P (elt))
10424 return 0;
10425 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10426 return 2;
10427 return 1;
10428 }
10429
10430
10431 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10432
10433 static tree
10434 make_argument_pack_select (tree arg_pack, unsigned index)
10435 {
10436 tree aps = make_node (ARGUMENT_PACK_SELECT);
10437
10438 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10439 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10440
10441 return aps;
10442 }
10443
10444 /* This is a subroutine of tsubst_pack_expansion.
10445
10446 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10447 mechanism to store the (non complete list of) arguments of the
10448 substitution and return a non substituted pack expansion, in order
10449 to wait for when we have enough arguments to really perform the
10450 substitution. */
10451
10452 static bool
10453 use_pack_expansion_extra_args_p (tree parm_packs,
10454 int arg_pack_len,
10455 bool has_empty_arg)
10456 {
10457 /* If one pack has an expansion and another pack has a normal
10458 argument or if one pack has an empty argument and an another
10459 one hasn't then tsubst_pack_expansion cannot perform the
10460 substitution and need to fall back on the
10461 PACK_EXPANSION_EXTRA mechanism. */
10462 if (parm_packs == NULL_TREE)
10463 return false;
10464 else if (has_empty_arg)
10465 return true;
10466
10467 bool has_expansion_arg = false;
10468 for (int i = 0 ; i < arg_pack_len; ++i)
10469 {
10470 bool has_non_expansion_arg = false;
10471 for (tree parm_pack = parm_packs;
10472 parm_pack;
10473 parm_pack = TREE_CHAIN (parm_pack))
10474 {
10475 tree arg = TREE_VALUE (parm_pack);
10476
10477 int exp = argument_pack_element_is_expansion_p (arg, i);
10478 if (exp == 2)
10479 /* We can't substitute a pack expansion with extra args into
10480 our pattern. */
10481 return true;
10482 else if (exp)
10483 has_expansion_arg = true;
10484 else
10485 has_non_expansion_arg = true;
10486 }
10487
10488 if (has_expansion_arg && has_non_expansion_arg)
10489 return true;
10490 }
10491 return false;
10492 }
10493
10494 /* [temp.variadic]/6 says that:
10495
10496 The instantiation of a pack expansion [...]
10497 produces a list E1,E2, ..., En, where N is the number of elements
10498 in the pack expansion parameters.
10499
10500 This subroutine of tsubst_pack_expansion produces one of these Ei.
10501
10502 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10503 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10504 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10505 INDEX is the index 'i' of the element Ei to produce. ARGS,
10506 COMPLAIN, and IN_DECL are the same parameters as for the
10507 tsubst_pack_expansion function.
10508
10509 The function returns the resulting Ei upon successful completion,
10510 or error_mark_node.
10511
10512 Note that this function possibly modifies the ARGS parameter, so
10513 it's the responsibility of the caller to restore it. */
10514
10515 static tree
10516 gen_elem_of_pack_expansion_instantiation (tree pattern,
10517 tree parm_packs,
10518 unsigned index,
10519 tree args /* This parm gets
10520 modified. */,
10521 tsubst_flags_t complain,
10522 tree in_decl)
10523 {
10524 tree t;
10525 bool ith_elem_is_expansion = false;
10526
10527 /* For each parameter pack, change the substitution of the parameter
10528 pack to the ith argument in its argument pack, then expand the
10529 pattern. */
10530 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10531 {
10532 tree parm = TREE_PURPOSE (pack);
10533 tree arg_pack = TREE_VALUE (pack);
10534 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10535
10536 ith_elem_is_expansion |=
10537 argument_pack_element_is_expansion_p (arg_pack, index);
10538
10539 /* Select the Ith argument from the pack. */
10540 if (TREE_CODE (parm) == PARM_DECL
10541 || TREE_CODE (parm) == FIELD_DECL)
10542 {
10543 if (index == 0)
10544 {
10545 aps = make_argument_pack_select (arg_pack, index);
10546 if (!mark_used (parm, complain) && !(complain & tf_error))
10547 return error_mark_node;
10548 register_local_specialization (aps, parm);
10549 }
10550 else
10551 aps = retrieve_local_specialization (parm);
10552 }
10553 else
10554 {
10555 int idx, level;
10556 template_parm_level_and_index (parm, &level, &idx);
10557
10558 if (index == 0)
10559 {
10560 aps = make_argument_pack_select (arg_pack, index);
10561 /* Update the corresponding argument. */
10562 TMPL_ARG (args, level, idx) = aps;
10563 }
10564 else
10565 /* Re-use the ARGUMENT_PACK_SELECT. */
10566 aps = TMPL_ARG (args, level, idx);
10567 }
10568 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10569 }
10570
10571 /* Substitute into the PATTERN with the (possibly altered)
10572 arguments. */
10573 if (pattern == in_decl)
10574 /* Expanding a fixed parameter pack from
10575 coerce_template_parameter_pack. */
10576 t = tsubst_decl (pattern, args, complain);
10577 else if (pattern == error_mark_node)
10578 t = error_mark_node;
10579 else if (constraint_p (pattern))
10580 {
10581 if (processing_template_decl)
10582 t = tsubst_constraint (pattern, args, complain, in_decl);
10583 else
10584 t = (constraints_satisfied_p (pattern, args)
10585 ? boolean_true_node : boolean_false_node);
10586 }
10587 else if (!TYPE_P (pattern))
10588 t = tsubst_expr (pattern, args, complain, in_decl,
10589 /*integral_constant_expression_p=*/false);
10590 else
10591 t = tsubst (pattern, args, complain, in_decl);
10592
10593 /* If the Ith argument pack element is a pack expansion, then
10594 the Ith element resulting from the substituting is going to
10595 be a pack expansion as well. */
10596 if (ith_elem_is_expansion)
10597 t = make_pack_expansion (t);
10598
10599 return t;
10600 }
10601
10602 /* When the unexpanded parameter pack in a fold expression expands to an empty
10603 sequence, the value of the expression is as follows; the program is
10604 ill-formed if the operator is not listed in this table.
10605
10606 * 1
10607 + 0
10608 & -1
10609 | 0
10610 && true
10611 || false
10612 , void() */
10613
10614 tree
10615 expand_empty_fold (tree t, tsubst_flags_t complain)
10616 {
10617 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10618 if (!FOLD_EXPR_MODIFY_P (t))
10619 switch (code)
10620 {
10621 case MULT_EXPR:
10622 return integer_one_node;
10623 case PLUS_EXPR:
10624 return integer_zero_node;
10625 case BIT_AND_EXPR:
10626 return integer_minus_one_node;
10627 case BIT_IOR_EXPR:
10628 return integer_zero_node;
10629 case TRUTH_ANDIF_EXPR:
10630 return boolean_true_node;
10631 case TRUTH_ORIF_EXPR:
10632 return boolean_false_node;
10633 case COMPOUND_EXPR:
10634 return void_node;
10635 default:
10636 break;
10637 }
10638
10639 if (complain & tf_error)
10640 error_at (location_of (t),
10641 "fold of empty expansion over %O", code);
10642 return error_mark_node;
10643 }
10644
10645 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10646 form an expression that combines the two terms using the
10647 operator of T. */
10648
10649 static tree
10650 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10651 {
10652 tree op = FOLD_EXPR_OP (t);
10653 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10654
10655 // Handle compound assignment operators.
10656 if (FOLD_EXPR_MODIFY_P (t))
10657 return build_x_modify_expr (input_location, left, code, right, complain);
10658
10659 switch (code)
10660 {
10661 case COMPOUND_EXPR:
10662 return build_x_compound_expr (input_location, left, right, complain);
10663 case DOTSTAR_EXPR:
10664 return build_m_component_ref (left, right, complain);
10665 default:
10666 return build_x_binary_op (input_location, code,
10667 left, TREE_CODE (left),
10668 right, TREE_CODE (right),
10669 /*overload=*/NULL,
10670 complain);
10671 }
10672 }
10673
10674 /* Substitute ARGS into the pack of a fold expression T. */
10675
10676 static inline tree
10677 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10678 {
10679 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10680 }
10681
10682 /* Substitute ARGS into the pack of a fold expression T. */
10683
10684 static inline tree
10685 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10686 {
10687 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10688 }
10689
10690 /* Expand a PACK of arguments into a grouped as left fold.
10691 Given a pack containing elements A0, A1, ..., An and an
10692 operator @, this builds the expression:
10693
10694 ((A0 @ A1) @ A2) ... @ An
10695
10696 Note that PACK must not be empty.
10697
10698 The operator is defined by the original fold expression T. */
10699
10700 static tree
10701 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10702 {
10703 tree left = TREE_VEC_ELT (pack, 0);
10704 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10705 {
10706 tree right = TREE_VEC_ELT (pack, i);
10707 left = fold_expression (t, left, right, complain);
10708 }
10709 return left;
10710 }
10711
10712 /* Substitute into a unary left fold expression. */
10713
10714 static tree
10715 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10716 tree in_decl)
10717 {
10718 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10719 if (pack == error_mark_node)
10720 return error_mark_node;
10721 if (TREE_VEC_LENGTH (pack) == 0)
10722 return expand_empty_fold (t, complain);
10723 else
10724 return expand_left_fold (t, pack, complain);
10725 }
10726
10727 /* Substitute into a binary left fold expression.
10728
10729 Do ths by building a single (non-empty) vector of argumnts and
10730 building the expression from those elements. */
10731
10732 static tree
10733 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10734 tree in_decl)
10735 {
10736 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10737 if (pack == error_mark_node)
10738 return error_mark_node;
10739 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10740 if (init == error_mark_node)
10741 return error_mark_node;
10742
10743 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10744 TREE_VEC_ELT (vec, 0) = init;
10745 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10746 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10747
10748 return expand_left_fold (t, vec, complain);
10749 }
10750
10751 /* Expand a PACK of arguments into a grouped as right fold.
10752 Given a pack containing elementns A0, A1, ..., and an
10753 operator @, this builds the expression:
10754
10755 A0@ ... (An-2 @ (An-1 @ An))
10756
10757 Note that PACK must not be empty.
10758
10759 The operator is defined by the original fold expression T. */
10760
10761 tree
10762 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10763 {
10764 // Build the expression.
10765 int n = TREE_VEC_LENGTH (pack);
10766 tree right = TREE_VEC_ELT (pack, n - 1);
10767 for (--n; n != 0; --n)
10768 {
10769 tree left = TREE_VEC_ELT (pack, n - 1);
10770 right = fold_expression (t, left, right, complain);
10771 }
10772 return right;
10773 }
10774
10775 /* Substitute into a unary right fold expression. */
10776
10777 static tree
10778 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10779 tree in_decl)
10780 {
10781 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10782 if (pack == error_mark_node)
10783 return error_mark_node;
10784 if (TREE_VEC_LENGTH (pack) == 0)
10785 return expand_empty_fold (t, complain);
10786 else
10787 return expand_right_fold (t, pack, complain);
10788 }
10789
10790 /* Substitute into a binary right fold expression.
10791
10792 Do ths by building a single (non-empty) vector of arguments and
10793 building the expression from those elements. */
10794
10795 static tree
10796 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10797 tree in_decl)
10798 {
10799 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10800 if (pack == error_mark_node)
10801 return error_mark_node;
10802 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10803 if (init == error_mark_node)
10804 return error_mark_node;
10805
10806 int n = TREE_VEC_LENGTH (pack);
10807 tree vec = make_tree_vec (n + 1);
10808 for (int i = 0; i < n; ++i)
10809 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10810 TREE_VEC_ELT (vec, n) = init;
10811
10812 return expand_right_fold (t, vec, complain);
10813 }
10814
10815
10816 /* Substitute ARGS into T, which is an pack expansion
10817 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10818 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10819 (if only a partial substitution could be performed) or
10820 ERROR_MARK_NODE if there was an error. */
10821 tree
10822 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10823 tree in_decl)
10824 {
10825 tree pattern;
10826 tree pack, packs = NULL_TREE;
10827 bool unsubstituted_packs = false;
10828 int i, len = -1;
10829 tree result;
10830 hash_map<tree, tree> *saved_local_specializations = NULL;
10831 bool need_local_specializations = false;
10832 int levels;
10833
10834 gcc_assert (PACK_EXPANSION_P (t));
10835 pattern = PACK_EXPANSION_PATTERN (t);
10836
10837 /* Add in any args remembered from an earlier partial instantiation. */
10838 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10839
10840 levels = TMPL_ARGS_DEPTH (args);
10841
10842 /* Determine the argument packs that will instantiate the parameter
10843 packs used in the expansion expression. While we're at it,
10844 compute the number of arguments to be expanded and make sure it
10845 is consistent. */
10846 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10847 pack = TREE_CHAIN (pack))
10848 {
10849 tree parm_pack = TREE_VALUE (pack);
10850 tree arg_pack = NULL_TREE;
10851 tree orig_arg = NULL_TREE;
10852 int level = 0;
10853
10854 if (TREE_CODE (parm_pack) == BASES)
10855 {
10856 if (BASES_DIRECT (parm_pack))
10857 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10858 args, complain, in_decl, false));
10859 else
10860 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10861 args, complain, in_decl, false));
10862 }
10863 if (TREE_CODE (parm_pack) == PARM_DECL)
10864 {
10865 /* We know we have correct local_specializations if this
10866 expansion is at function scope, or if we're dealing with a
10867 local parameter in a requires expression; for the latter,
10868 tsubst_requires_expr set it up appropriately. */
10869 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10870 arg_pack = retrieve_local_specialization (parm_pack);
10871 else
10872 /* We can't rely on local_specializations for a parameter
10873 name used later in a function declaration (such as in a
10874 late-specified return type). Even if it exists, it might
10875 have the wrong value for a recursive call. */
10876 need_local_specializations = true;
10877
10878 if (!arg_pack)
10879 {
10880 /* This parameter pack was used in an unevaluated context. Just
10881 make a dummy decl, since it's only used for its type. */
10882 arg_pack = tsubst_decl (parm_pack, args, complain);
10883 if (arg_pack && DECL_PACK_P (arg_pack))
10884 /* Partial instantiation of the parm_pack, we can't build
10885 up an argument pack yet. */
10886 arg_pack = NULL_TREE;
10887 else
10888 arg_pack = make_fnparm_pack (arg_pack);
10889 }
10890 }
10891 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10892 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10893 else
10894 {
10895 int idx;
10896 template_parm_level_and_index (parm_pack, &level, &idx);
10897
10898 if (level <= levels)
10899 arg_pack = TMPL_ARG (args, level, idx);
10900 }
10901
10902 orig_arg = arg_pack;
10903 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10904 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10905
10906 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10907 /* This can only happen if we forget to expand an argument
10908 pack somewhere else. Just return an error, silently. */
10909 {
10910 result = make_tree_vec (1);
10911 TREE_VEC_ELT (result, 0) = error_mark_node;
10912 return result;
10913 }
10914
10915 if (arg_pack)
10916 {
10917 int my_len =
10918 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10919
10920 /* Don't bother trying to do a partial substitution with
10921 incomplete packs; we'll try again after deduction. */
10922 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10923 return t;
10924
10925 if (len < 0)
10926 len = my_len;
10927 else if (len != my_len)
10928 {
10929 if (!(complain & tf_error))
10930 /* Fail quietly. */;
10931 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10932 error ("mismatched argument pack lengths while expanding "
10933 "%<%T%>",
10934 pattern);
10935 else
10936 error ("mismatched argument pack lengths while expanding "
10937 "%<%E%>",
10938 pattern);
10939 return error_mark_node;
10940 }
10941
10942 /* Keep track of the parameter packs and their corresponding
10943 argument packs. */
10944 packs = tree_cons (parm_pack, arg_pack, packs);
10945 TREE_TYPE (packs) = orig_arg;
10946 }
10947 else
10948 {
10949 /* We can't substitute for this parameter pack. We use a flag as
10950 well as the missing_level counter because function parameter
10951 packs don't have a level. */
10952 unsubstituted_packs = true;
10953 }
10954 }
10955
10956 /* If the expansion is just T..., return the matching argument pack, unless
10957 we need to call convert_from_reference on all the elements. This is an
10958 important optimization; see c++/68422. */
10959 if (!unsubstituted_packs
10960 && TREE_PURPOSE (packs) == pattern)
10961 {
10962 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10963 /* Types need no adjustment, nor does sizeof..., and if we still have
10964 some pack expansion args we won't do anything yet. */
10965 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10966 || PACK_EXPANSION_SIZEOF_P (t)
10967 || pack_expansion_args_count (args))
10968 return args;
10969 /* Also optimize expression pack expansions if we can tell that the
10970 elements won't have reference type. */
10971 tree type = TREE_TYPE (pattern);
10972 if (type && TREE_CODE (type) != REFERENCE_TYPE
10973 && !PACK_EXPANSION_P (type)
10974 && !WILDCARD_TYPE_P (type))
10975 return args;
10976 /* Otherwise use the normal path so we get convert_from_reference. */
10977 }
10978
10979 /* We cannot expand this expansion expression, because we don't have
10980 all of the argument packs we need. */
10981 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10982 {
10983 /* We got some full packs, but we can't substitute them in until we
10984 have values for all the packs. So remember these until then. */
10985
10986 t = make_pack_expansion (pattern);
10987 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10988 return t;
10989 }
10990 else if (unsubstituted_packs)
10991 {
10992 /* There were no real arguments, we're just replacing a parameter
10993 pack with another version of itself. Substitute into the
10994 pattern and return a PACK_EXPANSION_*. The caller will need to
10995 deal with that. */
10996 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10997 t = tsubst_expr (pattern, args, complain, in_decl,
10998 /*integral_constant_expression_p=*/false);
10999 else
11000 t = tsubst (pattern, args, complain, in_decl);
11001 t = make_pack_expansion (t);
11002 return t;
11003 }
11004
11005 gcc_assert (len >= 0);
11006
11007 if (need_local_specializations)
11008 {
11009 /* We're in a late-specified return type, so create our own local
11010 specializations map; the current map is either NULL or (in the
11011 case of recursive unification) might have bindings that we don't
11012 want to use or alter. */
11013 saved_local_specializations = local_specializations;
11014 local_specializations = new hash_map<tree, tree>;
11015 }
11016
11017 /* For each argument in each argument pack, substitute into the
11018 pattern. */
11019 result = make_tree_vec (len);
11020 for (i = 0; i < len; ++i)
11021 {
11022 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11023 i,
11024 args, complain,
11025 in_decl);
11026 TREE_VEC_ELT (result, i) = t;
11027 if (t == error_mark_node)
11028 {
11029 result = error_mark_node;
11030 break;
11031 }
11032 }
11033
11034 /* Update ARGS to restore the substitution from parameter packs to
11035 their argument packs. */
11036 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11037 {
11038 tree parm = TREE_PURPOSE (pack);
11039
11040 if (TREE_CODE (parm) == PARM_DECL
11041 || TREE_CODE (parm) == FIELD_DECL)
11042 register_local_specialization (TREE_TYPE (pack), parm);
11043 else
11044 {
11045 int idx, level;
11046
11047 if (TREE_VALUE (pack) == NULL_TREE)
11048 continue;
11049
11050 template_parm_level_and_index (parm, &level, &idx);
11051
11052 /* Update the corresponding argument. */
11053 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11054 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11055 TREE_TYPE (pack);
11056 else
11057 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11058 }
11059 }
11060
11061 if (need_local_specializations)
11062 {
11063 delete local_specializations;
11064 local_specializations = saved_local_specializations;
11065 }
11066
11067 return result;
11068 }
11069
11070 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11071 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11072 parameter packs; all parms generated from a function parameter pack will
11073 have the same DECL_PARM_INDEX. */
11074
11075 tree
11076 get_pattern_parm (tree parm, tree tmpl)
11077 {
11078 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11079 tree patparm;
11080
11081 if (DECL_ARTIFICIAL (parm))
11082 {
11083 for (patparm = DECL_ARGUMENTS (pattern);
11084 patparm; patparm = DECL_CHAIN (patparm))
11085 if (DECL_ARTIFICIAL (patparm)
11086 && DECL_NAME (parm) == DECL_NAME (patparm))
11087 break;
11088 }
11089 else
11090 {
11091 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11092 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11093 gcc_assert (DECL_PARM_INDEX (patparm)
11094 == DECL_PARM_INDEX (parm));
11095 }
11096
11097 return patparm;
11098 }
11099
11100 /* Substitute ARGS into the vector or list of template arguments T. */
11101
11102 static tree
11103 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11104 {
11105 tree orig_t = t;
11106 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11107 tree *elts;
11108
11109 if (t == error_mark_node)
11110 return error_mark_node;
11111
11112 len = TREE_VEC_LENGTH (t);
11113 elts = XALLOCAVEC (tree, len);
11114
11115 for (i = 0; i < len; i++)
11116 {
11117 tree orig_arg = TREE_VEC_ELT (t, i);
11118 tree new_arg;
11119
11120 if (TREE_CODE (orig_arg) == TREE_VEC)
11121 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11122 else if (PACK_EXPANSION_P (orig_arg))
11123 {
11124 /* Substitute into an expansion expression. */
11125 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11126
11127 if (TREE_CODE (new_arg) == TREE_VEC)
11128 /* Add to the expanded length adjustment the number of
11129 expanded arguments. We subtract one from this
11130 measurement, because the argument pack expression
11131 itself is already counted as 1 in
11132 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11133 the argument pack is empty. */
11134 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11135 }
11136 else if (ARGUMENT_PACK_P (orig_arg))
11137 {
11138 /* Substitute into each of the arguments. */
11139 new_arg = TYPE_P (orig_arg)
11140 ? cxx_make_type (TREE_CODE (orig_arg))
11141 : make_node (TREE_CODE (orig_arg));
11142
11143 SET_ARGUMENT_PACK_ARGS (
11144 new_arg,
11145 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11146 args, complain, in_decl));
11147
11148 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11149 new_arg = error_mark_node;
11150
11151 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11152 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11153 complain, in_decl);
11154 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11155
11156 if (TREE_TYPE (new_arg) == error_mark_node)
11157 new_arg = error_mark_node;
11158 }
11159 }
11160 else
11161 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11162
11163 if (new_arg == error_mark_node)
11164 return error_mark_node;
11165
11166 elts[i] = new_arg;
11167 if (new_arg != orig_arg)
11168 need_new = 1;
11169 }
11170
11171 if (!need_new)
11172 return t;
11173
11174 /* Make space for the expanded arguments coming from template
11175 argument packs. */
11176 t = make_tree_vec (len + expanded_len_adjust);
11177 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11178 arguments for a member template.
11179 In that case each TREE_VEC in ORIG_T represents a level of template
11180 arguments, and ORIG_T won't carry any non defaulted argument count.
11181 It will rather be the nested TREE_VECs that will carry one.
11182 In other words, ORIG_T carries a non defaulted argument count only
11183 if it doesn't contain any nested TREE_VEC. */
11184 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11185 {
11186 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11187 count += expanded_len_adjust;
11188 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11189 }
11190 for (i = 0, out = 0; i < len; i++)
11191 {
11192 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11193 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11194 && TREE_CODE (elts[i]) == TREE_VEC)
11195 {
11196 int idx;
11197
11198 /* Now expand the template argument pack "in place". */
11199 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11200 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11201 }
11202 else
11203 {
11204 TREE_VEC_ELT (t, out) = elts[i];
11205 out++;
11206 }
11207 }
11208
11209 return t;
11210 }
11211
11212 /* Return the result of substituting ARGS into the template parameters
11213 given by PARMS. If there are m levels of ARGS and m + n levels of
11214 PARMS, then the result will contain n levels of PARMS. For
11215 example, if PARMS is `template <class T> template <class U>
11216 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11217 result will be `template <int*, double, class V>'. */
11218
11219 static tree
11220 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11221 {
11222 tree r = NULL_TREE;
11223 tree* new_parms;
11224
11225 /* When substituting into a template, we must set
11226 PROCESSING_TEMPLATE_DECL as the template parameters may be
11227 dependent if they are based on one-another, and the dependency
11228 predicates are short-circuit outside of templates. */
11229 ++processing_template_decl;
11230
11231 for (new_parms = &r;
11232 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11233 new_parms = &(TREE_CHAIN (*new_parms)),
11234 parms = TREE_CHAIN (parms))
11235 {
11236 tree new_vec =
11237 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11238 int i;
11239
11240 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11241 {
11242 tree tuple;
11243
11244 if (parms == error_mark_node)
11245 continue;
11246
11247 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11248
11249 if (tuple == error_mark_node)
11250 continue;
11251
11252 TREE_VEC_ELT (new_vec, i) =
11253 tsubst_template_parm (tuple, args, complain);
11254 }
11255
11256 *new_parms =
11257 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11258 - TMPL_ARGS_DEPTH (args)),
11259 new_vec, NULL_TREE);
11260 }
11261
11262 --processing_template_decl;
11263
11264 return r;
11265 }
11266
11267 /* Return the result of substituting ARGS into one template parameter
11268 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11269 parameter and which TREE_PURPOSE is the default argument of the
11270 template parameter. */
11271
11272 static tree
11273 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11274 {
11275 tree default_value, parm_decl;
11276
11277 if (args == NULL_TREE
11278 || t == NULL_TREE
11279 || t == error_mark_node)
11280 return t;
11281
11282 gcc_assert (TREE_CODE (t) == TREE_LIST);
11283
11284 default_value = TREE_PURPOSE (t);
11285 parm_decl = TREE_VALUE (t);
11286
11287 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11288 if (TREE_CODE (parm_decl) == PARM_DECL
11289 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11290 parm_decl = error_mark_node;
11291 default_value = tsubst_template_arg (default_value, args,
11292 complain, NULL_TREE);
11293
11294 return build_tree_list (default_value, parm_decl);
11295 }
11296
11297 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11298 type T. If T is not an aggregate or enumeration type, it is
11299 handled as if by tsubst. IN_DECL is as for tsubst. If
11300 ENTERING_SCOPE is nonzero, T is the context for a template which
11301 we are presently tsubst'ing. Return the substituted value. */
11302
11303 static tree
11304 tsubst_aggr_type (tree t,
11305 tree args,
11306 tsubst_flags_t complain,
11307 tree in_decl,
11308 int entering_scope)
11309 {
11310 if (t == NULL_TREE)
11311 return NULL_TREE;
11312
11313 switch (TREE_CODE (t))
11314 {
11315 case RECORD_TYPE:
11316 if (TYPE_PTRMEMFUNC_P (t))
11317 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11318
11319 /* Else fall through. */
11320 case ENUMERAL_TYPE:
11321 case UNION_TYPE:
11322 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11323 {
11324 tree argvec;
11325 tree context;
11326 tree r;
11327 int saved_unevaluated_operand;
11328 int saved_inhibit_evaluation_warnings;
11329
11330 /* In "sizeof(X<I>)" we need to evaluate "I". */
11331 saved_unevaluated_operand = cp_unevaluated_operand;
11332 cp_unevaluated_operand = 0;
11333 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11334 c_inhibit_evaluation_warnings = 0;
11335
11336 /* First, determine the context for the type we are looking
11337 up. */
11338 context = TYPE_CONTEXT (t);
11339 if (context && TYPE_P (context))
11340 {
11341 context = tsubst_aggr_type (context, args, complain,
11342 in_decl, /*entering_scope=*/1);
11343 /* If context is a nested class inside a class template,
11344 it may still need to be instantiated (c++/33959). */
11345 context = complete_type (context);
11346 }
11347
11348 /* Then, figure out what arguments are appropriate for the
11349 type we are trying to find. For example, given:
11350
11351 template <class T> struct S;
11352 template <class T, class U> void f(T, U) { S<U> su; }
11353
11354 and supposing that we are instantiating f<int, double>,
11355 then our ARGS will be {int, double}, but, when looking up
11356 S we only want {double}. */
11357 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11358 complain, in_decl);
11359 if (argvec == error_mark_node)
11360 r = error_mark_node;
11361 else
11362 {
11363 r = lookup_template_class (t, argvec, in_decl, context,
11364 entering_scope, complain);
11365 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11366 }
11367
11368 cp_unevaluated_operand = saved_unevaluated_operand;
11369 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11370
11371 return r;
11372 }
11373 else
11374 /* This is not a template type, so there's nothing to do. */
11375 return t;
11376
11377 default:
11378 return tsubst (t, args, complain, in_decl);
11379 }
11380 }
11381
11382 /* Substitute into the default argument ARG (a default argument for
11383 FN), which has the indicated TYPE. */
11384
11385 tree
11386 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11387 {
11388 tree saved_class_ptr = NULL_TREE;
11389 tree saved_class_ref = NULL_TREE;
11390 int errs = errorcount + sorrycount;
11391
11392 /* This can happen in invalid code. */
11393 if (TREE_CODE (arg) == DEFAULT_ARG)
11394 return arg;
11395
11396 /* This default argument came from a template. Instantiate the
11397 default argument here, not in tsubst. In the case of
11398 something like:
11399
11400 template <class T>
11401 struct S {
11402 static T t();
11403 void f(T = t());
11404 };
11405
11406 we must be careful to do name lookup in the scope of S<T>,
11407 rather than in the current class. */
11408 push_access_scope (fn);
11409 /* The "this" pointer is not valid in a default argument. */
11410 if (cfun)
11411 {
11412 saved_class_ptr = current_class_ptr;
11413 cp_function_chain->x_current_class_ptr = NULL_TREE;
11414 saved_class_ref = current_class_ref;
11415 cp_function_chain->x_current_class_ref = NULL_TREE;
11416 }
11417
11418 push_deferring_access_checks(dk_no_deferred);
11419 /* The default argument expression may cause implicitly defined
11420 member functions to be synthesized, which will result in garbage
11421 collection. We must treat this situation as if we were within
11422 the body of function so as to avoid collecting live data on the
11423 stack. */
11424 ++function_depth;
11425 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11426 complain, NULL_TREE,
11427 /*integral_constant_expression_p=*/false);
11428 --function_depth;
11429 pop_deferring_access_checks();
11430
11431 /* Restore the "this" pointer. */
11432 if (cfun)
11433 {
11434 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11435 cp_function_chain->x_current_class_ref = saved_class_ref;
11436 }
11437
11438 if (errorcount+sorrycount > errs
11439 && (complain & tf_warning_or_error))
11440 inform (input_location,
11441 " when instantiating default argument for call to %D", fn);
11442
11443 /* Make sure the default argument is reasonable. */
11444 arg = check_default_argument (type, arg, complain);
11445
11446 pop_access_scope (fn);
11447
11448 return arg;
11449 }
11450
11451 /* Substitute into all the default arguments for FN. */
11452
11453 static void
11454 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11455 {
11456 tree arg;
11457 tree tmpl_args;
11458
11459 tmpl_args = DECL_TI_ARGS (fn);
11460
11461 /* If this function is not yet instantiated, we certainly don't need
11462 its default arguments. */
11463 if (uses_template_parms (tmpl_args))
11464 return;
11465 /* Don't do this again for clones. */
11466 if (DECL_CLONED_FUNCTION_P (fn))
11467 return;
11468
11469 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11470 arg;
11471 arg = TREE_CHAIN (arg))
11472 if (TREE_PURPOSE (arg))
11473 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11474 TREE_VALUE (arg),
11475 TREE_PURPOSE (arg),
11476 complain);
11477 }
11478
11479 /* Substitute the ARGS into the T, which is a _DECL. Return the
11480 result of the substitution. Issue error and warning messages under
11481 control of COMPLAIN. */
11482
11483 static tree
11484 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11485 {
11486 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11487 location_t saved_loc;
11488 tree r = NULL_TREE;
11489 tree in_decl = t;
11490 hashval_t hash = 0;
11491
11492 /* Set the filename and linenumber to improve error-reporting. */
11493 saved_loc = input_location;
11494 input_location = DECL_SOURCE_LOCATION (t);
11495
11496 switch (TREE_CODE (t))
11497 {
11498 case TEMPLATE_DECL:
11499 {
11500 /* We can get here when processing a member function template,
11501 member class template, or template template parameter. */
11502 tree decl = DECL_TEMPLATE_RESULT (t);
11503 tree spec;
11504 tree tmpl_args;
11505 tree full_args;
11506
11507 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11508 {
11509 /* Template template parameter is treated here. */
11510 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11511 if (new_type == error_mark_node)
11512 r = error_mark_node;
11513 /* If we get a real template back, return it. This can happen in
11514 the context of most_specialized_partial_spec. */
11515 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11516 r = new_type;
11517 else
11518 /* The new TEMPLATE_DECL was built in
11519 reduce_template_parm_level. */
11520 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11521 break;
11522 }
11523
11524 /* We might already have an instance of this template.
11525 The ARGS are for the surrounding class type, so the
11526 full args contain the tsubst'd args for the context,
11527 plus the innermost args from the template decl. */
11528 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11529 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11530 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11531 /* Because this is a template, the arguments will still be
11532 dependent, even after substitution. If
11533 PROCESSING_TEMPLATE_DECL is not set, the dependency
11534 predicates will short-circuit. */
11535 ++processing_template_decl;
11536 full_args = tsubst_template_args (tmpl_args, args,
11537 complain, in_decl);
11538 --processing_template_decl;
11539 if (full_args == error_mark_node)
11540 RETURN (error_mark_node);
11541
11542 /* If this is a default template template argument,
11543 tsubst might not have changed anything. */
11544 if (full_args == tmpl_args)
11545 RETURN (t);
11546
11547 hash = hash_tmpl_and_args (t, full_args);
11548 spec = retrieve_specialization (t, full_args, hash);
11549 if (spec != NULL_TREE)
11550 {
11551 r = spec;
11552 break;
11553 }
11554
11555 /* Make a new template decl. It will be similar to the
11556 original, but will record the current template arguments.
11557 We also create a new function declaration, which is just
11558 like the old one, but points to this new template, rather
11559 than the old one. */
11560 r = copy_decl (t);
11561 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11562 DECL_CHAIN (r) = NULL_TREE;
11563
11564 // Build new template info linking to the original template decl.
11565 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11566
11567 if (TREE_CODE (decl) == TYPE_DECL
11568 && !TYPE_DECL_ALIAS_P (decl))
11569 {
11570 tree new_type;
11571 ++processing_template_decl;
11572 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11573 --processing_template_decl;
11574 if (new_type == error_mark_node)
11575 RETURN (error_mark_node);
11576
11577 TREE_TYPE (r) = new_type;
11578 /* For a partial specialization, we need to keep pointing to
11579 the primary template. */
11580 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11581 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11582 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11583 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11584 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11585 }
11586 else
11587 {
11588 tree new_decl;
11589 ++processing_template_decl;
11590 new_decl = tsubst (decl, args, complain, in_decl);
11591 --processing_template_decl;
11592 if (new_decl == error_mark_node)
11593 RETURN (error_mark_node);
11594
11595 DECL_TEMPLATE_RESULT (r) = new_decl;
11596 DECL_TI_TEMPLATE (new_decl) = r;
11597 TREE_TYPE (r) = TREE_TYPE (new_decl);
11598 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11599 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11600 }
11601
11602 SET_DECL_IMPLICIT_INSTANTIATION (r);
11603 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11604 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11605
11606 /* The template parameters for this new template are all the
11607 template parameters for the old template, except the
11608 outermost level of parameters. */
11609 DECL_TEMPLATE_PARMS (r)
11610 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11611 complain);
11612
11613 if (PRIMARY_TEMPLATE_P (t))
11614 DECL_PRIMARY_TEMPLATE (r) = r;
11615
11616 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11617 /* Record this non-type partial instantiation. */
11618 register_specialization (r, t,
11619 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11620 false, hash);
11621 }
11622 break;
11623
11624 case FUNCTION_DECL:
11625 {
11626 tree ctx;
11627 tree argvec = NULL_TREE;
11628 tree *friends;
11629 tree gen_tmpl;
11630 tree type;
11631 int member;
11632 int args_depth;
11633 int parms_depth;
11634
11635 /* Nobody should be tsubst'ing into non-template functions. */
11636 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11637
11638 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11639 {
11640 tree spec;
11641 bool dependent_p;
11642
11643 /* If T is not dependent, just return it. We have to
11644 increment PROCESSING_TEMPLATE_DECL because
11645 value_dependent_expression_p assumes that nothing is
11646 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11647 ++processing_template_decl;
11648 dependent_p = value_dependent_expression_p (t);
11649 --processing_template_decl;
11650 if (!dependent_p)
11651 RETURN (t);
11652
11653 /* Calculate the most general template of which R is a
11654 specialization, and the complete set of arguments used to
11655 specialize R. */
11656 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11657 argvec = tsubst_template_args (DECL_TI_ARGS
11658 (DECL_TEMPLATE_RESULT
11659 (DECL_TI_TEMPLATE (t))),
11660 args, complain, in_decl);
11661 if (argvec == error_mark_node)
11662 RETURN (error_mark_node);
11663
11664 /* Check to see if we already have this specialization. */
11665 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11666 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11667
11668 if (spec)
11669 {
11670 r = spec;
11671 break;
11672 }
11673
11674 /* We can see more levels of arguments than parameters if
11675 there was a specialization of a member template, like
11676 this:
11677
11678 template <class T> struct S { template <class U> void f(); }
11679 template <> template <class U> void S<int>::f(U);
11680
11681 Here, we'll be substituting into the specialization,
11682 because that's where we can find the code we actually
11683 want to generate, but we'll have enough arguments for
11684 the most general template.
11685
11686 We also deal with the peculiar case:
11687
11688 template <class T> struct S {
11689 template <class U> friend void f();
11690 };
11691 template <class U> void f() {}
11692 template S<int>;
11693 template void f<double>();
11694
11695 Here, the ARGS for the instantiation of will be {int,
11696 double}. But, we only need as many ARGS as there are
11697 levels of template parameters in CODE_PATTERN. We are
11698 careful not to get fooled into reducing the ARGS in
11699 situations like:
11700
11701 template <class T> struct S { template <class U> void f(U); }
11702 template <class T> template <> void S<T>::f(int) {}
11703
11704 which we can spot because the pattern will be a
11705 specialization in this case. */
11706 args_depth = TMPL_ARGS_DEPTH (args);
11707 parms_depth =
11708 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11709 if (args_depth > parms_depth
11710 && !DECL_TEMPLATE_SPECIALIZATION (t))
11711 args = get_innermost_template_args (args, parms_depth);
11712 }
11713 else
11714 {
11715 /* This special case arises when we have something like this:
11716
11717 template <class T> struct S {
11718 friend void f<int>(int, double);
11719 };
11720
11721 Here, the DECL_TI_TEMPLATE for the friend declaration
11722 will be an IDENTIFIER_NODE. We are being called from
11723 tsubst_friend_function, and we want only to create a
11724 new decl (R) with appropriate types so that we can call
11725 determine_specialization. */
11726 gen_tmpl = NULL_TREE;
11727 }
11728
11729 if (DECL_CLASS_SCOPE_P (t))
11730 {
11731 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11732 member = 2;
11733 else
11734 member = 1;
11735 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11736 complain, t, /*entering_scope=*/1);
11737 }
11738 else
11739 {
11740 member = 0;
11741 ctx = DECL_CONTEXT (t);
11742 }
11743 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11744 if (type == error_mark_node)
11745 RETURN (error_mark_node);
11746
11747 /* If we hit excessive deduction depth, the type is bogus even if
11748 it isn't error_mark_node, so don't build a decl. */
11749 if (excessive_deduction_depth)
11750 RETURN (error_mark_node);
11751
11752 /* We do NOT check for matching decls pushed separately at this
11753 point, as they may not represent instantiations of this
11754 template, and in any case are considered separate under the
11755 discrete model. */
11756 r = copy_decl (t);
11757 DECL_USE_TEMPLATE (r) = 0;
11758 TREE_TYPE (r) = type;
11759 /* Clear out the mangled name and RTL for the instantiation. */
11760 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11761 SET_DECL_RTL (r, NULL);
11762 /* Leave DECL_INITIAL set on deleted instantiations. */
11763 if (!DECL_DELETED_FN (r))
11764 DECL_INITIAL (r) = NULL_TREE;
11765 DECL_CONTEXT (r) = ctx;
11766
11767 /* OpenMP UDRs have the only argument a reference to the declared
11768 type. We want to diagnose if the declared type is a reference,
11769 which is invalid, but as references to references are usually
11770 quietly merged, diagnose it here. */
11771 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11772 {
11773 tree argtype
11774 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11775 argtype = tsubst (argtype, args, complain, in_decl);
11776 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11777 error_at (DECL_SOURCE_LOCATION (t),
11778 "reference type %qT in "
11779 "%<#pragma omp declare reduction%>", argtype);
11780 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11781 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11782 argtype);
11783 }
11784
11785 if (member && DECL_CONV_FN_P (r))
11786 /* Type-conversion operator. Reconstruct the name, in
11787 case it's the name of one of the template's parameters. */
11788 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11789
11790 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11791 complain, t);
11792 DECL_RESULT (r) = NULL_TREE;
11793
11794 TREE_STATIC (r) = 0;
11795 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11796 DECL_EXTERNAL (r) = 1;
11797 /* If this is an instantiation of a function with internal
11798 linkage, we already know what object file linkage will be
11799 assigned to the instantiation. */
11800 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11801 DECL_DEFER_OUTPUT (r) = 0;
11802 DECL_CHAIN (r) = NULL_TREE;
11803 DECL_PENDING_INLINE_INFO (r) = 0;
11804 DECL_PENDING_INLINE_P (r) = 0;
11805 DECL_SAVED_TREE (r) = NULL_TREE;
11806 DECL_STRUCT_FUNCTION (r) = NULL;
11807 TREE_USED (r) = 0;
11808 /* We'll re-clone as appropriate in instantiate_template. */
11809 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11810
11811 /* If we aren't complaining now, return on error before we register
11812 the specialization so that we'll complain eventually. */
11813 if ((complain & tf_error) == 0
11814 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11815 && !grok_op_properties (r, /*complain=*/false))
11816 RETURN (error_mark_node);
11817
11818 /* When instantiating a constrained member, substitute
11819 into the constraints to create a new constraint. */
11820 if (tree ci = get_constraints (t))
11821 if (member)
11822 {
11823 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11824 set_constraints (r, ci);
11825 }
11826
11827 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11828 this in the special friend case mentioned above where
11829 GEN_TMPL is NULL. */
11830 if (gen_tmpl)
11831 {
11832 DECL_TEMPLATE_INFO (r)
11833 = build_template_info (gen_tmpl, argvec);
11834 SET_DECL_IMPLICIT_INSTANTIATION (r);
11835
11836 tree new_r
11837 = register_specialization (r, gen_tmpl, argvec, false, hash);
11838 if (new_r != r)
11839 /* We instantiated this while substituting into
11840 the type earlier (template/friend54.C). */
11841 RETURN (new_r);
11842
11843 /* We're not supposed to instantiate default arguments
11844 until they are called, for a template. But, for a
11845 declaration like:
11846
11847 template <class T> void f ()
11848 { extern void g(int i = T()); }
11849
11850 we should do the substitution when the template is
11851 instantiated. We handle the member function case in
11852 instantiate_class_template since the default arguments
11853 might refer to other members of the class. */
11854 if (!member
11855 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11856 && !uses_template_parms (argvec))
11857 tsubst_default_arguments (r, complain);
11858 }
11859 else
11860 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11861
11862 /* Copy the list of befriending classes. */
11863 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11864 *friends;
11865 friends = &TREE_CHAIN (*friends))
11866 {
11867 *friends = copy_node (*friends);
11868 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11869 args, complain,
11870 in_decl);
11871 }
11872
11873 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11874 {
11875 maybe_retrofit_in_chrg (r);
11876 if (DECL_CONSTRUCTOR_P (r))
11877 grok_ctor_properties (ctx, r);
11878 if (DECL_INHERITED_CTOR_BASE (r))
11879 deduce_inheriting_ctor (r);
11880 /* If this is an instantiation of a member template, clone it.
11881 If it isn't, that'll be handled by
11882 clone_constructors_and_destructors. */
11883 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11884 clone_function_decl (r, /*update_method_vec_p=*/0);
11885 }
11886 else if ((complain & tf_error) != 0
11887 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11888 && !grok_op_properties (r, /*complain=*/true))
11889 RETURN (error_mark_node);
11890
11891 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11892 SET_DECL_FRIEND_CONTEXT (r,
11893 tsubst (DECL_FRIEND_CONTEXT (t),
11894 args, complain, in_decl));
11895
11896 /* Possibly limit visibility based on template args. */
11897 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11898 if (DECL_VISIBILITY_SPECIFIED (t))
11899 {
11900 DECL_VISIBILITY_SPECIFIED (r) = 0;
11901 DECL_ATTRIBUTES (r)
11902 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11903 }
11904 determine_visibility (r);
11905 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11906 && !processing_template_decl)
11907 defaulted_late_check (r);
11908
11909 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11910 args, complain, in_decl);
11911 }
11912 break;
11913
11914 case PARM_DECL:
11915 {
11916 tree type = NULL_TREE;
11917 int i, len = 1;
11918 tree expanded_types = NULL_TREE;
11919 tree prev_r = NULL_TREE;
11920 tree first_r = NULL_TREE;
11921
11922 if (DECL_PACK_P (t))
11923 {
11924 /* If there is a local specialization that isn't a
11925 parameter pack, it means that we're doing a "simple"
11926 substitution from inside tsubst_pack_expansion. Just
11927 return the local specialization (which will be a single
11928 parm). */
11929 tree spec = retrieve_local_specialization (t);
11930 if (spec
11931 && TREE_CODE (spec) == PARM_DECL
11932 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11933 RETURN (spec);
11934
11935 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11936 the parameters in this function parameter pack. */
11937 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11938 complain, in_decl);
11939 if (TREE_CODE (expanded_types) == TREE_VEC)
11940 {
11941 len = TREE_VEC_LENGTH (expanded_types);
11942
11943 /* Zero-length parameter packs are boring. Just substitute
11944 into the chain. */
11945 if (len == 0)
11946 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11947 TREE_CHAIN (t)));
11948 }
11949 else
11950 {
11951 /* All we did was update the type. Make a note of that. */
11952 type = expanded_types;
11953 expanded_types = NULL_TREE;
11954 }
11955 }
11956
11957 /* Loop through all of the parameters we'll build. When T is
11958 a function parameter pack, LEN is the number of expanded
11959 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11960 r = NULL_TREE;
11961 for (i = 0; i < len; ++i)
11962 {
11963 prev_r = r;
11964 r = copy_node (t);
11965 if (DECL_TEMPLATE_PARM_P (t))
11966 SET_DECL_TEMPLATE_PARM_P (r);
11967
11968 if (expanded_types)
11969 /* We're on the Ith parameter of the function parameter
11970 pack. */
11971 {
11972 /* Get the Ith type. */
11973 type = TREE_VEC_ELT (expanded_types, i);
11974
11975 /* Rename the parameter to include the index. */
11976 DECL_NAME (r)
11977 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11978 }
11979 else if (!type)
11980 /* We're dealing with a normal parameter. */
11981 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11982
11983 type = type_decays_to (type);
11984 TREE_TYPE (r) = type;
11985 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11986
11987 if (DECL_INITIAL (r))
11988 {
11989 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11990 DECL_INITIAL (r) = TREE_TYPE (r);
11991 else
11992 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11993 complain, in_decl);
11994 }
11995
11996 DECL_CONTEXT (r) = NULL_TREE;
11997
11998 if (!DECL_TEMPLATE_PARM_P (r))
11999 DECL_ARG_TYPE (r) = type_passed_as (type);
12000
12001 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12002 args, complain, in_decl);
12003
12004 /* Keep track of the first new parameter we
12005 generate. That's what will be returned to the
12006 caller. */
12007 if (!first_r)
12008 first_r = r;
12009
12010 /* Build a proper chain of parameters when substituting
12011 into a function parameter pack. */
12012 if (prev_r)
12013 DECL_CHAIN (prev_r) = r;
12014 }
12015
12016 /* If cp_unevaluated_operand is set, we're just looking for a
12017 single dummy parameter, so don't keep going. */
12018 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12019 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12020 complain, DECL_CHAIN (t));
12021
12022 /* FIRST_R contains the start of the chain we've built. */
12023 r = first_r;
12024 }
12025 break;
12026
12027 case FIELD_DECL:
12028 {
12029 tree type = NULL_TREE;
12030 tree vec = NULL_TREE;
12031 tree expanded_types = NULL_TREE;
12032 int len = 1;
12033
12034 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12035 {
12036 /* This field is a lambda capture pack. Return a TREE_VEC of
12037 the expanded fields to instantiate_class_template_1 and
12038 store them in the specializations hash table as a
12039 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12040 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12041 complain, in_decl);
12042 if (TREE_CODE (expanded_types) == TREE_VEC)
12043 {
12044 len = TREE_VEC_LENGTH (expanded_types);
12045 vec = make_tree_vec (len);
12046 }
12047 else
12048 {
12049 /* All we did was update the type. Make a note of that. */
12050 type = expanded_types;
12051 expanded_types = NULL_TREE;
12052 }
12053 }
12054
12055 for (int i = 0; i < len; ++i)
12056 {
12057 r = copy_decl (t);
12058 if (expanded_types)
12059 {
12060 type = TREE_VEC_ELT (expanded_types, i);
12061 DECL_NAME (r)
12062 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12063 }
12064 else if (!type)
12065 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12066
12067 if (type == error_mark_node)
12068 RETURN (error_mark_node);
12069 TREE_TYPE (r) = type;
12070 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12071
12072 if (DECL_C_BIT_FIELD (r))
12073 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12074 non-bit-fields DECL_INITIAL is a non-static data member
12075 initializer, which gets deferred instantiation. */
12076 DECL_INITIAL (r)
12077 = tsubst_expr (DECL_INITIAL (t), args,
12078 complain, in_decl,
12079 /*integral_constant_expression_p=*/true);
12080 else if (DECL_INITIAL (t))
12081 {
12082 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12083 NSDMI in perform_member_init. Still set DECL_INITIAL
12084 so that we know there is one. */
12085 DECL_INITIAL (r) = void_node;
12086 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12087 retrofit_lang_decl (r);
12088 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12089 }
12090 /* We don't have to set DECL_CONTEXT here; it is set by
12091 finish_member_declaration. */
12092 DECL_CHAIN (r) = NULL_TREE;
12093
12094 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12095 args, complain, in_decl);
12096
12097 if (vec)
12098 TREE_VEC_ELT (vec, i) = r;
12099 }
12100
12101 if (vec)
12102 {
12103 r = vec;
12104 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12105 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12106 SET_ARGUMENT_PACK_ARGS (pack, vec);
12107 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12108 TREE_TYPE (pack) = tpack;
12109 register_specialization (pack, t, args, false, 0);
12110 }
12111 }
12112 break;
12113
12114 case USING_DECL:
12115 /* We reach here only for member using decls. We also need to check
12116 uses_template_parms because DECL_DEPENDENT_P is not set for a
12117 using-declaration that designates a member of the current
12118 instantiation (c++/53549). */
12119 if (DECL_DEPENDENT_P (t)
12120 || uses_template_parms (USING_DECL_SCOPE (t)))
12121 {
12122 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12123 complain, in_decl);
12124 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12125 r = do_class_using_decl (inst_scope, name);
12126 if (!r)
12127 r = error_mark_node;
12128 else
12129 {
12130 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12131 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12132 }
12133 }
12134 else
12135 {
12136 r = copy_node (t);
12137 DECL_CHAIN (r) = NULL_TREE;
12138 }
12139 break;
12140
12141 case TYPE_DECL:
12142 case VAR_DECL:
12143 {
12144 tree argvec = NULL_TREE;
12145 tree gen_tmpl = NULL_TREE;
12146 tree spec;
12147 tree tmpl = NULL_TREE;
12148 tree ctx;
12149 tree type = NULL_TREE;
12150 bool local_p;
12151
12152 if (TREE_TYPE (t) == error_mark_node)
12153 RETURN (error_mark_node);
12154
12155 if (TREE_CODE (t) == TYPE_DECL
12156 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12157 {
12158 /* If this is the canonical decl, we don't have to
12159 mess with instantiations, and often we can't (for
12160 typename, template type parms and such). Note that
12161 TYPE_NAME is not correct for the above test if
12162 we've copied the type for a typedef. */
12163 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12164 if (type == error_mark_node)
12165 RETURN (error_mark_node);
12166 r = TYPE_NAME (type);
12167 break;
12168 }
12169
12170 /* Check to see if we already have the specialization we
12171 need. */
12172 spec = NULL_TREE;
12173 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12174 {
12175 /* T is a static data member or namespace-scope entity.
12176 We have to substitute into namespace-scope variables
12177 (not just variable templates) because of cases like:
12178
12179 template <class T> void f() { extern T t; }
12180
12181 where the entity referenced is not known until
12182 instantiation time. */
12183 local_p = false;
12184 ctx = DECL_CONTEXT (t);
12185 if (DECL_CLASS_SCOPE_P (t))
12186 {
12187 ctx = tsubst_aggr_type (ctx, args,
12188 complain,
12189 in_decl, /*entering_scope=*/1);
12190 /* If CTX is unchanged, then T is in fact the
12191 specialization we want. That situation occurs when
12192 referencing a static data member within in its own
12193 class. We can use pointer equality, rather than
12194 same_type_p, because DECL_CONTEXT is always
12195 canonical... */
12196 if (ctx == DECL_CONTEXT (t)
12197 /* ... unless T is a member template; in which
12198 case our caller can be willing to create a
12199 specialization of that template represented
12200 by T. */
12201 && !(DECL_TI_TEMPLATE (t)
12202 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12203 spec = t;
12204 }
12205
12206 if (!spec)
12207 {
12208 tmpl = DECL_TI_TEMPLATE (t);
12209 gen_tmpl = most_general_template (tmpl);
12210 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12211 if (argvec != error_mark_node)
12212 argvec = (coerce_innermost_template_parms
12213 (DECL_TEMPLATE_PARMS (gen_tmpl),
12214 argvec, t, complain,
12215 /*all*/true, /*defarg*/true));
12216 if (argvec == error_mark_node)
12217 RETURN (error_mark_node);
12218 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12219 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12220 }
12221 }
12222 else
12223 {
12224 /* A local variable. */
12225 local_p = true;
12226 /* Subsequent calls to pushdecl will fill this in. */
12227 ctx = NULL_TREE;
12228 spec = retrieve_local_specialization (t);
12229 }
12230 /* If we already have the specialization we need, there is
12231 nothing more to do. */
12232 if (spec)
12233 {
12234 r = spec;
12235 break;
12236 }
12237
12238 /* Create a new node for the specialization we need. */
12239 r = copy_decl (t);
12240 if (type == NULL_TREE)
12241 {
12242 if (is_typedef_decl (t))
12243 type = DECL_ORIGINAL_TYPE (t);
12244 else
12245 type = TREE_TYPE (t);
12246 if (VAR_P (t)
12247 && VAR_HAD_UNKNOWN_BOUND (t)
12248 && type != error_mark_node)
12249 type = strip_array_domain (type);
12250 type = tsubst (type, args, complain, in_decl);
12251 }
12252 if (VAR_P (r))
12253 {
12254 /* Even if the original location is out of scope, the
12255 newly substituted one is not. */
12256 DECL_DEAD_FOR_LOCAL (r) = 0;
12257 DECL_INITIALIZED_P (r) = 0;
12258 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12259 if (type == error_mark_node)
12260 RETURN (error_mark_node);
12261 if (TREE_CODE (type) == FUNCTION_TYPE)
12262 {
12263 /* It may seem that this case cannot occur, since:
12264
12265 typedef void f();
12266 void g() { f x; }
12267
12268 declares a function, not a variable. However:
12269
12270 typedef void f();
12271 template <typename T> void g() { T t; }
12272 template void g<f>();
12273
12274 is an attempt to declare a variable with function
12275 type. */
12276 error ("variable %qD has function type",
12277 /* R is not yet sufficiently initialized, so we
12278 just use its name. */
12279 DECL_NAME (r));
12280 RETURN (error_mark_node);
12281 }
12282 type = complete_type (type);
12283 /* Wait until cp_finish_decl to set this again, to handle
12284 circular dependency (template/instantiate6.C). */
12285 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12286 type = check_var_type (DECL_NAME (r), type);
12287
12288 if (DECL_HAS_VALUE_EXPR_P (t))
12289 {
12290 tree ve = DECL_VALUE_EXPR (t);
12291 ve = tsubst_expr (ve, args, complain, in_decl,
12292 /*constant_expression_p=*/false);
12293 if (REFERENCE_REF_P (ve))
12294 {
12295 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12296 ve = TREE_OPERAND (ve, 0);
12297 }
12298 SET_DECL_VALUE_EXPR (r, ve);
12299 }
12300 if (CP_DECL_THREAD_LOCAL_P (r)
12301 && !processing_template_decl)
12302 set_decl_tls_model (r, decl_default_tls_model (r));
12303 }
12304 else if (DECL_SELF_REFERENCE_P (t))
12305 SET_DECL_SELF_REFERENCE_P (r);
12306 TREE_TYPE (r) = type;
12307 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12308 DECL_CONTEXT (r) = ctx;
12309 /* Clear out the mangled name and RTL for the instantiation. */
12310 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12311 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12312 SET_DECL_RTL (r, NULL);
12313 /* The initializer must not be expanded until it is required;
12314 see [temp.inst]. */
12315 DECL_INITIAL (r) = NULL_TREE;
12316 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12317 SET_DECL_RTL (r, NULL);
12318 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12319 if (VAR_P (r))
12320 {
12321 /* Possibly limit visibility based on template args. */
12322 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12323 if (DECL_VISIBILITY_SPECIFIED (t))
12324 {
12325 DECL_VISIBILITY_SPECIFIED (r) = 0;
12326 DECL_ATTRIBUTES (r)
12327 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12328 }
12329 determine_visibility (r);
12330 }
12331
12332 if (!local_p)
12333 {
12334 /* A static data member declaration is always marked
12335 external when it is declared in-class, even if an
12336 initializer is present. We mimic the non-template
12337 processing here. */
12338 DECL_EXTERNAL (r) = 1;
12339 if (DECL_NAMESPACE_SCOPE_P (t))
12340 DECL_NOT_REALLY_EXTERN (r) = 1;
12341
12342 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12343 SET_DECL_IMPLICIT_INSTANTIATION (r);
12344 register_specialization (r, gen_tmpl, argvec, false, hash);
12345 }
12346 else
12347 {
12348 if (DECL_LANG_SPECIFIC (r))
12349 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12350 if (!cp_unevaluated_operand)
12351 register_local_specialization (r, t);
12352 }
12353
12354 DECL_CHAIN (r) = NULL_TREE;
12355
12356 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12357 /*flags=*/0,
12358 args, complain, in_decl);
12359
12360 /* Preserve a typedef that names a type. */
12361 if (is_typedef_decl (r))
12362 {
12363 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12364 set_underlying_type (r);
12365 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12366 /* An alias template specialization can be dependent
12367 even if its underlying type is not. */
12368 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12369 }
12370
12371 layout_decl (r, 0);
12372 }
12373 break;
12374
12375 default:
12376 gcc_unreachable ();
12377 }
12378 #undef RETURN
12379
12380 out:
12381 /* Restore the file and line information. */
12382 input_location = saved_loc;
12383
12384 return r;
12385 }
12386
12387 /* Substitute into the ARG_TYPES of a function type.
12388 If END is a TREE_CHAIN, leave it and any following types
12389 un-substituted. */
12390
12391 static tree
12392 tsubst_arg_types (tree arg_types,
12393 tree args,
12394 tree end,
12395 tsubst_flags_t complain,
12396 tree in_decl)
12397 {
12398 tree remaining_arg_types;
12399 tree type = NULL_TREE;
12400 int i = 1;
12401 tree expanded_args = NULL_TREE;
12402 tree default_arg;
12403
12404 if (!arg_types || arg_types == void_list_node || arg_types == end)
12405 return arg_types;
12406
12407 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12408 args, end, complain, in_decl);
12409 if (remaining_arg_types == error_mark_node)
12410 return error_mark_node;
12411
12412 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12413 {
12414 /* For a pack expansion, perform substitution on the
12415 entire expression. Later on, we'll handle the arguments
12416 one-by-one. */
12417 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12418 args, complain, in_decl);
12419
12420 if (TREE_CODE (expanded_args) == TREE_VEC)
12421 /* So that we'll spin through the parameters, one by one. */
12422 i = TREE_VEC_LENGTH (expanded_args);
12423 else
12424 {
12425 /* We only partially substituted into the parameter
12426 pack. Our type is TYPE_PACK_EXPANSION. */
12427 type = expanded_args;
12428 expanded_args = NULL_TREE;
12429 }
12430 }
12431
12432 while (i > 0) {
12433 --i;
12434
12435 if (expanded_args)
12436 type = TREE_VEC_ELT (expanded_args, i);
12437 else if (!type)
12438 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12439
12440 if (type == error_mark_node)
12441 return error_mark_node;
12442 if (VOID_TYPE_P (type))
12443 {
12444 if (complain & tf_error)
12445 {
12446 error ("invalid parameter type %qT", type);
12447 if (in_decl)
12448 error ("in declaration %q+D", in_decl);
12449 }
12450 return error_mark_node;
12451 }
12452 /* DR 657. */
12453 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12454 return error_mark_node;
12455
12456 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12457 top-level qualifiers as required. */
12458 type = cv_unqualified (type_decays_to (type));
12459
12460 /* We do not substitute into default arguments here. The standard
12461 mandates that they be instantiated only when needed, which is
12462 done in build_over_call. */
12463 default_arg = TREE_PURPOSE (arg_types);
12464
12465 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12466 {
12467 /* We've instantiated a template before its default arguments
12468 have been parsed. This can happen for a nested template
12469 class, and is not an error unless we require the default
12470 argument in a call of this function. */
12471 remaining_arg_types =
12472 tree_cons (default_arg, type, remaining_arg_types);
12473 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12474 }
12475 else
12476 remaining_arg_types =
12477 hash_tree_cons (default_arg, type, remaining_arg_types);
12478 }
12479
12480 return remaining_arg_types;
12481 }
12482
12483 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12484 *not* handle the exception-specification for FNTYPE, because the
12485 initial substitution of explicitly provided template parameters
12486 during argument deduction forbids substitution into the
12487 exception-specification:
12488
12489 [temp.deduct]
12490
12491 All references in the function type of the function template to the
12492 corresponding template parameters are replaced by the specified tem-
12493 plate argument values. If a substitution in a template parameter or
12494 in the function type of the function template results in an invalid
12495 type, type deduction fails. [Note: The equivalent substitution in
12496 exception specifications is done only when the function is instanti-
12497 ated, at which point a program is ill-formed if the substitution
12498 results in an invalid type.] */
12499
12500 static tree
12501 tsubst_function_type (tree t,
12502 tree args,
12503 tsubst_flags_t complain,
12504 tree in_decl)
12505 {
12506 tree return_type;
12507 tree arg_types = NULL_TREE;
12508 tree fntype;
12509
12510 /* The TYPE_CONTEXT is not used for function/method types. */
12511 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12512
12513 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12514 failure. */
12515 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12516
12517 if (late_return_type_p)
12518 {
12519 /* Substitute the argument types. */
12520 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12521 complain, in_decl);
12522 if (arg_types == error_mark_node)
12523 return error_mark_node;
12524
12525 tree save_ccp = current_class_ptr;
12526 tree save_ccr = current_class_ref;
12527 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12528 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12529 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12530 if (do_inject)
12531 {
12532 /* DR 1207: 'this' is in scope in the trailing return type. */
12533 inject_this_parameter (this_type, cp_type_quals (this_type));
12534 }
12535
12536 /* Substitute the return type. */
12537 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12538
12539 if (do_inject)
12540 {
12541 current_class_ptr = save_ccp;
12542 current_class_ref = save_ccr;
12543 }
12544 }
12545 else
12546 /* Substitute the return type. */
12547 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12548
12549 if (return_type == error_mark_node)
12550 return error_mark_node;
12551 /* DR 486 clarifies that creation of a function type with an
12552 invalid return type is a deduction failure. */
12553 if (TREE_CODE (return_type) == ARRAY_TYPE
12554 || TREE_CODE (return_type) == FUNCTION_TYPE)
12555 {
12556 if (complain & tf_error)
12557 {
12558 if (TREE_CODE (return_type) == ARRAY_TYPE)
12559 error ("function returning an array");
12560 else
12561 error ("function returning a function");
12562 }
12563 return error_mark_node;
12564 }
12565 /* And DR 657. */
12566 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12567 return error_mark_node;
12568
12569 if (!late_return_type_p)
12570 {
12571 /* Substitute the argument types. */
12572 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12573 complain, in_decl);
12574 if (arg_types == error_mark_node)
12575 return error_mark_node;
12576 }
12577
12578 /* Construct a new type node and return it. */
12579 if (TREE_CODE (t) == FUNCTION_TYPE)
12580 {
12581 fntype = build_function_type (return_type, arg_types);
12582 fntype = apply_memfn_quals (fntype,
12583 type_memfn_quals (t),
12584 type_memfn_rqual (t));
12585 }
12586 else
12587 {
12588 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12589 /* Don't pick up extra function qualifiers from the basetype. */
12590 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12591 if (! MAYBE_CLASS_TYPE_P (r))
12592 {
12593 /* [temp.deduct]
12594
12595 Type deduction may fail for any of the following
12596 reasons:
12597
12598 -- Attempting to create "pointer to member of T" when T
12599 is not a class type. */
12600 if (complain & tf_error)
12601 error ("creating pointer to member function of non-class type %qT",
12602 r);
12603 return error_mark_node;
12604 }
12605
12606 fntype = build_method_type_directly (r, return_type,
12607 TREE_CHAIN (arg_types));
12608 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12609 }
12610 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12611
12612 if (late_return_type_p)
12613 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12614
12615 return fntype;
12616 }
12617
12618 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12619 ARGS into that specification, and return the substituted
12620 specification. If there is no specification, return NULL_TREE. */
12621
12622 static tree
12623 tsubst_exception_specification (tree fntype,
12624 tree args,
12625 tsubst_flags_t complain,
12626 tree in_decl,
12627 bool defer_ok)
12628 {
12629 tree specs;
12630 tree new_specs;
12631
12632 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12633 new_specs = NULL_TREE;
12634 if (specs && TREE_PURPOSE (specs))
12635 {
12636 /* A noexcept-specifier. */
12637 tree expr = TREE_PURPOSE (specs);
12638 if (TREE_CODE (expr) == INTEGER_CST)
12639 new_specs = expr;
12640 else if (defer_ok)
12641 {
12642 /* Defer instantiation of noexcept-specifiers to avoid
12643 excessive instantiations (c++/49107). */
12644 new_specs = make_node (DEFERRED_NOEXCEPT);
12645 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12646 {
12647 /* We already partially instantiated this member template,
12648 so combine the new args with the old. */
12649 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12650 = DEFERRED_NOEXCEPT_PATTERN (expr);
12651 DEFERRED_NOEXCEPT_ARGS (new_specs)
12652 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12653 }
12654 else
12655 {
12656 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12657 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12658 }
12659 }
12660 else
12661 new_specs = tsubst_copy_and_build
12662 (expr, args, complain, in_decl, /*function_p=*/false,
12663 /*integral_constant_expression_p=*/true);
12664 new_specs = build_noexcept_spec (new_specs, complain);
12665 }
12666 else if (specs)
12667 {
12668 if (! TREE_VALUE (specs))
12669 new_specs = specs;
12670 else
12671 while (specs)
12672 {
12673 tree spec;
12674 int i, len = 1;
12675 tree expanded_specs = NULL_TREE;
12676
12677 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12678 {
12679 /* Expand the pack expansion type. */
12680 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12681 args, complain,
12682 in_decl);
12683
12684 if (expanded_specs == error_mark_node)
12685 return error_mark_node;
12686 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12687 len = TREE_VEC_LENGTH (expanded_specs);
12688 else
12689 {
12690 /* We're substituting into a member template, so
12691 we got a TYPE_PACK_EXPANSION back. Add that
12692 expansion and move on. */
12693 gcc_assert (TREE_CODE (expanded_specs)
12694 == TYPE_PACK_EXPANSION);
12695 new_specs = add_exception_specifier (new_specs,
12696 expanded_specs,
12697 complain);
12698 specs = TREE_CHAIN (specs);
12699 continue;
12700 }
12701 }
12702
12703 for (i = 0; i < len; ++i)
12704 {
12705 if (expanded_specs)
12706 spec = TREE_VEC_ELT (expanded_specs, i);
12707 else
12708 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12709 if (spec == error_mark_node)
12710 return spec;
12711 new_specs = add_exception_specifier (new_specs, spec,
12712 complain);
12713 }
12714
12715 specs = TREE_CHAIN (specs);
12716 }
12717 }
12718 return new_specs;
12719 }
12720
12721 /* Take the tree structure T and replace template parameters used
12722 therein with the argument vector ARGS. IN_DECL is an associated
12723 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12724 Issue error and warning messages under control of COMPLAIN. Note
12725 that we must be relatively non-tolerant of extensions here, in
12726 order to preserve conformance; if we allow substitutions that
12727 should not be allowed, we may allow argument deductions that should
12728 not succeed, and therefore report ambiguous overload situations
12729 where there are none. In theory, we could allow the substitution,
12730 but indicate that it should have failed, and allow our caller to
12731 make sure that the right thing happens, but we don't try to do this
12732 yet.
12733
12734 This function is used for dealing with types, decls and the like;
12735 for expressions, use tsubst_expr or tsubst_copy. */
12736
12737 tree
12738 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12739 {
12740 enum tree_code code;
12741 tree type, r = NULL_TREE;
12742
12743 if (t == NULL_TREE || t == error_mark_node
12744 || t == integer_type_node
12745 || t == void_type_node
12746 || t == char_type_node
12747 || t == unknown_type_node
12748 || TREE_CODE (t) == NAMESPACE_DECL
12749 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12750 return t;
12751
12752 if (DECL_P (t))
12753 return tsubst_decl (t, args, complain);
12754
12755 if (args == NULL_TREE)
12756 return t;
12757
12758 code = TREE_CODE (t);
12759
12760 if (code == IDENTIFIER_NODE)
12761 type = IDENTIFIER_TYPE_VALUE (t);
12762 else
12763 type = TREE_TYPE (t);
12764
12765 gcc_assert (type != unknown_type_node);
12766
12767 /* Reuse typedefs. We need to do this to handle dependent attributes,
12768 such as attribute aligned. */
12769 if (TYPE_P (t)
12770 && typedef_variant_p (t))
12771 {
12772 tree decl = TYPE_NAME (t);
12773
12774 if (alias_template_specialization_p (t))
12775 {
12776 /* DECL represents an alias template and we want to
12777 instantiate it. */
12778 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12779 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12780 r = instantiate_alias_template (tmpl, gen_args, complain);
12781 }
12782 else if (DECL_CLASS_SCOPE_P (decl)
12783 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12784 && uses_template_parms (DECL_CONTEXT (decl)))
12785 {
12786 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12787 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12788 r = retrieve_specialization (tmpl, gen_args, 0);
12789 }
12790 else if (DECL_FUNCTION_SCOPE_P (decl)
12791 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12792 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12793 r = retrieve_local_specialization (decl);
12794 else
12795 /* The typedef is from a non-template context. */
12796 return t;
12797
12798 if (r)
12799 {
12800 r = TREE_TYPE (r);
12801 r = cp_build_qualified_type_real
12802 (r, cp_type_quals (t) | cp_type_quals (r),
12803 complain | tf_ignore_bad_quals);
12804 return r;
12805 }
12806 else
12807 {
12808 /* We don't have an instantiation yet, so drop the typedef. */
12809 int quals = cp_type_quals (t);
12810 t = DECL_ORIGINAL_TYPE (decl);
12811 t = cp_build_qualified_type_real (t, quals,
12812 complain | tf_ignore_bad_quals);
12813 }
12814 }
12815
12816 if (type
12817 && code != TYPENAME_TYPE
12818 && code != TEMPLATE_TYPE_PARM
12819 && code != IDENTIFIER_NODE
12820 && code != FUNCTION_TYPE
12821 && code != METHOD_TYPE)
12822 type = tsubst (type, args, complain, in_decl);
12823 if (type == error_mark_node)
12824 return error_mark_node;
12825
12826 switch (code)
12827 {
12828 case RECORD_TYPE:
12829 case UNION_TYPE:
12830 case ENUMERAL_TYPE:
12831 return tsubst_aggr_type (t, args, complain, in_decl,
12832 /*entering_scope=*/0);
12833
12834 case ERROR_MARK:
12835 case IDENTIFIER_NODE:
12836 case VOID_TYPE:
12837 case REAL_TYPE:
12838 case COMPLEX_TYPE:
12839 case VECTOR_TYPE:
12840 case BOOLEAN_TYPE:
12841 case NULLPTR_TYPE:
12842 case LANG_TYPE:
12843 return t;
12844
12845 case INTEGER_TYPE:
12846 if (t == integer_type_node)
12847 return t;
12848
12849 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST)
12850 {
12851 if (!TYPE_MAX_VALUE (t))
12852 return compute_array_index_type (NULL_TREE, NULL_TREE, complain);
12853
12854 if (TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12855 return t;
12856 }
12857
12858 {
12859 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12860
12861 max = tsubst_expr (omax, args, complain, in_decl,
12862 /*integral_constant_expression_p=*/false);
12863
12864 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12865 needed. */
12866 if (TREE_CODE (max) == NOP_EXPR
12867 && TREE_SIDE_EFFECTS (omax)
12868 && !TREE_TYPE (max))
12869 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12870
12871 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12872 with TREE_SIDE_EFFECTS that indicates this is not an integral
12873 constant expression. */
12874 if (processing_template_decl
12875 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12876 {
12877 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12878 TREE_SIDE_EFFECTS (max) = 1;
12879 }
12880
12881 return compute_array_index_type (NULL_TREE, max, complain);
12882 }
12883
12884 case TEMPLATE_TYPE_PARM:
12885 case TEMPLATE_TEMPLATE_PARM:
12886 case BOUND_TEMPLATE_TEMPLATE_PARM:
12887 case TEMPLATE_PARM_INDEX:
12888 {
12889 int idx;
12890 int level;
12891 int levels;
12892 tree arg = NULL_TREE;
12893
12894 /* Early in template argument deduction substitution, we don't
12895 want to reduce the level of 'auto', or it will be confused
12896 with a normal template parm in subsequent deduction. */
12897 if (is_auto (t) && (complain & tf_partial))
12898 return t;
12899
12900 r = NULL_TREE;
12901
12902 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12903 template_parm_level_and_index (t, &level, &idx);
12904
12905 levels = TMPL_ARGS_DEPTH (args);
12906 if (level <= levels
12907 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12908 {
12909 arg = TMPL_ARG (args, level, idx);
12910
12911 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12912 {
12913 /* See through ARGUMENT_PACK_SELECT arguments. */
12914 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12915 /* If the selected argument is an expansion E, that most
12916 likely means we were called from
12917 gen_elem_of_pack_expansion_instantiation during the
12918 substituting of pack an argument pack (which Ith
12919 element is a pack expansion, where I is
12920 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12921 In this case, the Ith element resulting from this
12922 substituting is going to be a pack expansion, which
12923 pattern is the pattern of E. Let's return the
12924 pattern of E, and
12925 gen_elem_of_pack_expansion_instantiation will
12926 build the resulting pack expansion from it. */
12927 if (PACK_EXPANSION_P (arg))
12928 {
12929 /* Make sure we aren't throwing away arg info. */
12930 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12931 arg = PACK_EXPANSION_PATTERN (arg);
12932 }
12933 }
12934 }
12935
12936 if (arg == error_mark_node)
12937 return error_mark_node;
12938 else if (arg != NULL_TREE)
12939 {
12940 if (ARGUMENT_PACK_P (arg))
12941 /* If ARG is an argument pack, we don't actually want to
12942 perform a substitution here, because substitutions
12943 for argument packs are only done
12944 element-by-element. We can get to this point when
12945 substituting the type of a non-type template
12946 parameter pack, when that type actually contains
12947 template parameter packs from an outer template, e.g.,
12948
12949 template<typename... Types> struct A {
12950 template<Types... Values> struct B { };
12951 }; */
12952 return t;
12953
12954 if (code == TEMPLATE_TYPE_PARM)
12955 {
12956 int quals;
12957 gcc_assert (TYPE_P (arg));
12958
12959 quals = cp_type_quals (arg) | cp_type_quals (t);
12960
12961 return cp_build_qualified_type_real
12962 (arg, quals, complain | tf_ignore_bad_quals);
12963 }
12964 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12965 {
12966 /* We are processing a type constructed from a
12967 template template parameter. */
12968 tree argvec = tsubst (TYPE_TI_ARGS (t),
12969 args, complain, in_decl);
12970 if (argvec == error_mark_node)
12971 return error_mark_node;
12972
12973 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12974 || TREE_CODE (arg) == TEMPLATE_DECL
12975 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12976
12977 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12978 /* Consider this code:
12979
12980 template <template <class> class Template>
12981 struct Internal {
12982 template <class Arg> using Bind = Template<Arg>;
12983 };
12984
12985 template <template <class> class Template, class Arg>
12986 using Instantiate = Template<Arg>; //#0
12987
12988 template <template <class> class Template,
12989 class Argument>
12990 using Bind =
12991 Instantiate<Internal<Template>::template Bind,
12992 Argument>; //#1
12993
12994 When #1 is parsed, the
12995 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12996 parameter `Template' in #0 matches the
12997 UNBOUND_CLASS_TEMPLATE representing the argument
12998 `Internal<Template>::template Bind'; We then want
12999 to assemble the type `Bind<Argument>' that can't
13000 be fully created right now, because
13001 `Internal<Template>' not being complete, the Bind
13002 template cannot be looked up in that context. So
13003 we need to "store" `Bind<Argument>' for later
13004 when the context of Bind becomes complete. Let's
13005 store that in a TYPENAME_TYPE. */
13006 return make_typename_type (TYPE_CONTEXT (arg),
13007 build_nt (TEMPLATE_ID_EXPR,
13008 TYPE_IDENTIFIER (arg),
13009 argvec),
13010 typename_type,
13011 complain);
13012
13013 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13014 are resolving nested-types in the signature of a
13015 member function templates. Otherwise ARG is a
13016 TEMPLATE_DECL and is the real template to be
13017 instantiated. */
13018 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13019 arg = TYPE_NAME (arg);
13020
13021 r = lookup_template_class (arg,
13022 argvec, in_decl,
13023 DECL_CONTEXT (arg),
13024 /*entering_scope=*/0,
13025 complain);
13026 return cp_build_qualified_type_real
13027 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13028 }
13029 else
13030 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
13031 return convert_from_reference (unshare_expr (arg));
13032 }
13033
13034 if (level == 1)
13035 /* This can happen during the attempted tsubst'ing in
13036 unify. This means that we don't yet have any information
13037 about the template parameter in question. */
13038 return t;
13039
13040 /* If we get here, we must have been looking at a parm for a
13041 more deeply nested template. Make a new version of this
13042 template parameter, but with a lower level. */
13043 switch (code)
13044 {
13045 case TEMPLATE_TYPE_PARM:
13046 case TEMPLATE_TEMPLATE_PARM:
13047 case BOUND_TEMPLATE_TEMPLATE_PARM:
13048 if (cp_type_quals (t))
13049 {
13050 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13051 r = cp_build_qualified_type_real
13052 (r, cp_type_quals (t),
13053 complain | (code == TEMPLATE_TYPE_PARM
13054 ? tf_ignore_bad_quals : 0));
13055 }
13056 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13057 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13058 && (r = (TEMPLATE_PARM_DESCENDANTS
13059 (TEMPLATE_TYPE_PARM_INDEX (t))))
13060 && (r = TREE_TYPE (r))
13061 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13062 /* Break infinite recursion when substituting the constraints
13063 of a constrained placeholder. */;
13064 else
13065 {
13066 r = copy_type (t);
13067 TEMPLATE_TYPE_PARM_INDEX (r)
13068 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13069 r, levels, args, complain);
13070 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13071 TYPE_MAIN_VARIANT (r) = r;
13072 TYPE_POINTER_TO (r) = NULL_TREE;
13073 TYPE_REFERENCE_TO (r) = NULL_TREE;
13074
13075 /* Propagate constraints on placeholders. */
13076 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13077 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13078 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13079 = tsubst_constraint (constr, args, complain, in_decl);
13080
13081 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13082 /* We have reduced the level of the template
13083 template parameter, but not the levels of its
13084 template parameters, so canonical_type_parameter
13085 will not be able to find the canonical template
13086 template parameter for this level. Thus, we
13087 require structural equality checking to compare
13088 TEMPLATE_TEMPLATE_PARMs. */
13089 SET_TYPE_STRUCTURAL_EQUALITY (r);
13090 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13091 SET_TYPE_STRUCTURAL_EQUALITY (r);
13092 else
13093 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13094
13095 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13096 {
13097 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
13098 complain, in_decl);
13099 if (argvec == error_mark_node)
13100 return error_mark_node;
13101
13102 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13103 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
13104 }
13105 }
13106 break;
13107
13108 case TEMPLATE_PARM_INDEX:
13109 r = reduce_template_parm_level (t, type, levels, args, complain);
13110 break;
13111
13112 default:
13113 gcc_unreachable ();
13114 }
13115
13116 return r;
13117 }
13118
13119 case TREE_LIST:
13120 {
13121 tree purpose, value, chain;
13122
13123 if (t == void_list_node)
13124 return t;
13125
13126 purpose = TREE_PURPOSE (t);
13127 if (purpose)
13128 {
13129 purpose = tsubst (purpose, args, complain, in_decl);
13130 if (purpose == error_mark_node)
13131 return error_mark_node;
13132 }
13133 value = TREE_VALUE (t);
13134 if (value)
13135 {
13136 value = tsubst (value, args, complain, in_decl);
13137 if (value == error_mark_node)
13138 return error_mark_node;
13139 }
13140 chain = TREE_CHAIN (t);
13141 if (chain && chain != void_type_node)
13142 {
13143 chain = tsubst (chain, args, complain, in_decl);
13144 if (chain == error_mark_node)
13145 return error_mark_node;
13146 }
13147 if (purpose == TREE_PURPOSE (t)
13148 && value == TREE_VALUE (t)
13149 && chain == TREE_CHAIN (t))
13150 return t;
13151 return hash_tree_cons (purpose, value, chain);
13152 }
13153
13154 case TREE_BINFO:
13155 /* We should never be tsubsting a binfo. */
13156 gcc_unreachable ();
13157
13158 case TREE_VEC:
13159 /* A vector of template arguments. */
13160 gcc_assert (!type);
13161 return tsubst_template_args (t, args, complain, in_decl);
13162
13163 case POINTER_TYPE:
13164 case REFERENCE_TYPE:
13165 {
13166 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13167 return t;
13168
13169 /* [temp.deduct]
13170
13171 Type deduction may fail for any of the following
13172 reasons:
13173
13174 -- Attempting to create a pointer to reference type.
13175 -- Attempting to create a reference to a reference type or
13176 a reference to void.
13177
13178 Core issue 106 says that creating a reference to a reference
13179 during instantiation is no longer a cause for failure. We
13180 only enforce this check in strict C++98 mode. */
13181 if ((TREE_CODE (type) == REFERENCE_TYPE
13182 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13183 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13184 {
13185 static location_t last_loc;
13186
13187 /* We keep track of the last time we issued this error
13188 message to avoid spewing a ton of messages during a
13189 single bad template instantiation. */
13190 if (complain & tf_error
13191 && last_loc != input_location)
13192 {
13193 if (VOID_TYPE_P (type))
13194 error ("forming reference to void");
13195 else if (code == POINTER_TYPE)
13196 error ("forming pointer to reference type %qT", type);
13197 else
13198 error ("forming reference to reference type %qT", type);
13199 last_loc = input_location;
13200 }
13201
13202 return error_mark_node;
13203 }
13204 else if (TREE_CODE (type) == FUNCTION_TYPE
13205 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13206 || type_memfn_rqual (type) != REF_QUAL_NONE))
13207 {
13208 if (complain & tf_error)
13209 {
13210 if (code == POINTER_TYPE)
13211 error ("forming pointer to qualified function type %qT",
13212 type);
13213 else
13214 error ("forming reference to qualified function type %qT",
13215 type);
13216 }
13217 return error_mark_node;
13218 }
13219 else if (code == POINTER_TYPE)
13220 {
13221 r = build_pointer_type (type);
13222 if (TREE_CODE (type) == METHOD_TYPE)
13223 r = build_ptrmemfunc_type (r);
13224 }
13225 else if (TREE_CODE (type) == REFERENCE_TYPE)
13226 /* In C++0x, during template argument substitution, when there is an
13227 attempt to create a reference to a reference type, reference
13228 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13229
13230 "If a template-argument for a template-parameter T names a type
13231 that is a reference to a type A, an attempt to create the type
13232 'lvalue reference to cv T' creates the type 'lvalue reference to
13233 A,' while an attempt to create the type type rvalue reference to
13234 cv T' creates the type T"
13235 */
13236 r = cp_build_reference_type
13237 (TREE_TYPE (type),
13238 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13239 else
13240 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13241 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13242
13243 if (r != error_mark_node)
13244 /* Will this ever be needed for TYPE_..._TO values? */
13245 layout_type (r);
13246
13247 return r;
13248 }
13249 case OFFSET_TYPE:
13250 {
13251 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13252 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13253 {
13254 /* [temp.deduct]
13255
13256 Type deduction may fail for any of the following
13257 reasons:
13258
13259 -- Attempting to create "pointer to member of T" when T
13260 is not a class type. */
13261 if (complain & tf_error)
13262 error ("creating pointer to member of non-class type %qT", r);
13263 return error_mark_node;
13264 }
13265 if (TREE_CODE (type) == REFERENCE_TYPE)
13266 {
13267 if (complain & tf_error)
13268 error ("creating pointer to member reference type %qT", type);
13269 return error_mark_node;
13270 }
13271 if (VOID_TYPE_P (type))
13272 {
13273 if (complain & tf_error)
13274 error ("creating pointer to member of type void");
13275 return error_mark_node;
13276 }
13277 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13278 if (TREE_CODE (type) == FUNCTION_TYPE)
13279 {
13280 /* The type of the implicit object parameter gets its
13281 cv-qualifiers from the FUNCTION_TYPE. */
13282 tree memptr;
13283 tree method_type
13284 = build_memfn_type (type, r, type_memfn_quals (type),
13285 type_memfn_rqual (type));
13286 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13287 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13288 complain);
13289 }
13290 else
13291 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13292 cp_type_quals (t),
13293 complain);
13294 }
13295 case FUNCTION_TYPE:
13296 case METHOD_TYPE:
13297 {
13298 tree fntype;
13299 tree specs;
13300 fntype = tsubst_function_type (t, args, complain, in_decl);
13301 if (fntype == error_mark_node)
13302 return error_mark_node;
13303
13304 /* Substitute the exception specification. */
13305 specs = tsubst_exception_specification (t, args, complain,
13306 in_decl, /*defer_ok*/true);
13307 if (specs == error_mark_node)
13308 return error_mark_node;
13309 if (specs)
13310 fntype = build_exception_variant (fntype, specs);
13311 return fntype;
13312 }
13313 case ARRAY_TYPE:
13314 {
13315 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13316 if (domain == error_mark_node)
13317 return error_mark_node;
13318
13319 /* As an optimization, we avoid regenerating the array type if
13320 it will obviously be the same as T. */
13321 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13322 return t;
13323
13324 /* These checks should match the ones in create_array_type_for_decl.
13325
13326 [temp.deduct]
13327
13328 The deduction may fail for any of the following reasons:
13329
13330 -- Attempting to create an array with an element type that
13331 is void, a function type, or a reference type, or [DR337]
13332 an abstract class type. */
13333 if (VOID_TYPE_P (type)
13334 || TREE_CODE (type) == FUNCTION_TYPE
13335 || (TREE_CODE (type) == ARRAY_TYPE
13336 && TYPE_DOMAIN (type) == NULL_TREE)
13337 || TREE_CODE (type) == REFERENCE_TYPE)
13338 {
13339 if (complain & tf_error)
13340 error ("creating array of %qT", type);
13341 return error_mark_node;
13342 }
13343
13344 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13345 return error_mark_node;
13346
13347 r = build_cplus_array_type (type, domain);
13348
13349 if (TYPE_USER_ALIGN (t))
13350 {
13351 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13352 TYPE_USER_ALIGN (r) = 1;
13353 }
13354
13355 return r;
13356 }
13357
13358 case TYPENAME_TYPE:
13359 {
13360 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13361 in_decl, /*entering_scope=*/1);
13362 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13363 complain, in_decl);
13364
13365 if (ctx == error_mark_node || f == error_mark_node)
13366 return error_mark_node;
13367
13368 if (!MAYBE_CLASS_TYPE_P (ctx))
13369 {
13370 if (complain & tf_error)
13371 error ("%qT is not a class, struct, or union type", ctx);
13372 return error_mark_node;
13373 }
13374 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13375 {
13376 /* Normally, make_typename_type does not require that the CTX
13377 have complete type in order to allow things like:
13378
13379 template <class T> struct S { typename S<T>::X Y; };
13380
13381 But, such constructs have already been resolved by this
13382 point, so here CTX really should have complete type, unless
13383 it's a partial instantiation. */
13384 ctx = complete_type (ctx);
13385 if (!COMPLETE_TYPE_P (ctx))
13386 {
13387 if (complain & tf_error)
13388 cxx_incomplete_type_error (NULL_TREE, ctx);
13389 return error_mark_node;
13390 }
13391 }
13392
13393 f = make_typename_type (ctx, f, typename_type,
13394 complain | tf_keep_type_decl);
13395 if (f == error_mark_node)
13396 return f;
13397 if (TREE_CODE (f) == TYPE_DECL)
13398 {
13399 complain |= tf_ignore_bad_quals;
13400 f = TREE_TYPE (f);
13401 }
13402
13403 if (TREE_CODE (f) != TYPENAME_TYPE)
13404 {
13405 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13406 {
13407 if (complain & tf_error)
13408 error ("%qT resolves to %qT, which is not an enumeration type",
13409 t, f);
13410 else
13411 return error_mark_node;
13412 }
13413 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13414 {
13415 if (complain & tf_error)
13416 error ("%qT resolves to %qT, which is is not a class type",
13417 t, f);
13418 else
13419 return error_mark_node;
13420 }
13421 }
13422
13423 return cp_build_qualified_type_real
13424 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13425 }
13426
13427 case UNBOUND_CLASS_TEMPLATE:
13428 {
13429 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13430 in_decl, /*entering_scope=*/1);
13431 tree name = TYPE_IDENTIFIER (t);
13432 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13433
13434 if (ctx == error_mark_node || name == error_mark_node)
13435 return error_mark_node;
13436
13437 if (parm_list)
13438 parm_list = tsubst_template_parms (parm_list, args, complain);
13439 return make_unbound_class_template (ctx, name, parm_list, complain);
13440 }
13441
13442 case TYPEOF_TYPE:
13443 {
13444 tree type;
13445
13446 ++cp_unevaluated_operand;
13447 ++c_inhibit_evaluation_warnings;
13448
13449 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13450 complain, in_decl,
13451 /*integral_constant_expression_p=*/false);
13452
13453 --cp_unevaluated_operand;
13454 --c_inhibit_evaluation_warnings;
13455
13456 type = finish_typeof (type);
13457 return cp_build_qualified_type_real (type,
13458 cp_type_quals (t)
13459 | cp_type_quals (type),
13460 complain);
13461 }
13462
13463 case DECLTYPE_TYPE:
13464 {
13465 tree type;
13466
13467 ++cp_unevaluated_operand;
13468 ++c_inhibit_evaluation_warnings;
13469
13470 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13471 complain|tf_decltype, in_decl,
13472 /*function_p*/false,
13473 /*integral_constant_expression*/false);
13474
13475 --cp_unevaluated_operand;
13476 --c_inhibit_evaluation_warnings;
13477
13478 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13479 type = lambda_capture_field_type (type,
13480 DECLTYPE_FOR_INIT_CAPTURE (t));
13481 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13482 type = lambda_proxy_type (type);
13483 else
13484 {
13485 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13486 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13487 && EXPR_P (type))
13488 /* In a template ~id could be either a complement expression
13489 or an unqualified-id naming a destructor; if instantiating
13490 it produces an expression, it's not an id-expression or
13491 member access. */
13492 id = false;
13493 type = finish_decltype_type (type, id, complain);
13494 }
13495 return cp_build_qualified_type_real (type,
13496 cp_type_quals (t)
13497 | cp_type_quals (type),
13498 complain | tf_ignore_bad_quals);
13499 }
13500
13501 case UNDERLYING_TYPE:
13502 {
13503 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13504 complain, in_decl);
13505 return finish_underlying_type (type);
13506 }
13507
13508 case TYPE_ARGUMENT_PACK:
13509 case NONTYPE_ARGUMENT_PACK:
13510 {
13511 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13512 tree packed_out =
13513 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13514 args,
13515 complain,
13516 in_decl);
13517 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13518
13519 /* For template nontype argument packs, also substitute into
13520 the type. */
13521 if (code == NONTYPE_ARGUMENT_PACK)
13522 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13523
13524 return r;
13525 }
13526 break;
13527
13528 case VOID_CST:
13529 case INTEGER_CST:
13530 case REAL_CST:
13531 case STRING_CST:
13532 case PLUS_EXPR:
13533 case MINUS_EXPR:
13534 case NEGATE_EXPR:
13535 case NOP_EXPR:
13536 case INDIRECT_REF:
13537 case ADDR_EXPR:
13538 case CALL_EXPR:
13539 case ARRAY_REF:
13540 case SCOPE_REF:
13541 /* We should use one of the expression tsubsts for these codes. */
13542 gcc_unreachable ();
13543
13544 default:
13545 sorry ("use of %qs in template", get_tree_code_name (code));
13546 return error_mark_node;
13547 }
13548 }
13549
13550 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13551 type of the expression on the left-hand side of the "." or "->"
13552 operator. */
13553
13554 static tree
13555 tsubst_baselink (tree baselink, tree object_type,
13556 tree args, tsubst_flags_t complain, tree in_decl)
13557 {
13558 tree name;
13559 tree qualifying_scope;
13560 tree fns;
13561 tree optype;
13562 tree template_args = 0;
13563 bool template_id_p = false;
13564 bool qualified = BASELINK_QUALIFIED_P (baselink);
13565
13566 /* A baselink indicates a function from a base class. Both the
13567 BASELINK_ACCESS_BINFO and the base class referenced may
13568 indicate bases of the template class, rather than the
13569 instantiated class. In addition, lookups that were not
13570 ambiguous before may be ambiguous now. Therefore, we perform
13571 the lookup again. */
13572 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13573 qualifying_scope = tsubst (qualifying_scope, args,
13574 complain, in_decl);
13575 fns = BASELINK_FUNCTIONS (baselink);
13576 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13577 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13578 {
13579 template_id_p = true;
13580 template_args = TREE_OPERAND (fns, 1);
13581 fns = TREE_OPERAND (fns, 0);
13582 if (template_args)
13583 template_args = tsubst_template_args (template_args, args,
13584 complain, in_decl);
13585 }
13586 name = DECL_NAME (get_first_fn (fns));
13587 if (IDENTIFIER_TYPENAME_P (name))
13588 name = mangle_conv_op_name_for_type (optype);
13589 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13590 if (!baselink)
13591 return error_mark_node;
13592
13593 /* If lookup found a single function, mark it as used at this
13594 point. (If it lookup found multiple functions the one selected
13595 later by overload resolution will be marked as used at that
13596 point.) */
13597 if (BASELINK_P (baselink))
13598 fns = BASELINK_FUNCTIONS (baselink);
13599 if (!template_id_p && !really_overloaded_fn (fns)
13600 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13601 return error_mark_node;
13602
13603 /* Add back the template arguments, if present. */
13604 if (BASELINK_P (baselink) && template_id_p)
13605 BASELINK_FUNCTIONS (baselink)
13606 = build_nt (TEMPLATE_ID_EXPR,
13607 BASELINK_FUNCTIONS (baselink),
13608 template_args);
13609 /* Update the conversion operator type. */
13610 BASELINK_OPTYPE (baselink) = optype;
13611
13612 if (!object_type)
13613 object_type = current_class_type;
13614
13615 if (qualified)
13616 baselink = adjust_result_of_qualified_name_lookup (baselink,
13617 qualifying_scope,
13618 object_type);
13619 return baselink;
13620 }
13621
13622 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13623 true if the qualified-id will be a postfix-expression in-and-of
13624 itself; false if more of the postfix-expression follows the
13625 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13626 of "&". */
13627
13628 static tree
13629 tsubst_qualified_id (tree qualified_id, tree args,
13630 tsubst_flags_t complain, tree in_decl,
13631 bool done, bool address_p)
13632 {
13633 tree expr;
13634 tree scope;
13635 tree name;
13636 bool is_template;
13637 tree template_args;
13638 location_t loc = UNKNOWN_LOCATION;
13639
13640 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13641
13642 /* Figure out what name to look up. */
13643 name = TREE_OPERAND (qualified_id, 1);
13644 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13645 {
13646 is_template = true;
13647 loc = EXPR_LOCATION (name);
13648 template_args = TREE_OPERAND (name, 1);
13649 if (template_args)
13650 template_args = tsubst_template_args (template_args, args,
13651 complain, in_decl);
13652 name = TREE_OPERAND (name, 0);
13653 }
13654 else
13655 {
13656 is_template = false;
13657 template_args = NULL_TREE;
13658 }
13659
13660 /* Substitute into the qualifying scope. When there are no ARGS, we
13661 are just trying to simplify a non-dependent expression. In that
13662 case the qualifying scope may be dependent, and, in any case,
13663 substituting will not help. */
13664 scope = TREE_OPERAND (qualified_id, 0);
13665 if (args)
13666 {
13667 scope = tsubst (scope, args, complain, in_decl);
13668 expr = tsubst_copy (name, args, complain, in_decl);
13669 }
13670 else
13671 expr = name;
13672
13673 if (dependent_scope_p (scope))
13674 {
13675 if (is_template)
13676 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13677 return build_qualified_name (NULL_TREE, scope, expr,
13678 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13679 }
13680
13681 if (!BASELINK_P (name) && !DECL_P (expr))
13682 {
13683 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13684 {
13685 /* A BIT_NOT_EXPR is used to represent a destructor. */
13686 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13687 {
13688 error ("qualifying type %qT does not match destructor name ~%qT",
13689 scope, TREE_OPERAND (expr, 0));
13690 expr = error_mark_node;
13691 }
13692 else
13693 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13694 /*is_type_p=*/0, false);
13695 }
13696 else
13697 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13698 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13699 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13700 {
13701 if (complain & tf_error)
13702 {
13703 error ("dependent-name %qE is parsed as a non-type, but "
13704 "instantiation yields a type", qualified_id);
13705 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13706 }
13707 return error_mark_node;
13708 }
13709 }
13710
13711 if (DECL_P (expr))
13712 {
13713 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13714 scope);
13715 /* Remember that there was a reference to this entity. */
13716 if (!mark_used (expr, complain) && !(complain & tf_error))
13717 return error_mark_node;
13718 }
13719
13720 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13721 {
13722 if (complain & tf_error)
13723 qualified_name_lookup_error (scope,
13724 TREE_OPERAND (qualified_id, 1),
13725 expr, input_location);
13726 return error_mark_node;
13727 }
13728
13729 if (is_template)
13730 expr = lookup_template_function (expr, template_args);
13731
13732 if (expr == error_mark_node && complain & tf_error)
13733 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13734 expr, input_location);
13735 else if (TYPE_P (scope))
13736 {
13737 expr = (adjust_result_of_qualified_name_lookup
13738 (expr, scope, current_nonlambda_class_type ()));
13739 expr = (finish_qualified_id_expr
13740 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13741 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13742 /*template_arg_p=*/false, complain));
13743 }
13744
13745 /* Expressions do not generally have reference type. */
13746 if (TREE_CODE (expr) != SCOPE_REF
13747 /* However, if we're about to form a pointer-to-member, we just
13748 want the referenced member referenced. */
13749 && TREE_CODE (expr) != OFFSET_REF)
13750 expr = convert_from_reference (expr);
13751
13752 return expr;
13753 }
13754
13755 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13756 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13757 for tsubst. */
13758
13759 static tree
13760 tsubst_init (tree init, tree decl, tree args,
13761 tsubst_flags_t complain, tree in_decl)
13762 {
13763 if (!init)
13764 return NULL_TREE;
13765
13766 init = tsubst_expr (init, args, complain, in_decl, false);
13767
13768 if (!init)
13769 {
13770 /* If we had an initializer but it
13771 instantiated to nothing,
13772 value-initialize the object. This will
13773 only occur when the initializer was a
13774 pack expansion where the parameter packs
13775 used in that expansion were of length
13776 zero. */
13777 init = build_value_init (TREE_TYPE (decl),
13778 complain);
13779 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13780 init = get_target_expr_sfinae (init, complain);
13781 }
13782
13783 return init;
13784 }
13785
13786 /* Like tsubst, but deals with expressions. This function just replaces
13787 template parms; to finish processing the resultant expression, use
13788 tsubst_copy_and_build or tsubst_expr. */
13789
13790 static tree
13791 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13792 {
13793 enum tree_code code;
13794 tree r;
13795
13796 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13797 return t;
13798
13799 code = TREE_CODE (t);
13800
13801 switch (code)
13802 {
13803 case PARM_DECL:
13804 r = retrieve_local_specialization (t);
13805
13806 if (r == NULL_TREE)
13807 {
13808 /* We get here for a use of 'this' in an NSDMI. */
13809 if (DECL_NAME (t) == this_identifier
13810 && current_function_decl
13811 && DECL_CONSTRUCTOR_P (current_function_decl))
13812 return current_class_ptr;
13813
13814 /* This can happen for a parameter name used later in a function
13815 declaration (such as in a late-specified return type). Just
13816 make a dummy decl, since it's only used for its type. */
13817 gcc_assert (cp_unevaluated_operand != 0);
13818 r = tsubst_decl (t, args, complain);
13819 /* Give it the template pattern as its context; its true context
13820 hasn't been instantiated yet and this is good enough for
13821 mangling. */
13822 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13823 }
13824
13825 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13826 r = ARGUMENT_PACK_SELECT_ARG (r);
13827 if (!mark_used (r, complain) && !(complain & tf_error))
13828 return error_mark_node;
13829 return r;
13830
13831 case CONST_DECL:
13832 {
13833 tree enum_type;
13834 tree v;
13835
13836 if (DECL_TEMPLATE_PARM_P (t))
13837 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13838 /* There is no need to substitute into namespace-scope
13839 enumerators. */
13840 if (DECL_NAMESPACE_SCOPE_P (t))
13841 return t;
13842 /* If ARGS is NULL, then T is known to be non-dependent. */
13843 if (args == NULL_TREE)
13844 return scalar_constant_value (t);
13845
13846 /* Unfortunately, we cannot just call lookup_name here.
13847 Consider:
13848
13849 template <int I> int f() {
13850 enum E { a = I };
13851 struct S { void g() { E e = a; } };
13852 };
13853
13854 When we instantiate f<7>::S::g(), say, lookup_name is not
13855 clever enough to find f<7>::a. */
13856 enum_type
13857 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13858 /*entering_scope=*/0);
13859
13860 for (v = TYPE_VALUES (enum_type);
13861 v != NULL_TREE;
13862 v = TREE_CHAIN (v))
13863 if (TREE_PURPOSE (v) == DECL_NAME (t))
13864 return TREE_VALUE (v);
13865
13866 /* We didn't find the name. That should never happen; if
13867 name-lookup found it during preliminary parsing, we
13868 should find it again here during instantiation. */
13869 gcc_unreachable ();
13870 }
13871 return t;
13872
13873 case FIELD_DECL:
13874 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13875 {
13876 /* Check for a local specialization set up by
13877 tsubst_pack_expansion. */
13878 if (tree r = retrieve_local_specialization (t))
13879 {
13880 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13881 r = ARGUMENT_PACK_SELECT_ARG (r);
13882 return r;
13883 }
13884
13885 /* When retrieving a capture pack from a generic lambda, remove the
13886 lambda call op's own template argument list from ARGS. Only the
13887 template arguments active for the closure type should be used to
13888 retrieve the pack specialization. */
13889 if (LAMBDA_FUNCTION_P (current_function_decl)
13890 && (template_class_depth (DECL_CONTEXT (t))
13891 != TMPL_ARGS_DEPTH (args)))
13892 args = strip_innermost_template_args (args, 1);
13893
13894 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13895 tsubst_decl put in the hash table. */
13896 return retrieve_specialization (t, args, 0);
13897 }
13898
13899 if (DECL_CONTEXT (t))
13900 {
13901 tree ctx;
13902
13903 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13904 /*entering_scope=*/1);
13905 if (ctx != DECL_CONTEXT (t))
13906 {
13907 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13908 if (!r)
13909 {
13910 if (complain & tf_error)
13911 error ("using invalid field %qD", t);
13912 return error_mark_node;
13913 }
13914 return r;
13915 }
13916 }
13917
13918 return t;
13919
13920 case VAR_DECL:
13921 case FUNCTION_DECL:
13922 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13923 r = tsubst (t, args, complain, in_decl);
13924 else if (local_variable_p (t))
13925 {
13926 r = retrieve_local_specialization (t);
13927 if (r == NULL_TREE)
13928 {
13929 /* First try name lookup to find the instantiation. */
13930 r = lookup_name (DECL_NAME (t));
13931 if (r)
13932 {
13933 /* Make sure that the one we found is the one we want. */
13934 tree ctx = DECL_CONTEXT (t);
13935 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
13936 ctx = tsubst (ctx, args, complain, in_decl);
13937 if (ctx != DECL_CONTEXT (r))
13938 r = NULL_TREE;
13939 }
13940
13941 if (r)
13942 /* OK */;
13943 else
13944 {
13945 /* This can happen for a variable used in a
13946 late-specified return type of a local lambda, or for a
13947 local static or constant. Building a new VAR_DECL
13948 should be OK in all those cases. */
13949 r = tsubst_decl (t, args, complain);
13950 if (decl_maybe_constant_var_p (r))
13951 {
13952 /* We can't call cp_finish_decl, so handle the
13953 initializer by hand. */
13954 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13955 complain, in_decl);
13956 if (!processing_template_decl)
13957 init = maybe_constant_init (init);
13958 if (processing_template_decl
13959 ? potential_constant_expression (init)
13960 : reduced_constant_expression_p (init))
13961 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13962 = TREE_CONSTANT (r) = true;
13963 DECL_INITIAL (r) = init;
13964 }
13965 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13966 || decl_constant_var_p (r)
13967 || errorcount || sorrycount);
13968 if (!processing_template_decl)
13969 {
13970 if (TREE_STATIC (r))
13971 rest_of_decl_compilation (r, toplevel_bindings_p (),
13972 at_eof);
13973 else
13974 r = process_outer_var_ref (r, complain);
13975 }
13976 }
13977 /* Remember this for subsequent uses. */
13978 if (local_specializations)
13979 register_local_specialization (r, t);
13980 }
13981 }
13982 else
13983 r = t;
13984 if (!mark_used (r, complain) && !(complain & tf_error))
13985 return error_mark_node;
13986 return r;
13987
13988 case NAMESPACE_DECL:
13989 return t;
13990
13991 case OVERLOAD:
13992 /* An OVERLOAD will always be a non-dependent overload set; an
13993 overload set from function scope will just be represented with an
13994 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13995 gcc_assert (!uses_template_parms (t));
13996 return t;
13997
13998 case BASELINK:
13999 return tsubst_baselink (t, current_nonlambda_class_type (),
14000 args, complain, in_decl);
14001
14002 case TEMPLATE_DECL:
14003 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14004 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14005 args, complain, in_decl);
14006 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14007 return tsubst (t, args, complain, in_decl);
14008 else if (DECL_CLASS_SCOPE_P (t)
14009 && uses_template_parms (DECL_CONTEXT (t)))
14010 {
14011 /* Template template argument like the following example need
14012 special treatment:
14013
14014 template <template <class> class TT> struct C {};
14015 template <class T> struct D {
14016 template <class U> struct E {};
14017 C<E> c; // #1
14018 };
14019 D<int> d; // #2
14020
14021 We are processing the template argument `E' in #1 for
14022 the template instantiation #2. Originally, `E' is a
14023 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14024 have to substitute this with one having context `D<int>'. */
14025
14026 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14027 return lookup_field (context, DECL_NAME(t), 0, false);
14028 }
14029 else
14030 /* Ordinary template template argument. */
14031 return t;
14032
14033 case CAST_EXPR:
14034 case REINTERPRET_CAST_EXPR:
14035 case CONST_CAST_EXPR:
14036 case STATIC_CAST_EXPR:
14037 case DYNAMIC_CAST_EXPR:
14038 case IMPLICIT_CONV_EXPR:
14039 case CONVERT_EXPR:
14040 case NOP_EXPR:
14041 {
14042 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14043 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14044 return build1 (code, type, op0);
14045 }
14046
14047 case SIZEOF_EXPR:
14048 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14049 {
14050 tree expanded, op = TREE_OPERAND (t, 0);
14051 int len = 0;
14052
14053 if (SIZEOF_EXPR_TYPE_P (t))
14054 op = TREE_TYPE (op);
14055
14056 ++cp_unevaluated_operand;
14057 ++c_inhibit_evaluation_warnings;
14058 /* We only want to compute the number of arguments. */
14059 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14060 --cp_unevaluated_operand;
14061 --c_inhibit_evaluation_warnings;
14062
14063 if (TREE_CODE (expanded) == TREE_VEC)
14064 {
14065 len = TREE_VEC_LENGTH (expanded);
14066 /* Set TREE_USED for the benefit of -Wunused. */
14067 for (int i = 0; i < len; i++)
14068 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14069 }
14070
14071 if (expanded == error_mark_node)
14072 return error_mark_node;
14073 else if (PACK_EXPANSION_P (expanded)
14074 || (TREE_CODE (expanded) == TREE_VEC
14075 && len > 0
14076 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
14077 {
14078 if (TREE_CODE (expanded) == TREE_VEC)
14079 expanded = TREE_VEC_ELT (expanded, len - 1);
14080 else
14081 PACK_EXPANSION_SIZEOF_P (expanded) = true;
14082
14083 if (TYPE_P (expanded))
14084 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14085 complain & tf_error);
14086 else
14087 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14088 complain & tf_error);
14089 }
14090 else
14091 return build_int_cst (size_type_node, len);
14092 }
14093 if (SIZEOF_EXPR_TYPE_P (t))
14094 {
14095 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14096 args, complain, in_decl);
14097 r = build1 (NOP_EXPR, r, error_mark_node);
14098 r = build1 (SIZEOF_EXPR,
14099 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14100 SIZEOF_EXPR_TYPE_P (r) = 1;
14101 return r;
14102 }
14103 /* Fall through */
14104
14105 case INDIRECT_REF:
14106 case NEGATE_EXPR:
14107 case TRUTH_NOT_EXPR:
14108 case BIT_NOT_EXPR:
14109 case ADDR_EXPR:
14110 case UNARY_PLUS_EXPR: /* Unary + */
14111 case ALIGNOF_EXPR:
14112 case AT_ENCODE_EXPR:
14113 case ARROW_EXPR:
14114 case THROW_EXPR:
14115 case TYPEID_EXPR:
14116 case REALPART_EXPR:
14117 case IMAGPART_EXPR:
14118 case PAREN_EXPR:
14119 {
14120 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14121 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14122 return build1 (code, type, op0);
14123 }
14124
14125 case COMPONENT_REF:
14126 {
14127 tree object;
14128 tree name;
14129
14130 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14131 name = TREE_OPERAND (t, 1);
14132 if (TREE_CODE (name) == BIT_NOT_EXPR)
14133 {
14134 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14135 complain, in_decl);
14136 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14137 }
14138 else if (TREE_CODE (name) == SCOPE_REF
14139 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14140 {
14141 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14142 complain, in_decl);
14143 name = TREE_OPERAND (name, 1);
14144 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14145 complain, in_decl);
14146 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14147 name = build_qualified_name (/*type=*/NULL_TREE,
14148 base, name,
14149 /*template_p=*/false);
14150 }
14151 else if (BASELINK_P (name))
14152 name = tsubst_baselink (name,
14153 non_reference (TREE_TYPE (object)),
14154 args, complain,
14155 in_decl);
14156 else
14157 name = tsubst_copy (name, args, complain, in_decl);
14158 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14159 }
14160
14161 case PLUS_EXPR:
14162 case MINUS_EXPR:
14163 case MULT_EXPR:
14164 case TRUNC_DIV_EXPR:
14165 case CEIL_DIV_EXPR:
14166 case FLOOR_DIV_EXPR:
14167 case ROUND_DIV_EXPR:
14168 case EXACT_DIV_EXPR:
14169 case BIT_AND_EXPR:
14170 case BIT_IOR_EXPR:
14171 case BIT_XOR_EXPR:
14172 case TRUNC_MOD_EXPR:
14173 case FLOOR_MOD_EXPR:
14174 case TRUTH_ANDIF_EXPR:
14175 case TRUTH_ORIF_EXPR:
14176 case TRUTH_AND_EXPR:
14177 case TRUTH_OR_EXPR:
14178 case RSHIFT_EXPR:
14179 case LSHIFT_EXPR:
14180 case RROTATE_EXPR:
14181 case LROTATE_EXPR:
14182 case EQ_EXPR:
14183 case NE_EXPR:
14184 case MAX_EXPR:
14185 case MIN_EXPR:
14186 case LE_EXPR:
14187 case GE_EXPR:
14188 case LT_EXPR:
14189 case GT_EXPR:
14190 case COMPOUND_EXPR:
14191 case DOTSTAR_EXPR:
14192 case MEMBER_REF:
14193 case PREDECREMENT_EXPR:
14194 case PREINCREMENT_EXPR:
14195 case POSTDECREMENT_EXPR:
14196 case POSTINCREMENT_EXPR:
14197 {
14198 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14199 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14200 return build_nt (code, op0, op1);
14201 }
14202
14203 case SCOPE_REF:
14204 {
14205 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14206 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14207 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14208 QUALIFIED_NAME_IS_TEMPLATE (t));
14209 }
14210
14211 case ARRAY_REF:
14212 {
14213 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14214 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14215 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14216 }
14217
14218 case CALL_EXPR:
14219 {
14220 int n = VL_EXP_OPERAND_LENGTH (t);
14221 tree result = build_vl_exp (CALL_EXPR, n);
14222 int i;
14223 for (i = 0; i < n; i++)
14224 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14225 complain, in_decl);
14226 return result;
14227 }
14228
14229 case COND_EXPR:
14230 case MODOP_EXPR:
14231 case PSEUDO_DTOR_EXPR:
14232 case VEC_PERM_EXPR:
14233 {
14234 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14235 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14236 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14237 r = build_nt (code, op0, op1, op2);
14238 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14239 return r;
14240 }
14241
14242 case NEW_EXPR:
14243 {
14244 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14245 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14246 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14247 r = build_nt (code, op0, op1, op2);
14248 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14249 return r;
14250 }
14251
14252 case DELETE_EXPR:
14253 {
14254 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14255 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14256 r = build_nt (code, op0, op1);
14257 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14258 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14259 return r;
14260 }
14261
14262 case TEMPLATE_ID_EXPR:
14263 {
14264 /* Substituted template arguments */
14265 tree fn = TREE_OPERAND (t, 0);
14266 tree targs = TREE_OPERAND (t, 1);
14267
14268 fn = tsubst_copy (fn, args, complain, in_decl);
14269 if (targs)
14270 targs = tsubst_template_args (targs, args, complain, in_decl);
14271
14272 return lookup_template_function (fn, targs);
14273 }
14274
14275 case TREE_LIST:
14276 {
14277 tree purpose, value, chain;
14278
14279 if (t == void_list_node)
14280 return t;
14281
14282 purpose = TREE_PURPOSE (t);
14283 if (purpose)
14284 purpose = tsubst_copy (purpose, args, complain, in_decl);
14285 value = TREE_VALUE (t);
14286 if (value)
14287 value = tsubst_copy (value, args, complain, in_decl);
14288 chain = TREE_CHAIN (t);
14289 if (chain && chain != void_type_node)
14290 chain = tsubst_copy (chain, args, complain, in_decl);
14291 if (purpose == TREE_PURPOSE (t)
14292 && value == TREE_VALUE (t)
14293 && chain == TREE_CHAIN (t))
14294 return t;
14295 return tree_cons (purpose, value, chain);
14296 }
14297
14298 case RECORD_TYPE:
14299 case UNION_TYPE:
14300 case ENUMERAL_TYPE:
14301 case INTEGER_TYPE:
14302 case TEMPLATE_TYPE_PARM:
14303 case TEMPLATE_TEMPLATE_PARM:
14304 case BOUND_TEMPLATE_TEMPLATE_PARM:
14305 case TEMPLATE_PARM_INDEX:
14306 case POINTER_TYPE:
14307 case REFERENCE_TYPE:
14308 case OFFSET_TYPE:
14309 case FUNCTION_TYPE:
14310 case METHOD_TYPE:
14311 case ARRAY_TYPE:
14312 case TYPENAME_TYPE:
14313 case UNBOUND_CLASS_TEMPLATE:
14314 case TYPEOF_TYPE:
14315 case DECLTYPE_TYPE:
14316 case TYPE_DECL:
14317 return tsubst (t, args, complain, in_decl);
14318
14319 case USING_DECL:
14320 t = DECL_NAME (t);
14321 /* Fall through. */
14322 case IDENTIFIER_NODE:
14323 if (IDENTIFIER_TYPENAME_P (t))
14324 {
14325 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14326 return mangle_conv_op_name_for_type (new_type);
14327 }
14328 else
14329 return t;
14330
14331 case CONSTRUCTOR:
14332 /* This is handled by tsubst_copy_and_build. */
14333 gcc_unreachable ();
14334
14335 case VA_ARG_EXPR:
14336 {
14337 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14338 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14339 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14340 }
14341
14342 case CLEANUP_POINT_EXPR:
14343 /* We shouldn't have built any of these during initial template
14344 generation. Instead, they should be built during instantiation
14345 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14346 gcc_unreachable ();
14347
14348 case OFFSET_REF:
14349 {
14350 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14351 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14352 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14353 r = build2 (code, type, op0, op1);
14354 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14355 if (!mark_used (TREE_OPERAND (r, 1), complain)
14356 && !(complain & tf_error))
14357 return error_mark_node;
14358 return r;
14359 }
14360
14361 case EXPR_PACK_EXPANSION:
14362 error ("invalid use of pack expansion expression");
14363 return error_mark_node;
14364
14365 case NONTYPE_ARGUMENT_PACK:
14366 error ("use %<...%> to expand argument pack");
14367 return error_mark_node;
14368
14369 case VOID_CST:
14370 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14371 return t;
14372
14373 case INTEGER_CST:
14374 case REAL_CST:
14375 case STRING_CST:
14376 case COMPLEX_CST:
14377 {
14378 /* Instantiate any typedefs in the type. */
14379 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14380 r = fold_convert (type, t);
14381 gcc_assert (TREE_CODE (r) == code);
14382 return r;
14383 }
14384
14385 case PTRMEM_CST:
14386 /* These can sometimes show up in a partial instantiation, but never
14387 involve template parms. */
14388 gcc_assert (!uses_template_parms (t));
14389 return t;
14390
14391 case UNARY_LEFT_FOLD_EXPR:
14392 return tsubst_unary_left_fold (t, args, complain, in_decl);
14393 case UNARY_RIGHT_FOLD_EXPR:
14394 return tsubst_unary_right_fold (t, args, complain, in_decl);
14395 case BINARY_LEFT_FOLD_EXPR:
14396 return tsubst_binary_left_fold (t, args, complain, in_decl);
14397 case BINARY_RIGHT_FOLD_EXPR:
14398 return tsubst_binary_right_fold (t, args, complain, in_decl);
14399
14400 default:
14401 /* We shouldn't get here, but keep going if !flag_checking. */
14402 if (flag_checking)
14403 gcc_unreachable ();
14404 return t;
14405 }
14406 }
14407
14408 /* Helper function for tsubst_omp_clauses, used for instantiation of
14409 OMP_CLAUSE_DECL of clauses. */
14410
14411 static tree
14412 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14413 tree in_decl)
14414 {
14415 if (decl == NULL_TREE)
14416 return NULL_TREE;
14417
14418 /* Handle an OpenMP array section represented as a TREE_LIST (or
14419 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14420 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14421 TREE_LIST. We can handle it exactly the same as an array section
14422 (purpose, value, and a chain), even though the nomenclature
14423 (low_bound, length, etc) is different. */
14424 if (TREE_CODE (decl) == TREE_LIST)
14425 {
14426 tree low_bound
14427 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14428 /*integral_constant_expression_p=*/false);
14429 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14430 /*integral_constant_expression_p=*/false);
14431 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14432 in_decl);
14433 if (TREE_PURPOSE (decl) == low_bound
14434 && TREE_VALUE (decl) == length
14435 && TREE_CHAIN (decl) == chain)
14436 return decl;
14437 tree ret = tree_cons (low_bound, length, chain);
14438 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14439 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14440 return ret;
14441 }
14442 tree ret = tsubst_expr (decl, args, complain, in_decl,
14443 /*integral_constant_expression_p=*/false);
14444 /* Undo convert_from_reference tsubst_expr could have called. */
14445 if (decl
14446 && REFERENCE_REF_P (ret)
14447 && !REFERENCE_REF_P (decl))
14448 ret = TREE_OPERAND (ret, 0);
14449 return ret;
14450 }
14451
14452 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14453
14454 static tree
14455 tsubst_omp_clauses (tree clauses, bool declare_simd, bool allow_fields,
14456 tree args, tsubst_flags_t complain, tree in_decl)
14457 {
14458 tree new_clauses = NULL_TREE, nc, oc;
14459 tree linear_no_step = NULL_TREE;
14460
14461 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14462 {
14463 nc = copy_node (oc);
14464 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14465 new_clauses = nc;
14466
14467 switch (OMP_CLAUSE_CODE (nc))
14468 {
14469 case OMP_CLAUSE_LASTPRIVATE:
14470 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14471 {
14472 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14473 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14474 in_decl, /*integral_constant_expression_p=*/false);
14475 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14476 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14477 }
14478 /* FALLTHRU */
14479 case OMP_CLAUSE_PRIVATE:
14480 case OMP_CLAUSE_SHARED:
14481 case OMP_CLAUSE_FIRSTPRIVATE:
14482 case OMP_CLAUSE_COPYIN:
14483 case OMP_CLAUSE_COPYPRIVATE:
14484 case OMP_CLAUSE_UNIFORM:
14485 case OMP_CLAUSE_DEPEND:
14486 case OMP_CLAUSE_FROM:
14487 case OMP_CLAUSE_TO:
14488 case OMP_CLAUSE_MAP:
14489 case OMP_CLAUSE_USE_DEVICE_PTR:
14490 case OMP_CLAUSE_IS_DEVICE_PTR:
14491 OMP_CLAUSE_DECL (nc)
14492 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14493 in_decl);
14494 break;
14495 case OMP_CLAUSE_IF:
14496 case OMP_CLAUSE_NUM_THREADS:
14497 case OMP_CLAUSE_SCHEDULE:
14498 case OMP_CLAUSE_COLLAPSE:
14499 case OMP_CLAUSE_FINAL:
14500 case OMP_CLAUSE_DEVICE:
14501 case OMP_CLAUSE_DIST_SCHEDULE:
14502 case OMP_CLAUSE_NUM_TEAMS:
14503 case OMP_CLAUSE_THREAD_LIMIT:
14504 case OMP_CLAUSE_SAFELEN:
14505 case OMP_CLAUSE_SIMDLEN:
14506 case OMP_CLAUSE_NUM_TASKS:
14507 case OMP_CLAUSE_GRAINSIZE:
14508 case OMP_CLAUSE_PRIORITY:
14509 case OMP_CLAUSE_ORDERED:
14510 case OMP_CLAUSE_HINT:
14511 case OMP_CLAUSE_NUM_GANGS:
14512 case OMP_CLAUSE_NUM_WORKERS:
14513 case OMP_CLAUSE_VECTOR_LENGTH:
14514 case OMP_CLAUSE_WORKER:
14515 case OMP_CLAUSE_VECTOR:
14516 case OMP_CLAUSE_ASYNC:
14517 case OMP_CLAUSE_WAIT:
14518 OMP_CLAUSE_OPERAND (nc, 0)
14519 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14520 in_decl, /*integral_constant_expression_p=*/false);
14521 break;
14522 case OMP_CLAUSE_REDUCTION:
14523 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14524 {
14525 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14526 if (TREE_CODE (placeholder) == SCOPE_REF)
14527 {
14528 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14529 complain, in_decl);
14530 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14531 = build_qualified_name (NULL_TREE, scope,
14532 TREE_OPERAND (placeholder, 1),
14533 false);
14534 }
14535 else
14536 gcc_assert (identifier_p (placeholder));
14537 }
14538 OMP_CLAUSE_DECL (nc)
14539 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14540 in_decl);
14541 break;
14542 case OMP_CLAUSE_GANG:
14543 case OMP_CLAUSE_ALIGNED:
14544 OMP_CLAUSE_DECL (nc)
14545 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14546 in_decl);
14547 OMP_CLAUSE_OPERAND (nc, 1)
14548 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14549 in_decl, /*integral_constant_expression_p=*/false);
14550 break;
14551 case OMP_CLAUSE_LINEAR:
14552 OMP_CLAUSE_DECL (nc)
14553 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14554 in_decl);
14555 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14556 {
14557 gcc_assert (!linear_no_step);
14558 linear_no_step = nc;
14559 }
14560 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14561 OMP_CLAUSE_LINEAR_STEP (nc)
14562 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14563 complain, in_decl);
14564 else
14565 OMP_CLAUSE_LINEAR_STEP (nc)
14566 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14567 in_decl,
14568 /*integral_constant_expression_p=*/false);
14569 break;
14570 case OMP_CLAUSE_NOWAIT:
14571 case OMP_CLAUSE_DEFAULT:
14572 case OMP_CLAUSE_UNTIED:
14573 case OMP_CLAUSE_MERGEABLE:
14574 case OMP_CLAUSE_INBRANCH:
14575 case OMP_CLAUSE_NOTINBRANCH:
14576 case OMP_CLAUSE_PROC_BIND:
14577 case OMP_CLAUSE_FOR:
14578 case OMP_CLAUSE_PARALLEL:
14579 case OMP_CLAUSE_SECTIONS:
14580 case OMP_CLAUSE_TASKGROUP:
14581 case OMP_CLAUSE_NOGROUP:
14582 case OMP_CLAUSE_THREADS:
14583 case OMP_CLAUSE_SIMD:
14584 case OMP_CLAUSE_DEFAULTMAP:
14585 case OMP_CLAUSE_INDEPENDENT:
14586 case OMP_CLAUSE_AUTO:
14587 case OMP_CLAUSE_SEQ:
14588 break;
14589 case OMP_CLAUSE_TILE:
14590 {
14591 tree lnc, loc;
14592 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14593 loc = OMP_CLAUSE_TILE_LIST (oc);
14594 loc;
14595 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14596 {
14597 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14598 complain, in_decl, false);
14599 }
14600 }
14601 break;
14602 default:
14603 gcc_unreachable ();
14604 }
14605 if (allow_fields)
14606 switch (OMP_CLAUSE_CODE (nc))
14607 {
14608 case OMP_CLAUSE_SHARED:
14609 case OMP_CLAUSE_PRIVATE:
14610 case OMP_CLAUSE_FIRSTPRIVATE:
14611 case OMP_CLAUSE_LASTPRIVATE:
14612 case OMP_CLAUSE_COPYPRIVATE:
14613 case OMP_CLAUSE_LINEAR:
14614 case OMP_CLAUSE_REDUCTION:
14615 case OMP_CLAUSE_USE_DEVICE_PTR:
14616 case OMP_CLAUSE_IS_DEVICE_PTR:
14617 /* tsubst_expr on SCOPE_REF results in returning
14618 finish_non_static_data_member result. Undo that here. */
14619 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14620 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14621 == IDENTIFIER_NODE))
14622 {
14623 tree t = OMP_CLAUSE_DECL (nc);
14624 tree v = t;
14625 while (v)
14626 switch (TREE_CODE (v))
14627 {
14628 case COMPONENT_REF:
14629 case MEM_REF:
14630 case INDIRECT_REF:
14631 CASE_CONVERT:
14632 case POINTER_PLUS_EXPR:
14633 v = TREE_OPERAND (v, 0);
14634 continue;
14635 case PARM_DECL:
14636 if (DECL_CONTEXT (v) == current_function_decl
14637 && DECL_ARTIFICIAL (v)
14638 && DECL_NAME (v) == this_identifier)
14639 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14640 /* FALLTHRU */
14641 default:
14642 v = NULL_TREE;
14643 break;
14644 }
14645 }
14646 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14647 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14648 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14649 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14650 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14651 {
14652 tree decl = OMP_CLAUSE_DECL (nc);
14653 if (VAR_P (decl))
14654 {
14655 if (!DECL_LANG_SPECIFIC (decl))
14656 retrofit_lang_decl (decl);
14657 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14658 }
14659 }
14660 break;
14661 default:
14662 break;
14663 }
14664 }
14665
14666 new_clauses = nreverse (new_clauses);
14667 if (!declare_simd)
14668 {
14669 new_clauses = finish_omp_clauses (new_clauses, allow_fields);
14670 if (linear_no_step)
14671 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14672 if (nc == linear_no_step)
14673 {
14674 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14675 break;
14676 }
14677 }
14678 return new_clauses;
14679 }
14680
14681 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14682
14683 static tree
14684 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14685 tree in_decl)
14686 {
14687 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14688
14689 tree purpose, value, chain;
14690
14691 if (t == NULL)
14692 return t;
14693
14694 if (TREE_CODE (t) != TREE_LIST)
14695 return tsubst_copy_and_build (t, args, complain, in_decl,
14696 /*function_p=*/false,
14697 /*integral_constant_expression_p=*/false);
14698
14699 if (t == void_list_node)
14700 return t;
14701
14702 purpose = TREE_PURPOSE (t);
14703 if (purpose)
14704 purpose = RECUR (purpose);
14705 value = TREE_VALUE (t);
14706 if (value)
14707 {
14708 if (TREE_CODE (value) != LABEL_DECL)
14709 value = RECUR (value);
14710 else
14711 {
14712 value = lookup_label (DECL_NAME (value));
14713 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14714 TREE_USED (value) = 1;
14715 }
14716 }
14717 chain = TREE_CHAIN (t);
14718 if (chain && chain != void_type_node)
14719 chain = RECUR (chain);
14720 return tree_cons (purpose, value, chain);
14721 #undef RECUR
14722 }
14723
14724 /* Used to temporarily communicate the list of #pragma omp parallel
14725 clauses to #pragma omp for instantiation if they are combined
14726 together. */
14727
14728 static tree *omp_parallel_combined_clauses;
14729
14730 /* Substitute one OMP_FOR iterator. */
14731
14732 static void
14733 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14734 tree initv, tree condv, tree incrv, tree *clauses,
14735 tree args, tsubst_flags_t complain, tree in_decl,
14736 bool integral_constant_expression_p)
14737 {
14738 #define RECUR(NODE) \
14739 tsubst_expr ((NODE), args, complain, in_decl, \
14740 integral_constant_expression_p)
14741 tree decl, init, cond, incr;
14742
14743 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14744 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14745
14746 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14747 {
14748 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14749 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14750 }
14751
14752 decl = TREE_OPERAND (init, 0);
14753 init = TREE_OPERAND (init, 1);
14754 tree decl_expr = NULL_TREE;
14755 if (init && TREE_CODE (init) == DECL_EXPR)
14756 {
14757 /* We need to jump through some hoops to handle declarations in the
14758 for-init-statement, since we might need to handle auto deduction,
14759 but we need to keep control of initialization. */
14760 decl_expr = init;
14761 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14762 decl = tsubst_decl (decl, args, complain);
14763 }
14764 else
14765 {
14766 if (TREE_CODE (decl) == SCOPE_REF)
14767 {
14768 decl = RECUR (decl);
14769 if (TREE_CODE (decl) == COMPONENT_REF)
14770 {
14771 tree v = decl;
14772 while (v)
14773 switch (TREE_CODE (v))
14774 {
14775 case COMPONENT_REF:
14776 case MEM_REF:
14777 case INDIRECT_REF:
14778 CASE_CONVERT:
14779 case POINTER_PLUS_EXPR:
14780 v = TREE_OPERAND (v, 0);
14781 continue;
14782 case PARM_DECL:
14783 if (DECL_CONTEXT (v) == current_function_decl
14784 && DECL_ARTIFICIAL (v)
14785 && DECL_NAME (v) == this_identifier)
14786 {
14787 decl = TREE_OPERAND (decl, 1);
14788 decl = omp_privatize_field (decl, false);
14789 }
14790 /* FALLTHRU */
14791 default:
14792 v = NULL_TREE;
14793 break;
14794 }
14795 }
14796 }
14797 else
14798 decl = RECUR (decl);
14799 }
14800 init = RECUR (init);
14801
14802 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14803 if (auto_node && init)
14804 TREE_TYPE (decl)
14805 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14806
14807 gcc_assert (!type_dependent_expression_p (decl));
14808
14809 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14810 {
14811 if (decl_expr)
14812 {
14813 /* Declare the variable, but don't let that initialize it. */
14814 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14815 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14816 RECUR (decl_expr);
14817 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14818 }
14819
14820 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14821 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14822 if (TREE_CODE (incr) == MODIFY_EXPR)
14823 {
14824 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14825 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14826 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14827 NOP_EXPR, rhs, complain);
14828 }
14829 else
14830 incr = RECUR (incr);
14831 TREE_VEC_ELT (declv, i) = decl;
14832 TREE_VEC_ELT (initv, i) = init;
14833 TREE_VEC_ELT (condv, i) = cond;
14834 TREE_VEC_ELT (incrv, i) = incr;
14835 return;
14836 }
14837
14838 if (decl_expr)
14839 {
14840 /* Declare and initialize the variable. */
14841 RECUR (decl_expr);
14842 init = NULL_TREE;
14843 }
14844 else if (init)
14845 {
14846 tree *pc;
14847 int j;
14848 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14849 {
14850 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14851 {
14852 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14853 && OMP_CLAUSE_DECL (*pc) == decl)
14854 break;
14855 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14856 && OMP_CLAUSE_DECL (*pc) == decl)
14857 {
14858 if (j)
14859 break;
14860 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14861 tree c = *pc;
14862 *pc = OMP_CLAUSE_CHAIN (c);
14863 OMP_CLAUSE_CHAIN (c) = *clauses;
14864 *clauses = c;
14865 }
14866 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14867 && OMP_CLAUSE_DECL (*pc) == decl)
14868 {
14869 error ("iteration variable %qD should not be firstprivate",
14870 decl);
14871 *pc = OMP_CLAUSE_CHAIN (*pc);
14872 }
14873 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14874 && OMP_CLAUSE_DECL (*pc) == decl)
14875 {
14876 error ("iteration variable %qD should not be reduction",
14877 decl);
14878 *pc = OMP_CLAUSE_CHAIN (*pc);
14879 }
14880 else
14881 pc = &OMP_CLAUSE_CHAIN (*pc);
14882 }
14883 if (*pc)
14884 break;
14885 }
14886 if (*pc == NULL_TREE)
14887 {
14888 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14889 OMP_CLAUSE_DECL (c) = decl;
14890 c = finish_omp_clauses (c, true);
14891 if (c)
14892 {
14893 OMP_CLAUSE_CHAIN (c) = *clauses;
14894 *clauses = c;
14895 }
14896 }
14897 }
14898 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14899 if (COMPARISON_CLASS_P (cond))
14900 {
14901 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14902 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14903 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14904 }
14905 else
14906 cond = RECUR (cond);
14907 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14908 switch (TREE_CODE (incr))
14909 {
14910 case PREINCREMENT_EXPR:
14911 case PREDECREMENT_EXPR:
14912 case POSTINCREMENT_EXPR:
14913 case POSTDECREMENT_EXPR:
14914 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14915 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14916 break;
14917 case MODIFY_EXPR:
14918 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14919 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14920 {
14921 tree rhs = TREE_OPERAND (incr, 1);
14922 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14923 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14924 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14925 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14926 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14927 rhs0, rhs1));
14928 }
14929 else
14930 incr = RECUR (incr);
14931 break;
14932 case MODOP_EXPR:
14933 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14934 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14935 {
14936 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14937 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14938 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
14939 TREE_TYPE (decl), lhs,
14940 RECUR (TREE_OPERAND (incr, 2))));
14941 }
14942 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
14943 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
14944 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
14945 {
14946 tree rhs = TREE_OPERAND (incr, 2);
14947 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14948 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14949 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14950 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14951 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14952 rhs0, rhs1));
14953 }
14954 else
14955 incr = RECUR (incr);
14956 break;
14957 default:
14958 incr = RECUR (incr);
14959 break;
14960 }
14961
14962 TREE_VEC_ELT (declv, i) = decl;
14963 TREE_VEC_ELT (initv, i) = init;
14964 TREE_VEC_ELT (condv, i) = cond;
14965 TREE_VEC_ELT (incrv, i) = incr;
14966 #undef RECUR
14967 }
14968
14969 /* Helper function of tsubst_expr, find OMP_TEAMS inside
14970 of OMP_TARGET's body. */
14971
14972 static tree
14973 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
14974 {
14975 *walk_subtrees = 0;
14976 switch (TREE_CODE (*tp))
14977 {
14978 case OMP_TEAMS:
14979 return *tp;
14980 case BIND_EXPR:
14981 case STATEMENT_LIST:
14982 *walk_subtrees = 1;
14983 break;
14984 default:
14985 break;
14986 }
14987 return NULL_TREE;
14988 }
14989
14990 /* Like tsubst_copy for expressions, etc. but also does semantic
14991 processing. */
14992
14993 tree
14994 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
14995 bool integral_constant_expression_p)
14996 {
14997 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
14998 #define RECUR(NODE) \
14999 tsubst_expr ((NODE), args, complain, in_decl, \
15000 integral_constant_expression_p)
15001
15002 tree stmt, tmp;
15003 tree r;
15004 location_t loc;
15005
15006 if (t == NULL_TREE || t == error_mark_node)
15007 return t;
15008
15009 loc = input_location;
15010 if (EXPR_HAS_LOCATION (t))
15011 input_location = EXPR_LOCATION (t);
15012 if (STATEMENT_CODE_P (TREE_CODE (t)))
15013 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15014
15015 switch (TREE_CODE (t))
15016 {
15017 case STATEMENT_LIST:
15018 {
15019 tree_stmt_iterator i;
15020 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15021 RECUR (tsi_stmt (i));
15022 break;
15023 }
15024
15025 case CTOR_INITIALIZER:
15026 finish_mem_initializers (tsubst_initializer_list
15027 (TREE_OPERAND (t, 0), args));
15028 break;
15029
15030 case RETURN_EXPR:
15031 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15032 break;
15033
15034 case EXPR_STMT:
15035 tmp = RECUR (EXPR_STMT_EXPR (t));
15036 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15037 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15038 else
15039 finish_expr_stmt (tmp);
15040 break;
15041
15042 case USING_STMT:
15043 do_using_directive (USING_STMT_NAMESPACE (t));
15044 break;
15045
15046 case DECL_EXPR:
15047 {
15048 tree decl, pattern_decl;
15049 tree init;
15050
15051 pattern_decl = decl = DECL_EXPR_DECL (t);
15052 if (TREE_CODE (decl) == LABEL_DECL)
15053 finish_label_decl (DECL_NAME (decl));
15054 else if (TREE_CODE (decl) == USING_DECL)
15055 {
15056 tree scope = USING_DECL_SCOPE (decl);
15057 tree name = DECL_NAME (decl);
15058 tree decl;
15059
15060 scope = tsubst (scope, args, complain, in_decl);
15061 decl = lookup_qualified_name (scope, name,
15062 /*is_type_p=*/false,
15063 /*complain=*/false);
15064 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15065 qualified_name_lookup_error (scope, name, decl, input_location);
15066 else
15067 do_local_using_decl (decl, scope, name);
15068 }
15069 else if (DECL_PACK_P (decl))
15070 {
15071 /* Don't build up decls for a variadic capture proxy, we'll
15072 instantiate the elements directly as needed. */
15073 break;
15074 }
15075 else
15076 {
15077 init = DECL_INITIAL (decl);
15078 decl = tsubst (decl, args, complain, in_decl);
15079 if (decl != error_mark_node)
15080 {
15081 /* By marking the declaration as instantiated, we avoid
15082 trying to instantiate it. Since instantiate_decl can't
15083 handle local variables, and since we've already done
15084 all that needs to be done, that's the right thing to
15085 do. */
15086 if (VAR_P (decl))
15087 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15088 if (VAR_P (decl)
15089 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15090 /* Anonymous aggregates are a special case. */
15091 finish_anon_union (decl);
15092 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15093 {
15094 DECL_CONTEXT (decl) = current_function_decl;
15095 if (DECL_NAME (decl) == this_identifier)
15096 {
15097 tree lam = DECL_CONTEXT (current_function_decl);
15098 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15099 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15100 }
15101 insert_capture_proxy (decl);
15102 }
15103 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15104 /* We already did a pushtag. */;
15105 else if (TREE_CODE (decl) == FUNCTION_DECL
15106 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15107 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15108 {
15109 DECL_CONTEXT (decl) = NULL_TREE;
15110 pushdecl (decl);
15111 DECL_CONTEXT (decl) = current_function_decl;
15112 cp_check_omp_declare_reduction (decl);
15113 }
15114 else
15115 {
15116 int const_init = false;
15117 maybe_push_decl (decl);
15118 if (VAR_P (decl)
15119 && DECL_PRETTY_FUNCTION_P (decl))
15120 {
15121 /* For __PRETTY_FUNCTION__ we have to adjust the
15122 initializer. */
15123 const char *const name
15124 = cxx_printable_name (current_function_decl, 2);
15125 init = cp_fname_init (name, &TREE_TYPE (decl));
15126 }
15127 else
15128 init = tsubst_init (init, decl, args, complain, in_decl);
15129
15130 if (VAR_P (decl))
15131 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15132 (pattern_decl));
15133 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15134 }
15135 }
15136 }
15137
15138 break;
15139 }
15140
15141 case FOR_STMT:
15142 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15143 RECUR (FOR_INIT_STMT (t));
15144 finish_for_init_stmt (stmt);
15145 tmp = RECUR (FOR_COND (t));
15146 finish_for_cond (tmp, stmt, false);
15147 tmp = RECUR (FOR_EXPR (t));
15148 finish_for_expr (tmp, stmt);
15149 RECUR (FOR_BODY (t));
15150 finish_for_stmt (stmt);
15151 break;
15152
15153 case RANGE_FOR_STMT:
15154 {
15155 tree decl, expr;
15156 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15157 decl = RANGE_FOR_DECL (t);
15158 decl = tsubst (decl, args, complain, in_decl);
15159 maybe_push_decl (decl);
15160 expr = RECUR (RANGE_FOR_EXPR (t));
15161 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15162 RECUR (RANGE_FOR_BODY (t));
15163 finish_for_stmt (stmt);
15164 }
15165 break;
15166
15167 case WHILE_STMT:
15168 stmt = begin_while_stmt ();
15169 tmp = RECUR (WHILE_COND (t));
15170 finish_while_stmt_cond (tmp, stmt, false);
15171 RECUR (WHILE_BODY (t));
15172 finish_while_stmt (stmt);
15173 break;
15174
15175 case DO_STMT:
15176 stmt = begin_do_stmt ();
15177 RECUR (DO_BODY (t));
15178 finish_do_body (stmt);
15179 tmp = RECUR (DO_COND (t));
15180 finish_do_stmt (tmp, stmt, false);
15181 break;
15182
15183 case IF_STMT:
15184 stmt = begin_if_stmt ();
15185 tmp = RECUR (IF_COND (t));
15186 finish_if_stmt_cond (tmp, stmt);
15187 RECUR (THEN_CLAUSE (t));
15188 finish_then_clause (stmt);
15189
15190 if (ELSE_CLAUSE (t))
15191 {
15192 begin_else_clause (stmt);
15193 RECUR (ELSE_CLAUSE (t));
15194 finish_else_clause (stmt);
15195 }
15196
15197 finish_if_stmt (stmt);
15198 break;
15199
15200 case BIND_EXPR:
15201 if (BIND_EXPR_BODY_BLOCK (t))
15202 stmt = begin_function_body ();
15203 else
15204 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15205 ? BCS_TRY_BLOCK : 0);
15206
15207 RECUR (BIND_EXPR_BODY (t));
15208
15209 if (BIND_EXPR_BODY_BLOCK (t))
15210 finish_function_body (stmt);
15211 else
15212 finish_compound_stmt (stmt);
15213 break;
15214
15215 case BREAK_STMT:
15216 finish_break_stmt ();
15217 break;
15218
15219 case CONTINUE_STMT:
15220 finish_continue_stmt ();
15221 break;
15222
15223 case SWITCH_STMT:
15224 stmt = begin_switch_stmt ();
15225 tmp = RECUR (SWITCH_STMT_COND (t));
15226 finish_switch_cond (tmp, stmt);
15227 RECUR (SWITCH_STMT_BODY (t));
15228 finish_switch_stmt (stmt);
15229 break;
15230
15231 case CASE_LABEL_EXPR:
15232 {
15233 tree low = RECUR (CASE_LOW (t));
15234 tree high = RECUR (CASE_HIGH (t));
15235 finish_case_label (EXPR_LOCATION (t), low, high);
15236 }
15237 break;
15238
15239 case LABEL_EXPR:
15240 {
15241 tree decl = LABEL_EXPR_LABEL (t);
15242 tree label;
15243
15244 label = finish_label_stmt (DECL_NAME (decl));
15245 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15246 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15247 }
15248 break;
15249
15250 case GOTO_EXPR:
15251 tmp = GOTO_DESTINATION (t);
15252 if (TREE_CODE (tmp) != LABEL_DECL)
15253 /* Computed goto's must be tsubst'd into. On the other hand,
15254 non-computed gotos must not be; the identifier in question
15255 will have no binding. */
15256 tmp = RECUR (tmp);
15257 else
15258 tmp = DECL_NAME (tmp);
15259 finish_goto_stmt (tmp);
15260 break;
15261
15262 case ASM_EXPR:
15263 {
15264 tree string = RECUR (ASM_STRING (t));
15265 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15266 complain, in_decl);
15267 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15268 complain, in_decl);
15269 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15270 complain, in_decl);
15271 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15272 complain, in_decl);
15273 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15274 clobbers, labels);
15275 tree asm_expr = tmp;
15276 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15277 asm_expr = TREE_OPERAND (asm_expr, 0);
15278 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15279 }
15280 break;
15281
15282 case TRY_BLOCK:
15283 if (CLEANUP_P (t))
15284 {
15285 stmt = begin_try_block ();
15286 RECUR (TRY_STMTS (t));
15287 finish_cleanup_try_block (stmt);
15288 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15289 }
15290 else
15291 {
15292 tree compound_stmt = NULL_TREE;
15293
15294 if (FN_TRY_BLOCK_P (t))
15295 stmt = begin_function_try_block (&compound_stmt);
15296 else
15297 stmt = begin_try_block ();
15298
15299 RECUR (TRY_STMTS (t));
15300
15301 if (FN_TRY_BLOCK_P (t))
15302 finish_function_try_block (stmt);
15303 else
15304 finish_try_block (stmt);
15305
15306 RECUR (TRY_HANDLERS (t));
15307 if (FN_TRY_BLOCK_P (t))
15308 finish_function_handler_sequence (stmt, compound_stmt);
15309 else
15310 finish_handler_sequence (stmt);
15311 }
15312 break;
15313
15314 case HANDLER:
15315 {
15316 tree decl = HANDLER_PARMS (t);
15317
15318 if (decl)
15319 {
15320 decl = tsubst (decl, args, complain, in_decl);
15321 /* Prevent instantiate_decl from trying to instantiate
15322 this variable. We've already done all that needs to be
15323 done. */
15324 if (decl != error_mark_node)
15325 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15326 }
15327 stmt = begin_handler ();
15328 finish_handler_parms (decl, stmt);
15329 RECUR (HANDLER_BODY (t));
15330 finish_handler (stmt);
15331 }
15332 break;
15333
15334 case TAG_DEFN:
15335 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15336 if (CLASS_TYPE_P (tmp))
15337 {
15338 /* Local classes are not independent templates; they are
15339 instantiated along with their containing function. And this
15340 way we don't have to deal with pushing out of one local class
15341 to instantiate a member of another local class. */
15342 tree fn;
15343 /* Closures are handled by the LAMBDA_EXPR. */
15344 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15345 complete_type (tmp);
15346 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15347 if (!DECL_ARTIFICIAL (fn))
15348 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15349 }
15350 break;
15351
15352 case STATIC_ASSERT:
15353 {
15354 tree condition;
15355
15356 ++c_inhibit_evaluation_warnings;
15357 condition =
15358 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15359 args,
15360 complain, in_decl,
15361 /*integral_constant_expression_p=*/true);
15362 --c_inhibit_evaluation_warnings;
15363
15364 finish_static_assert (condition,
15365 STATIC_ASSERT_MESSAGE (t),
15366 STATIC_ASSERT_SOURCE_LOCATION (t),
15367 /*member_p=*/false);
15368 }
15369 break;
15370
15371 case OACC_KERNELS:
15372 case OACC_PARALLEL:
15373 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, false, args, complain,
15374 in_decl);
15375 stmt = begin_omp_parallel ();
15376 RECUR (OMP_BODY (t));
15377 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15378 break;
15379
15380 case OMP_PARALLEL:
15381 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15382 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false, true,
15383 args, complain, in_decl);
15384 if (OMP_PARALLEL_COMBINED (t))
15385 omp_parallel_combined_clauses = &tmp;
15386 stmt = begin_omp_parallel ();
15387 RECUR (OMP_PARALLEL_BODY (t));
15388 gcc_assert (omp_parallel_combined_clauses == NULL);
15389 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15390 = OMP_PARALLEL_COMBINED (t);
15391 pop_omp_privatization_clauses (r);
15392 break;
15393
15394 case OMP_TASK:
15395 r = push_omp_privatization_clauses (false);
15396 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false, true,
15397 args, complain, in_decl);
15398 stmt = begin_omp_task ();
15399 RECUR (OMP_TASK_BODY (t));
15400 finish_omp_task (tmp, stmt);
15401 pop_omp_privatization_clauses (r);
15402 break;
15403
15404 case OMP_FOR:
15405 case OMP_SIMD:
15406 case CILK_SIMD:
15407 case CILK_FOR:
15408 case OMP_DISTRIBUTE:
15409 case OMP_TASKLOOP:
15410 case OACC_LOOP:
15411 {
15412 tree clauses, body, pre_body;
15413 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15414 tree orig_declv = NULL_TREE;
15415 tree incrv = NULL_TREE;
15416 int i;
15417
15418 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15419 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
15420 TREE_CODE (t) != OACC_LOOP,
15421 args, complain, in_decl);
15422 if (OMP_FOR_INIT (t) != NULL_TREE)
15423 {
15424 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15425 if (OMP_FOR_ORIG_DECLS (t))
15426 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15427 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15428 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15429 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15430 }
15431
15432 stmt = begin_omp_structured_block ();
15433
15434 pre_body = push_stmt_list ();
15435 RECUR (OMP_FOR_PRE_BODY (t));
15436 pre_body = pop_stmt_list (pre_body);
15437
15438 if (OMP_FOR_INIT (t) != NULL_TREE)
15439 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15440 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15441 incrv, &clauses, args, complain, in_decl,
15442 integral_constant_expression_p);
15443 omp_parallel_combined_clauses = NULL;
15444
15445 body = push_stmt_list ();
15446 RECUR (OMP_FOR_BODY (t));
15447 body = pop_stmt_list (body);
15448
15449 if (OMP_FOR_INIT (t) != NULL_TREE)
15450 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15451 orig_declv, initv, condv, incrv, body, pre_body,
15452 NULL, clauses);
15453 else
15454 {
15455 t = make_node (TREE_CODE (t));
15456 TREE_TYPE (t) = void_type_node;
15457 OMP_FOR_BODY (t) = body;
15458 OMP_FOR_PRE_BODY (t) = pre_body;
15459 OMP_FOR_CLAUSES (t) = clauses;
15460 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15461 add_stmt (t);
15462 }
15463
15464 add_stmt (finish_omp_structured_block (stmt));
15465 pop_omp_privatization_clauses (r);
15466 }
15467 break;
15468
15469 case OMP_SECTIONS:
15470 omp_parallel_combined_clauses = NULL;
15471 /* FALLTHRU */
15472 case OMP_SINGLE:
15473 case OMP_TEAMS:
15474 case OMP_CRITICAL:
15475 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15476 && OMP_TEAMS_COMBINED (t));
15477 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15478 args, complain, in_decl);
15479 stmt = push_stmt_list ();
15480 RECUR (OMP_BODY (t));
15481 stmt = pop_stmt_list (stmt);
15482
15483 t = copy_node (t);
15484 OMP_BODY (t) = stmt;
15485 OMP_CLAUSES (t) = tmp;
15486 add_stmt (t);
15487 pop_omp_privatization_clauses (r);
15488 break;
15489
15490 case OACC_DATA:
15491 case OMP_TARGET_DATA:
15492 case OMP_TARGET:
15493 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15494 TREE_CODE (t) != OACC_DATA,
15495 args, complain, in_decl);
15496 keep_next_level (true);
15497 stmt = begin_omp_structured_block ();
15498
15499 RECUR (OMP_BODY (t));
15500 stmt = finish_omp_structured_block (stmt);
15501
15502 t = copy_node (t);
15503 OMP_BODY (t) = stmt;
15504 OMP_CLAUSES (t) = tmp;
15505 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15506 {
15507 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15508 if (teams)
15509 {
15510 /* For combined target teams, ensure the num_teams and
15511 thread_limit clause expressions are evaluated on the host,
15512 before entering the target construct. */
15513 tree c;
15514 for (c = OMP_TEAMS_CLAUSES (teams);
15515 c; c = OMP_CLAUSE_CHAIN (c))
15516 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15517 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15518 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15519 {
15520 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15521 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15522 if (expr == error_mark_node)
15523 continue;
15524 tmp = TARGET_EXPR_SLOT (expr);
15525 add_stmt (expr);
15526 OMP_CLAUSE_OPERAND (c, 0) = expr;
15527 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15528 OMP_CLAUSE_FIRSTPRIVATE);
15529 OMP_CLAUSE_DECL (tc) = tmp;
15530 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15531 OMP_TARGET_CLAUSES (t) = tc;
15532 }
15533 }
15534 }
15535 add_stmt (t);
15536 break;
15537
15538 case OACC_DECLARE:
15539 t = copy_node (t);
15540 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), false, false,
15541 args, complain, in_decl);
15542 OACC_DECLARE_CLAUSES (t) = tmp;
15543 add_stmt (t);
15544 break;
15545
15546 case OMP_TARGET_UPDATE:
15547 case OMP_TARGET_ENTER_DATA:
15548 case OMP_TARGET_EXIT_DATA:
15549 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, true,
15550 args, complain, in_decl);
15551 t = copy_node (t);
15552 OMP_STANDALONE_CLAUSES (t) = tmp;
15553 add_stmt (t);
15554 break;
15555
15556 case OACC_ENTER_DATA:
15557 case OACC_EXIT_DATA:
15558 case OACC_UPDATE:
15559 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, false,
15560 args, complain, in_decl);
15561 t = copy_node (t);
15562 OMP_STANDALONE_CLAUSES (t) = tmp;
15563 add_stmt (t);
15564 break;
15565
15566 case OMP_ORDERED:
15567 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), false, true,
15568 args, complain, in_decl);
15569 stmt = push_stmt_list ();
15570 RECUR (OMP_BODY (t));
15571 stmt = pop_stmt_list (stmt);
15572
15573 t = copy_node (t);
15574 OMP_BODY (t) = stmt;
15575 OMP_ORDERED_CLAUSES (t) = tmp;
15576 add_stmt (t);
15577 break;
15578
15579 case OMP_SECTION:
15580 case OMP_MASTER:
15581 case OMP_TASKGROUP:
15582 stmt = push_stmt_list ();
15583 RECUR (OMP_BODY (t));
15584 stmt = pop_stmt_list (stmt);
15585
15586 t = copy_node (t);
15587 OMP_BODY (t) = stmt;
15588 add_stmt (t);
15589 break;
15590
15591 case OMP_ATOMIC:
15592 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15593 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15594 {
15595 tree op1 = TREE_OPERAND (t, 1);
15596 tree rhs1 = NULL_TREE;
15597 tree lhs, rhs;
15598 if (TREE_CODE (op1) == COMPOUND_EXPR)
15599 {
15600 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15601 op1 = TREE_OPERAND (op1, 1);
15602 }
15603 lhs = RECUR (TREE_OPERAND (op1, 0));
15604 rhs = RECUR (TREE_OPERAND (op1, 1));
15605 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15606 NULL_TREE, NULL_TREE, rhs1,
15607 OMP_ATOMIC_SEQ_CST (t));
15608 }
15609 else
15610 {
15611 tree op1 = TREE_OPERAND (t, 1);
15612 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15613 tree rhs1 = NULL_TREE;
15614 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15615 enum tree_code opcode = NOP_EXPR;
15616 if (code == OMP_ATOMIC_READ)
15617 {
15618 v = RECUR (TREE_OPERAND (op1, 0));
15619 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15620 }
15621 else if (code == OMP_ATOMIC_CAPTURE_OLD
15622 || code == OMP_ATOMIC_CAPTURE_NEW)
15623 {
15624 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15625 v = RECUR (TREE_OPERAND (op1, 0));
15626 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15627 if (TREE_CODE (op11) == COMPOUND_EXPR)
15628 {
15629 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15630 op11 = TREE_OPERAND (op11, 1);
15631 }
15632 lhs = RECUR (TREE_OPERAND (op11, 0));
15633 rhs = RECUR (TREE_OPERAND (op11, 1));
15634 opcode = TREE_CODE (op11);
15635 if (opcode == MODIFY_EXPR)
15636 opcode = NOP_EXPR;
15637 }
15638 else
15639 {
15640 code = OMP_ATOMIC;
15641 lhs = RECUR (TREE_OPERAND (op1, 0));
15642 rhs = RECUR (TREE_OPERAND (op1, 1));
15643 }
15644 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15645 OMP_ATOMIC_SEQ_CST (t));
15646 }
15647 break;
15648
15649 case TRANSACTION_EXPR:
15650 {
15651 int flags = 0;
15652 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15653 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15654
15655 if (TRANSACTION_EXPR_IS_STMT (t))
15656 {
15657 tree body = TRANSACTION_EXPR_BODY (t);
15658 tree noex = NULL_TREE;
15659 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15660 {
15661 noex = MUST_NOT_THROW_COND (body);
15662 if (noex == NULL_TREE)
15663 noex = boolean_true_node;
15664 body = TREE_OPERAND (body, 0);
15665 }
15666 stmt = begin_transaction_stmt (input_location, NULL, flags);
15667 RECUR (body);
15668 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15669 }
15670 else
15671 {
15672 stmt = build_transaction_expr (EXPR_LOCATION (t),
15673 RECUR (TRANSACTION_EXPR_BODY (t)),
15674 flags, NULL_TREE);
15675 RETURN (stmt);
15676 }
15677 }
15678 break;
15679
15680 case MUST_NOT_THROW_EXPR:
15681 {
15682 tree op0 = RECUR (TREE_OPERAND (t, 0));
15683 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15684 RETURN (build_must_not_throw_expr (op0, cond));
15685 }
15686
15687 case EXPR_PACK_EXPANSION:
15688 error ("invalid use of pack expansion expression");
15689 RETURN (error_mark_node);
15690
15691 case NONTYPE_ARGUMENT_PACK:
15692 error ("use %<...%> to expand argument pack");
15693 RETURN (error_mark_node);
15694
15695 case CILK_SPAWN_STMT:
15696 cfun->calls_cilk_spawn = 1;
15697 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15698
15699 case CILK_SYNC_STMT:
15700 RETURN (build_cilk_sync ());
15701
15702 case COMPOUND_EXPR:
15703 tmp = RECUR (TREE_OPERAND (t, 0));
15704 if (tmp == NULL_TREE)
15705 /* If the first operand was a statement, we're done with it. */
15706 RETURN (RECUR (TREE_OPERAND (t, 1)));
15707 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15708 RECUR (TREE_OPERAND (t, 1)),
15709 complain));
15710
15711 case ANNOTATE_EXPR:
15712 tmp = RECUR (TREE_OPERAND (t, 0));
15713 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15714 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15715
15716 default:
15717 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15718
15719 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15720 /*function_p=*/false,
15721 integral_constant_expression_p));
15722 }
15723
15724 RETURN (NULL_TREE);
15725 out:
15726 input_location = loc;
15727 return r;
15728 #undef RECUR
15729 #undef RETURN
15730 }
15731
15732 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15733 function. For description of the body see comment above
15734 cp_parser_omp_declare_reduction_exprs. */
15735
15736 static void
15737 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15738 {
15739 if (t == NULL_TREE || t == error_mark_node)
15740 return;
15741
15742 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15743
15744 tree_stmt_iterator tsi;
15745 int i;
15746 tree stmts[7];
15747 memset (stmts, 0, sizeof stmts);
15748 for (i = 0, tsi = tsi_start (t);
15749 i < 7 && !tsi_end_p (tsi);
15750 i++, tsi_next (&tsi))
15751 stmts[i] = tsi_stmt (tsi);
15752 gcc_assert (tsi_end_p (tsi));
15753
15754 if (i >= 3)
15755 {
15756 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15757 && TREE_CODE (stmts[1]) == DECL_EXPR);
15758 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15759 args, complain, in_decl);
15760 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15761 args, complain, in_decl);
15762 DECL_CONTEXT (omp_out) = current_function_decl;
15763 DECL_CONTEXT (omp_in) = current_function_decl;
15764 keep_next_level (true);
15765 tree block = begin_omp_structured_block ();
15766 tsubst_expr (stmts[2], args, complain, in_decl, false);
15767 block = finish_omp_structured_block (block);
15768 block = maybe_cleanup_point_expr_void (block);
15769 add_decl_expr (omp_out);
15770 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15771 TREE_NO_WARNING (omp_out) = 1;
15772 add_decl_expr (omp_in);
15773 finish_expr_stmt (block);
15774 }
15775 if (i >= 6)
15776 {
15777 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15778 && TREE_CODE (stmts[4]) == DECL_EXPR);
15779 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15780 args, complain, in_decl);
15781 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15782 args, complain, in_decl);
15783 DECL_CONTEXT (omp_priv) = current_function_decl;
15784 DECL_CONTEXT (omp_orig) = current_function_decl;
15785 keep_next_level (true);
15786 tree block = begin_omp_structured_block ();
15787 tsubst_expr (stmts[5], args, complain, in_decl, false);
15788 block = finish_omp_structured_block (block);
15789 block = maybe_cleanup_point_expr_void (block);
15790 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15791 add_decl_expr (omp_priv);
15792 add_decl_expr (omp_orig);
15793 finish_expr_stmt (block);
15794 if (i == 7)
15795 add_decl_expr (omp_orig);
15796 }
15797 }
15798
15799 /* T is a postfix-expression that is not being used in a function
15800 call. Return the substituted version of T. */
15801
15802 static tree
15803 tsubst_non_call_postfix_expression (tree t, tree args,
15804 tsubst_flags_t complain,
15805 tree in_decl)
15806 {
15807 if (TREE_CODE (t) == SCOPE_REF)
15808 t = tsubst_qualified_id (t, args, complain, in_decl,
15809 /*done=*/false, /*address_p=*/false);
15810 else
15811 t = tsubst_copy_and_build (t, args, complain, in_decl,
15812 /*function_p=*/false,
15813 /*integral_constant_expression_p=*/false);
15814
15815 return t;
15816 }
15817
15818 /* Like tsubst but deals with expressions and performs semantic
15819 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15820
15821 tree
15822 tsubst_copy_and_build (tree t,
15823 tree args,
15824 tsubst_flags_t complain,
15825 tree in_decl,
15826 bool function_p,
15827 bool integral_constant_expression_p)
15828 {
15829 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15830 #define RECUR(NODE) \
15831 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15832 /*function_p=*/false, \
15833 integral_constant_expression_p)
15834
15835 tree retval, op1;
15836 location_t loc;
15837
15838 if (t == NULL_TREE || t == error_mark_node)
15839 return t;
15840
15841 loc = input_location;
15842 if (EXPR_HAS_LOCATION (t))
15843 input_location = EXPR_LOCATION (t);
15844
15845 /* N3276 decltype magic only applies to calls at the top level or on the
15846 right side of a comma. */
15847 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15848 complain &= ~tf_decltype;
15849
15850 switch (TREE_CODE (t))
15851 {
15852 case USING_DECL:
15853 t = DECL_NAME (t);
15854 /* Fall through. */
15855 case IDENTIFIER_NODE:
15856 {
15857 tree decl;
15858 cp_id_kind idk;
15859 bool non_integral_constant_expression_p;
15860 const char *error_msg;
15861
15862 if (IDENTIFIER_TYPENAME_P (t))
15863 {
15864 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15865 t = mangle_conv_op_name_for_type (new_type);
15866 }
15867
15868 /* Look up the name. */
15869 decl = lookup_name (t);
15870
15871 /* By convention, expressions use ERROR_MARK_NODE to indicate
15872 failure, not NULL_TREE. */
15873 if (decl == NULL_TREE)
15874 decl = error_mark_node;
15875
15876 decl = finish_id_expression (t, decl, NULL_TREE,
15877 &idk,
15878 integral_constant_expression_p,
15879 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15880 &non_integral_constant_expression_p,
15881 /*template_p=*/false,
15882 /*done=*/true,
15883 /*address_p=*/false,
15884 /*template_arg_p=*/false,
15885 &error_msg,
15886 input_location);
15887 if (error_msg)
15888 error (error_msg);
15889 if (!function_p && identifier_p (decl))
15890 {
15891 if (complain & tf_error)
15892 unqualified_name_lookup_error (decl);
15893 decl = error_mark_node;
15894 }
15895 RETURN (decl);
15896 }
15897
15898 case TEMPLATE_ID_EXPR:
15899 {
15900 tree object;
15901 tree templ = RECUR (TREE_OPERAND (t, 0));
15902 tree targs = TREE_OPERAND (t, 1);
15903
15904 if (targs)
15905 targs = tsubst_template_args (targs, args, complain, in_decl);
15906 if (targs == error_mark_node)
15907 return error_mark_node;
15908
15909 if (variable_template_p (templ))
15910 {
15911 templ = lookup_template_variable (templ, targs);
15912 if (!any_dependent_template_arguments_p (targs))
15913 {
15914 templ = finish_template_variable (templ, complain);
15915 mark_used (templ);
15916 }
15917 RETURN (convert_from_reference (templ));
15918 }
15919
15920 if (TREE_CODE (templ) == COMPONENT_REF)
15921 {
15922 object = TREE_OPERAND (templ, 0);
15923 templ = TREE_OPERAND (templ, 1);
15924 }
15925 else
15926 object = NULL_TREE;
15927 templ = lookup_template_function (templ, targs);
15928
15929 if (object)
15930 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
15931 object, templ, NULL_TREE));
15932 else
15933 RETURN (baselink_for_fns (templ));
15934 }
15935
15936 case INDIRECT_REF:
15937 {
15938 tree r = RECUR (TREE_OPERAND (t, 0));
15939
15940 if (REFERENCE_REF_P (t))
15941 {
15942 /* A type conversion to reference type will be enclosed in
15943 such an indirect ref, but the substitution of the cast
15944 will have also added such an indirect ref. */
15945 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
15946 r = convert_from_reference (r);
15947 }
15948 else
15949 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
15950 complain|decltype_flag);
15951 RETURN (r);
15952 }
15953
15954 case NOP_EXPR:
15955 {
15956 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15957 tree op0 = RECUR (TREE_OPERAND (t, 0));
15958 RETURN (build_nop (type, op0));
15959 }
15960
15961 case IMPLICIT_CONV_EXPR:
15962 {
15963 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15964 tree expr = RECUR (TREE_OPERAND (t, 0));
15965 int flags = LOOKUP_IMPLICIT;
15966 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
15967 flags = LOOKUP_NORMAL;
15968 RETURN (perform_implicit_conversion_flags (type, expr, complain,
15969 flags));
15970 }
15971
15972 case CONVERT_EXPR:
15973 {
15974 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15975 tree op0 = RECUR (TREE_OPERAND (t, 0));
15976 RETURN (build1 (CONVERT_EXPR, type, op0));
15977 }
15978
15979 case CAST_EXPR:
15980 case REINTERPRET_CAST_EXPR:
15981 case CONST_CAST_EXPR:
15982 case DYNAMIC_CAST_EXPR:
15983 case STATIC_CAST_EXPR:
15984 {
15985 tree type;
15986 tree op, r = NULL_TREE;
15987
15988 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15989 if (integral_constant_expression_p
15990 && !cast_valid_in_integral_constant_expression_p (type))
15991 {
15992 if (complain & tf_error)
15993 error ("a cast to a type other than an integral or "
15994 "enumeration type cannot appear in a constant-expression");
15995 RETURN (error_mark_node);
15996 }
15997
15998 op = RECUR (TREE_OPERAND (t, 0));
15999
16000 warning_sentinel s(warn_useless_cast);
16001 switch (TREE_CODE (t))
16002 {
16003 case CAST_EXPR:
16004 r = build_functional_cast (type, op, complain);
16005 break;
16006 case REINTERPRET_CAST_EXPR:
16007 r = build_reinterpret_cast (type, op, complain);
16008 break;
16009 case CONST_CAST_EXPR:
16010 r = build_const_cast (type, op, complain);
16011 break;
16012 case DYNAMIC_CAST_EXPR:
16013 r = build_dynamic_cast (type, op, complain);
16014 break;
16015 case STATIC_CAST_EXPR:
16016 r = build_static_cast (type, op, complain);
16017 break;
16018 default:
16019 gcc_unreachable ();
16020 }
16021
16022 RETURN (r);
16023 }
16024
16025 case POSTDECREMENT_EXPR:
16026 case POSTINCREMENT_EXPR:
16027 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16028 args, complain, in_decl);
16029 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16030 complain|decltype_flag));
16031
16032 case PREDECREMENT_EXPR:
16033 case PREINCREMENT_EXPR:
16034 case NEGATE_EXPR:
16035 case BIT_NOT_EXPR:
16036 case ABS_EXPR:
16037 case TRUTH_NOT_EXPR:
16038 case UNARY_PLUS_EXPR: /* Unary + */
16039 case REALPART_EXPR:
16040 case IMAGPART_EXPR:
16041 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16042 RECUR (TREE_OPERAND (t, 0)),
16043 complain|decltype_flag));
16044
16045 case FIX_TRUNC_EXPR:
16046 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16047 0, complain));
16048
16049 case ADDR_EXPR:
16050 op1 = TREE_OPERAND (t, 0);
16051 if (TREE_CODE (op1) == LABEL_DECL)
16052 RETURN (finish_label_address_expr (DECL_NAME (op1),
16053 EXPR_LOCATION (op1)));
16054 if (TREE_CODE (op1) == SCOPE_REF)
16055 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16056 /*done=*/true, /*address_p=*/true);
16057 else
16058 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16059 in_decl);
16060 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16061 complain|decltype_flag));
16062
16063 case PLUS_EXPR:
16064 case MINUS_EXPR:
16065 case MULT_EXPR:
16066 case TRUNC_DIV_EXPR:
16067 case CEIL_DIV_EXPR:
16068 case FLOOR_DIV_EXPR:
16069 case ROUND_DIV_EXPR:
16070 case EXACT_DIV_EXPR:
16071 case BIT_AND_EXPR:
16072 case BIT_IOR_EXPR:
16073 case BIT_XOR_EXPR:
16074 case TRUNC_MOD_EXPR:
16075 case FLOOR_MOD_EXPR:
16076 case TRUTH_ANDIF_EXPR:
16077 case TRUTH_ORIF_EXPR:
16078 case TRUTH_AND_EXPR:
16079 case TRUTH_OR_EXPR:
16080 case RSHIFT_EXPR:
16081 case LSHIFT_EXPR:
16082 case RROTATE_EXPR:
16083 case LROTATE_EXPR:
16084 case EQ_EXPR:
16085 case NE_EXPR:
16086 case MAX_EXPR:
16087 case MIN_EXPR:
16088 case LE_EXPR:
16089 case GE_EXPR:
16090 case LT_EXPR:
16091 case GT_EXPR:
16092 case MEMBER_REF:
16093 case DOTSTAR_EXPR:
16094 {
16095 warning_sentinel s1(warn_type_limits);
16096 warning_sentinel s2(warn_div_by_zero);
16097 warning_sentinel s3(warn_logical_op);
16098 warning_sentinel s4(warn_tautological_compare);
16099 tree op0 = RECUR (TREE_OPERAND (t, 0));
16100 tree op1 = RECUR (TREE_OPERAND (t, 1));
16101 tree r = build_x_binary_op
16102 (input_location, TREE_CODE (t),
16103 op0,
16104 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16105 ? ERROR_MARK
16106 : TREE_CODE (TREE_OPERAND (t, 0))),
16107 op1,
16108 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16109 ? ERROR_MARK
16110 : TREE_CODE (TREE_OPERAND (t, 1))),
16111 /*overload=*/NULL,
16112 complain|decltype_flag);
16113 if (EXPR_P (r) && TREE_NO_WARNING (t))
16114 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16115
16116 RETURN (r);
16117 }
16118
16119 case POINTER_PLUS_EXPR:
16120 {
16121 tree op0 = RECUR (TREE_OPERAND (t, 0));
16122 tree op1 = RECUR (TREE_OPERAND (t, 1));
16123 return fold_build_pointer_plus (op0, op1);
16124 }
16125
16126 case SCOPE_REF:
16127 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16128 /*address_p=*/false));
16129 case ARRAY_REF:
16130 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16131 args, complain, in_decl);
16132 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16133 RECUR (TREE_OPERAND (t, 1)),
16134 complain|decltype_flag));
16135
16136 case ARRAY_NOTATION_REF:
16137 {
16138 tree start_index, length, stride;
16139 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16140 args, complain, in_decl);
16141 start_index = RECUR (ARRAY_NOTATION_START (t));
16142 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16143 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16144 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16145 length, stride, TREE_TYPE (op1)));
16146 }
16147 case SIZEOF_EXPR:
16148 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
16149 RETURN (tsubst_copy (t, args, complain, in_decl));
16150 /* Fall through */
16151
16152 case ALIGNOF_EXPR:
16153 {
16154 tree r;
16155
16156 op1 = TREE_OPERAND (t, 0);
16157 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16158 op1 = TREE_TYPE (op1);
16159 if (!args)
16160 {
16161 /* When there are no ARGS, we are trying to evaluate a
16162 non-dependent expression from the parser. Trying to do
16163 the substitutions may not work. */
16164 if (!TYPE_P (op1))
16165 op1 = TREE_TYPE (op1);
16166 }
16167 else
16168 {
16169 ++cp_unevaluated_operand;
16170 ++c_inhibit_evaluation_warnings;
16171 if (TYPE_P (op1))
16172 op1 = tsubst (op1, args, complain, in_decl);
16173 else
16174 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16175 /*function_p=*/false,
16176 /*integral_constant_expression_p=*/
16177 false);
16178 --cp_unevaluated_operand;
16179 --c_inhibit_evaluation_warnings;
16180 }
16181 if (TYPE_P (op1))
16182 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16183 complain & tf_error);
16184 else
16185 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16186 complain & tf_error);
16187 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16188 {
16189 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16190 {
16191 if (!processing_template_decl && TYPE_P (op1))
16192 {
16193 r = build_min (SIZEOF_EXPR, size_type_node,
16194 build1 (NOP_EXPR, op1, error_mark_node));
16195 SIZEOF_EXPR_TYPE_P (r) = 1;
16196 }
16197 else
16198 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16199 TREE_SIDE_EFFECTS (r) = 0;
16200 TREE_READONLY (r) = 1;
16201 }
16202 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16203 }
16204 RETURN (r);
16205 }
16206
16207 case AT_ENCODE_EXPR:
16208 {
16209 op1 = TREE_OPERAND (t, 0);
16210 ++cp_unevaluated_operand;
16211 ++c_inhibit_evaluation_warnings;
16212 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16213 /*function_p=*/false,
16214 /*integral_constant_expression_p=*/false);
16215 --cp_unevaluated_operand;
16216 --c_inhibit_evaluation_warnings;
16217 RETURN (objc_build_encode_expr (op1));
16218 }
16219
16220 case NOEXCEPT_EXPR:
16221 op1 = TREE_OPERAND (t, 0);
16222 ++cp_unevaluated_operand;
16223 ++c_inhibit_evaluation_warnings;
16224 ++cp_noexcept_operand;
16225 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16226 /*function_p=*/false,
16227 /*integral_constant_expression_p=*/false);
16228 --cp_unevaluated_operand;
16229 --c_inhibit_evaluation_warnings;
16230 --cp_noexcept_operand;
16231 RETURN (finish_noexcept_expr (op1, complain));
16232
16233 case MODOP_EXPR:
16234 {
16235 warning_sentinel s(warn_div_by_zero);
16236 tree lhs = RECUR (TREE_OPERAND (t, 0));
16237 tree rhs = RECUR (TREE_OPERAND (t, 2));
16238 tree r = build_x_modify_expr
16239 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16240 complain|decltype_flag);
16241 /* TREE_NO_WARNING must be set if either the expression was
16242 parenthesized or it uses an operator such as >>= rather
16243 than plain assignment. In the former case, it was already
16244 set and must be copied. In the latter case,
16245 build_x_modify_expr sets it and it must not be reset
16246 here. */
16247 if (TREE_NO_WARNING (t))
16248 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16249
16250 RETURN (r);
16251 }
16252
16253 case ARROW_EXPR:
16254 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16255 args, complain, in_decl);
16256 /* Remember that there was a reference to this entity. */
16257 if (DECL_P (op1)
16258 && !mark_used (op1, complain) && !(complain & tf_error))
16259 RETURN (error_mark_node);
16260 RETURN (build_x_arrow (input_location, op1, complain));
16261
16262 case NEW_EXPR:
16263 {
16264 tree placement = RECUR (TREE_OPERAND (t, 0));
16265 tree init = RECUR (TREE_OPERAND (t, 3));
16266 vec<tree, va_gc> *placement_vec;
16267 vec<tree, va_gc> *init_vec;
16268 tree ret;
16269
16270 if (placement == NULL_TREE)
16271 placement_vec = NULL;
16272 else
16273 {
16274 placement_vec = make_tree_vector ();
16275 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16276 vec_safe_push (placement_vec, TREE_VALUE (placement));
16277 }
16278
16279 /* If there was an initializer in the original tree, but it
16280 instantiated to an empty list, then we should pass a
16281 non-NULL empty vector to tell build_new that it was an
16282 empty initializer() rather than no initializer. This can
16283 only happen when the initializer is a pack expansion whose
16284 parameter packs are of length zero. */
16285 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16286 init_vec = NULL;
16287 else
16288 {
16289 init_vec = make_tree_vector ();
16290 if (init == void_node)
16291 gcc_assert (init_vec != NULL);
16292 else
16293 {
16294 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16295 vec_safe_push (init_vec, TREE_VALUE (init));
16296 }
16297 }
16298
16299 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16300 tree op2 = RECUR (TREE_OPERAND (t, 2));
16301 ret = build_new (&placement_vec, op1, op2, &init_vec,
16302 NEW_EXPR_USE_GLOBAL (t),
16303 complain);
16304
16305 if (placement_vec != NULL)
16306 release_tree_vector (placement_vec);
16307 if (init_vec != NULL)
16308 release_tree_vector (init_vec);
16309
16310 RETURN (ret);
16311 }
16312
16313 case DELETE_EXPR:
16314 {
16315 tree op0 = RECUR (TREE_OPERAND (t, 0));
16316 tree op1 = RECUR (TREE_OPERAND (t, 1));
16317 RETURN (delete_sanity (op0, op1,
16318 DELETE_EXPR_USE_VEC (t),
16319 DELETE_EXPR_USE_GLOBAL (t),
16320 complain));
16321 }
16322
16323 case COMPOUND_EXPR:
16324 {
16325 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16326 complain & ~tf_decltype, in_decl,
16327 /*function_p=*/false,
16328 integral_constant_expression_p);
16329 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16330 op0,
16331 RECUR (TREE_OPERAND (t, 1)),
16332 complain|decltype_flag));
16333 }
16334
16335 case CALL_EXPR:
16336 {
16337 tree function;
16338 vec<tree, va_gc> *call_args;
16339 unsigned int nargs, i;
16340 bool qualified_p;
16341 bool koenig_p;
16342 tree ret;
16343
16344 function = CALL_EXPR_FN (t);
16345 /* When we parsed the expression, we determined whether or
16346 not Koenig lookup should be performed. */
16347 koenig_p = KOENIG_LOOKUP_P (t);
16348 if (TREE_CODE (function) == SCOPE_REF)
16349 {
16350 qualified_p = true;
16351 function = tsubst_qualified_id (function, args, complain, in_decl,
16352 /*done=*/false,
16353 /*address_p=*/false);
16354 }
16355 else if (koenig_p && identifier_p (function))
16356 {
16357 /* Do nothing; calling tsubst_copy_and_build on an identifier
16358 would incorrectly perform unqualified lookup again.
16359
16360 Note that we can also have an IDENTIFIER_NODE if the earlier
16361 unqualified lookup found a member function; in that case
16362 koenig_p will be false and we do want to do the lookup
16363 again to find the instantiated member function.
16364
16365 FIXME but doing that causes c++/15272, so we need to stop
16366 using IDENTIFIER_NODE in that situation. */
16367 qualified_p = false;
16368 }
16369 else
16370 {
16371 if (TREE_CODE (function) == COMPONENT_REF)
16372 {
16373 tree op = TREE_OPERAND (function, 1);
16374
16375 qualified_p = (TREE_CODE (op) == SCOPE_REF
16376 || (BASELINK_P (op)
16377 && BASELINK_QUALIFIED_P (op)));
16378 }
16379 else
16380 qualified_p = false;
16381
16382 if (TREE_CODE (function) == ADDR_EXPR
16383 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16384 /* Avoid error about taking the address of a constructor. */
16385 function = TREE_OPERAND (function, 0);
16386
16387 function = tsubst_copy_and_build (function, args, complain,
16388 in_decl,
16389 !qualified_p,
16390 integral_constant_expression_p);
16391
16392 if (BASELINK_P (function))
16393 qualified_p = true;
16394 }
16395
16396 nargs = call_expr_nargs (t);
16397 call_args = make_tree_vector ();
16398 for (i = 0; i < nargs; ++i)
16399 {
16400 tree arg = CALL_EXPR_ARG (t, i);
16401
16402 if (!PACK_EXPANSION_P (arg))
16403 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16404 else
16405 {
16406 /* Expand the pack expansion and push each entry onto
16407 CALL_ARGS. */
16408 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16409 if (TREE_CODE (arg) == TREE_VEC)
16410 {
16411 unsigned int len, j;
16412
16413 len = TREE_VEC_LENGTH (arg);
16414 for (j = 0; j < len; ++j)
16415 {
16416 tree value = TREE_VEC_ELT (arg, j);
16417 if (value != NULL_TREE)
16418 value = convert_from_reference (value);
16419 vec_safe_push (call_args, value);
16420 }
16421 }
16422 else
16423 {
16424 /* A partial substitution. Add one entry. */
16425 vec_safe_push (call_args, arg);
16426 }
16427 }
16428 }
16429
16430 /* We do not perform argument-dependent lookup if normal
16431 lookup finds a non-function, in accordance with the
16432 expected resolution of DR 218. */
16433 if (koenig_p
16434 && ((is_overloaded_fn (function)
16435 /* If lookup found a member function, the Koenig lookup is
16436 not appropriate, even if an unqualified-name was used
16437 to denote the function. */
16438 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16439 || identifier_p (function))
16440 /* Only do this when substitution turns a dependent call
16441 into a non-dependent call. */
16442 && type_dependent_expression_p_push (t)
16443 && !any_type_dependent_arguments_p (call_args))
16444 function = perform_koenig_lookup (function, call_args, tf_none);
16445
16446 if (identifier_p (function)
16447 && !any_type_dependent_arguments_p (call_args))
16448 {
16449 if (koenig_p && (complain & tf_warning_or_error))
16450 {
16451 /* For backwards compatibility and good diagnostics, try
16452 the unqualified lookup again if we aren't in SFINAE
16453 context. */
16454 tree unq = (tsubst_copy_and_build
16455 (function, args, complain, in_decl, true,
16456 integral_constant_expression_p));
16457 if (unq == error_mark_node)
16458 RETURN (error_mark_node);
16459
16460 if (unq != function)
16461 {
16462 tree fn = unq;
16463 if (INDIRECT_REF_P (fn))
16464 fn = TREE_OPERAND (fn, 0);
16465 if (TREE_CODE (fn) == COMPONENT_REF)
16466 fn = TREE_OPERAND (fn, 1);
16467 if (is_overloaded_fn (fn))
16468 fn = get_first_fn (fn);
16469 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16470 "%qD was not declared in this scope, "
16471 "and no declarations were found by "
16472 "argument-dependent lookup at the point "
16473 "of instantiation", function))
16474 {
16475 if (!DECL_P (fn))
16476 /* Can't say anything more. */;
16477 else if (DECL_CLASS_SCOPE_P (fn))
16478 {
16479 location_t loc = EXPR_LOC_OR_LOC (t,
16480 input_location);
16481 inform (loc,
16482 "declarations in dependent base %qT are "
16483 "not found by unqualified lookup",
16484 DECL_CLASS_CONTEXT (fn));
16485 if (current_class_ptr)
16486 inform (loc,
16487 "use %<this->%D%> instead", function);
16488 else
16489 inform (loc,
16490 "use %<%T::%D%> instead",
16491 current_class_name, function);
16492 }
16493 else
16494 inform (DECL_SOURCE_LOCATION (fn),
16495 "%qD declared here, later in the "
16496 "translation unit", fn);
16497 }
16498 function = unq;
16499 }
16500 }
16501 if (identifier_p (function))
16502 {
16503 if (complain & tf_error)
16504 unqualified_name_lookup_error (function);
16505 release_tree_vector (call_args);
16506 RETURN (error_mark_node);
16507 }
16508 }
16509
16510 /* Remember that there was a reference to this entity. */
16511 if (DECL_P (function)
16512 && !mark_used (function, complain) && !(complain & tf_error))
16513 RETURN (error_mark_node);
16514
16515 /* Put back tf_decltype for the actual call. */
16516 complain |= decltype_flag;
16517
16518 if (TREE_CODE (function) == OFFSET_REF)
16519 ret = build_offset_ref_call_from_tree (function, &call_args,
16520 complain);
16521 else if (TREE_CODE (function) == COMPONENT_REF)
16522 {
16523 tree instance = TREE_OPERAND (function, 0);
16524 tree fn = TREE_OPERAND (function, 1);
16525
16526 if (processing_template_decl
16527 && (type_dependent_expression_p (instance)
16528 || (!BASELINK_P (fn)
16529 && TREE_CODE (fn) != FIELD_DECL)
16530 || type_dependent_expression_p (fn)
16531 || any_type_dependent_arguments_p (call_args)))
16532 ret = build_nt_call_vec (function, call_args);
16533 else if (!BASELINK_P (fn))
16534 ret = finish_call_expr (function, &call_args,
16535 /*disallow_virtual=*/false,
16536 /*koenig_p=*/false,
16537 complain);
16538 else
16539 ret = (build_new_method_call
16540 (instance, fn,
16541 &call_args, NULL_TREE,
16542 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16543 /*fn_p=*/NULL,
16544 complain));
16545 }
16546 else
16547 ret = finish_call_expr (function, &call_args,
16548 /*disallow_virtual=*/qualified_p,
16549 koenig_p,
16550 complain);
16551
16552 release_tree_vector (call_args);
16553
16554 RETURN (ret);
16555 }
16556
16557 case COND_EXPR:
16558 {
16559 tree cond = RECUR (TREE_OPERAND (t, 0));
16560 tree folded_cond = fold_non_dependent_expr (cond);
16561 tree exp1, exp2;
16562
16563 if (TREE_CODE (folded_cond) == INTEGER_CST)
16564 {
16565 if (integer_zerop (folded_cond))
16566 {
16567 ++c_inhibit_evaluation_warnings;
16568 exp1 = RECUR (TREE_OPERAND (t, 1));
16569 --c_inhibit_evaluation_warnings;
16570 exp2 = RECUR (TREE_OPERAND (t, 2));
16571 }
16572 else
16573 {
16574 exp1 = RECUR (TREE_OPERAND (t, 1));
16575 ++c_inhibit_evaluation_warnings;
16576 exp2 = RECUR (TREE_OPERAND (t, 2));
16577 --c_inhibit_evaluation_warnings;
16578 }
16579 cond = folded_cond;
16580 }
16581 else
16582 {
16583 exp1 = RECUR (TREE_OPERAND (t, 1));
16584 exp2 = RECUR (TREE_OPERAND (t, 2));
16585 }
16586
16587 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16588 cond, exp1, exp2, complain));
16589 }
16590
16591 case PSEUDO_DTOR_EXPR:
16592 {
16593 tree op0 = RECUR (TREE_OPERAND (t, 0));
16594 tree op1 = RECUR (TREE_OPERAND (t, 1));
16595 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16596 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16597 input_location));
16598 }
16599
16600 case TREE_LIST:
16601 {
16602 tree purpose, value, chain;
16603
16604 if (t == void_list_node)
16605 RETURN (t);
16606
16607 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16608 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16609 {
16610 /* We have pack expansions, so expand those and
16611 create a new list out of it. */
16612 tree purposevec = NULL_TREE;
16613 tree valuevec = NULL_TREE;
16614 tree chain;
16615 int i, len = -1;
16616
16617 /* Expand the argument expressions. */
16618 if (TREE_PURPOSE (t))
16619 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16620 complain, in_decl);
16621 if (TREE_VALUE (t))
16622 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16623 complain, in_decl);
16624
16625 /* Build the rest of the list. */
16626 chain = TREE_CHAIN (t);
16627 if (chain && chain != void_type_node)
16628 chain = RECUR (chain);
16629
16630 /* Determine the number of arguments. */
16631 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16632 {
16633 len = TREE_VEC_LENGTH (purposevec);
16634 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16635 }
16636 else if (TREE_CODE (valuevec) == TREE_VEC)
16637 len = TREE_VEC_LENGTH (valuevec);
16638 else
16639 {
16640 /* Since we only performed a partial substitution into
16641 the argument pack, we only RETURN (a single list
16642 node. */
16643 if (purposevec == TREE_PURPOSE (t)
16644 && valuevec == TREE_VALUE (t)
16645 && chain == TREE_CHAIN (t))
16646 RETURN (t);
16647
16648 RETURN (tree_cons (purposevec, valuevec, chain));
16649 }
16650
16651 /* Convert the argument vectors into a TREE_LIST */
16652 i = len;
16653 while (i > 0)
16654 {
16655 /* Grab the Ith values. */
16656 i--;
16657 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16658 : NULL_TREE;
16659 value
16660 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16661 : NULL_TREE;
16662
16663 /* Build the list (backwards). */
16664 chain = tree_cons (purpose, value, chain);
16665 }
16666
16667 RETURN (chain);
16668 }
16669
16670 purpose = TREE_PURPOSE (t);
16671 if (purpose)
16672 purpose = RECUR (purpose);
16673 value = TREE_VALUE (t);
16674 if (value)
16675 value = RECUR (value);
16676 chain = TREE_CHAIN (t);
16677 if (chain && chain != void_type_node)
16678 chain = RECUR (chain);
16679 if (purpose == TREE_PURPOSE (t)
16680 && value == TREE_VALUE (t)
16681 && chain == TREE_CHAIN (t))
16682 RETURN (t);
16683 RETURN (tree_cons (purpose, value, chain));
16684 }
16685
16686 case COMPONENT_REF:
16687 {
16688 tree object;
16689 tree object_type;
16690 tree member;
16691 tree r;
16692
16693 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16694 args, complain, in_decl);
16695 /* Remember that there was a reference to this entity. */
16696 if (DECL_P (object)
16697 && !mark_used (object, complain) && !(complain & tf_error))
16698 RETURN (error_mark_node);
16699 object_type = TREE_TYPE (object);
16700
16701 member = TREE_OPERAND (t, 1);
16702 if (BASELINK_P (member))
16703 member = tsubst_baselink (member,
16704 non_reference (TREE_TYPE (object)),
16705 args, complain, in_decl);
16706 else
16707 member = tsubst_copy (member, args, complain, in_decl);
16708 if (member == error_mark_node)
16709 RETURN (error_mark_node);
16710
16711 if (type_dependent_expression_p (object))
16712 /* We can't do much here. */;
16713 else if (!CLASS_TYPE_P (object_type))
16714 {
16715 if (scalarish_type_p (object_type))
16716 {
16717 tree s = NULL_TREE;
16718 tree dtor = member;
16719
16720 if (TREE_CODE (dtor) == SCOPE_REF)
16721 {
16722 s = TREE_OPERAND (dtor, 0);
16723 dtor = TREE_OPERAND (dtor, 1);
16724 }
16725 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16726 {
16727 dtor = TREE_OPERAND (dtor, 0);
16728 if (TYPE_P (dtor))
16729 RETURN (finish_pseudo_destructor_expr
16730 (object, s, dtor, input_location));
16731 }
16732 }
16733 }
16734 else if (TREE_CODE (member) == SCOPE_REF
16735 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16736 {
16737 /* Lookup the template functions now that we know what the
16738 scope is. */
16739 tree scope = TREE_OPERAND (member, 0);
16740 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16741 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16742 member = lookup_qualified_name (scope, tmpl,
16743 /*is_type_p=*/false,
16744 /*complain=*/false);
16745 if (BASELINK_P (member))
16746 {
16747 BASELINK_FUNCTIONS (member)
16748 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16749 args);
16750 member = (adjust_result_of_qualified_name_lookup
16751 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16752 object_type));
16753 }
16754 else
16755 {
16756 qualified_name_lookup_error (scope, tmpl, member,
16757 input_location);
16758 RETURN (error_mark_node);
16759 }
16760 }
16761 else if (TREE_CODE (member) == SCOPE_REF
16762 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16763 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16764 {
16765 if (complain & tf_error)
16766 {
16767 if (TYPE_P (TREE_OPERAND (member, 0)))
16768 error ("%qT is not a class or namespace",
16769 TREE_OPERAND (member, 0));
16770 else
16771 error ("%qD is not a class or namespace",
16772 TREE_OPERAND (member, 0));
16773 }
16774 RETURN (error_mark_node);
16775 }
16776 else if (TREE_CODE (member) == FIELD_DECL)
16777 {
16778 r = finish_non_static_data_member (member, object, NULL_TREE);
16779 if (TREE_CODE (r) == COMPONENT_REF)
16780 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16781 RETURN (r);
16782 }
16783
16784 r = finish_class_member_access_expr (object, member,
16785 /*template_p=*/false,
16786 complain);
16787 if (TREE_CODE (r) == COMPONENT_REF)
16788 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16789 RETURN (r);
16790 }
16791
16792 case THROW_EXPR:
16793 RETURN (build_throw
16794 (RECUR (TREE_OPERAND (t, 0))));
16795
16796 case CONSTRUCTOR:
16797 {
16798 vec<constructor_elt, va_gc> *n;
16799 constructor_elt *ce;
16800 unsigned HOST_WIDE_INT idx;
16801 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16802 bool process_index_p;
16803 int newlen;
16804 bool need_copy_p = false;
16805 tree r;
16806
16807 if (type == error_mark_node)
16808 RETURN (error_mark_node);
16809
16810 /* digest_init will do the wrong thing if we let it. */
16811 if (type && TYPE_PTRMEMFUNC_P (type))
16812 RETURN (t);
16813
16814 /* We do not want to process the index of aggregate
16815 initializers as they are identifier nodes which will be
16816 looked up by digest_init. */
16817 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16818
16819 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16820 newlen = vec_safe_length (n);
16821 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16822 {
16823 if (ce->index && process_index_p
16824 /* An identifier index is looked up in the type
16825 being initialized, not the current scope. */
16826 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16827 ce->index = RECUR (ce->index);
16828
16829 if (PACK_EXPANSION_P (ce->value))
16830 {
16831 /* Substitute into the pack expansion. */
16832 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16833 in_decl);
16834
16835 if (ce->value == error_mark_node
16836 || PACK_EXPANSION_P (ce->value))
16837 ;
16838 else if (TREE_VEC_LENGTH (ce->value) == 1)
16839 /* Just move the argument into place. */
16840 ce->value = TREE_VEC_ELT (ce->value, 0);
16841 else
16842 {
16843 /* Update the length of the final CONSTRUCTOR
16844 arguments vector, and note that we will need to
16845 copy.*/
16846 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16847 need_copy_p = true;
16848 }
16849 }
16850 else
16851 ce->value = RECUR (ce->value);
16852 }
16853
16854 if (need_copy_p)
16855 {
16856 vec<constructor_elt, va_gc> *old_n = n;
16857
16858 vec_alloc (n, newlen);
16859 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16860 {
16861 if (TREE_CODE (ce->value) == TREE_VEC)
16862 {
16863 int i, len = TREE_VEC_LENGTH (ce->value);
16864 for (i = 0; i < len; ++i)
16865 CONSTRUCTOR_APPEND_ELT (n, 0,
16866 TREE_VEC_ELT (ce->value, i));
16867 }
16868 else
16869 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16870 }
16871 }
16872
16873 r = build_constructor (init_list_type_node, n);
16874 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16875
16876 if (TREE_HAS_CONSTRUCTOR (t))
16877 RETURN (finish_compound_literal (type, r, complain));
16878
16879 TREE_TYPE (r) = type;
16880 RETURN (r);
16881 }
16882
16883 case TYPEID_EXPR:
16884 {
16885 tree operand_0 = TREE_OPERAND (t, 0);
16886 if (TYPE_P (operand_0))
16887 {
16888 operand_0 = tsubst (operand_0, args, complain, in_decl);
16889 RETURN (get_typeid (operand_0, complain));
16890 }
16891 else
16892 {
16893 operand_0 = RECUR (operand_0);
16894 RETURN (build_typeid (operand_0, complain));
16895 }
16896 }
16897
16898 case VAR_DECL:
16899 if (!args)
16900 RETURN (t);
16901 else if (DECL_PACK_P (t))
16902 {
16903 /* We don't build decls for an instantiation of a
16904 variadic capture proxy, we instantiate the elements
16905 when needed. */
16906 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16907 return RECUR (DECL_VALUE_EXPR (t));
16908 }
16909 /* Fall through */
16910
16911 case PARM_DECL:
16912 {
16913 tree r = tsubst_copy (t, args, complain, in_decl);
16914 /* ??? We're doing a subset of finish_id_expression here. */
16915 if (VAR_P (r)
16916 && !processing_template_decl
16917 && !cp_unevaluated_operand
16918 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16919 && CP_DECL_THREAD_LOCAL_P (r))
16920 {
16921 if (tree wrap = get_tls_wrapper_fn (r))
16922 /* Replace an evaluated use of the thread_local variable with
16923 a call to its wrapper. */
16924 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
16925 }
16926 else if (outer_automatic_var_p (r))
16927 {
16928 r = process_outer_var_ref (r, complain);
16929 if (is_capture_proxy (r))
16930 register_local_specialization (r, t);
16931 }
16932
16933 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
16934 /* If the original type was a reference, we'll be wrapped in
16935 the appropriate INDIRECT_REF. */
16936 r = convert_from_reference (r);
16937 RETURN (r);
16938 }
16939
16940 case VA_ARG_EXPR:
16941 {
16942 tree op0 = RECUR (TREE_OPERAND (t, 0));
16943 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16944 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
16945 }
16946
16947 case OFFSETOF_EXPR:
16948 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
16949 EXPR_LOCATION (t)));
16950
16951 case TRAIT_EXPR:
16952 {
16953 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
16954 complain, in_decl);
16955
16956 tree type2 = TRAIT_EXPR_TYPE2 (t);
16957 if (type2 && TREE_CODE (type2) == TREE_LIST)
16958 type2 = RECUR (type2);
16959 else if (type2)
16960 type2 = tsubst (type2, args, complain, in_decl);
16961
16962 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
16963 }
16964
16965 case STMT_EXPR:
16966 {
16967 tree old_stmt_expr = cur_stmt_expr;
16968 tree stmt_expr = begin_stmt_expr ();
16969
16970 cur_stmt_expr = stmt_expr;
16971 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
16972 integral_constant_expression_p);
16973 stmt_expr = finish_stmt_expr (stmt_expr, false);
16974 cur_stmt_expr = old_stmt_expr;
16975
16976 /* If the resulting list of expression statement is empty,
16977 fold it further into void_node. */
16978 if (empty_expr_stmt_p (stmt_expr))
16979 stmt_expr = void_node;
16980
16981 RETURN (stmt_expr);
16982 }
16983
16984 case LAMBDA_EXPR:
16985 {
16986 tree r = build_lambda_expr ();
16987
16988 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
16989 LAMBDA_EXPR_CLOSURE (r) = type;
16990 CLASSTYPE_LAMBDA_EXPR (type) = r;
16991
16992 LAMBDA_EXPR_LOCATION (r)
16993 = LAMBDA_EXPR_LOCATION (t);
16994 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
16995 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
16996 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
16997 LAMBDA_EXPR_DISCRIMINATOR (r)
16998 = (LAMBDA_EXPR_DISCRIMINATOR (t));
16999 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17000 if (!scope)
17001 /* No substitution needed. */;
17002 else if (VAR_OR_FUNCTION_DECL_P (scope))
17003 /* For a function or variable scope, we want to use tsubst so that we
17004 don't complain about referring to an auto before deduction. */
17005 scope = tsubst (scope, args, complain, in_decl);
17006 else if (TREE_CODE (scope) == PARM_DECL)
17007 {
17008 /* Look up the parameter we want directly, as tsubst_copy
17009 doesn't do what we need. */
17010 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17011 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17012 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17013 parm = DECL_CHAIN (parm);
17014 scope = parm;
17015 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17016 if (DECL_CONTEXT (scope) == NULL_TREE)
17017 DECL_CONTEXT (scope) = fn;
17018 }
17019 else if (TREE_CODE (scope) == FIELD_DECL)
17020 /* For a field, use tsubst_copy so that we look up the existing field
17021 rather than build a new one. */
17022 scope = RECUR (scope);
17023 else
17024 gcc_unreachable ();
17025 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17026 LAMBDA_EXPR_RETURN_TYPE (r)
17027 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
17028
17029 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17030 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17031
17032 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17033 determine_visibility (TYPE_NAME (type));
17034 /* Now that we know visibility, instantiate the type so we have a
17035 declaration of the op() for later calls to lambda_function. */
17036 complete_type (type);
17037
17038 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17039
17040 insert_pending_capture_proxies ();
17041
17042 RETURN (build_lambda_object (r));
17043 }
17044
17045 case TARGET_EXPR:
17046 /* We can get here for a constant initializer of non-dependent type.
17047 FIXME stop folding in cp_parser_initializer_clause. */
17048 {
17049 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17050 complain);
17051 RETURN (r);
17052 }
17053
17054 case TRANSACTION_EXPR:
17055 RETURN (tsubst_expr(t, args, complain, in_decl,
17056 integral_constant_expression_p));
17057
17058 case PAREN_EXPR:
17059 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17060
17061 case VEC_PERM_EXPR:
17062 {
17063 tree op0 = RECUR (TREE_OPERAND (t, 0));
17064 tree op1 = RECUR (TREE_OPERAND (t, 1));
17065 tree op2 = RECUR (TREE_OPERAND (t, 2));
17066 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17067 complain));
17068 }
17069
17070 case REQUIRES_EXPR:
17071 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17072
17073 default:
17074 /* Handle Objective-C++ constructs, if appropriate. */
17075 {
17076 tree subst
17077 = objcp_tsubst_copy_and_build (t, args, complain,
17078 in_decl, /*function_p=*/false);
17079 if (subst)
17080 RETURN (subst);
17081 }
17082 RETURN (tsubst_copy (t, args, complain, in_decl));
17083 }
17084
17085 #undef RECUR
17086 #undef RETURN
17087 out:
17088 input_location = loc;
17089 return retval;
17090 }
17091
17092 /* Verify that the instantiated ARGS are valid. For type arguments,
17093 make sure that the type's linkage is ok. For non-type arguments,
17094 make sure they are constants if they are integral or enumerations.
17095 Emit an error under control of COMPLAIN, and return TRUE on error. */
17096
17097 static bool
17098 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17099 {
17100 if (dependent_template_arg_p (t))
17101 return false;
17102 if (ARGUMENT_PACK_P (t))
17103 {
17104 tree vec = ARGUMENT_PACK_ARGS (t);
17105 int len = TREE_VEC_LENGTH (vec);
17106 bool result = false;
17107 int i;
17108
17109 for (i = 0; i < len; ++i)
17110 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17111 result = true;
17112 return result;
17113 }
17114 else if (TYPE_P (t))
17115 {
17116 /* [basic.link]: A name with no linkage (notably, the name
17117 of a class or enumeration declared in a local scope)
17118 shall not be used to declare an entity with linkage.
17119 This implies that names with no linkage cannot be used as
17120 template arguments
17121
17122 DR 757 relaxes this restriction for C++0x. */
17123 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17124 : no_linkage_check (t, /*relaxed_p=*/false));
17125
17126 if (nt)
17127 {
17128 /* DR 488 makes use of a type with no linkage cause
17129 type deduction to fail. */
17130 if (complain & tf_error)
17131 {
17132 if (TYPE_ANONYMOUS_P (nt))
17133 error ("%qT is/uses anonymous type", t);
17134 else
17135 error ("template argument for %qD uses local type %qT",
17136 tmpl, t);
17137 }
17138 return true;
17139 }
17140 /* In order to avoid all sorts of complications, we do not
17141 allow variably-modified types as template arguments. */
17142 else if (variably_modified_type_p (t, NULL_TREE))
17143 {
17144 if (complain & tf_error)
17145 error ("%qT is a variably modified type", t);
17146 return true;
17147 }
17148 }
17149 /* Class template and alias template arguments should be OK. */
17150 else if (DECL_TYPE_TEMPLATE_P (t))
17151 ;
17152 /* A non-type argument of integral or enumerated type must be a
17153 constant. */
17154 else if (TREE_TYPE (t)
17155 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17156 && !REFERENCE_REF_P (t)
17157 && !TREE_CONSTANT (t))
17158 {
17159 if (complain & tf_error)
17160 error ("integral expression %qE is not constant", t);
17161 return true;
17162 }
17163 return false;
17164 }
17165
17166 static bool
17167 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17168 {
17169 int ix, len = DECL_NTPARMS (tmpl);
17170 bool result = false;
17171
17172 for (ix = 0; ix != len; ix++)
17173 {
17174 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17175 result = true;
17176 }
17177 if (result && (complain & tf_error))
17178 error (" trying to instantiate %qD", tmpl);
17179 return result;
17180 }
17181
17182 /* We're out of SFINAE context now, so generate diagnostics for the access
17183 errors we saw earlier when instantiating D from TMPL and ARGS. */
17184
17185 static void
17186 recheck_decl_substitution (tree d, tree tmpl, tree args)
17187 {
17188 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17189 tree type = TREE_TYPE (pattern);
17190 location_t loc = input_location;
17191
17192 push_access_scope (d);
17193 push_deferring_access_checks (dk_no_deferred);
17194 input_location = DECL_SOURCE_LOCATION (pattern);
17195 tsubst (type, args, tf_warning_or_error, d);
17196 input_location = loc;
17197 pop_deferring_access_checks ();
17198 pop_access_scope (d);
17199 }
17200
17201 /* Instantiate the indicated variable, function, or alias template TMPL with
17202 the template arguments in TARG_PTR. */
17203
17204 static tree
17205 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17206 {
17207 tree targ_ptr = orig_args;
17208 tree fndecl;
17209 tree gen_tmpl;
17210 tree spec;
17211 bool access_ok = true;
17212
17213 if (tmpl == error_mark_node)
17214 return error_mark_node;
17215
17216 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17217
17218 /* If this function is a clone, handle it specially. */
17219 if (DECL_CLONED_FUNCTION_P (tmpl))
17220 {
17221 tree spec;
17222 tree clone;
17223
17224 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17225 DECL_CLONED_FUNCTION. */
17226 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17227 targ_ptr, complain);
17228 if (spec == error_mark_node)
17229 return error_mark_node;
17230
17231 /* Look for the clone. */
17232 FOR_EACH_CLONE (clone, spec)
17233 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17234 return clone;
17235 /* We should always have found the clone by now. */
17236 gcc_unreachable ();
17237 return NULL_TREE;
17238 }
17239
17240 if (targ_ptr == error_mark_node)
17241 return error_mark_node;
17242
17243 /* Check to see if we already have this specialization. */
17244 gen_tmpl = most_general_template (tmpl);
17245 if (tmpl != gen_tmpl)
17246 /* The TMPL is a partial instantiation. To get a full set of
17247 arguments we must add the arguments used to perform the
17248 partial instantiation. */
17249 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
17250 targ_ptr);
17251
17252 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17253 but it doesn't seem to be on the hot path. */
17254 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17255
17256 gcc_assert (tmpl == gen_tmpl
17257 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17258 == spec)
17259 || fndecl == NULL_TREE);
17260
17261 if (spec != NULL_TREE)
17262 {
17263 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17264 {
17265 if (complain & tf_error)
17266 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17267 return error_mark_node;
17268 }
17269 return spec;
17270 }
17271
17272 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17273 complain))
17274 return error_mark_node;
17275
17276 /* We are building a FUNCTION_DECL, during which the access of its
17277 parameters and return types have to be checked. However this
17278 FUNCTION_DECL which is the desired context for access checking
17279 is not built yet. We solve this chicken-and-egg problem by
17280 deferring all checks until we have the FUNCTION_DECL. */
17281 push_deferring_access_checks (dk_deferred);
17282
17283 /* Instantiation of the function happens in the context of the function
17284 template, not the context of the overload resolution we're doing. */
17285 push_to_top_level ();
17286 /* If there are dependent arguments, e.g. because we're doing partial
17287 ordering, make sure processing_template_decl stays set. */
17288 if (uses_template_parms (targ_ptr))
17289 ++processing_template_decl;
17290 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17291 {
17292 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17293 complain, gen_tmpl, true);
17294 push_nested_class (ctx);
17295 }
17296
17297 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17298
17299 if (VAR_P (pattern))
17300 {
17301 /* We need to determine if we're using a partial or explicit
17302 specialization now, because the type of the variable could be
17303 different. */
17304 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17305 tree elt = most_specialized_partial_spec (tid, complain);
17306 if (elt == error_mark_node)
17307 pattern = error_mark_node;
17308 else if (elt)
17309 {
17310 tmpl = TREE_VALUE (elt);
17311 pattern = DECL_TEMPLATE_RESULT (tmpl);
17312 targ_ptr = TREE_PURPOSE (elt);
17313 }
17314 }
17315
17316 /* Substitute template parameters to obtain the specialization. */
17317 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17318 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17319 pop_nested_class ();
17320 pop_from_top_level ();
17321
17322 if (fndecl == error_mark_node)
17323 {
17324 pop_deferring_access_checks ();
17325 return error_mark_node;
17326 }
17327
17328 /* The DECL_TI_TEMPLATE should always be the immediate parent
17329 template, not the most general template. */
17330 DECL_TI_TEMPLATE (fndecl) = tmpl;
17331 DECL_TI_ARGS (fndecl) = targ_ptr;
17332
17333 /* Now we know the specialization, compute access previously
17334 deferred. */
17335 push_access_scope (fndecl);
17336 if (!perform_deferred_access_checks (complain))
17337 access_ok = false;
17338 pop_access_scope (fndecl);
17339 pop_deferring_access_checks ();
17340
17341 /* If we've just instantiated the main entry point for a function,
17342 instantiate all the alternate entry points as well. We do this
17343 by cloning the instantiation of the main entry point, not by
17344 instantiating the template clones. */
17345 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17346 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17347
17348 if (!access_ok)
17349 {
17350 if (!(complain & tf_error))
17351 {
17352 /* Remember to reinstantiate when we're out of SFINAE so the user
17353 can see the errors. */
17354 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17355 }
17356 return error_mark_node;
17357 }
17358 return fndecl;
17359 }
17360
17361 /* Wrapper for instantiate_template_1. */
17362
17363 tree
17364 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17365 {
17366 tree ret;
17367 timevar_push (TV_TEMPLATE_INST);
17368 ret = instantiate_template_1 (tmpl, orig_args, complain);
17369 timevar_pop (TV_TEMPLATE_INST);
17370 return ret;
17371 }
17372
17373 /* Instantiate the alias template TMPL with ARGS. Also push a template
17374 instantiation level, which instantiate_template doesn't do because
17375 functions and variables have sufficient context established by the
17376 callers. */
17377
17378 static tree
17379 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17380 {
17381 struct pending_template *old_last_pend = last_pending_template;
17382 struct tinst_level *old_error_tinst = last_error_tinst_level;
17383 if (tmpl == error_mark_node || args == error_mark_node)
17384 return error_mark_node;
17385 tree tinst = build_tree_list (tmpl, args);
17386 if (!push_tinst_level (tinst))
17387 {
17388 ggc_free (tinst);
17389 return error_mark_node;
17390 }
17391
17392 args =
17393 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17394 args, tmpl, complain,
17395 /*require_all_args=*/true,
17396 /*use_default_args=*/true);
17397
17398 tree r = instantiate_template (tmpl, args, complain);
17399 pop_tinst_level ();
17400 /* We can't free this if a pending_template entry or last_error_tinst_level
17401 is pointing at it. */
17402 if (last_pending_template == old_last_pend
17403 && last_error_tinst_level == old_error_tinst)
17404 ggc_free (tinst);
17405
17406 return r;
17407 }
17408
17409 /* PARM is a template parameter pack for FN. Returns true iff
17410 PARM is used in a deducible way in the argument list of FN. */
17411
17412 static bool
17413 pack_deducible_p (tree parm, tree fn)
17414 {
17415 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17416 for (; t; t = TREE_CHAIN (t))
17417 {
17418 tree type = TREE_VALUE (t);
17419 tree packs;
17420 if (!PACK_EXPANSION_P (type))
17421 continue;
17422 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17423 packs; packs = TREE_CHAIN (packs))
17424 if (template_args_equal (TREE_VALUE (packs), parm))
17425 {
17426 /* The template parameter pack is used in a function parameter
17427 pack. If this is the end of the parameter list, the
17428 template parameter pack is deducible. */
17429 if (TREE_CHAIN (t) == void_list_node)
17430 return true;
17431 else
17432 /* Otherwise, not. Well, it could be deduced from
17433 a non-pack parameter, but doing so would end up with
17434 a deduction mismatch, so don't bother. */
17435 return false;
17436 }
17437 }
17438 /* The template parameter pack isn't used in any function parameter
17439 packs, but it might be used deeper, e.g. tuple<Args...>. */
17440 return true;
17441 }
17442
17443 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17444 NARGS elements of the arguments that are being used when calling
17445 it. TARGS is a vector into which the deduced template arguments
17446 are placed.
17447
17448 Returns either a FUNCTION_DECL for the matching specialization of FN or
17449 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17450 true, diagnostics will be printed to explain why it failed.
17451
17452 If FN is a conversion operator, or we are trying to produce a specific
17453 specialization, RETURN_TYPE is the return type desired.
17454
17455 The EXPLICIT_TARGS are explicit template arguments provided via a
17456 template-id.
17457
17458 The parameter STRICT is one of:
17459
17460 DEDUCE_CALL:
17461 We are deducing arguments for a function call, as in
17462 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17463 deducing arguments for a call to the result of a conversion
17464 function template, as in [over.call.object].
17465
17466 DEDUCE_CONV:
17467 We are deducing arguments for a conversion function, as in
17468 [temp.deduct.conv].
17469
17470 DEDUCE_EXACT:
17471 We are deducing arguments when doing an explicit instantiation
17472 as in [temp.explicit], when determining an explicit specialization
17473 as in [temp.expl.spec], or when taking the address of a function
17474 template, as in [temp.deduct.funcaddr]. */
17475
17476 tree
17477 fn_type_unification (tree fn,
17478 tree explicit_targs,
17479 tree targs,
17480 const tree *args,
17481 unsigned int nargs,
17482 tree return_type,
17483 unification_kind_t strict,
17484 int flags,
17485 bool explain_p,
17486 bool decltype_p)
17487 {
17488 tree parms;
17489 tree fntype;
17490 tree decl = NULL_TREE;
17491 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17492 bool ok;
17493 static int deduction_depth;
17494 struct pending_template *old_last_pend = last_pending_template;
17495 struct tinst_level *old_error_tinst = last_error_tinst_level;
17496 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17497 tree tinst;
17498 tree r = error_mark_node;
17499
17500 if (decltype_p)
17501 complain |= tf_decltype;
17502
17503 /* In C++0x, it's possible to have a function template whose type depends
17504 on itself recursively. This is most obvious with decltype, but can also
17505 occur with enumeration scope (c++/48969). So we need to catch infinite
17506 recursion and reject the substitution at deduction time; this function
17507 will return error_mark_node for any repeated substitution.
17508
17509 This also catches excessive recursion such as when f<N> depends on
17510 f<N-1> across all integers, and returns error_mark_node for all the
17511 substitutions back up to the initial one.
17512
17513 This is, of course, not reentrant. */
17514 if (excessive_deduction_depth)
17515 return error_mark_node;
17516 tinst = build_tree_list (fn, NULL_TREE);
17517 ++deduction_depth;
17518
17519 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17520
17521 fntype = TREE_TYPE (fn);
17522 if (explicit_targs)
17523 {
17524 /* [temp.deduct]
17525
17526 The specified template arguments must match the template
17527 parameters in kind (i.e., type, nontype, template), and there
17528 must not be more arguments than there are parameters;
17529 otherwise type deduction fails.
17530
17531 Nontype arguments must match the types of the corresponding
17532 nontype template parameters, or must be convertible to the
17533 types of the corresponding nontype parameters as specified in
17534 _temp.arg.nontype_, otherwise type deduction fails.
17535
17536 All references in the function type of the function template
17537 to the corresponding template parameters are replaced by the
17538 specified template argument values. If a substitution in a
17539 template parameter or in the function type of the function
17540 template results in an invalid type, type deduction fails. */
17541 int i, len = TREE_VEC_LENGTH (tparms);
17542 location_t loc = input_location;
17543 bool incomplete = false;
17544
17545 /* Adjust any explicit template arguments before entering the
17546 substitution context. */
17547 explicit_targs
17548 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17549 complain,
17550 /*require_all_args=*/false,
17551 /*use_default_args=*/false));
17552 if (explicit_targs == error_mark_node)
17553 goto fail;
17554
17555 /* Substitute the explicit args into the function type. This is
17556 necessary so that, for instance, explicitly declared function
17557 arguments can match null pointed constants. If we were given
17558 an incomplete set of explicit args, we must not do semantic
17559 processing during substitution as we could create partial
17560 instantiations. */
17561 for (i = 0; i < len; i++)
17562 {
17563 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17564 bool parameter_pack = false;
17565 tree targ = TREE_VEC_ELT (explicit_targs, i);
17566
17567 /* Dig out the actual parm. */
17568 if (TREE_CODE (parm) == TYPE_DECL
17569 || TREE_CODE (parm) == TEMPLATE_DECL)
17570 {
17571 parm = TREE_TYPE (parm);
17572 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17573 }
17574 else if (TREE_CODE (parm) == PARM_DECL)
17575 {
17576 parm = DECL_INITIAL (parm);
17577 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17578 }
17579
17580 if (!parameter_pack && targ == NULL_TREE)
17581 /* No explicit argument for this template parameter. */
17582 incomplete = true;
17583
17584 if (parameter_pack && pack_deducible_p (parm, fn))
17585 {
17586 /* Mark the argument pack as "incomplete". We could
17587 still deduce more arguments during unification.
17588 We remove this mark in type_unification_real. */
17589 if (targ)
17590 {
17591 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17592 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17593 = ARGUMENT_PACK_ARGS (targ);
17594 }
17595
17596 /* We have some incomplete argument packs. */
17597 incomplete = true;
17598 }
17599 }
17600
17601 TREE_VALUE (tinst) = explicit_targs;
17602 if (!push_tinst_level (tinst))
17603 {
17604 excessive_deduction_depth = true;
17605 goto fail;
17606 }
17607 processing_template_decl += incomplete;
17608 input_location = DECL_SOURCE_LOCATION (fn);
17609 /* Ignore any access checks; we'll see them again in
17610 instantiate_template and they might have the wrong
17611 access path at this point. */
17612 push_deferring_access_checks (dk_deferred);
17613 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17614 complain | tf_partial, NULL_TREE);
17615 pop_deferring_access_checks ();
17616 input_location = loc;
17617 processing_template_decl -= incomplete;
17618 pop_tinst_level ();
17619
17620 if (fntype == error_mark_node)
17621 goto fail;
17622
17623 /* Place the explicitly specified arguments in TARGS. */
17624 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17625 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17626 }
17627
17628 /* Never do unification on the 'this' parameter. */
17629 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17630
17631 if (return_type && strict == DEDUCE_CALL)
17632 {
17633 /* We're deducing for a call to the result of a template conversion
17634 function. The parms we really want are in return_type. */
17635 if (POINTER_TYPE_P (return_type))
17636 return_type = TREE_TYPE (return_type);
17637 parms = TYPE_ARG_TYPES (return_type);
17638 }
17639 else if (return_type)
17640 {
17641 tree *new_args;
17642
17643 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17644 new_args = XALLOCAVEC (tree, nargs + 1);
17645 new_args[0] = return_type;
17646 memcpy (new_args + 1, args, nargs * sizeof (tree));
17647 args = new_args;
17648 ++nargs;
17649 }
17650
17651 /* We allow incomplete unification without an error message here
17652 because the standard doesn't seem to explicitly prohibit it. Our
17653 callers must be ready to deal with unification failures in any
17654 event. */
17655
17656 TREE_VALUE (tinst) = targs;
17657 /* If we aren't explaining yet, push tinst context so we can see where
17658 any errors (e.g. from class instantiations triggered by instantiation
17659 of default template arguments) come from. If we are explaining, this
17660 context is redundant. */
17661 if (!explain_p && !push_tinst_level (tinst))
17662 {
17663 excessive_deduction_depth = true;
17664 goto fail;
17665 }
17666
17667 /* type_unification_real will pass back any access checks from default
17668 template argument substitution. */
17669 vec<deferred_access_check, va_gc> *checks;
17670 checks = NULL;
17671
17672 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17673 targs, parms, args, nargs, /*subr=*/0,
17674 strict, flags, &checks, explain_p);
17675 if (!explain_p)
17676 pop_tinst_level ();
17677 if (!ok)
17678 goto fail;
17679
17680 /* Now that we have bindings for all of the template arguments,
17681 ensure that the arguments deduced for the template template
17682 parameters have compatible template parameter lists. We cannot
17683 check this property before we have deduced all template
17684 arguments, because the template parameter types of a template
17685 template parameter might depend on prior template parameters
17686 deduced after the template template parameter. The following
17687 ill-formed example illustrates this issue:
17688
17689 template<typename T, template<T> class C> void f(C<5>, T);
17690
17691 template<int N> struct X {};
17692
17693 void g() {
17694 f(X<5>(), 5l); // error: template argument deduction fails
17695 }
17696
17697 The template parameter list of 'C' depends on the template type
17698 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17699 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17700 time that we deduce 'C'. */
17701 if (!template_template_parm_bindings_ok_p
17702 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17703 {
17704 unify_inconsistent_template_template_parameters (explain_p);
17705 goto fail;
17706 }
17707
17708 /* All is well so far. Now, check:
17709
17710 [temp.deduct]
17711
17712 When all template arguments have been deduced, all uses of
17713 template parameters in nondeduced contexts are replaced with
17714 the corresponding deduced argument values. If the
17715 substitution results in an invalid type, as described above,
17716 type deduction fails. */
17717 TREE_VALUE (tinst) = targs;
17718 if (!push_tinst_level (tinst))
17719 {
17720 excessive_deduction_depth = true;
17721 goto fail;
17722 }
17723
17724 /* Also collect access checks from the instantiation. */
17725 reopen_deferring_access_checks (checks);
17726
17727 decl = instantiate_template (fn, targs, complain);
17728
17729 checks = get_deferred_access_checks ();
17730 pop_deferring_access_checks ();
17731
17732 pop_tinst_level ();
17733
17734 if (decl == error_mark_node)
17735 goto fail;
17736
17737 /* Now perform any access checks encountered during substitution. */
17738 push_access_scope (decl);
17739 ok = perform_access_checks (checks, complain);
17740 pop_access_scope (decl);
17741 if (!ok)
17742 goto fail;
17743
17744 /* If we're looking for an exact match, check that what we got
17745 is indeed an exact match. It might not be if some template
17746 parameters are used in non-deduced contexts. But don't check
17747 for an exact match if we have dependent template arguments;
17748 in that case we're doing partial ordering, and we already know
17749 that we have two candidates that will provide the actual type. */
17750 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17751 {
17752 tree substed = TREE_TYPE (decl);
17753 unsigned int i;
17754
17755 tree sarg
17756 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17757 if (return_type)
17758 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17759 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17760 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17761 {
17762 unify_type_mismatch (explain_p, args[i],
17763 TREE_VALUE (sarg));
17764 goto fail;
17765 }
17766 }
17767
17768 r = decl;
17769
17770 fail:
17771 --deduction_depth;
17772 if (excessive_deduction_depth)
17773 {
17774 if (deduction_depth == 0)
17775 /* Reset once we're all the way out. */
17776 excessive_deduction_depth = false;
17777 }
17778
17779 /* We can't free this if a pending_template entry or last_error_tinst_level
17780 is pointing at it. */
17781 if (last_pending_template == old_last_pend
17782 && last_error_tinst_level == old_error_tinst)
17783 ggc_free (tinst);
17784
17785 return r;
17786 }
17787
17788 /* Adjust types before performing type deduction, as described in
17789 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17790 sections are symmetric. PARM is the type of a function parameter
17791 or the return type of the conversion function. ARG is the type of
17792 the argument passed to the call, or the type of the value
17793 initialized with the result of the conversion function.
17794 ARG_EXPR is the original argument expression, which may be null. */
17795
17796 static int
17797 maybe_adjust_types_for_deduction (unification_kind_t strict,
17798 tree* parm,
17799 tree* arg,
17800 tree arg_expr)
17801 {
17802 int result = 0;
17803
17804 switch (strict)
17805 {
17806 case DEDUCE_CALL:
17807 break;
17808
17809 case DEDUCE_CONV:
17810 /* Swap PARM and ARG throughout the remainder of this
17811 function; the handling is precisely symmetric since PARM
17812 will initialize ARG rather than vice versa. */
17813 std::swap (parm, arg);
17814 break;
17815
17816 case DEDUCE_EXACT:
17817 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17818 too, but here handle it by stripping the reference from PARM
17819 rather than by adding it to ARG. */
17820 if (TREE_CODE (*parm) == REFERENCE_TYPE
17821 && TYPE_REF_IS_RVALUE (*parm)
17822 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17823 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17824 && TREE_CODE (*arg) == REFERENCE_TYPE
17825 && !TYPE_REF_IS_RVALUE (*arg))
17826 *parm = TREE_TYPE (*parm);
17827 /* Nothing else to do in this case. */
17828 return 0;
17829
17830 default:
17831 gcc_unreachable ();
17832 }
17833
17834 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17835 {
17836 /* [temp.deduct.call]
17837
17838 If P is not a reference type:
17839
17840 --If A is an array type, the pointer type produced by the
17841 array-to-pointer standard conversion (_conv.array_) is
17842 used in place of A for type deduction; otherwise,
17843
17844 --If A is a function type, the pointer type produced by
17845 the function-to-pointer standard conversion
17846 (_conv.func_) is used in place of A for type deduction;
17847 otherwise,
17848
17849 --If A is a cv-qualified type, the top level
17850 cv-qualifiers of A's type are ignored for type
17851 deduction. */
17852 if (TREE_CODE (*arg) == ARRAY_TYPE)
17853 *arg = build_pointer_type (TREE_TYPE (*arg));
17854 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17855 *arg = build_pointer_type (*arg);
17856 else
17857 *arg = TYPE_MAIN_VARIANT (*arg);
17858 }
17859
17860 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17861 of the form T&&, where T is a template parameter, and the argument
17862 is an lvalue, T is deduced as A& */
17863 if (TREE_CODE (*parm) == REFERENCE_TYPE
17864 && TYPE_REF_IS_RVALUE (*parm)
17865 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17866 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17867 && (arg_expr ? real_lvalue_p (arg_expr)
17868 /* try_one_overload doesn't provide an arg_expr, but
17869 functions are always lvalues. */
17870 : TREE_CODE (*arg) == FUNCTION_TYPE))
17871 *arg = build_reference_type (*arg);
17872
17873 /* [temp.deduct.call]
17874
17875 If P is a cv-qualified type, the top level cv-qualifiers
17876 of P's type are ignored for type deduction. If P is a
17877 reference type, the type referred to by P is used for
17878 type deduction. */
17879 *parm = TYPE_MAIN_VARIANT (*parm);
17880 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17881 {
17882 *parm = TREE_TYPE (*parm);
17883 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17884 }
17885
17886 /* DR 322. For conversion deduction, remove a reference type on parm
17887 too (which has been swapped into ARG). */
17888 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17889 *arg = TREE_TYPE (*arg);
17890
17891 return result;
17892 }
17893
17894 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17895 template which does contain any deducible template parameters; check if
17896 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17897 unify_one_argument. */
17898
17899 static int
17900 check_non_deducible_conversion (tree parm, tree arg, int strict,
17901 int flags, bool explain_p)
17902 {
17903 tree type;
17904
17905 if (!TYPE_P (arg))
17906 type = TREE_TYPE (arg);
17907 else
17908 type = arg;
17909
17910 if (same_type_p (parm, type))
17911 return unify_success (explain_p);
17912
17913 if (strict == DEDUCE_CONV)
17914 {
17915 if (can_convert_arg (type, parm, NULL_TREE, flags,
17916 explain_p ? tf_warning_or_error : tf_none))
17917 return unify_success (explain_p);
17918 }
17919 else if (strict != DEDUCE_EXACT)
17920 {
17921 if (can_convert_arg (parm, type,
17922 TYPE_P (arg) ? NULL_TREE : arg,
17923 flags, explain_p ? tf_warning_or_error : tf_none))
17924 return unify_success (explain_p);
17925 }
17926
17927 if (strict == DEDUCE_EXACT)
17928 return unify_type_mismatch (explain_p, parm, arg);
17929 else
17930 return unify_arg_conversion (explain_p, parm, type, arg);
17931 }
17932
17933 static bool uses_deducible_template_parms (tree type);
17934
17935 /* Returns true iff the expression EXPR is one from which a template
17936 argument can be deduced. In other words, if it's an undecorated
17937 use of a template non-type parameter. */
17938
17939 static bool
17940 deducible_expression (tree expr)
17941 {
17942 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
17943 }
17944
17945 /* Returns true iff the array domain DOMAIN uses a template parameter in a
17946 deducible way; that is, if it has a max value of <PARM> - 1. */
17947
17948 static bool
17949 deducible_array_bound (tree domain)
17950 {
17951 if (domain == NULL_TREE)
17952 return false;
17953
17954 tree max = TYPE_MAX_VALUE (domain);
17955 if (TREE_CODE (max) != MINUS_EXPR)
17956 return false;
17957
17958 return deducible_expression (TREE_OPERAND (max, 0));
17959 }
17960
17961 /* Returns true iff the template arguments ARGS use a template parameter
17962 in a deducible way. */
17963
17964 static bool
17965 deducible_template_args (tree args)
17966 {
17967 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
17968 {
17969 bool deducible;
17970 tree elt = TREE_VEC_ELT (args, i);
17971 if (ARGUMENT_PACK_P (elt))
17972 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
17973 else
17974 {
17975 if (PACK_EXPANSION_P (elt))
17976 elt = PACK_EXPANSION_PATTERN (elt);
17977 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
17978 deducible = true;
17979 else if (TYPE_P (elt))
17980 deducible = uses_deducible_template_parms (elt);
17981 else
17982 deducible = deducible_expression (elt);
17983 }
17984 if (deducible)
17985 return true;
17986 }
17987 return false;
17988 }
17989
17990 /* Returns true iff TYPE contains any deducible references to template
17991 parameters, as per 14.8.2.5. */
17992
17993 static bool
17994 uses_deducible_template_parms (tree type)
17995 {
17996 if (PACK_EXPANSION_P (type))
17997 type = PACK_EXPANSION_PATTERN (type);
17998
17999 /* T
18000 cv-list T
18001 TT<T>
18002 TT<i>
18003 TT<> */
18004 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18005 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18006 return true;
18007
18008 /* T*
18009 T&
18010 T&& */
18011 if (POINTER_TYPE_P (type))
18012 return uses_deducible_template_parms (TREE_TYPE (type));
18013
18014 /* T[integer-constant ]
18015 type [i] */
18016 if (TREE_CODE (type) == ARRAY_TYPE)
18017 return (uses_deducible_template_parms (TREE_TYPE (type))
18018 || deducible_array_bound (TYPE_DOMAIN (type)));
18019
18020 /* T type ::*
18021 type T::*
18022 T T::*
18023 T (type ::*)()
18024 type (T::*)()
18025 type (type ::*)(T)
18026 type (T::*)(T)
18027 T (type ::*)(T)
18028 T (T::*)()
18029 T (T::*)(T) */
18030 if (TYPE_PTRMEM_P (type))
18031 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18032 || (uses_deducible_template_parms
18033 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18034
18035 /* template-name <T> (where template-name refers to a class template)
18036 template-name <i> (where template-name refers to a class template) */
18037 if (CLASS_TYPE_P (type)
18038 && CLASSTYPE_TEMPLATE_INFO (type)
18039 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18040 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18041 (CLASSTYPE_TI_ARGS (type)));
18042
18043 /* type (T)
18044 T()
18045 T(T) */
18046 if (TREE_CODE (type) == FUNCTION_TYPE
18047 || TREE_CODE (type) == METHOD_TYPE)
18048 {
18049 if (uses_deducible_template_parms (TREE_TYPE (type)))
18050 return true;
18051 tree parm = TYPE_ARG_TYPES (type);
18052 if (TREE_CODE (type) == METHOD_TYPE)
18053 parm = TREE_CHAIN (parm);
18054 for (; parm; parm = TREE_CHAIN (parm))
18055 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18056 return true;
18057 }
18058
18059 return false;
18060 }
18061
18062 /* Subroutine of type_unification_real and unify_pack_expansion to
18063 handle unification of a single P/A pair. Parameters are as
18064 for those functions. */
18065
18066 static int
18067 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18068 int subr, unification_kind_t strict,
18069 bool explain_p)
18070 {
18071 tree arg_expr = NULL_TREE;
18072 int arg_strict;
18073
18074 if (arg == error_mark_node || parm == error_mark_node)
18075 return unify_invalid (explain_p);
18076 if (arg == unknown_type_node)
18077 /* We can't deduce anything from this, but we might get all the
18078 template args from other function args. */
18079 return unify_success (explain_p);
18080
18081 /* Implicit conversions (Clause 4) will be performed on a function
18082 argument to convert it to the type of the corresponding function
18083 parameter if the parameter type contains no template-parameters that
18084 participate in template argument deduction. */
18085 if (strict != DEDUCE_EXACT
18086 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18087 /* For function parameters with no deducible template parameters,
18088 just return. We'll check non-dependent conversions later. */
18089 return unify_success (explain_p);
18090
18091 switch (strict)
18092 {
18093 case DEDUCE_CALL:
18094 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18095 | UNIFY_ALLOW_MORE_CV_QUAL
18096 | UNIFY_ALLOW_DERIVED);
18097 break;
18098
18099 case DEDUCE_CONV:
18100 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18101 break;
18102
18103 case DEDUCE_EXACT:
18104 arg_strict = UNIFY_ALLOW_NONE;
18105 break;
18106
18107 default:
18108 gcc_unreachable ();
18109 }
18110
18111 /* We only do these transformations if this is the top-level
18112 parameter_type_list in a call or declaration matching; in other
18113 situations (nested function declarators, template argument lists) we
18114 won't be comparing a type to an expression, and we don't do any type
18115 adjustments. */
18116 if (!subr)
18117 {
18118 if (!TYPE_P (arg))
18119 {
18120 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18121 if (type_unknown_p (arg))
18122 {
18123 /* [temp.deduct.type] A template-argument can be
18124 deduced from a pointer to function or pointer
18125 to member function argument if the set of
18126 overloaded functions does not contain function
18127 templates and at most one of a set of
18128 overloaded functions provides a unique
18129 match. */
18130
18131 if (resolve_overloaded_unification
18132 (tparms, targs, parm, arg, strict,
18133 arg_strict, explain_p))
18134 return unify_success (explain_p);
18135 return unify_overload_resolution_failure (explain_p, arg);
18136 }
18137
18138 arg_expr = arg;
18139 arg = unlowered_expr_type (arg);
18140 if (arg == error_mark_node)
18141 return unify_invalid (explain_p);
18142 }
18143
18144 arg_strict |=
18145 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18146 }
18147 else
18148 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18149 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18150 return unify_template_argument_mismatch (explain_p, parm, arg);
18151
18152 /* For deduction from an init-list we need the actual list. */
18153 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18154 arg = arg_expr;
18155 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18156 }
18157
18158 /* Most parms like fn_type_unification.
18159
18160 If SUBR is 1, we're being called recursively (to unify the
18161 arguments of a function or method parameter of a function
18162 template).
18163
18164 CHECKS is a pointer to a vector of access checks encountered while
18165 substituting default template arguments. */
18166
18167 static int
18168 type_unification_real (tree tparms,
18169 tree targs,
18170 tree xparms,
18171 const tree *xargs,
18172 unsigned int xnargs,
18173 int subr,
18174 unification_kind_t strict,
18175 int flags,
18176 vec<deferred_access_check, va_gc> **checks,
18177 bool explain_p)
18178 {
18179 tree parm, arg;
18180 int i;
18181 int ntparms = TREE_VEC_LENGTH (tparms);
18182 int saw_undeduced = 0;
18183 tree parms;
18184 const tree *args;
18185 unsigned int nargs;
18186 unsigned int ia;
18187
18188 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18189 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18190 gcc_assert (ntparms > 0);
18191
18192 /* Reset the number of non-defaulted template arguments contained
18193 in TARGS. */
18194 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18195
18196 again:
18197 parms = xparms;
18198 args = xargs;
18199 nargs = xnargs;
18200
18201 ia = 0;
18202 while (parms && parms != void_list_node
18203 && ia < nargs)
18204 {
18205 parm = TREE_VALUE (parms);
18206
18207 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18208 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18209 /* For a function parameter pack that occurs at the end of the
18210 parameter-declaration-list, the type A of each remaining
18211 argument of the call is compared with the type P of the
18212 declarator-id of the function parameter pack. */
18213 break;
18214
18215 parms = TREE_CHAIN (parms);
18216
18217 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18218 /* For a function parameter pack that does not occur at the
18219 end of the parameter-declaration-list, the type of the
18220 parameter pack is a non-deduced context. */
18221 continue;
18222
18223 arg = args[ia];
18224 ++ia;
18225
18226 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18227 explain_p))
18228 return 1;
18229 }
18230
18231 if (parms
18232 && parms != void_list_node
18233 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18234 {
18235 /* Unify the remaining arguments with the pack expansion type. */
18236 tree argvec;
18237 tree parmvec = make_tree_vec (1);
18238
18239 /* Allocate a TREE_VEC and copy in all of the arguments */
18240 argvec = make_tree_vec (nargs - ia);
18241 for (i = 0; ia < nargs; ++ia, ++i)
18242 TREE_VEC_ELT (argvec, i) = args[ia];
18243
18244 /* Copy the parameter into parmvec. */
18245 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18246 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18247 /*subr=*/subr, explain_p))
18248 return 1;
18249
18250 /* Advance to the end of the list of parameters. */
18251 parms = TREE_CHAIN (parms);
18252 }
18253
18254 /* Fail if we've reached the end of the parm list, and more args
18255 are present, and the parm list isn't variadic. */
18256 if (ia < nargs && parms == void_list_node)
18257 return unify_too_many_arguments (explain_p, nargs, ia);
18258 /* Fail if parms are left and they don't have default values and
18259 they aren't all deduced as empty packs (c++/57397). This is
18260 consistent with sufficient_parms_p. */
18261 if (parms && parms != void_list_node
18262 && TREE_PURPOSE (parms) == NULL_TREE)
18263 {
18264 unsigned int count = nargs;
18265 tree p = parms;
18266 bool type_pack_p;
18267 do
18268 {
18269 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18270 if (!type_pack_p)
18271 count++;
18272 p = TREE_CHAIN (p);
18273 }
18274 while (p && p != void_list_node);
18275 if (count != nargs)
18276 return unify_too_few_arguments (explain_p, ia, count,
18277 type_pack_p);
18278 }
18279
18280 if (!subr)
18281 {
18282 tsubst_flags_t complain = (explain_p
18283 ? tf_warning_or_error
18284 : tf_none);
18285
18286 for (i = 0; i < ntparms; i++)
18287 {
18288 tree targ = TREE_VEC_ELT (targs, i);
18289 tree tparm = TREE_VEC_ELT (tparms, i);
18290
18291 /* Clear the "incomplete" flags on all argument packs now so that
18292 substituting them into later default arguments works. */
18293 if (targ && ARGUMENT_PACK_P (targ))
18294 {
18295 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18296 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18297 }
18298
18299 if (targ || tparm == error_mark_node)
18300 continue;
18301 tparm = TREE_VALUE (tparm);
18302
18303 /* If this is an undeduced nontype parameter that depends on
18304 a type parameter, try another pass; its type may have been
18305 deduced from a later argument than the one from which
18306 this parameter can be deduced. */
18307 if (TREE_CODE (tparm) == PARM_DECL
18308 && uses_template_parms (TREE_TYPE (tparm))
18309 && saw_undeduced < 2)
18310 {
18311 saw_undeduced = 1;
18312 continue;
18313 }
18314
18315 /* Core issue #226 (C++0x) [temp.deduct]:
18316
18317 If a template argument has not been deduced, its
18318 default template argument, if any, is used.
18319
18320 When we are in C++98 mode, TREE_PURPOSE will either
18321 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18322 to explicitly check cxx_dialect here. */
18323 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18324 /* OK, there is a default argument. Wait until after the
18325 conversion check to do substitution. */
18326 continue;
18327
18328 /* If the type parameter is a parameter pack, then it will
18329 be deduced to an empty parameter pack. */
18330 if (template_parameter_pack_p (tparm))
18331 {
18332 tree arg;
18333
18334 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18335 {
18336 arg = make_node (NONTYPE_ARGUMENT_PACK);
18337 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18338 TREE_CONSTANT (arg) = 1;
18339 }
18340 else
18341 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18342
18343 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18344
18345 TREE_VEC_ELT (targs, i) = arg;
18346 continue;
18347 }
18348
18349 return unify_parameter_deduction_failure (explain_p, tparm);
18350 }
18351
18352 /* DR 1391: All parameters have args, now check non-dependent parms for
18353 convertibility. */
18354 if (saw_undeduced < 2)
18355 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18356 parms && parms != void_list_node && ia < nargs; )
18357 {
18358 parm = TREE_VALUE (parms);
18359
18360 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18361 && (!TREE_CHAIN (parms)
18362 || TREE_CHAIN (parms) == void_list_node))
18363 /* For a function parameter pack that occurs at the end of the
18364 parameter-declaration-list, the type A of each remaining
18365 argument of the call is compared with the type P of the
18366 declarator-id of the function parameter pack. */
18367 break;
18368
18369 parms = TREE_CHAIN (parms);
18370
18371 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18372 /* For a function parameter pack that does not occur at the
18373 end of the parameter-declaration-list, the type of the
18374 parameter pack is a non-deduced context. */
18375 continue;
18376
18377 arg = args[ia];
18378 ++ia;
18379
18380 if (uses_template_parms (parm))
18381 continue;
18382 if (check_non_deducible_conversion (parm, arg, strict, flags,
18383 explain_p))
18384 return 1;
18385 }
18386
18387 /* Now substitute into the default template arguments. */
18388 for (i = 0; i < ntparms; i++)
18389 {
18390 tree targ = TREE_VEC_ELT (targs, i);
18391 tree tparm = TREE_VEC_ELT (tparms, i);
18392
18393 if (targ || tparm == error_mark_node)
18394 continue;
18395 tree parm = TREE_VALUE (tparm);
18396
18397 if (TREE_CODE (parm) == PARM_DECL
18398 && uses_template_parms (TREE_TYPE (parm))
18399 && saw_undeduced < 2)
18400 continue;
18401
18402 tree arg = TREE_PURPOSE (tparm);
18403 reopen_deferring_access_checks (*checks);
18404 location_t save_loc = input_location;
18405 if (DECL_P (parm))
18406 input_location = DECL_SOURCE_LOCATION (parm);
18407 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18408 arg = convert_template_argument (parm, arg, targs, complain,
18409 i, NULL_TREE);
18410 input_location = save_loc;
18411 *checks = get_deferred_access_checks ();
18412 pop_deferring_access_checks ();
18413 if (arg == error_mark_node)
18414 return 1;
18415 else
18416 {
18417 TREE_VEC_ELT (targs, i) = arg;
18418 /* The position of the first default template argument,
18419 is also the number of non-defaulted arguments in TARGS.
18420 Record that. */
18421 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18422 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18423 continue;
18424 }
18425 }
18426
18427 if (saw_undeduced++ == 1)
18428 goto again;
18429 }
18430
18431 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18432 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18433
18434 return unify_success (explain_p);
18435 }
18436
18437 /* Subroutine of type_unification_real. Args are like the variables
18438 at the call site. ARG is an overloaded function (or template-id);
18439 we try deducing template args from each of the overloads, and if
18440 only one succeeds, we go with that. Modifies TARGS and returns
18441 true on success. */
18442
18443 static bool
18444 resolve_overloaded_unification (tree tparms,
18445 tree targs,
18446 tree parm,
18447 tree arg,
18448 unification_kind_t strict,
18449 int sub_strict,
18450 bool explain_p)
18451 {
18452 tree tempargs = copy_node (targs);
18453 int good = 0;
18454 tree goodfn = NULL_TREE;
18455 bool addr_p;
18456
18457 if (TREE_CODE (arg) == ADDR_EXPR)
18458 {
18459 arg = TREE_OPERAND (arg, 0);
18460 addr_p = true;
18461 }
18462 else
18463 addr_p = false;
18464
18465 if (TREE_CODE (arg) == COMPONENT_REF)
18466 /* Handle `&x' where `x' is some static or non-static member
18467 function name. */
18468 arg = TREE_OPERAND (arg, 1);
18469
18470 if (TREE_CODE (arg) == OFFSET_REF)
18471 arg = TREE_OPERAND (arg, 1);
18472
18473 /* Strip baselink information. */
18474 if (BASELINK_P (arg))
18475 arg = BASELINK_FUNCTIONS (arg);
18476
18477 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18478 {
18479 /* If we got some explicit template args, we need to plug them into
18480 the affected templates before we try to unify, in case the
18481 explicit args will completely resolve the templates in question. */
18482
18483 int ok = 0;
18484 tree expl_subargs = TREE_OPERAND (arg, 1);
18485 arg = TREE_OPERAND (arg, 0);
18486
18487 for (; arg; arg = OVL_NEXT (arg))
18488 {
18489 tree fn = OVL_CURRENT (arg);
18490 tree subargs, elem;
18491
18492 if (TREE_CODE (fn) != TEMPLATE_DECL)
18493 continue;
18494
18495 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18496 expl_subargs, NULL_TREE, tf_none,
18497 /*require_all_args=*/true,
18498 /*use_default_args=*/true);
18499 if (subargs != error_mark_node
18500 && !any_dependent_template_arguments_p (subargs))
18501 {
18502 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18503 if (try_one_overload (tparms, targs, tempargs, parm,
18504 elem, strict, sub_strict, addr_p, explain_p)
18505 && (!goodfn || !same_type_p (goodfn, elem)))
18506 {
18507 goodfn = elem;
18508 ++good;
18509 }
18510 }
18511 else if (subargs)
18512 ++ok;
18513 }
18514 /* If no templates (or more than one) are fully resolved by the
18515 explicit arguments, this template-id is a non-deduced context; it
18516 could still be OK if we deduce all template arguments for the
18517 enclosing call through other arguments. */
18518 if (good != 1)
18519 good = ok;
18520 }
18521 else if (TREE_CODE (arg) != OVERLOAD
18522 && TREE_CODE (arg) != FUNCTION_DECL)
18523 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18524 -- but the deduction does not succeed because the expression is
18525 not just the function on its own. */
18526 return false;
18527 else
18528 for (; arg; arg = OVL_NEXT (arg))
18529 if (try_one_overload (tparms, targs, tempargs, parm,
18530 TREE_TYPE (OVL_CURRENT (arg)),
18531 strict, sub_strict, addr_p, explain_p)
18532 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18533 {
18534 goodfn = OVL_CURRENT (arg);
18535 ++good;
18536 }
18537
18538 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18539 to function or pointer to member function argument if the set of
18540 overloaded functions does not contain function templates and at most
18541 one of a set of overloaded functions provides a unique match.
18542
18543 So if we found multiple possibilities, we return success but don't
18544 deduce anything. */
18545
18546 if (good == 1)
18547 {
18548 int i = TREE_VEC_LENGTH (targs);
18549 for (; i--; )
18550 if (TREE_VEC_ELT (tempargs, i))
18551 {
18552 tree old = TREE_VEC_ELT (targs, i);
18553 tree new_ = TREE_VEC_ELT (tempargs, i);
18554 if (new_ && old && ARGUMENT_PACK_P (old)
18555 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18556 /* Don't forget explicit template arguments in a pack. */
18557 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18558 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18559 TREE_VEC_ELT (targs, i) = new_;
18560 }
18561 }
18562 if (good)
18563 return true;
18564
18565 return false;
18566 }
18567
18568 /* Core DR 115: In contexts where deduction is done and fails, or in
18569 contexts where deduction is not done, if a template argument list is
18570 specified and it, along with any default template arguments, identifies
18571 a single function template specialization, then the template-id is an
18572 lvalue for the function template specialization. */
18573
18574 tree
18575 resolve_nondeduced_context (tree orig_expr)
18576 {
18577 tree expr, offset, baselink;
18578 bool addr;
18579
18580 if (!type_unknown_p (orig_expr))
18581 return orig_expr;
18582
18583 expr = orig_expr;
18584 addr = false;
18585 offset = NULL_TREE;
18586 baselink = NULL_TREE;
18587
18588 if (TREE_CODE (expr) == ADDR_EXPR)
18589 {
18590 expr = TREE_OPERAND (expr, 0);
18591 addr = true;
18592 }
18593 if (TREE_CODE (expr) == OFFSET_REF)
18594 {
18595 offset = expr;
18596 expr = TREE_OPERAND (expr, 1);
18597 }
18598 if (BASELINK_P (expr))
18599 {
18600 baselink = expr;
18601 expr = BASELINK_FUNCTIONS (expr);
18602 }
18603
18604 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18605 {
18606 int good = 0;
18607 tree goodfn = NULL_TREE;
18608
18609 /* If we got some explicit template args, we need to plug them into
18610 the affected templates before we try to unify, in case the
18611 explicit args will completely resolve the templates in question. */
18612
18613 tree expl_subargs = TREE_OPERAND (expr, 1);
18614 tree arg = TREE_OPERAND (expr, 0);
18615 tree badfn = NULL_TREE;
18616 tree badargs = NULL_TREE;
18617
18618 for (; arg; arg = OVL_NEXT (arg))
18619 {
18620 tree fn = OVL_CURRENT (arg);
18621 tree subargs, elem;
18622
18623 if (TREE_CODE (fn) != TEMPLATE_DECL)
18624 continue;
18625
18626 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18627 expl_subargs, NULL_TREE, tf_none,
18628 /*require_all_args=*/true,
18629 /*use_default_args=*/true);
18630 if (subargs != error_mark_node
18631 && !any_dependent_template_arguments_p (subargs))
18632 {
18633 elem = instantiate_template (fn, subargs, tf_none);
18634 if (elem == error_mark_node)
18635 {
18636 badfn = fn;
18637 badargs = subargs;
18638 }
18639 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18640 {
18641 goodfn = elem;
18642 ++good;
18643 }
18644 }
18645 }
18646 if (good == 1)
18647 {
18648 mark_used (goodfn);
18649 expr = goodfn;
18650 if (baselink)
18651 expr = build_baselink (BASELINK_BINFO (baselink),
18652 BASELINK_ACCESS_BINFO (baselink),
18653 expr, BASELINK_OPTYPE (baselink));
18654 if (offset)
18655 {
18656 tree base
18657 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18658 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
18659 }
18660 if (addr)
18661 expr = cp_build_addr_expr (expr, tf_warning_or_error);
18662 return expr;
18663 }
18664 else if (good == 0 && badargs)
18665 /* There were no good options and at least one bad one, so let the
18666 user know what the problem is. */
18667 instantiate_template (badfn, badargs, tf_warning_or_error);
18668 }
18669 return orig_expr;
18670 }
18671
18672 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18673 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18674 different overloads deduce different arguments for a given parm.
18675 ADDR_P is true if the expression for which deduction is being
18676 performed was of the form "& fn" rather than simply "fn".
18677
18678 Returns 1 on success. */
18679
18680 static int
18681 try_one_overload (tree tparms,
18682 tree orig_targs,
18683 tree targs,
18684 tree parm,
18685 tree arg,
18686 unification_kind_t strict,
18687 int sub_strict,
18688 bool addr_p,
18689 bool explain_p)
18690 {
18691 int nargs;
18692 tree tempargs;
18693 int i;
18694
18695 if (arg == error_mark_node)
18696 return 0;
18697
18698 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18699 to function or pointer to member function argument if the set of
18700 overloaded functions does not contain function templates and at most
18701 one of a set of overloaded functions provides a unique match.
18702
18703 So if this is a template, just return success. */
18704
18705 if (uses_template_parms (arg))
18706 return 1;
18707
18708 if (TREE_CODE (arg) == METHOD_TYPE)
18709 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18710 else if (addr_p)
18711 arg = build_pointer_type (arg);
18712
18713 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18714
18715 /* We don't copy orig_targs for this because if we have already deduced
18716 some template args from previous args, unify would complain when we
18717 try to deduce a template parameter for the same argument, even though
18718 there isn't really a conflict. */
18719 nargs = TREE_VEC_LENGTH (targs);
18720 tempargs = make_tree_vec (nargs);
18721
18722 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18723 return 0;
18724
18725 /* First make sure we didn't deduce anything that conflicts with
18726 explicitly specified args. */
18727 for (i = nargs; i--; )
18728 {
18729 tree elt = TREE_VEC_ELT (tempargs, i);
18730 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18731
18732 if (!elt)
18733 /*NOP*/;
18734 else if (uses_template_parms (elt))
18735 /* Since we're unifying against ourselves, we will fill in
18736 template args used in the function parm list with our own
18737 template parms. Discard them. */
18738 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18739 else if (oldelt && !template_args_equal (oldelt, elt))
18740 return 0;
18741 }
18742
18743 for (i = nargs; i--; )
18744 {
18745 tree elt = TREE_VEC_ELT (tempargs, i);
18746
18747 if (elt)
18748 TREE_VEC_ELT (targs, i) = elt;
18749 }
18750
18751 return 1;
18752 }
18753
18754 /* PARM is a template class (perhaps with unbound template
18755 parameters). ARG is a fully instantiated type. If ARG can be
18756 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18757 TARGS are as for unify. */
18758
18759 static tree
18760 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18761 bool explain_p)
18762 {
18763 tree copy_of_targs;
18764
18765 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18766 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18767 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18768 return NULL_TREE;
18769
18770 /* We need to make a new template argument vector for the call to
18771 unify. If we used TARGS, we'd clutter it up with the result of
18772 the attempted unification, even if this class didn't work out.
18773 We also don't want to commit ourselves to all the unifications
18774 we've already done, since unification is supposed to be done on
18775 an argument-by-argument basis. In other words, consider the
18776 following pathological case:
18777
18778 template <int I, int J, int K>
18779 struct S {};
18780
18781 template <int I, int J>
18782 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18783
18784 template <int I, int J, int K>
18785 void f(S<I, J, K>, S<I, I, I>);
18786
18787 void g() {
18788 S<0, 0, 0> s0;
18789 S<0, 1, 2> s2;
18790
18791 f(s0, s2);
18792 }
18793
18794 Now, by the time we consider the unification involving `s2', we
18795 already know that we must have `f<0, 0, 0>'. But, even though
18796 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18797 because there are two ways to unify base classes of S<0, 1, 2>
18798 with S<I, I, I>. If we kept the already deduced knowledge, we
18799 would reject the possibility I=1. */
18800 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18801
18802 /* If unification failed, we're done. */
18803 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18804 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18805 return NULL_TREE;
18806
18807 return arg;
18808 }
18809
18810 /* Given a template type PARM and a class type ARG, find the unique
18811 base type in ARG that is an instance of PARM. We do not examine
18812 ARG itself; only its base-classes. If there is not exactly one
18813 appropriate base class, return NULL_TREE. PARM may be the type of
18814 a partial specialization, as well as a plain template type. Used
18815 by unify. */
18816
18817 static enum template_base_result
18818 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18819 bool explain_p, tree *result)
18820 {
18821 tree rval = NULL_TREE;
18822 tree binfo;
18823
18824 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18825
18826 binfo = TYPE_BINFO (complete_type (arg));
18827 if (!binfo)
18828 {
18829 /* The type could not be completed. */
18830 *result = NULL_TREE;
18831 return tbr_incomplete_type;
18832 }
18833
18834 /* Walk in inheritance graph order. The search order is not
18835 important, and this avoids multiple walks of virtual bases. */
18836 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18837 {
18838 tree r = try_class_unification (tparms, targs, parm,
18839 BINFO_TYPE (binfo), explain_p);
18840
18841 if (r)
18842 {
18843 /* If there is more than one satisfactory baseclass, then:
18844
18845 [temp.deduct.call]
18846
18847 If they yield more than one possible deduced A, the type
18848 deduction fails.
18849
18850 applies. */
18851 if (rval && !same_type_p (r, rval))
18852 {
18853 *result = NULL_TREE;
18854 return tbr_ambiguous_baseclass;
18855 }
18856
18857 rval = r;
18858 }
18859 }
18860
18861 *result = rval;
18862 return tbr_success;
18863 }
18864
18865 /* Returns the level of DECL, which declares a template parameter. */
18866
18867 static int
18868 template_decl_level (tree decl)
18869 {
18870 switch (TREE_CODE (decl))
18871 {
18872 case TYPE_DECL:
18873 case TEMPLATE_DECL:
18874 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18875
18876 case PARM_DECL:
18877 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18878
18879 default:
18880 gcc_unreachable ();
18881 }
18882 return 0;
18883 }
18884
18885 /* Decide whether ARG can be unified with PARM, considering only the
18886 cv-qualifiers of each type, given STRICT as documented for unify.
18887 Returns nonzero iff the unification is OK on that basis. */
18888
18889 static int
18890 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18891 {
18892 int arg_quals = cp_type_quals (arg);
18893 int parm_quals = cp_type_quals (parm);
18894
18895 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18896 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18897 {
18898 /* Although a CVR qualifier is ignored when being applied to a
18899 substituted template parameter ([8.3.2]/1 for example), that
18900 does not allow us to unify "const T" with "int&" because both
18901 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
18902 It is ok when we're allowing additional CV qualifiers
18903 at the outer level [14.8.2.1]/3,1st bullet. */
18904 if ((TREE_CODE (arg) == REFERENCE_TYPE
18905 || TREE_CODE (arg) == FUNCTION_TYPE
18906 || TREE_CODE (arg) == METHOD_TYPE)
18907 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
18908 return 0;
18909
18910 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
18911 && (parm_quals & TYPE_QUAL_RESTRICT))
18912 return 0;
18913 }
18914
18915 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18916 && (arg_quals & parm_quals) != parm_quals)
18917 return 0;
18918
18919 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
18920 && (parm_quals & arg_quals) != arg_quals)
18921 return 0;
18922
18923 return 1;
18924 }
18925
18926 /* Determines the LEVEL and INDEX for the template parameter PARM. */
18927 void
18928 template_parm_level_and_index (tree parm, int* level, int* index)
18929 {
18930 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18931 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18932 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18933 {
18934 *index = TEMPLATE_TYPE_IDX (parm);
18935 *level = TEMPLATE_TYPE_LEVEL (parm);
18936 }
18937 else
18938 {
18939 *index = TEMPLATE_PARM_IDX (parm);
18940 *level = TEMPLATE_PARM_LEVEL (parm);
18941 }
18942 }
18943
18944 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
18945 do { \
18946 if (unify (TP, TA, P, A, S, EP)) \
18947 return 1; \
18948 } while (0);
18949
18950 /* Unifies the remaining arguments in PACKED_ARGS with the pack
18951 expansion at the end of PACKED_PARMS. Returns 0 if the type
18952 deduction succeeds, 1 otherwise. STRICT is the same as in
18953 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
18954 call argument list. We'll need to adjust the arguments to make them
18955 types. SUBR tells us if this is from a recursive call to
18956 type_unification_real, or for comparing two template argument
18957 lists. */
18958
18959 static int
18960 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
18961 tree packed_args, unification_kind_t strict,
18962 bool subr, bool explain_p)
18963 {
18964 tree parm
18965 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
18966 tree pattern = PACK_EXPANSION_PATTERN (parm);
18967 tree pack, packs = NULL_TREE;
18968 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
18969
18970 packed_args = expand_template_argument_pack (packed_args);
18971
18972 int len = TREE_VEC_LENGTH (packed_args);
18973
18974 /* Determine the parameter packs we will be deducing from the
18975 pattern, and record their current deductions. */
18976 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
18977 pack; pack = TREE_CHAIN (pack))
18978 {
18979 tree parm_pack = TREE_VALUE (pack);
18980 int idx, level;
18981
18982 /* Determine the index and level of this parameter pack. */
18983 template_parm_level_and_index (parm_pack, &level, &idx);
18984
18985 /* Keep track of the parameter packs and their corresponding
18986 argument packs. */
18987 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
18988 TREE_TYPE (packs) = make_tree_vec (len - start);
18989 }
18990
18991 /* Loop through all of the arguments that have not yet been
18992 unified and unify each with the pattern. */
18993 for (i = start; i < len; i++)
18994 {
18995 tree parm;
18996 bool any_explicit = false;
18997 tree arg = TREE_VEC_ELT (packed_args, i);
18998
18999 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19000 or the element of its argument pack at the current index if
19001 this argument was explicitly specified. */
19002 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19003 {
19004 int idx, level;
19005 tree arg, pargs;
19006 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19007
19008 arg = NULL_TREE;
19009 if (TREE_VALUE (pack)
19010 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19011 && (i - start < TREE_VEC_LENGTH (pargs)))
19012 {
19013 any_explicit = true;
19014 arg = TREE_VEC_ELT (pargs, i - start);
19015 }
19016 TMPL_ARG (targs, level, idx) = arg;
19017 }
19018
19019 /* If we had explicit template arguments, substitute them into the
19020 pattern before deduction. */
19021 if (any_explicit)
19022 {
19023 /* Some arguments might still be unspecified or dependent. */
19024 bool dependent;
19025 ++processing_template_decl;
19026 dependent = any_dependent_template_arguments_p (targs);
19027 if (!dependent)
19028 --processing_template_decl;
19029 parm = tsubst (pattern, targs,
19030 explain_p ? tf_warning_or_error : tf_none,
19031 NULL_TREE);
19032 if (dependent)
19033 --processing_template_decl;
19034 if (parm == error_mark_node)
19035 return 1;
19036 }
19037 else
19038 parm = pattern;
19039
19040 /* Unify the pattern with the current argument. */
19041 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19042 explain_p))
19043 return 1;
19044
19045 /* For each parameter pack, collect the deduced value. */
19046 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19047 {
19048 int idx, level;
19049 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19050
19051 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19052 TMPL_ARG (targs, level, idx);
19053 }
19054 }
19055
19056 /* Verify that the results of unification with the parameter packs
19057 produce results consistent with what we've seen before, and make
19058 the deduced argument packs available. */
19059 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19060 {
19061 tree old_pack = TREE_VALUE (pack);
19062 tree new_args = TREE_TYPE (pack);
19063 int i, len = TREE_VEC_LENGTH (new_args);
19064 int idx, level;
19065 bool nondeduced_p = false;
19066
19067 /* By default keep the original deduced argument pack.
19068 If necessary, more specific code is going to update the
19069 resulting deduced argument later down in this function. */
19070 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19071 TMPL_ARG (targs, level, idx) = old_pack;
19072
19073 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19074 actually deduce anything. */
19075 for (i = 0; i < len && !nondeduced_p; ++i)
19076 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19077 nondeduced_p = true;
19078 if (nondeduced_p)
19079 continue;
19080
19081 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19082 {
19083 /* If we had fewer function args than explicit template args,
19084 just use the explicits. */
19085 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19086 int explicit_len = TREE_VEC_LENGTH (explicit_args);
19087 if (len < explicit_len)
19088 new_args = explicit_args;
19089 }
19090
19091 if (!old_pack)
19092 {
19093 tree result;
19094 /* Build the deduced *_ARGUMENT_PACK. */
19095 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
19096 {
19097 result = make_node (NONTYPE_ARGUMENT_PACK);
19098 TREE_TYPE (result) =
19099 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
19100 TREE_CONSTANT (result) = 1;
19101 }
19102 else
19103 result = cxx_make_type (TYPE_ARGUMENT_PACK);
19104
19105 SET_ARGUMENT_PACK_ARGS (result, new_args);
19106
19107 /* Note the deduced argument packs for this parameter
19108 pack. */
19109 TMPL_ARG (targs, level, idx) = result;
19110 }
19111 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
19112 && (ARGUMENT_PACK_ARGS (old_pack)
19113 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
19114 {
19115 /* We only had the explicitly-provided arguments before, but
19116 now we have a complete set of arguments. */
19117 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19118
19119 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
19120 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
19121 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
19122 }
19123 else
19124 {
19125 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
19126 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
19127
19128 if (!comp_template_args (old_args, new_args,
19129 &bad_old_arg, &bad_new_arg))
19130 /* Inconsistent unification of this parameter pack. */
19131 return unify_parameter_pack_inconsistent (explain_p,
19132 bad_old_arg,
19133 bad_new_arg);
19134 }
19135 }
19136
19137 return unify_success (explain_p);
19138 }
19139
19140 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19141 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19142 parameters and return value are as for unify. */
19143
19144 static int
19145 unify_array_domain (tree tparms, tree targs,
19146 tree parm_dom, tree arg_dom,
19147 bool explain_p)
19148 {
19149 tree parm_max;
19150 tree arg_max;
19151 bool parm_cst;
19152 bool arg_cst;
19153
19154 /* Our representation of array types uses "N - 1" as the
19155 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19156 not an integer constant. We cannot unify arbitrarily
19157 complex expressions, so we eliminate the MINUS_EXPRs
19158 here. */
19159 parm_max = TYPE_MAX_VALUE (parm_dom);
19160 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19161 if (!parm_cst)
19162 {
19163 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19164 parm_max = TREE_OPERAND (parm_max, 0);
19165 }
19166 arg_max = TYPE_MAX_VALUE (arg_dom);
19167 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19168 if (!arg_cst)
19169 {
19170 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19171 trying to unify the type of a variable with the type
19172 of a template parameter. For example:
19173
19174 template <unsigned int N>
19175 void f (char (&) [N]);
19176 int g();
19177 void h(int i) {
19178 char a[g(i)];
19179 f(a);
19180 }
19181
19182 Here, the type of the ARG will be "int [g(i)]", and
19183 may be a SAVE_EXPR, etc. */
19184 if (TREE_CODE (arg_max) != MINUS_EXPR)
19185 return unify_vla_arg (explain_p, arg_dom);
19186 arg_max = TREE_OPERAND (arg_max, 0);
19187 }
19188
19189 /* If only one of the bounds used a MINUS_EXPR, compensate
19190 by adding one to the other bound. */
19191 if (parm_cst && !arg_cst)
19192 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19193 integer_type_node,
19194 parm_max,
19195 integer_one_node);
19196 else if (arg_cst && !parm_cst)
19197 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19198 integer_type_node,
19199 arg_max,
19200 integer_one_node);
19201
19202 return unify (tparms, targs, parm_max, arg_max,
19203 UNIFY_ALLOW_INTEGER, explain_p);
19204 }
19205
19206 /* Deduce the value of template parameters. TPARMS is the (innermost)
19207 set of template parameters to a template. TARGS is the bindings
19208 for those template parameters, as determined thus far; TARGS may
19209 include template arguments for outer levels of template parameters
19210 as well. PARM is a parameter to a template function, or a
19211 subcomponent of that parameter; ARG is the corresponding argument.
19212 This function attempts to match PARM with ARG in a manner
19213 consistent with the existing assignments in TARGS. If more values
19214 are deduced, then TARGS is updated.
19215
19216 Returns 0 if the type deduction succeeds, 1 otherwise. The
19217 parameter STRICT is a bitwise or of the following flags:
19218
19219 UNIFY_ALLOW_NONE:
19220 Require an exact match between PARM and ARG.
19221 UNIFY_ALLOW_MORE_CV_QUAL:
19222 Allow the deduced ARG to be more cv-qualified (by qualification
19223 conversion) than ARG.
19224 UNIFY_ALLOW_LESS_CV_QUAL:
19225 Allow the deduced ARG to be less cv-qualified than ARG.
19226 UNIFY_ALLOW_DERIVED:
19227 Allow the deduced ARG to be a template base class of ARG,
19228 or a pointer to a template base class of the type pointed to by
19229 ARG.
19230 UNIFY_ALLOW_INTEGER:
19231 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19232 case for more information.
19233 UNIFY_ALLOW_OUTER_LEVEL:
19234 This is the outermost level of a deduction. Used to determine validity
19235 of qualification conversions. A valid qualification conversion must
19236 have const qualified pointers leading up to the inner type which
19237 requires additional CV quals, except at the outer level, where const
19238 is not required [conv.qual]. It would be normal to set this flag in
19239 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19240 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19241 This is the outermost level of a deduction, and PARM can be more CV
19242 qualified at this point.
19243 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19244 This is the outermost level of a deduction, and PARM can be less CV
19245 qualified at this point. */
19246
19247 static int
19248 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19249 bool explain_p)
19250 {
19251 int idx;
19252 tree targ;
19253 tree tparm;
19254 int strict_in = strict;
19255
19256 /* I don't think this will do the right thing with respect to types.
19257 But the only case I've seen it in so far has been array bounds, where
19258 signedness is the only information lost, and I think that will be
19259 okay. */
19260 while (TREE_CODE (parm) == NOP_EXPR)
19261 parm = TREE_OPERAND (parm, 0);
19262
19263 if (arg == error_mark_node)
19264 return unify_invalid (explain_p);
19265 if (arg == unknown_type_node
19266 || arg == init_list_type_node)
19267 /* We can't deduce anything from this, but we might get all the
19268 template args from other function args. */
19269 return unify_success (explain_p);
19270
19271 /* If PARM uses template parameters, then we can't bail out here,
19272 even if ARG == PARM, since we won't record unifications for the
19273 template parameters. We might need them if we're trying to
19274 figure out which of two things is more specialized. */
19275 if (arg == parm && !uses_template_parms (parm))
19276 return unify_success (explain_p);
19277
19278 /* Handle init lists early, so the rest of the function can assume
19279 we're dealing with a type. */
19280 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19281 {
19282 tree elt, elttype;
19283 unsigned i;
19284 tree orig_parm = parm;
19285
19286 /* Replace T with std::initializer_list<T> for deduction. */
19287 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19288 && flag_deduce_init_list)
19289 parm = listify (parm);
19290
19291 if (!is_std_init_list (parm)
19292 && TREE_CODE (parm) != ARRAY_TYPE)
19293 /* We can only deduce from an initializer list argument if the
19294 parameter is std::initializer_list or an array; otherwise this
19295 is a non-deduced context. */
19296 return unify_success (explain_p);
19297
19298 if (TREE_CODE (parm) == ARRAY_TYPE)
19299 elttype = TREE_TYPE (parm);
19300 else
19301 {
19302 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19303 /* Deduction is defined in terms of a single type, so just punt
19304 on the (bizarre) std::initializer_list<T...>. */
19305 if (PACK_EXPANSION_P (elttype))
19306 return unify_success (explain_p);
19307 }
19308
19309 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19310 {
19311 int elt_strict = strict;
19312
19313 if (elt == error_mark_node)
19314 return unify_invalid (explain_p);
19315
19316 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19317 {
19318 tree type = TREE_TYPE (elt);
19319 if (type == error_mark_node)
19320 return unify_invalid (explain_p);
19321 /* It should only be possible to get here for a call. */
19322 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19323 elt_strict |= maybe_adjust_types_for_deduction
19324 (DEDUCE_CALL, &elttype, &type, elt);
19325 elt = type;
19326 }
19327
19328 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19329 explain_p);
19330 }
19331
19332 if (TREE_CODE (parm) == ARRAY_TYPE
19333 && deducible_array_bound (TYPE_DOMAIN (parm)))
19334 {
19335 /* Also deduce from the length of the initializer list. */
19336 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19337 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19338 if (idx == error_mark_node)
19339 return unify_invalid (explain_p);
19340 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19341 idx, explain_p);
19342 }
19343
19344 /* If the std::initializer_list<T> deduction worked, replace the
19345 deduced A with std::initializer_list<A>. */
19346 if (orig_parm != parm)
19347 {
19348 idx = TEMPLATE_TYPE_IDX (orig_parm);
19349 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19350 targ = listify (targ);
19351 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19352 }
19353 return unify_success (explain_p);
19354 }
19355
19356 /* Immediately reject some pairs that won't unify because of
19357 cv-qualification mismatches. */
19358 if (TREE_CODE (arg) == TREE_CODE (parm)
19359 && TYPE_P (arg)
19360 /* It is the elements of the array which hold the cv quals of an array
19361 type, and the elements might be template type parms. We'll check
19362 when we recurse. */
19363 && TREE_CODE (arg) != ARRAY_TYPE
19364 /* We check the cv-qualifiers when unifying with template type
19365 parameters below. We want to allow ARG `const T' to unify with
19366 PARM `T' for example, when computing which of two templates
19367 is more specialized, for example. */
19368 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19369 && !check_cv_quals_for_unify (strict_in, arg, parm))
19370 return unify_cv_qual_mismatch (explain_p, parm, arg);
19371
19372 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19373 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19374 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19375 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19376 strict &= ~UNIFY_ALLOW_DERIVED;
19377 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19378 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19379
19380 switch (TREE_CODE (parm))
19381 {
19382 case TYPENAME_TYPE:
19383 case SCOPE_REF:
19384 case UNBOUND_CLASS_TEMPLATE:
19385 /* In a type which contains a nested-name-specifier, template
19386 argument values cannot be deduced for template parameters used
19387 within the nested-name-specifier. */
19388 return unify_success (explain_p);
19389
19390 case TEMPLATE_TYPE_PARM:
19391 case TEMPLATE_TEMPLATE_PARM:
19392 case BOUND_TEMPLATE_TEMPLATE_PARM:
19393 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19394 if (error_operand_p (tparm))
19395 return unify_invalid (explain_p);
19396
19397 if (TEMPLATE_TYPE_LEVEL (parm)
19398 != template_decl_level (tparm))
19399 /* The PARM is not one we're trying to unify. Just check
19400 to see if it matches ARG. */
19401 {
19402 if (TREE_CODE (arg) == TREE_CODE (parm)
19403 && (is_auto (parm) ? is_auto (arg)
19404 : same_type_p (parm, arg)))
19405 return unify_success (explain_p);
19406 else
19407 return unify_type_mismatch (explain_p, parm, arg);
19408 }
19409 idx = TEMPLATE_TYPE_IDX (parm);
19410 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19411 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19412 if (error_operand_p (tparm))
19413 return unify_invalid (explain_p);
19414
19415 /* Check for mixed types and values. */
19416 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19417 && TREE_CODE (tparm) != TYPE_DECL)
19418 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19419 && TREE_CODE (tparm) != TEMPLATE_DECL))
19420 gcc_unreachable ();
19421
19422 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19423 {
19424 /* ARG must be constructed from a template class or a template
19425 template parameter. */
19426 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19427 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19428 return unify_template_deduction_failure (explain_p, parm, arg);
19429 {
19430 tree parmvec = TYPE_TI_ARGS (parm);
19431 /* An alias template name is never deduced. */
19432 if (TYPE_ALIAS_P (arg))
19433 arg = strip_typedefs (arg);
19434 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19435 tree full_argvec = add_to_template_args (targs, argvec);
19436 tree parm_parms
19437 = DECL_INNERMOST_TEMPLATE_PARMS
19438 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19439 int i, len;
19440 int parm_variadic_p = 0;
19441
19442 /* The resolution to DR150 makes clear that default
19443 arguments for an N-argument may not be used to bind T
19444 to a template template parameter with fewer than N
19445 parameters. It is not safe to permit the binding of
19446 default arguments as an extension, as that may change
19447 the meaning of a conforming program. Consider:
19448
19449 struct Dense { static const unsigned int dim = 1; };
19450
19451 template <template <typename> class View,
19452 typename Block>
19453 void operator+(float, View<Block> const&);
19454
19455 template <typename Block,
19456 unsigned int Dim = Block::dim>
19457 struct Lvalue_proxy { operator float() const; };
19458
19459 void
19460 test_1d (void) {
19461 Lvalue_proxy<Dense> p;
19462 float b;
19463 b + p;
19464 }
19465
19466 Here, if Lvalue_proxy is permitted to bind to View, then
19467 the global operator+ will be used; if they are not, the
19468 Lvalue_proxy will be converted to float. */
19469 if (coerce_template_parms (parm_parms,
19470 full_argvec,
19471 TYPE_TI_TEMPLATE (parm),
19472 (explain_p
19473 ? tf_warning_or_error
19474 : tf_none),
19475 /*require_all_args=*/true,
19476 /*use_default_args=*/false)
19477 == error_mark_node)
19478 return 1;
19479
19480 /* Deduce arguments T, i from TT<T> or TT<i>.
19481 We check each element of PARMVEC and ARGVEC individually
19482 rather than the whole TREE_VEC since they can have
19483 different number of elements. */
19484
19485 parmvec = expand_template_argument_pack (parmvec);
19486 argvec = expand_template_argument_pack (argvec);
19487
19488 len = TREE_VEC_LENGTH (parmvec);
19489
19490 /* Check if the parameters end in a pack, making them
19491 variadic. */
19492 if (len > 0
19493 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19494 parm_variadic_p = 1;
19495
19496 for (i = 0; i < len - parm_variadic_p; ++i)
19497 /* If the template argument list of P contains a pack
19498 expansion that is not the last template argument, the
19499 entire template argument list is a non-deduced
19500 context. */
19501 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19502 return unify_success (explain_p);
19503
19504 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19505 return unify_too_few_arguments (explain_p,
19506 TREE_VEC_LENGTH (argvec), len);
19507
19508 for (i = 0; i < len - parm_variadic_p; ++i)
19509 {
19510 RECUR_AND_CHECK_FAILURE (tparms, targs,
19511 TREE_VEC_ELT (parmvec, i),
19512 TREE_VEC_ELT (argvec, i),
19513 UNIFY_ALLOW_NONE, explain_p);
19514 }
19515
19516 if (parm_variadic_p
19517 && unify_pack_expansion (tparms, targs,
19518 parmvec, argvec,
19519 DEDUCE_EXACT,
19520 /*subr=*/true, explain_p))
19521 return 1;
19522 }
19523 arg = TYPE_TI_TEMPLATE (arg);
19524
19525 /* Fall through to deduce template name. */
19526 }
19527
19528 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19529 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19530 {
19531 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19532
19533 /* Simple cases: Value already set, does match or doesn't. */
19534 if (targ != NULL_TREE && template_args_equal (targ, arg))
19535 return unify_success (explain_p);
19536 else if (targ)
19537 return unify_inconsistency (explain_p, parm, targ, arg);
19538 }
19539 else
19540 {
19541 /* If PARM is `const T' and ARG is only `int', we don't have
19542 a match unless we are allowing additional qualification.
19543 If ARG is `const int' and PARM is just `T' that's OK;
19544 that binds `const int' to `T'. */
19545 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19546 arg, parm))
19547 return unify_cv_qual_mismatch (explain_p, parm, arg);
19548
19549 /* Consider the case where ARG is `const volatile int' and
19550 PARM is `const T'. Then, T should be `volatile int'. */
19551 arg = cp_build_qualified_type_real
19552 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19553 if (arg == error_mark_node)
19554 return unify_invalid (explain_p);
19555
19556 /* Simple cases: Value already set, does match or doesn't. */
19557 if (targ != NULL_TREE && same_type_p (targ, arg))
19558 return unify_success (explain_p);
19559 else if (targ)
19560 return unify_inconsistency (explain_p, parm, targ, arg);
19561
19562 /* Make sure that ARG is not a variable-sized array. (Note
19563 that were talking about variable-sized arrays (like
19564 `int[n]'), rather than arrays of unknown size (like
19565 `int[]').) We'll get very confused by such a type since
19566 the bound of the array is not constant, and therefore
19567 not mangleable. Besides, such types are not allowed in
19568 ISO C++, so we can do as we please here. We do allow
19569 them for 'auto' deduction, since that isn't ABI-exposed. */
19570 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19571 return unify_vla_arg (explain_p, arg);
19572
19573 /* Strip typedefs as in convert_template_argument. */
19574 arg = canonicalize_type_argument (arg, tf_none);
19575 }
19576
19577 /* If ARG is a parameter pack or an expansion, we cannot unify
19578 against it unless PARM is also a parameter pack. */
19579 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19580 && !template_parameter_pack_p (parm))
19581 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19582
19583 /* If the argument deduction results is a METHOD_TYPE,
19584 then there is a problem.
19585 METHOD_TYPE doesn't map to any real C++ type the result of
19586 the deduction can not be of that type. */
19587 if (TREE_CODE (arg) == METHOD_TYPE)
19588 return unify_method_type_error (explain_p, arg);
19589
19590 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19591 return unify_success (explain_p);
19592
19593 case TEMPLATE_PARM_INDEX:
19594 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19595 if (error_operand_p (tparm))
19596 return unify_invalid (explain_p);
19597
19598 if (TEMPLATE_PARM_LEVEL (parm)
19599 != template_decl_level (tparm))
19600 {
19601 /* The PARM is not one we're trying to unify. Just check
19602 to see if it matches ARG. */
19603 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19604 && cp_tree_equal (parm, arg));
19605 if (result)
19606 unify_expression_unequal (explain_p, parm, arg);
19607 return result;
19608 }
19609
19610 idx = TEMPLATE_PARM_IDX (parm);
19611 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19612
19613 if (targ)
19614 {
19615 int x = !cp_tree_equal (targ, arg);
19616 if (x)
19617 unify_inconsistency (explain_p, parm, targ, arg);
19618 return x;
19619 }
19620
19621 /* [temp.deduct.type] If, in the declaration of a function template
19622 with a non-type template-parameter, the non-type
19623 template-parameter is used in an expression in the function
19624 parameter-list and, if the corresponding template-argument is
19625 deduced, the template-argument type shall match the type of the
19626 template-parameter exactly, except that a template-argument
19627 deduced from an array bound may be of any integral type.
19628 The non-type parameter might use already deduced type parameters. */
19629 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19630 if (!TREE_TYPE (arg))
19631 /* Template-parameter dependent expression. Just accept it for now.
19632 It will later be processed in convert_template_argument. */
19633 ;
19634 else if (same_type_p (TREE_TYPE (arg), tparm))
19635 /* OK */;
19636 else if ((strict & UNIFY_ALLOW_INTEGER)
19637 && CP_INTEGRAL_TYPE_P (tparm))
19638 /* Convert the ARG to the type of PARM; the deduced non-type
19639 template argument must exactly match the types of the
19640 corresponding parameter. */
19641 arg = fold (build_nop (tparm, arg));
19642 else if (uses_template_parms (tparm))
19643 /* We haven't deduced the type of this parameter yet. Try again
19644 later. */
19645 return unify_success (explain_p);
19646 else
19647 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19648
19649 /* If ARG is a parameter pack or an expansion, we cannot unify
19650 against it unless PARM is also a parameter pack. */
19651 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19652 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19653 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19654
19655 {
19656 bool removed_attr = false;
19657 arg = strip_typedefs_expr (arg, &removed_attr);
19658 }
19659 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19660 return unify_success (explain_p);
19661
19662 case PTRMEM_CST:
19663 {
19664 /* A pointer-to-member constant can be unified only with
19665 another constant. */
19666 if (TREE_CODE (arg) != PTRMEM_CST)
19667 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19668
19669 /* Just unify the class member. It would be useless (and possibly
19670 wrong, depending on the strict flags) to unify also
19671 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19672 arg refer to the same variable, even if through different
19673 classes. For instance:
19674
19675 struct A { int x; };
19676 struct B : A { };
19677
19678 Unification of &A::x and &B::x must succeed. */
19679 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19680 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19681 }
19682
19683 case POINTER_TYPE:
19684 {
19685 if (!TYPE_PTR_P (arg))
19686 return unify_type_mismatch (explain_p, parm, arg);
19687
19688 /* [temp.deduct.call]
19689
19690 A can be another pointer or pointer to member type that can
19691 be converted to the deduced A via a qualification
19692 conversion (_conv.qual_).
19693
19694 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19695 This will allow for additional cv-qualification of the
19696 pointed-to types if appropriate. */
19697
19698 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19699 /* The derived-to-base conversion only persists through one
19700 level of pointers. */
19701 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19702
19703 return unify (tparms, targs, TREE_TYPE (parm),
19704 TREE_TYPE (arg), strict, explain_p);
19705 }
19706
19707 case REFERENCE_TYPE:
19708 if (TREE_CODE (arg) != REFERENCE_TYPE)
19709 return unify_type_mismatch (explain_p, parm, arg);
19710 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19711 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19712
19713 case ARRAY_TYPE:
19714 if (TREE_CODE (arg) != ARRAY_TYPE)
19715 return unify_type_mismatch (explain_p, parm, arg);
19716 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19717 != (TYPE_DOMAIN (arg) == NULL_TREE))
19718 return unify_type_mismatch (explain_p, parm, arg);
19719 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19720 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19721 if (TYPE_DOMAIN (parm) != NULL_TREE)
19722 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19723 TYPE_DOMAIN (arg), explain_p);
19724 return unify_success (explain_p);
19725
19726 case REAL_TYPE:
19727 case COMPLEX_TYPE:
19728 case VECTOR_TYPE:
19729 case INTEGER_TYPE:
19730 case BOOLEAN_TYPE:
19731 case ENUMERAL_TYPE:
19732 case VOID_TYPE:
19733 case NULLPTR_TYPE:
19734 if (TREE_CODE (arg) != TREE_CODE (parm))
19735 return unify_type_mismatch (explain_p, parm, arg);
19736
19737 /* We have already checked cv-qualification at the top of the
19738 function. */
19739 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19740 return unify_type_mismatch (explain_p, parm, arg);
19741
19742 /* As far as unification is concerned, this wins. Later checks
19743 will invalidate it if necessary. */
19744 return unify_success (explain_p);
19745
19746 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19747 /* Type INTEGER_CST can come from ordinary constant template args. */
19748 case INTEGER_CST:
19749 while (TREE_CODE (arg) == NOP_EXPR)
19750 arg = TREE_OPERAND (arg, 0);
19751
19752 if (TREE_CODE (arg) != INTEGER_CST)
19753 return unify_template_argument_mismatch (explain_p, parm, arg);
19754 return (tree_int_cst_equal (parm, arg)
19755 ? unify_success (explain_p)
19756 : unify_template_argument_mismatch (explain_p, parm, arg));
19757
19758 case TREE_VEC:
19759 {
19760 int i, len, argslen;
19761 int parm_variadic_p = 0;
19762
19763 if (TREE_CODE (arg) != TREE_VEC)
19764 return unify_template_argument_mismatch (explain_p, parm, arg);
19765
19766 len = TREE_VEC_LENGTH (parm);
19767 argslen = TREE_VEC_LENGTH (arg);
19768
19769 /* Check for pack expansions in the parameters. */
19770 for (i = 0; i < len; ++i)
19771 {
19772 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19773 {
19774 if (i == len - 1)
19775 /* We can unify against something with a trailing
19776 parameter pack. */
19777 parm_variadic_p = 1;
19778 else
19779 /* [temp.deduct.type]/9: If the template argument list of
19780 P contains a pack expansion that is not the last
19781 template argument, the entire template argument list
19782 is a non-deduced context. */
19783 return unify_success (explain_p);
19784 }
19785 }
19786
19787 /* If we don't have enough arguments to satisfy the parameters
19788 (not counting the pack expression at the end), or we have
19789 too many arguments for a parameter list that doesn't end in
19790 a pack expression, we can't unify. */
19791 if (parm_variadic_p
19792 ? argslen < len - parm_variadic_p
19793 : argslen != len)
19794 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19795
19796 /* Unify all of the parameters that precede the (optional)
19797 pack expression. */
19798 for (i = 0; i < len - parm_variadic_p; ++i)
19799 {
19800 RECUR_AND_CHECK_FAILURE (tparms, targs,
19801 TREE_VEC_ELT (parm, i),
19802 TREE_VEC_ELT (arg, i),
19803 UNIFY_ALLOW_NONE, explain_p);
19804 }
19805 if (parm_variadic_p)
19806 return unify_pack_expansion (tparms, targs, parm, arg,
19807 DEDUCE_EXACT,
19808 /*subr=*/true, explain_p);
19809 return unify_success (explain_p);
19810 }
19811
19812 case RECORD_TYPE:
19813 case UNION_TYPE:
19814 if (TREE_CODE (arg) != TREE_CODE (parm))
19815 return unify_type_mismatch (explain_p, parm, arg);
19816
19817 if (TYPE_PTRMEMFUNC_P (parm))
19818 {
19819 if (!TYPE_PTRMEMFUNC_P (arg))
19820 return unify_type_mismatch (explain_p, parm, arg);
19821
19822 return unify (tparms, targs,
19823 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19824 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19825 strict, explain_p);
19826 }
19827 else if (TYPE_PTRMEMFUNC_P (arg))
19828 return unify_type_mismatch (explain_p, parm, arg);
19829
19830 if (CLASSTYPE_TEMPLATE_INFO (parm))
19831 {
19832 tree t = NULL_TREE;
19833
19834 if (strict_in & UNIFY_ALLOW_DERIVED)
19835 {
19836 /* First, we try to unify the PARM and ARG directly. */
19837 t = try_class_unification (tparms, targs,
19838 parm, arg, explain_p);
19839
19840 if (!t)
19841 {
19842 /* Fallback to the special case allowed in
19843 [temp.deduct.call]:
19844
19845 If P is a class, and P has the form
19846 template-id, then A can be a derived class of
19847 the deduced A. Likewise, if P is a pointer to
19848 a class of the form template-id, A can be a
19849 pointer to a derived class pointed to by the
19850 deduced A. */
19851 enum template_base_result r;
19852 r = get_template_base (tparms, targs, parm, arg,
19853 explain_p, &t);
19854
19855 if (!t)
19856 {
19857 /* Don't give the derived diagnostic if we're
19858 already dealing with the same template. */
19859 bool same_template
19860 = (CLASSTYPE_TEMPLATE_INFO (arg)
19861 && (CLASSTYPE_TI_TEMPLATE (parm)
19862 == CLASSTYPE_TI_TEMPLATE (arg)));
19863 return unify_no_common_base (explain_p && !same_template,
19864 r, parm, arg);
19865 }
19866 }
19867 }
19868 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19869 && (CLASSTYPE_TI_TEMPLATE (parm)
19870 == CLASSTYPE_TI_TEMPLATE (arg)))
19871 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19872 Then, we should unify `int' and `U'. */
19873 t = arg;
19874 else
19875 /* There's no chance of unification succeeding. */
19876 return unify_type_mismatch (explain_p, parm, arg);
19877
19878 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19879 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19880 }
19881 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19882 return unify_type_mismatch (explain_p, parm, arg);
19883 return unify_success (explain_p);
19884
19885 case METHOD_TYPE:
19886 case FUNCTION_TYPE:
19887 {
19888 unsigned int nargs;
19889 tree *args;
19890 tree a;
19891 unsigned int i;
19892
19893 if (TREE_CODE (arg) != TREE_CODE (parm))
19894 return unify_type_mismatch (explain_p, parm, arg);
19895
19896 /* CV qualifications for methods can never be deduced, they must
19897 match exactly. We need to check them explicitly here,
19898 because type_unification_real treats them as any other
19899 cv-qualified parameter. */
19900 if (TREE_CODE (parm) == METHOD_TYPE
19901 && (!check_cv_quals_for_unify
19902 (UNIFY_ALLOW_NONE,
19903 class_of_this_parm (arg),
19904 class_of_this_parm (parm))))
19905 return unify_cv_qual_mismatch (explain_p, parm, arg);
19906
19907 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
19908 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
19909
19910 nargs = list_length (TYPE_ARG_TYPES (arg));
19911 args = XALLOCAVEC (tree, nargs);
19912 for (a = TYPE_ARG_TYPES (arg), i = 0;
19913 a != NULL_TREE && a != void_list_node;
19914 a = TREE_CHAIN (a), ++i)
19915 args[i] = TREE_VALUE (a);
19916 nargs = i;
19917
19918 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
19919 args, nargs, 1, DEDUCE_EXACT,
19920 LOOKUP_NORMAL, NULL, explain_p);
19921 }
19922
19923 case OFFSET_TYPE:
19924 /* Unify a pointer to member with a pointer to member function, which
19925 deduces the type of the member as a function type. */
19926 if (TYPE_PTRMEMFUNC_P (arg))
19927 {
19928 /* Check top-level cv qualifiers */
19929 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
19930 return unify_cv_qual_mismatch (explain_p, parm, arg);
19931
19932 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19933 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
19934 UNIFY_ALLOW_NONE, explain_p);
19935
19936 /* Determine the type of the function we are unifying against. */
19937 tree fntype = static_fn_type (arg);
19938
19939 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
19940 }
19941
19942 if (TREE_CODE (arg) != OFFSET_TYPE)
19943 return unify_type_mismatch (explain_p, parm, arg);
19944 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19945 TYPE_OFFSET_BASETYPE (arg),
19946 UNIFY_ALLOW_NONE, explain_p);
19947 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19948 strict, explain_p);
19949
19950 case CONST_DECL:
19951 if (DECL_TEMPLATE_PARM_P (parm))
19952 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
19953 if (arg != scalar_constant_value (parm))
19954 return unify_template_argument_mismatch (explain_p, parm, arg);
19955 return unify_success (explain_p);
19956
19957 case FIELD_DECL:
19958 case TEMPLATE_DECL:
19959 /* Matched cases are handled by the ARG == PARM test above. */
19960 return unify_template_argument_mismatch (explain_p, parm, arg);
19961
19962 case VAR_DECL:
19963 /* We might get a variable as a non-type template argument in parm if the
19964 corresponding parameter is type-dependent. Make any necessary
19965 adjustments based on whether arg is a reference. */
19966 if (CONSTANT_CLASS_P (arg))
19967 parm = fold_non_dependent_expr (parm);
19968 else if (REFERENCE_REF_P (arg))
19969 {
19970 tree sub = TREE_OPERAND (arg, 0);
19971 STRIP_NOPS (sub);
19972 if (TREE_CODE (sub) == ADDR_EXPR)
19973 arg = TREE_OPERAND (sub, 0);
19974 }
19975 /* Now use the normal expression code to check whether they match. */
19976 goto expr;
19977
19978 case TYPE_ARGUMENT_PACK:
19979 case NONTYPE_ARGUMENT_PACK:
19980 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
19981 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
19982
19983 case TYPEOF_TYPE:
19984 case DECLTYPE_TYPE:
19985 case UNDERLYING_TYPE:
19986 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
19987 or UNDERLYING_TYPE nodes. */
19988 return unify_success (explain_p);
19989
19990 case ERROR_MARK:
19991 /* Unification fails if we hit an error node. */
19992 return unify_invalid (explain_p);
19993
19994 case INDIRECT_REF:
19995 if (REFERENCE_REF_P (parm))
19996 {
19997 if (REFERENCE_REF_P (arg))
19998 arg = TREE_OPERAND (arg, 0);
19999 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20000 strict, explain_p);
20001 }
20002 /* FALLTHRU */
20003
20004 default:
20005 /* An unresolved overload is a nondeduced context. */
20006 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20007 return unify_success (explain_p);
20008 gcc_assert (EXPR_P (parm));
20009 expr:
20010 /* We must be looking at an expression. This can happen with
20011 something like:
20012
20013 template <int I>
20014 void foo(S<I>, S<I + 2>);
20015
20016 This is a "nondeduced context":
20017
20018 [deduct.type]
20019
20020 The nondeduced contexts are:
20021
20022 --A type that is a template-id in which one or more of
20023 the template-arguments is an expression that references
20024 a template-parameter.
20025
20026 In these cases, we assume deduction succeeded, but don't
20027 actually infer any unifications. */
20028
20029 if (!uses_template_parms (parm)
20030 && !template_args_equal (parm, arg))
20031 return unify_expression_unequal (explain_p, parm, arg);
20032 else
20033 return unify_success (explain_p);
20034 }
20035 }
20036 #undef RECUR_AND_CHECK_FAILURE
20037 \f
20038 /* Note that DECL can be defined in this translation unit, if
20039 required. */
20040
20041 static void
20042 mark_definable (tree decl)
20043 {
20044 tree clone;
20045 DECL_NOT_REALLY_EXTERN (decl) = 1;
20046 FOR_EACH_CLONE (clone, decl)
20047 DECL_NOT_REALLY_EXTERN (clone) = 1;
20048 }
20049
20050 /* Called if RESULT is explicitly instantiated, or is a member of an
20051 explicitly instantiated class. */
20052
20053 void
20054 mark_decl_instantiated (tree result, int extern_p)
20055 {
20056 SET_DECL_EXPLICIT_INSTANTIATION (result);
20057
20058 /* If this entity has already been written out, it's too late to
20059 make any modifications. */
20060 if (TREE_ASM_WRITTEN (result))
20061 return;
20062
20063 /* For anonymous namespace we don't need to do anything. */
20064 if (decl_anon_ns_mem_p (result))
20065 {
20066 gcc_assert (!TREE_PUBLIC (result));
20067 return;
20068 }
20069
20070 if (TREE_CODE (result) != FUNCTION_DECL)
20071 /* The TREE_PUBLIC flag for function declarations will have been
20072 set correctly by tsubst. */
20073 TREE_PUBLIC (result) = 1;
20074
20075 /* This might have been set by an earlier implicit instantiation. */
20076 DECL_COMDAT (result) = 0;
20077
20078 if (extern_p)
20079 DECL_NOT_REALLY_EXTERN (result) = 0;
20080 else
20081 {
20082 mark_definable (result);
20083 mark_needed (result);
20084 /* Always make artificials weak. */
20085 if (DECL_ARTIFICIAL (result) && flag_weak)
20086 comdat_linkage (result);
20087 /* For WIN32 we also want to put explicit instantiations in
20088 linkonce sections. */
20089 else if (TREE_PUBLIC (result))
20090 maybe_make_one_only (result);
20091 }
20092
20093 /* If EXTERN_P, then this function will not be emitted -- unless
20094 followed by an explicit instantiation, at which point its linkage
20095 will be adjusted. If !EXTERN_P, then this function will be
20096 emitted here. In neither circumstance do we want
20097 import_export_decl to adjust the linkage. */
20098 DECL_INTERFACE_KNOWN (result) = 1;
20099 }
20100
20101 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
20102 important template arguments. If any are missing, we check whether
20103 they're important by using error_mark_node for substituting into any
20104 args that were used for partial ordering (the ones between ARGS and END)
20105 and seeing if it bubbles up. */
20106
20107 static bool
20108 check_undeduced_parms (tree targs, tree args, tree end)
20109 {
20110 bool found = false;
20111 int i;
20112 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
20113 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
20114 {
20115 found = true;
20116 TREE_VEC_ELT (targs, i) = error_mark_node;
20117 }
20118 if (found)
20119 {
20120 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
20121 if (substed == error_mark_node)
20122 return true;
20123 }
20124 return false;
20125 }
20126
20127 /* Given two function templates PAT1 and PAT2, return:
20128
20129 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20130 -1 if PAT2 is more specialized than PAT1.
20131 0 if neither is more specialized.
20132
20133 LEN indicates the number of parameters we should consider
20134 (defaulted parameters should not be considered).
20135
20136 The 1998 std underspecified function template partial ordering, and
20137 DR214 addresses the issue. We take pairs of arguments, one from
20138 each of the templates, and deduce them against each other. One of
20139 the templates will be more specialized if all the *other*
20140 template's arguments deduce against its arguments and at least one
20141 of its arguments *does* *not* deduce against the other template's
20142 corresponding argument. Deduction is done as for class templates.
20143 The arguments used in deduction have reference and top level cv
20144 qualifiers removed. Iff both arguments were originally reference
20145 types *and* deduction succeeds in both directions, an lvalue reference
20146 wins against an rvalue reference and otherwise the template
20147 with the more cv-qualified argument wins for that pairing (if
20148 neither is more cv-qualified, they both are equal). Unlike regular
20149 deduction, after all the arguments have been deduced in this way,
20150 we do *not* verify the deduced template argument values can be
20151 substituted into non-deduced contexts.
20152
20153 The logic can be a bit confusing here, because we look at deduce1 and
20154 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20155 can find template arguments for pat1 to make arg1 look like arg2, that
20156 means that arg2 is at least as specialized as arg1. */
20157
20158 int
20159 more_specialized_fn (tree pat1, tree pat2, int len)
20160 {
20161 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20162 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20163 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20164 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20165 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20166 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20167 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20168 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20169 tree origs1, origs2;
20170 bool lose1 = false;
20171 bool lose2 = false;
20172
20173 /* Remove the this parameter from non-static member functions. If
20174 one is a non-static member function and the other is not a static
20175 member function, remove the first parameter from that function
20176 also. This situation occurs for operator functions where we
20177 locate both a member function (with this pointer) and non-member
20178 operator (with explicit first operand). */
20179 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20180 {
20181 len--; /* LEN is the number of significant arguments for DECL1 */
20182 args1 = TREE_CHAIN (args1);
20183 if (!DECL_STATIC_FUNCTION_P (decl2))
20184 args2 = TREE_CHAIN (args2);
20185 }
20186 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20187 {
20188 args2 = TREE_CHAIN (args2);
20189 if (!DECL_STATIC_FUNCTION_P (decl1))
20190 {
20191 len--;
20192 args1 = TREE_CHAIN (args1);
20193 }
20194 }
20195
20196 /* If only one is a conversion operator, they are unordered. */
20197 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20198 return 0;
20199
20200 /* Consider the return type for a conversion function */
20201 if (DECL_CONV_FN_P (decl1))
20202 {
20203 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20204 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20205 len++;
20206 }
20207
20208 processing_template_decl++;
20209
20210 origs1 = args1;
20211 origs2 = args2;
20212
20213 while (len--
20214 /* Stop when an ellipsis is seen. */
20215 && args1 != NULL_TREE && args2 != NULL_TREE)
20216 {
20217 tree arg1 = TREE_VALUE (args1);
20218 tree arg2 = TREE_VALUE (args2);
20219 int deduce1, deduce2;
20220 int quals1 = -1;
20221 int quals2 = -1;
20222 int ref1 = 0;
20223 int ref2 = 0;
20224
20225 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20226 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20227 {
20228 /* When both arguments are pack expansions, we need only
20229 unify the patterns themselves. */
20230 arg1 = PACK_EXPANSION_PATTERN (arg1);
20231 arg2 = PACK_EXPANSION_PATTERN (arg2);
20232
20233 /* This is the last comparison we need to do. */
20234 len = 0;
20235 }
20236
20237 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20238 {
20239 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20240 arg1 = TREE_TYPE (arg1);
20241 quals1 = cp_type_quals (arg1);
20242 }
20243
20244 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20245 {
20246 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20247 arg2 = TREE_TYPE (arg2);
20248 quals2 = cp_type_quals (arg2);
20249 }
20250
20251 arg1 = TYPE_MAIN_VARIANT (arg1);
20252 arg2 = TYPE_MAIN_VARIANT (arg2);
20253
20254 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20255 {
20256 int i, len2 = list_length (args2);
20257 tree parmvec = make_tree_vec (1);
20258 tree argvec = make_tree_vec (len2);
20259 tree ta = args2;
20260
20261 /* Setup the parameter vector, which contains only ARG1. */
20262 TREE_VEC_ELT (parmvec, 0) = arg1;
20263
20264 /* Setup the argument vector, which contains the remaining
20265 arguments. */
20266 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20267 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20268
20269 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20270 argvec, DEDUCE_EXACT,
20271 /*subr=*/true, /*explain_p=*/false)
20272 == 0);
20273
20274 /* We cannot deduce in the other direction, because ARG1 is
20275 a pack expansion but ARG2 is not. */
20276 deduce2 = 0;
20277 }
20278 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20279 {
20280 int i, len1 = list_length (args1);
20281 tree parmvec = make_tree_vec (1);
20282 tree argvec = make_tree_vec (len1);
20283 tree ta = args1;
20284
20285 /* Setup the parameter vector, which contains only ARG1. */
20286 TREE_VEC_ELT (parmvec, 0) = arg2;
20287
20288 /* Setup the argument vector, which contains the remaining
20289 arguments. */
20290 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20291 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20292
20293 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20294 argvec, DEDUCE_EXACT,
20295 /*subr=*/true, /*explain_p=*/false)
20296 == 0);
20297
20298 /* We cannot deduce in the other direction, because ARG2 is
20299 a pack expansion but ARG1 is not.*/
20300 deduce1 = 0;
20301 }
20302
20303 else
20304 {
20305 /* The normal case, where neither argument is a pack
20306 expansion. */
20307 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20308 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20309 == 0);
20310 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20311 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20312 == 0);
20313 }
20314
20315 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20316 arg2, then arg2 is not as specialized as arg1. */
20317 if (!deduce1)
20318 lose2 = true;
20319 if (!deduce2)
20320 lose1 = true;
20321
20322 /* "If, for a given type, deduction succeeds in both directions
20323 (i.e., the types are identical after the transformations above)
20324 and both P and A were reference types (before being replaced with
20325 the type referred to above):
20326 - if the type from the argument template was an lvalue reference and
20327 the type from the parameter template was not, the argument type is
20328 considered to be more specialized than the other; otherwise,
20329 - if the type from the argument template is more cv-qualified
20330 than the type from the parameter template (as described above),
20331 the argument type is considered to be more specialized than the other;
20332 otherwise,
20333 - neither type is more specialized than the other." */
20334
20335 if (deduce1 && deduce2)
20336 {
20337 if (ref1 && ref2 && ref1 != ref2)
20338 {
20339 if (ref1 > ref2)
20340 lose1 = true;
20341 else
20342 lose2 = true;
20343 }
20344 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20345 {
20346 if ((quals1 & quals2) == quals2)
20347 lose2 = true;
20348 if ((quals1 & quals2) == quals1)
20349 lose1 = true;
20350 }
20351 }
20352
20353 if (lose1 && lose2)
20354 /* We've failed to deduce something in either direction.
20355 These must be unordered. */
20356 break;
20357
20358 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20359 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20360 /* We have already processed all of the arguments in our
20361 handing of the pack expansion type. */
20362 len = 0;
20363
20364 args1 = TREE_CHAIN (args1);
20365 args2 = TREE_CHAIN (args2);
20366 }
20367
20368 /* "In most cases, all template parameters must have values in order for
20369 deduction to succeed, but for partial ordering purposes a template
20370 parameter may remain without a value provided it is not used in the
20371 types being used for partial ordering."
20372
20373 Thus, if we are missing any of the targs1 we need to substitute into
20374 origs1, then pat2 is not as specialized as pat1. This can happen when
20375 there is a nondeduced context. */
20376 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20377 lose2 = true;
20378 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20379 lose1 = true;
20380
20381 processing_template_decl--;
20382
20383 /* If both deductions succeed, the partial ordering selects the more
20384 constrained template. */
20385 if (!lose1 && !lose2)
20386 {
20387 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20388 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20389 lose1 = !subsumes_constraints (c1, c2);
20390 lose2 = !subsumes_constraints (c2, c1);
20391 }
20392
20393 /* All things being equal, if the next argument is a pack expansion
20394 for one function but not for the other, prefer the
20395 non-variadic function. FIXME this is bogus; see c++/41958. */
20396 if (lose1 == lose2
20397 && args1 && TREE_VALUE (args1)
20398 && args2 && TREE_VALUE (args2))
20399 {
20400 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20401 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20402 }
20403
20404 if (lose1 == lose2)
20405 return 0;
20406 else if (!lose1)
20407 return 1;
20408 else
20409 return -1;
20410 }
20411
20412 /* Determine which of two partial specializations of TMPL is more
20413 specialized.
20414
20415 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20416 to the first partial specialization. The TREE_PURPOSE is the
20417 innermost set of template parameters for the partial
20418 specialization. PAT2 is similar, but for the second template.
20419
20420 Return 1 if the first partial specialization is more specialized;
20421 -1 if the second is more specialized; 0 if neither is more
20422 specialized.
20423
20424 See [temp.class.order] for information about determining which of
20425 two templates is more specialized. */
20426
20427 static int
20428 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20429 {
20430 tree targs;
20431 int winner = 0;
20432 bool any_deductions = false;
20433
20434 tree tmpl1 = TREE_VALUE (pat1);
20435 tree tmpl2 = TREE_VALUE (pat2);
20436 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20437 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20438 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20439 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20440
20441 /* Just like what happens for functions, if we are ordering between
20442 different template specializations, we may encounter dependent
20443 types in the arguments, and we need our dependency check functions
20444 to behave correctly. */
20445 ++processing_template_decl;
20446 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20447 if (targs)
20448 {
20449 --winner;
20450 any_deductions = true;
20451 }
20452
20453 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20454 if (targs)
20455 {
20456 ++winner;
20457 any_deductions = true;
20458 }
20459 --processing_template_decl;
20460
20461 /* If both deductions succeed, the partial ordering selects the more
20462 constrained template. */
20463 if (!winner && any_deductions)
20464 return more_constrained (tmpl1, tmpl2);
20465
20466 /* In the case of a tie where at least one of the templates
20467 has a parameter pack at the end, the template with the most
20468 non-packed parameters wins. */
20469 if (winner == 0
20470 && any_deductions
20471 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20472 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20473 {
20474 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20475 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20476 int len1 = TREE_VEC_LENGTH (args1);
20477 int len2 = TREE_VEC_LENGTH (args2);
20478
20479 /* We don't count the pack expansion at the end. */
20480 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20481 --len1;
20482 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20483 --len2;
20484
20485 if (len1 > len2)
20486 return 1;
20487 else if (len1 < len2)
20488 return -1;
20489 }
20490
20491 return winner;
20492 }
20493
20494 /* Return the template arguments that will produce the function signature
20495 DECL from the function template FN, with the explicit template
20496 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20497 also match. Return NULL_TREE if no satisfactory arguments could be
20498 found. */
20499
20500 static tree
20501 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20502 {
20503 int ntparms = DECL_NTPARMS (fn);
20504 tree targs = make_tree_vec (ntparms);
20505 tree decl_type = TREE_TYPE (decl);
20506 tree decl_arg_types;
20507 tree *args;
20508 unsigned int nargs, ix;
20509 tree arg;
20510
20511 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20512
20513 /* Never do unification on the 'this' parameter. */
20514 decl_arg_types = skip_artificial_parms_for (decl,
20515 TYPE_ARG_TYPES (decl_type));
20516
20517 nargs = list_length (decl_arg_types);
20518 args = XALLOCAVEC (tree, nargs);
20519 for (arg = decl_arg_types, ix = 0;
20520 arg != NULL_TREE && arg != void_list_node;
20521 arg = TREE_CHAIN (arg), ++ix)
20522 args[ix] = TREE_VALUE (arg);
20523
20524 if (fn_type_unification (fn, explicit_args, targs,
20525 args, ix,
20526 (check_rettype || DECL_CONV_FN_P (fn)
20527 ? TREE_TYPE (decl_type) : NULL_TREE),
20528 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20529 /*decltype*/false)
20530 == error_mark_node)
20531 return NULL_TREE;
20532
20533 return targs;
20534 }
20535
20536 /* Return the innermost template arguments that, when applied to a partial
20537 specialization of TMPL whose innermost template parameters are
20538 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20539 ARGS.
20540
20541 For example, suppose we have:
20542
20543 template <class T, class U> struct S {};
20544 template <class T> struct S<T*, int> {};
20545
20546 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20547 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20548 int}. The resulting vector will be {double}, indicating that `T'
20549 is bound to `double'. */
20550
20551 static tree
20552 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20553 {
20554 int i, ntparms = TREE_VEC_LENGTH (tparms);
20555 tree deduced_args;
20556 tree innermost_deduced_args;
20557
20558 innermost_deduced_args = make_tree_vec (ntparms);
20559 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20560 {
20561 deduced_args = copy_node (args);
20562 SET_TMPL_ARGS_LEVEL (deduced_args,
20563 TMPL_ARGS_DEPTH (deduced_args),
20564 innermost_deduced_args);
20565 }
20566 else
20567 deduced_args = innermost_deduced_args;
20568
20569 if (unify (tparms, deduced_args,
20570 INNERMOST_TEMPLATE_ARGS (spec_args),
20571 INNERMOST_TEMPLATE_ARGS (args),
20572 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20573 return NULL_TREE;
20574
20575 for (i = 0; i < ntparms; ++i)
20576 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20577 return NULL_TREE;
20578
20579 /* Verify that nondeduced template arguments agree with the type
20580 obtained from argument deduction.
20581
20582 For example:
20583
20584 struct A { typedef int X; };
20585 template <class T, class U> struct C {};
20586 template <class T> struct C<T, typename T::X> {};
20587
20588 Then with the instantiation `C<A, int>', we can deduce that
20589 `T' is `A' but unify () does not check whether `typename T::X'
20590 is `int'. */
20591 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20592 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20593 spec_args, tmpl,
20594 tf_none, false, false);
20595 if (spec_args == error_mark_node
20596 /* We only need to check the innermost arguments; the other
20597 arguments will always agree. */
20598 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20599 INNERMOST_TEMPLATE_ARGS (args)))
20600 return NULL_TREE;
20601
20602 /* Now that we have bindings for all of the template arguments,
20603 ensure that the arguments deduced for the template template
20604 parameters have compatible template parameter lists. See the use
20605 of template_template_parm_bindings_ok_p in fn_type_unification
20606 for more information. */
20607 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20608 return NULL_TREE;
20609
20610 return deduced_args;
20611 }
20612
20613 // Compare two function templates T1 and T2 by deducing bindings
20614 // from one against the other. If both deductions succeed, compare
20615 // constraints to see which is more constrained.
20616 static int
20617 more_specialized_inst (tree t1, tree t2)
20618 {
20619 int fate = 0;
20620 int count = 0;
20621
20622 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20623 {
20624 --fate;
20625 ++count;
20626 }
20627
20628 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20629 {
20630 ++fate;
20631 ++count;
20632 }
20633
20634 // If both deductions succeed, then one may be more constrained.
20635 if (count == 2 && fate == 0)
20636 fate = more_constrained (t1, t2);
20637
20638 return fate;
20639 }
20640
20641 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20642 Return the TREE_LIST node with the most specialized template, if
20643 any. If there is no most specialized template, the error_mark_node
20644 is returned.
20645
20646 Note that this function does not look at, or modify, the
20647 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20648 returned is one of the elements of INSTANTIATIONS, callers may
20649 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20650 and retrieve it from the value returned. */
20651
20652 tree
20653 most_specialized_instantiation (tree templates)
20654 {
20655 tree fn, champ;
20656
20657 ++processing_template_decl;
20658
20659 champ = templates;
20660 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20661 {
20662 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20663 if (fate == -1)
20664 champ = fn;
20665 else if (!fate)
20666 {
20667 /* Equally specialized, move to next function. If there
20668 is no next function, nothing's most specialized. */
20669 fn = TREE_CHAIN (fn);
20670 champ = fn;
20671 if (!fn)
20672 break;
20673 }
20674 }
20675
20676 if (champ)
20677 /* Now verify that champ is better than everything earlier in the
20678 instantiation list. */
20679 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20680 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20681 {
20682 champ = NULL_TREE;
20683 break;
20684 }
20685 }
20686
20687 processing_template_decl--;
20688
20689 if (!champ)
20690 return error_mark_node;
20691
20692 return champ;
20693 }
20694
20695 /* If DECL is a specialization of some template, return the most
20696 general such template. Otherwise, returns NULL_TREE.
20697
20698 For example, given:
20699
20700 template <class T> struct S { template <class U> void f(U); };
20701
20702 if TMPL is `template <class U> void S<int>::f(U)' this will return
20703 the full template. This function will not trace past partial
20704 specializations, however. For example, given in addition:
20705
20706 template <class T> struct S<T*> { template <class U> void f(U); };
20707
20708 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20709 `template <class T> template <class U> S<T*>::f(U)'. */
20710
20711 tree
20712 most_general_template (tree decl)
20713 {
20714 if (TREE_CODE (decl) != TEMPLATE_DECL)
20715 {
20716 if (tree tinfo = get_template_info (decl))
20717 decl = TI_TEMPLATE (tinfo);
20718 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20719 template friend, or a FIELD_DECL for a capture pack. */
20720 if (TREE_CODE (decl) != TEMPLATE_DECL)
20721 return NULL_TREE;
20722 }
20723
20724 /* Look for more and more general templates. */
20725 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20726 {
20727 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20728 (See cp-tree.h for details.) */
20729 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20730 break;
20731
20732 if (CLASS_TYPE_P (TREE_TYPE (decl))
20733 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20734 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20735 break;
20736
20737 /* Stop if we run into an explicitly specialized class template. */
20738 if (!DECL_NAMESPACE_SCOPE_P (decl)
20739 && DECL_CONTEXT (decl)
20740 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20741 break;
20742
20743 decl = DECL_TI_TEMPLATE (decl);
20744 }
20745
20746 return decl;
20747 }
20748
20749 /* True iff the TEMPLATE_DECL tmpl is a partial specialization. */
20750
20751 static bool
20752 partial_specialization_p (tree tmpl)
20753 {
20754 /* Any specialization has DECL_TEMPLATE_SPECIALIZATION. */
20755 if (!DECL_TEMPLATE_SPECIALIZATION (tmpl))
20756 return false;
20757 tree t = DECL_TI_TEMPLATE (tmpl);
20758 /* A specialization that fully specializes one of the containing classes is
20759 not a partial specialization. */
20760 return (list_length (DECL_TEMPLATE_PARMS (tmpl))
20761 == list_length (DECL_TEMPLATE_PARMS (t)));
20762 }
20763
20764 /* If TMPL is a partial specialization, return the arguments for its primary
20765 template. */
20766
20767 static tree
20768 impartial_args (tree tmpl, tree args)
20769 {
20770 if (!partial_specialization_p (tmpl))
20771 return args;
20772
20773 /* If TMPL is a partial specialization, we need to substitute to get
20774 the args for the primary template. */
20775 return tsubst_template_args (DECL_TI_ARGS (tmpl), args,
20776 tf_warning_or_error, tmpl);
20777 }
20778
20779 /* Return the most specialized of the template partial specializations
20780 which can produce TARGET, a specialization of some class or variable
20781 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20782 a TEMPLATE_DECL node corresponding to the partial specialization, while
20783 the TREE_PURPOSE is the set of template arguments that must be
20784 substituted into the template pattern in order to generate TARGET.
20785
20786 If the choice of partial specialization is ambiguous, a diagnostic
20787 is issued, and the error_mark_node is returned. If there are no
20788 partial specializations matching TARGET, then NULL_TREE is
20789 returned, indicating that the primary template should be used. */
20790
20791 static tree
20792 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20793 {
20794 tree list = NULL_TREE;
20795 tree t;
20796 tree champ;
20797 int fate;
20798 bool ambiguous_p;
20799 tree outer_args = NULL_TREE;
20800 tree tmpl, args;
20801
20802 if (TYPE_P (target))
20803 {
20804 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20805 tmpl = TI_TEMPLATE (tinfo);
20806 args = TI_ARGS (tinfo);
20807 }
20808 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20809 {
20810 tmpl = TREE_OPERAND (target, 0);
20811 args = TREE_OPERAND (target, 1);
20812 }
20813 else if (VAR_P (target))
20814 {
20815 tree tinfo = DECL_TEMPLATE_INFO (target);
20816 tmpl = TI_TEMPLATE (tinfo);
20817 args = TI_ARGS (tinfo);
20818 }
20819 else
20820 gcc_unreachable ();
20821
20822 tree main_tmpl = most_general_template (tmpl);
20823
20824 /* For determining which partial specialization to use, only the
20825 innermost args are interesting. */
20826 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20827 {
20828 outer_args = strip_innermost_template_args (args, 1);
20829 args = INNERMOST_TEMPLATE_ARGS (args);
20830 }
20831
20832 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20833 {
20834 tree partial_spec_args;
20835 tree spec_args;
20836 tree spec_tmpl = TREE_VALUE (t);
20837
20838 partial_spec_args = TREE_PURPOSE (t);
20839
20840 ++processing_template_decl;
20841
20842 if (outer_args)
20843 {
20844 /* Discard the outer levels of args, and then substitute in the
20845 template args from the enclosing class. */
20846 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20847 partial_spec_args = tsubst_template_args
20848 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20849
20850 /* And the same for the partial specialization TEMPLATE_DECL. */
20851 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20852 }
20853
20854 partial_spec_args =
20855 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20856 partial_spec_args,
20857 tmpl, tf_none,
20858 /*require_all_args=*/true,
20859 /*use_default_args=*/true);
20860
20861 --processing_template_decl;
20862
20863 if (partial_spec_args == error_mark_node)
20864 return error_mark_node;
20865 if (spec_tmpl == error_mark_node)
20866 return error_mark_node;
20867
20868 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20869 spec_args = get_partial_spec_bindings (tmpl, parms,
20870 partial_spec_args,
20871 args);
20872 if (spec_args)
20873 {
20874 if (outer_args)
20875 spec_args = add_to_template_args (outer_args, spec_args);
20876
20877 /* Keep the candidate only if the constraints are satisfied,
20878 or if we're not compiling with concepts. */
20879 if (!flag_concepts
20880 || constraints_satisfied_p (spec_tmpl, spec_args))
20881 {
20882 list = tree_cons (spec_args, TREE_VALUE (t), list);
20883 TREE_TYPE (list) = TREE_TYPE (t);
20884 }
20885 }
20886 }
20887
20888 if (! list)
20889 return NULL_TREE;
20890
20891 ambiguous_p = false;
20892 t = list;
20893 champ = t;
20894 t = TREE_CHAIN (t);
20895 for (; t; t = TREE_CHAIN (t))
20896 {
20897 fate = more_specialized_partial_spec (tmpl, champ, t);
20898 if (fate == 1)
20899 ;
20900 else
20901 {
20902 if (fate == 0)
20903 {
20904 t = TREE_CHAIN (t);
20905 if (! t)
20906 {
20907 ambiguous_p = true;
20908 break;
20909 }
20910 }
20911 champ = t;
20912 }
20913 }
20914
20915 if (!ambiguous_p)
20916 for (t = list; t && t != champ; t = TREE_CHAIN (t))
20917 {
20918 fate = more_specialized_partial_spec (tmpl, champ, t);
20919 if (fate != 1)
20920 {
20921 ambiguous_p = true;
20922 break;
20923 }
20924 }
20925
20926 if (ambiguous_p)
20927 {
20928 const char *str;
20929 char *spaces = NULL;
20930 if (!(complain & tf_error))
20931 return error_mark_node;
20932 if (TYPE_P (target))
20933 error ("ambiguous template instantiation for %q#T", target);
20934 else
20935 error ("ambiguous template instantiation for %q#D", target);
20936 str = ngettext ("candidate is:", "candidates are:", list_length (list));
20937 for (t = list; t; t = TREE_CHAIN (t))
20938 {
20939 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
20940 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
20941 "%s %#S", spaces ? spaces : str, subst);
20942 spaces = spaces ? spaces : get_spaces (str);
20943 }
20944 free (spaces);
20945 return error_mark_node;
20946 }
20947
20948 return champ;
20949 }
20950
20951 /* Explicitly instantiate DECL. */
20952
20953 void
20954 do_decl_instantiation (tree decl, tree storage)
20955 {
20956 tree result = NULL_TREE;
20957 int extern_p = 0;
20958
20959 if (!decl || decl == error_mark_node)
20960 /* An error occurred, for which grokdeclarator has already issued
20961 an appropriate message. */
20962 return;
20963 else if (! DECL_LANG_SPECIFIC (decl))
20964 {
20965 error ("explicit instantiation of non-template %q#D", decl);
20966 return;
20967 }
20968
20969 bool var_templ = (DECL_TEMPLATE_INFO (decl)
20970 && variable_template_p (DECL_TI_TEMPLATE (decl)));
20971
20972 if (VAR_P (decl) && !var_templ)
20973 {
20974 /* There is an asymmetry here in the way VAR_DECLs and
20975 FUNCTION_DECLs are handled by grokdeclarator. In the case of
20976 the latter, the DECL we get back will be marked as a
20977 template instantiation, and the appropriate
20978 DECL_TEMPLATE_INFO will be set up. This does not happen for
20979 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
20980 should handle VAR_DECLs as it currently handles
20981 FUNCTION_DECLs. */
20982 if (!DECL_CLASS_SCOPE_P (decl))
20983 {
20984 error ("%qD is not a static data member of a class template", decl);
20985 return;
20986 }
20987 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
20988 if (!result || !VAR_P (result))
20989 {
20990 error ("no matching template for %qD found", decl);
20991 return;
20992 }
20993 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
20994 {
20995 error ("type %qT for explicit instantiation %qD does not match "
20996 "declared type %qT", TREE_TYPE (result), decl,
20997 TREE_TYPE (decl));
20998 return;
20999 }
21000 }
21001 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21002 {
21003 error ("explicit instantiation of %q#D", decl);
21004 return;
21005 }
21006 else
21007 result = decl;
21008
21009 /* Check for various error cases. Note that if the explicit
21010 instantiation is valid the RESULT will currently be marked as an
21011 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21012 until we get here. */
21013
21014 if (DECL_TEMPLATE_SPECIALIZATION (result))
21015 {
21016 /* DR 259 [temp.spec].
21017
21018 Both an explicit instantiation and a declaration of an explicit
21019 specialization shall not appear in a program unless the explicit
21020 instantiation follows a declaration of the explicit specialization.
21021
21022 For a given set of template parameters, if an explicit
21023 instantiation of a template appears after a declaration of an
21024 explicit specialization for that template, the explicit
21025 instantiation has no effect. */
21026 return;
21027 }
21028 else if (DECL_EXPLICIT_INSTANTIATION (result))
21029 {
21030 /* [temp.spec]
21031
21032 No program shall explicitly instantiate any template more
21033 than once.
21034
21035 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21036 the first instantiation was `extern' and the second is not,
21037 and EXTERN_P for the opposite case. */
21038 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21039 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21040 /* If an "extern" explicit instantiation follows an ordinary
21041 explicit instantiation, the template is instantiated. */
21042 if (extern_p)
21043 return;
21044 }
21045 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21046 {
21047 error ("no matching template for %qD found", result);
21048 return;
21049 }
21050 else if (!DECL_TEMPLATE_INFO (result))
21051 {
21052 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21053 return;
21054 }
21055
21056 if (storage == NULL_TREE)
21057 ;
21058 else if (storage == ridpointers[(int) RID_EXTERN])
21059 {
21060 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21061 pedwarn (input_location, OPT_Wpedantic,
21062 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21063 "instantiations");
21064 extern_p = 1;
21065 }
21066 else
21067 error ("storage class %qD applied to template instantiation", storage);
21068
21069 check_explicit_instantiation_namespace (result);
21070 mark_decl_instantiated (result, extern_p);
21071 if (! extern_p)
21072 instantiate_decl (result, /*defer_ok=*/1,
21073 /*expl_inst_class_mem_p=*/false);
21074 }
21075
21076 static void
21077 mark_class_instantiated (tree t, int extern_p)
21078 {
21079 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21080 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21081 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21082 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21083 if (! extern_p)
21084 {
21085 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21086 rest_of_type_compilation (t, 1);
21087 }
21088 }
21089
21090 /* Called from do_type_instantiation through binding_table_foreach to
21091 do recursive instantiation for the type bound in ENTRY. */
21092 static void
21093 bt_instantiate_type_proc (binding_entry entry, void *data)
21094 {
21095 tree storage = *(tree *) data;
21096
21097 if (MAYBE_CLASS_TYPE_P (entry->type)
21098 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21099 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21100 }
21101
21102 /* Called from do_type_instantiation to instantiate a member
21103 (a member function or a static member variable) of an
21104 explicitly instantiated class template. */
21105 static void
21106 instantiate_class_member (tree decl, int extern_p)
21107 {
21108 mark_decl_instantiated (decl, extern_p);
21109 if (! extern_p)
21110 instantiate_decl (decl, /*defer_ok=*/1,
21111 /*expl_inst_class_mem_p=*/true);
21112 }
21113
21114 /* Perform an explicit instantiation of template class T. STORAGE, if
21115 non-null, is the RID for extern, inline or static. COMPLAIN is
21116 nonzero if this is called from the parser, zero if called recursively,
21117 since the standard is unclear (as detailed below). */
21118
21119 void
21120 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
21121 {
21122 int extern_p = 0;
21123 int nomem_p = 0;
21124 int static_p = 0;
21125 int previous_instantiation_extern_p = 0;
21126
21127 if (TREE_CODE (t) == TYPE_DECL)
21128 t = TREE_TYPE (t);
21129
21130 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
21131 {
21132 tree tmpl =
21133 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
21134 if (tmpl)
21135 error ("explicit instantiation of non-class template %qD", tmpl);
21136 else
21137 error ("explicit instantiation of non-template type %qT", t);
21138 return;
21139 }
21140
21141 complete_type (t);
21142
21143 if (!COMPLETE_TYPE_P (t))
21144 {
21145 if (complain & tf_error)
21146 error ("explicit instantiation of %q#T before definition of template",
21147 t);
21148 return;
21149 }
21150
21151 if (storage != NULL_TREE)
21152 {
21153 if (!in_system_header_at (input_location))
21154 {
21155 if (storage == ridpointers[(int) RID_EXTERN])
21156 {
21157 if (cxx_dialect == cxx98)
21158 pedwarn (input_location, OPT_Wpedantic,
21159 "ISO C++ 1998 forbids the use of %<extern%> on "
21160 "explicit instantiations");
21161 }
21162 else
21163 pedwarn (input_location, OPT_Wpedantic,
21164 "ISO C++ forbids the use of %qE"
21165 " on explicit instantiations", storage);
21166 }
21167
21168 if (storage == ridpointers[(int) RID_INLINE])
21169 nomem_p = 1;
21170 else if (storage == ridpointers[(int) RID_EXTERN])
21171 extern_p = 1;
21172 else if (storage == ridpointers[(int) RID_STATIC])
21173 static_p = 1;
21174 else
21175 {
21176 error ("storage class %qD applied to template instantiation",
21177 storage);
21178 extern_p = 0;
21179 }
21180 }
21181
21182 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21183 {
21184 /* DR 259 [temp.spec].
21185
21186 Both an explicit instantiation and a declaration of an explicit
21187 specialization shall not appear in a program unless the explicit
21188 instantiation follows a declaration of the explicit specialization.
21189
21190 For a given set of template parameters, if an explicit
21191 instantiation of a template appears after a declaration of an
21192 explicit specialization for that template, the explicit
21193 instantiation has no effect. */
21194 return;
21195 }
21196 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21197 {
21198 /* [temp.spec]
21199
21200 No program shall explicitly instantiate any template more
21201 than once.
21202
21203 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21204 instantiation was `extern'. If EXTERN_P then the second is.
21205 These cases are OK. */
21206 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21207
21208 if (!previous_instantiation_extern_p && !extern_p
21209 && (complain & tf_error))
21210 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21211
21212 /* If we've already instantiated the template, just return now. */
21213 if (!CLASSTYPE_INTERFACE_ONLY (t))
21214 return;
21215 }
21216
21217 check_explicit_instantiation_namespace (TYPE_NAME (t));
21218 mark_class_instantiated (t, extern_p);
21219
21220 if (nomem_p)
21221 return;
21222
21223 {
21224 tree tmp;
21225
21226 /* In contrast to implicit instantiation, where only the
21227 declarations, and not the definitions, of members are
21228 instantiated, we have here:
21229
21230 [temp.explicit]
21231
21232 The explicit instantiation of a class template specialization
21233 implies the instantiation of all of its members not
21234 previously explicitly specialized in the translation unit
21235 containing the explicit instantiation.
21236
21237 Of course, we can't instantiate member template classes, since
21238 we don't have any arguments for them. Note that the standard
21239 is unclear on whether the instantiation of the members are
21240 *explicit* instantiations or not. However, the most natural
21241 interpretation is that it should be an explicit instantiation. */
21242
21243 if (! static_p)
21244 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21245 if (TREE_CODE (tmp) == FUNCTION_DECL
21246 && DECL_TEMPLATE_INSTANTIATION (tmp))
21247 instantiate_class_member (tmp, extern_p);
21248
21249 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21250 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21251 instantiate_class_member (tmp, extern_p);
21252
21253 if (CLASSTYPE_NESTED_UTDS (t))
21254 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21255 bt_instantiate_type_proc, &storage);
21256 }
21257 }
21258
21259 /* Given a function DECL, which is a specialization of TMPL, modify
21260 DECL to be a re-instantiation of TMPL with the same template
21261 arguments. TMPL should be the template into which tsubst'ing
21262 should occur for DECL, not the most general template.
21263
21264 One reason for doing this is a scenario like this:
21265
21266 template <class T>
21267 void f(const T&, int i);
21268
21269 void g() { f(3, 7); }
21270
21271 template <class T>
21272 void f(const T& t, const int i) { }
21273
21274 Note that when the template is first instantiated, with
21275 instantiate_template, the resulting DECL will have no name for the
21276 first parameter, and the wrong type for the second. So, when we go
21277 to instantiate the DECL, we regenerate it. */
21278
21279 static void
21280 regenerate_decl_from_template (tree decl, tree tmpl)
21281 {
21282 /* The arguments used to instantiate DECL, from the most general
21283 template. */
21284 tree args;
21285 tree code_pattern;
21286
21287 args = DECL_TI_ARGS (decl);
21288 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21289
21290 /* Make sure that we can see identifiers, and compute access
21291 correctly. */
21292 push_access_scope (decl);
21293
21294 if (TREE_CODE (decl) == FUNCTION_DECL)
21295 {
21296 tree decl_parm;
21297 tree pattern_parm;
21298 tree specs;
21299 int args_depth;
21300 int parms_depth;
21301
21302 args_depth = TMPL_ARGS_DEPTH (args);
21303 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21304 if (args_depth > parms_depth)
21305 args = get_innermost_template_args (args, parms_depth);
21306
21307 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21308 args, tf_error, NULL_TREE,
21309 /*defer_ok*/false);
21310 if (specs && specs != error_mark_node)
21311 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21312 specs);
21313
21314 /* Merge parameter declarations. */
21315 decl_parm = skip_artificial_parms_for (decl,
21316 DECL_ARGUMENTS (decl));
21317 pattern_parm
21318 = skip_artificial_parms_for (code_pattern,
21319 DECL_ARGUMENTS (code_pattern));
21320 while (decl_parm && !DECL_PACK_P (pattern_parm))
21321 {
21322 tree parm_type;
21323 tree attributes;
21324
21325 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21326 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21327 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21328 NULL_TREE);
21329 parm_type = type_decays_to (parm_type);
21330 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21331 TREE_TYPE (decl_parm) = parm_type;
21332 attributes = DECL_ATTRIBUTES (pattern_parm);
21333 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21334 {
21335 DECL_ATTRIBUTES (decl_parm) = attributes;
21336 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21337 }
21338 decl_parm = DECL_CHAIN (decl_parm);
21339 pattern_parm = DECL_CHAIN (pattern_parm);
21340 }
21341 /* Merge any parameters that match with the function parameter
21342 pack. */
21343 if (pattern_parm && DECL_PACK_P (pattern_parm))
21344 {
21345 int i, len;
21346 tree expanded_types;
21347 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21348 the parameters in this function parameter pack. */
21349 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21350 args, tf_error, NULL_TREE);
21351 len = TREE_VEC_LENGTH (expanded_types);
21352 for (i = 0; i < len; i++)
21353 {
21354 tree parm_type;
21355 tree attributes;
21356
21357 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21358 /* Rename the parameter to include the index. */
21359 DECL_NAME (decl_parm) =
21360 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21361 parm_type = TREE_VEC_ELT (expanded_types, i);
21362 parm_type = type_decays_to (parm_type);
21363 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21364 TREE_TYPE (decl_parm) = parm_type;
21365 attributes = DECL_ATTRIBUTES (pattern_parm);
21366 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21367 {
21368 DECL_ATTRIBUTES (decl_parm) = attributes;
21369 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21370 }
21371 decl_parm = DECL_CHAIN (decl_parm);
21372 }
21373 }
21374 /* Merge additional specifiers from the CODE_PATTERN. */
21375 if (DECL_DECLARED_INLINE_P (code_pattern)
21376 && !DECL_DECLARED_INLINE_P (decl))
21377 DECL_DECLARED_INLINE_P (decl) = 1;
21378 }
21379 else if (VAR_P (decl))
21380 {
21381 DECL_INITIAL (decl) =
21382 tsubst_expr (DECL_INITIAL (code_pattern), args,
21383 tf_error, DECL_TI_TEMPLATE (decl),
21384 /*integral_constant_expression_p=*/false);
21385 if (VAR_HAD_UNKNOWN_BOUND (decl))
21386 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21387 tf_error, DECL_TI_TEMPLATE (decl));
21388 }
21389 else
21390 gcc_unreachable ();
21391
21392 pop_access_scope (decl);
21393 }
21394
21395 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21396 substituted to get DECL. */
21397
21398 tree
21399 template_for_substitution (tree decl)
21400 {
21401 tree tmpl = DECL_TI_TEMPLATE (decl);
21402
21403 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21404 for the instantiation. This is not always the most general
21405 template. Consider, for example:
21406
21407 template <class T>
21408 struct S { template <class U> void f();
21409 template <> void f<int>(); };
21410
21411 and an instantiation of S<double>::f<int>. We want TD to be the
21412 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21413 while (/* An instantiation cannot have a definition, so we need a
21414 more general template. */
21415 DECL_TEMPLATE_INSTANTIATION (tmpl)
21416 /* We must also deal with friend templates. Given:
21417
21418 template <class T> struct S {
21419 template <class U> friend void f() {};
21420 };
21421
21422 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21423 so far as the language is concerned, but that's still
21424 where we get the pattern for the instantiation from. On
21425 other hand, if the definition comes outside the class, say:
21426
21427 template <class T> struct S {
21428 template <class U> friend void f();
21429 };
21430 template <class U> friend void f() {}
21431
21432 we don't need to look any further. That's what the check for
21433 DECL_INITIAL is for. */
21434 || (TREE_CODE (decl) == FUNCTION_DECL
21435 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21436 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21437 {
21438 /* The present template, TD, should not be a definition. If it
21439 were a definition, we should be using it! Note that we
21440 cannot restructure the loop to just keep going until we find
21441 a template with a definition, since that might go too far if
21442 a specialization was declared, but not defined. */
21443
21444 /* Fetch the more general template. */
21445 tmpl = DECL_TI_TEMPLATE (tmpl);
21446 }
21447
21448 return tmpl;
21449 }
21450
21451 /* Returns true if we need to instantiate this template instance even if we
21452 know we aren't going to emit it. */
21453
21454 bool
21455 always_instantiate_p (tree decl)
21456 {
21457 /* We always instantiate inline functions so that we can inline them. An
21458 explicit instantiation declaration prohibits implicit instantiation of
21459 non-inline functions. With high levels of optimization, we would
21460 normally inline non-inline functions -- but we're not allowed to do
21461 that for "extern template" functions. Therefore, we check
21462 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21463 return ((TREE_CODE (decl) == FUNCTION_DECL
21464 && (DECL_DECLARED_INLINE_P (decl)
21465 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21466 /* And we need to instantiate static data members so that
21467 their initializers are available in integral constant
21468 expressions. */
21469 || (VAR_P (decl)
21470 && decl_maybe_constant_var_p (decl)));
21471 }
21472
21473 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21474 instantiate it now, modifying TREE_TYPE (fn). */
21475
21476 void
21477 maybe_instantiate_noexcept (tree fn)
21478 {
21479 tree fntype, spec, noex, clone;
21480
21481 /* Don't instantiate a noexcept-specification from template context. */
21482 if (processing_template_decl)
21483 return;
21484
21485 if (DECL_CLONED_FUNCTION_P (fn))
21486 fn = DECL_CLONED_FUNCTION (fn);
21487 fntype = TREE_TYPE (fn);
21488 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21489
21490 if (!spec || !TREE_PURPOSE (spec))
21491 return;
21492
21493 noex = TREE_PURPOSE (spec);
21494
21495 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21496 {
21497 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21498 spec = get_defaulted_eh_spec (fn);
21499 else if (push_tinst_level (fn))
21500 {
21501 push_access_scope (fn);
21502 push_deferring_access_checks (dk_no_deferred);
21503 input_location = DECL_SOURCE_LOCATION (fn);
21504 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21505 DEFERRED_NOEXCEPT_ARGS (noex),
21506 tf_warning_or_error, fn,
21507 /*function_p=*/false,
21508 /*integral_constant_expression_p=*/true);
21509 pop_deferring_access_checks ();
21510 pop_access_scope (fn);
21511 pop_tinst_level ();
21512 spec = build_noexcept_spec (noex, tf_warning_or_error);
21513 if (spec == error_mark_node)
21514 spec = noexcept_false_spec;
21515 }
21516 else
21517 spec = noexcept_false_spec;
21518
21519 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21520 }
21521
21522 FOR_EACH_CLONE (clone, fn)
21523 {
21524 if (TREE_TYPE (clone) == fntype)
21525 TREE_TYPE (clone) = TREE_TYPE (fn);
21526 else
21527 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21528 }
21529 }
21530
21531 /* Produce the definition of D, a _DECL generated from a template. If
21532 DEFER_OK is nonzero, then we don't have to actually do the
21533 instantiation now; we just have to do it sometime. Normally it is
21534 an error if this is an explicit instantiation but D is undefined.
21535 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21536 explicitly instantiated class template. */
21537
21538 tree
21539 instantiate_decl (tree d, int defer_ok,
21540 bool expl_inst_class_mem_p)
21541 {
21542 tree tmpl = DECL_TI_TEMPLATE (d);
21543 tree gen_args;
21544 tree args;
21545 tree td;
21546 tree code_pattern;
21547 tree spec;
21548 tree gen_tmpl;
21549 bool pattern_defined;
21550 location_t saved_loc = input_location;
21551 int saved_unevaluated_operand = cp_unevaluated_operand;
21552 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21553 bool external_p;
21554 bool deleted_p;
21555 tree fn_context;
21556 bool nested = false;
21557
21558 /* This function should only be used to instantiate templates for
21559 functions and static member variables. */
21560 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21561
21562 /* A concept is never instantiated. */
21563 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21564
21565 /* Variables are never deferred; if instantiation is required, they
21566 are instantiated right away. That allows for better code in the
21567 case that an expression refers to the value of the variable --
21568 if the variable has a constant value the referring expression can
21569 take advantage of that fact. */
21570 if (VAR_P (d)
21571 || DECL_DECLARED_CONSTEXPR_P (d))
21572 defer_ok = 0;
21573
21574 /* Don't instantiate cloned functions. Instead, instantiate the
21575 functions they cloned. */
21576 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21577 d = DECL_CLONED_FUNCTION (d);
21578
21579 if (DECL_TEMPLATE_INSTANTIATED (d)
21580 || (TREE_CODE (d) == FUNCTION_DECL
21581 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21582 || DECL_TEMPLATE_SPECIALIZATION (d))
21583 /* D has already been instantiated or explicitly specialized, so
21584 there's nothing for us to do here.
21585
21586 It might seem reasonable to check whether or not D is an explicit
21587 instantiation, and, if so, stop here. But when an explicit
21588 instantiation is deferred until the end of the compilation,
21589 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21590 the instantiation. */
21591 return d;
21592
21593 /* Check to see whether we know that this template will be
21594 instantiated in some other file, as with "extern template"
21595 extension. */
21596 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21597
21598 /* In general, we do not instantiate such templates. */
21599 if (external_p && !always_instantiate_p (d))
21600 return d;
21601
21602 gen_tmpl = most_general_template (tmpl);
21603 gen_args = impartial_args (tmpl, DECL_TI_ARGS (d));
21604
21605 if (tmpl != gen_tmpl)
21606 /* We should already have the extra args. */
21607 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21608 == TMPL_ARGS_DEPTH (gen_args));
21609 /* And what's in the hash table should match D. */
21610 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21611 || spec == NULL_TREE);
21612
21613 /* This needs to happen before any tsubsting. */
21614 if (! push_tinst_level (d))
21615 return d;
21616
21617 timevar_push (TV_TEMPLATE_INST);
21618
21619 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21620 for the instantiation. */
21621 td = template_for_substitution (d);
21622 code_pattern = DECL_TEMPLATE_RESULT (td);
21623
21624 /* We should never be trying to instantiate a member of a class
21625 template or partial specialization. */
21626 gcc_assert (d != code_pattern);
21627
21628 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21629 || DECL_TEMPLATE_SPECIALIZATION (td))
21630 /* In the case of a friend template whose definition is provided
21631 outside the class, we may have too many arguments. Drop the
21632 ones we don't need. The same is true for specializations. */
21633 args = get_innermost_template_args
21634 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21635 else
21636 args = gen_args;
21637
21638 if (TREE_CODE (d) == FUNCTION_DECL)
21639 {
21640 deleted_p = DECL_DELETED_FN (code_pattern);
21641 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21642 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21643 || deleted_p);
21644 }
21645 else
21646 {
21647 deleted_p = false;
21648 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21649 }
21650
21651 /* We may be in the middle of deferred access check. Disable it now. */
21652 push_deferring_access_checks (dk_no_deferred);
21653
21654 /* Unless an explicit instantiation directive has already determined
21655 the linkage of D, remember that a definition is available for
21656 this entity. */
21657 if (pattern_defined
21658 && !DECL_INTERFACE_KNOWN (d)
21659 && !DECL_NOT_REALLY_EXTERN (d))
21660 mark_definable (d);
21661
21662 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21663 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21664 input_location = DECL_SOURCE_LOCATION (d);
21665
21666 /* If D is a member of an explicitly instantiated class template,
21667 and no definition is available, treat it like an implicit
21668 instantiation. */
21669 if (!pattern_defined && expl_inst_class_mem_p
21670 && DECL_EXPLICIT_INSTANTIATION (d))
21671 {
21672 /* Leave linkage flags alone on instantiations with anonymous
21673 visibility. */
21674 if (TREE_PUBLIC (d))
21675 {
21676 DECL_NOT_REALLY_EXTERN (d) = 0;
21677 DECL_INTERFACE_KNOWN (d) = 0;
21678 }
21679 SET_DECL_IMPLICIT_INSTANTIATION (d);
21680 }
21681
21682 /* Defer all other templates, unless we have been explicitly
21683 forbidden from doing so. */
21684 if (/* If there is no definition, we cannot instantiate the
21685 template. */
21686 ! pattern_defined
21687 /* If it's OK to postpone instantiation, do so. */
21688 || defer_ok
21689 /* If this is a static data member that will be defined
21690 elsewhere, we don't want to instantiate the entire data
21691 member, but we do want to instantiate the initializer so that
21692 we can substitute that elsewhere. */
21693 || (external_p && VAR_P (d))
21694 /* Handle here a deleted function too, avoid generating
21695 its body (c++/61080). */
21696 || deleted_p)
21697 {
21698 /* The definition of the static data member is now required so
21699 we must substitute the initializer. */
21700 if (VAR_P (d)
21701 && !DECL_INITIAL (d)
21702 && DECL_INITIAL (code_pattern))
21703 {
21704 tree ns;
21705 tree init;
21706 bool const_init = false;
21707 bool enter_context = DECL_CLASS_SCOPE_P (d);
21708
21709 ns = decl_namespace_context (d);
21710 push_nested_namespace (ns);
21711 if (enter_context)
21712 push_nested_class (DECL_CONTEXT (d));
21713 init = tsubst_expr (DECL_INITIAL (code_pattern),
21714 args,
21715 tf_warning_or_error, NULL_TREE,
21716 /*integral_constant_expression_p=*/false);
21717 /* If instantiating the initializer involved instantiating this
21718 again, don't call cp_finish_decl twice. */
21719 if (!DECL_INITIAL (d))
21720 {
21721 /* Make sure the initializer is still constant, in case of
21722 circular dependency (template/instantiate6.C). */
21723 const_init
21724 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21725 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21726 /*asmspec_tree=*/NULL_TREE,
21727 LOOKUP_ONLYCONVERTING);
21728 }
21729 if (enter_context)
21730 pop_nested_class ();
21731 pop_nested_namespace (ns);
21732 }
21733
21734 /* We restore the source position here because it's used by
21735 add_pending_template. */
21736 input_location = saved_loc;
21737
21738 if (at_eof && !pattern_defined
21739 && DECL_EXPLICIT_INSTANTIATION (d)
21740 && DECL_NOT_REALLY_EXTERN (d))
21741 /* [temp.explicit]
21742
21743 The definition of a non-exported function template, a
21744 non-exported member function template, or a non-exported
21745 member function or static data member of a class template
21746 shall be present in every translation unit in which it is
21747 explicitly instantiated. */
21748 permerror (input_location, "explicit instantiation of %qD "
21749 "but no definition available", d);
21750
21751 /* If we're in unevaluated context, we just wanted to get the
21752 constant value; this isn't an odr use, so don't queue
21753 a full instantiation. */
21754 if (cp_unevaluated_operand != 0)
21755 goto out;
21756 /* ??? Historically, we have instantiated inline functions, even
21757 when marked as "extern template". */
21758 if (!(external_p && VAR_P (d)))
21759 add_pending_template (d);
21760 goto out;
21761 }
21762 /* Tell the repository that D is available in this translation unit
21763 -- and see if it is supposed to be instantiated here. */
21764 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21765 {
21766 /* In a PCH file, despite the fact that the repository hasn't
21767 requested instantiation in the PCH it is still possible that
21768 an instantiation will be required in a file that includes the
21769 PCH. */
21770 if (pch_file)
21771 add_pending_template (d);
21772 /* Instantiate inline functions so that the inliner can do its
21773 job, even though we'll not be emitting a copy of this
21774 function. */
21775 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21776 goto out;
21777 }
21778
21779 fn_context = decl_function_context (d);
21780 nested = (current_function_decl != NULL_TREE);
21781 vec<tree> omp_privatization_save;
21782 if (nested)
21783 save_omp_privatization_clauses (omp_privatization_save);
21784
21785 if (!fn_context)
21786 push_to_top_level ();
21787 else
21788 {
21789 if (nested)
21790 push_function_context ();
21791 cp_unevaluated_operand = 0;
21792 c_inhibit_evaluation_warnings = 0;
21793 }
21794
21795 /* Mark D as instantiated so that recursive calls to
21796 instantiate_decl do not try to instantiate it again. */
21797 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21798
21799 /* Regenerate the declaration in case the template has been modified
21800 by a subsequent redeclaration. */
21801 regenerate_decl_from_template (d, td);
21802
21803 /* We already set the file and line above. Reset them now in case
21804 they changed as a result of calling regenerate_decl_from_template. */
21805 input_location = DECL_SOURCE_LOCATION (d);
21806
21807 if (VAR_P (d))
21808 {
21809 tree init;
21810 bool const_init = false;
21811
21812 /* Clear out DECL_RTL; whatever was there before may not be right
21813 since we've reset the type of the declaration. */
21814 SET_DECL_RTL (d, NULL);
21815 DECL_IN_AGGR_P (d) = 0;
21816
21817 /* The initializer is placed in DECL_INITIAL by
21818 regenerate_decl_from_template so we don't need to
21819 push/pop_access_scope again here. Pull it out so that
21820 cp_finish_decl can process it. */
21821 init = DECL_INITIAL (d);
21822 DECL_INITIAL (d) = NULL_TREE;
21823 DECL_INITIALIZED_P (d) = 0;
21824
21825 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21826 initializer. That function will defer actual emission until
21827 we have a chance to determine linkage. */
21828 DECL_EXTERNAL (d) = 0;
21829
21830 /* Enter the scope of D so that access-checking works correctly. */
21831 bool enter_context = DECL_CLASS_SCOPE_P (d);
21832 if (enter_context)
21833 push_nested_class (DECL_CONTEXT (d));
21834
21835 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21836 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21837
21838 if (enter_context)
21839 pop_nested_class ();
21840
21841 if (variable_template_p (td))
21842 note_variable_template_instantiation (d);
21843 }
21844 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21845 synthesize_method (d);
21846 else if (TREE_CODE (d) == FUNCTION_DECL)
21847 {
21848 hash_map<tree, tree> *saved_local_specializations;
21849 tree subst_decl;
21850 tree tmpl_parm;
21851 tree spec_parm;
21852 tree block = NULL_TREE;
21853
21854 /* Save away the current list, in case we are instantiating one
21855 template from within the body of another. */
21856 saved_local_specializations = local_specializations;
21857
21858 /* Set up the list of local specializations. */
21859 local_specializations = new hash_map<tree, tree>;
21860
21861 /* Set up context. */
21862 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21863 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21864 block = push_stmt_list ();
21865 else
21866 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21867
21868 /* Some typedefs referenced from within the template code need to be
21869 access checked at template instantiation time, i.e now. These
21870 types were added to the template at parsing time. Let's get those
21871 and perform the access checks then. */
21872 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21873 gen_args);
21874
21875 /* Create substitution entries for the parameters. */
21876 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21877 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21878 spec_parm = DECL_ARGUMENTS (d);
21879 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21880 {
21881 register_local_specialization (spec_parm, tmpl_parm);
21882 spec_parm = skip_artificial_parms_for (d, spec_parm);
21883 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21884 }
21885 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21886 {
21887 if (!DECL_PACK_P (tmpl_parm))
21888 {
21889 register_local_specialization (spec_parm, tmpl_parm);
21890 spec_parm = DECL_CHAIN (spec_parm);
21891 }
21892 else
21893 {
21894 /* Register the (value) argument pack as a specialization of
21895 TMPL_PARM, then move on. */
21896 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21897 register_local_specialization (argpack, tmpl_parm);
21898 }
21899 }
21900 gcc_assert (!spec_parm);
21901
21902 /* Substitute into the body of the function. */
21903 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21904 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
21905 tf_warning_or_error, tmpl);
21906 else
21907 {
21908 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
21909 tf_warning_or_error, tmpl,
21910 /*integral_constant_expression_p=*/false);
21911
21912 /* Set the current input_location to the end of the function
21913 so that finish_function knows where we are. */
21914 input_location
21915 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
21916
21917 /* Remember if we saw an infinite loop in the template. */
21918 current_function_infinite_loop
21919 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
21920 }
21921
21922 /* We don't need the local specializations any more. */
21923 delete local_specializations;
21924 local_specializations = saved_local_specializations;
21925
21926 /* Finish the function. */
21927 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21928 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21929 DECL_SAVED_TREE (d) = pop_stmt_list (block);
21930 else
21931 {
21932 d = finish_function (0);
21933 expand_or_defer_fn (d);
21934 }
21935
21936 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21937 cp_check_omp_declare_reduction (d);
21938 }
21939
21940 /* We're not deferring instantiation any more. */
21941 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
21942
21943 if (!fn_context)
21944 pop_from_top_level ();
21945 else if (nested)
21946 pop_function_context ();
21947
21948 out:
21949 input_location = saved_loc;
21950 cp_unevaluated_operand = saved_unevaluated_operand;
21951 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
21952 pop_deferring_access_checks ();
21953 pop_tinst_level ();
21954 if (nested)
21955 restore_omp_privatization_clauses (omp_privatization_save);
21956
21957 timevar_pop (TV_TEMPLATE_INST);
21958
21959 return d;
21960 }
21961
21962 /* Run through the list of templates that we wish we could
21963 instantiate, and instantiate any we can. RETRIES is the
21964 number of times we retry pending template instantiation. */
21965
21966 void
21967 instantiate_pending_templates (int retries)
21968 {
21969 int reconsider;
21970 location_t saved_loc = input_location;
21971
21972 /* Instantiating templates may trigger vtable generation. This in turn
21973 may require further template instantiations. We place a limit here
21974 to avoid infinite loop. */
21975 if (pending_templates && retries >= max_tinst_depth)
21976 {
21977 tree decl = pending_templates->tinst->decl;
21978
21979 fatal_error (input_location,
21980 "template instantiation depth exceeds maximum of %d"
21981 " instantiating %q+D, possibly from virtual table generation"
21982 " (use -ftemplate-depth= to increase the maximum)",
21983 max_tinst_depth, decl);
21984 if (TREE_CODE (decl) == FUNCTION_DECL)
21985 /* Pretend that we defined it. */
21986 DECL_INITIAL (decl) = error_mark_node;
21987 return;
21988 }
21989
21990 do
21991 {
21992 struct pending_template **t = &pending_templates;
21993 struct pending_template *last = NULL;
21994 reconsider = 0;
21995 while (*t)
21996 {
21997 tree instantiation = reopen_tinst_level ((*t)->tinst);
21998 bool complete = false;
21999
22000 if (TYPE_P (instantiation))
22001 {
22002 tree fn;
22003
22004 if (!COMPLETE_TYPE_P (instantiation))
22005 {
22006 instantiate_class_template (instantiation);
22007 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22008 for (fn = TYPE_METHODS (instantiation);
22009 fn;
22010 fn = TREE_CHAIN (fn))
22011 if (! DECL_ARTIFICIAL (fn))
22012 instantiate_decl (fn,
22013 /*defer_ok=*/0,
22014 /*expl_inst_class_mem_p=*/false);
22015 if (COMPLETE_TYPE_P (instantiation))
22016 reconsider = 1;
22017 }
22018
22019 complete = COMPLETE_TYPE_P (instantiation);
22020 }
22021 else
22022 {
22023 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22024 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22025 {
22026 instantiation
22027 = instantiate_decl (instantiation,
22028 /*defer_ok=*/0,
22029 /*expl_inst_class_mem_p=*/false);
22030 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22031 reconsider = 1;
22032 }
22033
22034 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22035 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22036 }
22037
22038 if (complete)
22039 /* If INSTANTIATION has been instantiated, then we don't
22040 need to consider it again in the future. */
22041 *t = (*t)->next;
22042 else
22043 {
22044 last = *t;
22045 t = &(*t)->next;
22046 }
22047 tinst_depth = 0;
22048 current_tinst_level = NULL;
22049 }
22050 last_pending_template = last;
22051 }
22052 while (reconsider);
22053
22054 input_location = saved_loc;
22055 }
22056
22057 /* Substitute ARGVEC into T, which is a list of initializers for
22058 either base class or a non-static data member. The TREE_PURPOSEs
22059 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22060 instantiate_decl. */
22061
22062 static tree
22063 tsubst_initializer_list (tree t, tree argvec)
22064 {
22065 tree inits = NULL_TREE;
22066
22067 for (; t; t = TREE_CHAIN (t))
22068 {
22069 tree decl;
22070 tree init;
22071 tree expanded_bases = NULL_TREE;
22072 tree expanded_arguments = NULL_TREE;
22073 int i, len = 1;
22074
22075 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22076 {
22077 tree expr;
22078 tree arg;
22079
22080 /* Expand the base class expansion type into separate base
22081 classes. */
22082 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22083 tf_warning_or_error,
22084 NULL_TREE);
22085 if (expanded_bases == error_mark_node)
22086 continue;
22087
22088 /* We'll be building separate TREE_LISTs of arguments for
22089 each base. */
22090 len = TREE_VEC_LENGTH (expanded_bases);
22091 expanded_arguments = make_tree_vec (len);
22092 for (i = 0; i < len; i++)
22093 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
22094
22095 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22096 expand each argument in the TREE_VALUE of t. */
22097 expr = make_node (EXPR_PACK_EXPANSION);
22098 PACK_EXPANSION_LOCAL_P (expr) = true;
22099 PACK_EXPANSION_PARAMETER_PACKS (expr) =
22100 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
22101
22102 if (TREE_VALUE (t) == void_type_node)
22103 /* VOID_TYPE_NODE is used to indicate
22104 value-initialization. */
22105 {
22106 for (i = 0; i < len; i++)
22107 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
22108 }
22109 else
22110 {
22111 /* Substitute parameter packs into each argument in the
22112 TREE_LIST. */
22113 in_base_initializer = 1;
22114 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
22115 {
22116 tree expanded_exprs;
22117
22118 /* Expand the argument. */
22119 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
22120 expanded_exprs
22121 = tsubst_pack_expansion (expr, argvec,
22122 tf_warning_or_error,
22123 NULL_TREE);
22124 if (expanded_exprs == error_mark_node)
22125 continue;
22126
22127 /* Prepend each of the expanded expressions to the
22128 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
22129 for (i = 0; i < len; i++)
22130 {
22131 TREE_VEC_ELT (expanded_arguments, i) =
22132 tree_cons (NULL_TREE,
22133 TREE_VEC_ELT (expanded_exprs, i),
22134 TREE_VEC_ELT (expanded_arguments, i));
22135 }
22136 }
22137 in_base_initializer = 0;
22138
22139 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22140 since we built them backwards. */
22141 for (i = 0; i < len; i++)
22142 {
22143 TREE_VEC_ELT (expanded_arguments, i) =
22144 nreverse (TREE_VEC_ELT (expanded_arguments, i));
22145 }
22146 }
22147 }
22148
22149 for (i = 0; i < len; ++i)
22150 {
22151 if (expanded_bases)
22152 {
22153 decl = TREE_VEC_ELT (expanded_bases, i);
22154 decl = expand_member_init (decl);
22155 init = TREE_VEC_ELT (expanded_arguments, i);
22156 }
22157 else
22158 {
22159 tree tmp;
22160 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
22161 tf_warning_or_error, NULL_TREE);
22162
22163 decl = expand_member_init (decl);
22164 if (decl && !DECL_P (decl))
22165 in_base_initializer = 1;
22166
22167 init = TREE_VALUE (t);
22168 tmp = init;
22169 if (init != void_type_node)
22170 init = tsubst_expr (init, argvec,
22171 tf_warning_or_error, NULL_TREE,
22172 /*integral_constant_expression_p=*/false);
22173 if (init == NULL_TREE && tmp != NULL_TREE)
22174 /* If we had an initializer but it instantiated to nothing,
22175 value-initialize the object. This will only occur when
22176 the initializer was a pack expansion where the parameter
22177 packs used in that expansion were of length zero. */
22178 init = void_type_node;
22179 in_base_initializer = 0;
22180 }
22181
22182 if (decl)
22183 {
22184 init = build_tree_list (decl, init);
22185 TREE_CHAIN (init) = inits;
22186 inits = init;
22187 }
22188 }
22189 }
22190 return inits;
22191 }
22192
22193 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22194
22195 static void
22196 set_current_access_from_decl (tree decl)
22197 {
22198 if (TREE_PRIVATE (decl))
22199 current_access_specifier = access_private_node;
22200 else if (TREE_PROTECTED (decl))
22201 current_access_specifier = access_protected_node;
22202 else
22203 current_access_specifier = access_public_node;
22204 }
22205
22206 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22207 is the instantiation (which should have been created with
22208 start_enum) and ARGS are the template arguments to use. */
22209
22210 static void
22211 tsubst_enum (tree tag, tree newtag, tree args)
22212 {
22213 tree e;
22214
22215 if (SCOPED_ENUM_P (newtag))
22216 begin_scope (sk_scoped_enum, newtag);
22217
22218 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22219 {
22220 tree value;
22221 tree decl;
22222
22223 decl = TREE_VALUE (e);
22224 /* Note that in a template enum, the TREE_VALUE is the
22225 CONST_DECL, not the corresponding INTEGER_CST. */
22226 value = tsubst_expr (DECL_INITIAL (decl),
22227 args, tf_warning_or_error, NULL_TREE,
22228 /*integral_constant_expression_p=*/true);
22229
22230 /* Give this enumeration constant the correct access. */
22231 set_current_access_from_decl (decl);
22232
22233 /* Actually build the enumerator itself. Here we're assuming that
22234 enumerators can't have dependent attributes. */
22235 build_enumerator (DECL_NAME (decl), value, newtag,
22236 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22237 }
22238
22239 if (SCOPED_ENUM_P (newtag))
22240 finish_scope ();
22241
22242 finish_enum_value_list (newtag);
22243 finish_enum (newtag);
22244
22245 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22246 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22247 }
22248
22249 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22250 its type -- but without substituting the innermost set of template
22251 arguments. So, innermost set of template parameters will appear in
22252 the type. */
22253
22254 tree
22255 get_mostly_instantiated_function_type (tree decl)
22256 {
22257 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22258 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22259 }
22260
22261 /* Return truthvalue if we're processing a template different from
22262 the last one involved in diagnostics. */
22263 bool
22264 problematic_instantiation_changed (void)
22265 {
22266 return current_tinst_level != last_error_tinst_level;
22267 }
22268
22269 /* Remember current template involved in diagnostics. */
22270 void
22271 record_last_problematic_instantiation (void)
22272 {
22273 last_error_tinst_level = current_tinst_level;
22274 }
22275
22276 struct tinst_level *
22277 current_instantiation (void)
22278 {
22279 return current_tinst_level;
22280 }
22281
22282 /* Return TRUE if current_function_decl is being instantiated, false
22283 otherwise. */
22284
22285 bool
22286 instantiating_current_function_p (void)
22287 {
22288 return (current_instantiation ()
22289 && current_instantiation ()->decl == current_function_decl);
22290 }
22291
22292 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22293 type. Return zero for ok, nonzero for disallowed. Issue error and
22294 warning messages under control of COMPLAIN. */
22295
22296 static int
22297 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22298 {
22299 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22300 return 0;
22301 else if (POINTER_TYPE_P (type))
22302 return 0;
22303 else if (TYPE_PTRMEM_P (type))
22304 return 0;
22305 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22306 return 0;
22307 else if (TREE_CODE (type) == TYPENAME_TYPE)
22308 return 0;
22309 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22310 return 0;
22311 else if (TREE_CODE (type) == NULLPTR_TYPE)
22312 return 0;
22313 /* A bound template template parm could later be instantiated to have a valid
22314 nontype parm type via an alias template. */
22315 else if (cxx_dialect >= cxx11
22316 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22317 return 0;
22318
22319 if (complain & tf_error)
22320 {
22321 if (type == error_mark_node)
22322 inform (input_location, "invalid template non-type parameter");
22323 else
22324 error ("%q#T is not a valid type for a template non-type parameter",
22325 type);
22326 }
22327 return 1;
22328 }
22329
22330 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22331 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22332
22333 static bool
22334 dependent_type_p_r (tree type)
22335 {
22336 tree scope;
22337
22338 /* [temp.dep.type]
22339
22340 A type is dependent if it is:
22341
22342 -- a template parameter. Template template parameters are types
22343 for us (since TYPE_P holds true for them) so we handle
22344 them here. */
22345 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22346 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22347 return true;
22348 /* -- a qualified-id with a nested-name-specifier which contains a
22349 class-name that names a dependent type or whose unqualified-id
22350 names a dependent type. */
22351 if (TREE_CODE (type) == TYPENAME_TYPE)
22352 return true;
22353
22354 /* An alias template specialization can be dependent even if the
22355 resulting type is not. */
22356 if (dependent_alias_template_spec_p (type))
22357 return true;
22358
22359 /* -- a cv-qualified type where the cv-unqualified type is
22360 dependent.
22361 No code is necessary for this bullet; the code below handles
22362 cv-qualified types, and we don't want to strip aliases with
22363 TYPE_MAIN_VARIANT because of DR 1558. */
22364 /* -- a compound type constructed from any dependent type. */
22365 if (TYPE_PTRMEM_P (type))
22366 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22367 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22368 (type)));
22369 else if (TYPE_PTR_P (type)
22370 || TREE_CODE (type) == REFERENCE_TYPE)
22371 return dependent_type_p (TREE_TYPE (type));
22372 else if (TREE_CODE (type) == FUNCTION_TYPE
22373 || TREE_CODE (type) == METHOD_TYPE)
22374 {
22375 tree arg_type;
22376
22377 if (dependent_type_p (TREE_TYPE (type)))
22378 return true;
22379 for (arg_type = TYPE_ARG_TYPES (type);
22380 arg_type;
22381 arg_type = TREE_CHAIN (arg_type))
22382 if (dependent_type_p (TREE_VALUE (arg_type)))
22383 return true;
22384 return false;
22385 }
22386 /* -- an array type constructed from any dependent type or whose
22387 size is specified by a constant expression that is
22388 value-dependent.
22389
22390 We checked for type- and value-dependence of the bounds in
22391 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22392 if (TREE_CODE (type) == ARRAY_TYPE)
22393 {
22394 if (TYPE_DOMAIN (type)
22395 && dependent_type_p (TYPE_DOMAIN (type)))
22396 return true;
22397 return dependent_type_p (TREE_TYPE (type));
22398 }
22399
22400 /* -- a template-id in which either the template name is a template
22401 parameter ... */
22402 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22403 return true;
22404 /* ... or any of the template arguments is a dependent type or
22405 an expression that is type-dependent or value-dependent. */
22406 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22407 && (any_dependent_template_arguments_p
22408 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22409 return true;
22410
22411 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22412 dependent; if the argument of the `typeof' expression is not
22413 type-dependent, then it should already been have resolved. */
22414 if (TREE_CODE (type) == TYPEOF_TYPE
22415 || TREE_CODE (type) == DECLTYPE_TYPE
22416 || TREE_CODE (type) == UNDERLYING_TYPE)
22417 return true;
22418
22419 /* A template argument pack is dependent if any of its packed
22420 arguments are. */
22421 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22422 {
22423 tree args = ARGUMENT_PACK_ARGS (type);
22424 int i, len = TREE_VEC_LENGTH (args);
22425 for (i = 0; i < len; ++i)
22426 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22427 return true;
22428 }
22429
22430 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22431 be template parameters. */
22432 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22433 return true;
22434
22435 /* The standard does not specifically mention types that are local
22436 to template functions or local classes, but they should be
22437 considered dependent too. For example:
22438
22439 template <int I> void f() {
22440 enum E { a = I };
22441 S<sizeof (E)> s;
22442 }
22443
22444 The size of `E' cannot be known until the value of `I' has been
22445 determined. Therefore, `E' must be considered dependent. */
22446 scope = TYPE_CONTEXT (type);
22447 if (scope && TYPE_P (scope))
22448 return dependent_type_p (scope);
22449 /* Don't use type_dependent_expression_p here, as it can lead
22450 to infinite recursion trying to determine whether a lambda
22451 nested in a lambda is dependent (c++/47687). */
22452 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22453 && DECL_LANG_SPECIFIC (scope)
22454 && DECL_TEMPLATE_INFO (scope)
22455 && (any_dependent_template_arguments_p
22456 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22457 return true;
22458
22459 /* Other types are non-dependent. */
22460 return false;
22461 }
22462
22463 /* Returns TRUE if TYPE is dependent, in the sense of
22464 [temp.dep.type]. Note that a NULL type is considered dependent. */
22465
22466 bool
22467 dependent_type_p (tree type)
22468 {
22469 /* If there are no template parameters in scope, then there can't be
22470 any dependent types. */
22471 if (!processing_template_decl)
22472 {
22473 /* If we are not processing a template, then nobody should be
22474 providing us with a dependent type. */
22475 gcc_assert (type);
22476 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22477 return false;
22478 }
22479
22480 /* If the type is NULL, we have not computed a type for the entity
22481 in question; in that case, the type is dependent. */
22482 if (!type)
22483 return true;
22484
22485 /* Erroneous types can be considered non-dependent. */
22486 if (type == error_mark_node)
22487 return false;
22488
22489 /* If we have not already computed the appropriate value for TYPE,
22490 do so now. */
22491 if (!TYPE_DEPENDENT_P_VALID (type))
22492 {
22493 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22494 TYPE_DEPENDENT_P_VALID (type) = 1;
22495 }
22496
22497 return TYPE_DEPENDENT_P (type);
22498 }
22499
22500 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22501 lookup. In other words, a dependent type that is not the current
22502 instantiation. */
22503
22504 bool
22505 dependent_scope_p (tree scope)
22506 {
22507 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22508 && !currently_open_class (scope));
22509 }
22510
22511 /* T is a SCOPE_REF; return whether we need to consider it
22512 instantiation-dependent so that we can check access at instantiation
22513 time even though we know which member it resolves to. */
22514
22515 static bool
22516 instantiation_dependent_scope_ref_p (tree t)
22517 {
22518 if (DECL_P (TREE_OPERAND (t, 1))
22519 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22520 && accessible_in_template_p (TREE_OPERAND (t, 0),
22521 TREE_OPERAND (t, 1)))
22522 return false;
22523 else
22524 return true;
22525 }
22526
22527 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22528 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22529 expression. */
22530
22531 /* Note that this predicate is not appropriate for general expressions;
22532 only constant expressions (that satisfy potential_constant_expression)
22533 can be tested for value dependence. */
22534
22535 bool
22536 value_dependent_expression_p (tree expression)
22537 {
22538 if (!processing_template_decl)
22539 return false;
22540
22541 /* A name declared with a dependent type. */
22542 if (DECL_P (expression) && type_dependent_expression_p (expression))
22543 return true;
22544
22545 switch (TREE_CODE (expression))
22546 {
22547 case IDENTIFIER_NODE:
22548 /* A name that has not been looked up -- must be dependent. */
22549 return true;
22550
22551 case TEMPLATE_PARM_INDEX:
22552 /* A non-type template parm. */
22553 return true;
22554
22555 case CONST_DECL:
22556 /* A non-type template parm. */
22557 if (DECL_TEMPLATE_PARM_P (expression))
22558 return true;
22559 return value_dependent_expression_p (DECL_INITIAL (expression));
22560
22561 case VAR_DECL:
22562 /* A constant with literal type and is initialized
22563 with an expression that is value-dependent.
22564
22565 Note that a non-dependent parenthesized initializer will have
22566 already been replaced with its constant value, so if we see
22567 a TREE_LIST it must be dependent. */
22568 if (DECL_INITIAL (expression)
22569 && decl_constant_var_p (expression)
22570 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22571 /* cp_finish_decl doesn't fold reference initializers. */
22572 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22573 || value_dependent_expression_p (DECL_INITIAL (expression))))
22574 return true;
22575 return false;
22576
22577 case DYNAMIC_CAST_EXPR:
22578 case STATIC_CAST_EXPR:
22579 case CONST_CAST_EXPR:
22580 case REINTERPRET_CAST_EXPR:
22581 case CAST_EXPR:
22582 /* These expressions are value-dependent if the type to which
22583 the cast occurs is dependent or the expression being casted
22584 is value-dependent. */
22585 {
22586 tree type = TREE_TYPE (expression);
22587
22588 if (dependent_type_p (type))
22589 return true;
22590
22591 /* A functional cast has a list of operands. */
22592 expression = TREE_OPERAND (expression, 0);
22593 if (!expression)
22594 {
22595 /* If there are no operands, it must be an expression such
22596 as "int()". This should not happen for aggregate types
22597 because it would form non-constant expressions. */
22598 gcc_assert (cxx_dialect >= cxx11
22599 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22600
22601 return false;
22602 }
22603
22604 if (TREE_CODE (expression) == TREE_LIST)
22605 return any_value_dependent_elements_p (expression);
22606
22607 return value_dependent_expression_p (expression);
22608 }
22609
22610 case SIZEOF_EXPR:
22611 if (SIZEOF_EXPR_TYPE_P (expression))
22612 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22613 /* FALLTHRU */
22614 case ALIGNOF_EXPR:
22615 case TYPEID_EXPR:
22616 /* A `sizeof' expression is value-dependent if the operand is
22617 type-dependent or is a pack expansion. */
22618 expression = TREE_OPERAND (expression, 0);
22619 if (PACK_EXPANSION_P (expression))
22620 return true;
22621 else if (TYPE_P (expression))
22622 return dependent_type_p (expression);
22623 return instantiation_dependent_expression_p (expression);
22624
22625 case AT_ENCODE_EXPR:
22626 /* An 'encode' expression is value-dependent if the operand is
22627 type-dependent. */
22628 expression = TREE_OPERAND (expression, 0);
22629 return dependent_type_p (expression);
22630
22631 case NOEXCEPT_EXPR:
22632 expression = TREE_OPERAND (expression, 0);
22633 return instantiation_dependent_expression_p (expression);
22634
22635 case SCOPE_REF:
22636 /* All instantiation-dependent expressions should also be considered
22637 value-dependent. */
22638 return instantiation_dependent_scope_ref_p (expression);
22639
22640 case COMPONENT_REF:
22641 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22642 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22643
22644 case NONTYPE_ARGUMENT_PACK:
22645 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22646 is value-dependent. */
22647 {
22648 tree values = ARGUMENT_PACK_ARGS (expression);
22649 int i, len = TREE_VEC_LENGTH (values);
22650
22651 for (i = 0; i < len; ++i)
22652 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22653 return true;
22654
22655 return false;
22656 }
22657
22658 case TRAIT_EXPR:
22659 {
22660 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22661 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22662 || (type2 ? dependent_type_p (type2) : false));
22663 }
22664
22665 case MODOP_EXPR:
22666 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22667 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22668
22669 case ARRAY_REF:
22670 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22671 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22672
22673 case ADDR_EXPR:
22674 {
22675 tree op = TREE_OPERAND (expression, 0);
22676 return (value_dependent_expression_p (op)
22677 || has_value_dependent_address (op));
22678 }
22679
22680 case REQUIRES_EXPR:
22681 /* Treat all requires-expressions as value-dependent so
22682 we don't try to fold them. */
22683 return true;
22684
22685 case TYPE_REQ:
22686 return dependent_type_p (TREE_OPERAND (expression, 0));
22687
22688 case CALL_EXPR:
22689 {
22690 tree fn = get_callee_fndecl (expression);
22691 int i, nargs;
22692 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22693 return true;
22694 nargs = call_expr_nargs (expression);
22695 for (i = 0; i < nargs; ++i)
22696 {
22697 tree op = CALL_EXPR_ARG (expression, i);
22698 /* In a call to a constexpr member function, look through the
22699 implicit ADDR_EXPR on the object argument so that it doesn't
22700 cause the call to be considered value-dependent. We also
22701 look through it in potential_constant_expression. */
22702 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22703 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22704 && TREE_CODE (op) == ADDR_EXPR)
22705 op = TREE_OPERAND (op, 0);
22706 if (value_dependent_expression_p (op))
22707 return true;
22708 }
22709 return false;
22710 }
22711
22712 case TEMPLATE_ID_EXPR:
22713 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22714 type-dependent. */
22715 return type_dependent_expression_p (expression)
22716 || variable_concept_p (TREE_OPERAND (expression, 0));
22717
22718 case CONSTRUCTOR:
22719 {
22720 unsigned ix;
22721 tree val;
22722 if (dependent_type_p (TREE_TYPE (expression)))
22723 return true;
22724 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22725 if (value_dependent_expression_p (val))
22726 return true;
22727 return false;
22728 }
22729
22730 case STMT_EXPR:
22731 /* Treat a GNU statement expression as dependent to avoid crashing
22732 under instantiate_non_dependent_expr; it can't be constant. */
22733 return true;
22734
22735 default:
22736 /* A constant expression is value-dependent if any subexpression is
22737 value-dependent. */
22738 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22739 {
22740 case tcc_reference:
22741 case tcc_unary:
22742 case tcc_comparison:
22743 case tcc_binary:
22744 case tcc_expression:
22745 case tcc_vl_exp:
22746 {
22747 int i, len = cp_tree_operand_length (expression);
22748
22749 for (i = 0; i < len; i++)
22750 {
22751 tree t = TREE_OPERAND (expression, i);
22752
22753 /* In some cases, some of the operands may be missing.l
22754 (For example, in the case of PREDECREMENT_EXPR, the
22755 amount to increment by may be missing.) That doesn't
22756 make the expression dependent. */
22757 if (t && value_dependent_expression_p (t))
22758 return true;
22759 }
22760 }
22761 break;
22762 default:
22763 break;
22764 }
22765 break;
22766 }
22767
22768 /* The expression is not value-dependent. */
22769 return false;
22770 }
22771
22772 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22773 [temp.dep.expr]. Note that an expression with no type is
22774 considered dependent. Other parts of the compiler arrange for an
22775 expression with type-dependent subexpressions to have no type, so
22776 this function doesn't have to be fully recursive. */
22777
22778 bool
22779 type_dependent_expression_p (tree expression)
22780 {
22781 if (!processing_template_decl)
22782 return false;
22783
22784 if (expression == NULL_TREE || expression == error_mark_node)
22785 return false;
22786
22787 /* An unresolved name is always dependent. */
22788 if (identifier_p (expression)
22789 || TREE_CODE (expression) == USING_DECL
22790 || TREE_CODE (expression) == WILDCARD_DECL)
22791 return true;
22792
22793 /* A fold expression is type-dependent. */
22794 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22795 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22796 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22797 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22798 return true;
22799
22800 /* Some expression forms are never type-dependent. */
22801 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22802 || TREE_CODE (expression) == SIZEOF_EXPR
22803 || TREE_CODE (expression) == ALIGNOF_EXPR
22804 || TREE_CODE (expression) == AT_ENCODE_EXPR
22805 || TREE_CODE (expression) == NOEXCEPT_EXPR
22806 || TREE_CODE (expression) == TRAIT_EXPR
22807 || TREE_CODE (expression) == TYPEID_EXPR
22808 || TREE_CODE (expression) == DELETE_EXPR
22809 || TREE_CODE (expression) == VEC_DELETE_EXPR
22810 || TREE_CODE (expression) == THROW_EXPR
22811 || TREE_CODE (expression) == REQUIRES_EXPR)
22812 return false;
22813
22814 /* The types of these expressions depends only on the type to which
22815 the cast occurs. */
22816 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22817 || TREE_CODE (expression) == STATIC_CAST_EXPR
22818 || TREE_CODE (expression) == CONST_CAST_EXPR
22819 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22820 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22821 || TREE_CODE (expression) == CAST_EXPR)
22822 return dependent_type_p (TREE_TYPE (expression));
22823
22824 /* The types of these expressions depends only on the type created
22825 by the expression. */
22826 if (TREE_CODE (expression) == NEW_EXPR
22827 || TREE_CODE (expression) == VEC_NEW_EXPR)
22828 {
22829 /* For NEW_EXPR tree nodes created inside a template, either
22830 the object type itself or a TREE_LIST may appear as the
22831 operand 1. */
22832 tree type = TREE_OPERAND (expression, 1);
22833 if (TREE_CODE (type) == TREE_LIST)
22834 /* This is an array type. We need to check array dimensions
22835 as well. */
22836 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22837 || value_dependent_expression_p
22838 (TREE_OPERAND (TREE_VALUE (type), 1));
22839 else
22840 return dependent_type_p (type);
22841 }
22842
22843 if (TREE_CODE (expression) == SCOPE_REF)
22844 {
22845 tree scope = TREE_OPERAND (expression, 0);
22846 tree name = TREE_OPERAND (expression, 1);
22847
22848 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22849 contains an identifier associated by name lookup with one or more
22850 declarations declared with a dependent type, or...a
22851 nested-name-specifier or qualified-id that names a member of an
22852 unknown specialization. */
22853 return (type_dependent_expression_p (name)
22854 || dependent_scope_p (scope));
22855 }
22856
22857 /* A function template specialization is type-dependent if it has any
22858 dependent template arguments. */
22859 if (TREE_CODE (expression) == FUNCTION_DECL
22860 && DECL_LANG_SPECIFIC (expression)
22861 && DECL_TEMPLATE_INFO (expression))
22862 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22863
22864 if (TREE_CODE (expression) == TEMPLATE_DECL
22865 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22866 return false;
22867
22868 if (TREE_CODE (expression) == STMT_EXPR)
22869 expression = stmt_expr_value_expr (expression);
22870
22871 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22872 {
22873 tree elt;
22874 unsigned i;
22875
22876 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22877 {
22878 if (type_dependent_expression_p (elt))
22879 return true;
22880 }
22881 return false;
22882 }
22883
22884 /* A static data member of the current instantiation with incomplete
22885 array type is type-dependent, as the definition and specializations
22886 can have different bounds. */
22887 if (VAR_P (expression)
22888 && DECL_CLASS_SCOPE_P (expression)
22889 && dependent_type_p (DECL_CONTEXT (expression))
22890 && VAR_HAD_UNKNOWN_BOUND (expression))
22891 return true;
22892
22893 /* An array of unknown bound depending on a variadic parameter, eg:
22894
22895 template<typename... Args>
22896 void foo (Args... args)
22897 {
22898 int arr[] = { args... };
22899 }
22900
22901 template<int... vals>
22902 void bar ()
22903 {
22904 int arr[] = { vals... };
22905 }
22906
22907 If the array has no length and has an initializer, it must be that
22908 we couldn't determine its length in cp_complete_array_type because
22909 it is dependent. */
22910 if (VAR_P (expression)
22911 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
22912 && !TYPE_DOMAIN (TREE_TYPE (expression))
22913 && DECL_INITIAL (expression))
22914 return true;
22915
22916 /* A variable template specialization is type-dependent if it has any
22917 dependent template arguments. */
22918 if (VAR_P (expression)
22919 && DECL_LANG_SPECIFIC (expression)
22920 && DECL_TEMPLATE_INFO (expression)
22921 && variable_template_p (DECL_TI_TEMPLATE (expression)))
22922 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22923
22924 /* Always dependent, on the number of arguments if nothing else. */
22925 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
22926 return true;
22927
22928 if (TREE_TYPE (expression) == unknown_type_node)
22929 {
22930 if (TREE_CODE (expression) == ADDR_EXPR)
22931 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
22932 if (TREE_CODE (expression) == COMPONENT_REF
22933 || TREE_CODE (expression) == OFFSET_REF)
22934 {
22935 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
22936 return true;
22937 expression = TREE_OPERAND (expression, 1);
22938 if (identifier_p (expression))
22939 return false;
22940 }
22941 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
22942 if (TREE_CODE (expression) == SCOPE_REF)
22943 return false;
22944
22945 if (BASELINK_P (expression))
22946 {
22947 if (BASELINK_OPTYPE (expression)
22948 && dependent_type_p (BASELINK_OPTYPE (expression)))
22949 return true;
22950 expression = BASELINK_FUNCTIONS (expression);
22951 }
22952
22953 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
22954 {
22955 if (any_dependent_template_arguments_p
22956 (TREE_OPERAND (expression, 1)))
22957 return true;
22958 expression = TREE_OPERAND (expression, 0);
22959 if (identifier_p (expression))
22960 return true;
22961 }
22962
22963 gcc_assert (TREE_CODE (expression) == OVERLOAD
22964 || TREE_CODE (expression) == FUNCTION_DECL);
22965
22966 while (expression)
22967 {
22968 if (type_dependent_expression_p (OVL_CURRENT (expression)))
22969 return true;
22970 expression = OVL_NEXT (expression);
22971 }
22972 return false;
22973 }
22974
22975 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
22976
22977 return (dependent_type_p (TREE_TYPE (expression)));
22978 }
22979
22980 /* walk_tree callback function for instantiation_dependent_expression_p,
22981 below. Returns non-zero if a dependent subexpression is found. */
22982
22983 static tree
22984 instantiation_dependent_r (tree *tp, int *walk_subtrees,
22985 void * /*data*/)
22986 {
22987 if (TYPE_P (*tp))
22988 {
22989 /* We don't have to worry about decltype currently because decltype
22990 of an instantiation-dependent expr is a dependent type. This
22991 might change depending on the resolution of DR 1172. */
22992 *walk_subtrees = false;
22993 return NULL_TREE;
22994 }
22995 enum tree_code code = TREE_CODE (*tp);
22996 switch (code)
22997 {
22998 /* Don't treat an argument list as dependent just because it has no
22999 TREE_TYPE. */
23000 case TREE_LIST:
23001 case TREE_VEC:
23002 return NULL_TREE;
23003
23004 case VAR_DECL:
23005 case CONST_DECL:
23006 /* A constant with a dependent initializer is dependent. */
23007 if (value_dependent_expression_p (*tp))
23008 return *tp;
23009 break;
23010
23011 case TEMPLATE_PARM_INDEX:
23012 return *tp;
23013
23014 /* Handle expressions with type operands. */
23015 case SIZEOF_EXPR:
23016 case ALIGNOF_EXPR:
23017 case TYPEID_EXPR:
23018 case AT_ENCODE_EXPR:
23019 {
23020 tree op = TREE_OPERAND (*tp, 0);
23021 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23022 op = TREE_TYPE (op);
23023 if (TYPE_P (op))
23024 {
23025 if (dependent_type_p (op))
23026 return *tp;
23027 else
23028 {
23029 *walk_subtrees = false;
23030 return NULL_TREE;
23031 }
23032 }
23033 break;
23034 }
23035
23036 case TRAIT_EXPR:
23037 if (value_dependent_expression_p (*tp))
23038 return *tp;
23039 *walk_subtrees = false;
23040 return NULL_TREE;
23041
23042 case COMPONENT_REF:
23043 if (identifier_p (TREE_OPERAND (*tp, 1)))
23044 /* In a template, finish_class_member_access_expr creates a
23045 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23046 type-dependent, so that we can check access control at
23047 instantiation time (PR 42277). See also Core issue 1273. */
23048 return *tp;
23049 break;
23050
23051 case SCOPE_REF:
23052 if (instantiation_dependent_scope_ref_p (*tp))
23053 return *tp;
23054 else
23055 break;
23056
23057 /* Treat statement-expressions as dependent. */
23058 case BIND_EXPR:
23059 return *tp;
23060
23061 /* Treat requires-expressions as dependent. */
23062 case REQUIRES_EXPR:
23063 return *tp;
23064
23065 case CALL_EXPR:
23066 /* Treat calls to function concepts as dependent. */
23067 if (function_concept_check_p (*tp))
23068 return *tp;
23069 break;
23070
23071 case TEMPLATE_ID_EXPR:
23072 /* And variable concepts. */
23073 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
23074 return *tp;
23075 break;
23076
23077 default:
23078 break;
23079 }
23080
23081 if (type_dependent_expression_p (*tp))
23082 return *tp;
23083 else
23084 return NULL_TREE;
23085 }
23086
23087 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
23088 sense defined by the ABI:
23089
23090 "An expression is instantiation-dependent if it is type-dependent
23091 or value-dependent, or it has a subexpression that is type-dependent
23092 or value-dependent." */
23093
23094 bool
23095 instantiation_dependent_expression_p (tree expression)
23096 {
23097 tree result;
23098
23099 if (!processing_template_decl)
23100 return false;
23101
23102 if (expression == error_mark_node)
23103 return false;
23104
23105 result = cp_walk_tree_without_duplicates (&expression,
23106 instantiation_dependent_r, NULL);
23107 return result != NULL_TREE;
23108 }
23109
23110 /* Like type_dependent_expression_p, but it also works while not processing
23111 a template definition, i.e. during substitution or mangling. */
23112
23113 bool
23114 type_dependent_expression_p_push (tree expr)
23115 {
23116 bool b;
23117 ++processing_template_decl;
23118 b = type_dependent_expression_p (expr);
23119 --processing_template_decl;
23120 return b;
23121 }
23122
23123 /* Returns TRUE if ARGS contains a type-dependent expression. */
23124
23125 bool
23126 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
23127 {
23128 unsigned int i;
23129 tree arg;
23130
23131 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
23132 {
23133 if (type_dependent_expression_p (arg))
23134 return true;
23135 }
23136 return false;
23137 }
23138
23139 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23140 expressions) contains any type-dependent expressions. */
23141
23142 bool
23143 any_type_dependent_elements_p (const_tree list)
23144 {
23145 for (; list; list = TREE_CHAIN (list))
23146 if (type_dependent_expression_p (TREE_VALUE (list)))
23147 return true;
23148
23149 return false;
23150 }
23151
23152 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23153 expressions) contains any value-dependent expressions. */
23154
23155 bool
23156 any_value_dependent_elements_p (const_tree list)
23157 {
23158 for (; list; list = TREE_CHAIN (list))
23159 if (value_dependent_expression_p (TREE_VALUE (list)))
23160 return true;
23161
23162 return false;
23163 }
23164
23165 /* Returns TRUE if the ARG (a template argument) is dependent. */
23166
23167 bool
23168 dependent_template_arg_p (tree arg)
23169 {
23170 if (!processing_template_decl)
23171 return false;
23172
23173 /* Assume a template argument that was wrongly written by the user
23174 is dependent. This is consistent with what
23175 any_dependent_template_arguments_p [that calls this function]
23176 does. */
23177 if (!arg || arg == error_mark_node)
23178 return true;
23179
23180 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23181 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23182
23183 if (TREE_CODE (arg) == TEMPLATE_DECL
23184 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23185 return dependent_template_p (arg);
23186 else if (ARGUMENT_PACK_P (arg))
23187 {
23188 tree args = ARGUMENT_PACK_ARGS (arg);
23189 int i, len = TREE_VEC_LENGTH (args);
23190 for (i = 0; i < len; ++i)
23191 {
23192 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23193 return true;
23194 }
23195
23196 return false;
23197 }
23198 else if (TYPE_P (arg))
23199 return dependent_type_p (arg);
23200 else
23201 return (type_dependent_expression_p (arg)
23202 || value_dependent_expression_p (arg));
23203 }
23204
23205 /* Returns true if ARGS (a collection of template arguments) contains
23206 any types that require structural equality testing. */
23207
23208 bool
23209 any_template_arguments_need_structural_equality_p (tree args)
23210 {
23211 int i;
23212 int j;
23213
23214 if (!args)
23215 return false;
23216 if (args == error_mark_node)
23217 return true;
23218
23219 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23220 {
23221 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23222 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23223 {
23224 tree arg = TREE_VEC_ELT (level, j);
23225 tree packed_args = NULL_TREE;
23226 int k, len = 1;
23227
23228 if (ARGUMENT_PACK_P (arg))
23229 {
23230 /* Look inside the argument pack. */
23231 packed_args = ARGUMENT_PACK_ARGS (arg);
23232 len = TREE_VEC_LENGTH (packed_args);
23233 }
23234
23235 for (k = 0; k < len; ++k)
23236 {
23237 if (packed_args)
23238 arg = TREE_VEC_ELT (packed_args, k);
23239
23240 if (error_operand_p (arg))
23241 return true;
23242 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23243 continue;
23244 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23245 return true;
23246 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23247 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23248 return true;
23249 }
23250 }
23251 }
23252
23253 return false;
23254 }
23255
23256 /* Returns true if ARGS (a collection of template arguments) contains
23257 any dependent arguments. */
23258
23259 bool
23260 any_dependent_template_arguments_p (const_tree args)
23261 {
23262 int i;
23263 int j;
23264
23265 if (!args)
23266 return false;
23267 if (args == error_mark_node)
23268 return true;
23269
23270 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23271 {
23272 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23273 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23274 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23275 return true;
23276 }
23277
23278 return false;
23279 }
23280
23281 /* Returns TRUE if the template TMPL is dependent. */
23282
23283 bool
23284 dependent_template_p (tree tmpl)
23285 {
23286 if (TREE_CODE (tmpl) == OVERLOAD)
23287 {
23288 while (tmpl)
23289 {
23290 if (dependent_template_p (OVL_CURRENT (tmpl)))
23291 return true;
23292 tmpl = OVL_NEXT (tmpl);
23293 }
23294 return false;
23295 }
23296
23297 /* Template template parameters are dependent. */
23298 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23299 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23300 return true;
23301 /* So are names that have not been looked up. */
23302 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23303 return true;
23304 /* So are member templates of dependent classes. */
23305 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
23306 return dependent_type_p (DECL_CONTEXT (tmpl));
23307 return false;
23308 }
23309
23310 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23311
23312 bool
23313 dependent_template_id_p (tree tmpl, tree args)
23314 {
23315 return (dependent_template_p (tmpl)
23316 || any_dependent_template_arguments_p (args));
23317 }
23318
23319 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23320 are dependent. */
23321
23322 bool
23323 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23324 {
23325 int i;
23326
23327 if (!processing_template_decl)
23328 return false;
23329
23330 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23331 {
23332 tree decl = TREE_VEC_ELT (declv, i);
23333 tree init = TREE_VEC_ELT (initv, i);
23334 tree cond = TREE_VEC_ELT (condv, i);
23335 tree incr = TREE_VEC_ELT (incrv, i);
23336
23337 if (type_dependent_expression_p (decl)
23338 || TREE_CODE (decl) == SCOPE_REF)
23339 return true;
23340
23341 if (init && type_dependent_expression_p (init))
23342 return true;
23343
23344 if (type_dependent_expression_p (cond))
23345 return true;
23346
23347 if (COMPARISON_CLASS_P (cond)
23348 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23349 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23350 return true;
23351
23352 if (TREE_CODE (incr) == MODOP_EXPR)
23353 {
23354 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23355 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23356 return true;
23357 }
23358 else if (type_dependent_expression_p (incr))
23359 return true;
23360 else if (TREE_CODE (incr) == MODIFY_EXPR)
23361 {
23362 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23363 return true;
23364 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23365 {
23366 tree t = TREE_OPERAND (incr, 1);
23367 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23368 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23369 return true;
23370 }
23371 }
23372 }
23373
23374 return false;
23375 }
23376
23377 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23378 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23379 no such TYPE can be found. Note that this function peers inside
23380 uninstantiated templates and therefore should be used only in
23381 extremely limited situations. ONLY_CURRENT_P restricts this
23382 peering to the currently open classes hierarchy (which is required
23383 when comparing types). */
23384
23385 tree
23386 resolve_typename_type (tree type, bool only_current_p)
23387 {
23388 tree scope;
23389 tree name;
23390 tree decl;
23391 int quals;
23392 tree pushed_scope;
23393 tree result;
23394
23395 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23396
23397 scope = TYPE_CONTEXT (type);
23398 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23399 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23400 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23401 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23402 identifier of the TYPENAME_TYPE anymore.
23403 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23404 TYPENAME_TYPE instead, we avoid messing up with a possible
23405 typedef variant case. */
23406 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23407
23408 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23409 it first before we can figure out what NAME refers to. */
23410 if (TREE_CODE (scope) == TYPENAME_TYPE)
23411 {
23412 if (TYPENAME_IS_RESOLVING_P (scope))
23413 /* Given a class template A with a dependent base with nested type C,
23414 typedef typename A::C::C C will land us here, as trying to resolve
23415 the initial A::C leads to the local C typedef, which leads back to
23416 A::C::C. So we break the recursion now. */
23417 return type;
23418 else
23419 scope = resolve_typename_type (scope, only_current_p);
23420 }
23421 /* If we don't know what SCOPE refers to, then we cannot resolve the
23422 TYPENAME_TYPE. */
23423 if (TREE_CODE (scope) == TYPENAME_TYPE)
23424 return type;
23425 /* If the SCOPE is a template type parameter, we have no way of
23426 resolving the name. */
23427 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23428 return type;
23429 /* If the SCOPE is not the current instantiation, there's no reason
23430 to look inside it. */
23431 if (only_current_p && !currently_open_class (scope))
23432 return type;
23433 /* If this is a typedef, we don't want to look inside (c++/11987). */
23434 if (typedef_variant_p (type))
23435 return type;
23436 /* If SCOPE isn't the template itself, it will not have a valid
23437 TYPE_FIELDS list. */
23438 if (CLASS_TYPE_P (scope)
23439 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23440 /* scope is either the template itself or a compatible instantiation
23441 like X<T>, so look up the name in the original template. */
23442 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23443 else
23444 /* scope is a partial instantiation, so we can't do the lookup or we
23445 will lose the template arguments. */
23446 return type;
23447 /* Enter the SCOPE so that name lookup will be resolved as if we
23448 were in the class definition. In particular, SCOPE will no
23449 longer be considered a dependent type. */
23450 pushed_scope = push_scope (scope);
23451 /* Look up the declaration. */
23452 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23453 tf_warning_or_error);
23454
23455 result = NULL_TREE;
23456
23457 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23458 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23459 if (!decl)
23460 /*nop*/;
23461 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23462 && TREE_CODE (decl) == TYPE_DECL)
23463 {
23464 result = TREE_TYPE (decl);
23465 if (result == error_mark_node)
23466 result = NULL_TREE;
23467 }
23468 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23469 && DECL_CLASS_TEMPLATE_P (decl))
23470 {
23471 tree tmpl;
23472 tree args;
23473 /* Obtain the template and the arguments. */
23474 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23475 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23476 /* Instantiate the template. */
23477 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23478 /*entering_scope=*/0,
23479 tf_error | tf_user);
23480 if (result == error_mark_node)
23481 result = NULL_TREE;
23482 }
23483
23484 /* Leave the SCOPE. */
23485 if (pushed_scope)
23486 pop_scope (pushed_scope);
23487
23488 /* If we failed to resolve it, return the original typename. */
23489 if (!result)
23490 return type;
23491
23492 /* If lookup found a typename type, resolve that too. */
23493 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23494 {
23495 /* Ill-formed programs can cause infinite recursion here, so we
23496 must catch that. */
23497 TYPENAME_IS_RESOLVING_P (type) = 1;
23498 result = resolve_typename_type (result, only_current_p);
23499 TYPENAME_IS_RESOLVING_P (type) = 0;
23500 }
23501
23502 /* Qualify the resulting type. */
23503 quals = cp_type_quals (type);
23504 if (quals)
23505 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23506
23507 return result;
23508 }
23509
23510 /* EXPR is an expression which is not type-dependent. Return a proxy
23511 for EXPR that can be used to compute the types of larger
23512 expressions containing EXPR. */
23513
23514 tree
23515 build_non_dependent_expr (tree expr)
23516 {
23517 tree inner_expr;
23518
23519 /* When checking, try to get a constant value for all non-dependent
23520 expressions in order to expose bugs in *_dependent_expression_p
23521 and constexpr. */
23522 if (flag_checking && cxx_dialect >= cxx11
23523 /* Don't do this during nsdmi parsing as it can lead to
23524 unexpected recursive instantiations. */
23525 && !parsing_nsdmi ())
23526 fold_non_dependent_expr (expr);
23527
23528 /* Preserve OVERLOADs; the functions must be available to resolve
23529 types. */
23530 inner_expr = expr;
23531 if (TREE_CODE (inner_expr) == STMT_EXPR)
23532 inner_expr = stmt_expr_value_expr (inner_expr);
23533 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23534 inner_expr = TREE_OPERAND (inner_expr, 0);
23535 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23536 inner_expr = TREE_OPERAND (inner_expr, 1);
23537 if (is_overloaded_fn (inner_expr)
23538 || TREE_CODE (inner_expr) == OFFSET_REF)
23539 return expr;
23540 /* There is no need to return a proxy for a variable. */
23541 if (VAR_P (expr))
23542 return expr;
23543 /* Preserve string constants; conversions from string constants to
23544 "char *" are allowed, even though normally a "const char *"
23545 cannot be used to initialize a "char *". */
23546 if (TREE_CODE (expr) == STRING_CST)
23547 return expr;
23548 /* Preserve void and arithmetic constants, as an optimization -- there is no
23549 reason to create a new node. */
23550 if (TREE_CODE (expr) == VOID_CST
23551 || TREE_CODE (expr) == INTEGER_CST
23552 || TREE_CODE (expr) == REAL_CST)
23553 return expr;
23554 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23555 There is at least one place where we want to know that a
23556 particular expression is a throw-expression: when checking a ?:
23557 expression, there are special rules if the second or third
23558 argument is a throw-expression. */
23559 if (TREE_CODE (expr) == THROW_EXPR)
23560 return expr;
23561
23562 /* Don't wrap an initializer list, we need to be able to look inside. */
23563 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23564 return expr;
23565
23566 /* Don't wrap a dummy object, we need to be able to test for it. */
23567 if (is_dummy_object (expr))
23568 return expr;
23569
23570 if (TREE_CODE (expr) == COND_EXPR)
23571 return build3 (COND_EXPR,
23572 TREE_TYPE (expr),
23573 TREE_OPERAND (expr, 0),
23574 (TREE_OPERAND (expr, 1)
23575 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23576 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23577 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23578 if (TREE_CODE (expr) == COMPOUND_EXPR
23579 && !COMPOUND_EXPR_OVERLOADED (expr))
23580 return build2 (COMPOUND_EXPR,
23581 TREE_TYPE (expr),
23582 TREE_OPERAND (expr, 0),
23583 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23584
23585 /* If the type is unknown, it can't really be non-dependent */
23586 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23587
23588 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23589 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23590 }
23591
23592 /* ARGS is a vector of expressions as arguments to a function call.
23593 Replace the arguments with equivalent non-dependent expressions.
23594 This modifies ARGS in place. */
23595
23596 void
23597 make_args_non_dependent (vec<tree, va_gc> *args)
23598 {
23599 unsigned int ix;
23600 tree arg;
23601
23602 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23603 {
23604 tree newarg = build_non_dependent_expr (arg);
23605 if (newarg != arg)
23606 (*args)[ix] = newarg;
23607 }
23608 }
23609
23610 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23611 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23612 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23613
23614 static tree
23615 make_auto_1 (tree name, bool set_canonical)
23616 {
23617 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23618 TYPE_NAME (au) = build_decl (input_location,
23619 TYPE_DECL, name, au);
23620 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23621 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23622 (0, processing_template_decl + 1, processing_template_decl + 1,
23623 TYPE_NAME (au), NULL_TREE);
23624 if (set_canonical)
23625 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23626 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23627 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23628
23629 return au;
23630 }
23631
23632 tree
23633 make_decltype_auto (void)
23634 {
23635 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23636 }
23637
23638 tree
23639 make_auto (void)
23640 {
23641 return make_auto_1 (get_identifier ("auto"), true);
23642 }
23643
23644 /* Make a "constrained auto" type-specifier. This is an
23645 auto type with constraints that must be associated after
23646 deduction. The constraint is formed from the given
23647 CONC and its optional sequence of arguments, which are
23648 non-null if written as partial-concept-id. */
23649
23650 tree
23651 make_constrained_auto (tree con, tree args)
23652 {
23653 tree type = make_auto_1 (get_identifier ("auto"), false);
23654
23655 /* Build the constraint. */
23656 tree tmpl = DECL_TI_TEMPLATE (con);
23657 tree expr;
23658 if (VAR_P (con))
23659 expr = build_concept_check (tmpl, type, args);
23660 else
23661 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
23662
23663 tree constr = make_predicate_constraint (expr);
23664 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
23665
23666 /* Our canonical type depends on the constraint. */
23667 TYPE_CANONICAL (type) = canonical_type_parameter (type);
23668
23669 /* Attach the constraint to the type declaration. */
23670 tree decl = TYPE_NAME (type);
23671 return decl;
23672 }
23673
23674 /* Given type ARG, return std::initializer_list<ARG>. */
23675
23676 static tree
23677 listify (tree arg)
23678 {
23679 tree std_init_list = namespace_binding
23680 (get_identifier ("initializer_list"), std_node);
23681 tree argvec;
23682 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23683 {
23684 error ("deducing from brace-enclosed initializer list requires "
23685 "#include <initializer_list>");
23686 return error_mark_node;
23687 }
23688 argvec = make_tree_vec (1);
23689 TREE_VEC_ELT (argvec, 0) = arg;
23690 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23691 NULL_TREE, 0, tf_warning_or_error);
23692 }
23693
23694 /* Replace auto in TYPE with std::initializer_list<auto>. */
23695
23696 static tree
23697 listify_autos (tree type, tree auto_node)
23698 {
23699 tree init_auto = listify (auto_node);
23700 tree argvec = make_tree_vec (1);
23701 TREE_VEC_ELT (argvec, 0) = init_auto;
23702 if (processing_template_decl)
23703 argvec = add_to_template_args (current_template_args (), argvec);
23704 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23705 }
23706
23707 /* Hash traits for hashing possibly constrained 'auto'
23708 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23709
23710 struct auto_hash : default_hash_traits<tree>
23711 {
23712 static inline hashval_t hash (tree);
23713 static inline bool equal (tree, tree);
23714 };
23715
23716 /* Hash the 'auto' T. */
23717
23718 inline hashval_t
23719 auto_hash::hash (tree t)
23720 {
23721 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23722 /* Matching constrained-type-specifiers denote the same template
23723 parameter, so hash the constraint. */
23724 return hash_placeholder_constraint (c);
23725 else
23726 /* But unconstrained autos are all separate, so just hash the pointer. */
23727 return iterative_hash_object (t, 0);
23728 }
23729
23730 /* Compare two 'auto's. */
23731
23732 inline bool
23733 auto_hash::equal (tree t1, tree t2)
23734 {
23735 if (t1 == t2)
23736 return true;
23737
23738 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23739 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23740
23741 /* Two unconstrained autos are distinct. */
23742 if (!c1 || !c2)
23743 return false;
23744
23745 return equivalent_placeholder_constraints (c1, c2);
23746 }
23747
23748 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23749 constrained) auto, add it to the vector. */
23750
23751 static int
23752 extract_autos_r (tree t, void *data)
23753 {
23754 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23755 if (is_auto_or_concept (t))
23756 {
23757 /* All the autos were built with index 0; fix that up now. */
23758 tree *p = hash.find_slot (t, INSERT);
23759 unsigned idx;
23760 if (*p)
23761 /* If this is a repeated constrained-type-specifier, use the index we
23762 chose before. */
23763 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23764 else
23765 {
23766 /* Otherwise this is new, so use the current count. */
23767 *p = t;
23768 idx = hash.elements () - 1;
23769 }
23770 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23771 }
23772
23773 /* Always keep walking. */
23774 return 0;
23775 }
23776
23777 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23778 says they can appear anywhere in the type. */
23779
23780 static tree
23781 extract_autos (tree type)
23782 {
23783 hash_set<tree> visited;
23784 hash_table<auto_hash> hash (2);
23785
23786 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23787
23788 tree tree_vec = make_tree_vec (hash.elements());
23789 for (hash_table<auto_hash>::iterator iter = hash.begin();
23790 iter != hash.end(); ++iter)
23791 {
23792 tree elt = *iter;
23793 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23794 TREE_VEC_ELT (tree_vec, i)
23795 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23796 }
23797
23798 return tree_vec;
23799 }
23800
23801 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23802 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23803
23804 tree
23805 do_auto_deduction (tree type, tree init, tree auto_node)
23806 {
23807 return do_auto_deduction (type, init, auto_node,
23808 tf_warning_or_error,
23809 adc_unspecified);
23810 }
23811
23812 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23813 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23814 The CONTEXT determines the context in which auto deduction is performed
23815 and is used to control error diagnostics. */
23816
23817 tree
23818 do_auto_deduction (tree type, tree init, tree auto_node,
23819 tsubst_flags_t complain, auto_deduction_context context)
23820 {
23821 tree targs;
23822
23823 if (init == error_mark_node)
23824 return error_mark_node;
23825
23826 if (type_dependent_expression_p (init))
23827 /* Defining a subset of type-dependent expressions that we can deduce
23828 from ahead of time isn't worth the trouble. */
23829 return type;
23830
23831 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23832 with either a new invented type template parameter U or, if the
23833 initializer is a braced-init-list (8.5.4), with
23834 std::initializer_list<U>. */
23835 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23836 {
23837 if (!DIRECT_LIST_INIT_P (init))
23838 type = listify_autos (type, auto_node);
23839 else if (CONSTRUCTOR_NELTS (init) == 1)
23840 init = CONSTRUCTOR_ELT (init, 0)->value;
23841 else
23842 {
23843 if (complain & tf_warning_or_error)
23844 {
23845 if (permerror (input_location, "direct-list-initialization of "
23846 "%<auto%> requires exactly one element"))
23847 inform (input_location,
23848 "for deduction to %<std::initializer_list%>, use copy-"
23849 "list-initialization (i.e. add %<=%> before the %<{%>)");
23850 }
23851 type = listify_autos (type, auto_node);
23852 }
23853 }
23854
23855 if (type == error_mark_node)
23856 return error_mark_node;
23857
23858 init = resolve_nondeduced_context (init);
23859
23860 if (AUTO_IS_DECLTYPE (auto_node))
23861 {
23862 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23863 && !REF_PARENTHESIZED_P (init)));
23864 targs = make_tree_vec (1);
23865 TREE_VEC_ELT (targs, 0)
23866 = finish_decltype_type (init, id, tf_warning_or_error);
23867 if (type != auto_node)
23868 {
23869 if (complain & tf_error)
23870 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23871 return error_mark_node;
23872 }
23873 }
23874 else
23875 {
23876 tree parms = build_tree_list (NULL_TREE, type);
23877 tree tparms;
23878
23879 if (flag_concepts)
23880 tparms = extract_autos (type);
23881 else
23882 {
23883 tparms = make_tree_vec (1);
23884 TREE_VEC_ELT (tparms, 0)
23885 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23886 }
23887
23888 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
23889 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23890 DEDUCE_CALL, LOOKUP_NORMAL,
23891 NULL, /*explain_p=*/false);
23892 if (val > 0)
23893 {
23894 if (processing_template_decl)
23895 /* Try again at instantiation time. */
23896 return type;
23897 if (type && type != error_mark_node
23898 && (complain & tf_error))
23899 /* If type is error_mark_node a diagnostic must have been
23900 emitted by now. Also, having a mention to '<type error>'
23901 in the diagnostic is not really useful to the user. */
23902 {
23903 if (cfun && auto_node == current_function_auto_return_pattern
23904 && LAMBDA_FUNCTION_P (current_function_decl))
23905 error ("unable to deduce lambda return type from %qE", init);
23906 else
23907 error ("unable to deduce %qT from %qE", type, init);
23908 type_unification_real (tparms, targs, parms, &init, 1, 0,
23909 DEDUCE_CALL, LOOKUP_NORMAL,
23910 NULL, /*explain_p=*/true);
23911 }
23912 return error_mark_node;
23913 }
23914 }
23915
23916 /* Check any placeholder constraints against the deduced type. */
23917 if (flag_concepts && !processing_template_decl)
23918 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
23919 {
23920 /* Use the deduced type to check the associated constraints. */
23921 if (!constraints_satisfied_p (constr, targs))
23922 {
23923 if (complain & tf_warning_or_error)
23924 {
23925 switch (context)
23926 {
23927 case adc_unspecified:
23928 error("placeholder constraints not satisfied");
23929 break;
23930 case adc_variable_type:
23931 error ("deduced initializer does not satisfy "
23932 "placeholder constraints");
23933 break;
23934 case adc_return_type:
23935 error ("deduced return type does not satisfy "
23936 "placeholder constraints");
23937 break;
23938 case adc_requirement:
23939 error ("deduced expression type does not saatisy "
23940 "placeholder constraints");
23941 break;
23942 }
23943 diagnose_constraints (input_location, constr, targs);
23944 }
23945 return error_mark_node;
23946 }
23947 }
23948
23949 if (processing_template_decl)
23950 targs = add_to_template_args (current_template_args (), targs);
23951 return tsubst (type, targs, complain, NULL_TREE);
23952 }
23953
23954 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
23955 result. */
23956
23957 tree
23958 splice_late_return_type (tree type, tree late_return_type)
23959 {
23960 if (is_auto (type))
23961 {
23962 if (late_return_type)
23963 return late_return_type;
23964
23965 tree idx = get_template_parm_index (type);
23966 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
23967 /* In an abbreviated function template we didn't know we were dealing
23968 with a function template when we saw the auto return type, so update
23969 it to have the correct level. */
23970 return make_auto_1 (TYPE_IDENTIFIER (type), true);
23971 }
23972 return type;
23973 }
23974
23975 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
23976 'decltype(auto)'. */
23977
23978 bool
23979 is_auto (const_tree type)
23980 {
23981 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23982 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
23983 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
23984 return true;
23985 else
23986 return false;
23987 }
23988
23989 /* for_each_template_parm callback for type_uses_auto. */
23990
23991 int
23992 is_auto_r (tree tp, void */*data*/)
23993 {
23994 return is_auto_or_concept (tp);
23995 }
23996
23997 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
23998 a use of `auto'. Returns NULL_TREE otherwise. */
23999
24000 tree
24001 type_uses_auto (tree type)
24002 {
24003 if (type == NULL_TREE)
24004 return NULL_TREE;
24005 else if (flag_concepts)
24006 {
24007 /* The Concepts TS allows multiple autos in one type-specifier; just
24008 return the first one we find, do_auto_deduction will collect all of
24009 them. */
24010 if (uses_template_parms (type))
24011 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
24012 /*visited*/NULL, /*nondeduced*/true);
24013 else
24014 return NULL_TREE;
24015 }
24016 else
24017 return find_type_usage (type, is_auto);
24018 }
24019
24020 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
24021 'decltype(auto)' or a concept. */
24022
24023 bool
24024 is_auto_or_concept (const_tree type)
24025 {
24026 return is_auto (type); // or concept
24027 }
24028
24029 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
24030 a concept identifier) iff TYPE contains a use of a generic type. Returns
24031 NULL_TREE otherwise. */
24032
24033 tree
24034 type_uses_auto_or_concept (tree type)
24035 {
24036 return find_type_usage (type, is_auto_or_concept);
24037 }
24038
24039
24040 /* For a given template T, return the vector of typedefs referenced
24041 in T for which access check is needed at T instantiation time.
24042 T is either a FUNCTION_DECL or a RECORD_TYPE.
24043 Those typedefs were added to T by the function
24044 append_type_to_template_for_access_check. */
24045
24046 vec<qualified_typedef_usage_t, va_gc> *
24047 get_types_needing_access_check (tree t)
24048 {
24049 tree ti;
24050 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
24051
24052 if (!t || t == error_mark_node)
24053 return NULL;
24054
24055 if (!(ti = get_template_info (t)))
24056 return NULL;
24057
24058 if (CLASS_TYPE_P (t)
24059 || TREE_CODE (t) == FUNCTION_DECL)
24060 {
24061 if (!TI_TEMPLATE (ti))
24062 return NULL;
24063
24064 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
24065 }
24066
24067 return result;
24068 }
24069
24070 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
24071 tied to T. That list of typedefs will be access checked at
24072 T instantiation time.
24073 T is either a FUNCTION_DECL or a RECORD_TYPE.
24074 TYPE_DECL is a TYPE_DECL node representing a typedef.
24075 SCOPE is the scope through which TYPE_DECL is accessed.
24076 LOCATION is the location of the usage point of TYPE_DECL.
24077
24078 This function is a subroutine of
24079 append_type_to_template_for_access_check. */
24080
24081 static void
24082 append_type_to_template_for_access_check_1 (tree t,
24083 tree type_decl,
24084 tree scope,
24085 location_t location)
24086 {
24087 qualified_typedef_usage_t typedef_usage;
24088 tree ti;
24089
24090 if (!t || t == error_mark_node)
24091 return;
24092
24093 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
24094 || CLASS_TYPE_P (t))
24095 && type_decl
24096 && TREE_CODE (type_decl) == TYPE_DECL
24097 && scope);
24098
24099 if (!(ti = get_template_info (t)))
24100 return;
24101
24102 gcc_assert (TI_TEMPLATE (ti));
24103
24104 typedef_usage.typedef_decl = type_decl;
24105 typedef_usage.context = scope;
24106 typedef_usage.locus = location;
24107
24108 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
24109 }
24110
24111 /* Append TYPE_DECL to the template TEMPL.
24112 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
24113 At TEMPL instanciation time, TYPE_DECL will be checked to see
24114 if it can be accessed through SCOPE.
24115 LOCATION is the location of the usage point of TYPE_DECL.
24116
24117 e.g. consider the following code snippet:
24118
24119 class C
24120 {
24121 typedef int myint;
24122 };
24123
24124 template<class U> struct S
24125 {
24126 C::myint mi; // <-- usage point of the typedef C::myint
24127 };
24128
24129 S<char> s;
24130
24131 At S<char> instantiation time, we need to check the access of C::myint
24132 In other words, we need to check the access of the myint typedef through
24133 the C scope. For that purpose, this function will add the myint typedef
24134 and the scope C through which its being accessed to a list of typedefs
24135 tied to the template S. That list will be walked at template instantiation
24136 time and access check performed on each typedefs it contains.
24137 Note that this particular code snippet should yield an error because
24138 myint is private to C. */
24139
24140 void
24141 append_type_to_template_for_access_check (tree templ,
24142 tree type_decl,
24143 tree scope,
24144 location_t location)
24145 {
24146 qualified_typedef_usage_t *iter;
24147 unsigned i;
24148
24149 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
24150
24151 /* Make sure we don't append the type to the template twice. */
24152 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
24153 if (iter->typedef_decl == type_decl && scope == iter->context)
24154 return;
24155
24156 append_type_to_template_for_access_check_1 (templ, type_decl,
24157 scope, location);
24158 }
24159
24160 /* Convert the generic type parameters in PARM that match the types given in the
24161 range [START_IDX, END_IDX) from the current_template_parms into generic type
24162 packs. */
24163
24164 tree
24165 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
24166 {
24167 tree current = current_template_parms;
24168 int depth = TMPL_PARMS_DEPTH (current);
24169 current = INNERMOST_TEMPLATE_PARMS (current);
24170 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
24171
24172 for (int i = 0; i < start_idx; ++i)
24173 TREE_VEC_ELT (replacement, i)
24174 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24175
24176 for (int i = start_idx; i < end_idx; ++i)
24177 {
24178 /* Create a distinct parameter pack type from the current parm and add it
24179 to the replacement args to tsubst below into the generic function
24180 parameter. */
24181
24182 tree o = TREE_TYPE (TREE_VALUE
24183 (TREE_VEC_ELT (current, i)));
24184 tree t = copy_type (o);
24185 TEMPLATE_TYPE_PARM_INDEX (t)
24186 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
24187 o, 0, 0, tf_none);
24188 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
24189 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
24190 TYPE_MAIN_VARIANT (t) = t;
24191 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
24192 TYPE_CANONICAL (t) = canonical_type_parameter (t);
24193 TREE_VEC_ELT (replacement, i) = t;
24194 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24195 }
24196
24197 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24198 TREE_VEC_ELT (replacement, i)
24199 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24200
24201 /* If there are more levels then build up the replacement with the outer
24202 template parms. */
24203 if (depth > 1)
24204 replacement = add_to_template_args (template_parms_to_args
24205 (TREE_CHAIN (current_template_parms)),
24206 replacement);
24207
24208 return tsubst (parm, replacement, tf_none, NULL_TREE);
24209 }
24210
24211 /* Entries in the decl_constraint hash table. */
24212 struct GTY((for_user)) constr_entry
24213 {
24214 tree decl;
24215 tree ci;
24216 };
24217
24218 /* Hashing function and equality for constraint entries. */
24219 struct constr_hasher : ggc_ptr_hash<constr_entry>
24220 {
24221 static hashval_t hash (constr_entry *e)
24222 {
24223 return (hashval_t)DECL_UID (e->decl);
24224 }
24225
24226 static bool equal (constr_entry *e1, constr_entry *e2)
24227 {
24228 return e1->decl == e2->decl;
24229 }
24230 };
24231
24232 /* A mapping from declarations to constraint information. Note that
24233 both templates and their underlying declarations are mapped to the
24234 same constraint information.
24235
24236 FIXME: This is defined in pt.c because garbage collection
24237 code is not being generated for constraint.cc. */
24238
24239 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24240
24241 /* Returns true iff cinfo contains a valid set of constraints.
24242 This is the case when the associated requirements have been
24243 successfully decomposed into lists of atomic constraints.
24244 That is, when the saved assumptions are not error_mark_node. */
24245
24246 bool
24247 valid_constraints_p (tree cinfo)
24248 {
24249 gcc_assert (cinfo);
24250 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
24251 }
24252
24253 /* Returns the template constraints of declaration T. If T is not
24254 constrained, return NULL_TREE. Note that T must be non-null. */
24255
24256 tree
24257 get_constraints (tree t)
24258 {
24259 gcc_assert (DECL_P (t));
24260 if (TREE_CODE (t) == TEMPLATE_DECL)
24261 t = DECL_TEMPLATE_RESULT (t);
24262 constr_entry elt = { t, NULL_TREE };
24263 constr_entry* found = decl_constraints->find (&elt);
24264 if (found)
24265 return found->ci;
24266 else
24267 return NULL_TREE;
24268 }
24269
24270 /* Associate the given constraint information CI with the declaration
24271 T. If T is a template, then the constraints are associated with
24272 its underlying declaration. Don't build associations if CI is
24273 NULL_TREE. */
24274
24275 void
24276 set_constraints (tree t, tree ci)
24277 {
24278 if (!ci)
24279 return;
24280 gcc_assert (t);
24281 if (TREE_CODE (t) == TEMPLATE_DECL)
24282 t = DECL_TEMPLATE_RESULT (t);
24283 gcc_assert (!get_constraints (t));
24284 constr_entry elt = {t, ci};
24285 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24286 constr_entry* entry = ggc_alloc<constr_entry> ();
24287 *entry = elt;
24288 *slot = entry;
24289 }
24290
24291 /* Remove the associated constraints of the declaration T. */
24292
24293 void
24294 remove_constraints (tree t)
24295 {
24296 gcc_assert (DECL_P (t));
24297 if (TREE_CODE (t) == TEMPLATE_DECL)
24298 t = DECL_TEMPLATE_RESULT (t);
24299
24300 constr_entry elt = {t, NULL_TREE};
24301 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24302 if (slot)
24303 decl_constraints->clear_slot (slot);
24304 }
24305
24306 /* Set up the hash table for constraint association. */
24307
24308 void
24309 init_constraint_processing (void)
24310 {
24311 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24312 }
24313
24314 /* Set up the hash tables for template instantiations. */
24315
24316 void
24317 init_template_processing (void)
24318 {
24319 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24320 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24321 }
24322
24323 /* Print stats about the template hash tables for -fstats. */
24324
24325 void
24326 print_template_statistics (void)
24327 {
24328 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24329 "%f collisions\n", (long) decl_specializations->size (),
24330 (long) decl_specializations->elements (),
24331 decl_specializations->collisions ());
24332 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24333 "%f collisions\n", (long) type_specializations->size (),
24334 (long) type_specializations->elements (),
24335 type_specializations->collisions ());
24336 }
24337
24338 #include "gt-cp-pt.h"