pt.c (instantiate_class_template_1): Set function_depth around instantiation of lambd...
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2015 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
218 /* Make the current scope suitable for access checking when we are
219 processing T. T can be FUNCTION_DECL for instantiated function
220 template, VAR_DECL for static member variable, or TYPE_DECL for
221 alias template (needed by instantiate_decl). */
222
223 static void
224 push_access_scope (tree t)
225 {
226 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
227 || TREE_CODE (t) == TYPE_DECL);
228
229 if (DECL_FRIEND_CONTEXT (t))
230 push_nested_class (DECL_FRIEND_CONTEXT (t));
231 else if (DECL_CLASS_SCOPE_P (t))
232 push_nested_class (DECL_CONTEXT (t));
233 else
234 push_to_top_level ();
235
236 if (TREE_CODE (t) == FUNCTION_DECL)
237 {
238 saved_access_scope = tree_cons
239 (NULL_TREE, current_function_decl, saved_access_scope);
240 current_function_decl = t;
241 }
242 }
243
244 /* Restore the scope set up by push_access_scope. T is the node we
245 are processing. */
246
247 static void
248 pop_access_scope (tree t)
249 {
250 if (TREE_CODE (t) == FUNCTION_DECL)
251 {
252 current_function_decl = TREE_VALUE (saved_access_scope);
253 saved_access_scope = TREE_CHAIN (saved_access_scope);
254 }
255
256 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
257 pop_nested_class ();
258 else
259 pop_from_top_level ();
260 }
261
262 /* Do any processing required when DECL (a member template
263 declaration) is finished. Returns the TEMPLATE_DECL corresponding
264 to DECL, unless it is a specialization, in which case the DECL
265 itself is returned. */
266
267 tree
268 finish_member_template_decl (tree decl)
269 {
270 if (decl == error_mark_node)
271 return error_mark_node;
272
273 gcc_assert (DECL_P (decl));
274
275 if (TREE_CODE (decl) == TYPE_DECL)
276 {
277 tree type;
278
279 type = TREE_TYPE (decl);
280 if (type == error_mark_node)
281 return error_mark_node;
282 if (MAYBE_CLASS_TYPE_P (type)
283 && CLASSTYPE_TEMPLATE_INFO (type)
284 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
285 {
286 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
287 check_member_template (tmpl);
288 return tmpl;
289 }
290 return NULL_TREE;
291 }
292 else if (TREE_CODE (decl) == FIELD_DECL)
293 error ("data member %qD cannot be a member template", decl);
294 else if (DECL_TEMPLATE_INFO (decl))
295 {
296 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
297 {
298 check_member_template (DECL_TI_TEMPLATE (decl));
299 return DECL_TI_TEMPLATE (decl);
300 }
301 else
302 return decl;
303 }
304 else
305 error ("invalid member template declaration %qD", decl);
306
307 return error_mark_node;
308 }
309
310 /* Create a template info node. */
311
312 tree
313 build_template_info (tree template_decl, tree template_args)
314 {
315 tree result = make_node (TEMPLATE_INFO);
316 TI_TEMPLATE (result) = template_decl;
317 TI_ARGS (result) = template_args;
318 return result;
319 }
320
321 /* Return the template info node corresponding to T, whatever T is. */
322
323 tree
324 get_template_info (const_tree t)
325 {
326 tree tinfo = NULL_TREE;
327
328 if (!t || t == error_mark_node)
329 return NULL;
330
331 if (TREE_CODE (t) == NAMESPACE_DECL)
332 return NULL;
333
334 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
335 tinfo = DECL_TEMPLATE_INFO (t);
336
337 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
338 t = TREE_TYPE (t);
339
340 if (OVERLOAD_TYPE_P (t))
341 tinfo = TYPE_TEMPLATE_INFO (t);
342 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
343 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
344
345 return tinfo;
346 }
347
348 /* Returns the template nesting level of the indicated class TYPE.
349
350 For example, in:
351 template <class T>
352 struct A
353 {
354 template <class U>
355 struct B {};
356 };
357
358 A<T>::B<U> has depth two, while A<T> has depth one.
359 Both A<T>::B<int> and A<int>::B<U> have depth one, if
360 they are instantiations, not specializations.
361
362 This function is guaranteed to return 0 if passed NULL_TREE so
363 that, for example, `template_class_depth (current_class_type)' is
364 always safe. */
365
366 int
367 template_class_depth (tree type)
368 {
369 int depth;
370
371 for (depth = 0;
372 type && TREE_CODE (type) != NAMESPACE_DECL;
373 type = (TREE_CODE (type) == FUNCTION_DECL)
374 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
375 {
376 tree tinfo = get_template_info (type);
377
378 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
379 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
380 ++depth;
381 }
382
383 return depth;
384 }
385
386 /* Subroutine of maybe_begin_member_template_processing.
387 Returns true if processing DECL needs us to push template parms. */
388
389 static bool
390 inline_needs_template_parms (tree decl, bool nsdmi)
391 {
392 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
393 return false;
394
395 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
396 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
397 }
398
399 /* Subroutine of maybe_begin_member_template_processing.
400 Push the template parms in PARMS, starting from LEVELS steps into the
401 chain, and ending at the beginning, since template parms are listed
402 innermost first. */
403
404 static void
405 push_inline_template_parms_recursive (tree parmlist, int levels)
406 {
407 tree parms = TREE_VALUE (parmlist);
408 int i;
409
410 if (levels > 1)
411 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
412
413 ++processing_template_decl;
414 current_template_parms
415 = tree_cons (size_int (processing_template_decl),
416 parms, current_template_parms);
417 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
418
419 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
420 NULL);
421 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
422 {
423 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
424
425 if (error_operand_p (parm))
426 continue;
427
428 gcc_assert (DECL_P (parm));
429
430 switch (TREE_CODE (parm))
431 {
432 case TYPE_DECL:
433 case TEMPLATE_DECL:
434 pushdecl (parm);
435 break;
436
437 case PARM_DECL:
438 /* Push the CONST_DECL. */
439 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
440 break;
441
442 default:
443 gcc_unreachable ();
444 }
445 }
446 }
447
448 /* Restore the template parameter context for a member template, a
449 friend template defined in a class definition, or a non-template
450 member of template class. */
451
452 void
453 maybe_begin_member_template_processing (tree decl)
454 {
455 tree parms;
456 int levels = 0;
457 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
458
459 if (nsdmi)
460 {
461 tree ctx = DECL_CONTEXT (decl);
462 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
463 /* Disregard full specializations (c++/60999). */
464 && uses_template_parms (ctx)
465 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
466 }
467
468 if (inline_needs_template_parms (decl, nsdmi))
469 {
470 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
471 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
472
473 if (DECL_TEMPLATE_SPECIALIZATION (decl))
474 {
475 --levels;
476 parms = TREE_CHAIN (parms);
477 }
478
479 push_inline_template_parms_recursive (parms, levels);
480 }
481
482 /* Remember how many levels of template parameters we pushed so that
483 we can pop them later. */
484 inline_parm_levels.safe_push (levels);
485 }
486
487 /* Undo the effects of maybe_begin_member_template_processing. */
488
489 void
490 maybe_end_member_template_processing (void)
491 {
492 int i;
493 int last;
494
495 if (inline_parm_levels.length () == 0)
496 return;
497
498 last = inline_parm_levels.pop ();
499 for (i = 0; i < last; ++i)
500 {
501 --processing_template_decl;
502 current_template_parms = TREE_CHAIN (current_template_parms);
503 poplevel (0, 0, 0);
504 }
505 }
506
507 /* Return a new template argument vector which contains all of ARGS,
508 but has as its innermost set of arguments the EXTRA_ARGS. */
509
510 static tree
511 add_to_template_args (tree args, tree extra_args)
512 {
513 tree new_args;
514 int extra_depth;
515 int i;
516 int j;
517
518 if (args == NULL_TREE || extra_args == error_mark_node)
519 return extra_args;
520
521 extra_depth = TMPL_ARGS_DEPTH (extra_args);
522 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
523
524 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
525 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
526
527 for (j = 1; j <= extra_depth; ++j, ++i)
528 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
529
530 return new_args;
531 }
532
533 /* Like add_to_template_args, but only the outermost ARGS are added to
534 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
535 (EXTRA_ARGS) levels are added. This function is used to combine
536 the template arguments from a partial instantiation with the
537 template arguments used to attain the full instantiation from the
538 partial instantiation. */
539
540 static tree
541 add_outermost_template_args (tree args, tree extra_args)
542 {
543 tree new_args;
544
545 /* If there are more levels of EXTRA_ARGS than there are ARGS,
546 something very fishy is going on. */
547 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
548
549 /* If *all* the new arguments will be the EXTRA_ARGS, just return
550 them. */
551 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
552 return extra_args;
553
554 /* For the moment, we make ARGS look like it contains fewer levels. */
555 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
556
557 new_args = add_to_template_args (args, extra_args);
558
559 /* Now, we restore ARGS to its full dimensions. */
560 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
561
562 return new_args;
563 }
564
565 /* Return the N levels of innermost template arguments from the ARGS. */
566
567 tree
568 get_innermost_template_args (tree args, int n)
569 {
570 tree new_args;
571 int extra_levels;
572 int i;
573
574 gcc_assert (n >= 0);
575
576 /* If N is 1, just return the innermost set of template arguments. */
577 if (n == 1)
578 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
579
580 /* If we're not removing anything, just return the arguments we were
581 given. */
582 extra_levels = TMPL_ARGS_DEPTH (args) - n;
583 gcc_assert (extra_levels >= 0);
584 if (extra_levels == 0)
585 return args;
586
587 /* Make a new set of arguments, not containing the outer arguments. */
588 new_args = make_tree_vec (n);
589 for (i = 1; i <= n; ++i)
590 SET_TMPL_ARGS_LEVEL (new_args, i,
591 TMPL_ARGS_LEVEL (args, i + extra_levels));
592
593 return new_args;
594 }
595
596 /* The inverse of get_innermost_template_args: Return all but the innermost
597 EXTRA_LEVELS levels of template arguments from the ARGS. */
598
599 static tree
600 strip_innermost_template_args (tree args, int extra_levels)
601 {
602 tree new_args;
603 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
604 int i;
605
606 gcc_assert (n >= 0);
607
608 /* If N is 1, just return the outermost set of template arguments. */
609 if (n == 1)
610 return TMPL_ARGS_LEVEL (args, 1);
611
612 /* If we're not removing anything, just return the arguments we were
613 given. */
614 gcc_assert (extra_levels >= 0);
615 if (extra_levels == 0)
616 return args;
617
618 /* Make a new set of arguments, not containing the inner arguments. */
619 new_args = make_tree_vec (n);
620 for (i = 1; i <= n; ++i)
621 SET_TMPL_ARGS_LEVEL (new_args, i,
622 TMPL_ARGS_LEVEL (args, i));
623
624 return new_args;
625 }
626
627 /* We've got a template header coming up; push to a new level for storing
628 the parms. */
629
630 void
631 begin_template_parm_list (void)
632 {
633 /* We use a non-tag-transparent scope here, which causes pushtag to
634 put tags in this scope, rather than in the enclosing class or
635 namespace scope. This is the right thing, since we want
636 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
637 global template class, push_template_decl handles putting the
638 TEMPLATE_DECL into top-level scope. For a nested template class,
639 e.g.:
640
641 template <class T> struct S1 {
642 template <class T> struct S2 {};
643 };
644
645 pushtag contains special code to call pushdecl_with_scope on the
646 TEMPLATE_DECL for S2. */
647 begin_scope (sk_template_parms, NULL);
648 ++processing_template_decl;
649 ++processing_template_parmlist;
650 note_template_header (0);
651
652 /* Add a dummy parameter level while we process the parameter list. */
653 current_template_parms
654 = tree_cons (size_int (processing_template_decl),
655 make_tree_vec (0),
656 current_template_parms);
657 }
658
659 /* This routine is called when a specialization is declared. If it is
660 invalid to declare a specialization here, an error is reported and
661 false is returned, otherwise this routine will return true. */
662
663 static bool
664 check_specialization_scope (void)
665 {
666 tree scope = current_scope ();
667
668 /* [temp.expl.spec]
669
670 An explicit specialization shall be declared in the namespace of
671 which the template is a member, or, for member templates, in the
672 namespace of which the enclosing class or enclosing class
673 template is a member. An explicit specialization of a member
674 function, member class or static data member of a class template
675 shall be declared in the namespace of which the class template
676 is a member. */
677 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
678 {
679 error ("explicit specialization in non-namespace scope %qD", scope);
680 return false;
681 }
682
683 /* [temp.expl.spec]
684
685 In an explicit specialization declaration for a member of a class
686 template or a member template that appears in namespace scope,
687 the member template and some of its enclosing class templates may
688 remain unspecialized, except that the declaration shall not
689 explicitly specialize a class member template if its enclosing
690 class templates are not explicitly specialized as well. */
691 if (current_template_parms)
692 {
693 error ("enclosing class templates are not explicitly specialized");
694 return false;
695 }
696
697 return true;
698 }
699
700 /* We've just seen template <>. */
701
702 bool
703 begin_specialization (void)
704 {
705 begin_scope (sk_template_spec, NULL);
706 note_template_header (1);
707 return check_specialization_scope ();
708 }
709
710 /* Called at then end of processing a declaration preceded by
711 template<>. */
712
713 void
714 end_specialization (void)
715 {
716 finish_scope ();
717 reset_specialization ();
718 }
719
720 /* Any template <>'s that we have seen thus far are not referring to a
721 function specialization. */
722
723 void
724 reset_specialization (void)
725 {
726 processing_specialization = 0;
727 template_header_count = 0;
728 }
729
730 /* We've just seen a template header. If SPECIALIZATION is nonzero,
731 it was of the form template <>. */
732
733 static void
734 note_template_header (int specialization)
735 {
736 processing_specialization = specialization;
737 template_header_count++;
738 }
739
740 /* We're beginning an explicit instantiation. */
741
742 void
743 begin_explicit_instantiation (void)
744 {
745 gcc_assert (!processing_explicit_instantiation);
746 processing_explicit_instantiation = true;
747 }
748
749
750 void
751 end_explicit_instantiation (void)
752 {
753 gcc_assert (processing_explicit_instantiation);
754 processing_explicit_instantiation = false;
755 }
756
757 /* An explicit specialization or partial specialization of TMPL is being
758 declared. Check that the namespace in which the specialization is
759 occurring is permissible. Returns false iff it is invalid to
760 specialize TMPL in the current namespace. */
761
762 static bool
763 check_specialization_namespace (tree tmpl)
764 {
765 tree tpl_ns = decl_namespace_context (tmpl);
766
767 /* [tmpl.expl.spec]
768
769 An explicit specialization shall be declared in the namespace of
770 which the template is a member, or, for member templates, in the
771 namespace of which the enclosing class or enclosing class
772 template is a member. An explicit specialization of a member
773 function, member class or static data member of a class template
774 shall be declared in the namespace of which the class template is
775 a member. */
776 if (current_scope() != DECL_CONTEXT (tmpl)
777 && !at_namespace_scope_p ())
778 {
779 error ("specialization of %qD must appear at namespace scope", tmpl);
780 return false;
781 }
782 if (is_associated_namespace (current_namespace, tpl_ns))
783 /* Same or super-using namespace. */
784 return true;
785 else
786 {
787 permerror (input_location,
788 "specialization of %qD in different namespace", tmpl);
789 permerror (DECL_SOURCE_LOCATION (tmpl),
790 " from definition of %q#D", tmpl);
791 return false;
792 }
793 }
794
795 /* SPEC is an explicit instantiation. Check that it is valid to
796 perform this explicit instantiation in the current namespace. */
797
798 static void
799 check_explicit_instantiation_namespace (tree spec)
800 {
801 tree ns;
802
803 /* DR 275: An explicit instantiation shall appear in an enclosing
804 namespace of its template. */
805 ns = decl_namespace_context (spec);
806 if (!is_ancestor (current_namespace, ns))
807 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
808 "(which does not enclose namespace %qD)",
809 spec, current_namespace, ns);
810 }
811
812 // Returns the type of a template specialization only if that
813 // specialization needs to be defined. Otherwise (e.g., if the type has
814 // already been defined), the function returns NULL_TREE.
815 static tree
816 maybe_new_partial_specialization (tree type)
817 {
818 // An implicit instantiation of an incomplete type implies
819 // the definition of a new class template.
820 //
821 // template<typename T>
822 // struct S;
823 //
824 // template<typename T>
825 // struct S<T*>;
826 //
827 // Here, S<T*> is an implicit instantiation of S whose type
828 // is incomplete.
829 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
830 return type;
831
832 // It can also be the case that TYPE is a completed specialization.
833 // Continuing the previous example, suppose we also declare:
834 //
835 // template<typename T>
836 // requires Integral<T>
837 // struct S<T*>;
838 //
839 // Here, S<T*> refers to the specialization S<T*> defined
840 // above. However, we need to differentiate definitions because
841 // we intend to define a new partial specialization. In this case,
842 // we rely on the fact that the constraints are different for
843 // this declaration than that above.
844 //
845 // Note that we also get here for injected class names and
846 // late-parsed template definitions. We must ensure that we
847 // do not create new type declarations for those cases.
848 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
849 {
850 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
851 tree args = CLASSTYPE_TI_ARGS (type);
852
853 // If there are no template parameters, this cannot be a new
854 // partial template specializtion?
855 if (!current_template_parms)
856 return NULL_TREE;
857
858 // If the constraints are not the same as those of the primary
859 // then, we can probably create a new specialization.
860 tree type_constr = current_template_constraints ();
861
862 if (type == TREE_TYPE (tmpl))
863 if (tree main_constr = get_constraints (tmpl))
864 if (equivalent_constraints (type_constr, main_constr))
865 return NULL_TREE;
866
867 // Also, if there's a pre-existing specialization with matching
868 // constraints, then this also isn't new.
869 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
870 while (specs)
871 {
872 tree spec_tmpl = TREE_VALUE (specs);
873 tree spec_args = TREE_PURPOSE (specs);
874 tree spec_constr = get_constraints (spec_tmpl);
875 if (comp_template_args (args, spec_args)
876 && equivalent_constraints (type_constr, spec_constr))
877 return NULL_TREE;
878 specs = TREE_CHAIN (specs);
879 }
880
881 // Create a new type node (and corresponding type decl)
882 // for the newly declared specialization.
883 tree t = make_class_type (TREE_CODE (type));
884 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
885 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
886 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
887
888 /* We only need a separate type node for storing the definition of this
889 partial specialization; uses of S<T*> are unconstrained, so all are
890 equivalent. So keep TYPE_CANONICAL the same. */
891 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
892
893 // Build the corresponding type decl.
894 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
895 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
896 DECL_SOURCE_LOCATION (d) = input_location;
897
898 return t;
899 }
900
901 return NULL_TREE;
902 }
903
904 /* The TYPE is being declared. If it is a template type, that means it
905 is a partial specialization. Do appropriate error-checking. */
906
907 tree
908 maybe_process_partial_specialization (tree type)
909 {
910 tree context;
911
912 if (type == error_mark_node)
913 return error_mark_node;
914
915 /* A lambda that appears in specialization context is not itself a
916 specialization. */
917 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
918 return type;
919
920 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
921 {
922 error ("name of class shadows template template parameter %qD",
923 TYPE_NAME (type));
924 return error_mark_node;
925 }
926
927 context = TYPE_CONTEXT (type);
928
929 if (TYPE_ALIAS_P (type))
930 {
931 if (TYPE_TEMPLATE_INFO (type)
932 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
933 error ("specialization of alias template %qD",
934 TYPE_TI_TEMPLATE (type));
935 else
936 error ("explicit specialization of non-template %qT", type);
937 return error_mark_node;
938 }
939 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
940 {
941 /* This is for ordinary explicit specialization and partial
942 specialization of a template class such as:
943
944 template <> class C<int>;
945
946 or:
947
948 template <class T> class C<T*>;
949
950 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
951
952 if (tree t = maybe_new_partial_specialization (type))
953 {
954 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
955 && !at_namespace_scope_p ())
956 return error_mark_node;
957 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
958 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
959 if (processing_template_decl)
960 {
961 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
962 if (decl == error_mark_node)
963 return error_mark_node;
964 return TREE_TYPE (decl);
965 }
966 }
967 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
968 error ("specialization of %qT after instantiation", type);
969 else if (errorcount && !processing_specialization
970 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
971 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
972 /* Trying to define a specialization either without a template<> header
973 or in an inappropriate place. We've already given an error, so just
974 bail now so we don't actually define the specialization. */
975 return error_mark_node;
976 }
977 else if (CLASS_TYPE_P (type)
978 && !CLASSTYPE_USE_TEMPLATE (type)
979 && CLASSTYPE_TEMPLATE_INFO (type)
980 && context && CLASS_TYPE_P (context)
981 && CLASSTYPE_TEMPLATE_INFO (context))
982 {
983 /* This is for an explicit specialization of member class
984 template according to [temp.expl.spec/18]:
985
986 template <> template <class U> class C<int>::D;
987
988 The context `C<int>' must be an implicit instantiation.
989 Otherwise this is just a member class template declared
990 earlier like:
991
992 template <> class C<int> { template <class U> class D; };
993 template <> template <class U> class C<int>::D;
994
995 In the first case, `C<int>::D' is a specialization of `C<T>::D'
996 while in the second case, `C<int>::D' is a primary template
997 and `C<T>::D' may not exist. */
998
999 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1000 && !COMPLETE_TYPE_P (type))
1001 {
1002 tree t;
1003 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1004
1005 if (current_namespace
1006 != decl_namespace_context (tmpl))
1007 {
1008 permerror (input_location,
1009 "specializing %q#T in different namespace", type);
1010 permerror (DECL_SOURCE_LOCATION (tmpl),
1011 " from definition of %q#D", tmpl);
1012 }
1013
1014 /* Check for invalid specialization after instantiation:
1015
1016 template <> template <> class C<int>::D<int>;
1017 template <> template <class U> class C<int>::D; */
1018
1019 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1020 t; t = TREE_CHAIN (t))
1021 {
1022 tree inst = TREE_VALUE (t);
1023 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1024 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1025 {
1026 /* We already have a full specialization of this partial
1027 instantiation, or a full specialization has been
1028 looked up but not instantiated. Reassign it to the
1029 new member specialization template. */
1030 spec_entry elt;
1031 spec_entry *entry;
1032
1033 elt.tmpl = most_general_template (tmpl);
1034 elt.args = CLASSTYPE_TI_ARGS (inst);
1035 elt.spec = inst;
1036
1037 type_specializations->remove_elt (&elt);
1038
1039 elt.tmpl = tmpl;
1040 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1041
1042 spec_entry **slot
1043 = type_specializations->find_slot (&elt, INSERT);
1044 entry = ggc_alloc<spec_entry> ();
1045 *entry = elt;
1046 *slot = entry;
1047 }
1048 else
1049 /* But if we've had an implicit instantiation, that's a
1050 problem ([temp.expl.spec]/6). */
1051 error ("specialization %qT after instantiation %qT",
1052 type, inst);
1053 }
1054
1055 /* Mark TYPE as a specialization. And as a result, we only
1056 have one level of template argument for the innermost
1057 class template. */
1058 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1059 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1060 CLASSTYPE_TI_ARGS (type)
1061 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1062 }
1063 }
1064 else if (processing_specialization)
1065 {
1066 /* Someday C++0x may allow for enum template specialization. */
1067 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1068 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1069 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1070 "of %qD not allowed by ISO C++", type);
1071 else
1072 {
1073 error ("explicit specialization of non-template %qT", type);
1074 return error_mark_node;
1075 }
1076 }
1077
1078 return type;
1079 }
1080
1081 /* Returns nonzero if we can optimize the retrieval of specializations
1082 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1083 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1084
1085 static inline bool
1086 optimize_specialization_lookup_p (tree tmpl)
1087 {
1088 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1089 && DECL_CLASS_SCOPE_P (tmpl)
1090 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1091 parameter. */
1092 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1093 /* The optimized lookup depends on the fact that the
1094 template arguments for the member function template apply
1095 purely to the containing class, which is not true if the
1096 containing class is an explicit or partial
1097 specialization. */
1098 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1099 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1100 && !DECL_CONV_FN_P (tmpl)
1101 /* It is possible to have a template that is not a member
1102 template and is not a member of a template class:
1103
1104 template <typename T>
1105 struct S { friend A::f(); };
1106
1107 Here, the friend function is a template, but the context does
1108 not have template information. The optimized lookup relies
1109 on having ARGS be the template arguments for both the class
1110 and the function template. */
1111 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1112 }
1113
1114 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1115 gone through coerce_template_parms by now. */
1116
1117 static void
1118 verify_unstripped_args (tree args)
1119 {
1120 ++processing_template_decl;
1121 if (!any_dependent_template_arguments_p (args))
1122 {
1123 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1124 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1125 {
1126 tree arg = TREE_VEC_ELT (inner, i);
1127 if (TREE_CODE (arg) == TEMPLATE_DECL)
1128 /* OK */;
1129 else if (TYPE_P (arg))
1130 gcc_assert (strip_typedefs (arg, NULL) == arg);
1131 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1132 /* Allow typedefs on the type of a non-type argument, since a
1133 parameter can have them. */;
1134 else
1135 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1136 }
1137 }
1138 --processing_template_decl;
1139 }
1140
1141 /* Retrieve the specialization (in the sense of [temp.spec] - a
1142 specialization is either an instantiation or an explicit
1143 specialization) of TMPL for the given template ARGS. If there is
1144 no such specialization, return NULL_TREE. The ARGS are a vector of
1145 arguments, or a vector of vectors of arguments, in the case of
1146 templates with more than one level of parameters.
1147
1148 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1149 then we search for a partial specialization matching ARGS. This
1150 parameter is ignored if TMPL is not a class template.
1151
1152 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1153 result is a NONTYPE_ARGUMENT_PACK. */
1154
1155 static tree
1156 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1157 {
1158 if (tmpl == NULL_TREE)
1159 return NULL_TREE;
1160
1161 if (args == error_mark_node)
1162 return NULL_TREE;
1163
1164 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1165 || TREE_CODE (tmpl) == FIELD_DECL);
1166
1167 /* There should be as many levels of arguments as there are
1168 levels of parameters. */
1169 gcc_assert (TMPL_ARGS_DEPTH (args)
1170 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1171 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1172 : template_class_depth (DECL_CONTEXT (tmpl))));
1173
1174 if (flag_checking)
1175 verify_unstripped_args (args);
1176
1177 if (optimize_specialization_lookup_p (tmpl))
1178 {
1179 tree class_template;
1180 tree class_specialization;
1181 vec<tree, va_gc> *methods;
1182 tree fns;
1183 int idx;
1184
1185 /* The template arguments actually apply to the containing
1186 class. Find the class specialization with those
1187 arguments. */
1188 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1189 class_specialization
1190 = retrieve_specialization (class_template, args, 0);
1191 if (!class_specialization)
1192 return NULL_TREE;
1193 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1194 for the specialization. */
1195 idx = class_method_index_for_fn (class_specialization, tmpl);
1196 if (idx == -1)
1197 return NULL_TREE;
1198 /* Iterate through the methods with the indicated name, looking
1199 for the one that has an instance of TMPL. */
1200 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1201 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1202 {
1203 tree fn = OVL_CURRENT (fns);
1204 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1205 /* using-declarations can add base methods to the method vec,
1206 and we don't want those here. */
1207 && DECL_CONTEXT (fn) == class_specialization)
1208 return fn;
1209 }
1210 return NULL_TREE;
1211 }
1212 else
1213 {
1214 spec_entry *found;
1215 spec_entry elt;
1216 hash_table<spec_hasher> *specializations;
1217
1218 elt.tmpl = tmpl;
1219 elt.args = args;
1220 elt.spec = NULL_TREE;
1221
1222 if (DECL_CLASS_TEMPLATE_P (tmpl))
1223 specializations = type_specializations;
1224 else
1225 specializations = decl_specializations;
1226
1227 if (hash == 0)
1228 hash = spec_hasher::hash (&elt);
1229 found = specializations->find_with_hash (&elt, hash);
1230 if (found)
1231 return found->spec;
1232 }
1233
1234 return NULL_TREE;
1235 }
1236
1237 /* Like retrieve_specialization, but for local declarations. */
1238
1239 tree
1240 retrieve_local_specialization (tree tmpl)
1241 {
1242 if (local_specializations == NULL)
1243 return NULL_TREE;
1244
1245 tree *slot = local_specializations->get (tmpl);
1246 return slot ? *slot : NULL_TREE;
1247 }
1248
1249 /* Returns nonzero iff DECL is a specialization of TMPL. */
1250
1251 int
1252 is_specialization_of (tree decl, tree tmpl)
1253 {
1254 tree t;
1255
1256 if (TREE_CODE (decl) == FUNCTION_DECL)
1257 {
1258 for (t = decl;
1259 t != NULL_TREE;
1260 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1261 if (t == tmpl)
1262 return 1;
1263 }
1264 else
1265 {
1266 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1267
1268 for (t = TREE_TYPE (decl);
1269 t != NULL_TREE;
1270 t = CLASSTYPE_USE_TEMPLATE (t)
1271 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1272 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1273 return 1;
1274 }
1275
1276 return 0;
1277 }
1278
1279 /* Returns nonzero iff DECL is a specialization of friend declaration
1280 FRIEND_DECL according to [temp.friend]. */
1281
1282 bool
1283 is_specialization_of_friend (tree decl, tree friend_decl)
1284 {
1285 bool need_template = true;
1286 int template_depth;
1287
1288 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1289 || TREE_CODE (decl) == TYPE_DECL);
1290
1291 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1292 of a template class, we want to check if DECL is a specialization
1293 if this. */
1294 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1295 && DECL_TEMPLATE_INFO (friend_decl)
1296 && !DECL_USE_TEMPLATE (friend_decl))
1297 {
1298 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1299 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1300 need_template = false;
1301 }
1302 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1303 && !PRIMARY_TEMPLATE_P (friend_decl))
1304 need_template = false;
1305
1306 /* There is nothing to do if this is not a template friend. */
1307 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1308 return false;
1309
1310 if (is_specialization_of (decl, friend_decl))
1311 return true;
1312
1313 /* [temp.friend/6]
1314 A member of a class template may be declared to be a friend of a
1315 non-template class. In this case, the corresponding member of
1316 every specialization of the class template is a friend of the
1317 class granting friendship.
1318
1319 For example, given a template friend declaration
1320
1321 template <class T> friend void A<T>::f();
1322
1323 the member function below is considered a friend
1324
1325 template <> struct A<int> {
1326 void f();
1327 };
1328
1329 For this type of template friend, TEMPLATE_DEPTH below will be
1330 nonzero. To determine if DECL is a friend of FRIEND, we first
1331 check if the enclosing class is a specialization of another. */
1332
1333 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1334 if (template_depth
1335 && DECL_CLASS_SCOPE_P (decl)
1336 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1337 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1338 {
1339 /* Next, we check the members themselves. In order to handle
1340 a few tricky cases, such as when FRIEND_DECL's are
1341
1342 template <class T> friend void A<T>::g(T t);
1343 template <class T> template <T t> friend void A<T>::h();
1344
1345 and DECL's are
1346
1347 void A<int>::g(int);
1348 template <int> void A<int>::h();
1349
1350 we need to figure out ARGS, the template arguments from
1351 the context of DECL. This is required for template substitution
1352 of `T' in the function parameter of `g' and template parameter
1353 of `h' in the above examples. Here ARGS corresponds to `int'. */
1354
1355 tree context = DECL_CONTEXT (decl);
1356 tree args = NULL_TREE;
1357 int current_depth = 0;
1358
1359 while (current_depth < template_depth)
1360 {
1361 if (CLASSTYPE_TEMPLATE_INFO (context))
1362 {
1363 if (current_depth == 0)
1364 args = TYPE_TI_ARGS (context);
1365 else
1366 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1367 current_depth++;
1368 }
1369 context = TYPE_CONTEXT (context);
1370 }
1371
1372 if (TREE_CODE (decl) == FUNCTION_DECL)
1373 {
1374 bool is_template;
1375 tree friend_type;
1376 tree decl_type;
1377 tree friend_args_type;
1378 tree decl_args_type;
1379
1380 /* Make sure that both DECL and FRIEND_DECL are templates or
1381 non-templates. */
1382 is_template = DECL_TEMPLATE_INFO (decl)
1383 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1384 if (need_template ^ is_template)
1385 return false;
1386 else if (is_template)
1387 {
1388 /* If both are templates, check template parameter list. */
1389 tree friend_parms
1390 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1391 args, tf_none);
1392 if (!comp_template_parms
1393 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1394 friend_parms))
1395 return false;
1396
1397 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1398 }
1399 else
1400 decl_type = TREE_TYPE (decl);
1401
1402 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1403 tf_none, NULL_TREE);
1404 if (friend_type == error_mark_node)
1405 return false;
1406
1407 /* Check if return types match. */
1408 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1409 return false;
1410
1411 /* Check if function parameter types match, ignoring the
1412 `this' parameter. */
1413 friend_args_type = TYPE_ARG_TYPES (friend_type);
1414 decl_args_type = TYPE_ARG_TYPES (decl_type);
1415 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1416 friend_args_type = TREE_CHAIN (friend_args_type);
1417 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1418 decl_args_type = TREE_CHAIN (decl_args_type);
1419
1420 return compparms (decl_args_type, friend_args_type);
1421 }
1422 else
1423 {
1424 /* DECL is a TYPE_DECL */
1425 bool is_template;
1426 tree decl_type = TREE_TYPE (decl);
1427
1428 /* Make sure that both DECL and FRIEND_DECL are templates or
1429 non-templates. */
1430 is_template
1431 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1432 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1433
1434 if (need_template ^ is_template)
1435 return false;
1436 else if (is_template)
1437 {
1438 tree friend_parms;
1439 /* If both are templates, check the name of the two
1440 TEMPLATE_DECL's first because is_friend didn't. */
1441 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1442 != DECL_NAME (friend_decl))
1443 return false;
1444
1445 /* Now check template parameter list. */
1446 friend_parms
1447 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1448 args, tf_none);
1449 return comp_template_parms
1450 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1451 friend_parms);
1452 }
1453 else
1454 return (DECL_NAME (decl)
1455 == DECL_NAME (friend_decl));
1456 }
1457 }
1458 return false;
1459 }
1460
1461 /* Register the specialization SPEC as a specialization of TMPL with
1462 the indicated ARGS. IS_FRIEND indicates whether the specialization
1463 is actually just a friend declaration. Returns SPEC, or an
1464 equivalent prior declaration, if available.
1465
1466 We also store instantiations of field packs in the hash table, even
1467 though they are not themselves templates, to make lookup easier. */
1468
1469 static tree
1470 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1471 hashval_t hash)
1472 {
1473 tree fn;
1474 spec_entry **slot = NULL;
1475 spec_entry elt;
1476
1477 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1478 || (TREE_CODE (tmpl) == FIELD_DECL
1479 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1480
1481 if (TREE_CODE (spec) == FUNCTION_DECL
1482 && uses_template_parms (DECL_TI_ARGS (spec)))
1483 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1484 register it; we want the corresponding TEMPLATE_DECL instead.
1485 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1486 the more obvious `uses_template_parms (spec)' to avoid problems
1487 with default function arguments. In particular, given
1488 something like this:
1489
1490 template <class T> void f(T t1, T t = T())
1491
1492 the default argument expression is not substituted for in an
1493 instantiation unless and until it is actually needed. */
1494 return spec;
1495
1496 if (optimize_specialization_lookup_p (tmpl))
1497 /* We don't put these specializations in the hash table, but we might
1498 want to give an error about a mismatch. */
1499 fn = retrieve_specialization (tmpl, args, 0);
1500 else
1501 {
1502 elt.tmpl = tmpl;
1503 elt.args = args;
1504 elt.spec = spec;
1505
1506 if (hash == 0)
1507 hash = spec_hasher::hash (&elt);
1508
1509 slot =
1510 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1511 if (*slot)
1512 fn = ((spec_entry *) *slot)->spec;
1513 else
1514 fn = NULL_TREE;
1515 }
1516
1517 /* We can sometimes try to re-register a specialization that we've
1518 already got. In particular, regenerate_decl_from_template calls
1519 duplicate_decls which will update the specialization list. But,
1520 we'll still get called again here anyhow. It's more convenient
1521 to simply allow this than to try to prevent it. */
1522 if (fn == spec)
1523 return spec;
1524 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1525 {
1526 if (DECL_TEMPLATE_INSTANTIATION (fn))
1527 {
1528 if (DECL_ODR_USED (fn)
1529 || DECL_EXPLICIT_INSTANTIATION (fn))
1530 {
1531 error ("specialization of %qD after instantiation",
1532 fn);
1533 return error_mark_node;
1534 }
1535 else
1536 {
1537 tree clone;
1538 /* This situation should occur only if the first
1539 specialization is an implicit instantiation, the
1540 second is an explicit specialization, and the
1541 implicit instantiation has not yet been used. That
1542 situation can occur if we have implicitly
1543 instantiated a member function and then specialized
1544 it later.
1545
1546 We can also wind up here if a friend declaration that
1547 looked like an instantiation turns out to be a
1548 specialization:
1549
1550 template <class T> void foo(T);
1551 class S { friend void foo<>(int) };
1552 template <> void foo(int);
1553
1554 We transform the existing DECL in place so that any
1555 pointers to it become pointers to the updated
1556 declaration.
1557
1558 If there was a definition for the template, but not
1559 for the specialization, we want this to look as if
1560 there were no definition, and vice versa. */
1561 DECL_INITIAL (fn) = NULL_TREE;
1562 duplicate_decls (spec, fn, is_friend);
1563 /* The call to duplicate_decls will have applied
1564 [temp.expl.spec]:
1565
1566 An explicit specialization of a function template
1567 is inline only if it is explicitly declared to be,
1568 and independently of whether its function template
1569 is.
1570
1571 to the primary function; now copy the inline bits to
1572 the various clones. */
1573 FOR_EACH_CLONE (clone, fn)
1574 {
1575 DECL_DECLARED_INLINE_P (clone)
1576 = DECL_DECLARED_INLINE_P (fn);
1577 DECL_SOURCE_LOCATION (clone)
1578 = DECL_SOURCE_LOCATION (fn);
1579 DECL_DELETED_FN (clone)
1580 = DECL_DELETED_FN (fn);
1581 }
1582 check_specialization_namespace (tmpl);
1583
1584 return fn;
1585 }
1586 }
1587 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1588 {
1589 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1590 /* Dup decl failed, but this is a new definition. Set the
1591 line number so any errors match this new
1592 definition. */
1593 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1594
1595 return fn;
1596 }
1597 }
1598 else if (fn)
1599 return duplicate_decls (spec, fn, is_friend);
1600
1601 /* A specialization must be declared in the same namespace as the
1602 template it is specializing. */
1603 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1604 && !check_specialization_namespace (tmpl))
1605 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1606
1607 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1608 {
1609 spec_entry *entry = ggc_alloc<spec_entry> ();
1610 gcc_assert (tmpl && args && spec);
1611 *entry = elt;
1612 *slot = entry;
1613 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1614 && PRIMARY_TEMPLATE_P (tmpl)
1615 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1616 || variable_template_p (tmpl))
1617 /* If TMPL is a forward declaration of a template function, keep a list
1618 of all specializations in case we need to reassign them to a friend
1619 template later in tsubst_friend_function.
1620
1621 Also keep a list of all variable template instantiations so that
1622 process_partial_specialization can check whether a later partial
1623 specialization would have used it. */
1624 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1625 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1626 }
1627
1628 return spec;
1629 }
1630
1631 /* Returns true iff two spec_entry nodes are equivalent. */
1632
1633 int comparing_specializations;
1634
1635 bool
1636 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1637 {
1638 int equal;
1639
1640 ++comparing_specializations;
1641 equal = (e1->tmpl == e2->tmpl
1642 && comp_template_args (e1->args, e2->args));
1643 if (equal && flag_concepts
1644 /* tmpl could be a FIELD_DECL for a capture pack. */
1645 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1646 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1647 && uses_template_parms (e1->args))
1648 {
1649 /* Partial specializations of a variable template can be distinguished by
1650 constraints. */
1651 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1652 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1653 equal = equivalent_constraints (c1, c2);
1654 }
1655 --comparing_specializations;
1656
1657 return equal;
1658 }
1659
1660 /* Returns a hash for a template TMPL and template arguments ARGS. */
1661
1662 static hashval_t
1663 hash_tmpl_and_args (tree tmpl, tree args)
1664 {
1665 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1666 return iterative_hash_template_arg (args, val);
1667 }
1668
1669 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1670 ignoring SPEC. */
1671
1672 hashval_t
1673 spec_hasher::hash (spec_entry *e)
1674 {
1675 return hash_tmpl_and_args (e->tmpl, e->args);
1676 }
1677
1678 /* Recursively calculate a hash value for a template argument ARG, for use
1679 in the hash tables of template specializations. */
1680
1681 hashval_t
1682 iterative_hash_template_arg (tree arg, hashval_t val)
1683 {
1684 unsigned HOST_WIDE_INT i;
1685 enum tree_code code;
1686 char tclass;
1687
1688 if (arg == NULL_TREE)
1689 return iterative_hash_object (arg, val);
1690
1691 if (!TYPE_P (arg))
1692 STRIP_NOPS (arg);
1693
1694 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1695 /* We can get one of these when re-hashing a previous entry in the middle
1696 of substituting into a pack expansion. Just look through it. */
1697 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1698
1699 code = TREE_CODE (arg);
1700 tclass = TREE_CODE_CLASS (code);
1701
1702 val = iterative_hash_object (code, val);
1703
1704 switch (code)
1705 {
1706 case ERROR_MARK:
1707 return val;
1708
1709 case IDENTIFIER_NODE:
1710 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1711
1712 case TREE_VEC:
1713 {
1714 int i, len = TREE_VEC_LENGTH (arg);
1715 for (i = 0; i < len; ++i)
1716 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1717 return val;
1718 }
1719
1720 case TYPE_PACK_EXPANSION:
1721 case EXPR_PACK_EXPANSION:
1722 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1723 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1724
1725 case TYPE_ARGUMENT_PACK:
1726 case NONTYPE_ARGUMENT_PACK:
1727 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1728
1729 case TREE_LIST:
1730 for (; arg; arg = TREE_CHAIN (arg))
1731 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1732 return val;
1733
1734 case OVERLOAD:
1735 for (; arg; arg = OVL_NEXT (arg))
1736 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1737 return val;
1738
1739 case CONSTRUCTOR:
1740 {
1741 tree field, value;
1742 iterative_hash_template_arg (TREE_TYPE (arg), val);
1743 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1744 {
1745 val = iterative_hash_template_arg (field, val);
1746 val = iterative_hash_template_arg (value, val);
1747 }
1748 return val;
1749 }
1750
1751 case PARM_DECL:
1752 if (!DECL_ARTIFICIAL (arg))
1753 {
1754 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1755 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1756 }
1757 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1758
1759 case TARGET_EXPR:
1760 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1761
1762 case PTRMEM_CST:
1763 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1764 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1765
1766 case TEMPLATE_PARM_INDEX:
1767 val = iterative_hash_template_arg
1768 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1769 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1770 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1771
1772 case TRAIT_EXPR:
1773 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1774 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1775 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1776
1777 case BASELINK:
1778 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1779 val);
1780 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1781 val);
1782
1783 case MODOP_EXPR:
1784 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1785 code = TREE_CODE (TREE_OPERAND (arg, 1));
1786 val = iterative_hash_object (code, val);
1787 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1788
1789 case LAMBDA_EXPR:
1790 /* A lambda can't appear in a template arg, but don't crash on
1791 erroneous input. */
1792 gcc_assert (seen_error ());
1793 return val;
1794
1795 case CAST_EXPR:
1796 case IMPLICIT_CONV_EXPR:
1797 case STATIC_CAST_EXPR:
1798 case REINTERPRET_CAST_EXPR:
1799 case CONST_CAST_EXPR:
1800 case DYNAMIC_CAST_EXPR:
1801 case NEW_EXPR:
1802 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1803 /* Now hash operands as usual. */
1804 break;
1805
1806 default:
1807 break;
1808 }
1809
1810 switch (tclass)
1811 {
1812 case tcc_type:
1813 if (alias_template_specialization_p (arg))
1814 {
1815 // We want an alias specialization that survived strip_typedefs
1816 // to hash differently from its TYPE_CANONICAL, to avoid hash
1817 // collisions that compare as different in template_args_equal.
1818 // These could be dependent specializations that strip_typedefs
1819 // left alone, or untouched specializations because
1820 // coerce_template_parms returns the unconverted template
1821 // arguments if it sees incomplete argument packs.
1822 tree ti = TYPE_TEMPLATE_INFO (arg);
1823 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1824 }
1825 if (TYPE_CANONICAL (arg))
1826 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1827 val);
1828 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1829 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1830 /* Otherwise just compare the types during lookup. */
1831 return val;
1832
1833 case tcc_declaration:
1834 case tcc_constant:
1835 return iterative_hash_expr (arg, val);
1836
1837 default:
1838 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1839 {
1840 unsigned n = cp_tree_operand_length (arg);
1841 for (i = 0; i < n; ++i)
1842 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1843 return val;
1844 }
1845 }
1846 gcc_unreachable ();
1847 return 0;
1848 }
1849
1850 /* Unregister the specialization SPEC as a specialization of TMPL.
1851 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1852 if the SPEC was listed as a specialization of TMPL.
1853
1854 Note that SPEC has been ggc_freed, so we can't look inside it. */
1855
1856 bool
1857 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1858 {
1859 spec_entry *entry;
1860 spec_entry elt;
1861
1862 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1863 elt.args = TI_ARGS (tinfo);
1864 elt.spec = NULL_TREE;
1865
1866 entry = decl_specializations->find (&elt);
1867 if (entry != NULL)
1868 {
1869 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1870 gcc_assert (new_spec != NULL_TREE);
1871 entry->spec = new_spec;
1872 return 1;
1873 }
1874
1875 return 0;
1876 }
1877
1878 /* Like register_specialization, but for local declarations. We are
1879 registering SPEC, an instantiation of TMPL. */
1880
1881 void
1882 register_local_specialization (tree spec, tree tmpl)
1883 {
1884 local_specializations->put (tmpl, spec);
1885 }
1886
1887 /* TYPE is a class type. Returns true if TYPE is an explicitly
1888 specialized class. */
1889
1890 bool
1891 explicit_class_specialization_p (tree type)
1892 {
1893 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1894 return false;
1895 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1896 }
1897
1898 /* Print the list of functions at FNS, going through all the overloads
1899 for each element of the list. Alternatively, FNS can not be a
1900 TREE_LIST, in which case it will be printed together with all the
1901 overloads.
1902
1903 MORE and *STR should respectively be FALSE and NULL when the function
1904 is called from the outside. They are used internally on recursive
1905 calls. print_candidates manages the two parameters and leaves NULL
1906 in *STR when it ends. */
1907
1908 static void
1909 print_candidates_1 (tree fns, bool more, const char **str)
1910 {
1911 tree fn, fn2;
1912 char *spaces = NULL;
1913
1914 for (fn = fns; fn; fn = OVL_NEXT (fn))
1915 if (TREE_CODE (fn) == TREE_LIST)
1916 {
1917 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1918 print_candidates_1 (TREE_VALUE (fn2),
1919 TREE_CHAIN (fn2) || more, str);
1920 }
1921 else
1922 {
1923 tree cand = OVL_CURRENT (fn);
1924 if (!*str)
1925 {
1926 /* Pick the prefix string. */
1927 if (!more && !OVL_NEXT (fns))
1928 {
1929 inform (DECL_SOURCE_LOCATION (cand),
1930 "candidate is: %#D", cand);
1931 continue;
1932 }
1933
1934 *str = _("candidates are:");
1935 spaces = get_spaces (*str);
1936 }
1937 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1938 *str = spaces ? spaces : *str;
1939 }
1940
1941 if (!more)
1942 {
1943 free (spaces);
1944 *str = NULL;
1945 }
1946 }
1947
1948 /* Print the list of candidate FNS in an error message. FNS can also
1949 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1950
1951 void
1952 print_candidates (tree fns)
1953 {
1954 const char *str = NULL;
1955 print_candidates_1 (fns, false, &str);
1956 gcc_assert (str == NULL);
1957 }
1958
1959 /* Get a (possibly) constrained template declaration for the
1960 purpose of ordering candidates. */
1961 static tree
1962 get_template_for_ordering (tree list)
1963 {
1964 gcc_assert (TREE_CODE (list) == TREE_LIST);
1965 tree f = TREE_VALUE (list);
1966 if (tree ti = DECL_TEMPLATE_INFO (f))
1967 return TI_TEMPLATE (ti);
1968 return f;
1969 }
1970
1971 /* Among candidates having the same signature, return the
1972 most constrained or NULL_TREE if there is no best candidate.
1973 If the signatures of candidates vary (e.g., template
1974 specialization vs. member function), then there can be no
1975 most constrained.
1976
1977 Note that we don't compare constraints on the functions
1978 themselves, but rather those of their templates. */
1979 static tree
1980 most_constrained_function (tree candidates)
1981 {
1982 // Try to find the best candidate in a first pass.
1983 tree champ = candidates;
1984 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1985 {
1986 int winner = more_constrained (get_template_for_ordering (champ),
1987 get_template_for_ordering (c));
1988 if (winner == -1)
1989 champ = c; // The candidate is more constrained
1990 else if (winner == 0)
1991 return NULL_TREE; // Neither is more constrained
1992 }
1993
1994 // Verify that the champ is better than previous candidates.
1995 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
1996 if (!more_constrained (get_template_for_ordering (champ),
1997 get_template_for_ordering (c)))
1998 return NULL_TREE;
1999 }
2000
2001 return champ;
2002 }
2003
2004
2005 /* Returns the template (one of the functions given by TEMPLATE_ID)
2006 which can be specialized to match the indicated DECL with the
2007 explicit template args given in TEMPLATE_ID. The DECL may be
2008 NULL_TREE if none is available. In that case, the functions in
2009 TEMPLATE_ID are non-members.
2010
2011 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2012 specialization of a member template.
2013
2014 The TEMPLATE_COUNT is the number of references to qualifying
2015 template classes that appeared in the name of the function. See
2016 check_explicit_specialization for a more accurate description.
2017
2018 TSK indicates what kind of template declaration (if any) is being
2019 declared. TSK_TEMPLATE indicates that the declaration given by
2020 DECL, though a FUNCTION_DECL, has template parameters, and is
2021 therefore a template function.
2022
2023 The template args (those explicitly specified and those deduced)
2024 are output in a newly created vector *TARGS_OUT.
2025
2026 If it is impossible to determine the result, an error message is
2027 issued. The error_mark_node is returned to indicate failure. */
2028
2029 static tree
2030 determine_specialization (tree template_id,
2031 tree decl,
2032 tree* targs_out,
2033 int need_member_template,
2034 int template_count,
2035 tmpl_spec_kind tsk)
2036 {
2037 tree fns;
2038 tree targs;
2039 tree explicit_targs;
2040 tree candidates = NULL_TREE;
2041
2042 /* A TREE_LIST of templates of which DECL may be a specialization.
2043 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2044 corresponding TREE_PURPOSE is the set of template arguments that,
2045 when used to instantiate the template, would produce a function
2046 with the signature of DECL. */
2047 tree templates = NULL_TREE;
2048 int header_count;
2049 cp_binding_level *b;
2050
2051 *targs_out = NULL_TREE;
2052
2053 if (template_id == error_mark_node || decl == error_mark_node)
2054 return error_mark_node;
2055
2056 /* We shouldn't be specializing a member template of an
2057 unspecialized class template; we already gave an error in
2058 check_specialization_scope, now avoid crashing. */
2059 if (template_count && DECL_CLASS_SCOPE_P (decl)
2060 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2061 {
2062 gcc_assert (errorcount);
2063 return error_mark_node;
2064 }
2065
2066 fns = TREE_OPERAND (template_id, 0);
2067 explicit_targs = TREE_OPERAND (template_id, 1);
2068
2069 if (fns == error_mark_node)
2070 return error_mark_node;
2071
2072 /* Check for baselinks. */
2073 if (BASELINK_P (fns))
2074 fns = BASELINK_FUNCTIONS (fns);
2075
2076 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2077 {
2078 error ("%qD is not a function template", fns);
2079 return error_mark_node;
2080 }
2081 else if (VAR_P (decl) && !variable_template_p (fns))
2082 {
2083 error ("%qD is not a variable template", fns);
2084 return error_mark_node;
2085 }
2086
2087 /* Count the number of template headers specified for this
2088 specialization. */
2089 header_count = 0;
2090 for (b = current_binding_level;
2091 b->kind == sk_template_parms;
2092 b = b->level_chain)
2093 ++header_count;
2094
2095 tree orig_fns = fns;
2096
2097 if (variable_template_p (fns))
2098 {
2099 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2100 targs = coerce_template_parms (parms, explicit_targs, fns,
2101 tf_warning_or_error,
2102 /*req_all*/true, /*use_defarg*/true);
2103 if (targs != error_mark_node)
2104 templates = tree_cons (targs, fns, templates);
2105 }
2106 else for (; fns; fns = OVL_NEXT (fns))
2107 {
2108 tree fn = OVL_CURRENT (fns);
2109
2110 if (TREE_CODE (fn) == TEMPLATE_DECL)
2111 {
2112 tree decl_arg_types;
2113 tree fn_arg_types;
2114 tree insttype;
2115
2116 /* In case of explicit specialization, we need to check if
2117 the number of template headers appearing in the specialization
2118 is correct. This is usually done in check_explicit_specialization,
2119 but the check done there cannot be exhaustive when specializing
2120 member functions. Consider the following code:
2121
2122 template <> void A<int>::f(int);
2123 template <> template <> void A<int>::f(int);
2124
2125 Assuming that A<int> is not itself an explicit specialization
2126 already, the first line specializes "f" which is a non-template
2127 member function, whilst the second line specializes "f" which
2128 is a template member function. So both lines are syntactically
2129 correct, and check_explicit_specialization does not reject
2130 them.
2131
2132 Here, we can do better, as we are matching the specialization
2133 against the declarations. We count the number of template
2134 headers, and we check if they match TEMPLATE_COUNT + 1
2135 (TEMPLATE_COUNT is the number of qualifying template classes,
2136 plus there must be another header for the member template
2137 itself).
2138
2139 Notice that if header_count is zero, this is not a
2140 specialization but rather a template instantiation, so there
2141 is no check we can perform here. */
2142 if (header_count && header_count != template_count + 1)
2143 continue;
2144
2145 /* Check that the number of template arguments at the
2146 innermost level for DECL is the same as for FN. */
2147 if (current_binding_level->kind == sk_template_parms
2148 && !current_binding_level->explicit_spec_p
2149 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2150 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2151 (current_template_parms))))
2152 continue;
2153
2154 /* DECL might be a specialization of FN. */
2155 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2156 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2157
2158 /* For a non-static member function, we need to make sure
2159 that the const qualification is the same. Since
2160 get_bindings does not try to merge the "this" parameter,
2161 we must do the comparison explicitly. */
2162 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2163 && !same_type_p (TREE_VALUE (fn_arg_types),
2164 TREE_VALUE (decl_arg_types)))
2165 continue;
2166
2167 /* Skip the "this" parameter and, for constructors of
2168 classes with virtual bases, the VTT parameter. A
2169 full specialization of a constructor will have a VTT
2170 parameter, but a template never will. */
2171 decl_arg_types
2172 = skip_artificial_parms_for (decl, decl_arg_types);
2173 fn_arg_types
2174 = skip_artificial_parms_for (fn, fn_arg_types);
2175
2176 /* Function templates cannot be specializations; there are
2177 no partial specializations of functions. Therefore, if
2178 the type of DECL does not match FN, there is no
2179 match.
2180
2181 Note that it should never be the case that we have both
2182 candidates added here, and for regular member functions
2183 below. */
2184 if (tsk == tsk_template)
2185 {
2186 if (compparms (fn_arg_types, decl_arg_types))
2187 candidates = tree_cons (NULL_TREE, fn, candidates);
2188 continue;
2189 }
2190
2191 /* See whether this function might be a specialization of this
2192 template. Suppress access control because we might be trying
2193 to make this specialization a friend, and we have already done
2194 access control for the declaration of the specialization. */
2195 push_deferring_access_checks (dk_no_check);
2196 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2197 pop_deferring_access_checks ();
2198
2199 if (!targs)
2200 /* We cannot deduce template arguments that when used to
2201 specialize TMPL will produce DECL. */
2202 continue;
2203
2204 /* Remove, from the set of candidates, all those functions
2205 whose constraints are not satisfied. */
2206 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2207 continue;
2208
2209 // Then, try to form the new function type.
2210 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2211 if (insttype == error_mark_node)
2212 continue;
2213 fn_arg_types
2214 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2215 if (!compparms (fn_arg_types, decl_arg_types))
2216 continue;
2217
2218 /* Save this template, and the arguments deduced. */
2219 templates = tree_cons (targs, fn, templates);
2220 }
2221 else if (need_member_template)
2222 /* FN is an ordinary member function, and we need a
2223 specialization of a member template. */
2224 ;
2225 else if (TREE_CODE (fn) != FUNCTION_DECL)
2226 /* We can get IDENTIFIER_NODEs here in certain erroneous
2227 cases. */
2228 ;
2229 else if (!DECL_FUNCTION_MEMBER_P (fn))
2230 /* This is just an ordinary non-member function. Nothing can
2231 be a specialization of that. */
2232 ;
2233 else if (DECL_ARTIFICIAL (fn))
2234 /* Cannot specialize functions that are created implicitly. */
2235 ;
2236 else
2237 {
2238 tree decl_arg_types;
2239
2240 /* This is an ordinary member function. However, since
2241 we're here, we can assume its enclosing class is a
2242 template class. For example,
2243
2244 template <typename T> struct S { void f(); };
2245 template <> void S<int>::f() {}
2246
2247 Here, S<int>::f is a non-template, but S<int> is a
2248 template class. If FN has the same type as DECL, we
2249 might be in business. */
2250
2251 if (!DECL_TEMPLATE_INFO (fn))
2252 /* Its enclosing class is an explicit specialization
2253 of a template class. This is not a candidate. */
2254 continue;
2255
2256 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2257 TREE_TYPE (TREE_TYPE (fn))))
2258 /* The return types differ. */
2259 continue;
2260
2261 /* Adjust the type of DECL in case FN is a static member. */
2262 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2263 if (DECL_STATIC_FUNCTION_P (fn)
2264 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2265 decl_arg_types = TREE_CHAIN (decl_arg_types);
2266
2267 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2268 decl_arg_types))
2269 continue;
2270
2271 // If the deduced arguments do not satisfy the constraints,
2272 // this is not a candidate.
2273 if (flag_concepts && !constraints_satisfied_p (fn))
2274 continue;
2275
2276 // Add the candidate.
2277 candidates = tree_cons (NULL_TREE, fn, candidates);
2278 }
2279 }
2280
2281 if (templates && TREE_CHAIN (templates))
2282 {
2283 /* We have:
2284
2285 [temp.expl.spec]
2286
2287 It is possible for a specialization with a given function
2288 signature to be instantiated from more than one function
2289 template. In such cases, explicit specification of the
2290 template arguments must be used to uniquely identify the
2291 function template specialization being specialized.
2292
2293 Note that here, there's no suggestion that we're supposed to
2294 determine which of the candidate templates is most
2295 specialized. However, we, also have:
2296
2297 [temp.func.order]
2298
2299 Partial ordering of overloaded function template
2300 declarations is used in the following contexts to select
2301 the function template to which a function template
2302 specialization refers:
2303
2304 -- when an explicit specialization refers to a function
2305 template.
2306
2307 So, we do use the partial ordering rules, at least for now.
2308 This extension can only serve to make invalid programs valid,
2309 so it's safe. And, there is strong anecdotal evidence that
2310 the committee intended the partial ordering rules to apply;
2311 the EDG front end has that behavior, and John Spicer claims
2312 that the committee simply forgot to delete the wording in
2313 [temp.expl.spec]. */
2314 tree tmpl = most_specialized_instantiation (templates);
2315 if (tmpl != error_mark_node)
2316 {
2317 templates = tmpl;
2318 TREE_CHAIN (templates) = NULL_TREE;
2319 }
2320 }
2321
2322 // Concepts allows multiple declarations of member functions
2323 // with the same signature. Like above, we need to rely on
2324 // on the partial ordering of those candidates to determine which
2325 // is the best.
2326 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2327 {
2328 if (tree cand = most_constrained_function (candidates))
2329 {
2330 candidates = cand;
2331 TREE_CHAIN (cand) = NULL_TREE;
2332 }
2333 }
2334
2335 if (templates == NULL_TREE && candidates == NULL_TREE)
2336 {
2337 error ("template-id %qD for %q+D does not match any template "
2338 "declaration", template_id, decl);
2339 if (header_count && header_count != template_count + 1)
2340 inform (input_location, "saw %d %<template<>%>, need %d for "
2341 "specializing a member function template",
2342 header_count, template_count + 1);
2343 else
2344 print_candidates (orig_fns);
2345 return error_mark_node;
2346 }
2347 else if ((templates && TREE_CHAIN (templates))
2348 || (candidates && TREE_CHAIN (candidates))
2349 || (templates && candidates))
2350 {
2351 error ("ambiguous template specialization %qD for %q+D",
2352 template_id, decl);
2353 candidates = chainon (candidates, templates);
2354 print_candidates (candidates);
2355 return error_mark_node;
2356 }
2357
2358 /* We have one, and exactly one, match. */
2359 if (candidates)
2360 {
2361 tree fn = TREE_VALUE (candidates);
2362 *targs_out = copy_node (DECL_TI_ARGS (fn));
2363
2364 // Propagate the candidate's constraints to the declaration.
2365 set_constraints (decl, get_constraints (fn));
2366
2367 /* DECL is a re-declaration or partial instantiation of a template
2368 function. */
2369 if (TREE_CODE (fn) == TEMPLATE_DECL)
2370 return fn;
2371 /* It was a specialization of an ordinary member function in a
2372 template class. */
2373 return DECL_TI_TEMPLATE (fn);
2374 }
2375
2376 /* It was a specialization of a template. */
2377 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2378 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2379 {
2380 *targs_out = copy_node (targs);
2381 SET_TMPL_ARGS_LEVEL (*targs_out,
2382 TMPL_ARGS_DEPTH (*targs_out),
2383 TREE_PURPOSE (templates));
2384 }
2385 else
2386 *targs_out = TREE_PURPOSE (templates);
2387 return TREE_VALUE (templates);
2388 }
2389
2390 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2391 but with the default argument values filled in from those in the
2392 TMPL_TYPES. */
2393
2394 static tree
2395 copy_default_args_to_explicit_spec_1 (tree spec_types,
2396 tree tmpl_types)
2397 {
2398 tree new_spec_types;
2399
2400 if (!spec_types)
2401 return NULL_TREE;
2402
2403 if (spec_types == void_list_node)
2404 return void_list_node;
2405
2406 /* Substitute into the rest of the list. */
2407 new_spec_types =
2408 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2409 TREE_CHAIN (tmpl_types));
2410
2411 /* Add the default argument for this parameter. */
2412 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2413 TREE_VALUE (spec_types),
2414 new_spec_types);
2415 }
2416
2417 /* DECL is an explicit specialization. Replicate default arguments
2418 from the template it specializes. (That way, code like:
2419
2420 template <class T> void f(T = 3);
2421 template <> void f(double);
2422 void g () { f (); }
2423
2424 works, as required.) An alternative approach would be to look up
2425 the correct default arguments at the call-site, but this approach
2426 is consistent with how implicit instantiations are handled. */
2427
2428 static void
2429 copy_default_args_to_explicit_spec (tree decl)
2430 {
2431 tree tmpl;
2432 tree spec_types;
2433 tree tmpl_types;
2434 tree new_spec_types;
2435 tree old_type;
2436 tree new_type;
2437 tree t;
2438 tree object_type = NULL_TREE;
2439 tree in_charge = NULL_TREE;
2440 tree vtt = NULL_TREE;
2441
2442 /* See if there's anything we need to do. */
2443 tmpl = DECL_TI_TEMPLATE (decl);
2444 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2445 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2446 if (TREE_PURPOSE (t))
2447 break;
2448 if (!t)
2449 return;
2450
2451 old_type = TREE_TYPE (decl);
2452 spec_types = TYPE_ARG_TYPES (old_type);
2453
2454 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2455 {
2456 /* Remove the this pointer, but remember the object's type for
2457 CV quals. */
2458 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2459 spec_types = TREE_CHAIN (spec_types);
2460 tmpl_types = TREE_CHAIN (tmpl_types);
2461
2462 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2463 {
2464 /* DECL may contain more parameters than TMPL due to the extra
2465 in-charge parameter in constructors and destructors. */
2466 in_charge = spec_types;
2467 spec_types = TREE_CHAIN (spec_types);
2468 }
2469 if (DECL_HAS_VTT_PARM_P (decl))
2470 {
2471 vtt = spec_types;
2472 spec_types = TREE_CHAIN (spec_types);
2473 }
2474 }
2475
2476 /* Compute the merged default arguments. */
2477 new_spec_types =
2478 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2479
2480 /* Compute the new FUNCTION_TYPE. */
2481 if (object_type)
2482 {
2483 if (vtt)
2484 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2485 TREE_VALUE (vtt),
2486 new_spec_types);
2487
2488 if (in_charge)
2489 /* Put the in-charge parameter back. */
2490 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2491 TREE_VALUE (in_charge),
2492 new_spec_types);
2493
2494 new_type = build_method_type_directly (object_type,
2495 TREE_TYPE (old_type),
2496 new_spec_types);
2497 }
2498 else
2499 new_type = build_function_type (TREE_TYPE (old_type),
2500 new_spec_types);
2501 new_type = cp_build_type_attribute_variant (new_type,
2502 TYPE_ATTRIBUTES (old_type));
2503 new_type = build_exception_variant (new_type,
2504 TYPE_RAISES_EXCEPTIONS (old_type));
2505
2506 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2507 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2508
2509 TREE_TYPE (decl) = new_type;
2510 }
2511
2512 /* Return the number of template headers we expect to see for a definition
2513 or specialization of CTYPE or one of its non-template members. */
2514
2515 int
2516 num_template_headers_for_class (tree ctype)
2517 {
2518 int num_templates = 0;
2519
2520 while (ctype && CLASS_TYPE_P (ctype))
2521 {
2522 /* You're supposed to have one `template <...>' for every
2523 template class, but you don't need one for a full
2524 specialization. For example:
2525
2526 template <class T> struct S{};
2527 template <> struct S<int> { void f(); };
2528 void S<int>::f () {}
2529
2530 is correct; there shouldn't be a `template <>' for the
2531 definition of `S<int>::f'. */
2532 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2533 /* If CTYPE does not have template information of any
2534 kind, then it is not a template, nor is it nested
2535 within a template. */
2536 break;
2537 if (explicit_class_specialization_p (ctype))
2538 break;
2539 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2540 ++num_templates;
2541
2542 ctype = TYPE_CONTEXT (ctype);
2543 }
2544
2545 return num_templates;
2546 }
2547
2548 /* Do a simple sanity check on the template headers that precede the
2549 variable declaration DECL. */
2550
2551 void
2552 check_template_variable (tree decl)
2553 {
2554 tree ctx = CP_DECL_CONTEXT (decl);
2555 int wanted = num_template_headers_for_class (ctx);
2556 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2557 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2558 {
2559 if (cxx_dialect < cxx14)
2560 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2561 "variable templates only available with "
2562 "-std=c++14 or -std=gnu++14");
2563
2564 // Namespace-scope variable templates should have a template header.
2565 ++wanted;
2566 }
2567 if (template_header_count > wanted)
2568 {
2569 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2570 "too many template headers for %D (should be %d)",
2571 decl, wanted);
2572 if (warned && CLASS_TYPE_P (ctx)
2573 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2574 inform (DECL_SOURCE_LOCATION (decl),
2575 "members of an explicitly specialized class are defined "
2576 "without a template header");
2577 }
2578 }
2579
2580 /* Check to see if the function just declared, as indicated in
2581 DECLARATOR, and in DECL, is a specialization of a function
2582 template. We may also discover that the declaration is an explicit
2583 instantiation at this point.
2584
2585 Returns DECL, or an equivalent declaration that should be used
2586 instead if all goes well. Issues an error message if something is
2587 amiss. Returns error_mark_node if the error is not easily
2588 recoverable.
2589
2590 FLAGS is a bitmask consisting of the following flags:
2591
2592 2: The function has a definition.
2593 4: The function is a friend.
2594
2595 The TEMPLATE_COUNT is the number of references to qualifying
2596 template classes that appeared in the name of the function. For
2597 example, in
2598
2599 template <class T> struct S { void f(); };
2600 void S<int>::f();
2601
2602 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2603 classes are not counted in the TEMPLATE_COUNT, so that in
2604
2605 template <class T> struct S {};
2606 template <> struct S<int> { void f(); }
2607 template <> void S<int>::f();
2608
2609 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2610 invalid; there should be no template <>.)
2611
2612 If the function is a specialization, it is marked as such via
2613 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2614 is set up correctly, and it is added to the list of specializations
2615 for that template. */
2616
2617 tree
2618 check_explicit_specialization (tree declarator,
2619 tree decl,
2620 int template_count,
2621 int flags)
2622 {
2623 int have_def = flags & 2;
2624 int is_friend = flags & 4;
2625 bool is_concept = flags & 8;
2626 int specialization = 0;
2627 int explicit_instantiation = 0;
2628 int member_specialization = 0;
2629 tree ctype = DECL_CLASS_CONTEXT (decl);
2630 tree dname = DECL_NAME (decl);
2631 tmpl_spec_kind tsk;
2632
2633 if (is_friend)
2634 {
2635 if (!processing_specialization)
2636 tsk = tsk_none;
2637 else
2638 tsk = tsk_excessive_parms;
2639 }
2640 else
2641 tsk = current_tmpl_spec_kind (template_count);
2642
2643 switch (tsk)
2644 {
2645 case tsk_none:
2646 if (processing_specialization && !VAR_P (decl))
2647 {
2648 specialization = 1;
2649 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2650 }
2651 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2652 {
2653 if (is_friend)
2654 /* This could be something like:
2655
2656 template <class T> void f(T);
2657 class S { friend void f<>(int); } */
2658 specialization = 1;
2659 else
2660 {
2661 /* This case handles bogus declarations like template <>
2662 template <class T> void f<int>(); */
2663
2664 error ("template-id %qD in declaration of primary template",
2665 declarator);
2666 return decl;
2667 }
2668 }
2669 break;
2670
2671 case tsk_invalid_member_spec:
2672 /* The error has already been reported in
2673 check_specialization_scope. */
2674 return error_mark_node;
2675
2676 case tsk_invalid_expl_inst:
2677 error ("template parameter list used in explicit instantiation");
2678
2679 /* Fall through. */
2680
2681 case tsk_expl_inst:
2682 if (have_def)
2683 error ("definition provided for explicit instantiation");
2684
2685 explicit_instantiation = 1;
2686 break;
2687
2688 case tsk_excessive_parms:
2689 case tsk_insufficient_parms:
2690 if (tsk == tsk_excessive_parms)
2691 error ("too many template parameter lists in declaration of %qD",
2692 decl);
2693 else if (template_header_count)
2694 error("too few template parameter lists in declaration of %qD", decl);
2695 else
2696 error("explicit specialization of %qD must be introduced by "
2697 "%<template <>%>", decl);
2698
2699 /* Fall through. */
2700 case tsk_expl_spec:
2701 if (is_concept)
2702 error ("explicit specialization declared %<concept%>");
2703
2704 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2705 /* In cases like template<> constexpr bool v = true;
2706 We'll give an error in check_template_variable. */
2707 break;
2708
2709 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2710 if (ctype)
2711 member_specialization = 1;
2712 else
2713 specialization = 1;
2714 break;
2715
2716 case tsk_template:
2717 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2718 {
2719 /* This case handles bogus declarations like template <>
2720 template <class T> void f<int>(); */
2721
2722 if (!uses_template_parms (declarator))
2723 error ("template-id %qD in declaration of primary template",
2724 declarator);
2725 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2726 {
2727 /* Partial specialization of variable template. */
2728 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2729 specialization = 1;
2730 goto ok;
2731 }
2732 else if (cxx_dialect < cxx14)
2733 error ("non-type partial specialization %qD "
2734 "is not allowed", declarator);
2735 else
2736 error ("non-class, non-variable partial specialization %qD "
2737 "is not allowed", declarator);
2738 return decl;
2739 ok:;
2740 }
2741
2742 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2743 /* This is a specialization of a member template, without
2744 specialization the containing class. Something like:
2745
2746 template <class T> struct S {
2747 template <class U> void f (U);
2748 };
2749 template <> template <class U> void S<int>::f(U) {}
2750
2751 That's a specialization -- but of the entire template. */
2752 specialization = 1;
2753 break;
2754
2755 default:
2756 gcc_unreachable ();
2757 }
2758
2759 if ((specialization || member_specialization)
2760 /* This doesn't apply to variable templates. */
2761 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2762 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2763 {
2764 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2765 for (; t; t = TREE_CHAIN (t))
2766 if (TREE_PURPOSE (t))
2767 {
2768 permerror (input_location,
2769 "default argument specified in explicit specialization");
2770 break;
2771 }
2772 }
2773
2774 if (specialization || member_specialization || explicit_instantiation)
2775 {
2776 tree tmpl = NULL_TREE;
2777 tree targs = NULL_TREE;
2778 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2779
2780 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2781 if (!was_template_id)
2782 {
2783 tree fns;
2784
2785 gcc_assert (identifier_p (declarator));
2786 if (ctype)
2787 fns = dname;
2788 else
2789 {
2790 /* If there is no class context, the explicit instantiation
2791 must be at namespace scope. */
2792 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2793
2794 /* Find the namespace binding, using the declaration
2795 context. */
2796 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2797 false, true);
2798 if (fns == error_mark_node || !is_overloaded_fn (fns))
2799 {
2800 error ("%qD is not a template function", dname);
2801 fns = error_mark_node;
2802 }
2803 else
2804 {
2805 tree fn = OVL_CURRENT (fns);
2806 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2807 CP_DECL_CONTEXT (fn)))
2808 error ("%qD is not declared in %qD",
2809 decl, current_namespace);
2810 }
2811 }
2812
2813 declarator = lookup_template_function (fns, NULL_TREE);
2814 }
2815
2816 if (declarator == error_mark_node)
2817 return error_mark_node;
2818
2819 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2820 {
2821 if (!explicit_instantiation)
2822 /* A specialization in class scope. This is invalid,
2823 but the error will already have been flagged by
2824 check_specialization_scope. */
2825 return error_mark_node;
2826 else
2827 {
2828 /* It's not valid to write an explicit instantiation in
2829 class scope, e.g.:
2830
2831 class C { template void f(); }
2832
2833 This case is caught by the parser. However, on
2834 something like:
2835
2836 template class C { void f(); };
2837
2838 (which is invalid) we can get here. The error will be
2839 issued later. */
2840 ;
2841 }
2842
2843 return decl;
2844 }
2845 else if (ctype != NULL_TREE
2846 && (identifier_p (TREE_OPERAND (declarator, 0))))
2847 {
2848 // We'll match variable templates in start_decl.
2849 if (VAR_P (decl))
2850 return decl;
2851
2852 /* Find the list of functions in ctype that have the same
2853 name as the declared function. */
2854 tree name = TREE_OPERAND (declarator, 0);
2855 tree fns = NULL_TREE;
2856 int idx;
2857
2858 if (constructor_name_p (name, ctype))
2859 {
2860 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2861
2862 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2863 : !CLASSTYPE_DESTRUCTORS (ctype))
2864 {
2865 /* From [temp.expl.spec]:
2866
2867 If such an explicit specialization for the member
2868 of a class template names an implicitly-declared
2869 special member function (clause _special_), the
2870 program is ill-formed.
2871
2872 Similar language is found in [temp.explicit]. */
2873 error ("specialization of implicitly-declared special member function");
2874 return error_mark_node;
2875 }
2876
2877 name = is_constructor ? ctor_identifier : dtor_identifier;
2878 }
2879
2880 if (!DECL_CONV_FN_P (decl))
2881 {
2882 idx = lookup_fnfields_1 (ctype, name);
2883 if (idx >= 0)
2884 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2885 }
2886 else
2887 {
2888 vec<tree, va_gc> *methods;
2889 tree ovl;
2890
2891 /* For a type-conversion operator, we cannot do a
2892 name-based lookup. We might be looking for `operator
2893 int' which will be a specialization of `operator T'.
2894 So, we find *all* the conversion operators, and then
2895 select from them. */
2896 fns = NULL_TREE;
2897
2898 methods = CLASSTYPE_METHOD_VEC (ctype);
2899 if (methods)
2900 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2901 methods->iterate (idx, &ovl);
2902 ++idx)
2903 {
2904 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2905 /* There are no more conversion functions. */
2906 break;
2907
2908 /* Glue all these conversion functions together
2909 with those we already have. */
2910 for (; ovl; ovl = OVL_NEXT (ovl))
2911 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2912 }
2913 }
2914
2915 if (fns == NULL_TREE)
2916 {
2917 error ("no member function %qD declared in %qT", name, ctype);
2918 return error_mark_node;
2919 }
2920 else
2921 TREE_OPERAND (declarator, 0) = fns;
2922 }
2923
2924 /* Figure out what exactly is being specialized at this point.
2925 Note that for an explicit instantiation, even one for a
2926 member function, we cannot tell apriori whether the
2927 instantiation is for a member template, or just a member
2928 function of a template class. Even if a member template is
2929 being instantiated, the member template arguments may be
2930 elided if they can be deduced from the rest of the
2931 declaration. */
2932 tmpl = determine_specialization (declarator, decl,
2933 &targs,
2934 member_specialization,
2935 template_count,
2936 tsk);
2937
2938 if (!tmpl || tmpl == error_mark_node)
2939 /* We couldn't figure out what this declaration was
2940 specializing. */
2941 return error_mark_node;
2942 else
2943 {
2944 tree gen_tmpl = most_general_template (tmpl);
2945
2946 if (explicit_instantiation)
2947 {
2948 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2949 is done by do_decl_instantiation later. */
2950
2951 int arg_depth = TMPL_ARGS_DEPTH (targs);
2952 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2953
2954 if (arg_depth > parm_depth)
2955 {
2956 /* If TMPL is not the most general template (for
2957 example, if TMPL is a friend template that is
2958 injected into namespace scope), then there will
2959 be too many levels of TARGS. Remove some of them
2960 here. */
2961 int i;
2962 tree new_targs;
2963
2964 new_targs = make_tree_vec (parm_depth);
2965 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2966 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2967 = TREE_VEC_ELT (targs, i);
2968 targs = new_targs;
2969 }
2970
2971 return instantiate_template (tmpl, targs, tf_error);
2972 }
2973
2974 /* If we thought that the DECL was a member function, but it
2975 turns out to be specializing a static member function,
2976 make DECL a static member function as well. */
2977 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2978 && DECL_STATIC_FUNCTION_P (tmpl)
2979 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2980 revert_static_member_fn (decl);
2981
2982 /* If this is a specialization of a member template of a
2983 template class, we want to return the TEMPLATE_DECL, not
2984 the specialization of it. */
2985 if (tsk == tsk_template && !was_template_id)
2986 {
2987 tree result = DECL_TEMPLATE_RESULT (tmpl);
2988 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2989 DECL_INITIAL (result) = NULL_TREE;
2990 if (have_def)
2991 {
2992 tree parm;
2993 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2994 DECL_SOURCE_LOCATION (result)
2995 = DECL_SOURCE_LOCATION (decl);
2996 /* We want to use the argument list specified in the
2997 definition, not in the original declaration. */
2998 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2999 for (parm = DECL_ARGUMENTS (result); parm;
3000 parm = DECL_CHAIN (parm))
3001 DECL_CONTEXT (parm) = result;
3002 }
3003 return register_specialization (tmpl, gen_tmpl, targs,
3004 is_friend, 0);
3005 }
3006
3007 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3008 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3009
3010 if (was_template_id)
3011 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3012
3013 /* Inherit default function arguments from the template
3014 DECL is specializing. */
3015 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3016 copy_default_args_to_explicit_spec (decl);
3017
3018 /* This specialization has the same protection as the
3019 template it specializes. */
3020 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3021 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3022
3023 /* 7.1.1-1 [dcl.stc]
3024
3025 A storage-class-specifier shall not be specified in an
3026 explicit specialization...
3027
3028 The parser rejects these, so unless action is taken here,
3029 explicit function specializations will always appear with
3030 global linkage.
3031
3032 The action recommended by the C++ CWG in response to C++
3033 defect report 605 is to make the storage class and linkage
3034 of the explicit specialization match the templated function:
3035
3036 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3037 */
3038 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3039 {
3040 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3041 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3042
3043 /* A concept cannot be specialized. */
3044 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3045 {
3046 error ("explicit specialization of function concept %qD",
3047 gen_tmpl);
3048 return error_mark_node;
3049 }
3050
3051 /* This specialization has the same linkage and visibility as
3052 the function template it specializes. */
3053 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3054 if (! TREE_PUBLIC (decl))
3055 {
3056 DECL_INTERFACE_KNOWN (decl) = 1;
3057 DECL_NOT_REALLY_EXTERN (decl) = 1;
3058 }
3059 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3060 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3061 {
3062 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3063 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3064 }
3065 }
3066
3067 /* If DECL is a friend declaration, declared using an
3068 unqualified name, the namespace associated with DECL may
3069 have been set incorrectly. For example, in:
3070
3071 template <typename T> void f(T);
3072 namespace N {
3073 struct S { friend void f<int>(int); }
3074 }
3075
3076 we will have set the DECL_CONTEXT for the friend
3077 declaration to N, rather than to the global namespace. */
3078 if (DECL_NAMESPACE_SCOPE_P (decl))
3079 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3080
3081 if (is_friend && !have_def)
3082 /* This is not really a declaration of a specialization.
3083 It's just the name of an instantiation. But, it's not
3084 a request for an instantiation, either. */
3085 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3086 else if (TREE_CODE (decl) == FUNCTION_DECL)
3087 /* A specialization is not necessarily COMDAT. */
3088 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3089 && DECL_DECLARED_INLINE_P (decl));
3090 else if (VAR_P (decl))
3091 DECL_COMDAT (decl) = false;
3092
3093 /* If this is a full specialization, register it so that we can find
3094 it again. Partial specializations will be registered in
3095 process_partial_specialization. */
3096 if (!processing_template_decl)
3097 decl = register_specialization (decl, gen_tmpl, targs,
3098 is_friend, 0);
3099
3100 /* A 'structor should already have clones. */
3101 gcc_assert (decl == error_mark_node
3102 || variable_template_p (tmpl)
3103 || !(DECL_CONSTRUCTOR_P (decl)
3104 || DECL_DESTRUCTOR_P (decl))
3105 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3106 }
3107 }
3108
3109 return decl;
3110 }
3111
3112 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3113 parameters. These are represented in the same format used for
3114 DECL_TEMPLATE_PARMS. */
3115
3116 int
3117 comp_template_parms (const_tree parms1, const_tree parms2)
3118 {
3119 const_tree p1;
3120 const_tree p2;
3121
3122 if (parms1 == parms2)
3123 return 1;
3124
3125 for (p1 = parms1, p2 = parms2;
3126 p1 != NULL_TREE && p2 != NULL_TREE;
3127 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3128 {
3129 tree t1 = TREE_VALUE (p1);
3130 tree t2 = TREE_VALUE (p2);
3131 int i;
3132
3133 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3134 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3135
3136 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3137 return 0;
3138
3139 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3140 {
3141 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3142 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3143
3144 /* If either of the template parameters are invalid, assume
3145 they match for the sake of error recovery. */
3146 if (error_operand_p (parm1) || error_operand_p (parm2))
3147 return 1;
3148
3149 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3150 return 0;
3151
3152 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3153 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3154 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3155 continue;
3156 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3157 return 0;
3158 }
3159 }
3160
3161 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3162 /* One set of parameters has more parameters lists than the
3163 other. */
3164 return 0;
3165
3166 return 1;
3167 }
3168
3169 /* Determine whether PARM is a parameter pack. */
3170
3171 bool
3172 template_parameter_pack_p (const_tree parm)
3173 {
3174 /* Determine if we have a non-type template parameter pack. */
3175 if (TREE_CODE (parm) == PARM_DECL)
3176 return (DECL_TEMPLATE_PARM_P (parm)
3177 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3178 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3179 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3180
3181 /* If this is a list of template parameters, we could get a
3182 TYPE_DECL or a TEMPLATE_DECL. */
3183 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3184 parm = TREE_TYPE (parm);
3185
3186 /* Otherwise it must be a type template parameter. */
3187 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3188 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3189 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3190 }
3191
3192 /* Determine if T is a function parameter pack. */
3193
3194 bool
3195 function_parameter_pack_p (const_tree t)
3196 {
3197 if (t && TREE_CODE (t) == PARM_DECL)
3198 return DECL_PACK_P (t);
3199 return false;
3200 }
3201
3202 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3203 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3204
3205 tree
3206 get_function_template_decl (const_tree primary_func_tmpl_inst)
3207 {
3208 if (! primary_func_tmpl_inst
3209 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3210 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3211 return NULL;
3212
3213 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3214 }
3215
3216 /* Return true iff the function parameter PARAM_DECL was expanded
3217 from the function parameter pack PACK. */
3218
3219 bool
3220 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3221 {
3222 if (DECL_ARTIFICIAL (param_decl)
3223 || !function_parameter_pack_p (pack))
3224 return false;
3225
3226 /* The parameter pack and its pack arguments have the same
3227 DECL_PARM_INDEX. */
3228 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3229 }
3230
3231 /* Determine whether ARGS describes a variadic template args list,
3232 i.e., one that is terminated by a template argument pack. */
3233
3234 static bool
3235 template_args_variadic_p (tree args)
3236 {
3237 int nargs;
3238 tree last_parm;
3239
3240 if (args == NULL_TREE)
3241 return false;
3242
3243 args = INNERMOST_TEMPLATE_ARGS (args);
3244 nargs = TREE_VEC_LENGTH (args);
3245
3246 if (nargs == 0)
3247 return false;
3248
3249 last_parm = TREE_VEC_ELT (args, nargs - 1);
3250
3251 return ARGUMENT_PACK_P (last_parm);
3252 }
3253
3254 /* Generate a new name for the parameter pack name NAME (an
3255 IDENTIFIER_NODE) that incorporates its */
3256
3257 static tree
3258 make_ith_pack_parameter_name (tree name, int i)
3259 {
3260 /* Munge the name to include the parameter index. */
3261 #define NUMBUF_LEN 128
3262 char numbuf[NUMBUF_LEN];
3263 char* newname;
3264 int newname_len;
3265
3266 if (name == NULL_TREE)
3267 return name;
3268 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3269 newname_len = IDENTIFIER_LENGTH (name)
3270 + strlen (numbuf) + 2;
3271 newname = (char*)alloca (newname_len);
3272 snprintf (newname, newname_len,
3273 "%s#%i", IDENTIFIER_POINTER (name), i);
3274 return get_identifier (newname);
3275 }
3276
3277 /* Return true if T is a primary function, class or alias template
3278 instantiation. */
3279
3280 bool
3281 primary_template_instantiation_p (const_tree t)
3282 {
3283 if (!t)
3284 return false;
3285
3286 if (TREE_CODE (t) == FUNCTION_DECL)
3287 return DECL_LANG_SPECIFIC (t)
3288 && DECL_TEMPLATE_INSTANTIATION (t)
3289 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3290 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3291 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3292 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3293 else if (alias_template_specialization_p (t))
3294 return true;
3295 return false;
3296 }
3297
3298 /* Return true if PARM is a template template parameter. */
3299
3300 bool
3301 template_template_parameter_p (const_tree parm)
3302 {
3303 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3304 }
3305
3306 /* Return true iff PARM is a DECL representing a type template
3307 parameter. */
3308
3309 bool
3310 template_type_parameter_p (const_tree parm)
3311 {
3312 return (parm
3313 && (TREE_CODE (parm) == TYPE_DECL
3314 || TREE_CODE (parm) == TEMPLATE_DECL)
3315 && DECL_TEMPLATE_PARM_P (parm));
3316 }
3317
3318 /* Return the template parameters of T if T is a
3319 primary template instantiation, NULL otherwise. */
3320
3321 tree
3322 get_primary_template_innermost_parameters (const_tree t)
3323 {
3324 tree parms = NULL, template_info = NULL;
3325
3326 if ((template_info = get_template_info (t))
3327 && primary_template_instantiation_p (t))
3328 parms = INNERMOST_TEMPLATE_PARMS
3329 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3330
3331 return parms;
3332 }
3333
3334 /* Return the template parameters of the LEVELth level from the full list
3335 of template parameters PARMS. */
3336
3337 tree
3338 get_template_parms_at_level (tree parms, int level)
3339 {
3340 tree p;
3341 if (!parms
3342 || TREE_CODE (parms) != TREE_LIST
3343 || level > TMPL_PARMS_DEPTH (parms))
3344 return NULL_TREE;
3345
3346 for (p = parms; p; p = TREE_CHAIN (p))
3347 if (TMPL_PARMS_DEPTH (p) == level)
3348 return p;
3349
3350 return NULL_TREE;
3351 }
3352
3353 /* Returns the template arguments of T if T is a template instantiation,
3354 NULL otherwise. */
3355
3356 tree
3357 get_template_innermost_arguments (const_tree t)
3358 {
3359 tree args = NULL, template_info = NULL;
3360
3361 if ((template_info = get_template_info (t))
3362 && TI_ARGS (template_info))
3363 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3364
3365 return args;
3366 }
3367
3368 /* Return the argument pack elements of T if T is a template argument pack,
3369 NULL otherwise. */
3370
3371 tree
3372 get_template_argument_pack_elems (const_tree t)
3373 {
3374 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3375 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3376 return NULL;
3377
3378 return ARGUMENT_PACK_ARGS (t);
3379 }
3380
3381 /* Structure used to track the progress of find_parameter_packs_r. */
3382 struct find_parameter_pack_data
3383 {
3384 /* TREE_LIST that will contain all of the parameter packs found by
3385 the traversal. */
3386 tree* parameter_packs;
3387
3388 /* Set of AST nodes that have been visited by the traversal. */
3389 hash_set<tree> *visited;
3390
3391 /* True iff we're making a type pack expansion. */
3392 bool type_pack_expansion_p;
3393 };
3394
3395 /* Identifies all of the argument packs that occur in a template
3396 argument and appends them to the TREE_LIST inside DATA, which is a
3397 find_parameter_pack_data structure. This is a subroutine of
3398 make_pack_expansion and uses_parameter_packs. */
3399 static tree
3400 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3401 {
3402 tree t = *tp;
3403 struct find_parameter_pack_data* ppd =
3404 (struct find_parameter_pack_data*)data;
3405 bool parameter_pack_p = false;
3406
3407 /* Handle type aliases/typedefs. */
3408 if (TYPE_ALIAS_P (t))
3409 {
3410 if (TYPE_TEMPLATE_INFO (t))
3411 cp_walk_tree (&TYPE_TI_ARGS (t),
3412 &find_parameter_packs_r,
3413 ppd, ppd->visited);
3414 *walk_subtrees = 0;
3415 return NULL_TREE;
3416 }
3417
3418 /* Identify whether this is a parameter pack or not. */
3419 switch (TREE_CODE (t))
3420 {
3421 case TEMPLATE_PARM_INDEX:
3422 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3423 parameter_pack_p = true;
3424 break;
3425
3426 case TEMPLATE_TYPE_PARM:
3427 t = TYPE_MAIN_VARIANT (t);
3428 case TEMPLATE_TEMPLATE_PARM:
3429 /* If the placeholder appears in the decl-specifier-seq of a function
3430 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3431 is a pack expansion, the invented template parameter is a template
3432 parameter pack. */
3433 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3434 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3435 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3436 parameter_pack_p = true;
3437 break;
3438
3439 case FIELD_DECL:
3440 case PARM_DECL:
3441 if (DECL_PACK_P (t))
3442 {
3443 /* We don't want to walk into the type of a PARM_DECL,
3444 because we don't want to see the type parameter pack. */
3445 *walk_subtrees = 0;
3446 parameter_pack_p = true;
3447 }
3448 break;
3449
3450 /* Look through a lambda capture proxy to the field pack. */
3451 case VAR_DECL:
3452 if (DECL_HAS_VALUE_EXPR_P (t))
3453 {
3454 tree v = DECL_VALUE_EXPR (t);
3455 cp_walk_tree (&v,
3456 &find_parameter_packs_r,
3457 ppd, ppd->visited);
3458 *walk_subtrees = 0;
3459 }
3460 else if (variable_template_specialization_p (t))
3461 {
3462 cp_walk_tree (&DECL_TI_ARGS (t),
3463 find_parameter_packs_r,
3464 ppd, ppd->visited);
3465 *walk_subtrees = 0;
3466 }
3467 break;
3468
3469 case BASES:
3470 parameter_pack_p = true;
3471 break;
3472 default:
3473 /* Not a parameter pack. */
3474 break;
3475 }
3476
3477 if (parameter_pack_p)
3478 {
3479 /* Add this parameter pack to the list. */
3480 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3481 }
3482
3483 if (TYPE_P (t))
3484 cp_walk_tree (&TYPE_CONTEXT (t),
3485 &find_parameter_packs_r, ppd, ppd->visited);
3486
3487 /* This switch statement will return immediately if we don't find a
3488 parameter pack. */
3489 switch (TREE_CODE (t))
3490 {
3491 case TEMPLATE_PARM_INDEX:
3492 return NULL_TREE;
3493
3494 case BOUND_TEMPLATE_TEMPLATE_PARM:
3495 /* Check the template itself. */
3496 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3497 &find_parameter_packs_r, ppd, ppd->visited);
3498 /* Check the template arguments. */
3499 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3500 ppd->visited);
3501 *walk_subtrees = 0;
3502 return NULL_TREE;
3503
3504 case TEMPLATE_TYPE_PARM:
3505 case TEMPLATE_TEMPLATE_PARM:
3506 return NULL_TREE;
3507
3508 case PARM_DECL:
3509 return NULL_TREE;
3510
3511 case RECORD_TYPE:
3512 if (TYPE_PTRMEMFUNC_P (t))
3513 return NULL_TREE;
3514 /* Fall through. */
3515
3516 case UNION_TYPE:
3517 case ENUMERAL_TYPE:
3518 if (TYPE_TEMPLATE_INFO (t))
3519 cp_walk_tree (&TYPE_TI_ARGS (t),
3520 &find_parameter_packs_r, ppd, ppd->visited);
3521
3522 *walk_subtrees = 0;
3523 return NULL_TREE;
3524
3525 case CONSTRUCTOR:
3526 case TEMPLATE_DECL:
3527 cp_walk_tree (&TREE_TYPE (t),
3528 &find_parameter_packs_r, ppd, ppd->visited);
3529 return NULL_TREE;
3530
3531 case TYPENAME_TYPE:
3532 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3533 ppd, ppd->visited);
3534 *walk_subtrees = 0;
3535 return NULL_TREE;
3536
3537 case TYPE_PACK_EXPANSION:
3538 case EXPR_PACK_EXPANSION:
3539 *walk_subtrees = 0;
3540 return NULL_TREE;
3541
3542 case INTEGER_TYPE:
3543 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3544 ppd, ppd->visited);
3545 *walk_subtrees = 0;
3546 return NULL_TREE;
3547
3548 case IDENTIFIER_NODE:
3549 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3550 ppd->visited);
3551 *walk_subtrees = 0;
3552 return NULL_TREE;
3553
3554 default:
3555 return NULL_TREE;
3556 }
3557
3558 return NULL_TREE;
3559 }
3560
3561 /* Determines if the expression or type T uses any parameter packs. */
3562 bool
3563 uses_parameter_packs (tree t)
3564 {
3565 tree parameter_packs = NULL_TREE;
3566 struct find_parameter_pack_data ppd;
3567 ppd.parameter_packs = &parameter_packs;
3568 ppd.visited = new hash_set<tree>;
3569 ppd.type_pack_expansion_p = false;
3570 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3571 delete ppd.visited;
3572 return parameter_packs != NULL_TREE;
3573 }
3574
3575 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3576 representation a base-class initializer into a parameter pack
3577 expansion. If all goes well, the resulting node will be an
3578 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3579 respectively. */
3580 tree
3581 make_pack_expansion (tree arg)
3582 {
3583 tree result;
3584 tree parameter_packs = NULL_TREE;
3585 bool for_types = false;
3586 struct find_parameter_pack_data ppd;
3587
3588 if (!arg || arg == error_mark_node)
3589 return arg;
3590
3591 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3592 {
3593 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3594 class initializer. In this case, the TREE_PURPOSE will be a
3595 _TYPE node (representing the base class expansion we're
3596 initializing) and the TREE_VALUE will be a TREE_LIST
3597 containing the initialization arguments.
3598
3599 The resulting expansion looks somewhat different from most
3600 expansions. Rather than returning just one _EXPANSION, we
3601 return a TREE_LIST whose TREE_PURPOSE is a
3602 TYPE_PACK_EXPANSION containing the bases that will be
3603 initialized. The TREE_VALUE will be identical to the
3604 original TREE_VALUE, which is a list of arguments that will
3605 be passed to each base. We do not introduce any new pack
3606 expansion nodes into the TREE_VALUE (although it is possible
3607 that some already exist), because the TREE_PURPOSE and
3608 TREE_VALUE all need to be expanded together with the same
3609 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3610 resulting TREE_PURPOSE will mention the parameter packs in
3611 both the bases and the arguments to the bases. */
3612 tree purpose;
3613 tree value;
3614 tree parameter_packs = NULL_TREE;
3615
3616 /* Determine which parameter packs will be used by the base
3617 class expansion. */
3618 ppd.visited = new hash_set<tree>;
3619 ppd.parameter_packs = &parameter_packs;
3620 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3621 &ppd, ppd.visited);
3622
3623 if (parameter_packs == NULL_TREE)
3624 {
3625 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3626 delete ppd.visited;
3627 return error_mark_node;
3628 }
3629
3630 if (TREE_VALUE (arg) != void_type_node)
3631 {
3632 /* Collect the sets of parameter packs used in each of the
3633 initialization arguments. */
3634 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3635 {
3636 /* Determine which parameter packs will be expanded in this
3637 argument. */
3638 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3639 &ppd, ppd.visited);
3640 }
3641 }
3642
3643 delete ppd.visited;
3644
3645 /* Create the pack expansion type for the base type. */
3646 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3647 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3648 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3649
3650 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3651 they will rarely be compared to anything. */
3652 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3653
3654 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3655 }
3656
3657 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3658 for_types = true;
3659
3660 /* Build the PACK_EXPANSION_* node. */
3661 result = for_types
3662 ? cxx_make_type (TYPE_PACK_EXPANSION)
3663 : make_node (EXPR_PACK_EXPANSION);
3664 SET_PACK_EXPANSION_PATTERN (result, arg);
3665 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3666 {
3667 /* Propagate type and const-expression information. */
3668 TREE_TYPE (result) = TREE_TYPE (arg);
3669 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3670 }
3671 else
3672 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3673 they will rarely be compared to anything. */
3674 SET_TYPE_STRUCTURAL_EQUALITY (result);
3675
3676 /* Determine which parameter packs will be expanded. */
3677 ppd.parameter_packs = &parameter_packs;
3678 ppd.visited = new hash_set<tree>;
3679 ppd.type_pack_expansion_p = TYPE_P (arg);
3680 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3681 delete ppd.visited;
3682
3683 /* Make sure we found some parameter packs. */
3684 if (parameter_packs == NULL_TREE)
3685 {
3686 if (TYPE_P (arg))
3687 error ("expansion pattern %<%T%> contains no argument packs", arg);
3688 else
3689 error ("expansion pattern %<%E%> contains no argument packs", arg);
3690 return error_mark_node;
3691 }
3692 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3693
3694 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3695
3696 return result;
3697 }
3698
3699 /* Checks T for any "bare" parameter packs, which have not yet been
3700 expanded, and issues an error if any are found. This operation can
3701 only be done on full expressions or types (e.g., an expression
3702 statement, "if" condition, etc.), because we could have expressions like:
3703
3704 foo(f(g(h(args)))...)
3705
3706 where "args" is a parameter pack. check_for_bare_parameter_packs
3707 should not be called for the subexpressions args, h(args),
3708 g(h(args)), or f(g(h(args))), because we would produce erroneous
3709 error messages.
3710
3711 Returns TRUE and emits an error if there were bare parameter packs,
3712 returns FALSE otherwise. */
3713 bool
3714 check_for_bare_parameter_packs (tree t)
3715 {
3716 tree parameter_packs = NULL_TREE;
3717 struct find_parameter_pack_data ppd;
3718
3719 if (!processing_template_decl || !t || t == error_mark_node)
3720 return false;
3721
3722 if (TREE_CODE (t) == TYPE_DECL)
3723 t = TREE_TYPE (t);
3724
3725 ppd.parameter_packs = &parameter_packs;
3726 ppd.visited = new hash_set<tree>;
3727 ppd.type_pack_expansion_p = false;
3728 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3729 delete ppd.visited;
3730
3731 if (parameter_packs)
3732 {
3733 error ("parameter packs not expanded with %<...%>:");
3734 while (parameter_packs)
3735 {
3736 tree pack = TREE_VALUE (parameter_packs);
3737 tree name = NULL_TREE;
3738
3739 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3740 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3741 name = TYPE_NAME (pack);
3742 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3743 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3744 else
3745 name = DECL_NAME (pack);
3746
3747 if (name)
3748 inform (input_location, " %qD", name);
3749 else
3750 inform (input_location, " <anonymous>");
3751
3752 parameter_packs = TREE_CHAIN (parameter_packs);
3753 }
3754
3755 return true;
3756 }
3757
3758 return false;
3759 }
3760
3761 /* Expand any parameter packs that occur in the template arguments in
3762 ARGS. */
3763 tree
3764 expand_template_argument_pack (tree args)
3765 {
3766 tree result_args = NULL_TREE;
3767 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3768 int num_result_args = -1;
3769 int non_default_args_count = -1;
3770
3771 /* First, determine if we need to expand anything, and the number of
3772 slots we'll need. */
3773 for (in_arg = 0; in_arg < nargs; ++in_arg)
3774 {
3775 tree arg = TREE_VEC_ELT (args, in_arg);
3776 if (arg == NULL_TREE)
3777 return args;
3778 if (ARGUMENT_PACK_P (arg))
3779 {
3780 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3781 if (num_result_args < 0)
3782 num_result_args = in_arg + num_packed;
3783 else
3784 num_result_args += num_packed;
3785 }
3786 else
3787 {
3788 if (num_result_args >= 0)
3789 num_result_args++;
3790 }
3791 }
3792
3793 /* If no expansion is necessary, we're done. */
3794 if (num_result_args < 0)
3795 return args;
3796
3797 /* Expand arguments. */
3798 result_args = make_tree_vec (num_result_args);
3799 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3800 non_default_args_count =
3801 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3802 for (in_arg = 0; in_arg < nargs; ++in_arg)
3803 {
3804 tree arg = TREE_VEC_ELT (args, in_arg);
3805 if (ARGUMENT_PACK_P (arg))
3806 {
3807 tree packed = ARGUMENT_PACK_ARGS (arg);
3808 int i, num_packed = TREE_VEC_LENGTH (packed);
3809 for (i = 0; i < num_packed; ++i, ++out_arg)
3810 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3811 if (non_default_args_count > 0)
3812 non_default_args_count += num_packed - 1;
3813 }
3814 else
3815 {
3816 TREE_VEC_ELT (result_args, out_arg) = arg;
3817 ++out_arg;
3818 }
3819 }
3820 if (non_default_args_count >= 0)
3821 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3822 return result_args;
3823 }
3824
3825 /* Checks if DECL shadows a template parameter.
3826
3827 [temp.local]: A template-parameter shall not be redeclared within its
3828 scope (including nested scopes).
3829
3830 Emits an error and returns TRUE if the DECL shadows a parameter,
3831 returns FALSE otherwise. */
3832
3833 bool
3834 check_template_shadow (tree decl)
3835 {
3836 tree olddecl;
3837
3838 /* If we're not in a template, we can't possibly shadow a template
3839 parameter. */
3840 if (!current_template_parms)
3841 return true;
3842
3843 /* Figure out what we're shadowing. */
3844 if (TREE_CODE (decl) == OVERLOAD)
3845 decl = OVL_CURRENT (decl);
3846 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3847
3848 /* If there's no previous binding for this name, we're not shadowing
3849 anything, let alone a template parameter. */
3850 if (!olddecl)
3851 return true;
3852
3853 /* If we're not shadowing a template parameter, we're done. Note
3854 that OLDDECL might be an OVERLOAD (or perhaps even an
3855 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3856 node. */
3857 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3858 return true;
3859
3860 /* We check for decl != olddecl to avoid bogus errors for using a
3861 name inside a class. We check TPFI to avoid duplicate errors for
3862 inline member templates. */
3863 if (decl == olddecl
3864 || (DECL_TEMPLATE_PARM_P (decl)
3865 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3866 return true;
3867
3868 /* Don't complain about the injected class name, as we've already
3869 complained about the class itself. */
3870 if (DECL_SELF_REFERENCE_P (decl))
3871 return false;
3872
3873 if (DECL_TEMPLATE_PARM_P (decl))
3874 error ("declaration of template parameter %q+D shadows "
3875 "template parameter", decl);
3876 else
3877 error ("declaration of %q+#D shadows template parameter", decl);
3878 inform (DECL_SOURCE_LOCATION (olddecl),
3879 "template parameter %qD declared here", olddecl);
3880 return false;
3881 }
3882
3883 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3884 ORIG_LEVEL, DECL, and TYPE. */
3885
3886 static tree
3887 build_template_parm_index (int index,
3888 int level,
3889 int orig_level,
3890 tree decl,
3891 tree type)
3892 {
3893 tree t = make_node (TEMPLATE_PARM_INDEX);
3894 TEMPLATE_PARM_IDX (t) = index;
3895 TEMPLATE_PARM_LEVEL (t) = level;
3896 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3897 TEMPLATE_PARM_DECL (t) = decl;
3898 TREE_TYPE (t) = type;
3899 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3900 TREE_READONLY (t) = TREE_READONLY (decl);
3901
3902 return t;
3903 }
3904
3905 /* Find the canonical type parameter for the given template type
3906 parameter. Returns the canonical type parameter, which may be TYPE
3907 if no such parameter existed. */
3908
3909 static tree
3910 canonical_type_parameter (tree type)
3911 {
3912 tree list;
3913 int idx = TEMPLATE_TYPE_IDX (type);
3914 if (!canonical_template_parms)
3915 vec_alloc (canonical_template_parms, idx+1);
3916
3917 while (canonical_template_parms->length () <= (unsigned)idx)
3918 vec_safe_push (canonical_template_parms, NULL_TREE);
3919
3920 list = (*canonical_template_parms)[idx];
3921 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3922 list = TREE_CHAIN (list);
3923
3924 if (list)
3925 return TREE_VALUE (list);
3926 else
3927 {
3928 (*canonical_template_parms)[idx]
3929 = tree_cons (NULL_TREE, type,
3930 (*canonical_template_parms)[idx]);
3931 return type;
3932 }
3933 }
3934
3935 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3936 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3937 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3938 new one is created. */
3939
3940 static tree
3941 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3942 tsubst_flags_t complain)
3943 {
3944 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3945 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3946 != TEMPLATE_PARM_LEVEL (index) - levels)
3947 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3948 {
3949 tree orig_decl = TEMPLATE_PARM_DECL (index);
3950 tree decl, t;
3951
3952 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3953 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3954 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3955 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3956 DECL_ARTIFICIAL (decl) = 1;
3957 SET_DECL_TEMPLATE_PARM_P (decl);
3958
3959 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3960 TEMPLATE_PARM_LEVEL (index) - levels,
3961 TEMPLATE_PARM_ORIG_LEVEL (index),
3962 decl, type);
3963 TEMPLATE_PARM_DESCENDANTS (index) = t;
3964 TEMPLATE_PARM_PARAMETER_PACK (t)
3965 = TEMPLATE_PARM_PARAMETER_PACK (index);
3966
3967 /* Template template parameters need this. */
3968 if (TREE_CODE (decl) == TEMPLATE_DECL)
3969 {
3970 DECL_TEMPLATE_RESULT (decl)
3971 = build_decl (DECL_SOURCE_LOCATION (decl),
3972 TYPE_DECL, DECL_NAME (decl), type);
3973 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3974 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3975 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
3976 }
3977 }
3978
3979 return TEMPLATE_PARM_DESCENDANTS (index);
3980 }
3981
3982 /* Process information from new template parameter PARM and append it
3983 to the LIST being built. This new parameter is a non-type
3984 parameter iff IS_NON_TYPE is true. This new parameter is a
3985 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3986 is in PARM_LOC. */
3987
3988 tree
3989 process_template_parm (tree list, location_t parm_loc, tree parm,
3990 bool is_non_type, bool is_parameter_pack)
3991 {
3992 tree decl = 0;
3993 int idx = 0;
3994
3995 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3996 tree defval = TREE_PURPOSE (parm);
3997 tree constr = TREE_TYPE (parm);
3998
3999 if (list)
4000 {
4001 tree p = tree_last (list);
4002
4003 if (p && TREE_VALUE (p) != error_mark_node)
4004 {
4005 p = TREE_VALUE (p);
4006 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4007 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4008 else
4009 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4010 }
4011
4012 ++idx;
4013 }
4014
4015 if (is_non_type)
4016 {
4017 parm = TREE_VALUE (parm);
4018
4019 SET_DECL_TEMPLATE_PARM_P (parm);
4020
4021 if (TREE_TYPE (parm) != error_mark_node)
4022 {
4023 /* [temp.param]
4024
4025 The top-level cv-qualifiers on the template-parameter are
4026 ignored when determining its type. */
4027 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4028 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4029 TREE_TYPE (parm) = error_mark_node;
4030 else if (uses_parameter_packs (TREE_TYPE (parm))
4031 && !is_parameter_pack
4032 /* If we're in a nested template parameter list, the template
4033 template parameter could be a parameter pack. */
4034 && processing_template_parmlist == 1)
4035 {
4036 /* This template parameter is not a parameter pack, but it
4037 should be. Complain about "bare" parameter packs. */
4038 check_for_bare_parameter_packs (TREE_TYPE (parm));
4039
4040 /* Recover by calling this a parameter pack. */
4041 is_parameter_pack = true;
4042 }
4043 }
4044
4045 /* A template parameter is not modifiable. */
4046 TREE_CONSTANT (parm) = 1;
4047 TREE_READONLY (parm) = 1;
4048 decl = build_decl (parm_loc,
4049 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4050 TREE_CONSTANT (decl) = 1;
4051 TREE_READONLY (decl) = 1;
4052 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4053 = build_template_parm_index (idx, processing_template_decl,
4054 processing_template_decl,
4055 decl, TREE_TYPE (parm));
4056
4057 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4058 = is_parameter_pack;
4059 }
4060 else
4061 {
4062 tree t;
4063 parm = TREE_VALUE (TREE_VALUE (parm));
4064
4065 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4066 {
4067 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4068 /* This is for distinguishing between real templates and template
4069 template parameters */
4070 TREE_TYPE (parm) = t;
4071 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4072 decl = parm;
4073 }
4074 else
4075 {
4076 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4077 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4078 decl = build_decl (parm_loc,
4079 TYPE_DECL, parm, t);
4080 }
4081
4082 TYPE_NAME (t) = decl;
4083 TYPE_STUB_DECL (t) = decl;
4084 parm = decl;
4085 TEMPLATE_TYPE_PARM_INDEX (t)
4086 = build_template_parm_index (idx, processing_template_decl,
4087 processing_template_decl,
4088 decl, TREE_TYPE (parm));
4089 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4090 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4091 }
4092 DECL_ARTIFICIAL (decl) = 1;
4093 SET_DECL_TEMPLATE_PARM_P (decl);
4094
4095 /* Build requirements for the type/template parameter.
4096 This must be done after SET_DECL_TEMPLATE_PARM_P or
4097 process_template_parm could fail. */
4098 tree reqs = finish_shorthand_constraint (parm, constr);
4099
4100 pushdecl (decl);
4101
4102 /* Build the parameter node linking the parameter declaration,
4103 its default argument (if any), and its constraints (if any). */
4104 parm = build_tree_list (defval, parm);
4105 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4106
4107 return chainon (list, parm);
4108 }
4109
4110 /* The end of a template parameter list has been reached. Process the
4111 tree list into a parameter vector, converting each parameter into a more
4112 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4113 as PARM_DECLs. */
4114
4115 tree
4116 end_template_parm_list (tree parms)
4117 {
4118 int nparms;
4119 tree parm, next;
4120 tree saved_parmlist = make_tree_vec (list_length (parms));
4121
4122 /* Pop the dummy parameter level and add the real one. */
4123 current_template_parms = TREE_CHAIN (current_template_parms);
4124
4125 current_template_parms
4126 = tree_cons (size_int (processing_template_decl),
4127 saved_parmlist, current_template_parms);
4128
4129 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4130 {
4131 next = TREE_CHAIN (parm);
4132 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4133 TREE_CHAIN (parm) = NULL_TREE;
4134 }
4135
4136 --processing_template_parmlist;
4137
4138 return saved_parmlist;
4139 }
4140
4141 // Explicitly indicate the end of the template parameter list. We assume
4142 // that the current template parameters have been constructed and/or
4143 // managed explicitly, as when creating new template template parameters
4144 // from a shorthand constraint.
4145 void
4146 end_template_parm_list ()
4147 {
4148 --processing_template_parmlist;
4149 }
4150
4151 /* end_template_decl is called after a template declaration is seen. */
4152
4153 void
4154 end_template_decl (void)
4155 {
4156 reset_specialization ();
4157
4158 if (! processing_template_decl)
4159 return;
4160
4161 /* This matches the pushlevel in begin_template_parm_list. */
4162 finish_scope ();
4163
4164 --processing_template_decl;
4165 current_template_parms = TREE_CHAIN (current_template_parms);
4166 }
4167
4168 /* Takes a TREE_LIST representing a template parameter and convert it
4169 into an argument suitable to be passed to the type substitution
4170 functions. Note that If the TREE_LIST contains an error_mark
4171 node, the returned argument is error_mark_node. */
4172
4173 tree
4174 template_parm_to_arg (tree t)
4175 {
4176
4177 if (t == NULL_TREE
4178 || TREE_CODE (t) != TREE_LIST)
4179 return t;
4180
4181 if (error_operand_p (TREE_VALUE (t)))
4182 return error_mark_node;
4183
4184 t = TREE_VALUE (t);
4185
4186 if (TREE_CODE (t) == TYPE_DECL
4187 || TREE_CODE (t) == TEMPLATE_DECL)
4188 {
4189 t = TREE_TYPE (t);
4190
4191 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4192 {
4193 /* Turn this argument into a TYPE_ARGUMENT_PACK
4194 with a single element, which expands T. */
4195 tree vec = make_tree_vec (1);
4196 if (CHECKING_P)
4197 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4198
4199 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4200
4201 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4202 SET_ARGUMENT_PACK_ARGS (t, vec);
4203 }
4204 }
4205 else
4206 {
4207 t = DECL_INITIAL (t);
4208
4209 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4210 {
4211 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4212 with a single element, which expands T. */
4213 tree vec = make_tree_vec (1);
4214 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4215 if (CHECKING_P)
4216 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4217
4218 t = convert_from_reference (t);
4219 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4220
4221 t = make_node (NONTYPE_ARGUMENT_PACK);
4222 SET_ARGUMENT_PACK_ARGS (t, vec);
4223 TREE_TYPE (t) = type;
4224 }
4225 else
4226 t = convert_from_reference (t);
4227 }
4228 return t;
4229 }
4230
4231 /* Given a set of template parameters, return them as a set of template
4232 arguments. The template parameters are represented as a TREE_VEC, in
4233 the form documented in cp-tree.h for template arguments. */
4234
4235 static tree
4236 template_parms_to_args (tree parms)
4237 {
4238 tree header;
4239 tree args = NULL_TREE;
4240 int length = TMPL_PARMS_DEPTH (parms);
4241 int l = length;
4242
4243 /* If there is only one level of template parameters, we do not
4244 create a TREE_VEC of TREE_VECs. Instead, we return a single
4245 TREE_VEC containing the arguments. */
4246 if (length > 1)
4247 args = make_tree_vec (length);
4248
4249 for (header = parms; header; header = TREE_CHAIN (header))
4250 {
4251 tree a = copy_node (TREE_VALUE (header));
4252 int i;
4253
4254 TREE_TYPE (a) = NULL_TREE;
4255 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4256 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4257
4258 if (CHECKING_P)
4259 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4260
4261 if (length > 1)
4262 TREE_VEC_ELT (args, --l) = a;
4263 else
4264 args = a;
4265 }
4266
4267 return args;
4268 }
4269
4270 /* Within the declaration of a template, return the currently active
4271 template parameters as an argument TREE_VEC. */
4272
4273 static tree
4274 current_template_args (void)
4275 {
4276 return template_parms_to_args (current_template_parms);
4277 }
4278
4279 /* Update the declared TYPE by doing any lookups which were thought to be
4280 dependent, but are not now that we know the SCOPE of the declarator. */
4281
4282 tree
4283 maybe_update_decl_type (tree orig_type, tree scope)
4284 {
4285 tree type = orig_type;
4286
4287 if (type == NULL_TREE)
4288 return type;
4289
4290 if (TREE_CODE (orig_type) == TYPE_DECL)
4291 type = TREE_TYPE (type);
4292
4293 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4294 && dependent_type_p (type)
4295 /* Don't bother building up the args in this case. */
4296 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4297 {
4298 /* tsubst in the args corresponding to the template parameters,
4299 including auto if present. Most things will be unchanged, but
4300 make_typename_type and tsubst_qualified_id will resolve
4301 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4302 tree args = current_template_args ();
4303 tree auto_node = type_uses_auto (type);
4304 tree pushed;
4305 if (auto_node)
4306 {
4307 tree auto_vec = make_tree_vec (1);
4308 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4309 args = add_to_template_args (args, auto_vec);
4310 }
4311 pushed = push_scope (scope);
4312 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4313 if (pushed)
4314 pop_scope (scope);
4315 }
4316
4317 if (type == error_mark_node)
4318 return orig_type;
4319
4320 if (TREE_CODE (orig_type) == TYPE_DECL)
4321 {
4322 if (same_type_p (type, TREE_TYPE (orig_type)))
4323 type = orig_type;
4324 else
4325 type = TYPE_NAME (type);
4326 }
4327 return type;
4328 }
4329
4330 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4331 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4332 the new template is a member template. */
4333
4334 tree
4335 build_template_decl (tree decl, tree parms, bool member_template_p)
4336 {
4337 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4338 DECL_TEMPLATE_PARMS (tmpl) = parms;
4339 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4340 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4341 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4342
4343 return tmpl;
4344 }
4345
4346 struct template_parm_data
4347 {
4348 /* The level of the template parameters we are currently
4349 processing. */
4350 int level;
4351
4352 /* The index of the specialization argument we are currently
4353 processing. */
4354 int current_arg;
4355
4356 /* An array whose size is the number of template parameters. The
4357 elements are nonzero if the parameter has been used in any one
4358 of the arguments processed so far. */
4359 int* parms;
4360
4361 /* An array whose size is the number of template arguments. The
4362 elements are nonzero if the argument makes use of template
4363 parameters of this level. */
4364 int* arg_uses_template_parms;
4365 };
4366
4367 /* Subroutine of push_template_decl used to see if each template
4368 parameter in a partial specialization is used in the explicit
4369 argument list. If T is of the LEVEL given in DATA (which is
4370 treated as a template_parm_data*), then DATA->PARMS is marked
4371 appropriately. */
4372
4373 static int
4374 mark_template_parm (tree t, void* data)
4375 {
4376 int level;
4377 int idx;
4378 struct template_parm_data* tpd = (struct template_parm_data*) data;
4379
4380 template_parm_level_and_index (t, &level, &idx);
4381
4382 if (level == tpd->level)
4383 {
4384 tpd->parms[idx] = 1;
4385 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4386 }
4387
4388 /* Return zero so that for_each_template_parm will continue the
4389 traversal of the tree; we want to mark *every* template parm. */
4390 return 0;
4391 }
4392
4393 /* Process the partial specialization DECL. */
4394
4395 static tree
4396 process_partial_specialization (tree decl)
4397 {
4398 tree type = TREE_TYPE (decl);
4399 tree tinfo = get_template_info (decl);
4400 tree maintmpl = TI_TEMPLATE (tinfo);
4401 tree specargs = TI_ARGS (tinfo);
4402 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4403 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4404 tree inner_parms;
4405 tree inst;
4406 int nargs = TREE_VEC_LENGTH (inner_args);
4407 int ntparms;
4408 int i;
4409 bool did_error_intro = false;
4410 struct template_parm_data tpd;
4411 struct template_parm_data tpd2;
4412
4413 gcc_assert (current_template_parms);
4414
4415 /* A concept cannot be specialized. */
4416 if (flag_concepts && variable_concept_p (maintmpl))
4417 {
4418 error ("specialization of variable concept %q#D", maintmpl);
4419 return error_mark_node;
4420 }
4421
4422 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4423 ntparms = TREE_VEC_LENGTH (inner_parms);
4424
4425 /* We check that each of the template parameters given in the
4426 partial specialization is used in the argument list to the
4427 specialization. For example:
4428
4429 template <class T> struct S;
4430 template <class T> struct S<T*>;
4431
4432 The second declaration is OK because `T*' uses the template
4433 parameter T, whereas
4434
4435 template <class T> struct S<int>;
4436
4437 is no good. Even trickier is:
4438
4439 template <class T>
4440 struct S1
4441 {
4442 template <class U>
4443 struct S2;
4444 template <class U>
4445 struct S2<T>;
4446 };
4447
4448 The S2<T> declaration is actually invalid; it is a
4449 full-specialization. Of course,
4450
4451 template <class U>
4452 struct S2<T (*)(U)>;
4453
4454 or some such would have been OK. */
4455 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4456 tpd.parms = XALLOCAVEC (int, ntparms);
4457 memset (tpd.parms, 0, sizeof (int) * ntparms);
4458
4459 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4460 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4461 for (i = 0; i < nargs; ++i)
4462 {
4463 tpd.current_arg = i;
4464 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4465 &mark_template_parm,
4466 &tpd,
4467 NULL,
4468 /*include_nondeduced_p=*/false);
4469 }
4470 for (i = 0; i < ntparms; ++i)
4471 if (tpd.parms[i] == 0)
4472 {
4473 /* One of the template parms was not used in a deduced context in the
4474 specialization. */
4475 if (!did_error_intro)
4476 {
4477 error ("template parameters not deducible in "
4478 "partial specialization:");
4479 did_error_intro = true;
4480 }
4481
4482 inform (input_location, " %qD",
4483 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4484 }
4485
4486 if (did_error_intro)
4487 return error_mark_node;
4488
4489 /* [temp.class.spec]
4490
4491 The argument list of the specialization shall not be identical to
4492 the implicit argument list of the primary template. */
4493 tree main_args
4494 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4495 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4496 && (!flag_concepts
4497 || !subsumes_constraints (current_template_constraints (),
4498 get_constraints (maintmpl))))
4499 {
4500 if (!flag_concepts)
4501 error ("partial specialization %q+D does not specialize "
4502 "any template arguments", decl);
4503 else
4504 error ("partial specialization %q+D does not specialize any "
4505 "template arguments and is not more constrained than", decl);
4506 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4507 }
4508
4509 /* A partial specialization that replaces multiple parameters of the
4510 primary template with a pack expansion is less specialized for those
4511 parameters. */
4512 if (nargs < DECL_NTPARMS (maintmpl))
4513 {
4514 error ("partial specialization is not more specialized than the "
4515 "primary template because it replaces multiple parameters "
4516 "with a pack expansion");
4517 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4518 return decl;
4519 }
4520
4521 /* [temp.class.spec]
4522
4523 A partially specialized non-type argument expression shall not
4524 involve template parameters of the partial specialization except
4525 when the argument expression is a simple identifier.
4526
4527 The type of a template parameter corresponding to a specialized
4528 non-type argument shall not be dependent on a parameter of the
4529 specialization.
4530
4531 Also, we verify that pack expansions only occur at the
4532 end of the argument list. */
4533 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4534 tpd2.parms = 0;
4535 for (i = 0; i < nargs; ++i)
4536 {
4537 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4538 tree arg = TREE_VEC_ELT (inner_args, i);
4539 tree packed_args = NULL_TREE;
4540 int j, len = 1;
4541
4542 if (ARGUMENT_PACK_P (arg))
4543 {
4544 /* Extract the arguments from the argument pack. We'll be
4545 iterating over these in the following loop. */
4546 packed_args = ARGUMENT_PACK_ARGS (arg);
4547 len = TREE_VEC_LENGTH (packed_args);
4548 }
4549
4550 for (j = 0; j < len; j++)
4551 {
4552 if (packed_args)
4553 /* Get the Jth argument in the parameter pack. */
4554 arg = TREE_VEC_ELT (packed_args, j);
4555
4556 if (PACK_EXPANSION_P (arg))
4557 {
4558 /* Pack expansions must come at the end of the
4559 argument list. */
4560 if ((packed_args && j < len - 1)
4561 || (!packed_args && i < nargs - 1))
4562 {
4563 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4564 error ("parameter pack argument %qE must be at the "
4565 "end of the template argument list", arg);
4566 else
4567 error ("parameter pack argument %qT must be at the "
4568 "end of the template argument list", arg);
4569 }
4570 }
4571
4572 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4573 /* We only care about the pattern. */
4574 arg = PACK_EXPANSION_PATTERN (arg);
4575
4576 if (/* These first two lines are the `non-type' bit. */
4577 !TYPE_P (arg)
4578 && TREE_CODE (arg) != TEMPLATE_DECL
4579 /* This next two lines are the `argument expression is not just a
4580 simple identifier' condition and also the `specialized
4581 non-type argument' bit. */
4582 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4583 && !(REFERENCE_REF_P (arg)
4584 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4585 {
4586 if ((!packed_args && tpd.arg_uses_template_parms[i])
4587 || (packed_args && uses_template_parms (arg)))
4588 error ("template argument %qE involves template parameter(s)",
4589 arg);
4590 else
4591 {
4592 /* Look at the corresponding template parameter,
4593 marking which template parameters its type depends
4594 upon. */
4595 tree type = TREE_TYPE (parm);
4596
4597 if (!tpd2.parms)
4598 {
4599 /* We haven't yet initialized TPD2. Do so now. */
4600 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4601 /* The number of parameters here is the number in the
4602 main template, which, as checked in the assertion
4603 above, is NARGS. */
4604 tpd2.parms = XALLOCAVEC (int, nargs);
4605 tpd2.level =
4606 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4607 }
4608
4609 /* Mark the template parameters. But this time, we're
4610 looking for the template parameters of the main
4611 template, not in the specialization. */
4612 tpd2.current_arg = i;
4613 tpd2.arg_uses_template_parms[i] = 0;
4614 memset (tpd2.parms, 0, sizeof (int) * nargs);
4615 for_each_template_parm (type,
4616 &mark_template_parm,
4617 &tpd2,
4618 NULL,
4619 /*include_nondeduced_p=*/false);
4620
4621 if (tpd2.arg_uses_template_parms [i])
4622 {
4623 /* The type depended on some template parameters.
4624 If they are fully specialized in the
4625 specialization, that's OK. */
4626 int j;
4627 int count = 0;
4628 for (j = 0; j < nargs; ++j)
4629 if (tpd2.parms[j] != 0
4630 && tpd.arg_uses_template_parms [j])
4631 ++count;
4632 if (count != 0)
4633 error_n (input_location, count,
4634 "type %qT of template argument %qE depends "
4635 "on a template parameter",
4636 "type %qT of template argument %qE depends "
4637 "on template parameters",
4638 type,
4639 arg);
4640 }
4641 }
4642 }
4643 }
4644 }
4645
4646 /* We should only get here once. */
4647 if (TREE_CODE (decl) == TYPE_DECL)
4648 gcc_assert (!COMPLETE_TYPE_P (type));
4649
4650 // Build the template decl.
4651 tree tmpl = build_template_decl (decl, current_template_parms,
4652 DECL_MEMBER_TEMPLATE_P (maintmpl));
4653 TREE_TYPE (tmpl) = type;
4654 DECL_TEMPLATE_RESULT (tmpl) = decl;
4655 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4656 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4657 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4658
4659 if (VAR_P (decl))
4660 /* We didn't register this in check_explicit_specialization so we could
4661 wait until the constraints were set. */
4662 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4663 else
4664 associate_classtype_constraints (type);
4665
4666 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4667 = tree_cons (specargs, tmpl,
4668 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4669 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4670
4671 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4672 inst = TREE_CHAIN (inst))
4673 {
4674 tree instance = TREE_VALUE (inst);
4675 if (TYPE_P (instance)
4676 ? (COMPLETE_TYPE_P (instance)
4677 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4678 : DECL_TEMPLATE_INSTANTIATION (instance))
4679 {
4680 tree spec = most_specialized_partial_spec (instance, tf_none);
4681 tree inst_decl = (DECL_P (instance)
4682 ? instance : TYPE_NAME (instance));
4683 if (!spec)
4684 /* OK */;
4685 else if (spec == error_mark_node)
4686 permerror (input_location,
4687 "declaration of %qD ambiguates earlier template "
4688 "instantiation for %qD", decl, inst_decl);
4689 else if (TREE_VALUE (spec) == tmpl)
4690 permerror (input_location,
4691 "partial specialization of %qD after instantiation "
4692 "of %qD", decl, inst_decl);
4693 }
4694 }
4695
4696 return decl;
4697 }
4698
4699 /* PARM is a template parameter of some form; return the corresponding
4700 TEMPLATE_PARM_INDEX. */
4701
4702 static tree
4703 get_template_parm_index (tree parm)
4704 {
4705 if (TREE_CODE (parm) == PARM_DECL
4706 || TREE_CODE (parm) == CONST_DECL)
4707 parm = DECL_INITIAL (parm);
4708 else if (TREE_CODE (parm) == TYPE_DECL
4709 || TREE_CODE (parm) == TEMPLATE_DECL)
4710 parm = TREE_TYPE (parm);
4711 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4712 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4713 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4714 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4715 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4716 return parm;
4717 }
4718
4719 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4720 parameter packs used by the template parameter PARM. */
4721
4722 static void
4723 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4724 {
4725 /* A type parm can't refer to another parm. */
4726 if (TREE_CODE (parm) == TYPE_DECL)
4727 return;
4728 else if (TREE_CODE (parm) == PARM_DECL)
4729 {
4730 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4731 ppd, ppd->visited);
4732 return;
4733 }
4734
4735 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4736
4737 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4738 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4739 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4740 }
4741
4742 /* PARM is a template parameter pack. Return any parameter packs used in
4743 its type or the type of any of its template parameters. If there are
4744 any such packs, it will be instantiated into a fixed template parameter
4745 list by partial instantiation rather than be fully deduced. */
4746
4747 tree
4748 fixed_parameter_pack_p (tree parm)
4749 {
4750 /* This can only be true in a member template. */
4751 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4752 return NULL_TREE;
4753 /* This can only be true for a parameter pack. */
4754 if (!template_parameter_pack_p (parm))
4755 return NULL_TREE;
4756 /* A type parm can't refer to another parm. */
4757 if (TREE_CODE (parm) == TYPE_DECL)
4758 return NULL_TREE;
4759
4760 tree parameter_packs = NULL_TREE;
4761 struct find_parameter_pack_data ppd;
4762 ppd.parameter_packs = &parameter_packs;
4763 ppd.visited = new hash_set<tree>;
4764 ppd.type_pack_expansion_p = false;
4765
4766 fixed_parameter_pack_p_1 (parm, &ppd);
4767
4768 delete ppd.visited;
4769 return parameter_packs;
4770 }
4771
4772 /* Check that a template declaration's use of default arguments and
4773 parameter packs is not invalid. Here, PARMS are the template
4774 parameters. IS_PRIMARY is true if DECL is the thing declared by
4775 a primary template. IS_PARTIAL is true if DECL is a partial
4776 specialization.
4777
4778 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4779 declaration (but not a definition); 1 indicates a declaration, 2
4780 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4781 emitted for extraneous default arguments.
4782
4783 Returns TRUE if there were no errors found, FALSE otherwise. */
4784
4785 bool
4786 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4787 bool is_partial, int is_friend_decl)
4788 {
4789 const char *msg;
4790 int last_level_to_check;
4791 tree parm_level;
4792 bool no_errors = true;
4793
4794 /* [temp.param]
4795
4796 A default template-argument shall not be specified in a
4797 function template declaration or a function template definition, nor
4798 in the template-parameter-list of the definition of a member of a
4799 class template. */
4800
4801 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4802 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4803 /* You can't have a function template declaration in a local
4804 scope, nor you can you define a member of a class template in a
4805 local scope. */
4806 return true;
4807
4808 if ((TREE_CODE (decl) == TYPE_DECL
4809 && TREE_TYPE (decl)
4810 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4811 || (TREE_CODE (decl) == FUNCTION_DECL
4812 && LAMBDA_FUNCTION_P (decl)))
4813 /* A lambda doesn't have an explicit declaration; don't complain
4814 about the parms of the enclosing class. */
4815 return true;
4816
4817 if (current_class_type
4818 && !TYPE_BEING_DEFINED (current_class_type)
4819 && DECL_LANG_SPECIFIC (decl)
4820 && DECL_DECLARES_FUNCTION_P (decl)
4821 /* If this is either a friend defined in the scope of the class
4822 or a member function. */
4823 && (DECL_FUNCTION_MEMBER_P (decl)
4824 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4825 : DECL_FRIEND_CONTEXT (decl)
4826 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4827 : false)
4828 /* And, if it was a member function, it really was defined in
4829 the scope of the class. */
4830 && (!DECL_FUNCTION_MEMBER_P (decl)
4831 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4832 /* We already checked these parameters when the template was
4833 declared, so there's no need to do it again now. This function
4834 was defined in class scope, but we're processing its body now
4835 that the class is complete. */
4836 return true;
4837
4838 /* Core issue 226 (C++0x only): the following only applies to class
4839 templates. */
4840 if (is_primary
4841 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4842 {
4843 /* [temp.param]
4844
4845 If a template-parameter has a default template-argument, all
4846 subsequent template-parameters shall have a default
4847 template-argument supplied. */
4848 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4849 {
4850 tree inner_parms = TREE_VALUE (parm_level);
4851 int ntparms = TREE_VEC_LENGTH (inner_parms);
4852 int seen_def_arg_p = 0;
4853 int i;
4854
4855 for (i = 0; i < ntparms; ++i)
4856 {
4857 tree parm = TREE_VEC_ELT (inner_parms, i);
4858
4859 if (parm == error_mark_node)
4860 continue;
4861
4862 if (TREE_PURPOSE (parm))
4863 seen_def_arg_p = 1;
4864 else if (seen_def_arg_p
4865 && !template_parameter_pack_p (TREE_VALUE (parm)))
4866 {
4867 error ("no default argument for %qD", TREE_VALUE (parm));
4868 /* For better subsequent error-recovery, we indicate that
4869 there should have been a default argument. */
4870 TREE_PURPOSE (parm) = error_mark_node;
4871 no_errors = false;
4872 }
4873 else if (!is_partial
4874 && !is_friend_decl
4875 /* Don't complain about an enclosing partial
4876 specialization. */
4877 && parm_level == parms
4878 && TREE_CODE (decl) == TYPE_DECL
4879 && i < ntparms - 1
4880 && template_parameter_pack_p (TREE_VALUE (parm))
4881 /* A fixed parameter pack will be partially
4882 instantiated into a fixed length list. */
4883 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4884 {
4885 /* A primary class template can only have one
4886 parameter pack, at the end of the template
4887 parameter list. */
4888
4889 error ("parameter pack %q+D must be at the end of the"
4890 " template parameter list", TREE_VALUE (parm));
4891
4892 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4893 = error_mark_node;
4894 no_errors = false;
4895 }
4896 }
4897 }
4898 }
4899
4900 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4901 || is_partial
4902 || !is_primary
4903 || is_friend_decl)
4904 /* For an ordinary class template, default template arguments are
4905 allowed at the innermost level, e.g.:
4906 template <class T = int>
4907 struct S {};
4908 but, in a partial specialization, they're not allowed even
4909 there, as we have in [temp.class.spec]:
4910
4911 The template parameter list of a specialization shall not
4912 contain default template argument values.
4913
4914 So, for a partial specialization, or for a function template
4915 (in C++98/C++03), we look at all of them. */
4916 ;
4917 else
4918 /* But, for a primary class template that is not a partial
4919 specialization we look at all template parameters except the
4920 innermost ones. */
4921 parms = TREE_CHAIN (parms);
4922
4923 /* Figure out what error message to issue. */
4924 if (is_friend_decl == 2)
4925 msg = G_("default template arguments may not be used in function template "
4926 "friend re-declaration");
4927 else if (is_friend_decl)
4928 msg = G_("default template arguments may not be used in function template "
4929 "friend declarations");
4930 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4931 msg = G_("default template arguments may not be used in function templates "
4932 "without -std=c++11 or -std=gnu++11");
4933 else if (is_partial)
4934 msg = G_("default template arguments may not be used in "
4935 "partial specializations");
4936 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4937 msg = G_("default argument for template parameter for class enclosing %qD");
4938 else
4939 /* Per [temp.param]/9, "A default template-argument shall not be
4940 specified in the template-parameter-lists of the definition of
4941 a member of a class template that appears outside of the member's
4942 class.", thus if we aren't handling a member of a class template
4943 there is no need to examine the parameters. */
4944 return true;
4945
4946 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4947 /* If we're inside a class definition, there's no need to
4948 examine the parameters to the class itself. On the one
4949 hand, they will be checked when the class is defined, and,
4950 on the other, default arguments are valid in things like:
4951 template <class T = double>
4952 struct S { template <class U> void f(U); };
4953 Here the default argument for `S' has no bearing on the
4954 declaration of `f'. */
4955 last_level_to_check = template_class_depth (current_class_type) + 1;
4956 else
4957 /* Check everything. */
4958 last_level_to_check = 0;
4959
4960 for (parm_level = parms;
4961 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4962 parm_level = TREE_CHAIN (parm_level))
4963 {
4964 tree inner_parms = TREE_VALUE (parm_level);
4965 int i;
4966 int ntparms;
4967
4968 ntparms = TREE_VEC_LENGTH (inner_parms);
4969 for (i = 0; i < ntparms; ++i)
4970 {
4971 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4972 continue;
4973
4974 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4975 {
4976 if (msg)
4977 {
4978 no_errors = false;
4979 if (is_friend_decl == 2)
4980 return no_errors;
4981
4982 error (msg, decl);
4983 msg = 0;
4984 }
4985
4986 /* Clear out the default argument so that we are not
4987 confused later. */
4988 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4989 }
4990 }
4991
4992 /* At this point, if we're still interested in issuing messages,
4993 they must apply to classes surrounding the object declared. */
4994 if (msg)
4995 msg = G_("default argument for template parameter for class "
4996 "enclosing %qD");
4997 }
4998
4999 return no_errors;
5000 }
5001
5002 /* Worker for push_template_decl_real, called via
5003 for_each_template_parm. DATA is really an int, indicating the
5004 level of the parameters we are interested in. If T is a template
5005 parameter of that level, return nonzero. */
5006
5007 static int
5008 template_parm_this_level_p (tree t, void* data)
5009 {
5010 int this_level = *(int *)data;
5011 int level;
5012
5013 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5014 level = TEMPLATE_PARM_LEVEL (t);
5015 else
5016 level = TEMPLATE_TYPE_LEVEL (t);
5017 return level == this_level;
5018 }
5019
5020 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5021 parameters given by current_template_args, or reuses a
5022 previously existing one, if appropriate. Returns the DECL, or an
5023 equivalent one, if it is replaced via a call to duplicate_decls.
5024
5025 If IS_FRIEND is true, DECL is a friend declaration. */
5026
5027 tree
5028 push_template_decl_real (tree decl, bool is_friend)
5029 {
5030 tree tmpl;
5031 tree args;
5032 tree info;
5033 tree ctx;
5034 bool is_primary;
5035 bool is_partial;
5036 int new_template_p = 0;
5037 /* True if the template is a member template, in the sense of
5038 [temp.mem]. */
5039 bool member_template_p = false;
5040
5041 if (decl == error_mark_node || !current_template_parms)
5042 return error_mark_node;
5043
5044 /* See if this is a partial specialization. */
5045 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5046 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5047 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5048 || (VAR_P (decl)
5049 && DECL_LANG_SPECIFIC (decl)
5050 && DECL_TEMPLATE_SPECIALIZATION (decl)
5051 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5052
5053 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5054 is_friend = true;
5055
5056 if (is_friend)
5057 /* For a friend, we want the context of the friend function, not
5058 the type of which it is a friend. */
5059 ctx = CP_DECL_CONTEXT (decl);
5060 else if (CP_DECL_CONTEXT (decl)
5061 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5062 /* In the case of a virtual function, we want the class in which
5063 it is defined. */
5064 ctx = CP_DECL_CONTEXT (decl);
5065 else
5066 /* Otherwise, if we're currently defining some class, the DECL
5067 is assumed to be a member of the class. */
5068 ctx = current_scope ();
5069
5070 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5071 ctx = NULL_TREE;
5072
5073 if (!DECL_CONTEXT (decl))
5074 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5075
5076 /* See if this is a primary template. */
5077 if (is_friend && ctx
5078 && uses_template_parms_level (ctx, processing_template_decl))
5079 /* A friend template that specifies a class context, i.e.
5080 template <typename T> friend void A<T>::f();
5081 is not primary. */
5082 is_primary = false;
5083 else if (TREE_CODE (decl) == TYPE_DECL
5084 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5085 is_primary = false;
5086 else
5087 is_primary = template_parm_scope_p ();
5088
5089 if (is_primary)
5090 {
5091 warning (OPT_Wtemplates, "template %qD declared", decl);
5092
5093 if (DECL_CLASS_SCOPE_P (decl))
5094 member_template_p = true;
5095 if (TREE_CODE (decl) == TYPE_DECL
5096 && anon_aggrname_p (DECL_NAME (decl)))
5097 {
5098 error ("template class without a name");
5099 return error_mark_node;
5100 }
5101 else if (TREE_CODE (decl) == FUNCTION_DECL)
5102 {
5103 if (member_template_p)
5104 {
5105 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5106 error ("member template %qD may not have virt-specifiers", decl);
5107 }
5108 if (DECL_DESTRUCTOR_P (decl))
5109 {
5110 /* [temp.mem]
5111
5112 A destructor shall not be a member template. */
5113 error ("destructor %qD declared as member template", decl);
5114 return error_mark_node;
5115 }
5116 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5117 && (!prototype_p (TREE_TYPE (decl))
5118 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5119 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5120 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5121 == void_list_node)))
5122 {
5123 /* [basic.stc.dynamic.allocation]
5124
5125 An allocation function can be a function
5126 template. ... Template allocation functions shall
5127 have two or more parameters. */
5128 error ("invalid template declaration of %qD", decl);
5129 return error_mark_node;
5130 }
5131 }
5132 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5133 && CLASS_TYPE_P (TREE_TYPE (decl)))
5134 /* OK */;
5135 else if (TREE_CODE (decl) == TYPE_DECL
5136 && TYPE_DECL_ALIAS_P (decl))
5137 /* alias-declaration */
5138 gcc_assert (!DECL_ARTIFICIAL (decl));
5139 else if (VAR_P (decl))
5140 /* C++14 variable template. */;
5141 else
5142 {
5143 error ("template declaration of %q#D", decl);
5144 return error_mark_node;
5145 }
5146 }
5147
5148 /* Check to see that the rules regarding the use of default
5149 arguments are not being violated. */
5150 check_default_tmpl_args (decl, current_template_parms,
5151 is_primary, is_partial, /*is_friend_decl=*/0);
5152
5153 /* Ensure that there are no parameter packs in the type of this
5154 declaration that have not been expanded. */
5155 if (TREE_CODE (decl) == FUNCTION_DECL)
5156 {
5157 /* Check each of the arguments individually to see if there are
5158 any bare parameter packs. */
5159 tree type = TREE_TYPE (decl);
5160 tree arg = DECL_ARGUMENTS (decl);
5161 tree argtype = TYPE_ARG_TYPES (type);
5162
5163 while (arg && argtype)
5164 {
5165 if (!DECL_PACK_P (arg)
5166 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5167 {
5168 /* This is a PARM_DECL that contains unexpanded parameter
5169 packs. We have already complained about this in the
5170 check_for_bare_parameter_packs call, so just replace
5171 these types with ERROR_MARK_NODE. */
5172 TREE_TYPE (arg) = error_mark_node;
5173 TREE_VALUE (argtype) = error_mark_node;
5174 }
5175
5176 arg = DECL_CHAIN (arg);
5177 argtype = TREE_CHAIN (argtype);
5178 }
5179
5180 /* Check for bare parameter packs in the return type and the
5181 exception specifiers. */
5182 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5183 /* Errors were already issued, set return type to int
5184 as the frontend doesn't expect error_mark_node as
5185 the return type. */
5186 TREE_TYPE (type) = integer_type_node;
5187 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5188 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5189 }
5190 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5191 && TYPE_DECL_ALIAS_P (decl))
5192 ? DECL_ORIGINAL_TYPE (decl)
5193 : TREE_TYPE (decl)))
5194 {
5195 TREE_TYPE (decl) = error_mark_node;
5196 return error_mark_node;
5197 }
5198
5199 if (is_partial)
5200 return process_partial_specialization (decl);
5201
5202 args = current_template_args ();
5203
5204 if (!ctx
5205 || TREE_CODE (ctx) == FUNCTION_DECL
5206 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5207 || (TREE_CODE (decl) == TYPE_DECL
5208 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5209 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5210 {
5211 if (DECL_LANG_SPECIFIC (decl)
5212 && DECL_TEMPLATE_INFO (decl)
5213 && DECL_TI_TEMPLATE (decl))
5214 tmpl = DECL_TI_TEMPLATE (decl);
5215 /* If DECL is a TYPE_DECL for a class-template, then there won't
5216 be DECL_LANG_SPECIFIC. The information equivalent to
5217 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5218 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5219 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5220 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5221 {
5222 /* Since a template declaration already existed for this
5223 class-type, we must be redeclaring it here. Make sure
5224 that the redeclaration is valid. */
5225 redeclare_class_template (TREE_TYPE (decl),
5226 current_template_parms,
5227 current_template_constraints ());
5228 /* We don't need to create a new TEMPLATE_DECL; just use the
5229 one we already had. */
5230 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5231 }
5232 else
5233 {
5234 tmpl = build_template_decl (decl, current_template_parms,
5235 member_template_p);
5236 new_template_p = 1;
5237
5238 if (DECL_LANG_SPECIFIC (decl)
5239 && DECL_TEMPLATE_SPECIALIZATION (decl))
5240 {
5241 /* A specialization of a member template of a template
5242 class. */
5243 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5244 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5245 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5246 }
5247 }
5248 }
5249 else
5250 {
5251 tree a, t, current, parms;
5252 int i;
5253 tree tinfo = get_template_info (decl);
5254
5255 if (!tinfo)
5256 {
5257 error ("template definition of non-template %q#D", decl);
5258 return error_mark_node;
5259 }
5260
5261 tmpl = TI_TEMPLATE (tinfo);
5262
5263 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5264 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5265 && DECL_TEMPLATE_SPECIALIZATION (decl)
5266 && DECL_MEMBER_TEMPLATE_P (tmpl))
5267 {
5268 tree new_tmpl;
5269
5270 /* The declaration is a specialization of a member
5271 template, declared outside the class. Therefore, the
5272 innermost template arguments will be NULL, so we
5273 replace them with the arguments determined by the
5274 earlier call to check_explicit_specialization. */
5275 args = DECL_TI_ARGS (decl);
5276
5277 new_tmpl
5278 = build_template_decl (decl, current_template_parms,
5279 member_template_p);
5280 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5281 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5282 DECL_TI_TEMPLATE (decl) = new_tmpl;
5283 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5284 DECL_TEMPLATE_INFO (new_tmpl)
5285 = build_template_info (tmpl, args);
5286
5287 register_specialization (new_tmpl,
5288 most_general_template (tmpl),
5289 args,
5290 is_friend, 0);
5291 return decl;
5292 }
5293
5294 /* Make sure the template headers we got make sense. */
5295
5296 parms = DECL_TEMPLATE_PARMS (tmpl);
5297 i = TMPL_PARMS_DEPTH (parms);
5298 if (TMPL_ARGS_DEPTH (args) != i)
5299 {
5300 error ("expected %d levels of template parms for %q#D, got %d",
5301 i, decl, TMPL_ARGS_DEPTH (args));
5302 DECL_INTERFACE_KNOWN (decl) = 1;
5303 return error_mark_node;
5304 }
5305 else
5306 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5307 {
5308 a = TMPL_ARGS_LEVEL (args, i);
5309 t = INNERMOST_TEMPLATE_PARMS (parms);
5310
5311 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5312 {
5313 if (current == decl)
5314 error ("got %d template parameters for %q#D",
5315 TREE_VEC_LENGTH (a), decl);
5316 else
5317 error ("got %d template parameters for %q#T",
5318 TREE_VEC_LENGTH (a), current);
5319 error (" but %d required", TREE_VEC_LENGTH (t));
5320 /* Avoid crash in import_export_decl. */
5321 DECL_INTERFACE_KNOWN (decl) = 1;
5322 return error_mark_node;
5323 }
5324
5325 if (current == decl)
5326 current = ctx;
5327 else if (current == NULL_TREE)
5328 /* Can happen in erroneous input. */
5329 break;
5330 else
5331 current = get_containing_scope (current);
5332 }
5333
5334 /* Check that the parms are used in the appropriate qualifying scopes
5335 in the declarator. */
5336 if (!comp_template_args
5337 (TI_ARGS (tinfo),
5338 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5339 {
5340 error ("\
5341 template arguments to %qD do not match original template %qD",
5342 decl, DECL_TEMPLATE_RESULT (tmpl));
5343 if (!uses_template_parms (TI_ARGS (tinfo)))
5344 inform (input_location, "use template<> for an explicit specialization");
5345 /* Avoid crash in import_export_decl. */
5346 DECL_INTERFACE_KNOWN (decl) = 1;
5347 return error_mark_node;
5348 }
5349 }
5350
5351 DECL_TEMPLATE_RESULT (tmpl) = decl;
5352 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5353
5354 /* Push template declarations for global functions and types. Note
5355 that we do not try to push a global template friend declared in a
5356 template class; such a thing may well depend on the template
5357 parameters of the class. */
5358 if (new_template_p && !ctx
5359 && !(is_friend && template_class_depth (current_class_type) > 0))
5360 {
5361 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5362 if (tmpl == error_mark_node)
5363 return error_mark_node;
5364
5365 /* Hide template friend classes that haven't been declared yet. */
5366 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5367 {
5368 DECL_ANTICIPATED (tmpl) = 1;
5369 DECL_FRIEND_P (tmpl) = 1;
5370 }
5371 }
5372
5373 if (is_primary)
5374 {
5375 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5376 int i;
5377
5378 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5379 if (DECL_CONV_FN_P (tmpl))
5380 {
5381 int depth = TMPL_PARMS_DEPTH (parms);
5382
5383 /* It is a conversion operator. See if the type converted to
5384 depends on innermost template operands. */
5385
5386 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5387 depth))
5388 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5389 }
5390
5391 /* Give template template parms a DECL_CONTEXT of the template
5392 for which they are a parameter. */
5393 parms = INNERMOST_TEMPLATE_PARMS (parms);
5394 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5395 {
5396 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5397 if (TREE_CODE (parm) == TEMPLATE_DECL)
5398 DECL_CONTEXT (parm) = tmpl;
5399 }
5400
5401 if (TREE_CODE (decl) == TYPE_DECL
5402 && TYPE_DECL_ALIAS_P (decl)
5403 && complex_alias_template_p (tmpl))
5404 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5405 }
5406
5407 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5408 back to its most general template. If TMPL is a specialization,
5409 ARGS may only have the innermost set of arguments. Add the missing
5410 argument levels if necessary. */
5411 if (DECL_TEMPLATE_INFO (tmpl))
5412 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5413
5414 info = build_template_info (tmpl, args);
5415
5416 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5417 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5418 else
5419 {
5420 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5421 retrofit_lang_decl (decl);
5422 if (DECL_LANG_SPECIFIC (decl))
5423 DECL_TEMPLATE_INFO (decl) = info;
5424 }
5425
5426 if (flag_implicit_templates
5427 && !is_friend
5428 && TREE_PUBLIC (decl)
5429 && VAR_OR_FUNCTION_DECL_P (decl))
5430 /* Set DECL_COMDAT on template instantiations; if we force
5431 them to be emitted by explicit instantiation or -frepo,
5432 mark_needed will tell cgraph to do the right thing. */
5433 DECL_COMDAT (decl) = true;
5434
5435 return DECL_TEMPLATE_RESULT (tmpl);
5436 }
5437
5438 tree
5439 push_template_decl (tree decl)
5440 {
5441 return push_template_decl_real (decl, false);
5442 }
5443
5444 /* FN is an inheriting constructor that inherits from the constructor
5445 template INHERITED; turn FN into a constructor template with a matching
5446 template header. */
5447
5448 tree
5449 add_inherited_template_parms (tree fn, tree inherited)
5450 {
5451 tree inner_parms
5452 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5453 inner_parms = copy_node (inner_parms);
5454 tree parms
5455 = tree_cons (size_int (processing_template_decl + 1),
5456 inner_parms, current_template_parms);
5457 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5458 tree args = template_parms_to_args (parms);
5459 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5460 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5461 DECL_TEMPLATE_RESULT (tmpl) = fn;
5462 DECL_ARTIFICIAL (tmpl) = true;
5463 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5464 return tmpl;
5465 }
5466
5467 /* Called when a class template TYPE is redeclared with the indicated
5468 template PARMS, e.g.:
5469
5470 template <class T> struct S;
5471 template <class T> struct S {}; */
5472
5473 bool
5474 redeclare_class_template (tree type, tree parms, tree cons)
5475 {
5476 tree tmpl;
5477 tree tmpl_parms;
5478 int i;
5479
5480 if (!TYPE_TEMPLATE_INFO (type))
5481 {
5482 error ("%qT is not a template type", type);
5483 return false;
5484 }
5485
5486 tmpl = TYPE_TI_TEMPLATE (type);
5487 if (!PRIMARY_TEMPLATE_P (tmpl))
5488 /* The type is nested in some template class. Nothing to worry
5489 about here; there are no new template parameters for the nested
5490 type. */
5491 return true;
5492
5493 if (!parms)
5494 {
5495 error ("template specifiers not specified in declaration of %qD",
5496 tmpl);
5497 return false;
5498 }
5499
5500 parms = INNERMOST_TEMPLATE_PARMS (parms);
5501 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5502
5503 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5504 {
5505 error_n (input_location, TREE_VEC_LENGTH (parms),
5506 "redeclared with %d template parameter",
5507 "redeclared with %d template parameters",
5508 TREE_VEC_LENGTH (parms));
5509 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5510 "previous declaration %qD used %d template parameter",
5511 "previous declaration %qD used %d template parameters",
5512 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5513 return false;
5514 }
5515
5516 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5517 {
5518 tree tmpl_parm;
5519 tree parm;
5520 tree tmpl_default;
5521 tree parm_default;
5522
5523 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5524 || TREE_VEC_ELT (parms, i) == error_mark_node)
5525 continue;
5526
5527 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5528 if (error_operand_p (tmpl_parm))
5529 return false;
5530
5531 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5532 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5533 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5534
5535 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5536 TEMPLATE_DECL. */
5537 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5538 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5539 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5540 || (TREE_CODE (tmpl_parm) != PARM_DECL
5541 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5542 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5543 || (TREE_CODE (tmpl_parm) == PARM_DECL
5544 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5545 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5546 {
5547 error ("template parameter %q+#D", tmpl_parm);
5548 error ("redeclared here as %q#D", parm);
5549 return false;
5550 }
5551
5552 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5553 {
5554 /* We have in [temp.param]:
5555
5556 A template-parameter may not be given default arguments
5557 by two different declarations in the same scope. */
5558 error_at (input_location, "redefinition of default argument for %q#D", parm);
5559 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5560 "original definition appeared here");
5561 return false;
5562 }
5563
5564 if (parm_default != NULL_TREE)
5565 /* Update the previous template parameters (which are the ones
5566 that will really count) with the new default value. */
5567 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5568 else if (tmpl_default != NULL_TREE)
5569 /* Update the new parameters, too; they'll be used as the
5570 parameters for any members. */
5571 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5572
5573 /* Give each template template parm in this redeclaration a
5574 DECL_CONTEXT of the template for which they are a parameter. */
5575 if (TREE_CODE (parm) == TEMPLATE_DECL)
5576 {
5577 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5578 DECL_CONTEXT (parm) = tmpl;
5579 }
5580 }
5581
5582 // Cannot redeclare a class template with a different set of constraints.
5583 if (!equivalent_constraints (get_constraints (tmpl), cons))
5584 {
5585 error_at (input_location, "redeclaration %q#D with different "
5586 "constraints", tmpl);
5587 inform (DECL_SOURCE_LOCATION (tmpl),
5588 "original declaration appeared here");
5589 }
5590
5591 return true;
5592 }
5593
5594 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5595 to be used when the caller has already checked
5596 (processing_template_decl
5597 && !instantiation_dependent_expression_p (expr)
5598 && potential_constant_expression (expr))
5599 and cleared processing_template_decl. */
5600
5601 tree
5602 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5603 {
5604 return tsubst_copy_and_build (expr,
5605 /*args=*/NULL_TREE,
5606 complain,
5607 /*in_decl=*/NULL_TREE,
5608 /*function_p=*/false,
5609 /*integral_constant_expression_p=*/true);
5610 }
5611
5612 /* Simplify EXPR if it is a non-dependent expression. Returns the
5613 (possibly simplified) expression. */
5614
5615 tree
5616 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5617 {
5618 if (expr == NULL_TREE)
5619 return NULL_TREE;
5620
5621 /* If we're in a template, but EXPR isn't value dependent, simplify
5622 it. We're supposed to treat:
5623
5624 template <typename T> void f(T[1 + 1]);
5625 template <typename T> void f(T[2]);
5626
5627 as two declarations of the same function, for example. */
5628 if (processing_template_decl
5629 && !instantiation_dependent_expression_p (expr)
5630 && potential_constant_expression (expr))
5631 {
5632 processing_template_decl_sentinel s;
5633 expr = instantiate_non_dependent_expr_internal (expr, complain);
5634 }
5635 return expr;
5636 }
5637
5638 tree
5639 instantiate_non_dependent_expr (tree expr)
5640 {
5641 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5642 }
5643
5644 /* True iff T is a specialization of a variable template. */
5645
5646 bool
5647 variable_template_specialization_p (tree t)
5648 {
5649 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5650 return false;
5651 tree tmpl = DECL_TI_TEMPLATE (t);
5652 return variable_template_p (tmpl);
5653 }
5654
5655 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5656 template declaration, or a TYPE_DECL for an alias declaration. */
5657
5658 bool
5659 alias_type_or_template_p (tree t)
5660 {
5661 if (t == NULL_TREE)
5662 return false;
5663 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5664 || (TYPE_P (t)
5665 && TYPE_NAME (t)
5666 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5667 || DECL_ALIAS_TEMPLATE_P (t));
5668 }
5669
5670 /* Return TRUE iff T is a specialization of an alias template. */
5671
5672 bool
5673 alias_template_specialization_p (const_tree t)
5674 {
5675 /* It's an alias template specialization if it's an alias and its
5676 TYPE_NAME is a specialization of a primary template. */
5677 if (TYPE_ALIAS_P (t))
5678 {
5679 tree name = TYPE_NAME (t);
5680 if (DECL_LANG_SPECIFIC (name))
5681 if (tree ti = DECL_TEMPLATE_INFO (name))
5682 {
5683 tree tmpl = TI_TEMPLATE (ti);
5684 return PRIMARY_TEMPLATE_P (tmpl);
5685 }
5686 }
5687 return false;
5688 }
5689
5690 /* An alias template is complex from a SFINAE perspective if a template-id
5691 using that alias can be ill-formed when the expansion is not, as with
5692 the void_t template. We determine this by checking whether the
5693 expansion for the alias template uses all its template parameters. */
5694
5695 struct uses_all_template_parms_data
5696 {
5697 int level;
5698 bool *seen;
5699 };
5700
5701 static int
5702 uses_all_template_parms_r (tree t, void *data_)
5703 {
5704 struct uses_all_template_parms_data &data
5705 = *(struct uses_all_template_parms_data*)data_;
5706 tree idx = get_template_parm_index (t);
5707
5708 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5709 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5710 return 0;
5711 }
5712
5713 static bool
5714 complex_alias_template_p (const_tree tmpl)
5715 {
5716 struct uses_all_template_parms_data data;
5717 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5718 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5719 data.level = TMPL_PARMS_DEPTH (parms);
5720 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5721 data.seen = XALLOCAVEC (bool, len);
5722 for (int i = 0; i < len; ++i)
5723 data.seen[i] = false;
5724
5725 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5726 for (int i = 0; i < len; ++i)
5727 if (!data.seen[i])
5728 return true;
5729 return false;
5730 }
5731
5732 /* Return TRUE iff T is a specialization of a complex alias template with
5733 dependent template-arguments. */
5734
5735 bool
5736 dependent_alias_template_spec_p (const_tree t)
5737 {
5738 return (alias_template_specialization_p (t)
5739 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5740 && (any_dependent_template_arguments_p
5741 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5742 }
5743
5744 /* Return the number of innermost template parameters in TMPL. */
5745
5746 static int
5747 num_innermost_template_parms (tree tmpl)
5748 {
5749 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5750 return TREE_VEC_LENGTH (parms);
5751 }
5752
5753 /* Return either TMPL or another template that it is equivalent to under DR
5754 1286: An alias that just changes the name of a template is equivalent to
5755 the other template. */
5756
5757 static tree
5758 get_underlying_template (tree tmpl)
5759 {
5760 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5761 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5762 {
5763 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5764 if (TYPE_TEMPLATE_INFO (result))
5765 {
5766 tree sub = TYPE_TI_TEMPLATE (result);
5767 if (PRIMARY_TEMPLATE_P (sub)
5768 && (num_innermost_template_parms (tmpl)
5769 == num_innermost_template_parms (sub)))
5770 {
5771 tree alias_args = INNERMOST_TEMPLATE_ARGS
5772 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5773 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5774 break;
5775 /* The alias type is equivalent to the pattern of the
5776 underlying template, so strip the alias. */
5777 tmpl = sub;
5778 continue;
5779 }
5780 }
5781 break;
5782 }
5783 return tmpl;
5784 }
5785
5786 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5787 must be a function or a pointer-to-function type, as specified
5788 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5789 and check that the resulting function has external linkage. */
5790
5791 static tree
5792 convert_nontype_argument_function (tree type, tree expr,
5793 tsubst_flags_t complain)
5794 {
5795 tree fns = expr;
5796 tree fn, fn_no_ptr;
5797 linkage_kind linkage;
5798
5799 fn = instantiate_type (type, fns, tf_none);
5800 if (fn == error_mark_node)
5801 return error_mark_node;
5802
5803 fn_no_ptr = fn;
5804 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5805 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5806 if (BASELINK_P (fn_no_ptr))
5807 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5808
5809 /* [temp.arg.nontype]/1
5810
5811 A template-argument for a non-type, non-template template-parameter
5812 shall be one of:
5813 [...]
5814 -- the address of an object or function with external [C++11: or
5815 internal] linkage. */
5816
5817 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5818 {
5819 if (complain & tf_error)
5820 {
5821 error ("%qE is not a valid template argument for type %qT",
5822 expr, type);
5823 if (TYPE_PTR_P (type))
5824 error ("it must be the address of a function with "
5825 "external linkage");
5826 else
5827 error ("it must be the name of a function with "
5828 "external linkage");
5829 }
5830 return NULL_TREE;
5831 }
5832
5833 linkage = decl_linkage (fn_no_ptr);
5834 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5835 {
5836 if (complain & tf_error)
5837 {
5838 if (cxx_dialect >= cxx11)
5839 error ("%qE is not a valid template argument for type %qT "
5840 "because %qD has no linkage",
5841 expr, type, fn_no_ptr);
5842 else
5843 error ("%qE is not a valid template argument for type %qT "
5844 "because %qD does not have external linkage",
5845 expr, type, fn_no_ptr);
5846 }
5847 return NULL_TREE;
5848 }
5849
5850 return fn;
5851 }
5852
5853 /* Subroutine of convert_nontype_argument.
5854 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5855 Emit an error otherwise. */
5856
5857 static bool
5858 check_valid_ptrmem_cst_expr (tree type, tree expr,
5859 tsubst_flags_t complain)
5860 {
5861 STRIP_NOPS (expr);
5862 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5863 return true;
5864 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5865 return true;
5866 if (processing_template_decl
5867 && TREE_CODE (expr) == ADDR_EXPR
5868 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5869 return true;
5870 if (complain & tf_error)
5871 {
5872 error ("%qE is not a valid template argument for type %qT",
5873 expr, type);
5874 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5875 }
5876 return false;
5877 }
5878
5879 /* Returns TRUE iff the address of OP is value-dependent.
5880
5881 14.6.2.4 [temp.dep.temp]:
5882 A non-integral non-type template-argument is dependent if its type is
5883 dependent or it has either of the following forms
5884 qualified-id
5885 & qualified-id
5886 and contains a nested-name-specifier which specifies a class-name that
5887 names a dependent type.
5888
5889 We generalize this to just say that the address of a member of a
5890 dependent class is value-dependent; the above doesn't cover the
5891 address of a static data member named with an unqualified-id. */
5892
5893 static bool
5894 has_value_dependent_address (tree op)
5895 {
5896 /* We could use get_inner_reference here, but there's no need;
5897 this is only relevant for template non-type arguments, which
5898 can only be expressed as &id-expression. */
5899 if (DECL_P (op))
5900 {
5901 tree ctx = CP_DECL_CONTEXT (op);
5902 if (TYPE_P (ctx) && dependent_type_p (ctx))
5903 return true;
5904 }
5905
5906 return false;
5907 }
5908
5909 /* The next set of functions are used for providing helpful explanatory
5910 diagnostics for failed overload resolution. Their messages should be
5911 indented by two spaces for consistency with the messages in
5912 call.c */
5913
5914 static int
5915 unify_success (bool /*explain_p*/)
5916 {
5917 return 0;
5918 }
5919
5920 static int
5921 unify_parameter_deduction_failure (bool explain_p, tree parm)
5922 {
5923 if (explain_p)
5924 inform (input_location,
5925 " couldn't deduce template parameter %qD", parm);
5926 return 1;
5927 }
5928
5929 static int
5930 unify_invalid (bool /*explain_p*/)
5931 {
5932 return 1;
5933 }
5934
5935 static int
5936 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5937 {
5938 if (explain_p)
5939 inform (input_location,
5940 " types %qT and %qT have incompatible cv-qualifiers",
5941 parm, arg);
5942 return 1;
5943 }
5944
5945 static int
5946 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5947 {
5948 if (explain_p)
5949 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5950 return 1;
5951 }
5952
5953 static int
5954 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5955 {
5956 if (explain_p)
5957 inform (input_location,
5958 " template parameter %qD is not a parameter pack, but "
5959 "argument %qD is",
5960 parm, arg);
5961 return 1;
5962 }
5963
5964 static int
5965 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5966 {
5967 if (explain_p)
5968 inform (input_location,
5969 " template argument %qE does not match "
5970 "pointer-to-member constant %qE",
5971 arg, parm);
5972 return 1;
5973 }
5974
5975 static int
5976 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5977 {
5978 if (explain_p)
5979 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5980 return 1;
5981 }
5982
5983 static int
5984 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5985 {
5986 if (explain_p)
5987 inform (input_location,
5988 " inconsistent parameter pack deduction with %qT and %qT",
5989 old_arg, new_arg);
5990 return 1;
5991 }
5992
5993 static int
5994 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5995 {
5996 if (explain_p)
5997 {
5998 if (TYPE_P (parm))
5999 inform (input_location,
6000 " deduced conflicting types for parameter %qT (%qT and %qT)",
6001 parm, first, second);
6002 else
6003 inform (input_location,
6004 " deduced conflicting values for non-type parameter "
6005 "%qE (%qE and %qE)", parm, first, second);
6006 }
6007 return 1;
6008 }
6009
6010 static int
6011 unify_vla_arg (bool explain_p, tree arg)
6012 {
6013 if (explain_p)
6014 inform (input_location,
6015 " variable-sized array type %qT is not "
6016 "a valid template argument",
6017 arg);
6018 return 1;
6019 }
6020
6021 static int
6022 unify_method_type_error (bool explain_p, tree arg)
6023 {
6024 if (explain_p)
6025 inform (input_location,
6026 " member function type %qT is not a valid template argument",
6027 arg);
6028 return 1;
6029 }
6030
6031 static int
6032 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6033 {
6034 if (explain_p)
6035 {
6036 if (least_p)
6037 inform_n (input_location, wanted,
6038 " candidate expects at least %d argument, %d provided",
6039 " candidate expects at least %d arguments, %d provided",
6040 wanted, have);
6041 else
6042 inform_n (input_location, wanted,
6043 " candidate expects %d argument, %d provided",
6044 " candidate expects %d arguments, %d provided",
6045 wanted, have);
6046 }
6047 return 1;
6048 }
6049
6050 static int
6051 unify_too_many_arguments (bool explain_p, int have, int wanted)
6052 {
6053 return unify_arity (explain_p, have, wanted);
6054 }
6055
6056 static int
6057 unify_too_few_arguments (bool explain_p, int have, int wanted,
6058 bool least_p = false)
6059 {
6060 return unify_arity (explain_p, have, wanted, least_p);
6061 }
6062
6063 static int
6064 unify_arg_conversion (bool explain_p, tree to_type,
6065 tree from_type, tree arg)
6066 {
6067 if (explain_p)
6068 inform (EXPR_LOC_OR_LOC (arg, input_location),
6069 " cannot convert %qE (type %qT) to type %qT",
6070 arg, from_type, to_type);
6071 return 1;
6072 }
6073
6074 static int
6075 unify_no_common_base (bool explain_p, enum template_base_result r,
6076 tree parm, tree arg)
6077 {
6078 if (explain_p)
6079 switch (r)
6080 {
6081 case tbr_ambiguous_baseclass:
6082 inform (input_location, " %qT is an ambiguous base class of %qT",
6083 parm, arg);
6084 break;
6085 default:
6086 inform (input_location, " %qT is not derived from %qT", arg, parm);
6087 break;
6088 }
6089 return 1;
6090 }
6091
6092 static int
6093 unify_inconsistent_template_template_parameters (bool explain_p)
6094 {
6095 if (explain_p)
6096 inform (input_location,
6097 " template parameters of a template template argument are "
6098 "inconsistent with other deduced template arguments");
6099 return 1;
6100 }
6101
6102 static int
6103 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6104 {
6105 if (explain_p)
6106 inform (input_location,
6107 " can't deduce a template for %qT from non-template type %qT",
6108 parm, arg);
6109 return 1;
6110 }
6111
6112 static int
6113 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6114 {
6115 if (explain_p)
6116 inform (input_location,
6117 " template argument %qE does not match %qD", arg, parm);
6118 return 1;
6119 }
6120
6121 static int
6122 unify_overload_resolution_failure (bool explain_p, tree arg)
6123 {
6124 if (explain_p)
6125 inform (input_location,
6126 " could not resolve address from overloaded function %qE",
6127 arg);
6128 return 1;
6129 }
6130
6131 /* Attempt to convert the non-type template parameter EXPR to the
6132 indicated TYPE. If the conversion is successful, return the
6133 converted value. If the conversion is unsuccessful, return
6134 NULL_TREE if we issued an error message, or error_mark_node if we
6135 did not. We issue error messages for out-and-out bad template
6136 parameters, but not simply because the conversion failed, since we
6137 might be just trying to do argument deduction. Both TYPE and EXPR
6138 must be non-dependent.
6139
6140 The conversion follows the special rules described in
6141 [temp.arg.nontype], and it is much more strict than an implicit
6142 conversion.
6143
6144 This function is called twice for each template argument (see
6145 lookup_template_class for a more accurate description of this
6146 problem). This means that we need to handle expressions which
6147 are not valid in a C++ source, but can be created from the
6148 first call (for instance, casts to perform conversions). These
6149 hacks can go away after we fix the double coercion problem. */
6150
6151 static tree
6152 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6153 {
6154 tree expr_type;
6155
6156 /* Detect immediately string literals as invalid non-type argument.
6157 This special-case is not needed for correctness (we would easily
6158 catch this later), but only to provide better diagnostic for this
6159 common user mistake. As suggested by DR 100, we do not mention
6160 linkage issues in the diagnostic as this is not the point. */
6161 /* FIXME we're making this OK. */
6162 if (TREE_CODE (expr) == STRING_CST)
6163 {
6164 if (complain & tf_error)
6165 error ("%qE is not a valid template argument for type %qT "
6166 "because string literals can never be used in this context",
6167 expr, type);
6168 return NULL_TREE;
6169 }
6170
6171 /* Add the ADDR_EXPR now for the benefit of
6172 value_dependent_expression_p. */
6173 if (TYPE_PTROBV_P (type)
6174 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6175 {
6176 expr = decay_conversion (expr, complain);
6177 if (expr == error_mark_node)
6178 return error_mark_node;
6179 }
6180
6181 /* If we are in a template, EXPR may be non-dependent, but still
6182 have a syntactic, rather than semantic, form. For example, EXPR
6183 might be a SCOPE_REF, rather than the VAR_DECL to which the
6184 SCOPE_REF refers. Preserving the qualifying scope is necessary
6185 so that access checking can be performed when the template is
6186 instantiated -- but here we need the resolved form so that we can
6187 convert the argument. */
6188 bool non_dep = false;
6189 if (TYPE_REF_OBJ_P (type)
6190 && has_value_dependent_address (expr))
6191 /* If we want the address and it's value-dependent, don't fold. */;
6192 else if (!type_unknown_p (expr)
6193 && processing_template_decl
6194 && !instantiation_dependent_expression_p (expr)
6195 && potential_constant_expression (expr))
6196 non_dep = true;
6197 if (error_operand_p (expr))
6198 return error_mark_node;
6199 expr_type = TREE_TYPE (expr);
6200 if (TREE_CODE (type) == REFERENCE_TYPE)
6201 expr = mark_lvalue_use (expr);
6202 else
6203 expr = mark_rvalue_use (expr);
6204
6205 /* If the argument is non-dependent, perform any conversions in
6206 non-dependent context as well. */
6207 processing_template_decl_sentinel s (non_dep);
6208 if (non_dep)
6209 expr = instantiate_non_dependent_expr_internal (expr, complain);
6210
6211 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6212 to a non-type argument of "nullptr". */
6213 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6214 expr = convert (type, expr);
6215
6216 /* In C++11, integral or enumeration non-type template arguments can be
6217 arbitrary constant expressions. Pointer and pointer to
6218 member arguments can be general constant expressions that evaluate
6219 to a null value, but otherwise still need to be of a specific form. */
6220 if (cxx_dialect >= cxx11)
6221 {
6222 if (TREE_CODE (expr) == PTRMEM_CST)
6223 /* A PTRMEM_CST is already constant, and a valid template
6224 argument for a parameter of pointer to member type, we just want
6225 to leave it in that form rather than lower it to a
6226 CONSTRUCTOR. */;
6227 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6228 expr = maybe_constant_value (expr);
6229 else if (cxx_dialect >= cxx1z)
6230 {
6231 if (TREE_CODE (type) != REFERENCE_TYPE)
6232 expr = maybe_constant_value (expr);
6233 else if (REFERENCE_REF_P (expr))
6234 {
6235 expr = TREE_OPERAND (expr, 0);
6236 expr = maybe_constant_value (expr);
6237 expr = convert_from_reference (expr);
6238 }
6239 }
6240 else if (TYPE_PTR_OR_PTRMEM_P (type))
6241 {
6242 tree folded = maybe_constant_value (expr);
6243 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6244 : null_member_pointer_value_p (folded))
6245 expr = folded;
6246 }
6247 }
6248
6249 /* HACK: Due to double coercion, we can get a
6250 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6251 which is the tree that we built on the first call (see
6252 below when coercing to reference to object or to reference to
6253 function). We just strip everything and get to the arg.
6254 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6255 for examples. */
6256 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6257 {
6258 tree probe_type, probe = expr;
6259 if (REFERENCE_REF_P (probe))
6260 probe = TREE_OPERAND (probe, 0);
6261 probe_type = TREE_TYPE (probe);
6262 if (TREE_CODE (probe) == NOP_EXPR)
6263 {
6264 /* ??? Maybe we could use convert_from_reference here, but we
6265 would need to relax its constraints because the NOP_EXPR
6266 could actually change the type to something more cv-qualified,
6267 and this is not folded by convert_from_reference. */
6268 tree addr = TREE_OPERAND (probe, 0);
6269 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6270 && TREE_CODE (addr) == ADDR_EXPR
6271 && TYPE_PTR_P (TREE_TYPE (addr))
6272 && (same_type_ignoring_top_level_qualifiers_p
6273 (TREE_TYPE (probe_type),
6274 TREE_TYPE (TREE_TYPE (addr)))))
6275 {
6276 expr = TREE_OPERAND (addr, 0);
6277 expr_type = TREE_TYPE (probe_type);
6278 }
6279 }
6280 }
6281
6282 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6283 parameter is a pointer to object, through decay and
6284 qualification conversion. Let's strip everything. */
6285 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6286 {
6287 tree probe = expr;
6288 STRIP_NOPS (probe);
6289 if (TREE_CODE (probe) == ADDR_EXPR
6290 && TYPE_PTR_P (TREE_TYPE (probe)))
6291 {
6292 /* Skip the ADDR_EXPR only if it is part of the decay for
6293 an array. Otherwise, it is part of the original argument
6294 in the source code. */
6295 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6296 probe = TREE_OPERAND (probe, 0);
6297 expr = probe;
6298 expr_type = TREE_TYPE (expr);
6299 }
6300 }
6301
6302 /* [temp.arg.nontype]/5, bullet 1
6303
6304 For a non-type template-parameter of integral or enumeration type,
6305 integral promotions (_conv.prom_) and integral conversions
6306 (_conv.integral_) are applied. */
6307 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6308 {
6309 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6310 t = maybe_constant_value (t);
6311 if (t != error_mark_node)
6312 expr = t;
6313
6314 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6315 return error_mark_node;
6316
6317 /* Notice that there are constant expressions like '4 % 0' which
6318 do not fold into integer constants. */
6319 if (TREE_CODE (expr) != INTEGER_CST)
6320 {
6321 if (complain & tf_error)
6322 {
6323 int errs = errorcount, warns = warningcount + werrorcount;
6324 if (processing_template_decl
6325 && !require_potential_constant_expression (expr))
6326 return NULL_TREE;
6327 expr = cxx_constant_value (expr);
6328 if (errorcount > errs || warningcount + werrorcount > warns)
6329 inform (EXPR_LOC_OR_LOC (expr, input_location),
6330 "in template argument for type %qT ", type);
6331 if (expr == error_mark_node)
6332 return NULL_TREE;
6333 /* else cxx_constant_value complained but gave us
6334 a real constant, so go ahead. */
6335 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6336 }
6337 else
6338 return NULL_TREE;
6339 }
6340
6341 /* Avoid typedef problems. */
6342 if (TREE_TYPE (expr) != type)
6343 expr = fold_convert (type, expr);
6344 }
6345 /* [temp.arg.nontype]/5, bullet 2
6346
6347 For a non-type template-parameter of type pointer to object,
6348 qualification conversions (_conv.qual_) and the array-to-pointer
6349 conversion (_conv.array_) are applied. */
6350 else if (TYPE_PTROBV_P (type))
6351 {
6352 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6353
6354 A template-argument for a non-type, non-template template-parameter
6355 shall be one of: [...]
6356
6357 -- the name of a non-type template-parameter;
6358 -- the address of an object or function with external linkage, [...]
6359 expressed as "& id-expression" where the & is optional if the name
6360 refers to a function or array, or if the corresponding
6361 template-parameter is a reference.
6362
6363 Here, we do not care about functions, as they are invalid anyway
6364 for a parameter of type pointer-to-object. */
6365
6366 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6367 /* Non-type template parameters are OK. */
6368 ;
6369 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6370 /* Null pointer values are OK in C++11. */;
6371 else if (TREE_CODE (expr) != ADDR_EXPR
6372 && TREE_CODE (expr_type) != ARRAY_TYPE)
6373 {
6374 if (VAR_P (expr))
6375 {
6376 if (complain & tf_error)
6377 error ("%qD is not a valid template argument "
6378 "because %qD is a variable, not the address of "
6379 "a variable", expr, expr);
6380 return NULL_TREE;
6381 }
6382 if (POINTER_TYPE_P (expr_type))
6383 {
6384 if (complain & tf_error)
6385 error ("%qE is not a valid template argument for %qT "
6386 "because it is not the address of a variable",
6387 expr, type);
6388 return NULL_TREE;
6389 }
6390 /* Other values, like integer constants, might be valid
6391 non-type arguments of some other type. */
6392 return error_mark_node;
6393 }
6394 else
6395 {
6396 tree decl;
6397
6398 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6399 ? TREE_OPERAND (expr, 0) : expr);
6400 if (!VAR_P (decl))
6401 {
6402 if (complain & tf_error)
6403 error ("%qE is not a valid template argument of type %qT "
6404 "because %qE is not a variable", expr, type, decl);
6405 return NULL_TREE;
6406 }
6407 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6408 {
6409 if (complain & tf_error)
6410 error ("%qE is not a valid template argument of type %qT "
6411 "because %qD does not have external linkage",
6412 expr, type, decl);
6413 return NULL_TREE;
6414 }
6415 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6416 {
6417 if (complain & tf_error)
6418 error ("%qE is not a valid template argument of type %qT "
6419 "because %qD has no linkage", expr, type, decl);
6420 return NULL_TREE;
6421 }
6422 }
6423
6424 expr = decay_conversion (expr, complain);
6425 if (expr == error_mark_node)
6426 return error_mark_node;
6427
6428 expr = perform_qualification_conversions (type, expr);
6429 if (expr == error_mark_node)
6430 return error_mark_node;
6431 }
6432 /* [temp.arg.nontype]/5, bullet 3
6433
6434 For a non-type template-parameter of type reference to object, no
6435 conversions apply. The type referred to by the reference may be more
6436 cv-qualified than the (otherwise identical) type of the
6437 template-argument. The template-parameter is bound directly to the
6438 template-argument, which must be an lvalue. */
6439 else if (TYPE_REF_OBJ_P (type))
6440 {
6441 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6442 expr_type))
6443 return error_mark_node;
6444
6445 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6446 {
6447 if (complain & tf_error)
6448 error ("%qE is not a valid template argument for type %qT "
6449 "because of conflicts in cv-qualification", expr, type);
6450 return NULL_TREE;
6451 }
6452
6453 if (!real_lvalue_p (expr))
6454 {
6455 if (complain & tf_error)
6456 error ("%qE is not a valid template argument for type %qT "
6457 "because it is not an lvalue", expr, type);
6458 return NULL_TREE;
6459 }
6460
6461 /* [temp.arg.nontype]/1
6462
6463 A template-argument for a non-type, non-template template-parameter
6464 shall be one of: [...]
6465
6466 -- the address of an object or function with external linkage. */
6467 if (INDIRECT_REF_P (expr)
6468 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6469 {
6470 expr = TREE_OPERAND (expr, 0);
6471 if (DECL_P (expr))
6472 {
6473 if (complain & tf_error)
6474 error ("%q#D is not a valid template argument for type %qT "
6475 "because a reference variable does not have a constant "
6476 "address", expr, type);
6477 return NULL_TREE;
6478 }
6479 }
6480
6481 if (!DECL_P (expr))
6482 {
6483 if (complain & tf_error)
6484 error ("%qE is not a valid template argument for type %qT "
6485 "because it is not an object with linkage",
6486 expr, type);
6487 return NULL_TREE;
6488 }
6489
6490 /* DR 1155 allows internal linkage in C++11 and up. */
6491 linkage_kind linkage = decl_linkage (expr);
6492 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6493 {
6494 if (complain & tf_error)
6495 error ("%qE is not a valid template argument for type %qT "
6496 "because object %qD does not have linkage",
6497 expr, type, expr);
6498 return NULL_TREE;
6499 }
6500
6501 expr = build_nop (type, build_address (expr));
6502 }
6503 /* [temp.arg.nontype]/5, bullet 4
6504
6505 For a non-type template-parameter of type pointer to function, only
6506 the function-to-pointer conversion (_conv.func_) is applied. If the
6507 template-argument represents a set of overloaded functions (or a
6508 pointer to such), the matching function is selected from the set
6509 (_over.over_). */
6510 else if (TYPE_PTRFN_P (type))
6511 {
6512 /* If the argument is a template-id, we might not have enough
6513 context information to decay the pointer. */
6514 if (!type_unknown_p (expr_type))
6515 {
6516 expr = decay_conversion (expr, complain);
6517 if (expr == error_mark_node)
6518 return error_mark_node;
6519 }
6520
6521 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6522 /* Null pointer values are OK in C++11. */
6523 return perform_qualification_conversions (type, expr);
6524
6525 expr = convert_nontype_argument_function (type, expr, complain);
6526 if (!expr || expr == error_mark_node)
6527 return expr;
6528 }
6529 /* [temp.arg.nontype]/5, bullet 5
6530
6531 For a non-type template-parameter of type reference to function, no
6532 conversions apply. If the template-argument represents a set of
6533 overloaded functions, the matching function is selected from the set
6534 (_over.over_). */
6535 else if (TYPE_REFFN_P (type))
6536 {
6537 if (TREE_CODE (expr) == ADDR_EXPR)
6538 {
6539 if (complain & tf_error)
6540 {
6541 error ("%qE is not a valid template argument for type %qT "
6542 "because it is a pointer", expr, type);
6543 inform (input_location, "try using %qE instead",
6544 TREE_OPERAND (expr, 0));
6545 }
6546 return NULL_TREE;
6547 }
6548
6549 expr = convert_nontype_argument_function (type, expr, complain);
6550 if (!expr || expr == error_mark_node)
6551 return expr;
6552
6553 expr = build_nop (type, build_address (expr));
6554 }
6555 /* [temp.arg.nontype]/5, bullet 6
6556
6557 For a non-type template-parameter of type pointer to member function,
6558 no conversions apply. If the template-argument represents a set of
6559 overloaded member functions, the matching member function is selected
6560 from the set (_over.over_). */
6561 else if (TYPE_PTRMEMFUNC_P (type))
6562 {
6563 expr = instantiate_type (type, expr, tf_none);
6564 if (expr == error_mark_node)
6565 return error_mark_node;
6566
6567 /* [temp.arg.nontype] bullet 1 says the pointer to member
6568 expression must be a pointer-to-member constant. */
6569 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6570 return error_mark_node;
6571
6572 /* There is no way to disable standard conversions in
6573 resolve_address_of_overloaded_function (called by
6574 instantiate_type). It is possible that the call succeeded by
6575 converting &B::I to &D::I (where B is a base of D), so we need
6576 to reject this conversion here.
6577
6578 Actually, even if there was a way to disable standard conversions,
6579 it would still be better to reject them here so that we can
6580 provide a superior diagnostic. */
6581 if (!same_type_p (TREE_TYPE (expr), type))
6582 {
6583 if (complain & tf_error)
6584 {
6585 error ("%qE is not a valid template argument for type %qT "
6586 "because it is of type %qT", expr, type,
6587 TREE_TYPE (expr));
6588 /* If we are just one standard conversion off, explain. */
6589 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6590 inform (input_location,
6591 "standard conversions are not allowed in this context");
6592 }
6593 return NULL_TREE;
6594 }
6595 }
6596 /* [temp.arg.nontype]/5, bullet 7
6597
6598 For a non-type template-parameter of type pointer to data member,
6599 qualification conversions (_conv.qual_) are applied. */
6600 else if (TYPE_PTRDATAMEM_P (type))
6601 {
6602 /* [temp.arg.nontype] bullet 1 says the pointer to member
6603 expression must be a pointer-to-member constant. */
6604 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6605 return error_mark_node;
6606
6607 expr = perform_qualification_conversions (type, expr);
6608 if (expr == error_mark_node)
6609 return expr;
6610 }
6611 else if (NULLPTR_TYPE_P (type))
6612 {
6613 if (expr != nullptr_node)
6614 {
6615 if (complain & tf_error)
6616 error ("%qE is not a valid template argument for type %qT "
6617 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6618 return NULL_TREE;
6619 }
6620 return expr;
6621 }
6622 /* A template non-type parameter must be one of the above. */
6623 else
6624 gcc_unreachable ();
6625
6626 /* Sanity check: did we actually convert the argument to the
6627 right type? */
6628 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6629 (type, TREE_TYPE (expr)));
6630 return convert_from_reference (expr);
6631 }
6632
6633 /* Subroutine of coerce_template_template_parms, which returns 1 if
6634 PARM_PARM and ARG_PARM match using the rule for the template
6635 parameters of template template parameters. Both PARM and ARG are
6636 template parameters; the rest of the arguments are the same as for
6637 coerce_template_template_parms.
6638 */
6639 static int
6640 coerce_template_template_parm (tree parm,
6641 tree arg,
6642 tsubst_flags_t complain,
6643 tree in_decl,
6644 tree outer_args)
6645 {
6646 if (arg == NULL_TREE || error_operand_p (arg)
6647 || parm == NULL_TREE || error_operand_p (parm))
6648 return 0;
6649
6650 if (TREE_CODE (arg) != TREE_CODE (parm))
6651 return 0;
6652
6653 switch (TREE_CODE (parm))
6654 {
6655 case TEMPLATE_DECL:
6656 /* We encounter instantiations of templates like
6657 template <template <template <class> class> class TT>
6658 class C; */
6659 {
6660 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6661 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6662
6663 if (!coerce_template_template_parms
6664 (parmparm, argparm, complain, in_decl, outer_args))
6665 return 0;
6666 }
6667 /* Fall through. */
6668
6669 case TYPE_DECL:
6670 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6671 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6672 /* Argument is a parameter pack but parameter is not. */
6673 return 0;
6674 break;
6675
6676 case PARM_DECL:
6677 /* The tsubst call is used to handle cases such as
6678
6679 template <int> class C {};
6680 template <class T, template <T> class TT> class D {};
6681 D<int, C> d;
6682
6683 i.e. the parameter list of TT depends on earlier parameters. */
6684 if (!uses_template_parms (TREE_TYPE (arg)))
6685 {
6686 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6687 if (!uses_template_parms (t)
6688 && !same_type_p (t, TREE_TYPE (arg)))
6689 return 0;
6690 }
6691
6692 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6693 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6694 /* Argument is a parameter pack but parameter is not. */
6695 return 0;
6696
6697 break;
6698
6699 default:
6700 gcc_unreachable ();
6701 }
6702
6703 return 1;
6704 }
6705
6706
6707 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6708 template template parameters. Both PARM_PARMS and ARG_PARMS are
6709 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6710 or PARM_DECL.
6711
6712 Consider the example:
6713 template <class T> class A;
6714 template<template <class U> class TT> class B;
6715
6716 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6717 the parameters to A, and OUTER_ARGS contains A. */
6718
6719 static int
6720 coerce_template_template_parms (tree parm_parms,
6721 tree arg_parms,
6722 tsubst_flags_t complain,
6723 tree in_decl,
6724 tree outer_args)
6725 {
6726 int nparms, nargs, i;
6727 tree parm, arg;
6728 int variadic_p = 0;
6729
6730 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6731 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6732
6733 nparms = TREE_VEC_LENGTH (parm_parms);
6734 nargs = TREE_VEC_LENGTH (arg_parms);
6735
6736 /* Determine whether we have a parameter pack at the end of the
6737 template template parameter's template parameter list. */
6738 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6739 {
6740 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6741
6742 if (error_operand_p (parm))
6743 return 0;
6744
6745 switch (TREE_CODE (parm))
6746 {
6747 case TEMPLATE_DECL:
6748 case TYPE_DECL:
6749 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6750 variadic_p = 1;
6751 break;
6752
6753 case PARM_DECL:
6754 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6755 variadic_p = 1;
6756 break;
6757
6758 default:
6759 gcc_unreachable ();
6760 }
6761 }
6762
6763 if (nargs != nparms
6764 && !(variadic_p && nargs >= nparms - 1))
6765 return 0;
6766
6767 /* Check all of the template parameters except the parameter pack at
6768 the end (if any). */
6769 for (i = 0; i < nparms - variadic_p; ++i)
6770 {
6771 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6772 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6773 continue;
6774
6775 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6776 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6777
6778 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6779 outer_args))
6780 return 0;
6781
6782 }
6783
6784 if (variadic_p)
6785 {
6786 /* Check each of the template parameters in the template
6787 argument against the template parameter pack at the end of
6788 the template template parameter. */
6789 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6790 return 0;
6791
6792 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6793
6794 for (; i < nargs; ++i)
6795 {
6796 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6797 continue;
6798
6799 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6800
6801 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6802 outer_args))
6803 return 0;
6804 }
6805 }
6806
6807 return 1;
6808 }
6809
6810 /* Verifies that the deduced template arguments (in TARGS) for the
6811 template template parameters (in TPARMS) represent valid bindings,
6812 by comparing the template parameter list of each template argument
6813 to the template parameter list of its corresponding template
6814 template parameter, in accordance with DR150. This
6815 routine can only be called after all template arguments have been
6816 deduced. It will return TRUE if all of the template template
6817 parameter bindings are okay, FALSE otherwise. */
6818 bool
6819 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6820 {
6821 int i, ntparms = TREE_VEC_LENGTH (tparms);
6822 bool ret = true;
6823
6824 /* We're dealing with template parms in this process. */
6825 ++processing_template_decl;
6826
6827 targs = INNERMOST_TEMPLATE_ARGS (targs);
6828
6829 for (i = 0; i < ntparms; ++i)
6830 {
6831 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6832 tree targ = TREE_VEC_ELT (targs, i);
6833
6834 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6835 {
6836 tree packed_args = NULL_TREE;
6837 int idx, len = 1;
6838
6839 if (ARGUMENT_PACK_P (targ))
6840 {
6841 /* Look inside the argument pack. */
6842 packed_args = ARGUMENT_PACK_ARGS (targ);
6843 len = TREE_VEC_LENGTH (packed_args);
6844 }
6845
6846 for (idx = 0; idx < len; ++idx)
6847 {
6848 tree targ_parms = NULL_TREE;
6849
6850 if (packed_args)
6851 /* Extract the next argument from the argument
6852 pack. */
6853 targ = TREE_VEC_ELT (packed_args, idx);
6854
6855 if (PACK_EXPANSION_P (targ))
6856 /* Look at the pattern of the pack expansion. */
6857 targ = PACK_EXPANSION_PATTERN (targ);
6858
6859 /* Extract the template parameters from the template
6860 argument. */
6861 if (TREE_CODE (targ) == TEMPLATE_DECL)
6862 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6863 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6864 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6865
6866 /* Verify that we can coerce the template template
6867 parameters from the template argument to the template
6868 parameter. This requires an exact match. */
6869 if (targ_parms
6870 && !coerce_template_template_parms
6871 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6872 targ_parms,
6873 tf_none,
6874 tparm,
6875 targs))
6876 {
6877 ret = false;
6878 goto out;
6879 }
6880 }
6881 }
6882 }
6883
6884 out:
6885
6886 --processing_template_decl;
6887 return ret;
6888 }
6889
6890 /* Since type attributes aren't mangled, we need to strip them from
6891 template type arguments. */
6892
6893 static tree
6894 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6895 {
6896 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6897 return arg;
6898 bool removed_attributes = false;
6899 tree canon = strip_typedefs (arg, &removed_attributes);
6900 if (removed_attributes
6901 && (complain & tf_warning))
6902 warning (0, "ignoring attributes on template argument %qT", arg);
6903 return canon;
6904 }
6905
6906 // A template declaration can be substituted for a constrained
6907 // template template parameter only when the argument is more
6908 // constrained than the parameter.
6909 static bool
6910 is_compatible_template_arg (tree parm, tree arg)
6911 {
6912 tree parm_cons = get_constraints (parm);
6913
6914 /* For now, allow constrained template template arguments
6915 and unconstrained template template parameters. */
6916 if (parm_cons == NULL_TREE)
6917 return true;
6918
6919 tree arg_cons = get_constraints (arg);
6920
6921 // If the template parameter is constrained, we need to rewrite its
6922 // constraints in terms of the ARG's template parameters. This ensures
6923 // that all of the template parameter types will have the same depth.
6924 //
6925 // Note that this is only valid when coerce_template_template_parm is
6926 // true for the innermost template parameters of PARM and ARG. In other
6927 // words, because coercion is successful, this conversion will be valid.
6928 if (parm_cons)
6929 {
6930 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6931 parm_cons = tsubst_constraint_info (parm_cons,
6932 INNERMOST_TEMPLATE_ARGS (args),
6933 tf_none, NULL_TREE);
6934 if (parm_cons == error_mark_node)
6935 return false;
6936 }
6937
6938 return subsumes (parm_cons, arg_cons);
6939 }
6940
6941 // Convert a placeholder argument into a binding to the original
6942 // parameter. The original parameter is saved as the TREE_TYPE of
6943 // ARG.
6944 static inline tree
6945 convert_wildcard_argument (tree parm, tree arg)
6946 {
6947 TREE_TYPE (arg) = parm;
6948 return arg;
6949 }
6950
6951 /* Convert the indicated template ARG as necessary to match the
6952 indicated template PARM. Returns the converted ARG, or
6953 error_mark_node if the conversion was unsuccessful. Error and
6954 warning messages are issued under control of COMPLAIN. This
6955 conversion is for the Ith parameter in the parameter list. ARGS is
6956 the full set of template arguments deduced so far. */
6957
6958 static tree
6959 convert_template_argument (tree parm,
6960 tree arg,
6961 tree args,
6962 tsubst_flags_t complain,
6963 int i,
6964 tree in_decl)
6965 {
6966 tree orig_arg;
6967 tree val;
6968 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6969
6970 if (parm == error_mark_node)
6971 return error_mark_node;
6972
6973 /* Trivially convert placeholders. */
6974 if (TREE_CODE (arg) == WILDCARD_DECL)
6975 return convert_wildcard_argument (parm, arg);
6976
6977 if (TREE_CODE (arg) == TREE_LIST
6978 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6979 {
6980 /* The template argument was the name of some
6981 member function. That's usually
6982 invalid, but static members are OK. In any
6983 case, grab the underlying fields/functions
6984 and issue an error later if required. */
6985 orig_arg = TREE_VALUE (arg);
6986 TREE_TYPE (arg) = unknown_type_node;
6987 }
6988
6989 orig_arg = arg;
6990
6991 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6992 requires_type = (TREE_CODE (parm) == TYPE_DECL
6993 || requires_tmpl_type);
6994
6995 /* When determining whether an argument pack expansion is a template,
6996 look at the pattern. */
6997 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6998 arg = PACK_EXPANSION_PATTERN (arg);
6999
7000 /* Deal with an injected-class-name used as a template template arg. */
7001 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7002 {
7003 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7004 if (TREE_CODE (t) == TEMPLATE_DECL)
7005 {
7006 if (cxx_dialect >= cxx11)
7007 /* OK under DR 1004. */;
7008 else if (complain & tf_warning_or_error)
7009 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7010 " used as template template argument", TYPE_NAME (arg));
7011 else if (flag_pedantic_errors)
7012 t = arg;
7013
7014 arg = t;
7015 }
7016 }
7017
7018 is_tmpl_type =
7019 ((TREE_CODE (arg) == TEMPLATE_DECL
7020 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7021 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7022 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7023 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7024
7025 if (is_tmpl_type
7026 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7027 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7028 arg = TYPE_STUB_DECL (arg);
7029
7030 is_type = TYPE_P (arg) || is_tmpl_type;
7031
7032 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7033 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7034 {
7035 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7036 {
7037 if (complain & tf_error)
7038 error ("invalid use of destructor %qE as a type", orig_arg);
7039 return error_mark_node;
7040 }
7041
7042 permerror (input_location,
7043 "to refer to a type member of a template parameter, "
7044 "use %<typename %E%>", orig_arg);
7045
7046 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7047 TREE_OPERAND (arg, 1),
7048 typename_type,
7049 complain);
7050 arg = orig_arg;
7051 is_type = 1;
7052 }
7053 if (is_type != requires_type)
7054 {
7055 if (in_decl)
7056 {
7057 if (complain & tf_error)
7058 {
7059 error ("type/value mismatch at argument %d in template "
7060 "parameter list for %qD",
7061 i + 1, in_decl);
7062 if (is_type)
7063 inform (input_location,
7064 " expected a constant of type %qT, got %qT",
7065 TREE_TYPE (parm),
7066 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7067 else if (requires_tmpl_type)
7068 inform (input_location,
7069 " expected a class template, got %qE", orig_arg);
7070 else
7071 inform (input_location,
7072 " expected a type, got %qE", orig_arg);
7073 }
7074 }
7075 return error_mark_node;
7076 }
7077 if (is_tmpl_type ^ requires_tmpl_type)
7078 {
7079 if (in_decl && (complain & tf_error))
7080 {
7081 error ("type/value mismatch at argument %d in template "
7082 "parameter list for %qD",
7083 i + 1, in_decl);
7084 if (is_tmpl_type)
7085 inform (input_location,
7086 " expected a type, got %qT", DECL_NAME (arg));
7087 else
7088 inform (input_location,
7089 " expected a class template, got %qT", orig_arg);
7090 }
7091 return error_mark_node;
7092 }
7093
7094 if (is_type)
7095 {
7096 if (requires_tmpl_type)
7097 {
7098 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7099 val = orig_arg;
7100 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7101 /* The number of argument required is not known yet.
7102 Just accept it for now. */
7103 val = TREE_TYPE (arg);
7104 else
7105 {
7106 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7107 tree argparm;
7108
7109 /* Strip alias templates that are equivalent to another
7110 template. */
7111 arg = get_underlying_template (arg);
7112 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7113
7114 if (coerce_template_template_parms (parmparm, argparm,
7115 complain, in_decl,
7116 args))
7117 {
7118 val = arg;
7119
7120 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7121 TEMPLATE_DECL. */
7122 if (val != error_mark_node)
7123 {
7124 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7125 val = TREE_TYPE (val);
7126 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7127 val = make_pack_expansion (val);
7128 }
7129 }
7130 else
7131 {
7132 if (in_decl && (complain & tf_error))
7133 {
7134 error ("type/value mismatch at argument %d in "
7135 "template parameter list for %qD",
7136 i + 1, in_decl);
7137 inform (input_location,
7138 " expected a template of type %qD, got %qT",
7139 parm, orig_arg);
7140 }
7141
7142 val = error_mark_node;
7143 }
7144
7145 // Check that the constraints are compatible before allowing the
7146 // substitution.
7147 if (val != error_mark_node)
7148 if (!is_compatible_template_arg (parm, arg))
7149 {
7150 if (in_decl && (complain & tf_error))
7151 {
7152 error ("constraint mismatch at argument %d in "
7153 "template parameter list for %qD",
7154 i + 1, in_decl);
7155 inform (input_location, " expected %qD but got %qD",
7156 parm, arg);
7157 }
7158 val = error_mark_node;
7159 }
7160 }
7161 }
7162 else
7163 val = orig_arg;
7164 /* We only form one instance of each template specialization.
7165 Therefore, if we use a non-canonical variant (i.e., a
7166 typedef), any future messages referring to the type will use
7167 the typedef, which is confusing if those future uses do not
7168 themselves also use the typedef. */
7169 if (TYPE_P (val))
7170 val = canonicalize_type_argument (val, complain);
7171 }
7172 else
7173 {
7174 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7175
7176 if (invalid_nontype_parm_type_p (t, complain))
7177 return error_mark_node;
7178
7179 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7180 {
7181 if (same_type_p (t, TREE_TYPE (orig_arg)))
7182 val = orig_arg;
7183 else
7184 {
7185 /* Not sure if this is reachable, but it doesn't hurt
7186 to be robust. */
7187 error ("type mismatch in nontype parameter pack");
7188 val = error_mark_node;
7189 }
7190 }
7191 else if (!dependent_template_arg_p (orig_arg)
7192 && !uses_template_parms (t))
7193 /* We used to call digest_init here. However, digest_init
7194 will report errors, which we don't want when complain
7195 is zero. More importantly, digest_init will try too
7196 hard to convert things: for example, `0' should not be
7197 converted to pointer type at this point according to
7198 the standard. Accepting this is not merely an
7199 extension, since deciding whether or not these
7200 conversions can occur is part of determining which
7201 function template to call, or whether a given explicit
7202 argument specification is valid. */
7203 val = convert_nontype_argument (t, orig_arg, complain);
7204 else
7205 {
7206 bool removed_attr = false;
7207 val = strip_typedefs_expr (orig_arg, &removed_attr);
7208 }
7209
7210 if (val == NULL_TREE)
7211 val = error_mark_node;
7212 else if (val == error_mark_node && (complain & tf_error))
7213 error ("could not convert template argument %qE to %qT", orig_arg, t);
7214
7215 if (INDIRECT_REF_P (val))
7216 {
7217 /* Reject template arguments that are references to built-in
7218 functions with no library fallbacks. */
7219 const_tree inner = TREE_OPERAND (val, 0);
7220 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7221 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7222 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7223 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7224 return error_mark_node;
7225 }
7226
7227 if (TREE_CODE (val) == SCOPE_REF)
7228 {
7229 /* Strip typedefs from the SCOPE_REF. */
7230 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7231 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7232 complain);
7233 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7234 QUALIFIED_NAME_IS_TEMPLATE (val));
7235 }
7236 }
7237
7238 return val;
7239 }
7240
7241 /* Coerces the remaining template arguments in INNER_ARGS (from
7242 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7243 Returns the coerced argument pack. PARM_IDX is the position of this
7244 parameter in the template parameter list. ARGS is the original
7245 template argument list. */
7246 static tree
7247 coerce_template_parameter_pack (tree parms,
7248 int parm_idx,
7249 tree args,
7250 tree inner_args,
7251 int arg_idx,
7252 tree new_args,
7253 int* lost,
7254 tree in_decl,
7255 tsubst_flags_t complain)
7256 {
7257 tree parm = TREE_VEC_ELT (parms, parm_idx);
7258 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7259 tree packed_args;
7260 tree argument_pack;
7261 tree packed_parms = NULL_TREE;
7262
7263 if (arg_idx > nargs)
7264 arg_idx = nargs;
7265
7266 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7267 {
7268 /* When the template parameter is a non-type template parameter pack
7269 or template template parameter pack whose type or template
7270 parameters use parameter packs, we know exactly how many arguments
7271 we are looking for. Build a vector of the instantiated decls for
7272 these template parameters in PACKED_PARMS. */
7273 /* We can't use make_pack_expansion here because it would interpret a
7274 _DECL as a use rather than a declaration. */
7275 tree decl = TREE_VALUE (parm);
7276 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7277 SET_PACK_EXPANSION_PATTERN (exp, decl);
7278 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7279 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7280
7281 TREE_VEC_LENGTH (args)--;
7282 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7283 TREE_VEC_LENGTH (args)++;
7284
7285 if (packed_parms == error_mark_node)
7286 return error_mark_node;
7287
7288 /* If we're doing a partial instantiation of a member template,
7289 verify that all of the types used for the non-type
7290 template parameter pack are, in fact, valid for non-type
7291 template parameters. */
7292 if (arg_idx < nargs
7293 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7294 {
7295 int j, len = TREE_VEC_LENGTH (packed_parms);
7296 for (j = 0; j < len; ++j)
7297 {
7298 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7299 if (invalid_nontype_parm_type_p (t, complain))
7300 return error_mark_node;
7301 }
7302 /* We don't know how many args we have yet, just
7303 use the unconverted ones for now. */
7304 return NULL_TREE;
7305 }
7306
7307 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7308 }
7309 /* Check if we have a placeholder pack, which indicates we're
7310 in the context of a introduction list. In that case we want
7311 to match this pack to the single placeholder. */
7312 else if (arg_idx < nargs
7313 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7314 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7315 {
7316 nargs = arg_idx + 1;
7317 packed_args = make_tree_vec (1);
7318 }
7319 else
7320 packed_args = make_tree_vec (nargs - arg_idx);
7321
7322 /* Convert the remaining arguments, which will be a part of the
7323 parameter pack "parm". */
7324 for (; arg_idx < nargs; ++arg_idx)
7325 {
7326 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7327 tree actual_parm = TREE_VALUE (parm);
7328 int pack_idx = arg_idx - parm_idx;
7329
7330 if (packed_parms)
7331 {
7332 /* Once we've packed as many args as we have types, stop. */
7333 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7334 break;
7335 else if (PACK_EXPANSION_P (arg))
7336 /* We don't know how many args we have yet, just
7337 use the unconverted ones for now. */
7338 return NULL_TREE;
7339 else
7340 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7341 }
7342
7343 if (arg == error_mark_node)
7344 {
7345 if (complain & tf_error)
7346 error ("template argument %d is invalid", arg_idx + 1);
7347 }
7348 else
7349 arg = convert_template_argument (actual_parm,
7350 arg, new_args, complain, parm_idx,
7351 in_decl);
7352 if (arg == error_mark_node)
7353 (*lost)++;
7354 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7355 }
7356
7357 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7358 && TREE_VEC_LENGTH (packed_args) > 0)
7359 {
7360 if (complain & tf_error)
7361 error ("wrong number of template arguments (%d, should be %d)",
7362 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7363 return error_mark_node;
7364 }
7365
7366 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7367 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7368 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7369 else
7370 {
7371 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7372 TREE_TYPE (argument_pack)
7373 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7374 TREE_CONSTANT (argument_pack) = 1;
7375 }
7376
7377 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7378 if (CHECKING_P)
7379 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7380 TREE_VEC_LENGTH (packed_args));
7381 return argument_pack;
7382 }
7383
7384 /* Returns the number of pack expansions in the template argument vector
7385 ARGS. */
7386
7387 static int
7388 pack_expansion_args_count (tree args)
7389 {
7390 int i;
7391 int count = 0;
7392 if (args)
7393 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7394 {
7395 tree elt = TREE_VEC_ELT (args, i);
7396 if (elt && PACK_EXPANSION_P (elt))
7397 ++count;
7398 }
7399 return count;
7400 }
7401
7402 /* Convert all template arguments to their appropriate types, and
7403 return a vector containing the innermost resulting template
7404 arguments. If any error occurs, return error_mark_node. Error and
7405 warning messages are issued under control of COMPLAIN.
7406
7407 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7408 for arguments not specified in ARGS. Otherwise, if
7409 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7410 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7411 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7412 ARGS. */
7413
7414 static tree
7415 coerce_template_parms (tree parms,
7416 tree args,
7417 tree in_decl,
7418 tsubst_flags_t complain,
7419 bool require_all_args,
7420 bool use_default_args)
7421 {
7422 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7423 tree orig_inner_args;
7424 tree inner_args;
7425 tree new_args;
7426 tree new_inner_args;
7427 int saved_unevaluated_operand;
7428 int saved_inhibit_evaluation_warnings;
7429
7430 /* When used as a boolean value, indicates whether this is a
7431 variadic template parameter list. Since it's an int, we can also
7432 subtract it from nparms to get the number of non-variadic
7433 parameters. */
7434 int variadic_p = 0;
7435 int variadic_args_p = 0;
7436 int post_variadic_parms = 0;
7437
7438 /* Likewise for parameters with default arguments. */
7439 int default_p = 0;
7440
7441 if (args == error_mark_node)
7442 return error_mark_node;
7443
7444 nparms = TREE_VEC_LENGTH (parms);
7445
7446 /* Determine if there are any parameter packs or default arguments. */
7447 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7448 {
7449 tree parm = TREE_VEC_ELT (parms, parm_idx);
7450 if (variadic_p)
7451 ++post_variadic_parms;
7452 if (template_parameter_pack_p (TREE_VALUE (parm)))
7453 ++variadic_p;
7454 if (TREE_PURPOSE (parm))
7455 ++default_p;
7456 }
7457
7458 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7459 /* If there are no parameters that follow a parameter pack, we need to
7460 expand any argument packs so that we can deduce a parameter pack from
7461 some non-packed args followed by an argument pack, as in variadic85.C.
7462 If there are such parameters, we need to leave argument packs intact
7463 so the arguments are assigned properly. This can happen when dealing
7464 with a nested class inside a partial specialization of a class
7465 template, as in variadic92.C, or when deducing a template parameter pack
7466 from a sub-declarator, as in variadic114.C. */
7467 if (!post_variadic_parms)
7468 inner_args = expand_template_argument_pack (inner_args);
7469
7470 /* Count any pack expansion args. */
7471 variadic_args_p = pack_expansion_args_count (inner_args);
7472
7473 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7474 if ((nargs > nparms && !variadic_p)
7475 || (nargs < nparms - variadic_p
7476 && require_all_args
7477 && !variadic_args_p
7478 && (!use_default_args
7479 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7480 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7481 {
7482 if (complain & tf_error)
7483 {
7484 if (variadic_p || default_p)
7485 {
7486 nparms -= variadic_p + default_p;
7487 error ("wrong number of template arguments "
7488 "(%d, should be at least %d)", nargs, nparms);
7489 }
7490 else
7491 error ("wrong number of template arguments "
7492 "(%d, should be %d)", nargs, nparms);
7493
7494 if (in_decl)
7495 inform (DECL_SOURCE_LOCATION (in_decl),
7496 "provided for %qD", in_decl);
7497 }
7498
7499 return error_mark_node;
7500 }
7501 /* We can't pass a pack expansion to a non-pack parameter of an alias
7502 template (DR 1430). */
7503 else if (in_decl
7504 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7505 || concept_template_p (in_decl))
7506 && variadic_args_p
7507 && nargs - variadic_args_p < nparms - variadic_p)
7508 {
7509 if (complain & tf_error)
7510 {
7511 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7512 {
7513 tree arg = TREE_VEC_ELT (inner_args, i);
7514 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7515
7516 if (PACK_EXPANSION_P (arg)
7517 && !template_parameter_pack_p (parm))
7518 {
7519 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7520 error_at (location_of (arg),
7521 "pack expansion argument for non-pack parameter "
7522 "%qD of alias template %qD", parm, in_decl);
7523 else
7524 error_at (location_of (arg),
7525 "pack expansion argument for non-pack parameter "
7526 "%qD of concept %qD", parm, in_decl);
7527 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7528 goto found;
7529 }
7530 }
7531 gcc_unreachable ();
7532 found:;
7533 }
7534 return error_mark_node;
7535 }
7536
7537 /* We need to evaluate the template arguments, even though this
7538 template-id may be nested within a "sizeof". */
7539 saved_unevaluated_operand = cp_unevaluated_operand;
7540 cp_unevaluated_operand = 0;
7541 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7542 c_inhibit_evaluation_warnings = 0;
7543 new_inner_args = make_tree_vec (nparms);
7544 new_args = add_outermost_template_args (args, new_inner_args);
7545 int pack_adjust = 0;
7546 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7547 {
7548 tree arg;
7549 tree parm;
7550
7551 /* Get the Ith template parameter. */
7552 parm = TREE_VEC_ELT (parms, parm_idx);
7553
7554 if (parm == error_mark_node)
7555 {
7556 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7557 continue;
7558 }
7559
7560 /* Calculate the next argument. */
7561 if (arg_idx < nargs)
7562 arg = TREE_VEC_ELT (inner_args, arg_idx);
7563 else
7564 arg = NULL_TREE;
7565
7566 if (template_parameter_pack_p (TREE_VALUE (parm))
7567 && !(arg && ARGUMENT_PACK_P (arg)))
7568 {
7569 /* Some arguments will be placed in the
7570 template parameter pack PARM. */
7571 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7572 inner_args, arg_idx,
7573 new_args, &lost,
7574 in_decl, complain);
7575
7576 if (arg == NULL_TREE)
7577 {
7578 /* We don't know how many args we have yet, just use the
7579 unconverted (and still packed) ones for now. */
7580 new_inner_args = orig_inner_args;
7581 arg_idx = nargs;
7582 break;
7583 }
7584
7585 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7586
7587 /* Store this argument. */
7588 if (arg == error_mark_node)
7589 {
7590 lost++;
7591 /* We are done with all of the arguments. */
7592 arg_idx = nargs;
7593 }
7594 else
7595 {
7596 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7597 arg_idx += pack_adjust;
7598 }
7599
7600 continue;
7601 }
7602 else if (arg)
7603 {
7604 if (PACK_EXPANSION_P (arg))
7605 {
7606 /* "If every valid specialization of a variadic template
7607 requires an empty template parameter pack, the template is
7608 ill-formed, no diagnostic required." So check that the
7609 pattern works with this parameter. */
7610 tree pattern = PACK_EXPANSION_PATTERN (arg);
7611 tree conv = convert_template_argument (TREE_VALUE (parm),
7612 pattern, new_args,
7613 complain, parm_idx,
7614 in_decl);
7615 if (conv == error_mark_node)
7616 {
7617 inform (input_location, "so any instantiation with a "
7618 "non-empty parameter pack would be ill-formed");
7619 ++lost;
7620 }
7621 else if (TYPE_P (conv) && !TYPE_P (pattern))
7622 /* Recover from missing typename. */
7623 TREE_VEC_ELT (inner_args, arg_idx)
7624 = make_pack_expansion (conv);
7625
7626 /* We don't know how many args we have yet, just
7627 use the unconverted ones for now. */
7628 new_inner_args = inner_args;
7629 arg_idx = nargs;
7630 break;
7631 }
7632 }
7633 else if (require_all_args)
7634 {
7635 /* There must be a default arg in this case. */
7636 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7637 complain, in_decl);
7638 /* The position of the first default template argument,
7639 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7640 Record that. */
7641 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7642 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7643 arg_idx - pack_adjust);
7644 }
7645 else
7646 break;
7647
7648 if (arg == error_mark_node)
7649 {
7650 if (complain & tf_error)
7651 error ("template argument %d is invalid", arg_idx + 1);
7652 }
7653 else if (!arg)
7654 /* This only occurs if there was an error in the template
7655 parameter list itself (which we would already have
7656 reported) that we are trying to recover from, e.g., a class
7657 template with a parameter list such as
7658 template<typename..., typename>. */
7659 ++lost;
7660 else
7661 arg = convert_template_argument (TREE_VALUE (parm),
7662 arg, new_args, complain,
7663 parm_idx, in_decl);
7664
7665 if (arg == error_mark_node)
7666 lost++;
7667 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7668 }
7669 cp_unevaluated_operand = saved_unevaluated_operand;
7670 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7671
7672 if (variadic_p && arg_idx < nargs)
7673 {
7674 if (complain & tf_error)
7675 {
7676 error ("wrong number of template arguments "
7677 "(%d, should be %d)", nargs, arg_idx);
7678 if (in_decl)
7679 error ("provided for %q+D", in_decl);
7680 }
7681 return error_mark_node;
7682 }
7683
7684 if (lost)
7685 return error_mark_node;
7686
7687 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7688 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7689 TREE_VEC_LENGTH (new_inner_args));
7690
7691 return new_inner_args;
7692 }
7693
7694 /* Convert all template arguments to their appropriate types, and
7695 return a vector containing the innermost resulting template
7696 arguments. If any error occurs, return error_mark_node. Error and
7697 warning messages are not issued.
7698
7699 Note that no function argument deduction is performed, and default
7700 arguments are used to fill in unspecified arguments. */
7701 tree
7702 coerce_template_parms (tree parms, tree args, tree in_decl)
7703 {
7704 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7705 }
7706
7707 /* Convert all template arguments to their appropriate type, and
7708 instantiate default arguments as needed. This returns a vector
7709 containing the innermost resulting template arguments, or
7710 error_mark_node if unsuccessful. */
7711 tree
7712 coerce_template_parms (tree parms, tree args, tree in_decl,
7713 tsubst_flags_t complain)
7714 {
7715 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7716 }
7717
7718 /* Like coerce_template_parms. If PARMS represents all template
7719 parameters levels, this function returns a vector of vectors
7720 representing all the resulting argument levels. Note that in this
7721 case, only the innermost arguments are coerced because the
7722 outermost ones are supposed to have been coerced already.
7723
7724 Otherwise, if PARMS represents only (the innermost) vector of
7725 parameters, this function returns a vector containing just the
7726 innermost resulting arguments. */
7727
7728 static tree
7729 coerce_innermost_template_parms (tree parms,
7730 tree args,
7731 tree in_decl,
7732 tsubst_flags_t complain,
7733 bool require_all_args,
7734 bool use_default_args)
7735 {
7736 int parms_depth = TMPL_PARMS_DEPTH (parms);
7737 int args_depth = TMPL_ARGS_DEPTH (args);
7738 tree coerced_args;
7739
7740 if (parms_depth > 1)
7741 {
7742 coerced_args = make_tree_vec (parms_depth);
7743 tree level;
7744 int cur_depth;
7745
7746 for (level = parms, cur_depth = parms_depth;
7747 parms_depth > 0 && level != NULL_TREE;
7748 level = TREE_CHAIN (level), --cur_depth)
7749 {
7750 tree l;
7751 if (cur_depth == args_depth)
7752 l = coerce_template_parms (TREE_VALUE (level),
7753 args, in_decl, complain,
7754 require_all_args,
7755 use_default_args);
7756 else
7757 l = TMPL_ARGS_LEVEL (args, cur_depth);
7758
7759 if (l == error_mark_node)
7760 return error_mark_node;
7761
7762 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7763 }
7764 }
7765 else
7766 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7767 args, in_decl, complain,
7768 require_all_args,
7769 use_default_args);
7770 return coerced_args;
7771 }
7772
7773 /* Returns 1 if template args OT and NT are equivalent. */
7774
7775 static int
7776 template_args_equal (tree ot, tree nt)
7777 {
7778 if (nt == ot)
7779 return 1;
7780 if (nt == NULL_TREE || ot == NULL_TREE)
7781 return false;
7782
7783 if (TREE_CODE (nt) == TREE_VEC)
7784 /* For member templates */
7785 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7786 else if (PACK_EXPANSION_P (ot))
7787 return (PACK_EXPANSION_P (nt)
7788 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7789 PACK_EXPANSION_PATTERN (nt))
7790 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7791 PACK_EXPANSION_EXTRA_ARGS (nt)));
7792 else if (ARGUMENT_PACK_P (ot))
7793 {
7794 int i, len;
7795 tree opack, npack;
7796
7797 if (!ARGUMENT_PACK_P (nt))
7798 return 0;
7799
7800 opack = ARGUMENT_PACK_ARGS (ot);
7801 npack = ARGUMENT_PACK_ARGS (nt);
7802 len = TREE_VEC_LENGTH (opack);
7803 if (TREE_VEC_LENGTH (npack) != len)
7804 return 0;
7805 for (i = 0; i < len; ++i)
7806 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7807 TREE_VEC_ELT (npack, i)))
7808 return 0;
7809 return 1;
7810 }
7811 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7812 {
7813 /* We get here probably because we are in the middle of substituting
7814 into the pattern of a pack expansion. In that case the
7815 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7816 interested in. So we want to use the initial pack argument for
7817 the comparison. */
7818 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7819 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7820 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7821 return template_args_equal (ot, nt);
7822 }
7823 else if (TYPE_P (nt))
7824 {
7825 if (!TYPE_P (ot))
7826 return false;
7827 /* Don't treat an alias template specialization with dependent
7828 arguments as equivalent to its underlying type when used as a
7829 template argument; we need them to be distinct so that we
7830 substitute into the specialization arguments at instantiation
7831 time. And aliases can't be equivalent without being ==, so
7832 we don't need to look any deeper. */
7833 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7834 return false;
7835 else
7836 return same_type_p (ot, nt);
7837 }
7838 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7839 return 0;
7840 else
7841 {
7842 /* Try to treat a template non-type argument that has been converted
7843 to the parameter type as equivalent to one that hasn't yet. */
7844 for (enum tree_code code1 = TREE_CODE (ot);
7845 CONVERT_EXPR_CODE_P (code1)
7846 || code1 == NON_LVALUE_EXPR;
7847 code1 = TREE_CODE (ot))
7848 ot = TREE_OPERAND (ot, 0);
7849 for (enum tree_code code2 = TREE_CODE (nt);
7850 CONVERT_EXPR_CODE_P (code2)
7851 || code2 == NON_LVALUE_EXPR;
7852 code2 = TREE_CODE (nt))
7853 nt = TREE_OPERAND (nt, 0);
7854
7855 return cp_tree_equal (ot, nt);
7856 }
7857 }
7858
7859 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7860 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7861 NEWARG_PTR with the offending arguments if they are non-NULL. */
7862
7863 static int
7864 comp_template_args_with_info (tree oldargs, tree newargs,
7865 tree *oldarg_ptr, tree *newarg_ptr)
7866 {
7867 int i;
7868
7869 if (oldargs == newargs)
7870 return 1;
7871
7872 if (!oldargs || !newargs)
7873 return 0;
7874
7875 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7876 return 0;
7877
7878 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7879 {
7880 tree nt = TREE_VEC_ELT (newargs, i);
7881 tree ot = TREE_VEC_ELT (oldargs, i);
7882
7883 if (! template_args_equal (ot, nt))
7884 {
7885 if (oldarg_ptr != NULL)
7886 *oldarg_ptr = ot;
7887 if (newarg_ptr != NULL)
7888 *newarg_ptr = nt;
7889 return 0;
7890 }
7891 }
7892 return 1;
7893 }
7894
7895 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7896 of template arguments. Returns 0 otherwise. */
7897
7898 int
7899 comp_template_args (tree oldargs, tree newargs)
7900 {
7901 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7902 }
7903
7904 static void
7905 add_pending_template (tree d)
7906 {
7907 tree ti = (TYPE_P (d)
7908 ? CLASSTYPE_TEMPLATE_INFO (d)
7909 : DECL_TEMPLATE_INFO (d));
7910 struct pending_template *pt;
7911 int level;
7912
7913 if (TI_PENDING_TEMPLATE_FLAG (ti))
7914 return;
7915
7916 /* We are called both from instantiate_decl, where we've already had a
7917 tinst_level pushed, and instantiate_template, where we haven't.
7918 Compensate. */
7919 level = !current_tinst_level || current_tinst_level->decl != d;
7920
7921 if (level)
7922 push_tinst_level (d);
7923
7924 pt = ggc_alloc<pending_template> ();
7925 pt->next = NULL;
7926 pt->tinst = current_tinst_level;
7927 if (last_pending_template)
7928 last_pending_template->next = pt;
7929 else
7930 pending_templates = pt;
7931
7932 last_pending_template = pt;
7933
7934 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7935
7936 if (level)
7937 pop_tinst_level ();
7938 }
7939
7940
7941 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7942 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7943 documentation for TEMPLATE_ID_EXPR. */
7944
7945 tree
7946 lookup_template_function (tree fns, tree arglist)
7947 {
7948 tree type;
7949
7950 if (fns == error_mark_node || arglist == error_mark_node)
7951 return error_mark_node;
7952
7953 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7954
7955 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7956 {
7957 error ("%q#D is not a function template", fns);
7958 return error_mark_node;
7959 }
7960
7961 if (BASELINK_P (fns))
7962 {
7963 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7964 unknown_type_node,
7965 BASELINK_FUNCTIONS (fns),
7966 arglist);
7967 return fns;
7968 }
7969
7970 type = TREE_TYPE (fns);
7971 if (TREE_CODE (fns) == OVERLOAD || !type)
7972 type = unknown_type_node;
7973
7974 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7975 }
7976
7977 /* Within the scope of a template class S<T>, the name S gets bound
7978 (in build_self_reference) to a TYPE_DECL for the class, not a
7979 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7980 or one of its enclosing classes, and that type is a template,
7981 return the associated TEMPLATE_DECL. Otherwise, the original
7982 DECL is returned.
7983
7984 Also handle the case when DECL is a TREE_LIST of ambiguous
7985 injected-class-names from different bases. */
7986
7987 tree
7988 maybe_get_template_decl_from_type_decl (tree decl)
7989 {
7990 if (decl == NULL_TREE)
7991 return decl;
7992
7993 /* DR 176: A lookup that finds an injected-class-name (10.2
7994 [class.member.lookup]) can result in an ambiguity in certain cases
7995 (for example, if it is found in more than one base class). If all of
7996 the injected-class-names that are found refer to specializations of
7997 the same class template, and if the name is followed by a
7998 template-argument-list, the reference refers to the class template
7999 itself and not a specialization thereof, and is not ambiguous. */
8000 if (TREE_CODE (decl) == TREE_LIST)
8001 {
8002 tree t, tmpl = NULL_TREE;
8003 for (t = decl; t; t = TREE_CHAIN (t))
8004 {
8005 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8006 if (!tmpl)
8007 tmpl = elt;
8008 else if (tmpl != elt)
8009 break;
8010 }
8011 if (tmpl && t == NULL_TREE)
8012 return tmpl;
8013 else
8014 return decl;
8015 }
8016
8017 return (decl != NULL_TREE
8018 && DECL_SELF_REFERENCE_P (decl)
8019 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8020 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8021 }
8022
8023 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8024 parameters, find the desired type.
8025
8026 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8027
8028 IN_DECL, if non-NULL, is the template declaration we are trying to
8029 instantiate.
8030
8031 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8032 the class we are looking up.
8033
8034 Issue error and warning messages under control of COMPLAIN.
8035
8036 If the template class is really a local class in a template
8037 function, then the FUNCTION_CONTEXT is the function in which it is
8038 being instantiated.
8039
8040 ??? Note that this function is currently called *twice* for each
8041 template-id: the first time from the parser, while creating the
8042 incomplete type (finish_template_type), and the second type during the
8043 real instantiation (instantiate_template_class). This is surely something
8044 that we want to avoid. It also causes some problems with argument
8045 coercion (see convert_nontype_argument for more information on this). */
8046
8047 static tree
8048 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8049 int entering_scope, tsubst_flags_t complain)
8050 {
8051 tree templ = NULL_TREE, parmlist;
8052 tree t;
8053 spec_entry **slot;
8054 spec_entry *entry;
8055 spec_entry elt;
8056 hashval_t hash;
8057
8058 if (identifier_p (d1))
8059 {
8060 tree value = innermost_non_namespace_value (d1);
8061 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8062 templ = value;
8063 else
8064 {
8065 if (context)
8066 push_decl_namespace (context);
8067 templ = lookup_name (d1);
8068 templ = maybe_get_template_decl_from_type_decl (templ);
8069 if (context)
8070 pop_decl_namespace ();
8071 }
8072 if (templ)
8073 context = DECL_CONTEXT (templ);
8074 }
8075 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8076 {
8077 tree type = TREE_TYPE (d1);
8078
8079 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8080 an implicit typename for the second A. Deal with it. */
8081 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8082 type = TREE_TYPE (type);
8083
8084 if (CLASSTYPE_TEMPLATE_INFO (type))
8085 {
8086 templ = CLASSTYPE_TI_TEMPLATE (type);
8087 d1 = DECL_NAME (templ);
8088 }
8089 }
8090 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8091 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8092 {
8093 templ = TYPE_TI_TEMPLATE (d1);
8094 d1 = DECL_NAME (templ);
8095 }
8096 else if (DECL_TYPE_TEMPLATE_P (d1))
8097 {
8098 templ = d1;
8099 d1 = DECL_NAME (templ);
8100 context = DECL_CONTEXT (templ);
8101 }
8102 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8103 {
8104 templ = d1;
8105 d1 = DECL_NAME (templ);
8106 }
8107
8108 /* Issue an error message if we didn't find a template. */
8109 if (! templ)
8110 {
8111 if (complain & tf_error)
8112 error ("%qT is not a template", d1);
8113 return error_mark_node;
8114 }
8115
8116 if (TREE_CODE (templ) != TEMPLATE_DECL
8117 /* Make sure it's a user visible template, if it was named by
8118 the user. */
8119 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8120 && !PRIMARY_TEMPLATE_P (templ)))
8121 {
8122 if (complain & tf_error)
8123 {
8124 error ("non-template type %qT used as a template", d1);
8125 if (in_decl)
8126 error ("for template declaration %q+D", in_decl);
8127 }
8128 return error_mark_node;
8129 }
8130
8131 complain &= ~tf_user;
8132
8133 /* An alias that just changes the name of a template is equivalent to the
8134 other template, so if any of the arguments are pack expansions, strip
8135 the alias to avoid problems with a pack expansion passed to a non-pack
8136 alias template parameter (DR 1430). */
8137 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8138 templ = get_underlying_template (templ);
8139
8140 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8141 {
8142 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8143 template arguments */
8144
8145 tree parm;
8146 tree arglist2;
8147 tree outer;
8148
8149 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8150
8151 /* Consider an example where a template template parameter declared as
8152
8153 template <class T, class U = std::allocator<T> > class TT
8154
8155 The template parameter level of T and U are one level larger than
8156 of TT. To proper process the default argument of U, say when an
8157 instantiation `TT<int>' is seen, we need to build the full
8158 arguments containing {int} as the innermost level. Outer levels,
8159 available when not appearing as default template argument, can be
8160 obtained from the arguments of the enclosing template.
8161
8162 Suppose that TT is later substituted with std::vector. The above
8163 instantiation is `TT<int, std::allocator<T> >' with TT at
8164 level 1, and T at level 2, while the template arguments at level 1
8165 becomes {std::vector} and the inner level 2 is {int}. */
8166
8167 outer = DECL_CONTEXT (templ);
8168 if (outer)
8169 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8170 else if (current_template_parms)
8171 {
8172 /* This is an argument of the current template, so we haven't set
8173 DECL_CONTEXT yet. */
8174 tree relevant_template_parms;
8175
8176 /* Parameter levels that are greater than the level of the given
8177 template template parm are irrelevant. */
8178 relevant_template_parms = current_template_parms;
8179 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8180 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8181 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8182
8183 outer = template_parms_to_args (relevant_template_parms);
8184 }
8185
8186 if (outer)
8187 arglist = add_to_template_args (outer, arglist);
8188
8189 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8190 complain,
8191 /*require_all_args=*/true,
8192 /*use_default_args=*/true);
8193 if (arglist2 == error_mark_node
8194 || (!uses_template_parms (arglist2)
8195 && check_instantiated_args (templ, arglist2, complain)))
8196 return error_mark_node;
8197
8198 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8199 return parm;
8200 }
8201 else
8202 {
8203 tree template_type = TREE_TYPE (templ);
8204 tree gen_tmpl;
8205 tree type_decl;
8206 tree found = NULL_TREE;
8207 int arg_depth;
8208 int parm_depth;
8209 int is_dependent_type;
8210 int use_partial_inst_tmpl = false;
8211
8212 if (template_type == error_mark_node)
8213 /* An error occurred while building the template TEMPL, and a
8214 diagnostic has most certainly been emitted for that
8215 already. Let's propagate that error. */
8216 return error_mark_node;
8217
8218 gen_tmpl = most_general_template (templ);
8219 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8220 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8221 arg_depth = TMPL_ARGS_DEPTH (arglist);
8222
8223 if (arg_depth == 1 && parm_depth > 1)
8224 {
8225 /* We've been given an incomplete set of template arguments.
8226 For example, given:
8227
8228 template <class T> struct S1 {
8229 template <class U> struct S2 {};
8230 template <class U> struct S2<U*> {};
8231 };
8232
8233 we will be called with an ARGLIST of `U*', but the
8234 TEMPLATE will be `template <class T> template
8235 <class U> struct S1<T>::S2'. We must fill in the missing
8236 arguments. */
8237 arglist
8238 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8239 arglist);
8240 arg_depth = TMPL_ARGS_DEPTH (arglist);
8241 }
8242
8243 /* Now we should have enough arguments. */
8244 gcc_assert (parm_depth == arg_depth);
8245
8246 /* From here on, we're only interested in the most general
8247 template. */
8248
8249 /* Calculate the BOUND_ARGS. These will be the args that are
8250 actually tsubst'd into the definition to create the
8251 instantiation. */
8252 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8253 complain,
8254 /*require_all_args=*/true,
8255 /*use_default_args=*/true);
8256
8257 if (arglist == error_mark_node)
8258 /* We were unable to bind the arguments. */
8259 return error_mark_node;
8260
8261 /* In the scope of a template class, explicit references to the
8262 template class refer to the type of the template, not any
8263 instantiation of it. For example, in:
8264
8265 template <class T> class C { void f(C<T>); }
8266
8267 the `C<T>' is just the same as `C'. Outside of the
8268 class, however, such a reference is an instantiation. */
8269 if ((entering_scope
8270 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8271 || currently_open_class (template_type))
8272 /* comp_template_args is expensive, check it last. */
8273 && comp_template_args (TYPE_TI_ARGS (template_type),
8274 arglist))
8275 return template_type;
8276
8277 /* If we already have this specialization, return it. */
8278 elt.tmpl = gen_tmpl;
8279 elt.args = arglist;
8280 elt.spec = NULL_TREE;
8281 hash = spec_hasher::hash (&elt);
8282 entry = type_specializations->find_with_hash (&elt, hash);
8283
8284 if (entry)
8285 return entry->spec;
8286
8287 /* If the the template's constraints are not satisfied,
8288 then we cannot form a valid type.
8289
8290 Note that the check is deferred until after the hash
8291 lookup. This prevents redundant checks on previously
8292 instantiated specializations. */
8293 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8294 {
8295 if (complain & tf_error)
8296 {
8297 error ("template constraint failure");
8298 diagnose_constraints (input_location, gen_tmpl, arglist);
8299 }
8300 return error_mark_node;
8301 }
8302
8303 is_dependent_type = uses_template_parms (arglist);
8304
8305 /* If the deduced arguments are invalid, then the binding
8306 failed. */
8307 if (!is_dependent_type
8308 && check_instantiated_args (gen_tmpl,
8309 INNERMOST_TEMPLATE_ARGS (arglist),
8310 complain))
8311 return error_mark_node;
8312
8313 if (!is_dependent_type
8314 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8315 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8316 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8317 {
8318 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8319 DECL_NAME (gen_tmpl),
8320 /*tag_scope=*/ts_global);
8321 return found;
8322 }
8323
8324 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8325 complain, in_decl);
8326 if (context == error_mark_node)
8327 return error_mark_node;
8328
8329 if (!context)
8330 context = global_namespace;
8331
8332 /* Create the type. */
8333 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8334 {
8335 /* The user referred to a specialization of an alias
8336 template represented by GEN_TMPL.
8337
8338 [temp.alias]/2 says:
8339
8340 When a template-id refers to the specialization of an
8341 alias template, it is equivalent to the associated
8342 type obtained by substitution of its
8343 template-arguments for the template-parameters in the
8344 type-id of the alias template. */
8345
8346 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8347 /* Note that the call above (by indirectly calling
8348 register_specialization in tsubst_decl) registers the
8349 TYPE_DECL representing the specialization of the alias
8350 template. So next time someone substitutes ARGLIST for
8351 the template parms into the alias template (GEN_TMPL),
8352 she'll get that TYPE_DECL back. */
8353
8354 if (t == error_mark_node)
8355 return t;
8356 }
8357 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8358 {
8359 if (!is_dependent_type)
8360 {
8361 set_current_access_from_decl (TYPE_NAME (template_type));
8362 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8363 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8364 arglist, complain, in_decl),
8365 SCOPED_ENUM_P (template_type), NULL);
8366
8367 if (t == error_mark_node)
8368 return t;
8369 }
8370 else
8371 {
8372 /* We don't want to call start_enum for this type, since
8373 the values for the enumeration constants may involve
8374 template parameters. And, no one should be interested
8375 in the enumeration constants for such a type. */
8376 t = cxx_make_type (ENUMERAL_TYPE);
8377 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8378 }
8379 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8380 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8381 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8382 }
8383 else if (CLASS_TYPE_P (template_type))
8384 {
8385 t = make_class_type (TREE_CODE (template_type));
8386 CLASSTYPE_DECLARED_CLASS (t)
8387 = CLASSTYPE_DECLARED_CLASS (template_type);
8388 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8389 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8390
8391 /* A local class. Make sure the decl gets registered properly. */
8392 if (context == current_function_decl)
8393 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8394
8395 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8396 /* This instantiation is another name for the primary
8397 template type. Set the TYPE_CANONICAL field
8398 appropriately. */
8399 TYPE_CANONICAL (t) = template_type;
8400 else if (any_template_arguments_need_structural_equality_p (arglist))
8401 /* Some of the template arguments require structural
8402 equality testing, so this template class requires
8403 structural equality testing. */
8404 SET_TYPE_STRUCTURAL_EQUALITY (t);
8405 }
8406 else
8407 gcc_unreachable ();
8408
8409 /* If we called start_enum or pushtag above, this information
8410 will already be set up. */
8411 if (!TYPE_NAME (t))
8412 {
8413 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8414
8415 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8416 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8417 DECL_SOURCE_LOCATION (type_decl)
8418 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8419 }
8420 else
8421 type_decl = TYPE_NAME (t);
8422
8423 if (CLASS_TYPE_P (template_type))
8424 {
8425 TREE_PRIVATE (type_decl)
8426 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8427 TREE_PROTECTED (type_decl)
8428 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8429 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8430 {
8431 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8432 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8433 }
8434 }
8435
8436 if (OVERLOAD_TYPE_P (t)
8437 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8438 {
8439 static const char *tags[] = {"abi_tag", "may_alias"};
8440
8441 for (unsigned ix = 0; ix != 2; ix++)
8442 {
8443 tree attributes
8444 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8445
8446 if (!attributes)
8447 ;
8448 else if (!TREE_CHAIN (attributes) && !TYPE_ATTRIBUTES (t))
8449 TYPE_ATTRIBUTES (t) = attributes;
8450 else
8451 TYPE_ATTRIBUTES (t)
8452 = tree_cons (TREE_PURPOSE (attributes),
8453 TREE_VALUE (attributes),
8454 TYPE_ATTRIBUTES (t));
8455 }
8456 }
8457
8458 /* Let's consider the explicit specialization of a member
8459 of a class template specialization that is implicitly instantiated,
8460 e.g.:
8461 template<class T>
8462 struct S
8463 {
8464 template<class U> struct M {}; //#0
8465 };
8466
8467 template<>
8468 template<>
8469 struct S<int>::M<char> //#1
8470 {
8471 int i;
8472 };
8473 [temp.expl.spec]/4 says this is valid.
8474
8475 In this case, when we write:
8476 S<int>::M<char> m;
8477
8478 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8479 the one of #0.
8480
8481 When we encounter #1, we want to store the partial instantiation
8482 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8483
8484 For all cases other than this "explicit specialization of member of a
8485 class template", we just want to store the most general template into
8486 the CLASSTYPE_TI_TEMPLATE of M.
8487
8488 This case of "explicit specialization of member of a class template"
8489 only happens when:
8490 1/ the enclosing class is an instantiation of, and therefore not
8491 the same as, the context of the most general template, and
8492 2/ we aren't looking at the partial instantiation itself, i.e.
8493 the innermost arguments are not the same as the innermost parms of
8494 the most general template.
8495
8496 So it's only when 1/ and 2/ happens that we want to use the partial
8497 instantiation of the member template in lieu of its most general
8498 template. */
8499
8500 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8501 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8502 /* the enclosing class must be an instantiation... */
8503 && CLASS_TYPE_P (context)
8504 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8505 {
8506 tree partial_inst_args;
8507 TREE_VEC_LENGTH (arglist)--;
8508 ++processing_template_decl;
8509 partial_inst_args =
8510 tsubst (INNERMOST_TEMPLATE_ARGS
8511 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8512 arglist, complain, NULL_TREE);
8513 --processing_template_decl;
8514 TREE_VEC_LENGTH (arglist)++;
8515 use_partial_inst_tmpl =
8516 /*...and we must not be looking at the partial instantiation
8517 itself. */
8518 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8519 partial_inst_args);
8520 }
8521
8522 if (!use_partial_inst_tmpl)
8523 /* This case is easy; there are no member templates involved. */
8524 found = gen_tmpl;
8525 else
8526 {
8527 /* This is a full instantiation of a member template. Find
8528 the partial instantiation of which this is an instance. */
8529
8530 /* Temporarily reduce by one the number of levels in the ARGLIST
8531 so as to avoid comparing the last set of arguments. */
8532 TREE_VEC_LENGTH (arglist)--;
8533 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8534 TREE_VEC_LENGTH (arglist)++;
8535 /* FOUND is either a proper class type, or an alias
8536 template specialization. In the later case, it's a
8537 TYPE_DECL, resulting from the substituting of arguments
8538 for parameters in the TYPE_DECL of the alias template
8539 done earlier. So be careful while getting the template
8540 of FOUND. */
8541 found = TREE_CODE (found) == TYPE_DECL
8542 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8543 : CLASSTYPE_TI_TEMPLATE (found);
8544 }
8545
8546 // Build template info for the new specialization.
8547 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8548
8549 elt.spec = t;
8550 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8551 entry = ggc_alloc<spec_entry> ();
8552 *entry = elt;
8553 *slot = entry;
8554
8555 /* Note this use of the partial instantiation so we can check it
8556 later in maybe_process_partial_specialization. */
8557 DECL_TEMPLATE_INSTANTIATIONS (found)
8558 = tree_cons (arglist, t,
8559 DECL_TEMPLATE_INSTANTIATIONS (found));
8560
8561 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8562 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8563 /* Now that the type has been registered on the instantiations
8564 list, we set up the enumerators. Because the enumeration
8565 constants may involve the enumeration type itself, we make
8566 sure to register the type first, and then create the
8567 constants. That way, doing tsubst_expr for the enumeration
8568 constants won't result in recursive calls here; we'll find
8569 the instantiation and exit above. */
8570 tsubst_enum (template_type, t, arglist);
8571
8572 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8573 /* If the type makes use of template parameters, the
8574 code that generates debugging information will crash. */
8575 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8576
8577 /* Possibly limit visibility based on template args. */
8578 TREE_PUBLIC (type_decl) = 1;
8579 determine_visibility (type_decl);
8580
8581 inherit_targ_abi_tags (t);
8582
8583 return t;
8584 }
8585 }
8586
8587 /* Wrapper for lookup_template_class_1. */
8588
8589 tree
8590 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8591 int entering_scope, tsubst_flags_t complain)
8592 {
8593 tree ret;
8594 timevar_push (TV_TEMPLATE_INST);
8595 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8596 entering_scope, complain);
8597 timevar_pop (TV_TEMPLATE_INST);
8598 return ret;
8599 }
8600
8601 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8602
8603 tree
8604 lookup_template_variable (tree templ, tree arglist)
8605 {
8606 /* The type of the expression is NULL_TREE since the template-id could refer
8607 to an explicit or partial specialization. */
8608 tree type = NULL_TREE;
8609 if (flag_concepts && variable_concept_p (templ))
8610 /* Except that concepts are always bool. */
8611 type = boolean_type_node;
8612 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8613 }
8614
8615 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8616
8617 tree
8618 finish_template_variable (tree var, tsubst_flags_t complain)
8619 {
8620 tree templ = TREE_OPERAND (var, 0);
8621 tree arglist = TREE_OPERAND (var, 1);
8622
8623 /* We never want to return a VAR_DECL for a variable concept, since they
8624 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8625 bool concept_p = flag_concepts && variable_concept_p (templ);
8626 if (concept_p && processing_template_decl)
8627 return var;
8628
8629 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8630 arglist = add_outermost_template_args (tmpl_args, arglist);
8631
8632 tree parms = DECL_TEMPLATE_PARMS (templ);
8633 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8634 /*req_all*/true,
8635 /*use_default*/true);
8636
8637 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8638 {
8639 if (complain & tf_error)
8640 {
8641 error ("constraints for %qD not satisfied", templ);
8642 diagnose_constraints (location_of (var), templ, arglist);
8643 }
8644 return error_mark_node;
8645 }
8646
8647 /* If a template-id refers to a specialization of a variable
8648 concept, then the expression is true if and only if the
8649 concept's constraints are satisfied by the given template
8650 arguments.
8651
8652 NOTE: This is an extension of Concepts Lite TS that
8653 allows constraints to be used in expressions. */
8654 if (concept_p)
8655 {
8656 tree decl = DECL_TEMPLATE_RESULT (templ);
8657 return evaluate_variable_concept (decl, arglist);
8658 }
8659
8660 return instantiate_template (templ, arglist, complain);
8661 }
8662 \f
8663 struct pair_fn_data
8664 {
8665 tree_fn_t fn;
8666 void *data;
8667 /* True when we should also visit template parameters that occur in
8668 non-deduced contexts. */
8669 bool include_nondeduced_p;
8670 hash_set<tree> *visited;
8671 };
8672
8673 /* Called from for_each_template_parm via walk_tree. */
8674
8675 static tree
8676 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8677 {
8678 tree t = *tp;
8679 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8680 tree_fn_t fn = pfd->fn;
8681 void *data = pfd->data;
8682 tree result = NULL_TREE;
8683
8684 #define WALK_SUBTREE(NODE) \
8685 do \
8686 { \
8687 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8688 pfd->include_nondeduced_p); \
8689 if (result) goto out; \
8690 } \
8691 while (0)
8692
8693 if (TYPE_P (t)
8694 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8695 WALK_SUBTREE (TYPE_CONTEXT (t));
8696
8697 switch (TREE_CODE (t))
8698 {
8699 case RECORD_TYPE:
8700 if (TYPE_PTRMEMFUNC_P (t))
8701 break;
8702 /* Fall through. */
8703
8704 case UNION_TYPE:
8705 case ENUMERAL_TYPE:
8706 if (!TYPE_TEMPLATE_INFO (t))
8707 *walk_subtrees = 0;
8708 else
8709 WALK_SUBTREE (TYPE_TI_ARGS (t));
8710 break;
8711
8712 case INTEGER_TYPE:
8713 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8714 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8715 break;
8716
8717 case METHOD_TYPE:
8718 /* Since we're not going to walk subtrees, we have to do this
8719 explicitly here. */
8720 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8721 /* Fall through. */
8722
8723 case FUNCTION_TYPE:
8724 /* Check the return type. */
8725 WALK_SUBTREE (TREE_TYPE (t));
8726
8727 /* Check the parameter types. Since default arguments are not
8728 instantiated until they are needed, the TYPE_ARG_TYPES may
8729 contain expressions that involve template parameters. But,
8730 no-one should be looking at them yet. And, once they're
8731 instantiated, they don't contain template parameters, so
8732 there's no point in looking at them then, either. */
8733 {
8734 tree parm;
8735
8736 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8737 WALK_SUBTREE (TREE_VALUE (parm));
8738
8739 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8740 want walk_tree walking into them itself. */
8741 *walk_subtrees = 0;
8742 }
8743 break;
8744
8745 case TYPEOF_TYPE:
8746 case UNDERLYING_TYPE:
8747 if (pfd->include_nondeduced_p
8748 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8749 pfd->visited,
8750 pfd->include_nondeduced_p))
8751 return error_mark_node;
8752 break;
8753
8754 case FUNCTION_DECL:
8755 case VAR_DECL:
8756 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8757 WALK_SUBTREE (DECL_TI_ARGS (t));
8758 /* Fall through. */
8759
8760 case PARM_DECL:
8761 case CONST_DECL:
8762 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8763 WALK_SUBTREE (DECL_INITIAL (t));
8764 if (DECL_CONTEXT (t)
8765 && pfd->include_nondeduced_p)
8766 WALK_SUBTREE (DECL_CONTEXT (t));
8767 break;
8768
8769 case BOUND_TEMPLATE_TEMPLATE_PARM:
8770 /* Record template parameters such as `T' inside `TT<T>'. */
8771 WALK_SUBTREE (TYPE_TI_ARGS (t));
8772 /* Fall through. */
8773
8774 case TEMPLATE_TEMPLATE_PARM:
8775 case TEMPLATE_TYPE_PARM:
8776 case TEMPLATE_PARM_INDEX:
8777 if (fn && (*fn)(t, data))
8778 return t;
8779 else if (!fn)
8780 return t;
8781 break;
8782
8783 case TEMPLATE_DECL:
8784 /* A template template parameter is encountered. */
8785 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8786 WALK_SUBTREE (TREE_TYPE (t));
8787
8788 /* Already substituted template template parameter */
8789 *walk_subtrees = 0;
8790 break;
8791
8792 case TYPENAME_TYPE:
8793 if (!fn)
8794 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8795 break;
8796
8797 case CONSTRUCTOR:
8798 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8799 && pfd->include_nondeduced_p)
8800 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8801 break;
8802
8803 case INDIRECT_REF:
8804 case COMPONENT_REF:
8805 /* If there's no type, then this thing must be some expression
8806 involving template parameters. */
8807 if (!fn && !TREE_TYPE (t))
8808 return error_mark_node;
8809 break;
8810
8811 case MODOP_EXPR:
8812 case CAST_EXPR:
8813 case IMPLICIT_CONV_EXPR:
8814 case REINTERPRET_CAST_EXPR:
8815 case CONST_CAST_EXPR:
8816 case STATIC_CAST_EXPR:
8817 case DYNAMIC_CAST_EXPR:
8818 case ARROW_EXPR:
8819 case DOTSTAR_EXPR:
8820 case TYPEID_EXPR:
8821 case PSEUDO_DTOR_EXPR:
8822 if (!fn)
8823 return error_mark_node;
8824 break;
8825
8826 default:
8827 break;
8828 }
8829
8830 #undef WALK_SUBTREE
8831
8832 /* We didn't find any template parameters we liked. */
8833 out:
8834 return result;
8835 }
8836
8837 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8838 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8839 call FN with the parameter and the DATA.
8840 If FN returns nonzero, the iteration is terminated, and
8841 for_each_template_parm returns 1. Otherwise, the iteration
8842 continues. If FN never returns a nonzero value, the value
8843 returned by for_each_template_parm is 0. If FN is NULL, it is
8844 considered to be the function which always returns 1.
8845
8846 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8847 parameters that occur in non-deduced contexts. When false, only
8848 visits those template parameters that can be deduced. */
8849
8850 static tree
8851 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8852 hash_set<tree> *visited,
8853 bool include_nondeduced_p)
8854 {
8855 struct pair_fn_data pfd;
8856 tree result;
8857
8858 /* Set up. */
8859 pfd.fn = fn;
8860 pfd.data = data;
8861 pfd.include_nondeduced_p = include_nondeduced_p;
8862
8863 /* Walk the tree. (Conceptually, we would like to walk without
8864 duplicates, but for_each_template_parm_r recursively calls
8865 for_each_template_parm, so we would need to reorganize a fair
8866 bit to use walk_tree_without_duplicates, so we keep our own
8867 visited list.) */
8868 if (visited)
8869 pfd.visited = visited;
8870 else
8871 pfd.visited = new hash_set<tree>;
8872 result = cp_walk_tree (&t,
8873 for_each_template_parm_r,
8874 &pfd,
8875 pfd.visited);
8876
8877 /* Clean up. */
8878 if (!visited)
8879 {
8880 delete pfd.visited;
8881 pfd.visited = 0;
8882 }
8883
8884 return result;
8885 }
8886
8887 /* Returns true if T depends on any template parameter. */
8888
8889 int
8890 uses_template_parms (tree t)
8891 {
8892 if (t == NULL_TREE)
8893 return false;
8894
8895 bool dependent_p;
8896 int saved_processing_template_decl;
8897
8898 saved_processing_template_decl = processing_template_decl;
8899 if (!saved_processing_template_decl)
8900 processing_template_decl = 1;
8901 if (TYPE_P (t))
8902 dependent_p = dependent_type_p (t);
8903 else if (TREE_CODE (t) == TREE_VEC)
8904 dependent_p = any_dependent_template_arguments_p (t);
8905 else if (TREE_CODE (t) == TREE_LIST)
8906 dependent_p = (uses_template_parms (TREE_VALUE (t))
8907 || uses_template_parms (TREE_CHAIN (t)));
8908 else if (TREE_CODE (t) == TYPE_DECL)
8909 dependent_p = dependent_type_p (TREE_TYPE (t));
8910 else if (DECL_P (t)
8911 || EXPR_P (t)
8912 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8913 || TREE_CODE (t) == OVERLOAD
8914 || BASELINK_P (t)
8915 || identifier_p (t)
8916 || TREE_CODE (t) == TRAIT_EXPR
8917 || TREE_CODE (t) == CONSTRUCTOR
8918 || CONSTANT_CLASS_P (t))
8919 dependent_p = (type_dependent_expression_p (t)
8920 || value_dependent_expression_p (t));
8921 else
8922 {
8923 gcc_assert (t == error_mark_node);
8924 dependent_p = false;
8925 }
8926
8927 processing_template_decl = saved_processing_template_decl;
8928
8929 return dependent_p;
8930 }
8931
8932 /* Returns true iff current_function_decl is an incompletely instantiated
8933 template. Useful instead of processing_template_decl because the latter
8934 is set to 0 during instantiate_non_dependent_expr. */
8935
8936 bool
8937 in_template_function (void)
8938 {
8939 tree fn = current_function_decl;
8940 bool ret;
8941 ++processing_template_decl;
8942 ret = (fn && DECL_LANG_SPECIFIC (fn)
8943 && DECL_TEMPLATE_INFO (fn)
8944 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8945 --processing_template_decl;
8946 return ret;
8947 }
8948
8949 /* Returns true if T depends on any template parameter with level LEVEL. */
8950
8951 bool
8952 uses_template_parms_level (tree t, int level)
8953 {
8954 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8955 /*include_nondeduced_p=*/true);
8956 }
8957
8958 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8959 ill-formed translation unit, i.e. a variable or function that isn't
8960 usable in a constant expression. */
8961
8962 static inline bool
8963 neglectable_inst_p (tree d)
8964 {
8965 return (DECL_P (d)
8966 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8967 : decl_maybe_constant_var_p (d)));
8968 }
8969
8970 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8971 neglectable and instantiated from within an erroneous instantiation. */
8972
8973 static bool
8974 limit_bad_template_recursion (tree decl)
8975 {
8976 struct tinst_level *lev = current_tinst_level;
8977 int errs = errorcount + sorrycount;
8978 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8979 return false;
8980
8981 for (; lev; lev = lev->next)
8982 if (neglectable_inst_p (lev->decl))
8983 break;
8984
8985 return (lev && errs > lev->errors);
8986 }
8987
8988 static int tinst_depth;
8989 extern int max_tinst_depth;
8990 int depth_reached;
8991
8992 static GTY(()) struct tinst_level *last_error_tinst_level;
8993
8994 /* We're starting to instantiate D; record the template instantiation context
8995 for diagnostics and to restore it later. */
8996
8997 bool
8998 push_tinst_level (tree d)
8999 {
9000 return push_tinst_level_loc (d, input_location);
9001 }
9002
9003 /* We're starting to instantiate D; record the template instantiation context
9004 at LOC for diagnostics and to restore it later. */
9005
9006 bool
9007 push_tinst_level_loc (tree d, location_t loc)
9008 {
9009 struct tinst_level *new_level;
9010
9011 if (tinst_depth >= max_tinst_depth)
9012 {
9013 fatal_error (input_location,
9014 "template instantiation depth exceeds maximum of %d"
9015 " (use -ftemplate-depth= to increase the maximum)",
9016 max_tinst_depth);
9017 return false;
9018 }
9019
9020 /* If the current instantiation caused problems, don't let it instantiate
9021 anything else. Do allow deduction substitution and decls usable in
9022 constant expressions. */
9023 if (limit_bad_template_recursion (d))
9024 return false;
9025
9026 new_level = ggc_alloc<tinst_level> ();
9027 new_level->decl = d;
9028 new_level->locus = loc;
9029 new_level->errors = errorcount+sorrycount;
9030 new_level->in_system_header_p = in_system_header_at (input_location);
9031 new_level->next = current_tinst_level;
9032 current_tinst_level = new_level;
9033
9034 ++tinst_depth;
9035 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9036 depth_reached = tinst_depth;
9037
9038 return true;
9039 }
9040
9041 /* We're done instantiating this template; return to the instantiation
9042 context. */
9043
9044 void
9045 pop_tinst_level (void)
9046 {
9047 /* Restore the filename and line number stashed away when we started
9048 this instantiation. */
9049 input_location = current_tinst_level->locus;
9050 current_tinst_level = current_tinst_level->next;
9051 --tinst_depth;
9052 }
9053
9054 /* We're instantiating a deferred template; restore the template
9055 instantiation context in which the instantiation was requested, which
9056 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9057
9058 static tree
9059 reopen_tinst_level (struct tinst_level *level)
9060 {
9061 struct tinst_level *t;
9062
9063 tinst_depth = 0;
9064 for (t = level; t; t = t->next)
9065 ++tinst_depth;
9066
9067 current_tinst_level = level;
9068 pop_tinst_level ();
9069 if (current_tinst_level)
9070 current_tinst_level->errors = errorcount+sorrycount;
9071 return level->decl;
9072 }
9073
9074 /* Returns the TINST_LEVEL which gives the original instantiation
9075 context. */
9076
9077 struct tinst_level *
9078 outermost_tinst_level (void)
9079 {
9080 struct tinst_level *level = current_tinst_level;
9081 if (level)
9082 while (level->next)
9083 level = level->next;
9084 return level;
9085 }
9086
9087 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9088 vector of template arguments, as for tsubst.
9089
9090 Returns an appropriate tsubst'd friend declaration. */
9091
9092 static tree
9093 tsubst_friend_function (tree decl, tree args)
9094 {
9095 tree new_friend;
9096
9097 if (TREE_CODE (decl) == FUNCTION_DECL
9098 && DECL_TEMPLATE_INSTANTIATION (decl)
9099 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9100 /* This was a friend declared with an explicit template
9101 argument list, e.g.:
9102
9103 friend void f<>(T);
9104
9105 to indicate that f was a template instantiation, not a new
9106 function declaration. Now, we have to figure out what
9107 instantiation of what template. */
9108 {
9109 tree template_id, arglist, fns;
9110 tree new_args;
9111 tree tmpl;
9112 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9113
9114 /* Friend functions are looked up in the containing namespace scope.
9115 We must enter that scope, to avoid finding member functions of the
9116 current class with same name. */
9117 push_nested_namespace (ns);
9118 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9119 tf_warning_or_error, NULL_TREE,
9120 /*integral_constant_expression_p=*/false);
9121 pop_nested_namespace (ns);
9122 arglist = tsubst (DECL_TI_ARGS (decl), args,
9123 tf_warning_or_error, NULL_TREE);
9124 template_id = lookup_template_function (fns, arglist);
9125
9126 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9127 tmpl = determine_specialization (template_id, new_friend,
9128 &new_args,
9129 /*need_member_template=*/0,
9130 TREE_VEC_LENGTH (args),
9131 tsk_none);
9132 return instantiate_template (tmpl, new_args, tf_error);
9133 }
9134
9135 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9136
9137 /* The NEW_FRIEND will look like an instantiation, to the
9138 compiler, but is not an instantiation from the point of view of
9139 the language. For example, we might have had:
9140
9141 template <class T> struct S {
9142 template <class U> friend void f(T, U);
9143 };
9144
9145 Then, in S<int>, template <class U> void f(int, U) is not an
9146 instantiation of anything. */
9147 if (new_friend == error_mark_node)
9148 return error_mark_node;
9149
9150 DECL_USE_TEMPLATE (new_friend) = 0;
9151 if (TREE_CODE (decl) == TEMPLATE_DECL)
9152 {
9153 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9154 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9155 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9156 }
9157
9158 /* The mangled name for the NEW_FRIEND is incorrect. The function
9159 is not a template instantiation and should not be mangled like
9160 one. Therefore, we forget the mangling here; we'll recompute it
9161 later if we need it. */
9162 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9163 {
9164 SET_DECL_RTL (new_friend, NULL);
9165 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9166 }
9167
9168 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9169 {
9170 tree old_decl;
9171 tree new_friend_template_info;
9172 tree new_friend_result_template_info;
9173 tree ns;
9174 int new_friend_is_defn;
9175
9176 /* We must save some information from NEW_FRIEND before calling
9177 duplicate decls since that function will free NEW_FRIEND if
9178 possible. */
9179 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9180 new_friend_is_defn =
9181 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9182 (template_for_substitution (new_friend)))
9183 != NULL_TREE);
9184 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9185 {
9186 /* This declaration is a `primary' template. */
9187 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9188
9189 new_friend_result_template_info
9190 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9191 }
9192 else
9193 new_friend_result_template_info = NULL_TREE;
9194
9195 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9196 if (new_friend_is_defn)
9197 DECL_INITIAL (new_friend) = error_mark_node;
9198
9199 /* Inside pushdecl_namespace_level, we will push into the
9200 current namespace. However, the friend function should go
9201 into the namespace of the template. */
9202 ns = decl_namespace_context (new_friend);
9203 push_nested_namespace (ns);
9204 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9205 pop_nested_namespace (ns);
9206
9207 if (old_decl == error_mark_node)
9208 return error_mark_node;
9209
9210 if (old_decl != new_friend)
9211 {
9212 /* This new friend declaration matched an existing
9213 declaration. For example, given:
9214
9215 template <class T> void f(T);
9216 template <class U> class C {
9217 template <class T> friend void f(T) {}
9218 };
9219
9220 the friend declaration actually provides the definition
9221 of `f', once C has been instantiated for some type. So,
9222 old_decl will be the out-of-class template declaration,
9223 while new_friend is the in-class definition.
9224
9225 But, if `f' was called before this point, the
9226 instantiation of `f' will have DECL_TI_ARGS corresponding
9227 to `T' but not to `U', references to which might appear
9228 in the definition of `f'. Previously, the most general
9229 template for an instantiation of `f' was the out-of-class
9230 version; now it is the in-class version. Therefore, we
9231 run through all specialization of `f', adding to their
9232 DECL_TI_ARGS appropriately. In particular, they need a
9233 new set of outer arguments, corresponding to the
9234 arguments for this class instantiation.
9235
9236 The same situation can arise with something like this:
9237
9238 friend void f(int);
9239 template <class T> class C {
9240 friend void f(T) {}
9241 };
9242
9243 when `C<int>' is instantiated. Now, `f(int)' is defined
9244 in the class. */
9245
9246 if (!new_friend_is_defn)
9247 /* On the other hand, if the in-class declaration does
9248 *not* provide a definition, then we don't want to alter
9249 existing definitions. We can just leave everything
9250 alone. */
9251 ;
9252 else
9253 {
9254 tree new_template = TI_TEMPLATE (new_friend_template_info);
9255 tree new_args = TI_ARGS (new_friend_template_info);
9256
9257 /* Overwrite whatever template info was there before, if
9258 any, with the new template information pertaining to
9259 the declaration. */
9260 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9261
9262 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9263 {
9264 /* We should have called reregister_specialization in
9265 duplicate_decls. */
9266 gcc_assert (retrieve_specialization (new_template,
9267 new_args, 0)
9268 == old_decl);
9269
9270 /* Instantiate it if the global has already been used. */
9271 if (DECL_ODR_USED (old_decl))
9272 instantiate_decl (old_decl, /*defer_ok=*/true,
9273 /*expl_inst_class_mem_p=*/false);
9274 }
9275 else
9276 {
9277 tree t;
9278
9279 /* Indicate that the old function template is a partial
9280 instantiation. */
9281 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9282 = new_friend_result_template_info;
9283
9284 gcc_assert (new_template
9285 == most_general_template (new_template));
9286 gcc_assert (new_template != old_decl);
9287
9288 /* Reassign any specializations already in the hash table
9289 to the new more general template, and add the
9290 additional template args. */
9291 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9292 t != NULL_TREE;
9293 t = TREE_CHAIN (t))
9294 {
9295 tree spec = TREE_VALUE (t);
9296 spec_entry elt;
9297
9298 elt.tmpl = old_decl;
9299 elt.args = DECL_TI_ARGS (spec);
9300 elt.spec = NULL_TREE;
9301
9302 decl_specializations->remove_elt (&elt);
9303
9304 DECL_TI_ARGS (spec)
9305 = add_outermost_template_args (new_args,
9306 DECL_TI_ARGS (spec));
9307
9308 register_specialization
9309 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9310
9311 }
9312 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9313 }
9314 }
9315
9316 /* The information from NEW_FRIEND has been merged into OLD_DECL
9317 by duplicate_decls. */
9318 new_friend = old_decl;
9319 }
9320 }
9321 else
9322 {
9323 tree context = DECL_CONTEXT (new_friend);
9324 bool dependent_p;
9325
9326 /* In the code
9327 template <class T> class C {
9328 template <class U> friend void C1<U>::f (); // case 1
9329 friend void C2<T>::f (); // case 2
9330 };
9331 we only need to make sure CONTEXT is a complete type for
9332 case 2. To distinguish between the two cases, we note that
9333 CONTEXT of case 1 remains dependent type after tsubst while
9334 this isn't true for case 2. */
9335 ++processing_template_decl;
9336 dependent_p = dependent_type_p (context);
9337 --processing_template_decl;
9338
9339 if (!dependent_p
9340 && !complete_type_or_else (context, NULL_TREE))
9341 return error_mark_node;
9342
9343 if (COMPLETE_TYPE_P (context))
9344 {
9345 tree fn = new_friend;
9346 /* do_friend adds the TEMPLATE_DECL for any member friend
9347 template even if it isn't a member template, i.e.
9348 template <class T> friend A<T>::f();
9349 Look through it in that case. */
9350 if (TREE_CODE (fn) == TEMPLATE_DECL
9351 && !PRIMARY_TEMPLATE_P (fn))
9352 fn = DECL_TEMPLATE_RESULT (fn);
9353 /* Check to see that the declaration is really present, and,
9354 possibly obtain an improved declaration. */
9355 fn = check_classfn (context, fn, NULL_TREE);
9356
9357 if (fn)
9358 new_friend = fn;
9359 }
9360 }
9361
9362 return new_friend;
9363 }
9364
9365 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9366 template arguments, as for tsubst.
9367
9368 Returns an appropriate tsubst'd friend type or error_mark_node on
9369 failure. */
9370
9371 static tree
9372 tsubst_friend_class (tree friend_tmpl, tree args)
9373 {
9374 tree friend_type;
9375 tree tmpl;
9376 tree context;
9377
9378 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9379 {
9380 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9381 return TREE_TYPE (t);
9382 }
9383
9384 context = CP_DECL_CONTEXT (friend_tmpl);
9385
9386 if (context != global_namespace)
9387 {
9388 if (TREE_CODE (context) == NAMESPACE_DECL)
9389 push_nested_namespace (context);
9390 else
9391 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9392 }
9393
9394 /* Look for a class template declaration. We look for hidden names
9395 because two friend declarations of the same template are the
9396 same. For example, in:
9397
9398 struct A {
9399 template <typename> friend class F;
9400 };
9401 template <typename> struct B {
9402 template <typename> friend class F;
9403 };
9404
9405 both F templates are the same. */
9406 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9407 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9408
9409 /* But, if we don't find one, it might be because we're in a
9410 situation like this:
9411
9412 template <class T>
9413 struct S {
9414 template <class U>
9415 friend struct S;
9416 };
9417
9418 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9419 for `S<int>', not the TEMPLATE_DECL. */
9420 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9421 {
9422 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9423 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9424 }
9425
9426 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9427 {
9428 /* The friend template has already been declared. Just
9429 check to see that the declarations match, and install any new
9430 default parameters. We must tsubst the default parameters,
9431 of course. We only need the innermost template parameters
9432 because that is all that redeclare_class_template will look
9433 at. */
9434 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9435 > TMPL_ARGS_DEPTH (args))
9436 {
9437 tree parms;
9438 location_t saved_input_location;
9439 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9440 args, tf_warning_or_error);
9441
9442 saved_input_location = input_location;
9443 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9444 tree cons = get_constraints (tmpl);
9445 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9446 input_location = saved_input_location;
9447
9448 }
9449
9450 friend_type = TREE_TYPE (tmpl);
9451 }
9452 else
9453 {
9454 /* The friend template has not already been declared. In this
9455 case, the instantiation of the template class will cause the
9456 injection of this template into the global scope. */
9457 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9458 if (tmpl == error_mark_node)
9459 return error_mark_node;
9460
9461 /* The new TMPL is not an instantiation of anything, so we
9462 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9463 the new type because that is supposed to be the corresponding
9464 template decl, i.e., TMPL. */
9465 DECL_USE_TEMPLATE (tmpl) = 0;
9466 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9467 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9468 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9469 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9470
9471 /* Inject this template into the global scope. */
9472 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9473 }
9474
9475 if (context != global_namespace)
9476 {
9477 if (TREE_CODE (context) == NAMESPACE_DECL)
9478 pop_nested_namespace (context);
9479 else
9480 pop_nested_class ();
9481 }
9482
9483 return friend_type;
9484 }
9485
9486 /* Returns zero if TYPE cannot be completed later due to circularity.
9487 Otherwise returns one. */
9488
9489 static int
9490 can_complete_type_without_circularity (tree type)
9491 {
9492 if (type == NULL_TREE || type == error_mark_node)
9493 return 0;
9494 else if (COMPLETE_TYPE_P (type))
9495 return 1;
9496 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9497 return can_complete_type_without_circularity (TREE_TYPE (type));
9498 else if (CLASS_TYPE_P (type)
9499 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9500 return 0;
9501 else
9502 return 1;
9503 }
9504
9505 static tree tsubst_omp_clauses (tree, bool, bool, tree, tsubst_flags_t, tree);
9506
9507 /* Apply any attributes which had to be deferred until instantiation
9508 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9509 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9510
9511 static void
9512 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9513 tree args, tsubst_flags_t complain, tree in_decl)
9514 {
9515 tree last_dep = NULL_TREE;
9516 tree t;
9517 tree *p;
9518
9519 for (t = attributes; t; t = TREE_CHAIN (t))
9520 if (ATTR_IS_DEPENDENT (t))
9521 {
9522 last_dep = t;
9523 attributes = copy_list (attributes);
9524 break;
9525 }
9526
9527 if (DECL_P (*decl_p))
9528 {
9529 if (TREE_TYPE (*decl_p) == error_mark_node)
9530 return;
9531 p = &DECL_ATTRIBUTES (*decl_p);
9532 }
9533 else
9534 p = &TYPE_ATTRIBUTES (*decl_p);
9535
9536 if (last_dep)
9537 {
9538 tree late_attrs = NULL_TREE;
9539 tree *q = &late_attrs;
9540
9541 for (*p = attributes; *p; )
9542 {
9543 t = *p;
9544 if (ATTR_IS_DEPENDENT (t))
9545 {
9546 *p = TREE_CHAIN (t);
9547 TREE_CHAIN (t) = NULL_TREE;
9548 if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9549 && is_attribute_p ("omp declare simd",
9550 get_attribute_name (t))
9551 && TREE_VALUE (t))
9552 {
9553 tree clauses = TREE_VALUE (TREE_VALUE (t));
9554 clauses = tsubst_omp_clauses (clauses, true, false, args,
9555 complain, in_decl);
9556 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9557 clauses = finish_omp_clauses (clauses, false, true);
9558 tree parms = DECL_ARGUMENTS (*decl_p);
9559 clauses
9560 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9561 if (clauses)
9562 TREE_VALUE (TREE_VALUE (t)) = clauses;
9563 else
9564 TREE_VALUE (t) = NULL_TREE;
9565 }
9566 /* If the first attribute argument is an identifier, don't
9567 pass it through tsubst. Attributes like mode, format,
9568 cleanup and several target specific attributes expect it
9569 unmodified. */
9570 else if (attribute_takes_identifier_p (get_attribute_name (t))
9571 && TREE_VALUE (t))
9572 {
9573 tree chain
9574 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9575 in_decl,
9576 /*integral_constant_expression_p=*/false);
9577 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9578 TREE_VALUE (t)
9579 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9580 chain);
9581 }
9582 else if (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t)))
9583 {
9584 /* An attribute pack expansion. */
9585 tree purp = TREE_PURPOSE (t);
9586 tree pack = (tsubst_pack_expansion
9587 (TREE_VALUE (t), args, complain, in_decl));
9588 int len = TREE_VEC_LENGTH (pack);
9589 for (int i = 0; i < len; ++i)
9590 {
9591 tree elt = TREE_VEC_ELT (pack, i);
9592 *q = build_tree_list (purp, elt);
9593 q = &TREE_CHAIN (*q);
9594 }
9595 continue;
9596 }
9597 else
9598 TREE_VALUE (t)
9599 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9600 /*integral_constant_expression_p=*/false);
9601 *q = t;
9602 q = &TREE_CHAIN (t);
9603 }
9604 else
9605 p = &TREE_CHAIN (t);
9606 }
9607
9608 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9609 }
9610 }
9611
9612 /* Perform (or defer) access check for typedefs that were referenced
9613 from within the template TMPL code.
9614 This is a subroutine of instantiate_decl and instantiate_class_template.
9615 TMPL is the template to consider and TARGS is the list of arguments of
9616 that template. */
9617
9618 static void
9619 perform_typedefs_access_check (tree tmpl, tree targs)
9620 {
9621 location_t saved_location;
9622 unsigned i;
9623 qualified_typedef_usage_t *iter;
9624
9625 if (!tmpl
9626 || (!CLASS_TYPE_P (tmpl)
9627 && TREE_CODE (tmpl) != FUNCTION_DECL))
9628 return;
9629
9630 saved_location = input_location;
9631 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9632 {
9633 tree type_decl = iter->typedef_decl;
9634 tree type_scope = iter->context;
9635
9636 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9637 continue;
9638
9639 if (uses_template_parms (type_decl))
9640 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9641 if (uses_template_parms (type_scope))
9642 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9643
9644 /* Make access check error messages point to the location
9645 of the use of the typedef. */
9646 input_location = iter->locus;
9647 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9648 type_decl, type_decl,
9649 tf_warning_or_error);
9650 }
9651 input_location = saved_location;
9652 }
9653
9654 static tree
9655 instantiate_class_template_1 (tree type)
9656 {
9657 tree templ, args, pattern, t, member;
9658 tree typedecl;
9659 tree pbinfo;
9660 tree base_list;
9661 unsigned int saved_maximum_field_alignment;
9662 tree fn_context;
9663
9664 if (type == error_mark_node)
9665 return error_mark_node;
9666
9667 if (COMPLETE_OR_OPEN_TYPE_P (type)
9668 || uses_template_parms (type))
9669 return type;
9670
9671 /* Figure out which template is being instantiated. */
9672 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9673 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9674
9675 /* Determine what specialization of the original template to
9676 instantiate. */
9677 t = most_specialized_partial_spec (type, tf_warning_or_error);
9678 if (t == error_mark_node)
9679 {
9680 TYPE_BEING_DEFINED (type) = 1;
9681 return error_mark_node;
9682 }
9683 else if (t)
9684 {
9685 /* This TYPE is actually an instantiation of a partial
9686 specialization. We replace the innermost set of ARGS with
9687 the arguments appropriate for substitution. For example,
9688 given:
9689
9690 template <class T> struct S {};
9691 template <class T> struct S<T*> {};
9692
9693 and supposing that we are instantiating S<int*>, ARGS will
9694 presently be {int*} -- but we need {int}. */
9695 pattern = TREE_TYPE (t);
9696 args = TREE_PURPOSE (t);
9697 }
9698 else
9699 {
9700 pattern = TREE_TYPE (templ);
9701 args = CLASSTYPE_TI_ARGS (type);
9702 }
9703
9704 /* If the template we're instantiating is incomplete, then clearly
9705 there's nothing we can do. */
9706 if (!COMPLETE_TYPE_P (pattern))
9707 return type;
9708
9709 /* If we've recursively instantiated too many templates, stop. */
9710 if (! push_tinst_level (type))
9711 return type;
9712
9713 /* Now we're really doing the instantiation. Mark the type as in
9714 the process of being defined. */
9715 TYPE_BEING_DEFINED (type) = 1;
9716
9717 /* We may be in the middle of deferred access check. Disable
9718 it now. */
9719 push_deferring_access_checks (dk_no_deferred);
9720
9721 int saved_unevaluated_operand = cp_unevaluated_operand;
9722 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9723
9724 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9725 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9726 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9727 fn_context = error_mark_node;
9728 if (!fn_context)
9729 push_to_top_level ();
9730 else
9731 {
9732 cp_unevaluated_operand = 0;
9733 c_inhibit_evaluation_warnings = 0;
9734 }
9735 /* Use #pragma pack from the template context. */
9736 saved_maximum_field_alignment = maximum_field_alignment;
9737 maximum_field_alignment = TYPE_PRECISION (pattern);
9738
9739 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9740
9741 /* Set the input location to the most specialized template definition.
9742 This is needed if tsubsting causes an error. */
9743 typedecl = TYPE_MAIN_DECL (pattern);
9744 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9745 DECL_SOURCE_LOCATION (typedecl);
9746
9747 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9748 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9749 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9750 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9751 if (ANON_AGGR_TYPE_P (pattern))
9752 SET_ANON_AGGR_TYPE_P (type);
9753 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9754 {
9755 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9756 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9757 /* Adjust visibility for template arguments. */
9758 determine_visibility (TYPE_MAIN_DECL (type));
9759 }
9760 if (CLASS_TYPE_P (type))
9761 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9762
9763 pbinfo = TYPE_BINFO (pattern);
9764
9765 /* We should never instantiate a nested class before its enclosing
9766 class; we need to look up the nested class by name before we can
9767 instantiate it, and that lookup should instantiate the enclosing
9768 class. */
9769 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9770 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9771
9772 base_list = NULL_TREE;
9773 if (BINFO_N_BASE_BINFOS (pbinfo))
9774 {
9775 tree pbase_binfo;
9776 tree pushed_scope;
9777 int i;
9778
9779 /* We must enter the scope containing the type, as that is where
9780 the accessibility of types named in dependent bases are
9781 looked up from. */
9782 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9783
9784 /* Substitute into each of the bases to determine the actual
9785 basetypes. */
9786 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9787 {
9788 tree base;
9789 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9790 tree expanded_bases = NULL_TREE;
9791 int idx, len = 1;
9792
9793 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9794 {
9795 expanded_bases =
9796 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9797 args, tf_error, NULL_TREE);
9798 if (expanded_bases == error_mark_node)
9799 continue;
9800
9801 len = TREE_VEC_LENGTH (expanded_bases);
9802 }
9803
9804 for (idx = 0; idx < len; idx++)
9805 {
9806 if (expanded_bases)
9807 /* Extract the already-expanded base class. */
9808 base = TREE_VEC_ELT (expanded_bases, idx);
9809 else
9810 /* Substitute to figure out the base class. */
9811 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9812 NULL_TREE);
9813
9814 if (base == error_mark_node)
9815 continue;
9816
9817 base_list = tree_cons (access, base, base_list);
9818 if (BINFO_VIRTUAL_P (pbase_binfo))
9819 TREE_TYPE (base_list) = integer_type_node;
9820 }
9821 }
9822
9823 /* The list is now in reverse order; correct that. */
9824 base_list = nreverse (base_list);
9825
9826 if (pushed_scope)
9827 pop_scope (pushed_scope);
9828 }
9829 /* Now call xref_basetypes to set up all the base-class
9830 information. */
9831 xref_basetypes (type, base_list);
9832
9833 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9834 (int) ATTR_FLAG_TYPE_IN_PLACE,
9835 args, tf_error, NULL_TREE);
9836 fixup_attribute_variants (type);
9837
9838 /* Now that our base classes are set up, enter the scope of the
9839 class, so that name lookups into base classes, etc. will work
9840 correctly. This is precisely analogous to what we do in
9841 begin_class_definition when defining an ordinary non-template
9842 class, except we also need to push the enclosing classes. */
9843 push_nested_class (type);
9844
9845 /* Now members are processed in the order of declaration. */
9846 for (member = CLASSTYPE_DECL_LIST (pattern);
9847 member; member = TREE_CHAIN (member))
9848 {
9849 tree t = TREE_VALUE (member);
9850
9851 if (TREE_PURPOSE (member))
9852 {
9853 if (TYPE_P (t))
9854 {
9855 /* Build new CLASSTYPE_NESTED_UTDS. */
9856
9857 tree newtag;
9858 bool class_template_p;
9859
9860 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9861 && TYPE_LANG_SPECIFIC (t)
9862 && CLASSTYPE_IS_TEMPLATE (t));
9863 /* If the member is a class template, then -- even after
9864 substitution -- there may be dependent types in the
9865 template argument list for the class. We increment
9866 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9867 that function will assume that no types are dependent
9868 when outside of a template. */
9869 if (class_template_p)
9870 ++processing_template_decl;
9871 newtag = tsubst (t, args, tf_error, NULL_TREE);
9872 if (class_template_p)
9873 --processing_template_decl;
9874 if (newtag == error_mark_node)
9875 continue;
9876
9877 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9878 {
9879 tree name = TYPE_IDENTIFIER (t);
9880
9881 if (class_template_p)
9882 /* Unfortunately, lookup_template_class sets
9883 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9884 instantiation (i.e., for the type of a member
9885 template class nested within a template class.)
9886 This behavior is required for
9887 maybe_process_partial_specialization to work
9888 correctly, but is not accurate in this case;
9889 the TAG is not an instantiation of anything.
9890 (The corresponding TEMPLATE_DECL is an
9891 instantiation, but the TYPE is not.) */
9892 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9893
9894 /* Now, we call pushtag to put this NEWTAG into the scope of
9895 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9896 pushtag calling push_template_decl. We don't have to do
9897 this for enums because it will already have been done in
9898 tsubst_enum. */
9899 if (name)
9900 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9901 pushtag (name, newtag, /*tag_scope=*/ts_current);
9902 }
9903 }
9904 else if (DECL_DECLARES_FUNCTION_P (t))
9905 {
9906 /* Build new TYPE_METHODS. */
9907 tree r;
9908
9909 if (TREE_CODE (t) == TEMPLATE_DECL)
9910 ++processing_template_decl;
9911 r = tsubst (t, args, tf_error, NULL_TREE);
9912 if (TREE_CODE (t) == TEMPLATE_DECL)
9913 --processing_template_decl;
9914 set_current_access_from_decl (r);
9915 finish_member_declaration (r);
9916 /* Instantiate members marked with attribute used. */
9917 if (r != error_mark_node && DECL_PRESERVE_P (r))
9918 mark_used (r);
9919 if (TREE_CODE (r) == FUNCTION_DECL
9920 && DECL_OMP_DECLARE_REDUCTION_P (r))
9921 cp_check_omp_declare_reduction (r);
9922 }
9923 else if (DECL_CLASS_TEMPLATE_P (t)
9924 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9925 /* A closure type for a lambda in a default argument for a
9926 member template. Ignore it; it will be instantiated with
9927 the default argument. */;
9928 else
9929 {
9930 /* Build new TYPE_FIELDS. */
9931 if (TREE_CODE (t) == STATIC_ASSERT)
9932 {
9933 tree condition;
9934
9935 ++c_inhibit_evaluation_warnings;
9936 condition =
9937 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9938 tf_warning_or_error, NULL_TREE,
9939 /*integral_constant_expression_p=*/true);
9940 --c_inhibit_evaluation_warnings;
9941
9942 finish_static_assert (condition,
9943 STATIC_ASSERT_MESSAGE (t),
9944 STATIC_ASSERT_SOURCE_LOCATION (t),
9945 /*member_p=*/true);
9946 }
9947 else if (TREE_CODE (t) != CONST_DECL)
9948 {
9949 tree r;
9950 tree vec = NULL_TREE;
9951 int len = 1;
9952
9953 /* The file and line for this declaration, to
9954 assist in error message reporting. Since we
9955 called push_tinst_level above, we don't need to
9956 restore these. */
9957 input_location = DECL_SOURCE_LOCATION (t);
9958
9959 if (TREE_CODE (t) == TEMPLATE_DECL)
9960 ++processing_template_decl;
9961 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9962 if (TREE_CODE (t) == TEMPLATE_DECL)
9963 --processing_template_decl;
9964
9965 if (TREE_CODE (r) == TREE_VEC)
9966 {
9967 /* A capture pack became multiple fields. */
9968 vec = r;
9969 len = TREE_VEC_LENGTH (vec);
9970 }
9971
9972 for (int i = 0; i < len; ++i)
9973 {
9974 if (vec)
9975 r = TREE_VEC_ELT (vec, i);
9976 if (VAR_P (r))
9977 {
9978 /* In [temp.inst]:
9979
9980 [t]he initialization (and any associated
9981 side-effects) of a static data member does
9982 not occur unless the static data member is
9983 itself used in a way that requires the
9984 definition of the static data member to
9985 exist.
9986
9987 Therefore, we do not substitute into the
9988 initialized for the static data member here. */
9989 finish_static_data_member_decl
9990 (r,
9991 /*init=*/NULL_TREE,
9992 /*init_const_expr_p=*/false,
9993 /*asmspec_tree=*/NULL_TREE,
9994 /*flags=*/0);
9995 /* Instantiate members marked with attribute used. */
9996 if (r != error_mark_node && DECL_PRESERVE_P (r))
9997 mark_used (r);
9998 }
9999 else if (TREE_CODE (r) == FIELD_DECL)
10000 {
10001 /* Determine whether R has a valid type and can be
10002 completed later. If R is invalid, then its type
10003 is replaced by error_mark_node. */
10004 tree rtype = TREE_TYPE (r);
10005 if (can_complete_type_without_circularity (rtype))
10006 complete_type (rtype);
10007
10008 if (!COMPLETE_TYPE_P (rtype))
10009 {
10010 cxx_incomplete_type_error (r, rtype);
10011 TREE_TYPE (r) = error_mark_node;
10012 }
10013 }
10014
10015 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10016 such a thing will already have been added to the field
10017 list by tsubst_enum in finish_member_declaration in the
10018 CLASSTYPE_NESTED_UTDS case above. */
10019 if (!(TREE_CODE (r) == TYPE_DECL
10020 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10021 && DECL_ARTIFICIAL (r)))
10022 {
10023 set_current_access_from_decl (r);
10024 finish_member_declaration (r);
10025 }
10026 }
10027 }
10028 }
10029 }
10030 else
10031 {
10032 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10033 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10034 {
10035 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10036
10037 tree friend_type = t;
10038 bool adjust_processing_template_decl = false;
10039
10040 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10041 {
10042 /* template <class T> friend class C; */
10043 friend_type = tsubst_friend_class (friend_type, args);
10044 adjust_processing_template_decl = true;
10045 }
10046 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10047 {
10048 /* template <class T> friend class C::D; */
10049 friend_type = tsubst (friend_type, args,
10050 tf_warning_or_error, NULL_TREE);
10051 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10052 friend_type = TREE_TYPE (friend_type);
10053 adjust_processing_template_decl = true;
10054 }
10055 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10056 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10057 {
10058 /* This could be either
10059
10060 friend class T::C;
10061
10062 when dependent_type_p is false or
10063
10064 template <class U> friend class T::C;
10065
10066 otherwise. */
10067 friend_type = tsubst (friend_type, args,
10068 tf_warning_or_error, NULL_TREE);
10069 /* Bump processing_template_decl for correct
10070 dependent_type_p calculation. */
10071 ++processing_template_decl;
10072 if (dependent_type_p (friend_type))
10073 adjust_processing_template_decl = true;
10074 --processing_template_decl;
10075 }
10076 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10077 && hidden_name_p (TYPE_NAME (friend_type)))
10078 {
10079 /* friend class C;
10080
10081 where C hasn't been declared yet. Let's lookup name
10082 from namespace scope directly, bypassing any name that
10083 come from dependent base class. */
10084 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10085
10086 /* The call to xref_tag_from_type does injection for friend
10087 classes. */
10088 push_nested_namespace (ns);
10089 friend_type =
10090 xref_tag_from_type (friend_type, NULL_TREE,
10091 /*tag_scope=*/ts_current);
10092 pop_nested_namespace (ns);
10093 }
10094 else if (uses_template_parms (friend_type))
10095 /* friend class C<T>; */
10096 friend_type = tsubst (friend_type, args,
10097 tf_warning_or_error, NULL_TREE);
10098 /* Otherwise it's
10099
10100 friend class C;
10101
10102 where C is already declared or
10103
10104 friend class C<int>;
10105
10106 We don't have to do anything in these cases. */
10107
10108 if (adjust_processing_template_decl)
10109 /* Trick make_friend_class into realizing that the friend
10110 we're adding is a template, not an ordinary class. It's
10111 important that we use make_friend_class since it will
10112 perform some error-checking and output cross-reference
10113 information. */
10114 ++processing_template_decl;
10115
10116 if (friend_type != error_mark_node)
10117 make_friend_class (type, friend_type, /*complain=*/false);
10118
10119 if (adjust_processing_template_decl)
10120 --processing_template_decl;
10121 }
10122 else
10123 {
10124 /* Build new DECL_FRIENDLIST. */
10125 tree r;
10126
10127 /* The file and line for this declaration, to
10128 assist in error message reporting. Since we
10129 called push_tinst_level above, we don't need to
10130 restore these. */
10131 input_location = DECL_SOURCE_LOCATION (t);
10132
10133 if (TREE_CODE (t) == TEMPLATE_DECL)
10134 {
10135 ++processing_template_decl;
10136 push_deferring_access_checks (dk_no_check);
10137 }
10138
10139 r = tsubst_friend_function (t, args);
10140 add_friend (type, r, /*complain=*/false);
10141 if (TREE_CODE (t) == TEMPLATE_DECL)
10142 {
10143 pop_deferring_access_checks ();
10144 --processing_template_decl;
10145 }
10146 }
10147 }
10148 }
10149
10150 if (fn_context)
10151 {
10152 /* Restore these before substituting into the lambda capture
10153 initializers. */
10154 cp_unevaluated_operand = saved_unevaluated_operand;
10155 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10156 }
10157
10158 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10159 {
10160 tree decl = lambda_function (type);
10161 if (decl)
10162 {
10163 if (!DECL_TEMPLATE_INFO (decl)
10164 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10165 {
10166 /* Set function_depth to avoid garbage collection. */
10167 ++function_depth;
10168 instantiate_decl (decl, false, false);
10169 --function_depth;
10170 }
10171
10172 /* We need to instantiate the capture list from the template
10173 after we've instantiated the closure members, but before we
10174 consider adding the conversion op. Also keep any captures
10175 that may have been added during instantiation of the op(). */
10176 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10177 tree tmpl_cap
10178 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10179 args, tf_warning_or_error, NULL_TREE,
10180 false, false);
10181
10182 LAMBDA_EXPR_CAPTURE_LIST (expr)
10183 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10184
10185 maybe_add_lambda_conv_op (type);
10186 }
10187 else
10188 gcc_assert (errorcount);
10189 }
10190
10191 /* Set the file and line number information to whatever is given for
10192 the class itself. This puts error messages involving generated
10193 implicit functions at a predictable point, and the same point
10194 that would be used for non-template classes. */
10195 input_location = DECL_SOURCE_LOCATION (typedecl);
10196
10197 unreverse_member_declarations (type);
10198 finish_struct_1 (type);
10199 TYPE_BEING_DEFINED (type) = 0;
10200
10201 /* We don't instantiate default arguments for member functions. 14.7.1:
10202
10203 The implicit instantiation of a class template specialization causes
10204 the implicit instantiation of the declarations, but not of the
10205 definitions or default arguments, of the class member functions,
10206 member classes, static data members and member templates.... */
10207
10208 /* Some typedefs referenced from within the template code need to be access
10209 checked at template instantiation time, i.e now. These types were
10210 added to the template at parsing time. Let's get those and perform
10211 the access checks then. */
10212 perform_typedefs_access_check (pattern, args);
10213 perform_deferred_access_checks (tf_warning_or_error);
10214 pop_nested_class ();
10215 maximum_field_alignment = saved_maximum_field_alignment;
10216 if (!fn_context)
10217 pop_from_top_level ();
10218 pop_deferring_access_checks ();
10219 pop_tinst_level ();
10220
10221 /* The vtable for a template class can be emitted in any translation
10222 unit in which the class is instantiated. When there is no key
10223 method, however, finish_struct_1 will already have added TYPE to
10224 the keyed_classes list. */
10225 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10226 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10227
10228 return type;
10229 }
10230
10231 /* Wrapper for instantiate_class_template_1. */
10232
10233 tree
10234 instantiate_class_template (tree type)
10235 {
10236 tree ret;
10237 timevar_push (TV_TEMPLATE_INST);
10238 ret = instantiate_class_template_1 (type);
10239 timevar_pop (TV_TEMPLATE_INST);
10240 return ret;
10241 }
10242
10243 static tree
10244 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10245 {
10246 tree r;
10247
10248 if (!t)
10249 r = t;
10250 else if (TYPE_P (t))
10251 r = tsubst (t, args, complain, in_decl);
10252 else
10253 {
10254 if (!(complain & tf_warning))
10255 ++c_inhibit_evaluation_warnings;
10256 r = tsubst_expr (t, args, complain, in_decl,
10257 /*integral_constant_expression_p=*/true);
10258 if (!(complain & tf_warning))
10259 --c_inhibit_evaluation_warnings;
10260 }
10261 return r;
10262 }
10263
10264 /* Given a function parameter pack TMPL_PARM and some function parameters
10265 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10266 and set *SPEC_P to point at the next point in the list. */
10267
10268 tree
10269 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10270 {
10271 /* Collect all of the extra "packed" parameters into an
10272 argument pack. */
10273 tree parmvec;
10274 tree parmtypevec;
10275 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10276 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10277 tree spec_parm = *spec_p;
10278 int i, len;
10279
10280 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10281 if (tmpl_parm
10282 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10283 break;
10284
10285 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10286 parmvec = make_tree_vec (len);
10287 parmtypevec = make_tree_vec (len);
10288 spec_parm = *spec_p;
10289 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10290 {
10291 TREE_VEC_ELT (parmvec, i) = spec_parm;
10292 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10293 }
10294
10295 /* Build the argument packs. */
10296 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10297 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10298 TREE_TYPE (argpack) = argtypepack;
10299 *spec_p = spec_parm;
10300
10301 return argpack;
10302 }
10303
10304 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10305 NONTYPE_ARGUMENT_PACK. */
10306
10307 static tree
10308 make_fnparm_pack (tree spec_parm)
10309 {
10310 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10311 }
10312
10313 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10314 pack expansion with no extra args, 2 if it has extra args, or 0
10315 if it is not a pack expansion. */
10316
10317 static int
10318 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10319 {
10320 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10321 if (i >= TREE_VEC_LENGTH (vec))
10322 return 0;
10323 tree elt = TREE_VEC_ELT (vec, i);
10324 if (DECL_P (elt))
10325 /* A decl pack is itself an expansion. */
10326 elt = TREE_TYPE (elt);
10327 if (!PACK_EXPANSION_P (elt))
10328 return 0;
10329 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10330 return 2;
10331 return 1;
10332 }
10333
10334
10335 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10336
10337 static tree
10338 make_argument_pack_select (tree arg_pack, unsigned index)
10339 {
10340 tree aps = make_node (ARGUMENT_PACK_SELECT);
10341
10342 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10343 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10344
10345 return aps;
10346 }
10347
10348 /* This is a subroutine of tsubst_pack_expansion.
10349
10350 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10351 mechanism to store the (non complete list of) arguments of the
10352 substitution and return a non substituted pack expansion, in order
10353 to wait for when we have enough arguments to really perform the
10354 substitution. */
10355
10356 static bool
10357 use_pack_expansion_extra_args_p (tree parm_packs,
10358 int arg_pack_len,
10359 bool has_empty_arg)
10360 {
10361 /* If one pack has an expansion and another pack has a normal
10362 argument or if one pack has an empty argument and an another
10363 one hasn't then tsubst_pack_expansion cannot perform the
10364 substitution and need to fall back on the
10365 PACK_EXPANSION_EXTRA mechanism. */
10366 if (parm_packs == NULL_TREE)
10367 return false;
10368 else if (has_empty_arg)
10369 return true;
10370
10371 bool has_expansion_arg = false;
10372 for (int i = 0 ; i < arg_pack_len; ++i)
10373 {
10374 bool has_non_expansion_arg = false;
10375 for (tree parm_pack = parm_packs;
10376 parm_pack;
10377 parm_pack = TREE_CHAIN (parm_pack))
10378 {
10379 tree arg = TREE_VALUE (parm_pack);
10380
10381 int exp = argument_pack_element_is_expansion_p (arg, i);
10382 if (exp == 2)
10383 /* We can't substitute a pack expansion with extra args into
10384 our pattern. */
10385 return true;
10386 else if (exp)
10387 has_expansion_arg = true;
10388 else
10389 has_non_expansion_arg = true;
10390 }
10391
10392 if (has_expansion_arg && has_non_expansion_arg)
10393 return true;
10394 }
10395 return false;
10396 }
10397
10398 /* [temp.variadic]/6 says that:
10399
10400 The instantiation of a pack expansion [...]
10401 produces a list E1,E2, ..., En, where N is the number of elements
10402 in the pack expansion parameters.
10403
10404 This subroutine of tsubst_pack_expansion produces one of these Ei.
10405
10406 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10407 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10408 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10409 INDEX is the index 'i' of the element Ei to produce. ARGS,
10410 COMPLAIN, and IN_DECL are the same parameters as for the
10411 tsubst_pack_expansion function.
10412
10413 The function returns the resulting Ei upon successful completion,
10414 or error_mark_node.
10415
10416 Note that this function possibly modifies the ARGS parameter, so
10417 it's the responsibility of the caller to restore it. */
10418
10419 static tree
10420 gen_elem_of_pack_expansion_instantiation (tree pattern,
10421 tree parm_packs,
10422 unsigned index,
10423 tree args /* This parm gets
10424 modified. */,
10425 tsubst_flags_t complain,
10426 tree in_decl)
10427 {
10428 tree t;
10429 bool ith_elem_is_expansion = false;
10430
10431 /* For each parameter pack, change the substitution of the parameter
10432 pack to the ith argument in its argument pack, then expand the
10433 pattern. */
10434 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10435 {
10436 tree parm = TREE_PURPOSE (pack);
10437 tree arg_pack = TREE_VALUE (pack);
10438 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10439
10440 ith_elem_is_expansion |=
10441 argument_pack_element_is_expansion_p (arg_pack, index);
10442
10443 /* Select the Ith argument from the pack. */
10444 if (TREE_CODE (parm) == PARM_DECL
10445 || TREE_CODE (parm) == FIELD_DECL)
10446 {
10447 if (index == 0)
10448 {
10449 aps = make_argument_pack_select (arg_pack, index);
10450 if (!mark_used (parm, complain) && !(complain & tf_error))
10451 return error_mark_node;
10452 register_local_specialization (aps, parm);
10453 }
10454 else
10455 aps = retrieve_local_specialization (parm);
10456 }
10457 else
10458 {
10459 int idx, level;
10460 template_parm_level_and_index (parm, &level, &idx);
10461
10462 if (index == 0)
10463 {
10464 aps = make_argument_pack_select (arg_pack, index);
10465 /* Update the corresponding argument. */
10466 TMPL_ARG (args, level, idx) = aps;
10467 }
10468 else
10469 /* Re-use the ARGUMENT_PACK_SELECT. */
10470 aps = TMPL_ARG (args, level, idx);
10471 }
10472 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10473 }
10474
10475 /* Substitute into the PATTERN with the (possibly altered)
10476 arguments. */
10477 if (pattern == in_decl)
10478 /* Expanding a fixed parameter pack from
10479 coerce_template_parameter_pack. */
10480 t = tsubst_decl (pattern, args, complain);
10481 else if (pattern == error_mark_node)
10482 t = error_mark_node;
10483 else if (constraint_p (pattern))
10484 {
10485 if (processing_template_decl)
10486 t = tsubst_constraint (pattern, args, complain, in_decl);
10487 else
10488 t = (constraints_satisfied_p (pattern, args)
10489 ? boolean_true_node : boolean_false_node);
10490 }
10491 else if (!TYPE_P (pattern))
10492 t = tsubst_expr (pattern, args, complain, in_decl,
10493 /*integral_constant_expression_p=*/false);
10494 else
10495 t = tsubst (pattern, args, complain, in_decl);
10496
10497 /* If the Ith argument pack element is a pack expansion, then
10498 the Ith element resulting from the substituting is going to
10499 be a pack expansion as well. */
10500 if (ith_elem_is_expansion)
10501 t = make_pack_expansion (t);
10502
10503 return t;
10504 }
10505
10506 /* When the unexpanded parameter pack in a fold expression expands to an empty
10507 sequence, the value of the expression is as follows; the program is
10508 ill-formed if the operator is not listed in this table.
10509
10510 * 1
10511 + 0
10512 & -1
10513 | 0
10514 && true
10515 || false
10516 , void() */
10517
10518 tree
10519 expand_empty_fold (tree t, tsubst_flags_t complain)
10520 {
10521 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10522 if (!FOLD_EXPR_MODIFY_P (t))
10523 switch (code)
10524 {
10525 case MULT_EXPR:
10526 return integer_one_node;
10527 case PLUS_EXPR:
10528 return integer_zero_node;
10529 case BIT_AND_EXPR:
10530 return integer_minus_one_node;
10531 case BIT_IOR_EXPR:
10532 return integer_zero_node;
10533 case TRUTH_ANDIF_EXPR:
10534 return boolean_true_node;
10535 case TRUTH_ORIF_EXPR:
10536 return boolean_false_node;
10537 case COMPOUND_EXPR:
10538 return void_node;
10539 default:
10540 break;
10541 }
10542
10543 if (complain & tf_error)
10544 error_at (location_of (t),
10545 "fold of empty expansion over %O", code);
10546 return error_mark_node;
10547 }
10548
10549 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10550 form an expression that combines the two terms using the
10551 operator of T. */
10552
10553 static tree
10554 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10555 {
10556 tree op = FOLD_EXPR_OP (t);
10557 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10558
10559 // Handle compound assignment operators.
10560 if (FOLD_EXPR_MODIFY_P (t))
10561 return build_x_modify_expr (input_location, left, code, right, complain);
10562
10563 switch (code)
10564 {
10565 case COMPOUND_EXPR:
10566 return build_x_compound_expr (input_location, left, right, complain);
10567 case DOTSTAR_EXPR:
10568 return build_m_component_ref (left, right, complain);
10569 default:
10570 return build_x_binary_op (input_location, code,
10571 left, TREE_CODE (left),
10572 right, TREE_CODE (right),
10573 /*overload=*/NULL,
10574 complain);
10575 }
10576 }
10577
10578 /* Substitute ARGS into the pack of a fold expression T. */
10579
10580 static inline tree
10581 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10582 {
10583 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10584 }
10585
10586 /* Substitute ARGS into the pack of a fold expression T. */
10587
10588 static inline tree
10589 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10590 {
10591 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10592 }
10593
10594 /* Expand a PACK of arguments into a grouped as left fold.
10595 Given a pack containing elements A0, A1, ..., An and an
10596 operator @, this builds the expression:
10597
10598 ((A0 @ A1) @ A2) ... @ An
10599
10600 Note that PACK must not be empty.
10601
10602 The operator is defined by the original fold expression T. */
10603
10604 static tree
10605 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10606 {
10607 tree left = TREE_VEC_ELT (pack, 0);
10608 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10609 {
10610 tree right = TREE_VEC_ELT (pack, i);
10611 left = fold_expression (t, left, right, complain);
10612 }
10613 return left;
10614 }
10615
10616 /* Substitute into a unary left fold expression. */
10617
10618 static tree
10619 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10620 tree in_decl)
10621 {
10622 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10623 if (pack == error_mark_node)
10624 return error_mark_node;
10625 if (TREE_VEC_LENGTH (pack) == 0)
10626 return expand_empty_fold (t, complain);
10627 else
10628 return expand_left_fold (t, pack, complain);
10629 }
10630
10631 /* Substitute into a binary left fold expression.
10632
10633 Do ths by building a single (non-empty) vector of argumnts and
10634 building the expression from those elements. */
10635
10636 static tree
10637 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10638 tree in_decl)
10639 {
10640 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10641 if (pack == error_mark_node)
10642 return error_mark_node;
10643 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10644 if (init == error_mark_node)
10645 return error_mark_node;
10646
10647 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10648 TREE_VEC_ELT (vec, 0) = init;
10649 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10650 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10651
10652 return expand_left_fold (t, vec, complain);
10653 }
10654
10655 /* Expand a PACK of arguments into a grouped as right fold.
10656 Given a pack containing elementns A0, A1, ..., and an
10657 operator @, this builds the expression:
10658
10659 A0@ ... (An-2 @ (An-1 @ An))
10660
10661 Note that PACK must not be empty.
10662
10663 The operator is defined by the original fold expression T. */
10664
10665 tree
10666 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10667 {
10668 // Build the expression.
10669 int n = TREE_VEC_LENGTH (pack);
10670 tree right = TREE_VEC_ELT (pack, n - 1);
10671 for (--n; n != 0; --n)
10672 {
10673 tree left = TREE_VEC_ELT (pack, n - 1);
10674 right = fold_expression (t, left, right, complain);
10675 }
10676 return right;
10677 }
10678
10679 /* Substitute into a unary right fold expression. */
10680
10681 static tree
10682 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10683 tree in_decl)
10684 {
10685 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10686 if (pack == error_mark_node)
10687 return error_mark_node;
10688 if (TREE_VEC_LENGTH (pack) == 0)
10689 return expand_empty_fold (t, complain);
10690 else
10691 return expand_right_fold (t, pack, complain);
10692 }
10693
10694 /* Substitute into a binary right fold expression.
10695
10696 Do ths by building a single (non-empty) vector of arguments and
10697 building the expression from those elements. */
10698
10699 static tree
10700 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10701 tree in_decl)
10702 {
10703 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10704 if (pack == error_mark_node)
10705 return error_mark_node;
10706 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10707 if (init == error_mark_node)
10708 return error_mark_node;
10709
10710 int n = TREE_VEC_LENGTH (pack);
10711 tree vec = make_tree_vec (n + 1);
10712 for (int i = 0; i < n; ++i)
10713 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10714 TREE_VEC_ELT (vec, n) = init;
10715
10716 return expand_right_fold (t, vec, complain);
10717 }
10718
10719
10720 /* Substitute ARGS into T, which is an pack expansion
10721 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10722 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10723 (if only a partial substitution could be performed) or
10724 ERROR_MARK_NODE if there was an error. */
10725 tree
10726 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10727 tree in_decl)
10728 {
10729 tree pattern;
10730 tree pack, packs = NULL_TREE;
10731 bool unsubstituted_packs = false;
10732 int i, len = -1;
10733 tree result;
10734 hash_map<tree, tree> *saved_local_specializations = NULL;
10735 bool need_local_specializations = false;
10736 int levels;
10737
10738 gcc_assert (PACK_EXPANSION_P (t));
10739 pattern = PACK_EXPANSION_PATTERN (t);
10740
10741 /* Add in any args remembered from an earlier partial instantiation. */
10742 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10743
10744 levels = TMPL_ARGS_DEPTH (args);
10745
10746 /* Determine the argument packs that will instantiate the parameter
10747 packs used in the expansion expression. While we're at it,
10748 compute the number of arguments to be expanded and make sure it
10749 is consistent. */
10750 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10751 pack = TREE_CHAIN (pack))
10752 {
10753 tree parm_pack = TREE_VALUE (pack);
10754 tree arg_pack = NULL_TREE;
10755 tree orig_arg = NULL_TREE;
10756 int level = 0;
10757
10758 if (TREE_CODE (parm_pack) == BASES)
10759 {
10760 if (BASES_DIRECT (parm_pack))
10761 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10762 args, complain, in_decl, false));
10763 else
10764 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10765 args, complain, in_decl, false));
10766 }
10767 if (TREE_CODE (parm_pack) == PARM_DECL)
10768 {
10769 /* We know we have correct local_specializations if this
10770 expansion is at function scope, or if we're dealing with a
10771 local parameter in a requires expression; for the latter,
10772 tsubst_requires_expr set it up appropriately. */
10773 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10774 arg_pack = retrieve_local_specialization (parm_pack);
10775 else
10776 {
10777 /* We can't rely on local_specializations for a parameter
10778 name used later in a function declaration (such as in a
10779 late-specified return type). Even if it exists, it might
10780 have the wrong value for a recursive call. Just make a
10781 dummy decl, since it's only used for its type. */
10782 arg_pack = tsubst_decl (parm_pack, args, complain);
10783 if (arg_pack && DECL_PACK_P (arg_pack))
10784 /* Partial instantiation of the parm_pack, we can't build
10785 up an argument pack yet. */
10786 arg_pack = NULL_TREE;
10787 else
10788 arg_pack = make_fnparm_pack (arg_pack);
10789 need_local_specializations = true;
10790 }
10791 }
10792 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10793 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10794 else
10795 {
10796 int idx;
10797 template_parm_level_and_index (parm_pack, &level, &idx);
10798
10799 if (level <= levels)
10800 arg_pack = TMPL_ARG (args, level, idx);
10801 }
10802
10803 orig_arg = arg_pack;
10804 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10805 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10806
10807 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10808 /* This can only happen if we forget to expand an argument
10809 pack somewhere else. Just return an error, silently. */
10810 {
10811 result = make_tree_vec (1);
10812 TREE_VEC_ELT (result, 0) = error_mark_node;
10813 return result;
10814 }
10815
10816 if (arg_pack)
10817 {
10818 int my_len =
10819 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10820
10821 /* Don't bother trying to do a partial substitution with
10822 incomplete packs; we'll try again after deduction. */
10823 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10824 return t;
10825
10826 if (len < 0)
10827 len = my_len;
10828 else if (len != my_len)
10829 {
10830 if (!(complain & tf_error))
10831 /* Fail quietly. */;
10832 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10833 error ("mismatched argument pack lengths while expanding "
10834 "%<%T%>",
10835 pattern);
10836 else
10837 error ("mismatched argument pack lengths while expanding "
10838 "%<%E%>",
10839 pattern);
10840 return error_mark_node;
10841 }
10842
10843 /* Keep track of the parameter packs and their corresponding
10844 argument packs. */
10845 packs = tree_cons (parm_pack, arg_pack, packs);
10846 TREE_TYPE (packs) = orig_arg;
10847 }
10848 else
10849 {
10850 /* We can't substitute for this parameter pack. We use a flag as
10851 well as the missing_level counter because function parameter
10852 packs don't have a level. */
10853 unsubstituted_packs = true;
10854 }
10855 }
10856
10857 /* If the expansion is just T..., return the matching argument pack. */
10858 if (!unsubstituted_packs
10859 && TREE_PURPOSE (packs) == pattern)
10860 {
10861 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10862 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10863 || pack_expansion_args_count (args))
10864 return args;
10865 /* Otherwise use the normal path so we get convert_from_reference. */
10866 }
10867
10868 /* We cannot expand this expansion expression, because we don't have
10869 all of the argument packs we need. */
10870 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10871 {
10872 /* We got some full packs, but we can't substitute them in until we
10873 have values for all the packs. So remember these until then. */
10874
10875 t = make_pack_expansion (pattern);
10876 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10877 return t;
10878 }
10879 else if (unsubstituted_packs)
10880 {
10881 /* There were no real arguments, we're just replacing a parameter
10882 pack with another version of itself. Substitute into the
10883 pattern and return a PACK_EXPANSION_*. The caller will need to
10884 deal with that. */
10885 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10886 t = tsubst_expr (pattern, args, complain, in_decl,
10887 /*integral_constant_expression_p=*/false);
10888 else
10889 t = tsubst (pattern, args, complain, in_decl);
10890 t = make_pack_expansion (t);
10891 return t;
10892 }
10893
10894 gcc_assert (len >= 0);
10895
10896 if (need_local_specializations)
10897 {
10898 /* We're in a late-specified return type, so create our own local
10899 specializations map; the current map is either NULL or (in the
10900 case of recursive unification) might have bindings that we don't
10901 want to use or alter. */
10902 saved_local_specializations = local_specializations;
10903 local_specializations = new hash_map<tree, tree>;
10904 }
10905
10906 /* For each argument in each argument pack, substitute into the
10907 pattern. */
10908 result = make_tree_vec (len);
10909 for (i = 0; i < len; ++i)
10910 {
10911 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10912 i,
10913 args, complain,
10914 in_decl);
10915 TREE_VEC_ELT (result, i) = t;
10916 if (t == error_mark_node)
10917 {
10918 result = error_mark_node;
10919 break;
10920 }
10921 }
10922
10923 /* Update ARGS to restore the substitution from parameter packs to
10924 their argument packs. */
10925 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10926 {
10927 tree parm = TREE_PURPOSE (pack);
10928
10929 if (TREE_CODE (parm) == PARM_DECL
10930 || TREE_CODE (parm) == FIELD_DECL)
10931 register_local_specialization (TREE_TYPE (pack), parm);
10932 else
10933 {
10934 int idx, level;
10935
10936 if (TREE_VALUE (pack) == NULL_TREE)
10937 continue;
10938
10939 template_parm_level_and_index (parm, &level, &idx);
10940
10941 /* Update the corresponding argument. */
10942 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10943 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10944 TREE_TYPE (pack);
10945 else
10946 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10947 }
10948 }
10949
10950 if (need_local_specializations)
10951 {
10952 delete local_specializations;
10953 local_specializations = saved_local_specializations;
10954 }
10955
10956 return result;
10957 }
10958
10959 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10960 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10961 parameter packs; all parms generated from a function parameter pack will
10962 have the same DECL_PARM_INDEX. */
10963
10964 tree
10965 get_pattern_parm (tree parm, tree tmpl)
10966 {
10967 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10968 tree patparm;
10969
10970 if (DECL_ARTIFICIAL (parm))
10971 {
10972 for (patparm = DECL_ARGUMENTS (pattern);
10973 patparm; patparm = DECL_CHAIN (patparm))
10974 if (DECL_ARTIFICIAL (patparm)
10975 && DECL_NAME (parm) == DECL_NAME (patparm))
10976 break;
10977 }
10978 else
10979 {
10980 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10981 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10982 gcc_assert (DECL_PARM_INDEX (patparm)
10983 == DECL_PARM_INDEX (parm));
10984 }
10985
10986 return patparm;
10987 }
10988
10989 /* Substitute ARGS into the vector or list of template arguments T. */
10990
10991 static tree
10992 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10993 {
10994 tree orig_t = t;
10995 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10996 tree *elts;
10997
10998 if (t == error_mark_node)
10999 return error_mark_node;
11000
11001 len = TREE_VEC_LENGTH (t);
11002 elts = XALLOCAVEC (tree, len);
11003
11004 for (i = 0; i < len; i++)
11005 {
11006 tree orig_arg = TREE_VEC_ELT (t, i);
11007 tree new_arg;
11008
11009 if (TREE_CODE (orig_arg) == TREE_VEC)
11010 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11011 else if (PACK_EXPANSION_P (orig_arg))
11012 {
11013 /* Substitute into an expansion expression. */
11014 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11015
11016 if (TREE_CODE (new_arg) == TREE_VEC)
11017 /* Add to the expanded length adjustment the number of
11018 expanded arguments. We subtract one from this
11019 measurement, because the argument pack expression
11020 itself is already counted as 1 in
11021 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11022 the argument pack is empty. */
11023 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11024 }
11025 else if (ARGUMENT_PACK_P (orig_arg))
11026 {
11027 /* Substitute into each of the arguments. */
11028 new_arg = TYPE_P (orig_arg)
11029 ? cxx_make_type (TREE_CODE (orig_arg))
11030 : make_node (TREE_CODE (orig_arg));
11031
11032 SET_ARGUMENT_PACK_ARGS (
11033 new_arg,
11034 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11035 args, complain, in_decl));
11036
11037 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11038 new_arg = error_mark_node;
11039
11040 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11041 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11042 complain, in_decl);
11043 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11044
11045 if (TREE_TYPE (new_arg) == error_mark_node)
11046 new_arg = error_mark_node;
11047 }
11048 }
11049 else
11050 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11051
11052 if (new_arg == error_mark_node)
11053 return error_mark_node;
11054
11055 elts[i] = new_arg;
11056 if (new_arg != orig_arg)
11057 need_new = 1;
11058 }
11059
11060 if (!need_new)
11061 return t;
11062
11063 /* Make space for the expanded arguments coming from template
11064 argument packs. */
11065 t = make_tree_vec (len + expanded_len_adjust);
11066 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11067 arguments for a member template.
11068 In that case each TREE_VEC in ORIG_T represents a level of template
11069 arguments, and ORIG_T won't carry any non defaulted argument count.
11070 It will rather be the nested TREE_VECs that will carry one.
11071 In other words, ORIG_T carries a non defaulted argument count only
11072 if it doesn't contain any nested TREE_VEC. */
11073 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11074 {
11075 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11076 count += expanded_len_adjust;
11077 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11078 }
11079 for (i = 0, out = 0; i < len; i++)
11080 {
11081 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11082 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11083 && TREE_CODE (elts[i]) == TREE_VEC)
11084 {
11085 int idx;
11086
11087 /* Now expand the template argument pack "in place". */
11088 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11089 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11090 }
11091 else
11092 {
11093 TREE_VEC_ELT (t, out) = elts[i];
11094 out++;
11095 }
11096 }
11097
11098 return t;
11099 }
11100
11101 /* Return the result of substituting ARGS into the template parameters
11102 given by PARMS. If there are m levels of ARGS and m + n levels of
11103 PARMS, then the result will contain n levels of PARMS. For
11104 example, if PARMS is `template <class T> template <class U>
11105 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11106 result will be `template <int*, double, class V>'. */
11107
11108 static tree
11109 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11110 {
11111 tree r = NULL_TREE;
11112 tree* new_parms;
11113
11114 /* When substituting into a template, we must set
11115 PROCESSING_TEMPLATE_DECL as the template parameters may be
11116 dependent if they are based on one-another, and the dependency
11117 predicates are short-circuit outside of templates. */
11118 ++processing_template_decl;
11119
11120 for (new_parms = &r;
11121 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11122 new_parms = &(TREE_CHAIN (*new_parms)),
11123 parms = TREE_CHAIN (parms))
11124 {
11125 tree new_vec =
11126 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11127 int i;
11128
11129 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11130 {
11131 tree tuple;
11132
11133 if (parms == error_mark_node)
11134 continue;
11135
11136 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11137
11138 if (tuple == error_mark_node)
11139 continue;
11140
11141 TREE_VEC_ELT (new_vec, i) =
11142 tsubst_template_parm (tuple, args, complain);
11143 }
11144
11145 *new_parms =
11146 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11147 - TMPL_ARGS_DEPTH (args)),
11148 new_vec, NULL_TREE);
11149 }
11150
11151 --processing_template_decl;
11152
11153 return r;
11154 }
11155
11156 /* Return the result of substituting ARGS into one template parameter
11157 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11158 parameter and which TREE_PURPOSE is the default argument of the
11159 template parameter. */
11160
11161 static tree
11162 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11163 {
11164 tree default_value, parm_decl;
11165
11166 if (args == NULL_TREE
11167 || t == NULL_TREE
11168 || t == error_mark_node)
11169 return t;
11170
11171 gcc_assert (TREE_CODE (t) == TREE_LIST);
11172
11173 default_value = TREE_PURPOSE (t);
11174 parm_decl = TREE_VALUE (t);
11175
11176 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11177 if (TREE_CODE (parm_decl) == PARM_DECL
11178 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11179 parm_decl = error_mark_node;
11180 default_value = tsubst_template_arg (default_value, args,
11181 complain, NULL_TREE);
11182
11183 return build_tree_list (default_value, parm_decl);
11184 }
11185
11186 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11187 type T. If T is not an aggregate or enumeration type, it is
11188 handled as if by tsubst. IN_DECL is as for tsubst. If
11189 ENTERING_SCOPE is nonzero, T is the context for a template which
11190 we are presently tsubst'ing. Return the substituted value. */
11191
11192 static tree
11193 tsubst_aggr_type (tree t,
11194 tree args,
11195 tsubst_flags_t complain,
11196 tree in_decl,
11197 int entering_scope)
11198 {
11199 if (t == NULL_TREE)
11200 return NULL_TREE;
11201
11202 switch (TREE_CODE (t))
11203 {
11204 case RECORD_TYPE:
11205 if (TYPE_PTRMEMFUNC_P (t))
11206 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11207
11208 /* Else fall through. */
11209 case ENUMERAL_TYPE:
11210 case UNION_TYPE:
11211 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11212 {
11213 tree argvec;
11214 tree context;
11215 tree r;
11216 int saved_unevaluated_operand;
11217 int saved_inhibit_evaluation_warnings;
11218
11219 /* In "sizeof(X<I>)" we need to evaluate "I". */
11220 saved_unevaluated_operand = cp_unevaluated_operand;
11221 cp_unevaluated_operand = 0;
11222 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11223 c_inhibit_evaluation_warnings = 0;
11224
11225 /* First, determine the context for the type we are looking
11226 up. */
11227 context = TYPE_CONTEXT (t);
11228 if (context && TYPE_P (context))
11229 {
11230 context = tsubst_aggr_type (context, args, complain,
11231 in_decl, /*entering_scope=*/1);
11232 /* If context is a nested class inside a class template,
11233 it may still need to be instantiated (c++/33959). */
11234 context = complete_type (context);
11235 }
11236
11237 /* Then, figure out what arguments are appropriate for the
11238 type we are trying to find. For example, given:
11239
11240 template <class T> struct S;
11241 template <class T, class U> void f(T, U) { S<U> su; }
11242
11243 and supposing that we are instantiating f<int, double>,
11244 then our ARGS will be {int, double}, but, when looking up
11245 S we only want {double}. */
11246 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11247 complain, in_decl);
11248 if (argvec == error_mark_node)
11249 r = error_mark_node;
11250 else
11251 {
11252 r = lookup_template_class (t, argvec, in_decl, context,
11253 entering_scope, complain);
11254 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11255 }
11256
11257 cp_unevaluated_operand = saved_unevaluated_operand;
11258 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11259
11260 return r;
11261 }
11262 else
11263 /* This is not a template type, so there's nothing to do. */
11264 return t;
11265
11266 default:
11267 return tsubst (t, args, complain, in_decl);
11268 }
11269 }
11270
11271 /* Substitute into the default argument ARG (a default argument for
11272 FN), which has the indicated TYPE. */
11273
11274 tree
11275 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11276 {
11277 tree saved_class_ptr = NULL_TREE;
11278 tree saved_class_ref = NULL_TREE;
11279 int errs = errorcount + sorrycount;
11280
11281 /* This can happen in invalid code. */
11282 if (TREE_CODE (arg) == DEFAULT_ARG)
11283 return arg;
11284
11285 /* This default argument came from a template. Instantiate the
11286 default argument here, not in tsubst. In the case of
11287 something like:
11288
11289 template <class T>
11290 struct S {
11291 static T t();
11292 void f(T = t());
11293 };
11294
11295 we must be careful to do name lookup in the scope of S<T>,
11296 rather than in the current class. */
11297 push_access_scope (fn);
11298 /* The "this" pointer is not valid in a default argument. */
11299 if (cfun)
11300 {
11301 saved_class_ptr = current_class_ptr;
11302 cp_function_chain->x_current_class_ptr = NULL_TREE;
11303 saved_class_ref = current_class_ref;
11304 cp_function_chain->x_current_class_ref = NULL_TREE;
11305 }
11306
11307 push_deferring_access_checks(dk_no_deferred);
11308 /* The default argument expression may cause implicitly defined
11309 member functions to be synthesized, which will result in garbage
11310 collection. We must treat this situation as if we were within
11311 the body of function so as to avoid collecting live data on the
11312 stack. */
11313 ++function_depth;
11314 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11315 complain, NULL_TREE,
11316 /*integral_constant_expression_p=*/false);
11317 --function_depth;
11318 pop_deferring_access_checks();
11319
11320 /* Restore the "this" pointer. */
11321 if (cfun)
11322 {
11323 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11324 cp_function_chain->x_current_class_ref = saved_class_ref;
11325 }
11326
11327 if (errorcount+sorrycount > errs
11328 && (complain & tf_warning_or_error))
11329 inform (input_location,
11330 " when instantiating default argument for call to %D", fn);
11331
11332 /* Make sure the default argument is reasonable. */
11333 arg = check_default_argument (type, arg, complain);
11334
11335 pop_access_scope (fn);
11336
11337 return arg;
11338 }
11339
11340 /* Substitute into all the default arguments for FN. */
11341
11342 static void
11343 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11344 {
11345 tree arg;
11346 tree tmpl_args;
11347
11348 tmpl_args = DECL_TI_ARGS (fn);
11349
11350 /* If this function is not yet instantiated, we certainly don't need
11351 its default arguments. */
11352 if (uses_template_parms (tmpl_args))
11353 return;
11354 /* Don't do this again for clones. */
11355 if (DECL_CLONED_FUNCTION_P (fn))
11356 return;
11357
11358 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11359 arg;
11360 arg = TREE_CHAIN (arg))
11361 if (TREE_PURPOSE (arg))
11362 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11363 TREE_VALUE (arg),
11364 TREE_PURPOSE (arg),
11365 complain);
11366 }
11367
11368 /* Substitute the ARGS into the T, which is a _DECL. Return the
11369 result of the substitution. Issue error and warning messages under
11370 control of COMPLAIN. */
11371
11372 static tree
11373 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11374 {
11375 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11376 location_t saved_loc;
11377 tree r = NULL_TREE;
11378 tree in_decl = t;
11379 hashval_t hash = 0;
11380
11381 /* Set the filename and linenumber to improve error-reporting. */
11382 saved_loc = input_location;
11383 input_location = DECL_SOURCE_LOCATION (t);
11384
11385 switch (TREE_CODE (t))
11386 {
11387 case TEMPLATE_DECL:
11388 {
11389 /* We can get here when processing a member function template,
11390 member class template, or template template parameter. */
11391 tree decl = DECL_TEMPLATE_RESULT (t);
11392 tree spec;
11393 tree tmpl_args;
11394 tree full_args;
11395
11396 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11397 {
11398 /* Template template parameter is treated here. */
11399 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11400 if (new_type == error_mark_node)
11401 r = error_mark_node;
11402 /* If we get a real template back, return it. This can happen in
11403 the context of most_specialized_partial_spec. */
11404 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11405 r = new_type;
11406 else
11407 /* The new TEMPLATE_DECL was built in
11408 reduce_template_parm_level. */
11409 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11410 break;
11411 }
11412
11413 /* We might already have an instance of this template.
11414 The ARGS are for the surrounding class type, so the
11415 full args contain the tsubst'd args for the context,
11416 plus the innermost args from the template decl. */
11417 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11418 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11419 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11420 /* Because this is a template, the arguments will still be
11421 dependent, even after substitution. If
11422 PROCESSING_TEMPLATE_DECL is not set, the dependency
11423 predicates will short-circuit. */
11424 ++processing_template_decl;
11425 full_args = tsubst_template_args (tmpl_args, args,
11426 complain, in_decl);
11427 --processing_template_decl;
11428 if (full_args == error_mark_node)
11429 RETURN (error_mark_node);
11430
11431 /* If this is a default template template argument,
11432 tsubst might not have changed anything. */
11433 if (full_args == tmpl_args)
11434 RETURN (t);
11435
11436 hash = hash_tmpl_and_args (t, full_args);
11437 spec = retrieve_specialization (t, full_args, hash);
11438 if (spec != NULL_TREE)
11439 {
11440 r = spec;
11441 break;
11442 }
11443
11444 /* Make a new template decl. It will be similar to the
11445 original, but will record the current template arguments.
11446 We also create a new function declaration, which is just
11447 like the old one, but points to this new template, rather
11448 than the old one. */
11449 r = copy_decl (t);
11450 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11451 DECL_CHAIN (r) = NULL_TREE;
11452
11453 // Build new template info linking to the original template decl.
11454 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11455
11456 if (TREE_CODE (decl) == TYPE_DECL
11457 && !TYPE_DECL_ALIAS_P (decl))
11458 {
11459 tree new_type;
11460 ++processing_template_decl;
11461 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11462 --processing_template_decl;
11463 if (new_type == error_mark_node)
11464 RETURN (error_mark_node);
11465
11466 TREE_TYPE (r) = new_type;
11467 /* For a partial specialization, we need to keep pointing to
11468 the primary template. */
11469 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11470 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11471 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11472 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11473 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11474 }
11475 else
11476 {
11477 tree new_decl;
11478 ++processing_template_decl;
11479 new_decl = tsubst (decl, args, complain, in_decl);
11480 --processing_template_decl;
11481 if (new_decl == error_mark_node)
11482 RETURN (error_mark_node);
11483
11484 DECL_TEMPLATE_RESULT (r) = new_decl;
11485 DECL_TI_TEMPLATE (new_decl) = r;
11486 TREE_TYPE (r) = TREE_TYPE (new_decl);
11487 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11488 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11489 }
11490
11491 SET_DECL_IMPLICIT_INSTANTIATION (r);
11492 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11493 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11494
11495 /* The template parameters for this new template are all the
11496 template parameters for the old template, except the
11497 outermost level of parameters. */
11498 DECL_TEMPLATE_PARMS (r)
11499 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11500 complain);
11501
11502 if (PRIMARY_TEMPLATE_P (t))
11503 DECL_PRIMARY_TEMPLATE (r) = r;
11504
11505 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11506 /* Record this non-type partial instantiation. */
11507 register_specialization (r, t,
11508 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11509 false, hash);
11510 }
11511 break;
11512
11513 case FUNCTION_DECL:
11514 {
11515 tree ctx;
11516 tree argvec = NULL_TREE;
11517 tree *friends;
11518 tree gen_tmpl;
11519 tree type;
11520 int member;
11521 int args_depth;
11522 int parms_depth;
11523
11524 /* Nobody should be tsubst'ing into non-template functions. */
11525 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11526
11527 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11528 {
11529 tree spec;
11530 bool dependent_p;
11531
11532 /* If T is not dependent, just return it. We have to
11533 increment PROCESSING_TEMPLATE_DECL because
11534 value_dependent_expression_p assumes that nothing is
11535 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11536 ++processing_template_decl;
11537 dependent_p = value_dependent_expression_p (t);
11538 --processing_template_decl;
11539 if (!dependent_p)
11540 RETURN (t);
11541
11542 /* Calculate the most general template of which R is a
11543 specialization, and the complete set of arguments used to
11544 specialize R. */
11545 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11546 argvec = tsubst_template_args (DECL_TI_ARGS
11547 (DECL_TEMPLATE_RESULT
11548 (DECL_TI_TEMPLATE (t))),
11549 args, complain, in_decl);
11550 if (argvec == error_mark_node)
11551 RETURN (error_mark_node);
11552
11553 /* Check to see if we already have this specialization. */
11554 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11555 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11556
11557 if (spec)
11558 {
11559 r = spec;
11560 break;
11561 }
11562
11563 /* We can see more levels of arguments than parameters if
11564 there was a specialization of a member template, like
11565 this:
11566
11567 template <class T> struct S { template <class U> void f(); }
11568 template <> template <class U> void S<int>::f(U);
11569
11570 Here, we'll be substituting into the specialization,
11571 because that's where we can find the code we actually
11572 want to generate, but we'll have enough arguments for
11573 the most general template.
11574
11575 We also deal with the peculiar case:
11576
11577 template <class T> struct S {
11578 template <class U> friend void f();
11579 };
11580 template <class U> void f() {}
11581 template S<int>;
11582 template void f<double>();
11583
11584 Here, the ARGS for the instantiation of will be {int,
11585 double}. But, we only need as many ARGS as there are
11586 levels of template parameters in CODE_PATTERN. We are
11587 careful not to get fooled into reducing the ARGS in
11588 situations like:
11589
11590 template <class T> struct S { template <class U> void f(U); }
11591 template <class T> template <> void S<T>::f(int) {}
11592
11593 which we can spot because the pattern will be a
11594 specialization in this case. */
11595 args_depth = TMPL_ARGS_DEPTH (args);
11596 parms_depth =
11597 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11598 if (args_depth > parms_depth
11599 && !DECL_TEMPLATE_SPECIALIZATION (t))
11600 args = get_innermost_template_args (args, parms_depth);
11601 }
11602 else
11603 {
11604 /* This special case arises when we have something like this:
11605
11606 template <class T> struct S {
11607 friend void f<int>(int, double);
11608 };
11609
11610 Here, the DECL_TI_TEMPLATE for the friend declaration
11611 will be an IDENTIFIER_NODE. We are being called from
11612 tsubst_friend_function, and we want only to create a
11613 new decl (R) with appropriate types so that we can call
11614 determine_specialization. */
11615 gen_tmpl = NULL_TREE;
11616 }
11617
11618 if (DECL_CLASS_SCOPE_P (t))
11619 {
11620 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11621 member = 2;
11622 else
11623 member = 1;
11624 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11625 complain, t, /*entering_scope=*/1);
11626 }
11627 else
11628 {
11629 member = 0;
11630 ctx = DECL_CONTEXT (t);
11631 }
11632 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11633 if (type == error_mark_node)
11634 RETURN (error_mark_node);
11635
11636 /* If we hit excessive deduction depth, the type is bogus even if
11637 it isn't error_mark_node, so don't build a decl. */
11638 if (excessive_deduction_depth)
11639 RETURN (error_mark_node);
11640
11641 /* We do NOT check for matching decls pushed separately at this
11642 point, as they may not represent instantiations of this
11643 template, and in any case are considered separate under the
11644 discrete model. */
11645 r = copy_decl (t);
11646 DECL_USE_TEMPLATE (r) = 0;
11647 TREE_TYPE (r) = type;
11648 /* Clear out the mangled name and RTL for the instantiation. */
11649 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11650 SET_DECL_RTL (r, NULL);
11651 /* Leave DECL_INITIAL set on deleted instantiations. */
11652 if (!DECL_DELETED_FN (r))
11653 DECL_INITIAL (r) = NULL_TREE;
11654 DECL_CONTEXT (r) = ctx;
11655
11656 /* OpenMP UDRs have the only argument a reference to the declared
11657 type. We want to diagnose if the declared type is a reference,
11658 which is invalid, but as references to references are usually
11659 quietly merged, diagnose it here. */
11660 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11661 {
11662 tree argtype
11663 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11664 argtype = tsubst (argtype, args, complain, in_decl);
11665 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11666 error_at (DECL_SOURCE_LOCATION (t),
11667 "reference type %qT in "
11668 "%<#pragma omp declare reduction%>", argtype);
11669 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11670 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11671 argtype);
11672 }
11673
11674 if (member && DECL_CONV_FN_P (r))
11675 /* Type-conversion operator. Reconstruct the name, in
11676 case it's the name of one of the template's parameters. */
11677 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11678
11679 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11680 complain, t);
11681 DECL_RESULT (r) = NULL_TREE;
11682
11683 TREE_STATIC (r) = 0;
11684 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11685 DECL_EXTERNAL (r) = 1;
11686 /* If this is an instantiation of a function with internal
11687 linkage, we already know what object file linkage will be
11688 assigned to the instantiation. */
11689 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11690 DECL_DEFER_OUTPUT (r) = 0;
11691 DECL_CHAIN (r) = NULL_TREE;
11692 DECL_PENDING_INLINE_INFO (r) = 0;
11693 DECL_PENDING_INLINE_P (r) = 0;
11694 DECL_SAVED_TREE (r) = NULL_TREE;
11695 DECL_STRUCT_FUNCTION (r) = NULL;
11696 TREE_USED (r) = 0;
11697 /* We'll re-clone as appropriate in instantiate_template. */
11698 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11699
11700 /* If we aren't complaining now, return on error before we register
11701 the specialization so that we'll complain eventually. */
11702 if ((complain & tf_error) == 0
11703 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11704 && !grok_op_properties (r, /*complain=*/false))
11705 RETURN (error_mark_node);
11706
11707 /* When instantiating a constrained member, substitute
11708 into the constraints to create a new constraint. */
11709 if (tree ci = get_constraints (t))
11710 if (member)
11711 {
11712 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11713 set_constraints (r, ci);
11714 }
11715
11716 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11717 this in the special friend case mentioned above where
11718 GEN_TMPL is NULL. */
11719 if (gen_tmpl)
11720 {
11721 DECL_TEMPLATE_INFO (r)
11722 = build_template_info (gen_tmpl, argvec);
11723 SET_DECL_IMPLICIT_INSTANTIATION (r);
11724
11725 tree new_r
11726 = register_specialization (r, gen_tmpl, argvec, false, hash);
11727 if (new_r != r)
11728 /* We instantiated this while substituting into
11729 the type earlier (template/friend54.C). */
11730 RETURN (new_r);
11731
11732 /* We're not supposed to instantiate default arguments
11733 until they are called, for a template. But, for a
11734 declaration like:
11735
11736 template <class T> void f ()
11737 { extern void g(int i = T()); }
11738
11739 we should do the substitution when the template is
11740 instantiated. We handle the member function case in
11741 instantiate_class_template since the default arguments
11742 might refer to other members of the class. */
11743 if (!member
11744 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11745 && !uses_template_parms (argvec))
11746 tsubst_default_arguments (r, complain);
11747 }
11748 else
11749 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11750
11751 /* Copy the list of befriending classes. */
11752 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11753 *friends;
11754 friends = &TREE_CHAIN (*friends))
11755 {
11756 *friends = copy_node (*friends);
11757 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11758 args, complain,
11759 in_decl);
11760 }
11761
11762 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11763 {
11764 maybe_retrofit_in_chrg (r);
11765 if (DECL_CONSTRUCTOR_P (r))
11766 grok_ctor_properties (ctx, r);
11767 if (DECL_INHERITED_CTOR_BASE (r))
11768 deduce_inheriting_ctor (r);
11769 /* If this is an instantiation of a member template, clone it.
11770 If it isn't, that'll be handled by
11771 clone_constructors_and_destructors. */
11772 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11773 clone_function_decl (r, /*update_method_vec_p=*/0);
11774 }
11775 else if ((complain & tf_error) != 0
11776 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11777 && !grok_op_properties (r, /*complain=*/true))
11778 RETURN (error_mark_node);
11779
11780 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11781 SET_DECL_FRIEND_CONTEXT (r,
11782 tsubst (DECL_FRIEND_CONTEXT (t),
11783 args, complain, in_decl));
11784
11785 /* Possibly limit visibility based on template args. */
11786 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11787 if (DECL_VISIBILITY_SPECIFIED (t))
11788 {
11789 DECL_VISIBILITY_SPECIFIED (r) = 0;
11790 DECL_ATTRIBUTES (r)
11791 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11792 }
11793 determine_visibility (r);
11794 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11795 && !processing_template_decl)
11796 defaulted_late_check (r);
11797
11798 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11799 args, complain, in_decl);
11800 }
11801 break;
11802
11803 case PARM_DECL:
11804 {
11805 tree type = NULL_TREE;
11806 int i, len = 1;
11807 tree expanded_types = NULL_TREE;
11808 tree prev_r = NULL_TREE;
11809 tree first_r = NULL_TREE;
11810
11811 if (DECL_PACK_P (t))
11812 {
11813 /* If there is a local specialization that isn't a
11814 parameter pack, it means that we're doing a "simple"
11815 substitution from inside tsubst_pack_expansion. Just
11816 return the local specialization (which will be a single
11817 parm). */
11818 tree spec = retrieve_local_specialization (t);
11819 if (spec
11820 && TREE_CODE (spec) == PARM_DECL
11821 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11822 RETURN (spec);
11823
11824 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11825 the parameters in this function parameter pack. */
11826 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11827 complain, in_decl);
11828 if (TREE_CODE (expanded_types) == TREE_VEC)
11829 {
11830 len = TREE_VEC_LENGTH (expanded_types);
11831
11832 /* Zero-length parameter packs are boring. Just substitute
11833 into the chain. */
11834 if (len == 0)
11835 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11836 TREE_CHAIN (t)));
11837 }
11838 else
11839 {
11840 /* All we did was update the type. Make a note of that. */
11841 type = expanded_types;
11842 expanded_types = NULL_TREE;
11843 }
11844 }
11845
11846 /* Loop through all of the parameters we'll build. When T is
11847 a function parameter pack, LEN is the number of expanded
11848 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11849 r = NULL_TREE;
11850 for (i = 0; i < len; ++i)
11851 {
11852 prev_r = r;
11853 r = copy_node (t);
11854 if (DECL_TEMPLATE_PARM_P (t))
11855 SET_DECL_TEMPLATE_PARM_P (r);
11856
11857 if (expanded_types)
11858 /* We're on the Ith parameter of the function parameter
11859 pack. */
11860 {
11861 /* Get the Ith type. */
11862 type = TREE_VEC_ELT (expanded_types, i);
11863
11864 /* Rename the parameter to include the index. */
11865 DECL_NAME (r)
11866 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11867 }
11868 else if (!type)
11869 /* We're dealing with a normal parameter. */
11870 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11871
11872 type = type_decays_to (type);
11873 TREE_TYPE (r) = type;
11874 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11875
11876 if (DECL_INITIAL (r))
11877 {
11878 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11879 DECL_INITIAL (r) = TREE_TYPE (r);
11880 else
11881 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11882 complain, in_decl);
11883 }
11884
11885 DECL_CONTEXT (r) = NULL_TREE;
11886
11887 if (!DECL_TEMPLATE_PARM_P (r))
11888 DECL_ARG_TYPE (r) = type_passed_as (type);
11889
11890 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11891 args, complain, in_decl);
11892
11893 /* Keep track of the first new parameter we
11894 generate. That's what will be returned to the
11895 caller. */
11896 if (!first_r)
11897 first_r = r;
11898
11899 /* Build a proper chain of parameters when substituting
11900 into a function parameter pack. */
11901 if (prev_r)
11902 DECL_CHAIN (prev_r) = r;
11903 }
11904
11905 /* If cp_unevaluated_operand is set, we're just looking for a
11906 single dummy parameter, so don't keep going. */
11907 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11908 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11909 complain, DECL_CHAIN (t));
11910
11911 /* FIRST_R contains the start of the chain we've built. */
11912 r = first_r;
11913 }
11914 break;
11915
11916 case FIELD_DECL:
11917 {
11918 tree type = NULL_TREE;
11919 tree vec = NULL_TREE;
11920 tree expanded_types = NULL_TREE;
11921 int len = 1;
11922
11923 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11924 {
11925 /* This field is a lambda capture pack. Return a TREE_VEC of
11926 the expanded fields to instantiate_class_template_1 and
11927 store them in the specializations hash table as a
11928 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11929 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11930 complain, in_decl);
11931 if (TREE_CODE (expanded_types) == TREE_VEC)
11932 {
11933 len = TREE_VEC_LENGTH (expanded_types);
11934 vec = make_tree_vec (len);
11935 }
11936 else
11937 {
11938 /* All we did was update the type. Make a note of that. */
11939 type = expanded_types;
11940 expanded_types = NULL_TREE;
11941 }
11942 }
11943
11944 for (int i = 0; i < len; ++i)
11945 {
11946 r = copy_decl (t);
11947 if (expanded_types)
11948 {
11949 type = TREE_VEC_ELT (expanded_types, i);
11950 DECL_NAME (r)
11951 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11952 }
11953 else if (!type)
11954 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11955
11956 if (type == error_mark_node)
11957 RETURN (error_mark_node);
11958 TREE_TYPE (r) = type;
11959 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11960
11961 if (DECL_C_BIT_FIELD (r))
11962 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11963 non-bit-fields DECL_INITIAL is a non-static data member
11964 initializer, which gets deferred instantiation. */
11965 DECL_INITIAL (r)
11966 = tsubst_expr (DECL_INITIAL (t), args,
11967 complain, in_decl,
11968 /*integral_constant_expression_p=*/true);
11969 else if (DECL_INITIAL (t))
11970 {
11971 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11972 NSDMI in perform_member_init. Still set DECL_INITIAL
11973 so that we know there is one. */
11974 DECL_INITIAL (r) = void_node;
11975 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11976 retrofit_lang_decl (r);
11977 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11978 }
11979 /* We don't have to set DECL_CONTEXT here; it is set by
11980 finish_member_declaration. */
11981 DECL_CHAIN (r) = NULL_TREE;
11982
11983 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11984 args, complain, in_decl);
11985
11986 if (vec)
11987 TREE_VEC_ELT (vec, i) = r;
11988 }
11989
11990 if (vec)
11991 {
11992 r = vec;
11993 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11994 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11995 SET_ARGUMENT_PACK_ARGS (pack, vec);
11996 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11997 TREE_TYPE (pack) = tpack;
11998 register_specialization (pack, t, args, false, 0);
11999 }
12000 }
12001 break;
12002
12003 case USING_DECL:
12004 /* We reach here only for member using decls. We also need to check
12005 uses_template_parms because DECL_DEPENDENT_P is not set for a
12006 using-declaration that designates a member of the current
12007 instantiation (c++/53549). */
12008 if (DECL_DEPENDENT_P (t)
12009 || uses_template_parms (USING_DECL_SCOPE (t)))
12010 {
12011 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12012 complain, in_decl);
12013 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12014 r = do_class_using_decl (inst_scope, name);
12015 if (!r)
12016 r = error_mark_node;
12017 else
12018 {
12019 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12020 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12021 }
12022 }
12023 else
12024 {
12025 r = copy_node (t);
12026 DECL_CHAIN (r) = NULL_TREE;
12027 }
12028 break;
12029
12030 case TYPE_DECL:
12031 case VAR_DECL:
12032 {
12033 tree argvec = NULL_TREE;
12034 tree gen_tmpl = NULL_TREE;
12035 tree spec;
12036 tree tmpl = NULL_TREE;
12037 tree ctx;
12038 tree type = NULL_TREE;
12039 bool local_p;
12040
12041 if (TREE_TYPE (t) == error_mark_node)
12042 RETURN (error_mark_node);
12043
12044 if (TREE_CODE (t) == TYPE_DECL
12045 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12046 {
12047 /* If this is the canonical decl, we don't have to
12048 mess with instantiations, and often we can't (for
12049 typename, template type parms and such). Note that
12050 TYPE_NAME is not correct for the above test if
12051 we've copied the type for a typedef. */
12052 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12053 if (type == error_mark_node)
12054 RETURN (error_mark_node);
12055 r = TYPE_NAME (type);
12056 break;
12057 }
12058
12059 /* Check to see if we already have the specialization we
12060 need. */
12061 spec = NULL_TREE;
12062 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12063 {
12064 /* T is a static data member or namespace-scope entity.
12065 We have to substitute into namespace-scope variables
12066 (not just variable templates) because of cases like:
12067
12068 template <class T> void f() { extern T t; }
12069
12070 where the entity referenced is not known until
12071 instantiation time. */
12072 local_p = false;
12073 ctx = DECL_CONTEXT (t);
12074 if (DECL_CLASS_SCOPE_P (t))
12075 {
12076 ctx = tsubst_aggr_type (ctx, args,
12077 complain,
12078 in_decl, /*entering_scope=*/1);
12079 /* If CTX is unchanged, then T is in fact the
12080 specialization we want. That situation occurs when
12081 referencing a static data member within in its own
12082 class. We can use pointer equality, rather than
12083 same_type_p, because DECL_CONTEXT is always
12084 canonical... */
12085 if (ctx == DECL_CONTEXT (t)
12086 /* ... unless T is a member template; in which
12087 case our caller can be willing to create a
12088 specialization of that template represented
12089 by T. */
12090 && !(DECL_TI_TEMPLATE (t)
12091 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12092 spec = t;
12093 }
12094
12095 if (!spec)
12096 {
12097 tmpl = DECL_TI_TEMPLATE (t);
12098 gen_tmpl = most_general_template (tmpl);
12099 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12100 if (argvec != error_mark_node)
12101 argvec = (coerce_innermost_template_parms
12102 (DECL_TEMPLATE_PARMS (gen_tmpl),
12103 argvec, t, complain,
12104 /*all*/true, /*defarg*/true));
12105 if (argvec == error_mark_node)
12106 RETURN (error_mark_node);
12107 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12108 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12109 }
12110 }
12111 else
12112 {
12113 /* A local variable. */
12114 local_p = true;
12115 /* Subsequent calls to pushdecl will fill this in. */
12116 ctx = NULL_TREE;
12117 spec = retrieve_local_specialization (t);
12118 }
12119 /* If we already have the specialization we need, there is
12120 nothing more to do. */
12121 if (spec)
12122 {
12123 r = spec;
12124 break;
12125 }
12126
12127 /* Create a new node for the specialization we need. */
12128 r = copy_decl (t);
12129 if (type == NULL_TREE)
12130 {
12131 if (is_typedef_decl (t))
12132 type = DECL_ORIGINAL_TYPE (t);
12133 else
12134 type = TREE_TYPE (t);
12135 if (VAR_P (t)
12136 && VAR_HAD_UNKNOWN_BOUND (t)
12137 && type != error_mark_node)
12138 type = strip_array_domain (type);
12139 type = tsubst (type, args, complain, in_decl);
12140 }
12141 if (VAR_P (r))
12142 {
12143 /* Even if the original location is out of scope, the
12144 newly substituted one is not. */
12145 DECL_DEAD_FOR_LOCAL (r) = 0;
12146 DECL_INITIALIZED_P (r) = 0;
12147 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12148 if (type == error_mark_node)
12149 RETURN (error_mark_node);
12150 if (TREE_CODE (type) == FUNCTION_TYPE)
12151 {
12152 /* It may seem that this case cannot occur, since:
12153
12154 typedef void f();
12155 void g() { f x; }
12156
12157 declares a function, not a variable. However:
12158
12159 typedef void f();
12160 template <typename T> void g() { T t; }
12161 template void g<f>();
12162
12163 is an attempt to declare a variable with function
12164 type. */
12165 error ("variable %qD has function type",
12166 /* R is not yet sufficiently initialized, so we
12167 just use its name. */
12168 DECL_NAME (r));
12169 RETURN (error_mark_node);
12170 }
12171 type = complete_type (type);
12172 /* Wait until cp_finish_decl to set this again, to handle
12173 circular dependency (template/instantiate6.C). */
12174 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12175 type = check_var_type (DECL_NAME (r), type);
12176
12177 if (DECL_HAS_VALUE_EXPR_P (t))
12178 {
12179 tree ve = DECL_VALUE_EXPR (t);
12180 ve = tsubst_expr (ve, args, complain, in_decl,
12181 /*constant_expression_p=*/false);
12182 if (REFERENCE_REF_P (ve))
12183 {
12184 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12185 ve = TREE_OPERAND (ve, 0);
12186 }
12187 SET_DECL_VALUE_EXPR (r, ve);
12188 }
12189 if (CP_DECL_THREAD_LOCAL_P (r)
12190 && !processing_template_decl)
12191 set_decl_tls_model (r, decl_default_tls_model (r));
12192 }
12193 else if (DECL_SELF_REFERENCE_P (t))
12194 SET_DECL_SELF_REFERENCE_P (r);
12195 TREE_TYPE (r) = type;
12196 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12197 DECL_CONTEXT (r) = ctx;
12198 /* Clear out the mangled name and RTL for the instantiation. */
12199 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12200 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12201 SET_DECL_RTL (r, NULL);
12202 /* The initializer must not be expanded until it is required;
12203 see [temp.inst]. */
12204 DECL_INITIAL (r) = NULL_TREE;
12205 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12206 SET_DECL_RTL (r, NULL);
12207 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12208 if (VAR_P (r))
12209 {
12210 /* Possibly limit visibility based on template args. */
12211 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12212 if (DECL_VISIBILITY_SPECIFIED (t))
12213 {
12214 DECL_VISIBILITY_SPECIFIED (r) = 0;
12215 DECL_ATTRIBUTES (r)
12216 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12217 }
12218 determine_visibility (r);
12219 }
12220
12221 if (!local_p)
12222 {
12223 /* A static data member declaration is always marked
12224 external when it is declared in-class, even if an
12225 initializer is present. We mimic the non-template
12226 processing here. */
12227 DECL_EXTERNAL (r) = 1;
12228 if (DECL_NAMESPACE_SCOPE_P (t))
12229 DECL_NOT_REALLY_EXTERN (r) = 1;
12230
12231 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12232 SET_DECL_IMPLICIT_INSTANTIATION (r);
12233 register_specialization (r, gen_tmpl, argvec, false, hash);
12234 }
12235 else if (!cp_unevaluated_operand)
12236 register_local_specialization (r, t);
12237
12238 DECL_CHAIN (r) = NULL_TREE;
12239
12240 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12241 /*flags=*/0,
12242 args, complain, in_decl);
12243
12244 /* Preserve a typedef that names a type. */
12245 if (is_typedef_decl (r))
12246 {
12247 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12248 set_underlying_type (r);
12249 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12250 /* An alias template specialization can be dependent
12251 even if its underlying type is not. */
12252 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12253 }
12254
12255 layout_decl (r, 0);
12256 }
12257 break;
12258
12259 default:
12260 gcc_unreachable ();
12261 }
12262 #undef RETURN
12263
12264 out:
12265 /* Restore the file and line information. */
12266 input_location = saved_loc;
12267
12268 return r;
12269 }
12270
12271 /* Substitute into the ARG_TYPES of a function type.
12272 If END is a TREE_CHAIN, leave it and any following types
12273 un-substituted. */
12274
12275 static tree
12276 tsubst_arg_types (tree arg_types,
12277 tree args,
12278 tree end,
12279 tsubst_flags_t complain,
12280 tree in_decl)
12281 {
12282 tree remaining_arg_types;
12283 tree type = NULL_TREE;
12284 int i = 1;
12285 tree expanded_args = NULL_TREE;
12286 tree default_arg;
12287
12288 if (!arg_types || arg_types == void_list_node || arg_types == end)
12289 return arg_types;
12290
12291 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12292 args, end, complain, in_decl);
12293 if (remaining_arg_types == error_mark_node)
12294 return error_mark_node;
12295
12296 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12297 {
12298 /* For a pack expansion, perform substitution on the
12299 entire expression. Later on, we'll handle the arguments
12300 one-by-one. */
12301 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12302 args, complain, in_decl);
12303
12304 if (TREE_CODE (expanded_args) == TREE_VEC)
12305 /* So that we'll spin through the parameters, one by one. */
12306 i = TREE_VEC_LENGTH (expanded_args);
12307 else
12308 {
12309 /* We only partially substituted into the parameter
12310 pack. Our type is TYPE_PACK_EXPANSION. */
12311 type = expanded_args;
12312 expanded_args = NULL_TREE;
12313 }
12314 }
12315
12316 while (i > 0) {
12317 --i;
12318
12319 if (expanded_args)
12320 type = TREE_VEC_ELT (expanded_args, i);
12321 else if (!type)
12322 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12323
12324 if (type == error_mark_node)
12325 return error_mark_node;
12326 if (VOID_TYPE_P (type))
12327 {
12328 if (complain & tf_error)
12329 {
12330 error ("invalid parameter type %qT", type);
12331 if (in_decl)
12332 error ("in declaration %q+D", in_decl);
12333 }
12334 return error_mark_node;
12335 }
12336 /* DR 657. */
12337 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12338 return error_mark_node;
12339
12340 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12341 top-level qualifiers as required. */
12342 type = cv_unqualified (type_decays_to (type));
12343
12344 /* We do not substitute into default arguments here. The standard
12345 mandates that they be instantiated only when needed, which is
12346 done in build_over_call. */
12347 default_arg = TREE_PURPOSE (arg_types);
12348
12349 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12350 {
12351 /* We've instantiated a template before its default arguments
12352 have been parsed. This can happen for a nested template
12353 class, and is not an error unless we require the default
12354 argument in a call of this function. */
12355 remaining_arg_types =
12356 tree_cons (default_arg, type, remaining_arg_types);
12357 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12358 }
12359 else
12360 remaining_arg_types =
12361 hash_tree_cons (default_arg, type, remaining_arg_types);
12362 }
12363
12364 return remaining_arg_types;
12365 }
12366
12367 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12368 *not* handle the exception-specification for FNTYPE, because the
12369 initial substitution of explicitly provided template parameters
12370 during argument deduction forbids substitution into the
12371 exception-specification:
12372
12373 [temp.deduct]
12374
12375 All references in the function type of the function template to the
12376 corresponding template parameters are replaced by the specified tem-
12377 plate argument values. If a substitution in a template parameter or
12378 in the function type of the function template results in an invalid
12379 type, type deduction fails. [Note: The equivalent substitution in
12380 exception specifications is done only when the function is instanti-
12381 ated, at which point a program is ill-formed if the substitution
12382 results in an invalid type.] */
12383
12384 static tree
12385 tsubst_function_type (tree t,
12386 tree args,
12387 tsubst_flags_t complain,
12388 tree in_decl)
12389 {
12390 tree return_type;
12391 tree arg_types = NULL_TREE;
12392 tree fntype;
12393
12394 /* The TYPE_CONTEXT is not used for function/method types. */
12395 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12396
12397 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12398 failure. */
12399 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12400
12401 if (late_return_type_p)
12402 {
12403 /* Substitute the argument types. */
12404 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12405 complain, in_decl);
12406 if (arg_types == error_mark_node)
12407 return error_mark_node;
12408
12409 tree save_ccp = current_class_ptr;
12410 tree save_ccr = current_class_ref;
12411 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12412 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12413 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12414 if (do_inject)
12415 {
12416 /* DR 1207: 'this' is in scope in the trailing return type. */
12417 inject_this_parameter (this_type, cp_type_quals (this_type));
12418 }
12419
12420 /* Substitute the return type. */
12421 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12422
12423 if (do_inject)
12424 {
12425 current_class_ptr = save_ccp;
12426 current_class_ref = save_ccr;
12427 }
12428 }
12429 else
12430 /* Substitute the return type. */
12431 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12432
12433 if (return_type == error_mark_node)
12434 return error_mark_node;
12435 /* DR 486 clarifies that creation of a function type with an
12436 invalid return type is a deduction failure. */
12437 if (TREE_CODE (return_type) == ARRAY_TYPE
12438 || TREE_CODE (return_type) == FUNCTION_TYPE)
12439 {
12440 if (complain & tf_error)
12441 {
12442 if (TREE_CODE (return_type) == ARRAY_TYPE)
12443 error ("function returning an array");
12444 else
12445 error ("function returning a function");
12446 }
12447 return error_mark_node;
12448 }
12449 /* And DR 657. */
12450 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12451 return error_mark_node;
12452
12453 if (!late_return_type_p)
12454 {
12455 /* Substitute the argument types. */
12456 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12457 complain, in_decl);
12458 if (arg_types == error_mark_node)
12459 return error_mark_node;
12460 }
12461
12462 /* Construct a new type node and return it. */
12463 if (TREE_CODE (t) == FUNCTION_TYPE)
12464 {
12465 fntype = build_function_type (return_type, arg_types);
12466 fntype = apply_memfn_quals (fntype,
12467 type_memfn_quals (t),
12468 type_memfn_rqual (t));
12469 }
12470 else
12471 {
12472 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12473 /* Don't pick up extra function qualifiers from the basetype. */
12474 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12475 if (! MAYBE_CLASS_TYPE_P (r))
12476 {
12477 /* [temp.deduct]
12478
12479 Type deduction may fail for any of the following
12480 reasons:
12481
12482 -- Attempting to create "pointer to member of T" when T
12483 is not a class type. */
12484 if (complain & tf_error)
12485 error ("creating pointer to member function of non-class type %qT",
12486 r);
12487 return error_mark_node;
12488 }
12489
12490 fntype = build_method_type_directly (r, return_type,
12491 TREE_CHAIN (arg_types));
12492 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12493 }
12494 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12495
12496 if (late_return_type_p)
12497 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12498
12499 return fntype;
12500 }
12501
12502 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12503 ARGS into that specification, and return the substituted
12504 specification. If there is no specification, return NULL_TREE. */
12505
12506 static tree
12507 tsubst_exception_specification (tree fntype,
12508 tree args,
12509 tsubst_flags_t complain,
12510 tree in_decl,
12511 bool defer_ok)
12512 {
12513 tree specs;
12514 tree new_specs;
12515
12516 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12517 new_specs = NULL_TREE;
12518 if (specs && TREE_PURPOSE (specs))
12519 {
12520 /* A noexcept-specifier. */
12521 tree expr = TREE_PURPOSE (specs);
12522 if (TREE_CODE (expr) == INTEGER_CST)
12523 new_specs = expr;
12524 else if (defer_ok)
12525 {
12526 /* Defer instantiation of noexcept-specifiers to avoid
12527 excessive instantiations (c++/49107). */
12528 new_specs = make_node (DEFERRED_NOEXCEPT);
12529 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12530 {
12531 /* We already partially instantiated this member template,
12532 so combine the new args with the old. */
12533 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12534 = DEFERRED_NOEXCEPT_PATTERN (expr);
12535 DEFERRED_NOEXCEPT_ARGS (new_specs)
12536 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12537 }
12538 else
12539 {
12540 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12541 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12542 }
12543 }
12544 else
12545 new_specs = tsubst_copy_and_build
12546 (expr, args, complain, in_decl, /*function_p=*/false,
12547 /*integral_constant_expression_p=*/true);
12548 new_specs = build_noexcept_spec (new_specs, complain);
12549 }
12550 else if (specs)
12551 {
12552 if (! TREE_VALUE (specs))
12553 new_specs = specs;
12554 else
12555 while (specs)
12556 {
12557 tree spec;
12558 int i, len = 1;
12559 tree expanded_specs = NULL_TREE;
12560
12561 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12562 {
12563 /* Expand the pack expansion type. */
12564 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12565 args, complain,
12566 in_decl);
12567
12568 if (expanded_specs == error_mark_node)
12569 return error_mark_node;
12570 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12571 len = TREE_VEC_LENGTH (expanded_specs);
12572 else
12573 {
12574 /* We're substituting into a member template, so
12575 we got a TYPE_PACK_EXPANSION back. Add that
12576 expansion and move on. */
12577 gcc_assert (TREE_CODE (expanded_specs)
12578 == TYPE_PACK_EXPANSION);
12579 new_specs = add_exception_specifier (new_specs,
12580 expanded_specs,
12581 complain);
12582 specs = TREE_CHAIN (specs);
12583 continue;
12584 }
12585 }
12586
12587 for (i = 0; i < len; ++i)
12588 {
12589 if (expanded_specs)
12590 spec = TREE_VEC_ELT (expanded_specs, i);
12591 else
12592 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12593 if (spec == error_mark_node)
12594 return spec;
12595 new_specs = add_exception_specifier (new_specs, spec,
12596 complain);
12597 }
12598
12599 specs = TREE_CHAIN (specs);
12600 }
12601 }
12602 return new_specs;
12603 }
12604
12605 /* Take the tree structure T and replace template parameters used
12606 therein with the argument vector ARGS. IN_DECL is an associated
12607 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12608 Issue error and warning messages under control of COMPLAIN. Note
12609 that we must be relatively non-tolerant of extensions here, in
12610 order to preserve conformance; if we allow substitutions that
12611 should not be allowed, we may allow argument deductions that should
12612 not succeed, and therefore report ambiguous overload situations
12613 where there are none. In theory, we could allow the substitution,
12614 but indicate that it should have failed, and allow our caller to
12615 make sure that the right thing happens, but we don't try to do this
12616 yet.
12617
12618 This function is used for dealing with types, decls and the like;
12619 for expressions, use tsubst_expr or tsubst_copy. */
12620
12621 tree
12622 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12623 {
12624 enum tree_code code;
12625 tree type, r = NULL_TREE;
12626
12627 if (t == NULL_TREE || t == error_mark_node
12628 || t == integer_type_node
12629 || t == void_type_node
12630 || t == char_type_node
12631 || t == unknown_type_node
12632 || TREE_CODE (t) == NAMESPACE_DECL
12633 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12634 return t;
12635
12636 if (DECL_P (t))
12637 return tsubst_decl (t, args, complain);
12638
12639 if (args == NULL_TREE)
12640 return t;
12641
12642 code = TREE_CODE (t);
12643
12644 if (code == IDENTIFIER_NODE)
12645 type = IDENTIFIER_TYPE_VALUE (t);
12646 else
12647 type = TREE_TYPE (t);
12648
12649 gcc_assert (type != unknown_type_node);
12650
12651 /* Reuse typedefs. We need to do this to handle dependent attributes,
12652 such as attribute aligned. */
12653 if (TYPE_P (t)
12654 && typedef_variant_p (t))
12655 {
12656 tree decl = TYPE_NAME (t);
12657
12658 if (alias_template_specialization_p (t))
12659 {
12660 /* DECL represents an alias template and we want to
12661 instantiate it. */
12662 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12663 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12664 r = instantiate_alias_template (tmpl, gen_args, complain);
12665 }
12666 else if (DECL_CLASS_SCOPE_P (decl)
12667 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12668 && uses_template_parms (DECL_CONTEXT (decl)))
12669 {
12670 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12671 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12672 r = retrieve_specialization (tmpl, gen_args, 0);
12673 }
12674 else if (DECL_FUNCTION_SCOPE_P (decl)
12675 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12676 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12677 r = retrieve_local_specialization (decl);
12678 else
12679 /* The typedef is from a non-template context. */
12680 return t;
12681
12682 if (r)
12683 {
12684 r = TREE_TYPE (r);
12685 r = cp_build_qualified_type_real
12686 (r, cp_type_quals (t) | cp_type_quals (r),
12687 complain | tf_ignore_bad_quals);
12688 return r;
12689 }
12690 else
12691 {
12692 /* We don't have an instantiation yet, so drop the typedef. */
12693 int quals = cp_type_quals (t);
12694 t = DECL_ORIGINAL_TYPE (decl);
12695 t = cp_build_qualified_type_real (t, quals,
12696 complain | tf_ignore_bad_quals);
12697 }
12698 }
12699
12700 if (type
12701 && code != TYPENAME_TYPE
12702 && code != TEMPLATE_TYPE_PARM
12703 && code != IDENTIFIER_NODE
12704 && code != FUNCTION_TYPE
12705 && code != METHOD_TYPE)
12706 type = tsubst (type, args, complain, in_decl);
12707 if (type == error_mark_node)
12708 return error_mark_node;
12709
12710 switch (code)
12711 {
12712 case RECORD_TYPE:
12713 case UNION_TYPE:
12714 case ENUMERAL_TYPE:
12715 return tsubst_aggr_type (t, args, complain, in_decl,
12716 /*entering_scope=*/0);
12717
12718 case ERROR_MARK:
12719 case IDENTIFIER_NODE:
12720 case VOID_TYPE:
12721 case REAL_TYPE:
12722 case COMPLEX_TYPE:
12723 case VECTOR_TYPE:
12724 case BOOLEAN_TYPE:
12725 case NULLPTR_TYPE:
12726 case LANG_TYPE:
12727 return t;
12728
12729 case INTEGER_TYPE:
12730 if (t == integer_type_node)
12731 return t;
12732
12733 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12734 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12735 return t;
12736
12737 {
12738 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12739
12740 max = tsubst_expr (omax, args, complain, in_decl,
12741 /*integral_constant_expression_p=*/false);
12742
12743 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12744 needed. */
12745 if (TREE_CODE (max) == NOP_EXPR
12746 && TREE_SIDE_EFFECTS (omax)
12747 && !TREE_TYPE (max))
12748 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12749
12750 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12751 with TREE_SIDE_EFFECTS that indicates this is not an integral
12752 constant expression. */
12753 if (processing_template_decl
12754 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12755 {
12756 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12757 TREE_SIDE_EFFECTS (max) = 1;
12758 }
12759
12760 return compute_array_index_type (NULL_TREE, max, complain);
12761 }
12762
12763 case TEMPLATE_TYPE_PARM:
12764 case TEMPLATE_TEMPLATE_PARM:
12765 case BOUND_TEMPLATE_TEMPLATE_PARM:
12766 case TEMPLATE_PARM_INDEX:
12767 {
12768 int idx;
12769 int level;
12770 int levels;
12771 tree arg = NULL_TREE;
12772
12773 /* Early in template argument deduction substitution, we don't
12774 want to reduce the level of 'auto', or it will be confused
12775 with a normal template parm in subsequent deduction. */
12776 if (is_auto (t) && (complain & tf_partial))
12777 return t;
12778
12779 r = NULL_TREE;
12780
12781 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12782 template_parm_level_and_index (t, &level, &idx);
12783
12784 levels = TMPL_ARGS_DEPTH (args);
12785 if (level <= levels
12786 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12787 {
12788 arg = TMPL_ARG (args, level, idx);
12789
12790 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12791 {
12792 /* See through ARGUMENT_PACK_SELECT arguments. */
12793 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12794 /* If the selected argument is an expansion E, that most
12795 likely means we were called from
12796 gen_elem_of_pack_expansion_instantiation during the
12797 substituting of pack an argument pack (which Ith
12798 element is a pack expansion, where I is
12799 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12800 In this case, the Ith element resulting from this
12801 substituting is going to be a pack expansion, which
12802 pattern is the pattern of E. Let's return the
12803 pattern of E, and
12804 gen_elem_of_pack_expansion_instantiation will
12805 build the resulting pack expansion from it. */
12806 if (PACK_EXPANSION_P (arg))
12807 {
12808 /* Make sure we aren't throwing away arg info. */
12809 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12810 arg = PACK_EXPANSION_PATTERN (arg);
12811 }
12812 }
12813 }
12814
12815 if (arg == error_mark_node)
12816 return error_mark_node;
12817 else if (arg != NULL_TREE)
12818 {
12819 if (ARGUMENT_PACK_P (arg))
12820 /* If ARG is an argument pack, we don't actually want to
12821 perform a substitution here, because substitutions
12822 for argument packs are only done
12823 element-by-element. We can get to this point when
12824 substituting the type of a non-type template
12825 parameter pack, when that type actually contains
12826 template parameter packs from an outer template, e.g.,
12827
12828 template<typename... Types> struct A {
12829 template<Types... Values> struct B { };
12830 }; */
12831 return t;
12832
12833 if (code == TEMPLATE_TYPE_PARM)
12834 {
12835 int quals;
12836 gcc_assert (TYPE_P (arg));
12837
12838 quals = cp_type_quals (arg) | cp_type_quals (t);
12839
12840 return cp_build_qualified_type_real
12841 (arg, quals, complain | tf_ignore_bad_quals);
12842 }
12843 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12844 {
12845 /* We are processing a type constructed from a
12846 template template parameter. */
12847 tree argvec = tsubst (TYPE_TI_ARGS (t),
12848 args, complain, in_decl);
12849 if (argvec == error_mark_node)
12850 return error_mark_node;
12851
12852 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12853 || TREE_CODE (arg) == TEMPLATE_DECL
12854 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12855
12856 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12857 /* Consider this code:
12858
12859 template <template <class> class Template>
12860 struct Internal {
12861 template <class Arg> using Bind = Template<Arg>;
12862 };
12863
12864 template <template <class> class Template, class Arg>
12865 using Instantiate = Template<Arg>; //#0
12866
12867 template <template <class> class Template,
12868 class Argument>
12869 using Bind =
12870 Instantiate<Internal<Template>::template Bind,
12871 Argument>; //#1
12872
12873 When #1 is parsed, the
12874 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12875 parameter `Template' in #0 matches the
12876 UNBOUND_CLASS_TEMPLATE representing the argument
12877 `Internal<Template>::template Bind'; We then want
12878 to assemble the type `Bind<Argument>' that can't
12879 be fully created right now, because
12880 `Internal<Template>' not being complete, the Bind
12881 template cannot be looked up in that context. So
12882 we need to "store" `Bind<Argument>' for later
12883 when the context of Bind becomes complete. Let's
12884 store that in a TYPENAME_TYPE. */
12885 return make_typename_type (TYPE_CONTEXT (arg),
12886 build_nt (TEMPLATE_ID_EXPR,
12887 TYPE_IDENTIFIER (arg),
12888 argvec),
12889 typename_type,
12890 complain);
12891
12892 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12893 are resolving nested-types in the signature of a
12894 member function templates. Otherwise ARG is a
12895 TEMPLATE_DECL and is the real template to be
12896 instantiated. */
12897 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12898 arg = TYPE_NAME (arg);
12899
12900 r = lookup_template_class (arg,
12901 argvec, in_decl,
12902 DECL_CONTEXT (arg),
12903 /*entering_scope=*/0,
12904 complain);
12905 return cp_build_qualified_type_real
12906 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12907 }
12908 else
12909 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12910 return convert_from_reference (unshare_expr (arg));
12911 }
12912
12913 if (level == 1)
12914 /* This can happen during the attempted tsubst'ing in
12915 unify. This means that we don't yet have any information
12916 about the template parameter in question. */
12917 return t;
12918
12919 /* If we get here, we must have been looking at a parm for a
12920 more deeply nested template. Make a new version of this
12921 template parameter, but with a lower level. */
12922 switch (code)
12923 {
12924 case TEMPLATE_TYPE_PARM:
12925 case TEMPLATE_TEMPLATE_PARM:
12926 case BOUND_TEMPLATE_TEMPLATE_PARM:
12927 if (cp_type_quals (t))
12928 {
12929 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12930 r = cp_build_qualified_type_real
12931 (r, cp_type_quals (t),
12932 complain | (code == TEMPLATE_TYPE_PARM
12933 ? tf_ignore_bad_quals : 0));
12934 }
12935 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
12936 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
12937 && (r = (TEMPLATE_PARM_DESCENDANTS
12938 (TEMPLATE_TYPE_PARM_INDEX (t))))
12939 && (r = TREE_TYPE (r))
12940 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
12941 /* Break infinite recursion when substituting the constraints
12942 of a constrained placeholder. */;
12943 else
12944 {
12945 r = copy_type (t);
12946 TEMPLATE_TYPE_PARM_INDEX (r)
12947 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12948 r, levels, args, complain);
12949 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12950 TYPE_MAIN_VARIANT (r) = r;
12951 TYPE_POINTER_TO (r) = NULL_TREE;
12952 TYPE_REFERENCE_TO (r) = NULL_TREE;
12953
12954 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12955 /* We have reduced the level of the template
12956 template parameter, but not the levels of its
12957 template parameters, so canonical_type_parameter
12958 will not be able to find the canonical template
12959 template parameter for this level. Thus, we
12960 require structural equality checking to compare
12961 TEMPLATE_TEMPLATE_PARMs. */
12962 SET_TYPE_STRUCTURAL_EQUALITY (r);
12963 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12964 SET_TYPE_STRUCTURAL_EQUALITY (r);
12965 else
12966 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12967
12968 /* Propagate constraints on placeholders. */
12969 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
12970 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
12971 PLACEHOLDER_TYPE_CONSTRAINTS (r)
12972 = tsubst_constraint (constr, args, complain, in_decl);
12973
12974 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12975 {
12976 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12977 complain, in_decl);
12978 if (argvec == error_mark_node)
12979 return error_mark_node;
12980
12981 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12982 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12983 }
12984 }
12985 break;
12986
12987 case TEMPLATE_PARM_INDEX:
12988 r = reduce_template_parm_level (t, type, levels, args, complain);
12989 break;
12990
12991 default:
12992 gcc_unreachable ();
12993 }
12994
12995 return r;
12996 }
12997
12998 case TREE_LIST:
12999 {
13000 tree purpose, value, chain;
13001
13002 if (t == void_list_node)
13003 return t;
13004
13005 purpose = TREE_PURPOSE (t);
13006 if (purpose)
13007 {
13008 purpose = tsubst (purpose, args, complain, in_decl);
13009 if (purpose == error_mark_node)
13010 return error_mark_node;
13011 }
13012 value = TREE_VALUE (t);
13013 if (value)
13014 {
13015 value = tsubst (value, args, complain, in_decl);
13016 if (value == error_mark_node)
13017 return error_mark_node;
13018 }
13019 chain = TREE_CHAIN (t);
13020 if (chain && chain != void_type_node)
13021 {
13022 chain = tsubst (chain, args, complain, in_decl);
13023 if (chain == error_mark_node)
13024 return error_mark_node;
13025 }
13026 if (purpose == TREE_PURPOSE (t)
13027 && value == TREE_VALUE (t)
13028 && chain == TREE_CHAIN (t))
13029 return t;
13030 return hash_tree_cons (purpose, value, chain);
13031 }
13032
13033 case TREE_BINFO:
13034 /* We should never be tsubsting a binfo. */
13035 gcc_unreachable ();
13036
13037 case TREE_VEC:
13038 /* A vector of template arguments. */
13039 gcc_assert (!type);
13040 return tsubst_template_args (t, args, complain, in_decl);
13041
13042 case POINTER_TYPE:
13043 case REFERENCE_TYPE:
13044 {
13045 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13046 return t;
13047
13048 /* [temp.deduct]
13049
13050 Type deduction may fail for any of the following
13051 reasons:
13052
13053 -- Attempting to create a pointer to reference type.
13054 -- Attempting to create a reference to a reference type or
13055 a reference to void.
13056
13057 Core issue 106 says that creating a reference to a reference
13058 during instantiation is no longer a cause for failure. We
13059 only enforce this check in strict C++98 mode. */
13060 if ((TREE_CODE (type) == REFERENCE_TYPE
13061 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13062 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13063 {
13064 static location_t last_loc;
13065
13066 /* We keep track of the last time we issued this error
13067 message to avoid spewing a ton of messages during a
13068 single bad template instantiation. */
13069 if (complain & tf_error
13070 && last_loc != input_location)
13071 {
13072 if (VOID_TYPE_P (type))
13073 error ("forming reference to void");
13074 else if (code == POINTER_TYPE)
13075 error ("forming pointer to reference type %qT", type);
13076 else
13077 error ("forming reference to reference type %qT", type);
13078 last_loc = input_location;
13079 }
13080
13081 return error_mark_node;
13082 }
13083 else if (TREE_CODE (type) == FUNCTION_TYPE
13084 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13085 || type_memfn_rqual (type) != REF_QUAL_NONE))
13086 {
13087 if (complain & tf_error)
13088 {
13089 if (code == POINTER_TYPE)
13090 error ("forming pointer to qualified function type %qT",
13091 type);
13092 else
13093 error ("forming reference to qualified function type %qT",
13094 type);
13095 }
13096 return error_mark_node;
13097 }
13098 else if (code == POINTER_TYPE)
13099 {
13100 r = build_pointer_type (type);
13101 if (TREE_CODE (type) == METHOD_TYPE)
13102 r = build_ptrmemfunc_type (r);
13103 }
13104 else if (TREE_CODE (type) == REFERENCE_TYPE)
13105 /* In C++0x, during template argument substitution, when there is an
13106 attempt to create a reference to a reference type, reference
13107 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13108
13109 "If a template-argument for a template-parameter T names a type
13110 that is a reference to a type A, an attempt to create the type
13111 'lvalue reference to cv T' creates the type 'lvalue reference to
13112 A,' while an attempt to create the type type rvalue reference to
13113 cv T' creates the type T"
13114 */
13115 r = cp_build_reference_type
13116 (TREE_TYPE (type),
13117 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13118 else
13119 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13120 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13121
13122 if (r != error_mark_node)
13123 /* Will this ever be needed for TYPE_..._TO values? */
13124 layout_type (r);
13125
13126 return r;
13127 }
13128 case OFFSET_TYPE:
13129 {
13130 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13131 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13132 {
13133 /* [temp.deduct]
13134
13135 Type deduction may fail for any of the following
13136 reasons:
13137
13138 -- Attempting to create "pointer to member of T" when T
13139 is not a class type. */
13140 if (complain & tf_error)
13141 error ("creating pointer to member of non-class type %qT", r);
13142 return error_mark_node;
13143 }
13144 if (TREE_CODE (type) == REFERENCE_TYPE)
13145 {
13146 if (complain & tf_error)
13147 error ("creating pointer to member reference type %qT", type);
13148 return error_mark_node;
13149 }
13150 if (VOID_TYPE_P (type))
13151 {
13152 if (complain & tf_error)
13153 error ("creating pointer to member of type void");
13154 return error_mark_node;
13155 }
13156 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13157 if (TREE_CODE (type) == FUNCTION_TYPE)
13158 {
13159 /* The type of the implicit object parameter gets its
13160 cv-qualifiers from the FUNCTION_TYPE. */
13161 tree memptr;
13162 tree method_type
13163 = build_memfn_type (type, r, type_memfn_quals (type),
13164 type_memfn_rqual (type));
13165 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13166 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13167 complain);
13168 }
13169 else
13170 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13171 cp_type_quals (t),
13172 complain);
13173 }
13174 case FUNCTION_TYPE:
13175 case METHOD_TYPE:
13176 {
13177 tree fntype;
13178 tree specs;
13179 fntype = tsubst_function_type (t, args, complain, in_decl);
13180 if (fntype == error_mark_node)
13181 return error_mark_node;
13182
13183 /* Substitute the exception specification. */
13184 specs = tsubst_exception_specification (t, args, complain,
13185 in_decl, /*defer_ok*/true);
13186 if (specs == error_mark_node)
13187 return error_mark_node;
13188 if (specs)
13189 fntype = build_exception_variant (fntype, specs);
13190 return fntype;
13191 }
13192 case ARRAY_TYPE:
13193 {
13194 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13195 if (domain == error_mark_node)
13196 return error_mark_node;
13197
13198 /* As an optimization, we avoid regenerating the array type if
13199 it will obviously be the same as T. */
13200 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13201 return t;
13202
13203 /* These checks should match the ones in create_array_type_for_decl.
13204
13205 [temp.deduct]
13206
13207 The deduction may fail for any of the following reasons:
13208
13209 -- Attempting to create an array with an element type that
13210 is void, a function type, or a reference type, or [DR337]
13211 an abstract class type. */
13212 if (VOID_TYPE_P (type)
13213 || TREE_CODE (type) == FUNCTION_TYPE
13214 || (TREE_CODE (type) == ARRAY_TYPE
13215 && TYPE_DOMAIN (type) == NULL_TREE)
13216 || TREE_CODE (type) == REFERENCE_TYPE)
13217 {
13218 if (complain & tf_error)
13219 error ("creating array of %qT", type);
13220 return error_mark_node;
13221 }
13222
13223 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13224 return error_mark_node;
13225
13226 r = build_cplus_array_type (type, domain);
13227
13228 if (TYPE_USER_ALIGN (t))
13229 {
13230 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13231 TYPE_USER_ALIGN (r) = 1;
13232 }
13233
13234 return r;
13235 }
13236
13237 case TYPENAME_TYPE:
13238 {
13239 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13240 in_decl, /*entering_scope=*/1);
13241 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13242 complain, in_decl);
13243
13244 if (ctx == error_mark_node || f == error_mark_node)
13245 return error_mark_node;
13246
13247 if (!MAYBE_CLASS_TYPE_P (ctx))
13248 {
13249 if (complain & tf_error)
13250 error ("%qT is not a class, struct, or union type", ctx);
13251 return error_mark_node;
13252 }
13253 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13254 {
13255 /* Normally, make_typename_type does not require that the CTX
13256 have complete type in order to allow things like:
13257
13258 template <class T> struct S { typename S<T>::X Y; };
13259
13260 But, such constructs have already been resolved by this
13261 point, so here CTX really should have complete type, unless
13262 it's a partial instantiation. */
13263 ctx = complete_type (ctx);
13264 if (!COMPLETE_TYPE_P (ctx))
13265 {
13266 if (complain & tf_error)
13267 cxx_incomplete_type_error (NULL_TREE, ctx);
13268 return error_mark_node;
13269 }
13270 }
13271
13272 f = make_typename_type (ctx, f, typename_type,
13273 complain | tf_keep_type_decl);
13274 if (f == error_mark_node)
13275 return f;
13276 if (TREE_CODE (f) == TYPE_DECL)
13277 {
13278 complain |= tf_ignore_bad_quals;
13279 f = TREE_TYPE (f);
13280 }
13281
13282 if (TREE_CODE (f) != TYPENAME_TYPE)
13283 {
13284 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13285 {
13286 if (complain & tf_error)
13287 error ("%qT resolves to %qT, which is not an enumeration type",
13288 t, f);
13289 else
13290 return error_mark_node;
13291 }
13292 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13293 {
13294 if (complain & tf_error)
13295 error ("%qT resolves to %qT, which is is not a class type",
13296 t, f);
13297 else
13298 return error_mark_node;
13299 }
13300 }
13301
13302 return cp_build_qualified_type_real
13303 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13304 }
13305
13306 case UNBOUND_CLASS_TEMPLATE:
13307 {
13308 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13309 in_decl, /*entering_scope=*/1);
13310 tree name = TYPE_IDENTIFIER (t);
13311 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13312
13313 if (ctx == error_mark_node || name == error_mark_node)
13314 return error_mark_node;
13315
13316 if (parm_list)
13317 parm_list = tsubst_template_parms (parm_list, args, complain);
13318 return make_unbound_class_template (ctx, name, parm_list, complain);
13319 }
13320
13321 case TYPEOF_TYPE:
13322 {
13323 tree type;
13324
13325 ++cp_unevaluated_operand;
13326 ++c_inhibit_evaluation_warnings;
13327
13328 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13329 complain, in_decl,
13330 /*integral_constant_expression_p=*/false);
13331
13332 --cp_unevaluated_operand;
13333 --c_inhibit_evaluation_warnings;
13334
13335 type = finish_typeof (type);
13336 return cp_build_qualified_type_real (type,
13337 cp_type_quals (t)
13338 | cp_type_quals (type),
13339 complain);
13340 }
13341
13342 case DECLTYPE_TYPE:
13343 {
13344 tree type;
13345
13346 ++cp_unevaluated_operand;
13347 ++c_inhibit_evaluation_warnings;
13348
13349 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13350 complain|tf_decltype, in_decl,
13351 /*function_p*/false,
13352 /*integral_constant_expression*/false);
13353
13354 --cp_unevaluated_operand;
13355 --c_inhibit_evaluation_warnings;
13356
13357 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13358 type = lambda_capture_field_type (type,
13359 DECLTYPE_FOR_INIT_CAPTURE (t));
13360 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13361 type = lambda_proxy_type (type);
13362 else
13363 {
13364 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13365 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13366 && EXPR_P (type))
13367 /* In a template ~id could be either a complement expression
13368 or an unqualified-id naming a destructor; if instantiating
13369 it produces an expression, it's not an id-expression or
13370 member access. */
13371 id = false;
13372 type = finish_decltype_type (type, id, complain);
13373 }
13374 return cp_build_qualified_type_real (type,
13375 cp_type_quals (t)
13376 | cp_type_quals (type),
13377 complain | tf_ignore_bad_quals);
13378 }
13379
13380 case UNDERLYING_TYPE:
13381 {
13382 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13383 complain, in_decl);
13384 return finish_underlying_type (type);
13385 }
13386
13387 case TYPE_ARGUMENT_PACK:
13388 case NONTYPE_ARGUMENT_PACK:
13389 {
13390 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13391 tree packed_out =
13392 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13393 args,
13394 complain,
13395 in_decl);
13396 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13397
13398 /* For template nontype argument packs, also substitute into
13399 the type. */
13400 if (code == NONTYPE_ARGUMENT_PACK)
13401 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13402
13403 return r;
13404 }
13405 break;
13406
13407 case VOID_CST:
13408 case INTEGER_CST:
13409 case REAL_CST:
13410 case STRING_CST:
13411 case PLUS_EXPR:
13412 case MINUS_EXPR:
13413 case NEGATE_EXPR:
13414 case NOP_EXPR:
13415 case INDIRECT_REF:
13416 case ADDR_EXPR:
13417 case CALL_EXPR:
13418 case ARRAY_REF:
13419 case SCOPE_REF:
13420 /* We should use one of the expression tsubsts for these codes. */
13421 gcc_unreachable ();
13422
13423 default:
13424 sorry ("use of %qs in template", get_tree_code_name (code));
13425 return error_mark_node;
13426 }
13427 }
13428
13429 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13430 type of the expression on the left-hand side of the "." or "->"
13431 operator. */
13432
13433 static tree
13434 tsubst_baselink (tree baselink, tree object_type,
13435 tree args, tsubst_flags_t complain, tree in_decl)
13436 {
13437 tree name;
13438 tree qualifying_scope;
13439 tree fns;
13440 tree optype;
13441 tree template_args = 0;
13442 bool template_id_p = false;
13443 bool qualified = BASELINK_QUALIFIED_P (baselink);
13444
13445 /* A baselink indicates a function from a base class. Both the
13446 BASELINK_ACCESS_BINFO and the base class referenced may
13447 indicate bases of the template class, rather than the
13448 instantiated class. In addition, lookups that were not
13449 ambiguous before may be ambiguous now. Therefore, we perform
13450 the lookup again. */
13451 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13452 qualifying_scope = tsubst (qualifying_scope, args,
13453 complain, in_decl);
13454 fns = BASELINK_FUNCTIONS (baselink);
13455 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13456 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13457 {
13458 template_id_p = true;
13459 template_args = TREE_OPERAND (fns, 1);
13460 fns = TREE_OPERAND (fns, 0);
13461 if (template_args)
13462 template_args = tsubst_template_args (template_args, args,
13463 complain, in_decl);
13464 }
13465 name = DECL_NAME (get_first_fn (fns));
13466 if (IDENTIFIER_TYPENAME_P (name))
13467 name = mangle_conv_op_name_for_type (optype);
13468 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13469 if (!baselink)
13470 return error_mark_node;
13471
13472 /* If lookup found a single function, mark it as used at this
13473 point. (If it lookup found multiple functions the one selected
13474 later by overload resolution will be marked as used at that
13475 point.) */
13476 if (BASELINK_P (baselink))
13477 fns = BASELINK_FUNCTIONS (baselink);
13478 if (!template_id_p && !really_overloaded_fn (fns)
13479 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13480 return error_mark_node;
13481
13482 /* Add back the template arguments, if present. */
13483 if (BASELINK_P (baselink) && template_id_p)
13484 BASELINK_FUNCTIONS (baselink)
13485 = build_nt (TEMPLATE_ID_EXPR,
13486 BASELINK_FUNCTIONS (baselink),
13487 template_args);
13488 /* Update the conversion operator type. */
13489 BASELINK_OPTYPE (baselink) = optype;
13490
13491 if (!object_type)
13492 object_type = current_class_type;
13493
13494 if (qualified)
13495 baselink = adjust_result_of_qualified_name_lookup (baselink,
13496 qualifying_scope,
13497 object_type);
13498 return baselink;
13499 }
13500
13501 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13502 true if the qualified-id will be a postfix-expression in-and-of
13503 itself; false if more of the postfix-expression follows the
13504 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13505 of "&". */
13506
13507 static tree
13508 tsubst_qualified_id (tree qualified_id, tree args,
13509 tsubst_flags_t complain, tree in_decl,
13510 bool done, bool address_p)
13511 {
13512 tree expr;
13513 tree scope;
13514 tree name;
13515 bool is_template;
13516 tree template_args;
13517 location_t loc = UNKNOWN_LOCATION;
13518
13519 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13520
13521 /* Figure out what name to look up. */
13522 name = TREE_OPERAND (qualified_id, 1);
13523 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13524 {
13525 is_template = true;
13526 loc = EXPR_LOCATION (name);
13527 template_args = TREE_OPERAND (name, 1);
13528 if (template_args)
13529 template_args = tsubst_template_args (template_args, args,
13530 complain, in_decl);
13531 name = TREE_OPERAND (name, 0);
13532 }
13533 else
13534 {
13535 is_template = false;
13536 template_args = NULL_TREE;
13537 }
13538
13539 /* Substitute into the qualifying scope. When there are no ARGS, we
13540 are just trying to simplify a non-dependent expression. In that
13541 case the qualifying scope may be dependent, and, in any case,
13542 substituting will not help. */
13543 scope = TREE_OPERAND (qualified_id, 0);
13544 if (args)
13545 {
13546 scope = tsubst (scope, args, complain, in_decl);
13547 expr = tsubst_copy (name, args, complain, in_decl);
13548 }
13549 else
13550 expr = name;
13551
13552 if (dependent_scope_p (scope))
13553 {
13554 if (is_template)
13555 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13556 return build_qualified_name (NULL_TREE, scope, expr,
13557 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13558 }
13559
13560 if (!BASELINK_P (name) && !DECL_P (expr))
13561 {
13562 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13563 {
13564 /* A BIT_NOT_EXPR is used to represent a destructor. */
13565 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13566 {
13567 error ("qualifying type %qT does not match destructor name ~%qT",
13568 scope, TREE_OPERAND (expr, 0));
13569 expr = error_mark_node;
13570 }
13571 else
13572 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13573 /*is_type_p=*/0, false);
13574 }
13575 else
13576 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13577 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13578 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13579 {
13580 if (complain & tf_error)
13581 {
13582 error ("dependent-name %qE is parsed as a non-type, but "
13583 "instantiation yields a type", qualified_id);
13584 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13585 }
13586 return error_mark_node;
13587 }
13588 }
13589
13590 if (DECL_P (expr))
13591 {
13592 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13593 scope);
13594 /* Remember that there was a reference to this entity. */
13595 if (!mark_used (expr, complain) && !(complain & tf_error))
13596 return error_mark_node;
13597 }
13598
13599 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13600 {
13601 if (complain & tf_error)
13602 qualified_name_lookup_error (scope,
13603 TREE_OPERAND (qualified_id, 1),
13604 expr, input_location);
13605 return error_mark_node;
13606 }
13607
13608 if (is_template)
13609 expr = lookup_template_function (expr, template_args);
13610
13611 if (expr == error_mark_node && complain & tf_error)
13612 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13613 expr, input_location);
13614 else if (TYPE_P (scope))
13615 {
13616 expr = (adjust_result_of_qualified_name_lookup
13617 (expr, scope, current_nonlambda_class_type ()));
13618 expr = (finish_qualified_id_expr
13619 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13620 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13621 /*template_arg_p=*/false, complain));
13622 }
13623
13624 /* Expressions do not generally have reference type. */
13625 if (TREE_CODE (expr) != SCOPE_REF
13626 /* However, if we're about to form a pointer-to-member, we just
13627 want the referenced member referenced. */
13628 && TREE_CODE (expr) != OFFSET_REF)
13629 expr = convert_from_reference (expr);
13630
13631 return expr;
13632 }
13633
13634 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13635 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13636 for tsubst. */
13637
13638 static tree
13639 tsubst_init (tree init, tree decl, tree args,
13640 tsubst_flags_t complain, tree in_decl)
13641 {
13642 if (!init)
13643 return NULL_TREE;
13644
13645 init = tsubst_expr (init, args, complain, in_decl, false);
13646
13647 if (!init)
13648 {
13649 /* If we had an initializer but it
13650 instantiated to nothing,
13651 value-initialize the object. This will
13652 only occur when the initializer was a
13653 pack expansion where the parameter packs
13654 used in that expansion were of length
13655 zero. */
13656 init = build_value_init (TREE_TYPE (decl),
13657 complain);
13658 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13659 init = get_target_expr_sfinae (init, complain);
13660 }
13661
13662 return init;
13663 }
13664
13665 /* Like tsubst, but deals with expressions. This function just replaces
13666 template parms; to finish processing the resultant expression, use
13667 tsubst_copy_and_build or tsubst_expr. */
13668
13669 static tree
13670 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13671 {
13672 enum tree_code code;
13673 tree r;
13674
13675 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13676 return t;
13677
13678 code = TREE_CODE (t);
13679
13680 switch (code)
13681 {
13682 case PARM_DECL:
13683 r = retrieve_local_specialization (t);
13684
13685 if (r == NULL_TREE)
13686 {
13687 /* We get here for a use of 'this' in an NSDMI. */
13688 if (DECL_NAME (t) == this_identifier
13689 && current_function_decl
13690 && DECL_CONSTRUCTOR_P (current_function_decl))
13691 return current_class_ptr;
13692
13693 /* This can happen for a parameter name used later in a function
13694 declaration (such as in a late-specified return type). Just
13695 make a dummy decl, since it's only used for its type. */
13696 gcc_assert (cp_unevaluated_operand != 0);
13697 r = tsubst_decl (t, args, complain);
13698 /* Give it the template pattern as its context; its true context
13699 hasn't been instantiated yet and this is good enough for
13700 mangling. */
13701 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13702 }
13703
13704 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13705 r = ARGUMENT_PACK_SELECT_ARG (r);
13706 if (!mark_used (r, complain) && !(complain & tf_error))
13707 return error_mark_node;
13708 return r;
13709
13710 case CONST_DECL:
13711 {
13712 tree enum_type;
13713 tree v;
13714
13715 if (DECL_TEMPLATE_PARM_P (t))
13716 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13717 /* There is no need to substitute into namespace-scope
13718 enumerators. */
13719 if (DECL_NAMESPACE_SCOPE_P (t))
13720 return t;
13721 /* If ARGS is NULL, then T is known to be non-dependent. */
13722 if (args == NULL_TREE)
13723 return scalar_constant_value (t);
13724
13725 /* Unfortunately, we cannot just call lookup_name here.
13726 Consider:
13727
13728 template <int I> int f() {
13729 enum E { a = I };
13730 struct S { void g() { E e = a; } };
13731 };
13732
13733 When we instantiate f<7>::S::g(), say, lookup_name is not
13734 clever enough to find f<7>::a. */
13735 enum_type
13736 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13737 /*entering_scope=*/0);
13738
13739 for (v = TYPE_VALUES (enum_type);
13740 v != NULL_TREE;
13741 v = TREE_CHAIN (v))
13742 if (TREE_PURPOSE (v) == DECL_NAME (t))
13743 return TREE_VALUE (v);
13744
13745 /* We didn't find the name. That should never happen; if
13746 name-lookup found it during preliminary parsing, we
13747 should find it again here during instantiation. */
13748 gcc_unreachable ();
13749 }
13750 return t;
13751
13752 case FIELD_DECL:
13753 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13754 {
13755 /* Check for a local specialization set up by
13756 tsubst_pack_expansion. */
13757 if (tree r = retrieve_local_specialization (t))
13758 {
13759 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13760 r = ARGUMENT_PACK_SELECT_ARG (r);
13761 return r;
13762 }
13763
13764 /* When retrieving a capture pack from a generic lambda, remove the
13765 lambda call op's own template argument list from ARGS. Only the
13766 template arguments active for the closure type should be used to
13767 retrieve the pack specialization. */
13768 if (LAMBDA_FUNCTION_P (current_function_decl)
13769 && (template_class_depth (DECL_CONTEXT (t))
13770 != TMPL_ARGS_DEPTH (args)))
13771 args = strip_innermost_template_args (args, 1);
13772
13773 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13774 tsubst_decl put in the hash table. */
13775 return retrieve_specialization (t, args, 0);
13776 }
13777
13778 if (DECL_CONTEXT (t))
13779 {
13780 tree ctx;
13781
13782 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13783 /*entering_scope=*/1);
13784 if (ctx != DECL_CONTEXT (t))
13785 {
13786 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13787 if (!r)
13788 {
13789 if (complain & tf_error)
13790 error ("using invalid field %qD", t);
13791 return error_mark_node;
13792 }
13793 return r;
13794 }
13795 }
13796
13797 return t;
13798
13799 case VAR_DECL:
13800 case FUNCTION_DECL:
13801 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13802 r = tsubst (t, args, complain, in_decl);
13803 else if (local_variable_p (t))
13804 {
13805 r = retrieve_local_specialization (t);
13806 if (r == NULL_TREE)
13807 {
13808 /* First try name lookup to find the instantiation. */
13809 r = lookup_name (DECL_NAME (t));
13810 if (r)
13811 {
13812 /* Make sure that the one we found is the one we want. */
13813 tree ctx = DECL_CONTEXT (t);
13814 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
13815 ctx = tsubst (ctx, args, complain, in_decl);
13816 if (ctx != DECL_CONTEXT (r))
13817 r = NULL_TREE;
13818 }
13819
13820 if (r)
13821 /* OK */;
13822 else
13823 {
13824 /* This can happen for a variable used in a
13825 late-specified return type of a local lambda, or for a
13826 local static or constant. Building a new VAR_DECL
13827 should be OK in all those cases. */
13828 r = tsubst_decl (t, args, complain);
13829 if (decl_maybe_constant_var_p (r))
13830 {
13831 /* We can't call cp_finish_decl, so handle the
13832 initializer by hand. */
13833 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13834 complain, in_decl);
13835 if (!processing_template_decl)
13836 init = maybe_constant_init (init);
13837 if (processing_template_decl
13838 ? potential_constant_expression (init)
13839 : reduced_constant_expression_p (init))
13840 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13841 = TREE_CONSTANT (r) = true;
13842 DECL_INITIAL (r) = init;
13843 }
13844 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13845 || decl_constant_var_p (r)
13846 || errorcount || sorrycount);
13847 if (!processing_template_decl)
13848 {
13849 if (TREE_STATIC (r))
13850 rest_of_decl_compilation (r, toplevel_bindings_p (),
13851 at_eof);
13852 else
13853 r = process_outer_var_ref (r, complain);
13854 }
13855 }
13856 /* Remember this for subsequent uses. */
13857 if (local_specializations)
13858 register_local_specialization (r, t);
13859 }
13860 }
13861 else
13862 r = t;
13863 if (!mark_used (r, complain) && !(complain & tf_error))
13864 return error_mark_node;
13865 return r;
13866
13867 case NAMESPACE_DECL:
13868 return t;
13869
13870 case OVERLOAD:
13871 /* An OVERLOAD will always be a non-dependent overload set; an
13872 overload set from function scope will just be represented with an
13873 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13874 gcc_assert (!uses_template_parms (t));
13875 return t;
13876
13877 case BASELINK:
13878 return tsubst_baselink (t, current_nonlambda_class_type (),
13879 args, complain, in_decl);
13880
13881 case TEMPLATE_DECL:
13882 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13883 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13884 args, complain, in_decl);
13885 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13886 return tsubst (t, args, complain, in_decl);
13887 else if (DECL_CLASS_SCOPE_P (t)
13888 && uses_template_parms (DECL_CONTEXT (t)))
13889 {
13890 /* Template template argument like the following example need
13891 special treatment:
13892
13893 template <template <class> class TT> struct C {};
13894 template <class T> struct D {
13895 template <class U> struct E {};
13896 C<E> c; // #1
13897 };
13898 D<int> d; // #2
13899
13900 We are processing the template argument `E' in #1 for
13901 the template instantiation #2. Originally, `E' is a
13902 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13903 have to substitute this with one having context `D<int>'. */
13904
13905 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13906 return lookup_field (context, DECL_NAME(t), 0, false);
13907 }
13908 else
13909 /* Ordinary template template argument. */
13910 return t;
13911
13912 case CAST_EXPR:
13913 case REINTERPRET_CAST_EXPR:
13914 case CONST_CAST_EXPR:
13915 case STATIC_CAST_EXPR:
13916 case DYNAMIC_CAST_EXPR:
13917 case IMPLICIT_CONV_EXPR:
13918 case CONVERT_EXPR:
13919 case NOP_EXPR:
13920 {
13921 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13922 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13923 return build1 (code, type, op0);
13924 }
13925
13926 case SIZEOF_EXPR:
13927 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13928 {
13929
13930 tree expanded, op = TREE_OPERAND (t, 0);
13931 int len = 0;
13932
13933 if (SIZEOF_EXPR_TYPE_P (t))
13934 op = TREE_TYPE (op);
13935
13936 ++cp_unevaluated_operand;
13937 ++c_inhibit_evaluation_warnings;
13938 /* We only want to compute the number of arguments. */
13939 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13940 --cp_unevaluated_operand;
13941 --c_inhibit_evaluation_warnings;
13942
13943 if (TREE_CODE (expanded) == TREE_VEC)
13944 len = TREE_VEC_LENGTH (expanded);
13945
13946 if (expanded == error_mark_node)
13947 return error_mark_node;
13948 else if (PACK_EXPANSION_P (expanded)
13949 || (TREE_CODE (expanded) == TREE_VEC
13950 && len > 0
13951 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13952 {
13953 if (TREE_CODE (expanded) == TREE_VEC)
13954 expanded = TREE_VEC_ELT (expanded, len - 1);
13955
13956 if (TYPE_P (expanded))
13957 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13958 complain & tf_error);
13959 else
13960 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13961 complain & tf_error);
13962 }
13963 else
13964 return build_int_cst (size_type_node, len);
13965 }
13966 if (SIZEOF_EXPR_TYPE_P (t))
13967 {
13968 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13969 args, complain, in_decl);
13970 r = build1 (NOP_EXPR, r, error_mark_node);
13971 r = build1 (SIZEOF_EXPR,
13972 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13973 SIZEOF_EXPR_TYPE_P (r) = 1;
13974 return r;
13975 }
13976 /* Fall through */
13977
13978 case INDIRECT_REF:
13979 case NEGATE_EXPR:
13980 case TRUTH_NOT_EXPR:
13981 case BIT_NOT_EXPR:
13982 case ADDR_EXPR:
13983 case UNARY_PLUS_EXPR: /* Unary + */
13984 case ALIGNOF_EXPR:
13985 case AT_ENCODE_EXPR:
13986 case ARROW_EXPR:
13987 case THROW_EXPR:
13988 case TYPEID_EXPR:
13989 case REALPART_EXPR:
13990 case IMAGPART_EXPR:
13991 case PAREN_EXPR:
13992 {
13993 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13994 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13995 return build1 (code, type, op0);
13996 }
13997
13998 case COMPONENT_REF:
13999 {
14000 tree object;
14001 tree name;
14002
14003 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14004 name = TREE_OPERAND (t, 1);
14005 if (TREE_CODE (name) == BIT_NOT_EXPR)
14006 {
14007 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14008 complain, in_decl);
14009 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14010 }
14011 else if (TREE_CODE (name) == SCOPE_REF
14012 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14013 {
14014 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14015 complain, in_decl);
14016 name = TREE_OPERAND (name, 1);
14017 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14018 complain, in_decl);
14019 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14020 name = build_qualified_name (/*type=*/NULL_TREE,
14021 base, name,
14022 /*template_p=*/false);
14023 }
14024 else if (BASELINK_P (name))
14025 name = tsubst_baselink (name,
14026 non_reference (TREE_TYPE (object)),
14027 args, complain,
14028 in_decl);
14029 else
14030 name = tsubst_copy (name, args, complain, in_decl);
14031 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14032 }
14033
14034 case PLUS_EXPR:
14035 case MINUS_EXPR:
14036 case MULT_EXPR:
14037 case TRUNC_DIV_EXPR:
14038 case CEIL_DIV_EXPR:
14039 case FLOOR_DIV_EXPR:
14040 case ROUND_DIV_EXPR:
14041 case EXACT_DIV_EXPR:
14042 case BIT_AND_EXPR:
14043 case BIT_IOR_EXPR:
14044 case BIT_XOR_EXPR:
14045 case TRUNC_MOD_EXPR:
14046 case FLOOR_MOD_EXPR:
14047 case TRUTH_ANDIF_EXPR:
14048 case TRUTH_ORIF_EXPR:
14049 case TRUTH_AND_EXPR:
14050 case TRUTH_OR_EXPR:
14051 case RSHIFT_EXPR:
14052 case LSHIFT_EXPR:
14053 case RROTATE_EXPR:
14054 case LROTATE_EXPR:
14055 case EQ_EXPR:
14056 case NE_EXPR:
14057 case MAX_EXPR:
14058 case MIN_EXPR:
14059 case LE_EXPR:
14060 case GE_EXPR:
14061 case LT_EXPR:
14062 case GT_EXPR:
14063 case COMPOUND_EXPR:
14064 case DOTSTAR_EXPR:
14065 case MEMBER_REF:
14066 case PREDECREMENT_EXPR:
14067 case PREINCREMENT_EXPR:
14068 case POSTDECREMENT_EXPR:
14069 case POSTINCREMENT_EXPR:
14070 {
14071 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14072 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14073 return build_nt (code, op0, op1);
14074 }
14075
14076 case SCOPE_REF:
14077 {
14078 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14079 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14080 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14081 QUALIFIED_NAME_IS_TEMPLATE (t));
14082 }
14083
14084 case ARRAY_REF:
14085 {
14086 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14087 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14088 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14089 }
14090
14091 case CALL_EXPR:
14092 {
14093 int n = VL_EXP_OPERAND_LENGTH (t);
14094 tree result = build_vl_exp (CALL_EXPR, n);
14095 int i;
14096 for (i = 0; i < n; i++)
14097 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14098 complain, in_decl);
14099 return result;
14100 }
14101
14102 case COND_EXPR:
14103 case MODOP_EXPR:
14104 case PSEUDO_DTOR_EXPR:
14105 case VEC_PERM_EXPR:
14106 {
14107 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14108 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14109 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14110 r = build_nt (code, op0, op1, op2);
14111 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14112 return r;
14113 }
14114
14115 case NEW_EXPR:
14116 {
14117 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14118 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14119 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14120 r = build_nt (code, op0, op1, op2);
14121 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14122 return r;
14123 }
14124
14125 case DELETE_EXPR:
14126 {
14127 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14128 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14129 r = build_nt (code, op0, op1);
14130 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14131 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14132 return r;
14133 }
14134
14135 case TEMPLATE_ID_EXPR:
14136 {
14137 /* Substituted template arguments */
14138 tree fn = TREE_OPERAND (t, 0);
14139 tree targs = TREE_OPERAND (t, 1);
14140
14141 fn = tsubst_copy (fn, args, complain, in_decl);
14142 if (targs)
14143 targs = tsubst_template_args (targs, args, complain, in_decl);
14144
14145 return lookup_template_function (fn, targs);
14146 }
14147
14148 case TREE_LIST:
14149 {
14150 tree purpose, value, chain;
14151
14152 if (t == void_list_node)
14153 return t;
14154
14155 purpose = TREE_PURPOSE (t);
14156 if (purpose)
14157 purpose = tsubst_copy (purpose, args, complain, in_decl);
14158 value = TREE_VALUE (t);
14159 if (value)
14160 value = tsubst_copy (value, args, complain, in_decl);
14161 chain = TREE_CHAIN (t);
14162 if (chain && chain != void_type_node)
14163 chain = tsubst_copy (chain, args, complain, in_decl);
14164 if (purpose == TREE_PURPOSE (t)
14165 && value == TREE_VALUE (t)
14166 && chain == TREE_CHAIN (t))
14167 return t;
14168 return tree_cons (purpose, value, chain);
14169 }
14170
14171 case RECORD_TYPE:
14172 case UNION_TYPE:
14173 case ENUMERAL_TYPE:
14174 case INTEGER_TYPE:
14175 case TEMPLATE_TYPE_PARM:
14176 case TEMPLATE_TEMPLATE_PARM:
14177 case BOUND_TEMPLATE_TEMPLATE_PARM:
14178 case TEMPLATE_PARM_INDEX:
14179 case POINTER_TYPE:
14180 case REFERENCE_TYPE:
14181 case OFFSET_TYPE:
14182 case FUNCTION_TYPE:
14183 case METHOD_TYPE:
14184 case ARRAY_TYPE:
14185 case TYPENAME_TYPE:
14186 case UNBOUND_CLASS_TEMPLATE:
14187 case TYPEOF_TYPE:
14188 case DECLTYPE_TYPE:
14189 case TYPE_DECL:
14190 return tsubst (t, args, complain, in_decl);
14191
14192 case USING_DECL:
14193 t = DECL_NAME (t);
14194 /* Fall through. */
14195 case IDENTIFIER_NODE:
14196 if (IDENTIFIER_TYPENAME_P (t))
14197 {
14198 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14199 return mangle_conv_op_name_for_type (new_type);
14200 }
14201 else
14202 return t;
14203
14204 case CONSTRUCTOR:
14205 /* This is handled by tsubst_copy_and_build. */
14206 gcc_unreachable ();
14207
14208 case VA_ARG_EXPR:
14209 {
14210 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14211 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14212 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14213 }
14214
14215 case CLEANUP_POINT_EXPR:
14216 /* We shouldn't have built any of these during initial template
14217 generation. Instead, they should be built during instantiation
14218 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14219 gcc_unreachable ();
14220
14221 case OFFSET_REF:
14222 {
14223 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14224 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14225 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14226 r = build2 (code, type, op0, op1);
14227 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14228 if (!mark_used (TREE_OPERAND (r, 1), complain)
14229 && !(complain & tf_error))
14230 return error_mark_node;
14231 return r;
14232 }
14233
14234 case EXPR_PACK_EXPANSION:
14235 error ("invalid use of pack expansion expression");
14236 return error_mark_node;
14237
14238 case NONTYPE_ARGUMENT_PACK:
14239 error ("use %<...%> to expand argument pack");
14240 return error_mark_node;
14241
14242 case VOID_CST:
14243 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14244 return t;
14245
14246 case INTEGER_CST:
14247 case REAL_CST:
14248 case STRING_CST:
14249 case COMPLEX_CST:
14250 {
14251 /* Instantiate any typedefs in the type. */
14252 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14253 r = fold_convert (type, t);
14254 gcc_assert (TREE_CODE (r) == code);
14255 return r;
14256 }
14257
14258 case PTRMEM_CST:
14259 /* These can sometimes show up in a partial instantiation, but never
14260 involve template parms. */
14261 gcc_assert (!uses_template_parms (t));
14262 return t;
14263
14264 case UNARY_LEFT_FOLD_EXPR:
14265 return tsubst_unary_left_fold (t, args, complain, in_decl);
14266 case UNARY_RIGHT_FOLD_EXPR:
14267 return tsubst_unary_right_fold (t, args, complain, in_decl);
14268 case BINARY_LEFT_FOLD_EXPR:
14269 return tsubst_binary_left_fold (t, args, complain, in_decl);
14270 case BINARY_RIGHT_FOLD_EXPR:
14271 return tsubst_binary_right_fold (t, args, complain, in_decl);
14272
14273 default:
14274 /* We shouldn't get here, but keep going if !flag_checking. */
14275 if (flag_checking)
14276 gcc_unreachable ();
14277 return t;
14278 }
14279 }
14280
14281 /* Helper function for tsubst_omp_clauses, used for instantiation of
14282 OMP_CLAUSE_DECL of clauses. */
14283
14284 static tree
14285 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14286 tree in_decl)
14287 {
14288 if (decl == NULL_TREE)
14289 return NULL_TREE;
14290
14291 /* Handle an OpenMP array section represented as a TREE_LIST (or
14292 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14293 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14294 TREE_LIST. We can handle it exactly the same as an array section
14295 (purpose, value, and a chain), even though the nomenclature
14296 (low_bound, length, etc) is different. */
14297 if (TREE_CODE (decl) == TREE_LIST)
14298 {
14299 tree low_bound
14300 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14301 /*integral_constant_expression_p=*/false);
14302 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14303 /*integral_constant_expression_p=*/false);
14304 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14305 in_decl);
14306 if (TREE_PURPOSE (decl) == low_bound
14307 && TREE_VALUE (decl) == length
14308 && TREE_CHAIN (decl) == chain)
14309 return decl;
14310 tree ret = tree_cons (low_bound, length, chain);
14311 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14312 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14313 return ret;
14314 }
14315 tree ret = tsubst_expr (decl, args, complain, in_decl,
14316 /*integral_constant_expression_p=*/false);
14317 /* Undo convert_from_reference tsubst_expr could have called. */
14318 if (decl
14319 && REFERENCE_REF_P (ret)
14320 && !REFERENCE_REF_P (decl))
14321 ret = TREE_OPERAND (ret, 0);
14322 return ret;
14323 }
14324
14325 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14326
14327 static tree
14328 tsubst_omp_clauses (tree clauses, bool declare_simd, bool allow_fields,
14329 tree args, tsubst_flags_t complain, tree in_decl)
14330 {
14331 tree new_clauses = NULL_TREE, nc, oc;
14332 tree linear_no_step = NULL_TREE;
14333
14334 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14335 {
14336 nc = copy_node (oc);
14337 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14338 new_clauses = nc;
14339
14340 switch (OMP_CLAUSE_CODE (nc))
14341 {
14342 case OMP_CLAUSE_LASTPRIVATE:
14343 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14344 {
14345 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14346 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14347 in_decl, /*integral_constant_expression_p=*/false);
14348 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14349 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14350 }
14351 /* FALLTHRU */
14352 case OMP_CLAUSE_PRIVATE:
14353 case OMP_CLAUSE_SHARED:
14354 case OMP_CLAUSE_FIRSTPRIVATE:
14355 case OMP_CLAUSE_COPYIN:
14356 case OMP_CLAUSE_COPYPRIVATE:
14357 case OMP_CLAUSE_UNIFORM:
14358 case OMP_CLAUSE_DEPEND:
14359 case OMP_CLAUSE_FROM:
14360 case OMP_CLAUSE_TO:
14361 case OMP_CLAUSE_MAP:
14362 case OMP_CLAUSE_USE_DEVICE_PTR:
14363 case OMP_CLAUSE_IS_DEVICE_PTR:
14364 OMP_CLAUSE_DECL (nc)
14365 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14366 in_decl);
14367 break;
14368 case OMP_CLAUSE_IF:
14369 case OMP_CLAUSE_NUM_THREADS:
14370 case OMP_CLAUSE_SCHEDULE:
14371 case OMP_CLAUSE_COLLAPSE:
14372 case OMP_CLAUSE_FINAL:
14373 case OMP_CLAUSE_DEVICE:
14374 case OMP_CLAUSE_DIST_SCHEDULE:
14375 case OMP_CLAUSE_NUM_TEAMS:
14376 case OMP_CLAUSE_THREAD_LIMIT:
14377 case OMP_CLAUSE_SAFELEN:
14378 case OMP_CLAUSE_SIMDLEN:
14379 case OMP_CLAUSE_NUM_TASKS:
14380 case OMP_CLAUSE_GRAINSIZE:
14381 case OMP_CLAUSE_PRIORITY:
14382 case OMP_CLAUSE_ORDERED:
14383 case OMP_CLAUSE_HINT:
14384 case OMP_CLAUSE_NUM_GANGS:
14385 case OMP_CLAUSE_NUM_WORKERS:
14386 case OMP_CLAUSE_VECTOR_LENGTH:
14387 case OMP_CLAUSE_WORKER:
14388 case OMP_CLAUSE_VECTOR:
14389 case OMP_CLAUSE_ASYNC:
14390 case OMP_CLAUSE_WAIT:
14391 OMP_CLAUSE_OPERAND (nc, 0)
14392 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14393 in_decl, /*integral_constant_expression_p=*/false);
14394 break;
14395 case OMP_CLAUSE_REDUCTION:
14396 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14397 {
14398 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14399 if (TREE_CODE (placeholder) == SCOPE_REF)
14400 {
14401 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14402 complain, in_decl);
14403 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14404 = build_qualified_name (NULL_TREE, scope,
14405 TREE_OPERAND (placeholder, 1),
14406 false);
14407 }
14408 else
14409 gcc_assert (identifier_p (placeholder));
14410 }
14411 OMP_CLAUSE_DECL (nc)
14412 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14413 in_decl);
14414 break;
14415 case OMP_CLAUSE_GANG:
14416 case OMP_CLAUSE_ALIGNED:
14417 OMP_CLAUSE_DECL (nc)
14418 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14419 in_decl);
14420 OMP_CLAUSE_OPERAND (nc, 1)
14421 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14422 in_decl, /*integral_constant_expression_p=*/false);
14423 break;
14424 case OMP_CLAUSE_LINEAR:
14425 OMP_CLAUSE_DECL (nc)
14426 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14427 in_decl);
14428 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14429 {
14430 gcc_assert (!linear_no_step);
14431 linear_no_step = nc;
14432 }
14433 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14434 OMP_CLAUSE_LINEAR_STEP (nc)
14435 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14436 complain, in_decl);
14437 else
14438 OMP_CLAUSE_LINEAR_STEP (nc)
14439 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14440 in_decl,
14441 /*integral_constant_expression_p=*/false);
14442 break;
14443 case OMP_CLAUSE_NOWAIT:
14444 case OMP_CLAUSE_DEFAULT:
14445 case OMP_CLAUSE_UNTIED:
14446 case OMP_CLAUSE_MERGEABLE:
14447 case OMP_CLAUSE_INBRANCH:
14448 case OMP_CLAUSE_NOTINBRANCH:
14449 case OMP_CLAUSE_PROC_BIND:
14450 case OMP_CLAUSE_FOR:
14451 case OMP_CLAUSE_PARALLEL:
14452 case OMP_CLAUSE_SECTIONS:
14453 case OMP_CLAUSE_TASKGROUP:
14454 case OMP_CLAUSE_NOGROUP:
14455 case OMP_CLAUSE_THREADS:
14456 case OMP_CLAUSE_SIMD:
14457 case OMP_CLAUSE_DEFAULTMAP:
14458 case OMP_CLAUSE_INDEPENDENT:
14459 case OMP_CLAUSE_AUTO:
14460 case OMP_CLAUSE_SEQ:
14461 break;
14462 case OMP_CLAUSE_TILE:
14463 {
14464 tree lnc, loc;
14465 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14466 loc = OMP_CLAUSE_TILE_LIST (oc);
14467 loc;
14468 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14469 {
14470 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14471 complain, in_decl, false);
14472 }
14473 }
14474 break;
14475 default:
14476 gcc_unreachable ();
14477 }
14478 if (allow_fields)
14479 switch (OMP_CLAUSE_CODE (nc))
14480 {
14481 case OMP_CLAUSE_SHARED:
14482 case OMP_CLAUSE_PRIVATE:
14483 case OMP_CLAUSE_FIRSTPRIVATE:
14484 case OMP_CLAUSE_LASTPRIVATE:
14485 case OMP_CLAUSE_COPYPRIVATE:
14486 case OMP_CLAUSE_LINEAR:
14487 case OMP_CLAUSE_REDUCTION:
14488 case OMP_CLAUSE_USE_DEVICE_PTR:
14489 case OMP_CLAUSE_IS_DEVICE_PTR:
14490 /* tsubst_expr on SCOPE_REF results in returning
14491 finish_non_static_data_member result. Undo that here. */
14492 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14493 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14494 == IDENTIFIER_NODE))
14495 {
14496 tree t = OMP_CLAUSE_DECL (nc);
14497 tree v = t;
14498 while (v)
14499 switch (TREE_CODE (v))
14500 {
14501 case COMPONENT_REF:
14502 case MEM_REF:
14503 case INDIRECT_REF:
14504 CASE_CONVERT:
14505 case POINTER_PLUS_EXPR:
14506 v = TREE_OPERAND (v, 0);
14507 continue;
14508 case PARM_DECL:
14509 if (DECL_CONTEXT (v) == current_function_decl
14510 && DECL_ARTIFICIAL (v)
14511 && DECL_NAME (v) == this_identifier)
14512 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14513 /* FALLTHRU */
14514 default:
14515 v = NULL_TREE;
14516 break;
14517 }
14518 }
14519 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14520 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14521 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14522 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14523 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14524 {
14525 tree decl = OMP_CLAUSE_DECL (nc);
14526 if (VAR_P (decl))
14527 {
14528 if (!DECL_LANG_SPECIFIC (decl))
14529 retrofit_lang_decl (decl);
14530 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14531 }
14532 }
14533 break;
14534 default:
14535 break;
14536 }
14537 }
14538
14539 new_clauses = nreverse (new_clauses);
14540 if (!declare_simd)
14541 {
14542 new_clauses = finish_omp_clauses (new_clauses, allow_fields);
14543 if (linear_no_step)
14544 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14545 if (nc == linear_no_step)
14546 {
14547 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14548 break;
14549 }
14550 }
14551 return new_clauses;
14552 }
14553
14554 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14555
14556 static tree
14557 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14558 tree in_decl)
14559 {
14560 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14561
14562 tree purpose, value, chain;
14563
14564 if (t == NULL)
14565 return t;
14566
14567 if (TREE_CODE (t) != TREE_LIST)
14568 return tsubst_copy_and_build (t, args, complain, in_decl,
14569 /*function_p=*/false,
14570 /*integral_constant_expression_p=*/false);
14571
14572 if (t == void_list_node)
14573 return t;
14574
14575 purpose = TREE_PURPOSE (t);
14576 if (purpose)
14577 purpose = RECUR (purpose);
14578 value = TREE_VALUE (t);
14579 if (value)
14580 {
14581 if (TREE_CODE (value) != LABEL_DECL)
14582 value = RECUR (value);
14583 else
14584 {
14585 value = lookup_label (DECL_NAME (value));
14586 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14587 TREE_USED (value) = 1;
14588 }
14589 }
14590 chain = TREE_CHAIN (t);
14591 if (chain && chain != void_type_node)
14592 chain = RECUR (chain);
14593 return tree_cons (purpose, value, chain);
14594 #undef RECUR
14595 }
14596
14597 /* Used to temporarily communicate the list of #pragma omp parallel
14598 clauses to #pragma omp for instantiation if they are combined
14599 together. */
14600
14601 static tree *omp_parallel_combined_clauses;
14602
14603 /* Substitute one OMP_FOR iterator. */
14604
14605 static void
14606 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14607 tree initv, tree condv, tree incrv, tree *clauses,
14608 tree args, tsubst_flags_t complain, tree in_decl,
14609 bool integral_constant_expression_p)
14610 {
14611 #define RECUR(NODE) \
14612 tsubst_expr ((NODE), args, complain, in_decl, \
14613 integral_constant_expression_p)
14614 tree decl, init, cond, incr;
14615
14616 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14617 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14618
14619 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14620 {
14621 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14622 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14623 }
14624
14625 decl = TREE_OPERAND (init, 0);
14626 init = TREE_OPERAND (init, 1);
14627 tree decl_expr = NULL_TREE;
14628 if (init && TREE_CODE (init) == DECL_EXPR)
14629 {
14630 /* We need to jump through some hoops to handle declarations in the
14631 for-init-statement, since we might need to handle auto deduction,
14632 but we need to keep control of initialization. */
14633 decl_expr = init;
14634 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14635 decl = tsubst_decl (decl, args, complain);
14636 }
14637 else
14638 {
14639 if (TREE_CODE (decl) == SCOPE_REF)
14640 {
14641 decl = RECUR (decl);
14642 if (TREE_CODE (decl) == COMPONENT_REF)
14643 {
14644 tree v = decl;
14645 while (v)
14646 switch (TREE_CODE (v))
14647 {
14648 case COMPONENT_REF:
14649 case MEM_REF:
14650 case INDIRECT_REF:
14651 CASE_CONVERT:
14652 case POINTER_PLUS_EXPR:
14653 v = TREE_OPERAND (v, 0);
14654 continue;
14655 case PARM_DECL:
14656 if (DECL_CONTEXT (v) == current_function_decl
14657 && DECL_ARTIFICIAL (v)
14658 && DECL_NAME (v) == this_identifier)
14659 {
14660 decl = TREE_OPERAND (decl, 1);
14661 decl = omp_privatize_field (decl, false);
14662 }
14663 /* FALLTHRU */
14664 default:
14665 v = NULL_TREE;
14666 break;
14667 }
14668 }
14669 }
14670 else
14671 decl = RECUR (decl);
14672 }
14673 init = RECUR (init);
14674
14675 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14676 if (auto_node && init)
14677 TREE_TYPE (decl)
14678 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14679
14680 gcc_assert (!type_dependent_expression_p (decl));
14681
14682 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14683 {
14684 if (decl_expr)
14685 {
14686 /* Declare the variable, but don't let that initialize it. */
14687 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14688 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14689 RECUR (decl_expr);
14690 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14691 }
14692
14693 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14694 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14695 if (TREE_CODE (incr) == MODIFY_EXPR)
14696 {
14697 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14698 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14699 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14700 NOP_EXPR, rhs, complain);
14701 }
14702 else
14703 incr = RECUR (incr);
14704 TREE_VEC_ELT (declv, i) = decl;
14705 TREE_VEC_ELT (initv, i) = init;
14706 TREE_VEC_ELT (condv, i) = cond;
14707 TREE_VEC_ELT (incrv, i) = incr;
14708 return;
14709 }
14710
14711 if (decl_expr)
14712 {
14713 /* Declare and initialize the variable. */
14714 RECUR (decl_expr);
14715 init = NULL_TREE;
14716 }
14717 else if (init)
14718 {
14719 tree *pc;
14720 int j;
14721 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14722 {
14723 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14724 {
14725 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14726 && OMP_CLAUSE_DECL (*pc) == decl)
14727 break;
14728 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14729 && OMP_CLAUSE_DECL (*pc) == decl)
14730 {
14731 if (j)
14732 break;
14733 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14734 tree c = *pc;
14735 *pc = OMP_CLAUSE_CHAIN (c);
14736 OMP_CLAUSE_CHAIN (c) = *clauses;
14737 *clauses = c;
14738 }
14739 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14740 && OMP_CLAUSE_DECL (*pc) == decl)
14741 {
14742 error ("iteration variable %qD should not be firstprivate",
14743 decl);
14744 *pc = OMP_CLAUSE_CHAIN (*pc);
14745 }
14746 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14747 && OMP_CLAUSE_DECL (*pc) == decl)
14748 {
14749 error ("iteration variable %qD should not be reduction",
14750 decl);
14751 *pc = OMP_CLAUSE_CHAIN (*pc);
14752 }
14753 else
14754 pc = &OMP_CLAUSE_CHAIN (*pc);
14755 }
14756 if (*pc)
14757 break;
14758 }
14759 if (*pc == NULL_TREE)
14760 {
14761 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14762 OMP_CLAUSE_DECL (c) = decl;
14763 c = finish_omp_clauses (c, true);
14764 if (c)
14765 {
14766 OMP_CLAUSE_CHAIN (c) = *clauses;
14767 *clauses = c;
14768 }
14769 }
14770 }
14771 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14772 if (COMPARISON_CLASS_P (cond))
14773 {
14774 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14775 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14776 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14777 }
14778 else
14779 cond = RECUR (cond);
14780 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14781 switch (TREE_CODE (incr))
14782 {
14783 case PREINCREMENT_EXPR:
14784 case PREDECREMENT_EXPR:
14785 case POSTINCREMENT_EXPR:
14786 case POSTDECREMENT_EXPR:
14787 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14788 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14789 break;
14790 case MODIFY_EXPR:
14791 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14792 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14793 {
14794 tree rhs = TREE_OPERAND (incr, 1);
14795 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14796 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14797 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14798 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14799 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14800 rhs0, rhs1));
14801 }
14802 else
14803 incr = RECUR (incr);
14804 break;
14805 case MODOP_EXPR:
14806 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14807 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14808 {
14809 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14810 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14811 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
14812 TREE_TYPE (decl), lhs,
14813 RECUR (TREE_OPERAND (incr, 2))));
14814 }
14815 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
14816 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
14817 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
14818 {
14819 tree rhs = TREE_OPERAND (incr, 2);
14820 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14821 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14822 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14823 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14824 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14825 rhs0, rhs1));
14826 }
14827 else
14828 incr = RECUR (incr);
14829 break;
14830 default:
14831 incr = RECUR (incr);
14832 break;
14833 }
14834
14835 TREE_VEC_ELT (declv, i) = decl;
14836 TREE_VEC_ELT (initv, i) = init;
14837 TREE_VEC_ELT (condv, i) = cond;
14838 TREE_VEC_ELT (incrv, i) = incr;
14839 #undef RECUR
14840 }
14841
14842 /* Helper function of tsubst_expr, find OMP_TEAMS inside
14843 of OMP_TARGET's body. */
14844
14845 static tree
14846 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
14847 {
14848 *walk_subtrees = 0;
14849 switch (TREE_CODE (*tp))
14850 {
14851 case OMP_TEAMS:
14852 return *tp;
14853 case BIND_EXPR:
14854 case STATEMENT_LIST:
14855 *walk_subtrees = 1;
14856 break;
14857 default:
14858 break;
14859 }
14860 return NULL_TREE;
14861 }
14862
14863 /* Like tsubst_copy for expressions, etc. but also does semantic
14864 processing. */
14865
14866 tree
14867 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
14868 bool integral_constant_expression_p)
14869 {
14870 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
14871 #define RECUR(NODE) \
14872 tsubst_expr ((NODE), args, complain, in_decl, \
14873 integral_constant_expression_p)
14874
14875 tree stmt, tmp;
14876 tree r;
14877 location_t loc;
14878
14879 if (t == NULL_TREE || t == error_mark_node)
14880 return t;
14881
14882 loc = input_location;
14883 if (EXPR_HAS_LOCATION (t))
14884 input_location = EXPR_LOCATION (t);
14885 if (STATEMENT_CODE_P (TREE_CODE (t)))
14886 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
14887
14888 switch (TREE_CODE (t))
14889 {
14890 case STATEMENT_LIST:
14891 {
14892 tree_stmt_iterator i;
14893 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
14894 RECUR (tsi_stmt (i));
14895 break;
14896 }
14897
14898 case CTOR_INITIALIZER:
14899 finish_mem_initializers (tsubst_initializer_list
14900 (TREE_OPERAND (t, 0), args));
14901 break;
14902
14903 case RETURN_EXPR:
14904 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
14905 break;
14906
14907 case EXPR_STMT:
14908 tmp = RECUR (EXPR_STMT_EXPR (t));
14909 if (EXPR_STMT_STMT_EXPR_RESULT (t))
14910 finish_stmt_expr_expr (tmp, cur_stmt_expr);
14911 else
14912 finish_expr_stmt (tmp);
14913 break;
14914
14915 case USING_STMT:
14916 do_using_directive (USING_STMT_NAMESPACE (t));
14917 break;
14918
14919 case DECL_EXPR:
14920 {
14921 tree decl, pattern_decl;
14922 tree init;
14923
14924 pattern_decl = decl = DECL_EXPR_DECL (t);
14925 if (TREE_CODE (decl) == LABEL_DECL)
14926 finish_label_decl (DECL_NAME (decl));
14927 else if (TREE_CODE (decl) == USING_DECL)
14928 {
14929 tree scope = USING_DECL_SCOPE (decl);
14930 tree name = DECL_NAME (decl);
14931 tree decl;
14932
14933 scope = tsubst (scope, args, complain, in_decl);
14934 decl = lookup_qualified_name (scope, name,
14935 /*is_type_p=*/false,
14936 /*complain=*/false);
14937 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
14938 qualified_name_lookup_error (scope, name, decl, input_location);
14939 else
14940 do_local_using_decl (decl, scope, name);
14941 }
14942 else if (DECL_PACK_P (decl))
14943 {
14944 /* Don't build up decls for a variadic capture proxy, we'll
14945 instantiate the elements directly as needed. */
14946 break;
14947 }
14948 else
14949 {
14950 init = DECL_INITIAL (decl);
14951 decl = tsubst (decl, args, complain, in_decl);
14952 if (decl != error_mark_node)
14953 {
14954 /* By marking the declaration as instantiated, we avoid
14955 trying to instantiate it. Since instantiate_decl can't
14956 handle local variables, and since we've already done
14957 all that needs to be done, that's the right thing to
14958 do. */
14959 if (VAR_P (decl))
14960 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14961 if (VAR_P (decl)
14962 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
14963 /* Anonymous aggregates are a special case. */
14964 finish_anon_union (decl);
14965 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
14966 {
14967 DECL_CONTEXT (decl) = current_function_decl;
14968 if (DECL_NAME (decl) == this_identifier)
14969 {
14970 tree lam = DECL_CONTEXT (current_function_decl);
14971 lam = CLASSTYPE_LAMBDA_EXPR (lam);
14972 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
14973 }
14974 insert_capture_proxy (decl);
14975 }
14976 else if (DECL_IMPLICIT_TYPEDEF_P (t))
14977 /* We already did a pushtag. */;
14978 else if (TREE_CODE (decl) == FUNCTION_DECL
14979 && DECL_OMP_DECLARE_REDUCTION_P (decl)
14980 && DECL_FUNCTION_SCOPE_P (pattern_decl))
14981 {
14982 DECL_CONTEXT (decl) = NULL_TREE;
14983 pushdecl (decl);
14984 DECL_CONTEXT (decl) = current_function_decl;
14985 cp_check_omp_declare_reduction (decl);
14986 }
14987 else
14988 {
14989 int const_init = false;
14990 maybe_push_decl (decl);
14991 if (VAR_P (decl)
14992 && DECL_PRETTY_FUNCTION_P (decl))
14993 {
14994 /* For __PRETTY_FUNCTION__ we have to adjust the
14995 initializer. */
14996 const char *const name
14997 = cxx_printable_name (current_function_decl, 2);
14998 init = cp_fname_init (name, &TREE_TYPE (decl));
14999 }
15000 else
15001 init = tsubst_init (init, decl, args, complain, in_decl);
15002
15003 if (VAR_P (decl))
15004 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15005 (pattern_decl));
15006 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15007 }
15008 }
15009 }
15010
15011 break;
15012 }
15013
15014 case FOR_STMT:
15015 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15016 RECUR (FOR_INIT_STMT (t));
15017 finish_for_init_stmt (stmt);
15018 tmp = RECUR (FOR_COND (t));
15019 finish_for_cond (tmp, stmt, false);
15020 tmp = RECUR (FOR_EXPR (t));
15021 finish_for_expr (tmp, stmt);
15022 RECUR (FOR_BODY (t));
15023 finish_for_stmt (stmt);
15024 break;
15025
15026 case RANGE_FOR_STMT:
15027 {
15028 tree decl, expr;
15029 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15030 decl = RANGE_FOR_DECL (t);
15031 decl = tsubst (decl, args, complain, in_decl);
15032 maybe_push_decl (decl);
15033 expr = RECUR (RANGE_FOR_EXPR (t));
15034 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15035 RECUR (RANGE_FOR_BODY (t));
15036 finish_for_stmt (stmt);
15037 }
15038 break;
15039
15040 case WHILE_STMT:
15041 stmt = begin_while_stmt ();
15042 tmp = RECUR (WHILE_COND (t));
15043 finish_while_stmt_cond (tmp, stmt, false);
15044 RECUR (WHILE_BODY (t));
15045 finish_while_stmt (stmt);
15046 break;
15047
15048 case DO_STMT:
15049 stmt = begin_do_stmt ();
15050 RECUR (DO_BODY (t));
15051 finish_do_body (stmt);
15052 tmp = RECUR (DO_COND (t));
15053 finish_do_stmt (tmp, stmt, false);
15054 break;
15055
15056 case IF_STMT:
15057 stmt = begin_if_stmt ();
15058 tmp = RECUR (IF_COND (t));
15059 finish_if_stmt_cond (tmp, stmt);
15060 RECUR (THEN_CLAUSE (t));
15061 finish_then_clause (stmt);
15062
15063 if (ELSE_CLAUSE (t))
15064 {
15065 begin_else_clause (stmt);
15066 RECUR (ELSE_CLAUSE (t));
15067 finish_else_clause (stmt);
15068 }
15069
15070 finish_if_stmt (stmt);
15071 break;
15072
15073 case BIND_EXPR:
15074 if (BIND_EXPR_BODY_BLOCK (t))
15075 stmt = begin_function_body ();
15076 else
15077 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15078 ? BCS_TRY_BLOCK : 0);
15079
15080 RECUR (BIND_EXPR_BODY (t));
15081
15082 if (BIND_EXPR_BODY_BLOCK (t))
15083 finish_function_body (stmt);
15084 else
15085 finish_compound_stmt (stmt);
15086 break;
15087
15088 case BREAK_STMT:
15089 finish_break_stmt ();
15090 break;
15091
15092 case CONTINUE_STMT:
15093 finish_continue_stmt ();
15094 break;
15095
15096 case SWITCH_STMT:
15097 stmt = begin_switch_stmt ();
15098 tmp = RECUR (SWITCH_STMT_COND (t));
15099 finish_switch_cond (tmp, stmt);
15100 RECUR (SWITCH_STMT_BODY (t));
15101 finish_switch_stmt (stmt);
15102 break;
15103
15104 case CASE_LABEL_EXPR:
15105 {
15106 tree low = RECUR (CASE_LOW (t));
15107 tree high = RECUR (CASE_HIGH (t));
15108 finish_case_label (EXPR_LOCATION (t), low, high);
15109 }
15110 break;
15111
15112 case LABEL_EXPR:
15113 {
15114 tree decl = LABEL_EXPR_LABEL (t);
15115 tree label;
15116
15117 label = finish_label_stmt (DECL_NAME (decl));
15118 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15119 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15120 }
15121 break;
15122
15123 case GOTO_EXPR:
15124 tmp = GOTO_DESTINATION (t);
15125 if (TREE_CODE (tmp) != LABEL_DECL)
15126 /* Computed goto's must be tsubst'd into. On the other hand,
15127 non-computed gotos must not be; the identifier in question
15128 will have no binding. */
15129 tmp = RECUR (tmp);
15130 else
15131 tmp = DECL_NAME (tmp);
15132 finish_goto_stmt (tmp);
15133 break;
15134
15135 case ASM_EXPR:
15136 {
15137 tree string = RECUR (ASM_STRING (t));
15138 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15139 complain, in_decl);
15140 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15141 complain, in_decl);
15142 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15143 complain, in_decl);
15144 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15145 complain, in_decl);
15146 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15147 clobbers, labels);
15148 tree asm_expr = tmp;
15149 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15150 asm_expr = TREE_OPERAND (asm_expr, 0);
15151 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15152 }
15153 break;
15154
15155 case TRY_BLOCK:
15156 if (CLEANUP_P (t))
15157 {
15158 stmt = begin_try_block ();
15159 RECUR (TRY_STMTS (t));
15160 finish_cleanup_try_block (stmt);
15161 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15162 }
15163 else
15164 {
15165 tree compound_stmt = NULL_TREE;
15166
15167 if (FN_TRY_BLOCK_P (t))
15168 stmt = begin_function_try_block (&compound_stmt);
15169 else
15170 stmt = begin_try_block ();
15171
15172 RECUR (TRY_STMTS (t));
15173
15174 if (FN_TRY_BLOCK_P (t))
15175 finish_function_try_block (stmt);
15176 else
15177 finish_try_block (stmt);
15178
15179 RECUR (TRY_HANDLERS (t));
15180 if (FN_TRY_BLOCK_P (t))
15181 finish_function_handler_sequence (stmt, compound_stmt);
15182 else
15183 finish_handler_sequence (stmt);
15184 }
15185 break;
15186
15187 case HANDLER:
15188 {
15189 tree decl = HANDLER_PARMS (t);
15190
15191 if (decl)
15192 {
15193 decl = tsubst (decl, args, complain, in_decl);
15194 /* Prevent instantiate_decl from trying to instantiate
15195 this variable. We've already done all that needs to be
15196 done. */
15197 if (decl != error_mark_node)
15198 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15199 }
15200 stmt = begin_handler ();
15201 finish_handler_parms (decl, stmt);
15202 RECUR (HANDLER_BODY (t));
15203 finish_handler (stmt);
15204 }
15205 break;
15206
15207 case TAG_DEFN:
15208 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15209 if (CLASS_TYPE_P (tmp))
15210 {
15211 /* Local classes are not independent templates; they are
15212 instantiated along with their containing function. And this
15213 way we don't have to deal with pushing out of one local class
15214 to instantiate a member of another local class. */
15215 tree fn;
15216 /* Closures are handled by the LAMBDA_EXPR. */
15217 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15218 complete_type (tmp);
15219 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15220 if (!DECL_ARTIFICIAL (fn))
15221 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15222 }
15223 break;
15224
15225 case STATIC_ASSERT:
15226 {
15227 tree condition;
15228
15229 ++c_inhibit_evaluation_warnings;
15230 condition =
15231 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15232 args,
15233 complain, in_decl,
15234 /*integral_constant_expression_p=*/true);
15235 --c_inhibit_evaluation_warnings;
15236
15237 finish_static_assert (condition,
15238 STATIC_ASSERT_MESSAGE (t),
15239 STATIC_ASSERT_SOURCE_LOCATION (t),
15240 /*member_p=*/false);
15241 }
15242 break;
15243
15244 case OACC_KERNELS:
15245 case OACC_PARALLEL:
15246 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, false, args, complain,
15247 in_decl);
15248 stmt = begin_omp_parallel ();
15249 RECUR (OMP_BODY (t));
15250 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15251 break;
15252
15253 case OMP_PARALLEL:
15254 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15255 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false, true,
15256 args, complain, in_decl);
15257 if (OMP_PARALLEL_COMBINED (t))
15258 omp_parallel_combined_clauses = &tmp;
15259 stmt = begin_omp_parallel ();
15260 RECUR (OMP_PARALLEL_BODY (t));
15261 gcc_assert (omp_parallel_combined_clauses == NULL);
15262 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15263 = OMP_PARALLEL_COMBINED (t);
15264 pop_omp_privatization_clauses (r);
15265 break;
15266
15267 case OMP_TASK:
15268 r = push_omp_privatization_clauses (false);
15269 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false, true,
15270 args, complain, in_decl);
15271 stmt = begin_omp_task ();
15272 RECUR (OMP_TASK_BODY (t));
15273 finish_omp_task (tmp, stmt);
15274 pop_omp_privatization_clauses (r);
15275 break;
15276
15277 case OMP_FOR:
15278 case OMP_SIMD:
15279 case CILK_SIMD:
15280 case CILK_FOR:
15281 case OMP_DISTRIBUTE:
15282 case OMP_TASKLOOP:
15283 case OACC_LOOP:
15284 {
15285 tree clauses, body, pre_body;
15286 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15287 tree orig_declv = NULL_TREE;
15288 tree incrv = NULL_TREE;
15289 int i;
15290
15291 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15292 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
15293 TREE_CODE (t) != OACC_LOOP,
15294 args, complain, in_decl);
15295 if (OMP_FOR_INIT (t) != NULL_TREE)
15296 {
15297 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15298 if (OMP_FOR_ORIG_DECLS (t))
15299 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15300 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15301 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15302 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15303 }
15304
15305 stmt = begin_omp_structured_block ();
15306
15307 pre_body = push_stmt_list ();
15308 RECUR (OMP_FOR_PRE_BODY (t));
15309 pre_body = pop_stmt_list (pre_body);
15310
15311 if (OMP_FOR_INIT (t) != NULL_TREE)
15312 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15313 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15314 incrv, &clauses, args, complain, in_decl,
15315 integral_constant_expression_p);
15316 omp_parallel_combined_clauses = NULL;
15317
15318 body = push_stmt_list ();
15319 RECUR (OMP_FOR_BODY (t));
15320 body = pop_stmt_list (body);
15321
15322 if (OMP_FOR_INIT (t) != NULL_TREE)
15323 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15324 orig_declv, initv, condv, incrv, body, pre_body,
15325 NULL, clauses);
15326 else
15327 {
15328 t = make_node (TREE_CODE (t));
15329 TREE_TYPE (t) = void_type_node;
15330 OMP_FOR_BODY (t) = body;
15331 OMP_FOR_PRE_BODY (t) = pre_body;
15332 OMP_FOR_CLAUSES (t) = clauses;
15333 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15334 add_stmt (t);
15335 }
15336
15337 add_stmt (finish_omp_structured_block (stmt));
15338 pop_omp_privatization_clauses (r);
15339 }
15340 break;
15341
15342 case OMP_SECTIONS:
15343 omp_parallel_combined_clauses = NULL;
15344 /* FALLTHRU */
15345 case OMP_SINGLE:
15346 case OMP_TEAMS:
15347 case OMP_CRITICAL:
15348 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15349 && OMP_TEAMS_COMBINED (t));
15350 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15351 args, complain, in_decl);
15352 stmt = push_stmt_list ();
15353 RECUR (OMP_BODY (t));
15354 stmt = pop_stmt_list (stmt);
15355
15356 t = copy_node (t);
15357 OMP_BODY (t) = stmt;
15358 OMP_CLAUSES (t) = tmp;
15359 add_stmt (t);
15360 pop_omp_privatization_clauses (r);
15361 break;
15362
15363 case OACC_DATA:
15364 case OMP_TARGET_DATA:
15365 case OMP_TARGET:
15366 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15367 TREE_CODE (t) != OACC_DATA,
15368 args, complain, in_decl);
15369 keep_next_level (true);
15370 stmt = begin_omp_structured_block ();
15371
15372 RECUR (OMP_BODY (t));
15373 stmt = finish_omp_structured_block (stmt);
15374
15375 t = copy_node (t);
15376 OMP_BODY (t) = stmt;
15377 OMP_CLAUSES (t) = tmp;
15378 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15379 {
15380 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15381 if (teams)
15382 {
15383 /* For combined target teams, ensure the num_teams and
15384 thread_limit clause expressions are evaluated on the host,
15385 before entering the target construct. */
15386 tree c;
15387 for (c = OMP_TEAMS_CLAUSES (teams);
15388 c; c = OMP_CLAUSE_CHAIN (c))
15389 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15390 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15391 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15392 {
15393 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15394 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15395 if (expr == error_mark_node)
15396 continue;
15397 tmp = TARGET_EXPR_SLOT (expr);
15398 add_stmt (expr);
15399 OMP_CLAUSE_OPERAND (c, 0) = expr;
15400 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15401 OMP_CLAUSE_FIRSTPRIVATE);
15402 OMP_CLAUSE_DECL (tc) = tmp;
15403 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15404 OMP_TARGET_CLAUSES (t) = tc;
15405 }
15406 }
15407 }
15408 add_stmt (t);
15409 break;
15410
15411 case OMP_TARGET_UPDATE:
15412 case OMP_TARGET_ENTER_DATA:
15413 case OMP_TARGET_EXIT_DATA:
15414 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, true,
15415 args, complain, in_decl);
15416 t = copy_node (t);
15417 OMP_STANDALONE_CLAUSES (t) = tmp;
15418 add_stmt (t);
15419 break;
15420
15421 case OACC_ENTER_DATA:
15422 case OACC_EXIT_DATA:
15423 case OACC_UPDATE:
15424 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, false,
15425 args, complain, in_decl);
15426 t = copy_node (t);
15427 OMP_STANDALONE_CLAUSES (t) = tmp;
15428 add_stmt (t);
15429 break;
15430
15431 case OMP_ORDERED:
15432 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), false, true,
15433 args, complain, in_decl);
15434 stmt = push_stmt_list ();
15435 RECUR (OMP_BODY (t));
15436 stmt = pop_stmt_list (stmt);
15437
15438 t = copy_node (t);
15439 OMP_BODY (t) = stmt;
15440 OMP_ORDERED_CLAUSES (t) = tmp;
15441 add_stmt (t);
15442 break;
15443
15444 case OMP_SECTION:
15445 case OMP_MASTER:
15446 case OMP_TASKGROUP:
15447 stmt = push_stmt_list ();
15448 RECUR (OMP_BODY (t));
15449 stmt = pop_stmt_list (stmt);
15450
15451 t = copy_node (t);
15452 OMP_BODY (t) = stmt;
15453 add_stmt (t);
15454 break;
15455
15456 case OMP_ATOMIC:
15457 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15458 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15459 {
15460 tree op1 = TREE_OPERAND (t, 1);
15461 tree rhs1 = NULL_TREE;
15462 tree lhs, rhs;
15463 if (TREE_CODE (op1) == COMPOUND_EXPR)
15464 {
15465 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15466 op1 = TREE_OPERAND (op1, 1);
15467 }
15468 lhs = RECUR (TREE_OPERAND (op1, 0));
15469 rhs = RECUR (TREE_OPERAND (op1, 1));
15470 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15471 NULL_TREE, NULL_TREE, rhs1,
15472 OMP_ATOMIC_SEQ_CST (t));
15473 }
15474 else
15475 {
15476 tree op1 = TREE_OPERAND (t, 1);
15477 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15478 tree rhs1 = NULL_TREE;
15479 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15480 enum tree_code opcode = NOP_EXPR;
15481 if (code == OMP_ATOMIC_READ)
15482 {
15483 v = RECUR (TREE_OPERAND (op1, 0));
15484 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15485 }
15486 else if (code == OMP_ATOMIC_CAPTURE_OLD
15487 || code == OMP_ATOMIC_CAPTURE_NEW)
15488 {
15489 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15490 v = RECUR (TREE_OPERAND (op1, 0));
15491 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15492 if (TREE_CODE (op11) == COMPOUND_EXPR)
15493 {
15494 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15495 op11 = TREE_OPERAND (op11, 1);
15496 }
15497 lhs = RECUR (TREE_OPERAND (op11, 0));
15498 rhs = RECUR (TREE_OPERAND (op11, 1));
15499 opcode = TREE_CODE (op11);
15500 if (opcode == MODIFY_EXPR)
15501 opcode = NOP_EXPR;
15502 }
15503 else
15504 {
15505 code = OMP_ATOMIC;
15506 lhs = RECUR (TREE_OPERAND (op1, 0));
15507 rhs = RECUR (TREE_OPERAND (op1, 1));
15508 }
15509 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15510 OMP_ATOMIC_SEQ_CST (t));
15511 }
15512 break;
15513
15514 case TRANSACTION_EXPR:
15515 {
15516 int flags = 0;
15517 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15518 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15519
15520 if (TRANSACTION_EXPR_IS_STMT (t))
15521 {
15522 tree body = TRANSACTION_EXPR_BODY (t);
15523 tree noex = NULL_TREE;
15524 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15525 {
15526 noex = MUST_NOT_THROW_COND (body);
15527 if (noex == NULL_TREE)
15528 noex = boolean_true_node;
15529 body = TREE_OPERAND (body, 0);
15530 }
15531 stmt = begin_transaction_stmt (input_location, NULL, flags);
15532 RECUR (body);
15533 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15534 }
15535 else
15536 {
15537 stmt = build_transaction_expr (EXPR_LOCATION (t),
15538 RECUR (TRANSACTION_EXPR_BODY (t)),
15539 flags, NULL_TREE);
15540 RETURN (stmt);
15541 }
15542 }
15543 break;
15544
15545 case MUST_NOT_THROW_EXPR:
15546 {
15547 tree op0 = RECUR (TREE_OPERAND (t, 0));
15548 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15549 RETURN (build_must_not_throw_expr (op0, cond));
15550 }
15551
15552 case EXPR_PACK_EXPANSION:
15553 error ("invalid use of pack expansion expression");
15554 RETURN (error_mark_node);
15555
15556 case NONTYPE_ARGUMENT_PACK:
15557 error ("use %<...%> to expand argument pack");
15558 RETURN (error_mark_node);
15559
15560 case CILK_SPAWN_STMT:
15561 cfun->calls_cilk_spawn = 1;
15562 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15563
15564 case CILK_SYNC_STMT:
15565 RETURN (build_cilk_sync ());
15566
15567 case COMPOUND_EXPR:
15568 tmp = RECUR (TREE_OPERAND (t, 0));
15569 if (tmp == NULL_TREE)
15570 /* If the first operand was a statement, we're done with it. */
15571 RETURN (RECUR (TREE_OPERAND (t, 1)));
15572 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15573 RECUR (TREE_OPERAND (t, 1)),
15574 complain));
15575
15576 case ANNOTATE_EXPR:
15577 tmp = RECUR (TREE_OPERAND (t, 0));
15578 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15579 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15580
15581 default:
15582 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15583
15584 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15585 /*function_p=*/false,
15586 integral_constant_expression_p));
15587 }
15588
15589 RETURN (NULL_TREE);
15590 out:
15591 input_location = loc;
15592 return r;
15593 #undef RECUR
15594 #undef RETURN
15595 }
15596
15597 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15598 function. For description of the body see comment above
15599 cp_parser_omp_declare_reduction_exprs. */
15600
15601 static void
15602 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15603 {
15604 if (t == NULL_TREE || t == error_mark_node)
15605 return;
15606
15607 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15608
15609 tree_stmt_iterator tsi;
15610 int i;
15611 tree stmts[7];
15612 memset (stmts, 0, sizeof stmts);
15613 for (i = 0, tsi = tsi_start (t);
15614 i < 7 && !tsi_end_p (tsi);
15615 i++, tsi_next (&tsi))
15616 stmts[i] = tsi_stmt (tsi);
15617 gcc_assert (tsi_end_p (tsi));
15618
15619 if (i >= 3)
15620 {
15621 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15622 && TREE_CODE (stmts[1]) == DECL_EXPR);
15623 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15624 args, complain, in_decl);
15625 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15626 args, complain, in_decl);
15627 DECL_CONTEXT (omp_out) = current_function_decl;
15628 DECL_CONTEXT (omp_in) = current_function_decl;
15629 keep_next_level (true);
15630 tree block = begin_omp_structured_block ();
15631 tsubst_expr (stmts[2], args, complain, in_decl, false);
15632 block = finish_omp_structured_block (block);
15633 block = maybe_cleanup_point_expr_void (block);
15634 add_decl_expr (omp_out);
15635 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15636 TREE_NO_WARNING (omp_out) = 1;
15637 add_decl_expr (omp_in);
15638 finish_expr_stmt (block);
15639 }
15640 if (i >= 6)
15641 {
15642 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15643 && TREE_CODE (stmts[4]) == DECL_EXPR);
15644 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15645 args, complain, in_decl);
15646 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15647 args, complain, in_decl);
15648 DECL_CONTEXT (omp_priv) = current_function_decl;
15649 DECL_CONTEXT (omp_orig) = current_function_decl;
15650 keep_next_level (true);
15651 tree block = begin_omp_structured_block ();
15652 tsubst_expr (stmts[5], args, complain, in_decl, false);
15653 block = finish_omp_structured_block (block);
15654 block = maybe_cleanup_point_expr_void (block);
15655 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15656 add_decl_expr (omp_priv);
15657 add_decl_expr (omp_orig);
15658 finish_expr_stmt (block);
15659 if (i == 7)
15660 add_decl_expr (omp_orig);
15661 }
15662 }
15663
15664 /* T is a postfix-expression that is not being used in a function
15665 call. Return the substituted version of T. */
15666
15667 static tree
15668 tsubst_non_call_postfix_expression (tree t, tree args,
15669 tsubst_flags_t complain,
15670 tree in_decl)
15671 {
15672 if (TREE_CODE (t) == SCOPE_REF)
15673 t = tsubst_qualified_id (t, args, complain, in_decl,
15674 /*done=*/false, /*address_p=*/false);
15675 else
15676 t = tsubst_copy_and_build (t, args, complain, in_decl,
15677 /*function_p=*/false,
15678 /*integral_constant_expression_p=*/false);
15679
15680 return t;
15681 }
15682
15683 /* Like tsubst but deals with expressions and performs semantic
15684 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15685
15686 tree
15687 tsubst_copy_and_build (tree t,
15688 tree args,
15689 tsubst_flags_t complain,
15690 tree in_decl,
15691 bool function_p,
15692 bool integral_constant_expression_p)
15693 {
15694 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15695 #define RECUR(NODE) \
15696 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15697 /*function_p=*/false, \
15698 integral_constant_expression_p)
15699
15700 tree retval, op1;
15701 location_t loc;
15702
15703 if (t == NULL_TREE || t == error_mark_node)
15704 return t;
15705
15706 loc = input_location;
15707 if (EXPR_HAS_LOCATION (t))
15708 input_location = EXPR_LOCATION (t);
15709
15710 /* N3276 decltype magic only applies to calls at the top level or on the
15711 right side of a comma. */
15712 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15713 complain &= ~tf_decltype;
15714
15715 switch (TREE_CODE (t))
15716 {
15717 case USING_DECL:
15718 t = DECL_NAME (t);
15719 /* Fall through. */
15720 case IDENTIFIER_NODE:
15721 {
15722 tree decl;
15723 cp_id_kind idk;
15724 bool non_integral_constant_expression_p;
15725 const char *error_msg;
15726
15727 if (IDENTIFIER_TYPENAME_P (t))
15728 {
15729 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15730 t = mangle_conv_op_name_for_type (new_type);
15731 }
15732
15733 /* Look up the name. */
15734 decl = lookup_name (t);
15735
15736 /* By convention, expressions use ERROR_MARK_NODE to indicate
15737 failure, not NULL_TREE. */
15738 if (decl == NULL_TREE)
15739 decl = error_mark_node;
15740
15741 decl = finish_id_expression (t, decl, NULL_TREE,
15742 &idk,
15743 integral_constant_expression_p,
15744 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15745 &non_integral_constant_expression_p,
15746 /*template_p=*/false,
15747 /*done=*/true,
15748 /*address_p=*/false,
15749 /*template_arg_p=*/false,
15750 &error_msg,
15751 input_location);
15752 if (error_msg)
15753 error (error_msg);
15754 if (!function_p && identifier_p (decl))
15755 {
15756 if (complain & tf_error)
15757 unqualified_name_lookup_error (decl);
15758 decl = error_mark_node;
15759 }
15760 RETURN (decl);
15761 }
15762
15763 case TEMPLATE_ID_EXPR:
15764 {
15765 tree object;
15766 tree templ = RECUR (TREE_OPERAND (t, 0));
15767 tree targs = TREE_OPERAND (t, 1);
15768
15769 if (targs)
15770 targs = tsubst_template_args (targs, args, complain, in_decl);
15771 if (targs == error_mark_node)
15772 return error_mark_node;
15773
15774 if (variable_template_p (templ))
15775 {
15776 templ = lookup_template_variable (templ, targs);
15777 if (!any_dependent_template_arguments_p (targs))
15778 {
15779 templ = finish_template_variable (templ, complain);
15780 mark_used (templ);
15781 }
15782 RETURN (convert_from_reference (templ));
15783 }
15784
15785 if (TREE_CODE (templ) == COMPONENT_REF)
15786 {
15787 object = TREE_OPERAND (templ, 0);
15788 templ = TREE_OPERAND (templ, 1);
15789 }
15790 else
15791 object = NULL_TREE;
15792 templ = lookup_template_function (templ, targs);
15793
15794 if (object)
15795 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
15796 object, templ, NULL_TREE));
15797 else
15798 RETURN (baselink_for_fns (templ));
15799 }
15800
15801 case INDIRECT_REF:
15802 {
15803 tree r = RECUR (TREE_OPERAND (t, 0));
15804
15805 if (REFERENCE_REF_P (t))
15806 {
15807 /* A type conversion to reference type will be enclosed in
15808 such an indirect ref, but the substitution of the cast
15809 will have also added such an indirect ref. */
15810 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
15811 r = convert_from_reference (r);
15812 }
15813 else
15814 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
15815 complain|decltype_flag);
15816 RETURN (r);
15817 }
15818
15819 case NOP_EXPR:
15820 {
15821 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15822 tree op0 = RECUR (TREE_OPERAND (t, 0));
15823 RETURN (build_nop (type, op0));
15824 }
15825
15826 case IMPLICIT_CONV_EXPR:
15827 {
15828 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15829 tree expr = RECUR (TREE_OPERAND (t, 0));
15830 int flags = LOOKUP_IMPLICIT;
15831 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
15832 flags = LOOKUP_NORMAL;
15833 RETURN (perform_implicit_conversion_flags (type, expr, complain,
15834 flags));
15835 }
15836
15837 case CONVERT_EXPR:
15838 {
15839 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15840 tree op0 = RECUR (TREE_OPERAND (t, 0));
15841 RETURN (build1 (CONVERT_EXPR, type, op0));
15842 }
15843
15844 case CAST_EXPR:
15845 case REINTERPRET_CAST_EXPR:
15846 case CONST_CAST_EXPR:
15847 case DYNAMIC_CAST_EXPR:
15848 case STATIC_CAST_EXPR:
15849 {
15850 tree type;
15851 tree op, r = NULL_TREE;
15852
15853 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15854 if (integral_constant_expression_p
15855 && !cast_valid_in_integral_constant_expression_p (type))
15856 {
15857 if (complain & tf_error)
15858 error ("a cast to a type other than an integral or "
15859 "enumeration type cannot appear in a constant-expression");
15860 RETURN (error_mark_node);
15861 }
15862
15863 op = RECUR (TREE_OPERAND (t, 0));
15864
15865 warning_sentinel s(warn_useless_cast);
15866 switch (TREE_CODE (t))
15867 {
15868 case CAST_EXPR:
15869 r = build_functional_cast (type, op, complain);
15870 break;
15871 case REINTERPRET_CAST_EXPR:
15872 r = build_reinterpret_cast (type, op, complain);
15873 break;
15874 case CONST_CAST_EXPR:
15875 r = build_const_cast (type, op, complain);
15876 break;
15877 case DYNAMIC_CAST_EXPR:
15878 r = build_dynamic_cast (type, op, complain);
15879 break;
15880 case STATIC_CAST_EXPR:
15881 r = build_static_cast (type, op, complain);
15882 break;
15883 default:
15884 gcc_unreachable ();
15885 }
15886
15887 RETURN (r);
15888 }
15889
15890 case POSTDECREMENT_EXPR:
15891 case POSTINCREMENT_EXPR:
15892 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15893 args, complain, in_decl);
15894 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
15895 complain|decltype_flag));
15896
15897 case PREDECREMENT_EXPR:
15898 case PREINCREMENT_EXPR:
15899 case NEGATE_EXPR:
15900 case BIT_NOT_EXPR:
15901 case ABS_EXPR:
15902 case TRUTH_NOT_EXPR:
15903 case UNARY_PLUS_EXPR: /* Unary + */
15904 case REALPART_EXPR:
15905 case IMAGPART_EXPR:
15906 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
15907 RECUR (TREE_OPERAND (t, 0)),
15908 complain|decltype_flag));
15909
15910 case FIX_TRUNC_EXPR:
15911 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
15912 0, complain));
15913
15914 case ADDR_EXPR:
15915 op1 = TREE_OPERAND (t, 0);
15916 if (TREE_CODE (op1) == LABEL_DECL)
15917 RETURN (finish_label_address_expr (DECL_NAME (op1),
15918 EXPR_LOCATION (op1)));
15919 if (TREE_CODE (op1) == SCOPE_REF)
15920 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
15921 /*done=*/true, /*address_p=*/true);
15922 else
15923 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
15924 in_decl);
15925 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
15926 complain|decltype_flag));
15927
15928 case PLUS_EXPR:
15929 case MINUS_EXPR:
15930 case MULT_EXPR:
15931 case TRUNC_DIV_EXPR:
15932 case CEIL_DIV_EXPR:
15933 case FLOOR_DIV_EXPR:
15934 case ROUND_DIV_EXPR:
15935 case EXACT_DIV_EXPR:
15936 case BIT_AND_EXPR:
15937 case BIT_IOR_EXPR:
15938 case BIT_XOR_EXPR:
15939 case TRUNC_MOD_EXPR:
15940 case FLOOR_MOD_EXPR:
15941 case TRUTH_ANDIF_EXPR:
15942 case TRUTH_ORIF_EXPR:
15943 case TRUTH_AND_EXPR:
15944 case TRUTH_OR_EXPR:
15945 case RSHIFT_EXPR:
15946 case LSHIFT_EXPR:
15947 case RROTATE_EXPR:
15948 case LROTATE_EXPR:
15949 case EQ_EXPR:
15950 case NE_EXPR:
15951 case MAX_EXPR:
15952 case MIN_EXPR:
15953 case LE_EXPR:
15954 case GE_EXPR:
15955 case LT_EXPR:
15956 case GT_EXPR:
15957 case MEMBER_REF:
15958 case DOTSTAR_EXPR:
15959 {
15960 warning_sentinel s1(warn_type_limits);
15961 warning_sentinel s2(warn_div_by_zero);
15962 warning_sentinel s3(warn_logical_op);
15963 warning_sentinel s4(warn_tautological_compare);
15964 tree op0 = RECUR (TREE_OPERAND (t, 0));
15965 tree op1 = RECUR (TREE_OPERAND (t, 1));
15966 tree r = build_x_binary_op
15967 (input_location, TREE_CODE (t),
15968 op0,
15969 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
15970 ? ERROR_MARK
15971 : TREE_CODE (TREE_OPERAND (t, 0))),
15972 op1,
15973 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
15974 ? ERROR_MARK
15975 : TREE_CODE (TREE_OPERAND (t, 1))),
15976 /*overload=*/NULL,
15977 complain|decltype_flag);
15978 if (EXPR_P (r) && TREE_NO_WARNING (t))
15979 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
15980
15981 RETURN (r);
15982 }
15983
15984 case POINTER_PLUS_EXPR:
15985 {
15986 tree op0 = RECUR (TREE_OPERAND (t, 0));
15987 tree op1 = RECUR (TREE_OPERAND (t, 1));
15988 return fold_build_pointer_plus (op0, op1);
15989 }
15990
15991 case SCOPE_REF:
15992 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
15993 /*address_p=*/false));
15994 case ARRAY_REF:
15995 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15996 args, complain, in_decl);
15997 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
15998 RECUR (TREE_OPERAND (t, 1)),
15999 complain|decltype_flag));
16000
16001 case ARRAY_NOTATION_REF:
16002 {
16003 tree start_index, length, stride;
16004 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16005 args, complain, in_decl);
16006 start_index = RECUR (ARRAY_NOTATION_START (t));
16007 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16008 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16009 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16010 length, stride, TREE_TYPE (op1)));
16011 }
16012 case SIZEOF_EXPR:
16013 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
16014 RETURN (tsubst_copy (t, args, complain, in_decl));
16015 /* Fall through */
16016
16017 case ALIGNOF_EXPR:
16018 {
16019 tree r;
16020
16021 op1 = TREE_OPERAND (t, 0);
16022 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16023 op1 = TREE_TYPE (op1);
16024 if (!args)
16025 {
16026 /* When there are no ARGS, we are trying to evaluate a
16027 non-dependent expression from the parser. Trying to do
16028 the substitutions may not work. */
16029 if (!TYPE_P (op1))
16030 op1 = TREE_TYPE (op1);
16031 }
16032 else
16033 {
16034 ++cp_unevaluated_operand;
16035 ++c_inhibit_evaluation_warnings;
16036 if (TYPE_P (op1))
16037 op1 = tsubst (op1, args, complain, in_decl);
16038 else
16039 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16040 /*function_p=*/false,
16041 /*integral_constant_expression_p=*/
16042 false);
16043 --cp_unevaluated_operand;
16044 --c_inhibit_evaluation_warnings;
16045 }
16046 if (TYPE_P (op1))
16047 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16048 complain & tf_error);
16049 else
16050 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16051 complain & tf_error);
16052 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16053 {
16054 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16055 {
16056 if (!processing_template_decl && TYPE_P (op1))
16057 {
16058 r = build_min (SIZEOF_EXPR, size_type_node,
16059 build1 (NOP_EXPR, op1, error_mark_node));
16060 SIZEOF_EXPR_TYPE_P (r) = 1;
16061 }
16062 else
16063 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16064 TREE_SIDE_EFFECTS (r) = 0;
16065 TREE_READONLY (r) = 1;
16066 }
16067 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16068 }
16069 RETURN (r);
16070 }
16071
16072 case AT_ENCODE_EXPR:
16073 {
16074 op1 = TREE_OPERAND (t, 0);
16075 ++cp_unevaluated_operand;
16076 ++c_inhibit_evaluation_warnings;
16077 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16078 /*function_p=*/false,
16079 /*integral_constant_expression_p=*/false);
16080 --cp_unevaluated_operand;
16081 --c_inhibit_evaluation_warnings;
16082 RETURN (objc_build_encode_expr (op1));
16083 }
16084
16085 case NOEXCEPT_EXPR:
16086 op1 = TREE_OPERAND (t, 0);
16087 ++cp_unevaluated_operand;
16088 ++c_inhibit_evaluation_warnings;
16089 ++cp_noexcept_operand;
16090 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16091 /*function_p=*/false,
16092 /*integral_constant_expression_p=*/false);
16093 --cp_unevaluated_operand;
16094 --c_inhibit_evaluation_warnings;
16095 --cp_noexcept_operand;
16096 RETURN (finish_noexcept_expr (op1, complain));
16097
16098 case MODOP_EXPR:
16099 {
16100 warning_sentinel s(warn_div_by_zero);
16101 tree lhs = RECUR (TREE_OPERAND (t, 0));
16102 tree rhs = RECUR (TREE_OPERAND (t, 2));
16103 tree r = build_x_modify_expr
16104 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16105 complain|decltype_flag);
16106 /* TREE_NO_WARNING must be set if either the expression was
16107 parenthesized or it uses an operator such as >>= rather
16108 than plain assignment. In the former case, it was already
16109 set and must be copied. In the latter case,
16110 build_x_modify_expr sets it and it must not be reset
16111 here. */
16112 if (TREE_NO_WARNING (t))
16113 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16114
16115 RETURN (r);
16116 }
16117
16118 case ARROW_EXPR:
16119 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16120 args, complain, in_decl);
16121 /* Remember that there was a reference to this entity. */
16122 if (DECL_P (op1)
16123 && !mark_used (op1, complain) && !(complain & tf_error))
16124 RETURN (error_mark_node);
16125 RETURN (build_x_arrow (input_location, op1, complain));
16126
16127 case NEW_EXPR:
16128 {
16129 tree placement = RECUR (TREE_OPERAND (t, 0));
16130 tree init = RECUR (TREE_OPERAND (t, 3));
16131 vec<tree, va_gc> *placement_vec;
16132 vec<tree, va_gc> *init_vec;
16133 tree ret;
16134
16135 if (placement == NULL_TREE)
16136 placement_vec = NULL;
16137 else
16138 {
16139 placement_vec = make_tree_vector ();
16140 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16141 vec_safe_push (placement_vec, TREE_VALUE (placement));
16142 }
16143
16144 /* If there was an initializer in the original tree, but it
16145 instantiated to an empty list, then we should pass a
16146 non-NULL empty vector to tell build_new that it was an
16147 empty initializer() rather than no initializer. This can
16148 only happen when the initializer is a pack expansion whose
16149 parameter packs are of length zero. */
16150 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16151 init_vec = NULL;
16152 else
16153 {
16154 init_vec = make_tree_vector ();
16155 if (init == void_node)
16156 gcc_assert (init_vec != NULL);
16157 else
16158 {
16159 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16160 vec_safe_push (init_vec, TREE_VALUE (init));
16161 }
16162 }
16163
16164 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16165 tree op2 = RECUR (TREE_OPERAND (t, 2));
16166 ret = build_new (&placement_vec, op1, op2, &init_vec,
16167 NEW_EXPR_USE_GLOBAL (t),
16168 complain);
16169
16170 if (placement_vec != NULL)
16171 release_tree_vector (placement_vec);
16172 if (init_vec != NULL)
16173 release_tree_vector (init_vec);
16174
16175 RETURN (ret);
16176 }
16177
16178 case DELETE_EXPR:
16179 {
16180 tree op0 = RECUR (TREE_OPERAND (t, 0));
16181 tree op1 = RECUR (TREE_OPERAND (t, 1));
16182 RETURN (delete_sanity (op0, op1,
16183 DELETE_EXPR_USE_VEC (t),
16184 DELETE_EXPR_USE_GLOBAL (t),
16185 complain));
16186 }
16187
16188 case COMPOUND_EXPR:
16189 {
16190 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16191 complain & ~tf_decltype, in_decl,
16192 /*function_p=*/false,
16193 integral_constant_expression_p);
16194 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16195 op0,
16196 RECUR (TREE_OPERAND (t, 1)),
16197 complain|decltype_flag));
16198 }
16199
16200 case CALL_EXPR:
16201 {
16202 tree function;
16203 vec<tree, va_gc> *call_args;
16204 unsigned int nargs, i;
16205 bool qualified_p;
16206 bool koenig_p;
16207 tree ret;
16208
16209 function = CALL_EXPR_FN (t);
16210 /* When we parsed the expression, we determined whether or
16211 not Koenig lookup should be performed. */
16212 koenig_p = KOENIG_LOOKUP_P (t);
16213 if (TREE_CODE (function) == SCOPE_REF)
16214 {
16215 qualified_p = true;
16216 function = tsubst_qualified_id (function, args, complain, in_decl,
16217 /*done=*/false,
16218 /*address_p=*/false);
16219 }
16220 else if (koenig_p && identifier_p (function))
16221 {
16222 /* Do nothing; calling tsubst_copy_and_build on an identifier
16223 would incorrectly perform unqualified lookup again.
16224
16225 Note that we can also have an IDENTIFIER_NODE if the earlier
16226 unqualified lookup found a member function; in that case
16227 koenig_p will be false and we do want to do the lookup
16228 again to find the instantiated member function.
16229
16230 FIXME but doing that causes c++/15272, so we need to stop
16231 using IDENTIFIER_NODE in that situation. */
16232 qualified_p = false;
16233 }
16234 else
16235 {
16236 if (TREE_CODE (function) == COMPONENT_REF)
16237 {
16238 tree op = TREE_OPERAND (function, 1);
16239
16240 qualified_p = (TREE_CODE (op) == SCOPE_REF
16241 || (BASELINK_P (op)
16242 && BASELINK_QUALIFIED_P (op)));
16243 }
16244 else
16245 qualified_p = false;
16246
16247 if (TREE_CODE (function) == ADDR_EXPR
16248 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16249 /* Avoid error about taking the address of a constructor. */
16250 function = TREE_OPERAND (function, 0);
16251
16252 function = tsubst_copy_and_build (function, args, complain,
16253 in_decl,
16254 !qualified_p,
16255 integral_constant_expression_p);
16256
16257 if (BASELINK_P (function))
16258 qualified_p = true;
16259 }
16260
16261 nargs = call_expr_nargs (t);
16262 call_args = make_tree_vector ();
16263 for (i = 0; i < nargs; ++i)
16264 {
16265 tree arg = CALL_EXPR_ARG (t, i);
16266
16267 if (!PACK_EXPANSION_P (arg))
16268 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16269 else
16270 {
16271 /* Expand the pack expansion and push each entry onto
16272 CALL_ARGS. */
16273 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16274 if (TREE_CODE (arg) == TREE_VEC)
16275 {
16276 unsigned int len, j;
16277
16278 len = TREE_VEC_LENGTH (arg);
16279 for (j = 0; j < len; ++j)
16280 {
16281 tree value = TREE_VEC_ELT (arg, j);
16282 if (value != NULL_TREE)
16283 value = convert_from_reference (value);
16284 vec_safe_push (call_args, value);
16285 }
16286 }
16287 else
16288 {
16289 /* A partial substitution. Add one entry. */
16290 vec_safe_push (call_args, arg);
16291 }
16292 }
16293 }
16294
16295 /* We do not perform argument-dependent lookup if normal
16296 lookup finds a non-function, in accordance with the
16297 expected resolution of DR 218. */
16298 if (koenig_p
16299 && ((is_overloaded_fn (function)
16300 /* If lookup found a member function, the Koenig lookup is
16301 not appropriate, even if an unqualified-name was used
16302 to denote the function. */
16303 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16304 || identifier_p (function))
16305 /* Only do this when substitution turns a dependent call
16306 into a non-dependent call. */
16307 && type_dependent_expression_p_push (t)
16308 && !any_type_dependent_arguments_p (call_args))
16309 function = perform_koenig_lookup (function, call_args, tf_none);
16310
16311 if (identifier_p (function)
16312 && !any_type_dependent_arguments_p (call_args))
16313 {
16314 if (koenig_p && (complain & tf_warning_or_error))
16315 {
16316 /* For backwards compatibility and good diagnostics, try
16317 the unqualified lookup again if we aren't in SFINAE
16318 context. */
16319 tree unq = (tsubst_copy_and_build
16320 (function, args, complain, in_decl, true,
16321 integral_constant_expression_p));
16322 if (unq == error_mark_node)
16323 RETURN (error_mark_node);
16324
16325 if (unq != function)
16326 {
16327 tree fn = unq;
16328 if (INDIRECT_REF_P (fn))
16329 fn = TREE_OPERAND (fn, 0);
16330 if (TREE_CODE (fn) == COMPONENT_REF)
16331 fn = TREE_OPERAND (fn, 1);
16332 if (is_overloaded_fn (fn))
16333 fn = get_first_fn (fn);
16334 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16335 "%qD was not declared in this scope, "
16336 "and no declarations were found by "
16337 "argument-dependent lookup at the point "
16338 "of instantiation", function))
16339 {
16340 if (!DECL_P (fn))
16341 /* Can't say anything more. */;
16342 else if (DECL_CLASS_SCOPE_P (fn))
16343 {
16344 location_t loc = EXPR_LOC_OR_LOC (t,
16345 input_location);
16346 inform (loc,
16347 "declarations in dependent base %qT are "
16348 "not found by unqualified lookup",
16349 DECL_CLASS_CONTEXT (fn));
16350 if (current_class_ptr)
16351 inform (loc,
16352 "use %<this->%D%> instead", function);
16353 else
16354 inform (loc,
16355 "use %<%T::%D%> instead",
16356 current_class_name, function);
16357 }
16358 else
16359 inform (DECL_SOURCE_LOCATION (fn),
16360 "%qD declared here, later in the "
16361 "translation unit", fn);
16362 }
16363 function = unq;
16364 }
16365 }
16366 if (identifier_p (function))
16367 {
16368 if (complain & tf_error)
16369 unqualified_name_lookup_error (function);
16370 release_tree_vector (call_args);
16371 RETURN (error_mark_node);
16372 }
16373 }
16374
16375 /* Remember that there was a reference to this entity. */
16376 if (DECL_P (function)
16377 && !mark_used (function, complain) && !(complain & tf_error))
16378 RETURN (error_mark_node);
16379
16380 /* Put back tf_decltype for the actual call. */
16381 complain |= decltype_flag;
16382
16383 if (TREE_CODE (function) == OFFSET_REF)
16384 ret = build_offset_ref_call_from_tree (function, &call_args,
16385 complain);
16386 else if (TREE_CODE (function) == COMPONENT_REF)
16387 {
16388 tree instance = TREE_OPERAND (function, 0);
16389 tree fn = TREE_OPERAND (function, 1);
16390
16391 if (processing_template_decl
16392 && (type_dependent_expression_p (instance)
16393 || (!BASELINK_P (fn)
16394 && TREE_CODE (fn) != FIELD_DECL)
16395 || type_dependent_expression_p (fn)
16396 || any_type_dependent_arguments_p (call_args)))
16397 ret = build_nt_call_vec (function, call_args);
16398 else if (!BASELINK_P (fn))
16399 ret = finish_call_expr (function, &call_args,
16400 /*disallow_virtual=*/false,
16401 /*koenig_p=*/false,
16402 complain);
16403 else
16404 ret = (build_new_method_call
16405 (instance, fn,
16406 &call_args, NULL_TREE,
16407 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16408 /*fn_p=*/NULL,
16409 complain));
16410 }
16411 else
16412 ret = finish_call_expr (function, &call_args,
16413 /*disallow_virtual=*/qualified_p,
16414 koenig_p,
16415 complain);
16416
16417 release_tree_vector (call_args);
16418
16419 RETURN (ret);
16420 }
16421
16422 case COND_EXPR:
16423 {
16424 tree cond = RECUR (TREE_OPERAND (t, 0));
16425 tree folded_cond = fold_non_dependent_expr (cond);
16426 tree exp1, exp2;
16427
16428 if (TREE_CODE (folded_cond) == INTEGER_CST)
16429 {
16430 if (integer_zerop (folded_cond))
16431 {
16432 ++c_inhibit_evaluation_warnings;
16433 exp1 = RECUR (TREE_OPERAND (t, 1));
16434 --c_inhibit_evaluation_warnings;
16435 exp2 = RECUR (TREE_OPERAND (t, 2));
16436 }
16437 else
16438 {
16439 exp1 = RECUR (TREE_OPERAND (t, 1));
16440 ++c_inhibit_evaluation_warnings;
16441 exp2 = RECUR (TREE_OPERAND (t, 2));
16442 --c_inhibit_evaluation_warnings;
16443 }
16444 cond = folded_cond;
16445 }
16446 else
16447 {
16448 exp1 = RECUR (TREE_OPERAND (t, 1));
16449 exp2 = RECUR (TREE_OPERAND (t, 2));
16450 }
16451
16452 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16453 cond, exp1, exp2, complain));
16454 }
16455
16456 case PSEUDO_DTOR_EXPR:
16457 {
16458 tree op0 = RECUR (TREE_OPERAND (t, 0));
16459 tree op1 = RECUR (TREE_OPERAND (t, 1));
16460 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16461 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16462 input_location));
16463 }
16464
16465 case TREE_LIST:
16466 {
16467 tree purpose, value, chain;
16468
16469 if (t == void_list_node)
16470 RETURN (t);
16471
16472 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16473 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16474 {
16475 /* We have pack expansions, so expand those and
16476 create a new list out of it. */
16477 tree purposevec = NULL_TREE;
16478 tree valuevec = NULL_TREE;
16479 tree chain;
16480 int i, len = -1;
16481
16482 /* Expand the argument expressions. */
16483 if (TREE_PURPOSE (t))
16484 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16485 complain, in_decl);
16486 if (TREE_VALUE (t))
16487 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16488 complain, in_decl);
16489
16490 /* Build the rest of the list. */
16491 chain = TREE_CHAIN (t);
16492 if (chain && chain != void_type_node)
16493 chain = RECUR (chain);
16494
16495 /* Determine the number of arguments. */
16496 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16497 {
16498 len = TREE_VEC_LENGTH (purposevec);
16499 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16500 }
16501 else if (TREE_CODE (valuevec) == TREE_VEC)
16502 len = TREE_VEC_LENGTH (valuevec);
16503 else
16504 {
16505 /* Since we only performed a partial substitution into
16506 the argument pack, we only RETURN (a single list
16507 node. */
16508 if (purposevec == TREE_PURPOSE (t)
16509 && valuevec == TREE_VALUE (t)
16510 && chain == TREE_CHAIN (t))
16511 RETURN (t);
16512
16513 RETURN (tree_cons (purposevec, valuevec, chain));
16514 }
16515
16516 /* Convert the argument vectors into a TREE_LIST */
16517 i = len;
16518 while (i > 0)
16519 {
16520 /* Grab the Ith values. */
16521 i--;
16522 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16523 : NULL_TREE;
16524 value
16525 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16526 : NULL_TREE;
16527
16528 /* Build the list (backwards). */
16529 chain = tree_cons (purpose, value, chain);
16530 }
16531
16532 RETURN (chain);
16533 }
16534
16535 purpose = TREE_PURPOSE (t);
16536 if (purpose)
16537 purpose = RECUR (purpose);
16538 value = TREE_VALUE (t);
16539 if (value)
16540 value = RECUR (value);
16541 chain = TREE_CHAIN (t);
16542 if (chain && chain != void_type_node)
16543 chain = RECUR (chain);
16544 if (purpose == TREE_PURPOSE (t)
16545 && value == TREE_VALUE (t)
16546 && chain == TREE_CHAIN (t))
16547 RETURN (t);
16548 RETURN (tree_cons (purpose, value, chain));
16549 }
16550
16551 case COMPONENT_REF:
16552 {
16553 tree object;
16554 tree object_type;
16555 tree member;
16556 tree r;
16557
16558 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16559 args, complain, in_decl);
16560 /* Remember that there was a reference to this entity. */
16561 if (DECL_P (object)
16562 && !mark_used (object, complain) && !(complain & tf_error))
16563 RETURN (error_mark_node);
16564 object_type = TREE_TYPE (object);
16565
16566 member = TREE_OPERAND (t, 1);
16567 if (BASELINK_P (member))
16568 member = tsubst_baselink (member,
16569 non_reference (TREE_TYPE (object)),
16570 args, complain, in_decl);
16571 else
16572 member = tsubst_copy (member, args, complain, in_decl);
16573 if (member == error_mark_node)
16574 RETURN (error_mark_node);
16575
16576 if (type_dependent_expression_p (object))
16577 /* We can't do much here. */;
16578 else if (!CLASS_TYPE_P (object_type))
16579 {
16580 if (scalarish_type_p (object_type))
16581 {
16582 tree s = NULL_TREE;
16583 tree dtor = member;
16584
16585 if (TREE_CODE (dtor) == SCOPE_REF)
16586 {
16587 s = TREE_OPERAND (dtor, 0);
16588 dtor = TREE_OPERAND (dtor, 1);
16589 }
16590 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16591 {
16592 dtor = TREE_OPERAND (dtor, 0);
16593 if (TYPE_P (dtor))
16594 RETURN (finish_pseudo_destructor_expr
16595 (object, s, dtor, input_location));
16596 }
16597 }
16598 }
16599 else if (TREE_CODE (member) == SCOPE_REF
16600 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16601 {
16602 /* Lookup the template functions now that we know what the
16603 scope is. */
16604 tree scope = TREE_OPERAND (member, 0);
16605 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16606 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16607 member = lookup_qualified_name (scope, tmpl,
16608 /*is_type_p=*/false,
16609 /*complain=*/false);
16610 if (BASELINK_P (member))
16611 {
16612 BASELINK_FUNCTIONS (member)
16613 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16614 args);
16615 member = (adjust_result_of_qualified_name_lookup
16616 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16617 object_type));
16618 }
16619 else
16620 {
16621 qualified_name_lookup_error (scope, tmpl, member,
16622 input_location);
16623 RETURN (error_mark_node);
16624 }
16625 }
16626 else if (TREE_CODE (member) == SCOPE_REF
16627 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16628 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16629 {
16630 if (complain & tf_error)
16631 {
16632 if (TYPE_P (TREE_OPERAND (member, 0)))
16633 error ("%qT is not a class or namespace",
16634 TREE_OPERAND (member, 0));
16635 else
16636 error ("%qD is not a class or namespace",
16637 TREE_OPERAND (member, 0));
16638 }
16639 RETURN (error_mark_node);
16640 }
16641 else if (TREE_CODE (member) == FIELD_DECL)
16642 {
16643 r = finish_non_static_data_member (member, object, NULL_TREE);
16644 if (TREE_CODE (r) == COMPONENT_REF)
16645 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16646 RETURN (r);
16647 }
16648
16649 r = finish_class_member_access_expr (object, member,
16650 /*template_p=*/false,
16651 complain);
16652 if (TREE_CODE (r) == COMPONENT_REF)
16653 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16654 RETURN (r);
16655 }
16656
16657 case THROW_EXPR:
16658 RETURN (build_throw
16659 (RECUR (TREE_OPERAND (t, 0))));
16660
16661 case CONSTRUCTOR:
16662 {
16663 vec<constructor_elt, va_gc> *n;
16664 constructor_elt *ce;
16665 unsigned HOST_WIDE_INT idx;
16666 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16667 bool process_index_p;
16668 int newlen;
16669 bool need_copy_p = false;
16670 tree r;
16671
16672 if (type == error_mark_node)
16673 RETURN (error_mark_node);
16674
16675 /* digest_init will do the wrong thing if we let it. */
16676 if (type && TYPE_PTRMEMFUNC_P (type))
16677 RETURN (t);
16678
16679 /* We do not want to process the index of aggregate
16680 initializers as they are identifier nodes which will be
16681 looked up by digest_init. */
16682 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16683
16684 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16685 newlen = vec_safe_length (n);
16686 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16687 {
16688 if (ce->index && process_index_p
16689 /* An identifier index is looked up in the type
16690 being initialized, not the current scope. */
16691 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16692 ce->index = RECUR (ce->index);
16693
16694 if (PACK_EXPANSION_P (ce->value))
16695 {
16696 /* Substitute into the pack expansion. */
16697 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16698 in_decl);
16699
16700 if (ce->value == error_mark_node
16701 || PACK_EXPANSION_P (ce->value))
16702 ;
16703 else if (TREE_VEC_LENGTH (ce->value) == 1)
16704 /* Just move the argument into place. */
16705 ce->value = TREE_VEC_ELT (ce->value, 0);
16706 else
16707 {
16708 /* Update the length of the final CONSTRUCTOR
16709 arguments vector, and note that we will need to
16710 copy.*/
16711 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16712 need_copy_p = true;
16713 }
16714 }
16715 else
16716 ce->value = RECUR (ce->value);
16717 }
16718
16719 if (need_copy_p)
16720 {
16721 vec<constructor_elt, va_gc> *old_n = n;
16722
16723 vec_alloc (n, newlen);
16724 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16725 {
16726 if (TREE_CODE (ce->value) == TREE_VEC)
16727 {
16728 int i, len = TREE_VEC_LENGTH (ce->value);
16729 for (i = 0; i < len; ++i)
16730 CONSTRUCTOR_APPEND_ELT (n, 0,
16731 TREE_VEC_ELT (ce->value, i));
16732 }
16733 else
16734 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16735 }
16736 }
16737
16738 r = build_constructor (init_list_type_node, n);
16739 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16740
16741 if (TREE_HAS_CONSTRUCTOR (t))
16742 RETURN (finish_compound_literal (type, r, complain));
16743
16744 TREE_TYPE (r) = type;
16745 RETURN (r);
16746 }
16747
16748 case TYPEID_EXPR:
16749 {
16750 tree operand_0 = TREE_OPERAND (t, 0);
16751 if (TYPE_P (operand_0))
16752 {
16753 operand_0 = tsubst (operand_0, args, complain, in_decl);
16754 RETURN (get_typeid (operand_0, complain));
16755 }
16756 else
16757 {
16758 operand_0 = RECUR (operand_0);
16759 RETURN (build_typeid (operand_0, complain));
16760 }
16761 }
16762
16763 case VAR_DECL:
16764 if (!args)
16765 RETURN (t);
16766 else if (DECL_PACK_P (t))
16767 {
16768 /* We don't build decls for an instantiation of a
16769 variadic capture proxy, we instantiate the elements
16770 when needed. */
16771 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16772 return RECUR (DECL_VALUE_EXPR (t));
16773 }
16774 /* Fall through */
16775
16776 case PARM_DECL:
16777 {
16778 tree r = tsubst_copy (t, args, complain, in_decl);
16779 /* ??? We're doing a subset of finish_id_expression here. */
16780 if (VAR_P (r)
16781 && !processing_template_decl
16782 && !cp_unevaluated_operand
16783 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16784 && CP_DECL_THREAD_LOCAL_P (r))
16785 {
16786 if (tree wrap = get_tls_wrapper_fn (r))
16787 /* Replace an evaluated use of the thread_local variable with
16788 a call to its wrapper. */
16789 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
16790 }
16791 else if (outer_automatic_var_p (r))
16792 {
16793 r = process_outer_var_ref (r, complain);
16794 if (is_capture_proxy (r))
16795 register_local_specialization (r, t);
16796 }
16797
16798 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
16799 /* If the original type was a reference, we'll be wrapped in
16800 the appropriate INDIRECT_REF. */
16801 r = convert_from_reference (r);
16802 RETURN (r);
16803 }
16804
16805 case VA_ARG_EXPR:
16806 {
16807 tree op0 = RECUR (TREE_OPERAND (t, 0));
16808 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16809 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
16810 }
16811
16812 case OFFSETOF_EXPR:
16813 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
16814 EXPR_LOCATION (t)));
16815
16816 case TRAIT_EXPR:
16817 {
16818 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
16819 complain, in_decl);
16820
16821 tree type2 = TRAIT_EXPR_TYPE2 (t);
16822 if (type2 && TREE_CODE (type2) == TREE_LIST)
16823 type2 = RECUR (type2);
16824 else if (type2)
16825 type2 = tsubst (type2, args, complain, in_decl);
16826
16827 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
16828 }
16829
16830 case STMT_EXPR:
16831 {
16832 tree old_stmt_expr = cur_stmt_expr;
16833 tree stmt_expr = begin_stmt_expr ();
16834
16835 cur_stmt_expr = stmt_expr;
16836 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
16837 integral_constant_expression_p);
16838 stmt_expr = finish_stmt_expr (stmt_expr, false);
16839 cur_stmt_expr = old_stmt_expr;
16840
16841 /* If the resulting list of expression statement is empty,
16842 fold it further into void_node. */
16843 if (empty_expr_stmt_p (stmt_expr))
16844 stmt_expr = void_node;
16845
16846 RETURN (stmt_expr);
16847 }
16848
16849 case LAMBDA_EXPR:
16850 {
16851 tree r = build_lambda_expr ();
16852
16853 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
16854 LAMBDA_EXPR_CLOSURE (r) = type;
16855 CLASSTYPE_LAMBDA_EXPR (type) = r;
16856
16857 LAMBDA_EXPR_LOCATION (r)
16858 = LAMBDA_EXPR_LOCATION (t);
16859 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
16860 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
16861 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
16862 LAMBDA_EXPR_DISCRIMINATOR (r)
16863 = (LAMBDA_EXPR_DISCRIMINATOR (t));
16864 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
16865 if (!scope)
16866 /* No substitution needed. */;
16867 else if (VAR_OR_FUNCTION_DECL_P (scope))
16868 /* For a function or variable scope, we want to use tsubst so that we
16869 don't complain about referring to an auto before deduction. */
16870 scope = tsubst (scope, args, complain, in_decl);
16871 else if (TREE_CODE (scope) == PARM_DECL)
16872 {
16873 /* Look up the parameter we want directly, as tsubst_copy
16874 doesn't do what we need. */
16875 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
16876 tree parm = FUNCTION_FIRST_USER_PARM (fn);
16877 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
16878 parm = DECL_CHAIN (parm);
16879 scope = parm;
16880 /* FIXME Work around the parm not having DECL_CONTEXT set. */
16881 if (DECL_CONTEXT (scope) == NULL_TREE)
16882 DECL_CONTEXT (scope) = fn;
16883 }
16884 else if (TREE_CODE (scope) == FIELD_DECL)
16885 /* For a field, use tsubst_copy so that we look up the existing field
16886 rather than build a new one. */
16887 scope = RECUR (scope);
16888 else
16889 gcc_unreachable ();
16890 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
16891 LAMBDA_EXPR_RETURN_TYPE (r)
16892 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
16893
16894 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
16895 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
16896
16897 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
16898 determine_visibility (TYPE_NAME (type));
16899 /* Now that we know visibility, instantiate the type so we have a
16900 declaration of the op() for later calls to lambda_function. */
16901 complete_type (type);
16902
16903 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
16904
16905 insert_pending_capture_proxies ();
16906
16907 RETURN (build_lambda_object (r));
16908 }
16909
16910 case TARGET_EXPR:
16911 /* We can get here for a constant initializer of non-dependent type.
16912 FIXME stop folding in cp_parser_initializer_clause. */
16913 {
16914 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
16915 complain);
16916 RETURN (r);
16917 }
16918
16919 case TRANSACTION_EXPR:
16920 RETURN (tsubst_expr(t, args, complain, in_decl,
16921 integral_constant_expression_p));
16922
16923 case PAREN_EXPR:
16924 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
16925
16926 case VEC_PERM_EXPR:
16927 {
16928 tree op0 = RECUR (TREE_OPERAND (t, 0));
16929 tree op1 = RECUR (TREE_OPERAND (t, 1));
16930 tree op2 = RECUR (TREE_OPERAND (t, 2));
16931 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
16932 complain));
16933 }
16934
16935 case REQUIRES_EXPR:
16936 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
16937
16938 default:
16939 /* Handle Objective-C++ constructs, if appropriate. */
16940 {
16941 tree subst
16942 = objcp_tsubst_copy_and_build (t, args, complain,
16943 in_decl, /*function_p=*/false);
16944 if (subst)
16945 RETURN (subst);
16946 }
16947 RETURN (tsubst_copy (t, args, complain, in_decl));
16948 }
16949
16950 #undef RECUR
16951 #undef RETURN
16952 out:
16953 input_location = loc;
16954 return retval;
16955 }
16956
16957 /* Verify that the instantiated ARGS are valid. For type arguments,
16958 make sure that the type's linkage is ok. For non-type arguments,
16959 make sure they are constants if they are integral or enumerations.
16960 Emit an error under control of COMPLAIN, and return TRUE on error. */
16961
16962 static bool
16963 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
16964 {
16965 if (dependent_template_arg_p (t))
16966 return false;
16967 if (ARGUMENT_PACK_P (t))
16968 {
16969 tree vec = ARGUMENT_PACK_ARGS (t);
16970 int len = TREE_VEC_LENGTH (vec);
16971 bool result = false;
16972 int i;
16973
16974 for (i = 0; i < len; ++i)
16975 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
16976 result = true;
16977 return result;
16978 }
16979 else if (TYPE_P (t))
16980 {
16981 /* [basic.link]: A name with no linkage (notably, the name
16982 of a class or enumeration declared in a local scope)
16983 shall not be used to declare an entity with linkage.
16984 This implies that names with no linkage cannot be used as
16985 template arguments
16986
16987 DR 757 relaxes this restriction for C++0x. */
16988 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
16989 : no_linkage_check (t, /*relaxed_p=*/false));
16990
16991 if (nt)
16992 {
16993 /* DR 488 makes use of a type with no linkage cause
16994 type deduction to fail. */
16995 if (complain & tf_error)
16996 {
16997 if (TYPE_ANONYMOUS_P (nt))
16998 error ("%qT is/uses anonymous type", t);
16999 else
17000 error ("template argument for %qD uses local type %qT",
17001 tmpl, t);
17002 }
17003 return true;
17004 }
17005 /* In order to avoid all sorts of complications, we do not
17006 allow variably-modified types as template arguments. */
17007 else if (variably_modified_type_p (t, NULL_TREE))
17008 {
17009 if (complain & tf_error)
17010 error ("%qT is a variably modified type", t);
17011 return true;
17012 }
17013 }
17014 /* Class template and alias template arguments should be OK. */
17015 else if (DECL_TYPE_TEMPLATE_P (t))
17016 ;
17017 /* A non-type argument of integral or enumerated type must be a
17018 constant. */
17019 else if (TREE_TYPE (t)
17020 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17021 && !REFERENCE_REF_P (t)
17022 && !TREE_CONSTANT (t))
17023 {
17024 if (complain & tf_error)
17025 error ("integral expression %qE is not constant", t);
17026 return true;
17027 }
17028 return false;
17029 }
17030
17031 static bool
17032 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17033 {
17034 int ix, len = DECL_NTPARMS (tmpl);
17035 bool result = false;
17036
17037 for (ix = 0; ix != len; ix++)
17038 {
17039 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17040 result = true;
17041 }
17042 if (result && (complain & tf_error))
17043 error (" trying to instantiate %qD", tmpl);
17044 return result;
17045 }
17046
17047 /* We're out of SFINAE context now, so generate diagnostics for the access
17048 errors we saw earlier when instantiating D from TMPL and ARGS. */
17049
17050 static void
17051 recheck_decl_substitution (tree d, tree tmpl, tree args)
17052 {
17053 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17054 tree type = TREE_TYPE (pattern);
17055 location_t loc = input_location;
17056
17057 push_access_scope (d);
17058 push_deferring_access_checks (dk_no_deferred);
17059 input_location = DECL_SOURCE_LOCATION (pattern);
17060 tsubst (type, args, tf_warning_or_error, d);
17061 input_location = loc;
17062 pop_deferring_access_checks ();
17063 pop_access_scope (d);
17064 }
17065
17066 /* Instantiate the indicated variable, function, or alias template TMPL with
17067 the template arguments in TARG_PTR. */
17068
17069 static tree
17070 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17071 {
17072 tree targ_ptr = orig_args;
17073 tree fndecl;
17074 tree gen_tmpl;
17075 tree spec;
17076 bool access_ok = true;
17077
17078 if (tmpl == error_mark_node)
17079 return error_mark_node;
17080
17081 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17082
17083 /* If this function is a clone, handle it specially. */
17084 if (DECL_CLONED_FUNCTION_P (tmpl))
17085 {
17086 tree spec;
17087 tree clone;
17088
17089 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17090 DECL_CLONED_FUNCTION. */
17091 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17092 targ_ptr, complain);
17093 if (spec == error_mark_node)
17094 return error_mark_node;
17095
17096 /* Look for the clone. */
17097 FOR_EACH_CLONE (clone, spec)
17098 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17099 return clone;
17100 /* We should always have found the clone by now. */
17101 gcc_unreachable ();
17102 return NULL_TREE;
17103 }
17104
17105 if (targ_ptr == error_mark_node)
17106 return error_mark_node;
17107
17108 /* Check to see if we already have this specialization. */
17109 gen_tmpl = most_general_template (tmpl);
17110 if (tmpl != gen_tmpl)
17111 /* The TMPL is a partial instantiation. To get a full set of
17112 arguments we must add the arguments used to perform the
17113 partial instantiation. */
17114 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
17115 targ_ptr);
17116
17117 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17118 but it doesn't seem to be on the hot path. */
17119 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17120
17121 gcc_assert (tmpl == gen_tmpl
17122 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17123 == spec)
17124 || fndecl == NULL_TREE);
17125
17126 if (spec != NULL_TREE)
17127 {
17128 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17129 {
17130 if (complain & tf_error)
17131 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17132 return error_mark_node;
17133 }
17134 return spec;
17135 }
17136
17137 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17138 complain))
17139 return error_mark_node;
17140
17141 /* We are building a FUNCTION_DECL, during which the access of its
17142 parameters and return types have to be checked. However this
17143 FUNCTION_DECL which is the desired context for access checking
17144 is not built yet. We solve this chicken-and-egg problem by
17145 deferring all checks until we have the FUNCTION_DECL. */
17146 push_deferring_access_checks (dk_deferred);
17147
17148 /* Instantiation of the function happens in the context of the function
17149 template, not the context of the overload resolution we're doing. */
17150 push_to_top_level ();
17151 /* If there are dependent arguments, e.g. because we're doing partial
17152 ordering, make sure processing_template_decl stays set. */
17153 if (uses_template_parms (targ_ptr))
17154 ++processing_template_decl;
17155 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17156 {
17157 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17158 complain, gen_tmpl, true);
17159 push_nested_class (ctx);
17160 }
17161
17162 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17163
17164 if (VAR_P (pattern))
17165 {
17166 /* We need to determine if we're using a partial or explicit
17167 specialization now, because the type of the variable could be
17168 different. */
17169 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17170 tree elt = most_specialized_partial_spec (tid, complain);
17171 if (elt == error_mark_node)
17172 pattern = error_mark_node;
17173 else if (elt)
17174 {
17175 tmpl = TREE_VALUE (elt);
17176 pattern = DECL_TEMPLATE_RESULT (tmpl);
17177 targ_ptr = TREE_PURPOSE (elt);
17178 }
17179 }
17180
17181 /* Substitute template parameters to obtain the specialization. */
17182 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17183 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17184 pop_nested_class ();
17185 pop_from_top_level ();
17186
17187 if (fndecl == error_mark_node)
17188 {
17189 pop_deferring_access_checks ();
17190 return error_mark_node;
17191 }
17192
17193 /* The DECL_TI_TEMPLATE should always be the immediate parent
17194 template, not the most general template. */
17195 DECL_TI_TEMPLATE (fndecl) = tmpl;
17196 DECL_TI_ARGS (fndecl) = targ_ptr;
17197
17198 /* Now we know the specialization, compute access previously
17199 deferred. */
17200 push_access_scope (fndecl);
17201 if (!perform_deferred_access_checks (complain))
17202 access_ok = false;
17203 pop_access_scope (fndecl);
17204 pop_deferring_access_checks ();
17205
17206 /* If we've just instantiated the main entry point for a function,
17207 instantiate all the alternate entry points as well. We do this
17208 by cloning the instantiation of the main entry point, not by
17209 instantiating the template clones. */
17210 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17211 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17212
17213 if (!access_ok)
17214 {
17215 if (!(complain & tf_error))
17216 {
17217 /* Remember to reinstantiate when we're out of SFINAE so the user
17218 can see the errors. */
17219 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17220 }
17221 return error_mark_node;
17222 }
17223 return fndecl;
17224 }
17225
17226 /* Wrapper for instantiate_template_1. */
17227
17228 tree
17229 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17230 {
17231 tree ret;
17232 timevar_push (TV_TEMPLATE_INST);
17233 ret = instantiate_template_1 (tmpl, orig_args, complain);
17234 timevar_pop (TV_TEMPLATE_INST);
17235 return ret;
17236 }
17237
17238 /* Instantiate the alias template TMPL with ARGS. Also push a template
17239 instantiation level, which instantiate_template doesn't do because
17240 functions and variables have sufficient context established by the
17241 callers. */
17242
17243 static tree
17244 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17245 {
17246 struct pending_template *old_last_pend = last_pending_template;
17247 struct tinst_level *old_error_tinst = last_error_tinst_level;
17248 if (tmpl == error_mark_node || args == error_mark_node)
17249 return error_mark_node;
17250 tree tinst = build_tree_list (tmpl, args);
17251 if (!push_tinst_level (tinst))
17252 {
17253 ggc_free (tinst);
17254 return error_mark_node;
17255 }
17256
17257 args =
17258 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17259 args, tmpl, complain,
17260 /*require_all_args=*/true,
17261 /*use_default_args=*/true);
17262
17263 tree r = instantiate_template (tmpl, args, complain);
17264 pop_tinst_level ();
17265 /* We can't free this if a pending_template entry or last_error_tinst_level
17266 is pointing at it. */
17267 if (last_pending_template == old_last_pend
17268 && last_error_tinst_level == old_error_tinst)
17269 ggc_free (tinst);
17270
17271 return r;
17272 }
17273
17274 /* PARM is a template parameter pack for FN. Returns true iff
17275 PARM is used in a deducible way in the argument list of FN. */
17276
17277 static bool
17278 pack_deducible_p (tree parm, tree fn)
17279 {
17280 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17281 for (; t; t = TREE_CHAIN (t))
17282 {
17283 tree type = TREE_VALUE (t);
17284 tree packs;
17285 if (!PACK_EXPANSION_P (type))
17286 continue;
17287 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17288 packs; packs = TREE_CHAIN (packs))
17289 if (template_args_equal (TREE_VALUE (packs), parm))
17290 {
17291 /* The template parameter pack is used in a function parameter
17292 pack. If this is the end of the parameter list, the
17293 template parameter pack is deducible. */
17294 if (TREE_CHAIN (t) == void_list_node)
17295 return true;
17296 else
17297 /* Otherwise, not. Well, it could be deduced from
17298 a non-pack parameter, but doing so would end up with
17299 a deduction mismatch, so don't bother. */
17300 return false;
17301 }
17302 }
17303 /* The template parameter pack isn't used in any function parameter
17304 packs, but it might be used deeper, e.g. tuple<Args...>. */
17305 return true;
17306 }
17307
17308 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17309 NARGS elements of the arguments that are being used when calling
17310 it. TARGS is a vector into which the deduced template arguments
17311 are placed.
17312
17313 Returns either a FUNCTION_DECL for the matching specialization of FN or
17314 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17315 true, diagnostics will be printed to explain why it failed.
17316
17317 If FN is a conversion operator, or we are trying to produce a specific
17318 specialization, RETURN_TYPE is the return type desired.
17319
17320 The EXPLICIT_TARGS are explicit template arguments provided via a
17321 template-id.
17322
17323 The parameter STRICT is one of:
17324
17325 DEDUCE_CALL:
17326 We are deducing arguments for a function call, as in
17327 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17328 deducing arguments for a call to the result of a conversion
17329 function template, as in [over.call.object].
17330
17331 DEDUCE_CONV:
17332 We are deducing arguments for a conversion function, as in
17333 [temp.deduct.conv].
17334
17335 DEDUCE_EXACT:
17336 We are deducing arguments when doing an explicit instantiation
17337 as in [temp.explicit], when determining an explicit specialization
17338 as in [temp.expl.spec], or when taking the address of a function
17339 template, as in [temp.deduct.funcaddr]. */
17340
17341 tree
17342 fn_type_unification (tree fn,
17343 tree explicit_targs,
17344 tree targs,
17345 const tree *args,
17346 unsigned int nargs,
17347 tree return_type,
17348 unification_kind_t strict,
17349 int flags,
17350 bool explain_p,
17351 bool decltype_p)
17352 {
17353 tree parms;
17354 tree fntype;
17355 tree decl = NULL_TREE;
17356 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17357 bool ok;
17358 static int deduction_depth;
17359 struct pending_template *old_last_pend = last_pending_template;
17360 struct tinst_level *old_error_tinst = last_error_tinst_level;
17361 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17362 tree tinst;
17363 tree r = error_mark_node;
17364
17365 if (decltype_p)
17366 complain |= tf_decltype;
17367
17368 /* In C++0x, it's possible to have a function template whose type depends
17369 on itself recursively. This is most obvious with decltype, but can also
17370 occur with enumeration scope (c++/48969). So we need to catch infinite
17371 recursion and reject the substitution at deduction time; this function
17372 will return error_mark_node for any repeated substitution.
17373
17374 This also catches excessive recursion such as when f<N> depends on
17375 f<N-1> across all integers, and returns error_mark_node for all the
17376 substitutions back up to the initial one.
17377
17378 This is, of course, not reentrant. */
17379 if (excessive_deduction_depth)
17380 return error_mark_node;
17381 tinst = build_tree_list (fn, NULL_TREE);
17382 ++deduction_depth;
17383
17384 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17385
17386 fntype = TREE_TYPE (fn);
17387 if (explicit_targs)
17388 {
17389 /* [temp.deduct]
17390
17391 The specified template arguments must match the template
17392 parameters in kind (i.e., type, nontype, template), and there
17393 must not be more arguments than there are parameters;
17394 otherwise type deduction fails.
17395
17396 Nontype arguments must match the types of the corresponding
17397 nontype template parameters, or must be convertible to the
17398 types of the corresponding nontype parameters as specified in
17399 _temp.arg.nontype_, otherwise type deduction fails.
17400
17401 All references in the function type of the function template
17402 to the corresponding template parameters are replaced by the
17403 specified template argument values. If a substitution in a
17404 template parameter or in the function type of the function
17405 template results in an invalid type, type deduction fails. */
17406 int i, len = TREE_VEC_LENGTH (tparms);
17407 location_t loc = input_location;
17408 bool incomplete = false;
17409
17410 /* Adjust any explicit template arguments before entering the
17411 substitution context. */
17412 explicit_targs
17413 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17414 complain,
17415 /*require_all_args=*/false,
17416 /*use_default_args=*/false));
17417 if (explicit_targs == error_mark_node)
17418 goto fail;
17419
17420 /* Substitute the explicit args into the function type. This is
17421 necessary so that, for instance, explicitly declared function
17422 arguments can match null pointed constants. If we were given
17423 an incomplete set of explicit args, we must not do semantic
17424 processing during substitution as we could create partial
17425 instantiations. */
17426 for (i = 0; i < len; i++)
17427 {
17428 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17429 bool parameter_pack = false;
17430 tree targ = TREE_VEC_ELT (explicit_targs, i);
17431
17432 /* Dig out the actual parm. */
17433 if (TREE_CODE (parm) == TYPE_DECL
17434 || TREE_CODE (parm) == TEMPLATE_DECL)
17435 {
17436 parm = TREE_TYPE (parm);
17437 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17438 }
17439 else if (TREE_CODE (parm) == PARM_DECL)
17440 {
17441 parm = DECL_INITIAL (parm);
17442 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17443 }
17444
17445 if (!parameter_pack && targ == NULL_TREE)
17446 /* No explicit argument for this template parameter. */
17447 incomplete = true;
17448
17449 if (parameter_pack && pack_deducible_p (parm, fn))
17450 {
17451 /* Mark the argument pack as "incomplete". We could
17452 still deduce more arguments during unification.
17453 We remove this mark in type_unification_real. */
17454 if (targ)
17455 {
17456 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17457 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17458 = ARGUMENT_PACK_ARGS (targ);
17459 }
17460
17461 /* We have some incomplete argument packs. */
17462 incomplete = true;
17463 }
17464 }
17465
17466 TREE_VALUE (tinst) = explicit_targs;
17467 if (!push_tinst_level (tinst))
17468 {
17469 excessive_deduction_depth = true;
17470 goto fail;
17471 }
17472 processing_template_decl += incomplete;
17473 input_location = DECL_SOURCE_LOCATION (fn);
17474 /* Ignore any access checks; we'll see them again in
17475 instantiate_template and they might have the wrong
17476 access path at this point. */
17477 push_deferring_access_checks (dk_deferred);
17478 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17479 complain | tf_partial, NULL_TREE);
17480 pop_deferring_access_checks ();
17481 input_location = loc;
17482 processing_template_decl -= incomplete;
17483 pop_tinst_level ();
17484
17485 if (fntype == error_mark_node)
17486 goto fail;
17487
17488 /* Place the explicitly specified arguments in TARGS. */
17489 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17490 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17491 }
17492
17493 /* Never do unification on the 'this' parameter. */
17494 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17495
17496 if (return_type && strict == DEDUCE_CALL)
17497 {
17498 /* We're deducing for a call to the result of a template conversion
17499 function. The parms we really want are in return_type. */
17500 if (POINTER_TYPE_P (return_type))
17501 return_type = TREE_TYPE (return_type);
17502 parms = TYPE_ARG_TYPES (return_type);
17503 }
17504 else if (return_type)
17505 {
17506 tree *new_args;
17507
17508 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17509 new_args = XALLOCAVEC (tree, nargs + 1);
17510 new_args[0] = return_type;
17511 memcpy (new_args + 1, args, nargs * sizeof (tree));
17512 args = new_args;
17513 ++nargs;
17514 }
17515
17516 /* We allow incomplete unification without an error message here
17517 because the standard doesn't seem to explicitly prohibit it. Our
17518 callers must be ready to deal with unification failures in any
17519 event. */
17520
17521 TREE_VALUE (tinst) = targs;
17522 /* If we aren't explaining yet, push tinst context so we can see where
17523 any errors (e.g. from class instantiations triggered by instantiation
17524 of default template arguments) come from. If we are explaining, this
17525 context is redundant. */
17526 if (!explain_p && !push_tinst_level (tinst))
17527 {
17528 excessive_deduction_depth = true;
17529 goto fail;
17530 }
17531
17532 /* type_unification_real will pass back any access checks from default
17533 template argument substitution. */
17534 vec<deferred_access_check, va_gc> *checks;
17535 checks = NULL;
17536
17537 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17538 targs, parms, args, nargs, /*subr=*/0,
17539 strict, flags, &checks, explain_p);
17540 if (!explain_p)
17541 pop_tinst_level ();
17542 if (!ok)
17543 goto fail;
17544
17545 /* Now that we have bindings for all of the template arguments,
17546 ensure that the arguments deduced for the template template
17547 parameters have compatible template parameter lists. We cannot
17548 check this property before we have deduced all template
17549 arguments, because the template parameter types of a template
17550 template parameter might depend on prior template parameters
17551 deduced after the template template parameter. The following
17552 ill-formed example illustrates this issue:
17553
17554 template<typename T, template<T> class C> void f(C<5>, T);
17555
17556 template<int N> struct X {};
17557
17558 void g() {
17559 f(X<5>(), 5l); // error: template argument deduction fails
17560 }
17561
17562 The template parameter list of 'C' depends on the template type
17563 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17564 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17565 time that we deduce 'C'. */
17566 if (!template_template_parm_bindings_ok_p
17567 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17568 {
17569 unify_inconsistent_template_template_parameters (explain_p);
17570 goto fail;
17571 }
17572
17573 /* All is well so far. Now, check:
17574
17575 [temp.deduct]
17576
17577 When all template arguments have been deduced, all uses of
17578 template parameters in nondeduced contexts are replaced with
17579 the corresponding deduced argument values. If the
17580 substitution results in an invalid type, as described above,
17581 type deduction fails. */
17582 TREE_VALUE (tinst) = targs;
17583 if (!push_tinst_level (tinst))
17584 {
17585 excessive_deduction_depth = true;
17586 goto fail;
17587 }
17588
17589 /* Also collect access checks from the instantiation. */
17590 reopen_deferring_access_checks (checks);
17591
17592 decl = instantiate_template (fn, targs, complain);
17593
17594 checks = get_deferred_access_checks ();
17595 pop_deferring_access_checks ();
17596
17597 pop_tinst_level ();
17598
17599 if (decl == error_mark_node)
17600 goto fail;
17601
17602 /* Now perform any access checks encountered during substitution. */
17603 push_access_scope (decl);
17604 ok = perform_access_checks (checks, complain);
17605 pop_access_scope (decl);
17606 if (!ok)
17607 goto fail;
17608
17609 /* If we're looking for an exact match, check that what we got
17610 is indeed an exact match. It might not be if some template
17611 parameters are used in non-deduced contexts. But don't check
17612 for an exact match if we have dependent template arguments;
17613 in that case we're doing partial ordering, and we already know
17614 that we have two candidates that will provide the actual type. */
17615 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17616 {
17617 tree substed = TREE_TYPE (decl);
17618 unsigned int i;
17619
17620 tree sarg
17621 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17622 if (return_type)
17623 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17624 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17625 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17626 {
17627 unify_type_mismatch (explain_p, args[i],
17628 TREE_VALUE (sarg));
17629 goto fail;
17630 }
17631 }
17632
17633 r = decl;
17634
17635 fail:
17636 --deduction_depth;
17637 if (excessive_deduction_depth)
17638 {
17639 if (deduction_depth == 0)
17640 /* Reset once we're all the way out. */
17641 excessive_deduction_depth = false;
17642 }
17643
17644 /* We can't free this if a pending_template entry or last_error_tinst_level
17645 is pointing at it. */
17646 if (last_pending_template == old_last_pend
17647 && last_error_tinst_level == old_error_tinst)
17648 ggc_free (tinst);
17649
17650 return r;
17651 }
17652
17653 /* Adjust types before performing type deduction, as described in
17654 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17655 sections are symmetric. PARM is the type of a function parameter
17656 or the return type of the conversion function. ARG is the type of
17657 the argument passed to the call, or the type of the value
17658 initialized with the result of the conversion function.
17659 ARG_EXPR is the original argument expression, which may be null. */
17660
17661 static int
17662 maybe_adjust_types_for_deduction (unification_kind_t strict,
17663 tree* parm,
17664 tree* arg,
17665 tree arg_expr)
17666 {
17667 int result = 0;
17668
17669 switch (strict)
17670 {
17671 case DEDUCE_CALL:
17672 break;
17673
17674 case DEDUCE_CONV:
17675 /* Swap PARM and ARG throughout the remainder of this
17676 function; the handling is precisely symmetric since PARM
17677 will initialize ARG rather than vice versa. */
17678 std::swap (parm, arg);
17679 break;
17680
17681 case DEDUCE_EXACT:
17682 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17683 too, but here handle it by stripping the reference from PARM
17684 rather than by adding it to ARG. */
17685 if (TREE_CODE (*parm) == REFERENCE_TYPE
17686 && TYPE_REF_IS_RVALUE (*parm)
17687 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17688 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17689 && TREE_CODE (*arg) == REFERENCE_TYPE
17690 && !TYPE_REF_IS_RVALUE (*arg))
17691 *parm = TREE_TYPE (*parm);
17692 /* Nothing else to do in this case. */
17693 return 0;
17694
17695 default:
17696 gcc_unreachable ();
17697 }
17698
17699 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17700 {
17701 /* [temp.deduct.call]
17702
17703 If P is not a reference type:
17704
17705 --If A is an array type, the pointer type produced by the
17706 array-to-pointer standard conversion (_conv.array_) is
17707 used in place of A for type deduction; otherwise,
17708
17709 --If A is a function type, the pointer type produced by
17710 the function-to-pointer standard conversion
17711 (_conv.func_) is used in place of A for type deduction;
17712 otherwise,
17713
17714 --If A is a cv-qualified type, the top level
17715 cv-qualifiers of A's type are ignored for type
17716 deduction. */
17717 if (TREE_CODE (*arg) == ARRAY_TYPE)
17718 *arg = build_pointer_type (TREE_TYPE (*arg));
17719 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17720 *arg = build_pointer_type (*arg);
17721 else
17722 *arg = TYPE_MAIN_VARIANT (*arg);
17723 }
17724
17725 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17726 of the form T&&, where T is a template parameter, and the argument
17727 is an lvalue, T is deduced as A& */
17728 if (TREE_CODE (*parm) == REFERENCE_TYPE
17729 && TYPE_REF_IS_RVALUE (*parm)
17730 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17731 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17732 && (arg_expr ? real_lvalue_p (arg_expr)
17733 /* try_one_overload doesn't provide an arg_expr, but
17734 functions are always lvalues. */
17735 : TREE_CODE (*arg) == FUNCTION_TYPE))
17736 *arg = build_reference_type (*arg);
17737
17738 /* [temp.deduct.call]
17739
17740 If P is a cv-qualified type, the top level cv-qualifiers
17741 of P's type are ignored for type deduction. If P is a
17742 reference type, the type referred to by P is used for
17743 type deduction. */
17744 *parm = TYPE_MAIN_VARIANT (*parm);
17745 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17746 {
17747 *parm = TREE_TYPE (*parm);
17748 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17749 }
17750
17751 /* DR 322. For conversion deduction, remove a reference type on parm
17752 too (which has been swapped into ARG). */
17753 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17754 *arg = TREE_TYPE (*arg);
17755
17756 return result;
17757 }
17758
17759 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17760 template which does contain any deducible template parameters; check if
17761 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17762 unify_one_argument. */
17763
17764 static int
17765 check_non_deducible_conversion (tree parm, tree arg, int strict,
17766 int flags, bool explain_p)
17767 {
17768 tree type;
17769
17770 if (!TYPE_P (arg))
17771 type = TREE_TYPE (arg);
17772 else
17773 type = arg;
17774
17775 if (same_type_p (parm, type))
17776 return unify_success (explain_p);
17777
17778 if (strict == DEDUCE_CONV)
17779 {
17780 if (can_convert_arg (type, parm, NULL_TREE, flags,
17781 explain_p ? tf_warning_or_error : tf_none))
17782 return unify_success (explain_p);
17783 }
17784 else if (strict != DEDUCE_EXACT)
17785 {
17786 if (can_convert_arg (parm, type,
17787 TYPE_P (arg) ? NULL_TREE : arg,
17788 flags, explain_p ? tf_warning_or_error : tf_none))
17789 return unify_success (explain_p);
17790 }
17791
17792 if (strict == DEDUCE_EXACT)
17793 return unify_type_mismatch (explain_p, parm, arg);
17794 else
17795 return unify_arg_conversion (explain_p, parm, type, arg);
17796 }
17797
17798 static bool uses_deducible_template_parms (tree type);
17799
17800 /* Returns true iff the expression EXPR is one from which a template
17801 argument can be deduced. In other words, if it's an undecorated
17802 use of a template non-type parameter. */
17803
17804 static bool
17805 deducible_expression (tree expr)
17806 {
17807 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
17808 }
17809
17810 /* Returns true iff the array domain DOMAIN uses a template parameter in a
17811 deducible way; that is, if it has a max value of <PARM> - 1. */
17812
17813 static bool
17814 deducible_array_bound (tree domain)
17815 {
17816 if (domain == NULL_TREE)
17817 return false;
17818
17819 tree max = TYPE_MAX_VALUE (domain);
17820 if (TREE_CODE (max) != MINUS_EXPR)
17821 return false;
17822
17823 return deducible_expression (TREE_OPERAND (max, 0));
17824 }
17825
17826 /* Returns true iff the template arguments ARGS use a template parameter
17827 in a deducible way. */
17828
17829 static bool
17830 deducible_template_args (tree args)
17831 {
17832 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
17833 {
17834 bool deducible;
17835 tree elt = TREE_VEC_ELT (args, i);
17836 if (ARGUMENT_PACK_P (elt))
17837 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
17838 else
17839 {
17840 if (PACK_EXPANSION_P (elt))
17841 elt = PACK_EXPANSION_PATTERN (elt);
17842 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
17843 deducible = true;
17844 else if (TYPE_P (elt))
17845 deducible = uses_deducible_template_parms (elt);
17846 else
17847 deducible = deducible_expression (elt);
17848 }
17849 if (deducible)
17850 return true;
17851 }
17852 return false;
17853 }
17854
17855 /* Returns true iff TYPE contains any deducible references to template
17856 parameters, as per 14.8.2.5. */
17857
17858 static bool
17859 uses_deducible_template_parms (tree type)
17860 {
17861 if (PACK_EXPANSION_P (type))
17862 type = PACK_EXPANSION_PATTERN (type);
17863
17864 /* T
17865 cv-list T
17866 TT<T>
17867 TT<i>
17868 TT<> */
17869 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
17870 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
17871 return true;
17872
17873 /* T*
17874 T&
17875 T&& */
17876 if (POINTER_TYPE_P (type))
17877 return uses_deducible_template_parms (TREE_TYPE (type));
17878
17879 /* T[integer-constant ]
17880 type [i] */
17881 if (TREE_CODE (type) == ARRAY_TYPE)
17882 return (uses_deducible_template_parms (TREE_TYPE (type))
17883 || deducible_array_bound (TYPE_DOMAIN (type)));
17884
17885 /* T type ::*
17886 type T::*
17887 T T::*
17888 T (type ::*)()
17889 type (T::*)()
17890 type (type ::*)(T)
17891 type (T::*)(T)
17892 T (type ::*)(T)
17893 T (T::*)()
17894 T (T::*)(T) */
17895 if (TYPE_PTRMEM_P (type))
17896 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
17897 || (uses_deducible_template_parms
17898 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
17899
17900 /* template-name <T> (where template-name refers to a class template)
17901 template-name <i> (where template-name refers to a class template) */
17902 if (CLASS_TYPE_P (type)
17903 && CLASSTYPE_TEMPLATE_INFO (type)
17904 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
17905 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
17906 (CLASSTYPE_TI_ARGS (type)));
17907
17908 /* type (T)
17909 T()
17910 T(T) */
17911 if (TREE_CODE (type) == FUNCTION_TYPE
17912 || TREE_CODE (type) == METHOD_TYPE)
17913 {
17914 if (uses_deducible_template_parms (TREE_TYPE (type)))
17915 return true;
17916 tree parm = TYPE_ARG_TYPES (type);
17917 if (TREE_CODE (type) == METHOD_TYPE)
17918 parm = TREE_CHAIN (parm);
17919 for (; parm; parm = TREE_CHAIN (parm))
17920 if (uses_deducible_template_parms (TREE_VALUE (parm)))
17921 return true;
17922 }
17923
17924 return false;
17925 }
17926
17927 /* Subroutine of type_unification_real and unify_pack_expansion to
17928 handle unification of a single P/A pair. Parameters are as
17929 for those functions. */
17930
17931 static int
17932 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
17933 int subr, unification_kind_t strict,
17934 bool explain_p)
17935 {
17936 tree arg_expr = NULL_TREE;
17937 int arg_strict;
17938
17939 if (arg == error_mark_node || parm == error_mark_node)
17940 return unify_invalid (explain_p);
17941 if (arg == unknown_type_node)
17942 /* We can't deduce anything from this, but we might get all the
17943 template args from other function args. */
17944 return unify_success (explain_p);
17945
17946 /* Implicit conversions (Clause 4) will be performed on a function
17947 argument to convert it to the type of the corresponding function
17948 parameter if the parameter type contains no template-parameters that
17949 participate in template argument deduction. */
17950 if (strict != DEDUCE_EXACT
17951 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
17952 /* For function parameters with no deducible template parameters,
17953 just return. We'll check non-dependent conversions later. */
17954 return unify_success (explain_p);
17955
17956 switch (strict)
17957 {
17958 case DEDUCE_CALL:
17959 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
17960 | UNIFY_ALLOW_MORE_CV_QUAL
17961 | UNIFY_ALLOW_DERIVED);
17962 break;
17963
17964 case DEDUCE_CONV:
17965 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
17966 break;
17967
17968 case DEDUCE_EXACT:
17969 arg_strict = UNIFY_ALLOW_NONE;
17970 break;
17971
17972 default:
17973 gcc_unreachable ();
17974 }
17975
17976 /* We only do these transformations if this is the top-level
17977 parameter_type_list in a call or declaration matching; in other
17978 situations (nested function declarators, template argument lists) we
17979 won't be comparing a type to an expression, and we don't do any type
17980 adjustments. */
17981 if (!subr)
17982 {
17983 if (!TYPE_P (arg))
17984 {
17985 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
17986 if (type_unknown_p (arg))
17987 {
17988 /* [temp.deduct.type] A template-argument can be
17989 deduced from a pointer to function or pointer
17990 to member function argument if the set of
17991 overloaded functions does not contain function
17992 templates and at most one of a set of
17993 overloaded functions provides a unique
17994 match. */
17995
17996 if (resolve_overloaded_unification
17997 (tparms, targs, parm, arg, strict,
17998 arg_strict, explain_p))
17999 return unify_success (explain_p);
18000 return unify_overload_resolution_failure (explain_p, arg);
18001 }
18002
18003 arg_expr = arg;
18004 arg = unlowered_expr_type (arg);
18005 if (arg == error_mark_node)
18006 return unify_invalid (explain_p);
18007 }
18008
18009 arg_strict |=
18010 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18011 }
18012 else
18013 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18014 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18015 return unify_template_argument_mismatch (explain_p, parm, arg);
18016
18017 /* For deduction from an init-list we need the actual list. */
18018 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18019 arg = arg_expr;
18020 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18021 }
18022
18023 /* Most parms like fn_type_unification.
18024
18025 If SUBR is 1, we're being called recursively (to unify the
18026 arguments of a function or method parameter of a function
18027 template).
18028
18029 CHECKS is a pointer to a vector of access checks encountered while
18030 substituting default template arguments. */
18031
18032 static int
18033 type_unification_real (tree tparms,
18034 tree targs,
18035 tree xparms,
18036 const tree *xargs,
18037 unsigned int xnargs,
18038 int subr,
18039 unification_kind_t strict,
18040 int flags,
18041 vec<deferred_access_check, va_gc> **checks,
18042 bool explain_p)
18043 {
18044 tree parm, arg;
18045 int i;
18046 int ntparms = TREE_VEC_LENGTH (tparms);
18047 int saw_undeduced = 0;
18048 tree parms;
18049 const tree *args;
18050 unsigned int nargs;
18051 unsigned int ia;
18052
18053 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18054 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18055 gcc_assert (ntparms > 0);
18056
18057 /* Reset the number of non-defaulted template arguments contained
18058 in TARGS. */
18059 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18060
18061 again:
18062 parms = xparms;
18063 args = xargs;
18064 nargs = xnargs;
18065
18066 ia = 0;
18067 while (parms && parms != void_list_node
18068 && ia < nargs)
18069 {
18070 parm = TREE_VALUE (parms);
18071
18072 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18073 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18074 /* For a function parameter pack that occurs at the end of the
18075 parameter-declaration-list, the type A of each remaining
18076 argument of the call is compared with the type P of the
18077 declarator-id of the function parameter pack. */
18078 break;
18079
18080 parms = TREE_CHAIN (parms);
18081
18082 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18083 /* For a function parameter pack that does not occur at the
18084 end of the parameter-declaration-list, the type of the
18085 parameter pack is a non-deduced context. */
18086 continue;
18087
18088 arg = args[ia];
18089 ++ia;
18090
18091 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18092 explain_p))
18093 return 1;
18094 }
18095
18096 if (parms
18097 && parms != void_list_node
18098 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18099 {
18100 /* Unify the remaining arguments with the pack expansion type. */
18101 tree argvec;
18102 tree parmvec = make_tree_vec (1);
18103
18104 /* Allocate a TREE_VEC and copy in all of the arguments */
18105 argvec = make_tree_vec (nargs - ia);
18106 for (i = 0; ia < nargs; ++ia, ++i)
18107 TREE_VEC_ELT (argvec, i) = args[ia];
18108
18109 /* Copy the parameter into parmvec. */
18110 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18111 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18112 /*subr=*/subr, explain_p))
18113 return 1;
18114
18115 /* Advance to the end of the list of parameters. */
18116 parms = TREE_CHAIN (parms);
18117 }
18118
18119 /* Fail if we've reached the end of the parm list, and more args
18120 are present, and the parm list isn't variadic. */
18121 if (ia < nargs && parms == void_list_node)
18122 return unify_too_many_arguments (explain_p, nargs, ia);
18123 /* Fail if parms are left and they don't have default values and
18124 they aren't all deduced as empty packs (c++/57397). This is
18125 consistent with sufficient_parms_p. */
18126 if (parms && parms != void_list_node
18127 && TREE_PURPOSE (parms) == NULL_TREE)
18128 {
18129 unsigned int count = nargs;
18130 tree p = parms;
18131 bool type_pack_p;
18132 do
18133 {
18134 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18135 if (!type_pack_p)
18136 count++;
18137 p = TREE_CHAIN (p);
18138 }
18139 while (p && p != void_list_node);
18140 if (count != nargs)
18141 return unify_too_few_arguments (explain_p, ia, count,
18142 type_pack_p);
18143 }
18144
18145 if (!subr)
18146 {
18147 tsubst_flags_t complain = (explain_p
18148 ? tf_warning_or_error
18149 : tf_none);
18150
18151 for (i = 0; i < ntparms; i++)
18152 {
18153 tree targ = TREE_VEC_ELT (targs, i);
18154 tree tparm = TREE_VEC_ELT (tparms, i);
18155
18156 /* Clear the "incomplete" flags on all argument packs now so that
18157 substituting them into later default arguments works. */
18158 if (targ && ARGUMENT_PACK_P (targ))
18159 {
18160 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18161 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18162 }
18163
18164 if (targ || tparm == error_mark_node)
18165 continue;
18166 tparm = TREE_VALUE (tparm);
18167
18168 /* If this is an undeduced nontype parameter that depends on
18169 a type parameter, try another pass; its type may have been
18170 deduced from a later argument than the one from which
18171 this parameter can be deduced. */
18172 if (TREE_CODE (tparm) == PARM_DECL
18173 && uses_template_parms (TREE_TYPE (tparm))
18174 && saw_undeduced < 2)
18175 {
18176 saw_undeduced = 1;
18177 continue;
18178 }
18179
18180 /* Core issue #226 (C++0x) [temp.deduct]:
18181
18182 If a template argument has not been deduced, its
18183 default template argument, if any, is used.
18184
18185 When we are in C++98 mode, TREE_PURPOSE will either
18186 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18187 to explicitly check cxx_dialect here. */
18188 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18189 /* OK, there is a default argument. Wait until after the
18190 conversion check to do substitution. */
18191 continue;
18192
18193 /* If the type parameter is a parameter pack, then it will
18194 be deduced to an empty parameter pack. */
18195 if (template_parameter_pack_p (tparm))
18196 {
18197 tree arg;
18198
18199 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18200 {
18201 arg = make_node (NONTYPE_ARGUMENT_PACK);
18202 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18203 TREE_CONSTANT (arg) = 1;
18204 }
18205 else
18206 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18207
18208 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18209
18210 TREE_VEC_ELT (targs, i) = arg;
18211 continue;
18212 }
18213
18214 return unify_parameter_deduction_failure (explain_p, tparm);
18215 }
18216
18217 /* DR 1391: All parameters have args, now check non-dependent parms for
18218 convertibility. */
18219 if (saw_undeduced < 2)
18220 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18221 parms && parms != void_list_node && ia < nargs; )
18222 {
18223 parm = TREE_VALUE (parms);
18224
18225 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18226 && (!TREE_CHAIN (parms)
18227 || TREE_CHAIN (parms) == void_list_node))
18228 /* For a function parameter pack that occurs at the end of the
18229 parameter-declaration-list, the type A of each remaining
18230 argument of the call is compared with the type P of the
18231 declarator-id of the function parameter pack. */
18232 break;
18233
18234 parms = TREE_CHAIN (parms);
18235
18236 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18237 /* For a function parameter pack that does not occur at the
18238 end of the parameter-declaration-list, the type of the
18239 parameter pack is a non-deduced context. */
18240 continue;
18241
18242 arg = args[ia];
18243 ++ia;
18244
18245 if (uses_template_parms (parm))
18246 continue;
18247 if (check_non_deducible_conversion (parm, arg, strict, flags,
18248 explain_p))
18249 return 1;
18250 }
18251
18252 /* Now substitute into the default template arguments. */
18253 for (i = 0; i < ntparms; i++)
18254 {
18255 tree targ = TREE_VEC_ELT (targs, i);
18256 tree tparm = TREE_VEC_ELT (tparms, i);
18257
18258 if (targ || tparm == error_mark_node)
18259 continue;
18260 tree parm = TREE_VALUE (tparm);
18261
18262 if (TREE_CODE (parm) == PARM_DECL
18263 && uses_template_parms (TREE_TYPE (parm))
18264 && saw_undeduced < 2)
18265 continue;
18266
18267 tree arg = TREE_PURPOSE (tparm);
18268 reopen_deferring_access_checks (*checks);
18269 location_t save_loc = input_location;
18270 if (DECL_P (parm))
18271 input_location = DECL_SOURCE_LOCATION (parm);
18272 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18273 arg = convert_template_argument (parm, arg, targs, complain,
18274 i, NULL_TREE);
18275 input_location = save_loc;
18276 *checks = get_deferred_access_checks ();
18277 pop_deferring_access_checks ();
18278 if (arg == error_mark_node)
18279 return 1;
18280 else
18281 {
18282 TREE_VEC_ELT (targs, i) = arg;
18283 /* The position of the first default template argument,
18284 is also the number of non-defaulted arguments in TARGS.
18285 Record that. */
18286 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18287 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18288 continue;
18289 }
18290 }
18291
18292 if (saw_undeduced++ == 1)
18293 goto again;
18294 }
18295
18296 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18297 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18298
18299 return unify_success (explain_p);
18300 }
18301
18302 /* Subroutine of type_unification_real. Args are like the variables
18303 at the call site. ARG is an overloaded function (or template-id);
18304 we try deducing template args from each of the overloads, and if
18305 only one succeeds, we go with that. Modifies TARGS and returns
18306 true on success. */
18307
18308 static bool
18309 resolve_overloaded_unification (tree tparms,
18310 tree targs,
18311 tree parm,
18312 tree arg,
18313 unification_kind_t strict,
18314 int sub_strict,
18315 bool explain_p)
18316 {
18317 tree tempargs = copy_node (targs);
18318 int good = 0;
18319 tree goodfn = NULL_TREE;
18320 bool addr_p;
18321
18322 if (TREE_CODE (arg) == ADDR_EXPR)
18323 {
18324 arg = TREE_OPERAND (arg, 0);
18325 addr_p = true;
18326 }
18327 else
18328 addr_p = false;
18329
18330 if (TREE_CODE (arg) == COMPONENT_REF)
18331 /* Handle `&x' where `x' is some static or non-static member
18332 function name. */
18333 arg = TREE_OPERAND (arg, 1);
18334
18335 if (TREE_CODE (arg) == OFFSET_REF)
18336 arg = TREE_OPERAND (arg, 1);
18337
18338 /* Strip baselink information. */
18339 if (BASELINK_P (arg))
18340 arg = BASELINK_FUNCTIONS (arg);
18341
18342 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18343 {
18344 /* If we got some explicit template args, we need to plug them into
18345 the affected templates before we try to unify, in case the
18346 explicit args will completely resolve the templates in question. */
18347
18348 int ok = 0;
18349 tree expl_subargs = TREE_OPERAND (arg, 1);
18350 arg = TREE_OPERAND (arg, 0);
18351
18352 for (; arg; arg = OVL_NEXT (arg))
18353 {
18354 tree fn = OVL_CURRENT (arg);
18355 tree subargs, elem;
18356
18357 if (TREE_CODE (fn) != TEMPLATE_DECL)
18358 continue;
18359
18360 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18361 expl_subargs, NULL_TREE, tf_none,
18362 /*require_all_args=*/true,
18363 /*use_default_args=*/true);
18364 if (subargs != error_mark_node
18365 && !any_dependent_template_arguments_p (subargs))
18366 {
18367 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18368 if (try_one_overload (tparms, targs, tempargs, parm,
18369 elem, strict, sub_strict, addr_p, explain_p)
18370 && (!goodfn || !same_type_p (goodfn, elem)))
18371 {
18372 goodfn = elem;
18373 ++good;
18374 }
18375 }
18376 else if (subargs)
18377 ++ok;
18378 }
18379 /* If no templates (or more than one) are fully resolved by the
18380 explicit arguments, this template-id is a non-deduced context; it
18381 could still be OK if we deduce all template arguments for the
18382 enclosing call through other arguments. */
18383 if (good != 1)
18384 good = ok;
18385 }
18386 else if (TREE_CODE (arg) != OVERLOAD
18387 && TREE_CODE (arg) != FUNCTION_DECL)
18388 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18389 -- but the deduction does not succeed because the expression is
18390 not just the function on its own. */
18391 return false;
18392 else
18393 for (; arg; arg = OVL_NEXT (arg))
18394 if (try_one_overload (tparms, targs, tempargs, parm,
18395 TREE_TYPE (OVL_CURRENT (arg)),
18396 strict, sub_strict, addr_p, explain_p)
18397 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18398 {
18399 goodfn = OVL_CURRENT (arg);
18400 ++good;
18401 }
18402
18403 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18404 to function or pointer to member function argument if the set of
18405 overloaded functions does not contain function templates and at most
18406 one of a set of overloaded functions provides a unique match.
18407
18408 So if we found multiple possibilities, we return success but don't
18409 deduce anything. */
18410
18411 if (good == 1)
18412 {
18413 int i = TREE_VEC_LENGTH (targs);
18414 for (; i--; )
18415 if (TREE_VEC_ELT (tempargs, i))
18416 {
18417 tree old = TREE_VEC_ELT (targs, i);
18418 tree new_ = TREE_VEC_ELT (tempargs, i);
18419 if (new_ && old && ARGUMENT_PACK_P (old)
18420 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18421 /* Don't forget explicit template arguments in a pack. */
18422 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18423 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18424 TREE_VEC_ELT (targs, i) = new_;
18425 }
18426 }
18427 if (good)
18428 return true;
18429
18430 return false;
18431 }
18432
18433 /* Core DR 115: In contexts where deduction is done and fails, or in
18434 contexts where deduction is not done, if a template argument list is
18435 specified and it, along with any default template arguments, identifies
18436 a single function template specialization, then the template-id is an
18437 lvalue for the function template specialization. */
18438
18439 tree
18440 resolve_nondeduced_context (tree orig_expr)
18441 {
18442 tree expr, offset, baselink;
18443 bool addr;
18444
18445 if (!type_unknown_p (orig_expr))
18446 return orig_expr;
18447
18448 expr = orig_expr;
18449 addr = false;
18450 offset = NULL_TREE;
18451 baselink = NULL_TREE;
18452
18453 if (TREE_CODE (expr) == ADDR_EXPR)
18454 {
18455 expr = TREE_OPERAND (expr, 0);
18456 addr = true;
18457 }
18458 if (TREE_CODE (expr) == OFFSET_REF)
18459 {
18460 offset = expr;
18461 expr = TREE_OPERAND (expr, 1);
18462 }
18463 if (BASELINK_P (expr))
18464 {
18465 baselink = expr;
18466 expr = BASELINK_FUNCTIONS (expr);
18467 }
18468
18469 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18470 {
18471 int good = 0;
18472 tree goodfn = NULL_TREE;
18473
18474 /* If we got some explicit template args, we need to plug them into
18475 the affected templates before we try to unify, in case the
18476 explicit args will completely resolve the templates in question. */
18477
18478 tree expl_subargs = TREE_OPERAND (expr, 1);
18479 tree arg = TREE_OPERAND (expr, 0);
18480 tree badfn = NULL_TREE;
18481 tree badargs = NULL_TREE;
18482
18483 for (; arg; arg = OVL_NEXT (arg))
18484 {
18485 tree fn = OVL_CURRENT (arg);
18486 tree subargs, elem;
18487
18488 if (TREE_CODE (fn) != TEMPLATE_DECL)
18489 continue;
18490
18491 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18492 expl_subargs, NULL_TREE, tf_none,
18493 /*require_all_args=*/true,
18494 /*use_default_args=*/true);
18495 if (subargs != error_mark_node
18496 && !any_dependent_template_arguments_p (subargs))
18497 {
18498 elem = instantiate_template (fn, subargs, tf_none);
18499 if (elem == error_mark_node)
18500 {
18501 badfn = fn;
18502 badargs = subargs;
18503 }
18504 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18505 {
18506 goodfn = elem;
18507 ++good;
18508 }
18509 }
18510 }
18511 if (good == 1)
18512 {
18513 mark_used (goodfn);
18514 expr = goodfn;
18515 if (baselink)
18516 expr = build_baselink (BASELINK_BINFO (baselink),
18517 BASELINK_ACCESS_BINFO (baselink),
18518 expr, BASELINK_OPTYPE (baselink));
18519 if (offset)
18520 {
18521 tree base
18522 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18523 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
18524 }
18525 if (addr)
18526 expr = cp_build_addr_expr (expr, tf_warning_or_error);
18527 return expr;
18528 }
18529 else if (good == 0 && badargs)
18530 /* There were no good options and at least one bad one, so let the
18531 user know what the problem is. */
18532 instantiate_template (badfn, badargs, tf_warning_or_error);
18533 }
18534 return orig_expr;
18535 }
18536
18537 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18538 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18539 different overloads deduce different arguments for a given parm.
18540 ADDR_P is true if the expression for which deduction is being
18541 performed was of the form "& fn" rather than simply "fn".
18542
18543 Returns 1 on success. */
18544
18545 static int
18546 try_one_overload (tree tparms,
18547 tree orig_targs,
18548 tree targs,
18549 tree parm,
18550 tree arg,
18551 unification_kind_t strict,
18552 int sub_strict,
18553 bool addr_p,
18554 bool explain_p)
18555 {
18556 int nargs;
18557 tree tempargs;
18558 int i;
18559
18560 if (arg == error_mark_node)
18561 return 0;
18562
18563 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18564 to function or pointer to member function argument if the set of
18565 overloaded functions does not contain function templates and at most
18566 one of a set of overloaded functions provides a unique match.
18567
18568 So if this is a template, just return success. */
18569
18570 if (uses_template_parms (arg))
18571 return 1;
18572
18573 if (TREE_CODE (arg) == METHOD_TYPE)
18574 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18575 else if (addr_p)
18576 arg = build_pointer_type (arg);
18577
18578 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18579
18580 /* We don't copy orig_targs for this because if we have already deduced
18581 some template args from previous args, unify would complain when we
18582 try to deduce a template parameter for the same argument, even though
18583 there isn't really a conflict. */
18584 nargs = TREE_VEC_LENGTH (targs);
18585 tempargs = make_tree_vec (nargs);
18586
18587 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18588 return 0;
18589
18590 /* First make sure we didn't deduce anything that conflicts with
18591 explicitly specified args. */
18592 for (i = nargs; i--; )
18593 {
18594 tree elt = TREE_VEC_ELT (tempargs, i);
18595 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18596
18597 if (!elt)
18598 /*NOP*/;
18599 else if (uses_template_parms (elt))
18600 /* Since we're unifying against ourselves, we will fill in
18601 template args used in the function parm list with our own
18602 template parms. Discard them. */
18603 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18604 else if (oldelt && !template_args_equal (oldelt, elt))
18605 return 0;
18606 }
18607
18608 for (i = nargs; i--; )
18609 {
18610 tree elt = TREE_VEC_ELT (tempargs, i);
18611
18612 if (elt)
18613 TREE_VEC_ELT (targs, i) = elt;
18614 }
18615
18616 return 1;
18617 }
18618
18619 /* PARM is a template class (perhaps with unbound template
18620 parameters). ARG is a fully instantiated type. If ARG can be
18621 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18622 TARGS are as for unify. */
18623
18624 static tree
18625 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18626 bool explain_p)
18627 {
18628 tree copy_of_targs;
18629
18630 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18631 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18632 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18633 return NULL_TREE;
18634
18635 /* We need to make a new template argument vector for the call to
18636 unify. If we used TARGS, we'd clutter it up with the result of
18637 the attempted unification, even if this class didn't work out.
18638 We also don't want to commit ourselves to all the unifications
18639 we've already done, since unification is supposed to be done on
18640 an argument-by-argument basis. In other words, consider the
18641 following pathological case:
18642
18643 template <int I, int J, int K>
18644 struct S {};
18645
18646 template <int I, int J>
18647 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18648
18649 template <int I, int J, int K>
18650 void f(S<I, J, K>, S<I, I, I>);
18651
18652 void g() {
18653 S<0, 0, 0> s0;
18654 S<0, 1, 2> s2;
18655
18656 f(s0, s2);
18657 }
18658
18659 Now, by the time we consider the unification involving `s2', we
18660 already know that we must have `f<0, 0, 0>'. But, even though
18661 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18662 because there are two ways to unify base classes of S<0, 1, 2>
18663 with S<I, I, I>. If we kept the already deduced knowledge, we
18664 would reject the possibility I=1. */
18665 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18666
18667 /* If unification failed, we're done. */
18668 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18669 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18670 return NULL_TREE;
18671
18672 return arg;
18673 }
18674
18675 /* Given a template type PARM and a class type ARG, find the unique
18676 base type in ARG that is an instance of PARM. We do not examine
18677 ARG itself; only its base-classes. If there is not exactly one
18678 appropriate base class, return NULL_TREE. PARM may be the type of
18679 a partial specialization, as well as a plain template type. Used
18680 by unify. */
18681
18682 static enum template_base_result
18683 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18684 bool explain_p, tree *result)
18685 {
18686 tree rval = NULL_TREE;
18687 tree binfo;
18688
18689 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18690
18691 binfo = TYPE_BINFO (complete_type (arg));
18692 if (!binfo)
18693 {
18694 /* The type could not be completed. */
18695 *result = NULL_TREE;
18696 return tbr_incomplete_type;
18697 }
18698
18699 /* Walk in inheritance graph order. The search order is not
18700 important, and this avoids multiple walks of virtual bases. */
18701 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18702 {
18703 tree r = try_class_unification (tparms, targs, parm,
18704 BINFO_TYPE (binfo), explain_p);
18705
18706 if (r)
18707 {
18708 /* If there is more than one satisfactory baseclass, then:
18709
18710 [temp.deduct.call]
18711
18712 If they yield more than one possible deduced A, the type
18713 deduction fails.
18714
18715 applies. */
18716 if (rval && !same_type_p (r, rval))
18717 {
18718 *result = NULL_TREE;
18719 return tbr_ambiguous_baseclass;
18720 }
18721
18722 rval = r;
18723 }
18724 }
18725
18726 *result = rval;
18727 return tbr_success;
18728 }
18729
18730 /* Returns the level of DECL, which declares a template parameter. */
18731
18732 static int
18733 template_decl_level (tree decl)
18734 {
18735 switch (TREE_CODE (decl))
18736 {
18737 case TYPE_DECL:
18738 case TEMPLATE_DECL:
18739 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18740
18741 case PARM_DECL:
18742 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18743
18744 default:
18745 gcc_unreachable ();
18746 }
18747 return 0;
18748 }
18749
18750 /* Decide whether ARG can be unified with PARM, considering only the
18751 cv-qualifiers of each type, given STRICT as documented for unify.
18752 Returns nonzero iff the unification is OK on that basis. */
18753
18754 static int
18755 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18756 {
18757 int arg_quals = cp_type_quals (arg);
18758 int parm_quals = cp_type_quals (parm);
18759
18760 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18761 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18762 {
18763 /* Although a CVR qualifier is ignored when being applied to a
18764 substituted template parameter ([8.3.2]/1 for example), that
18765 does not allow us to unify "const T" with "int&" because both
18766 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
18767 It is ok when we're allowing additional CV qualifiers
18768 at the outer level [14.8.2.1]/3,1st bullet. */
18769 if ((TREE_CODE (arg) == REFERENCE_TYPE
18770 || TREE_CODE (arg) == FUNCTION_TYPE
18771 || TREE_CODE (arg) == METHOD_TYPE)
18772 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
18773 return 0;
18774
18775 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
18776 && (parm_quals & TYPE_QUAL_RESTRICT))
18777 return 0;
18778 }
18779
18780 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18781 && (arg_quals & parm_quals) != parm_quals)
18782 return 0;
18783
18784 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
18785 && (parm_quals & arg_quals) != arg_quals)
18786 return 0;
18787
18788 return 1;
18789 }
18790
18791 /* Determines the LEVEL and INDEX for the template parameter PARM. */
18792 void
18793 template_parm_level_and_index (tree parm, int* level, int* index)
18794 {
18795 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18796 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18797 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18798 {
18799 *index = TEMPLATE_TYPE_IDX (parm);
18800 *level = TEMPLATE_TYPE_LEVEL (parm);
18801 }
18802 else
18803 {
18804 *index = TEMPLATE_PARM_IDX (parm);
18805 *level = TEMPLATE_PARM_LEVEL (parm);
18806 }
18807 }
18808
18809 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
18810 do { \
18811 if (unify (TP, TA, P, A, S, EP)) \
18812 return 1; \
18813 } while (0);
18814
18815 /* Unifies the remaining arguments in PACKED_ARGS with the pack
18816 expansion at the end of PACKED_PARMS. Returns 0 if the type
18817 deduction succeeds, 1 otherwise. STRICT is the same as in
18818 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
18819 call argument list. We'll need to adjust the arguments to make them
18820 types. SUBR tells us if this is from a recursive call to
18821 type_unification_real, or for comparing two template argument
18822 lists. */
18823
18824 static int
18825 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
18826 tree packed_args, unification_kind_t strict,
18827 bool subr, bool explain_p)
18828 {
18829 tree parm
18830 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
18831 tree pattern = PACK_EXPANSION_PATTERN (parm);
18832 tree pack, packs = NULL_TREE;
18833 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
18834
18835 packed_args = expand_template_argument_pack (packed_args);
18836
18837 int len = TREE_VEC_LENGTH (packed_args);
18838
18839 /* Determine the parameter packs we will be deducing from the
18840 pattern, and record their current deductions. */
18841 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
18842 pack; pack = TREE_CHAIN (pack))
18843 {
18844 tree parm_pack = TREE_VALUE (pack);
18845 int idx, level;
18846
18847 /* Determine the index and level of this parameter pack. */
18848 template_parm_level_and_index (parm_pack, &level, &idx);
18849
18850 /* Keep track of the parameter packs and their corresponding
18851 argument packs. */
18852 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
18853 TREE_TYPE (packs) = make_tree_vec (len - start);
18854 }
18855
18856 /* Loop through all of the arguments that have not yet been
18857 unified and unify each with the pattern. */
18858 for (i = start; i < len; i++)
18859 {
18860 tree parm;
18861 bool any_explicit = false;
18862 tree arg = TREE_VEC_ELT (packed_args, i);
18863
18864 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
18865 or the element of its argument pack at the current index if
18866 this argument was explicitly specified. */
18867 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18868 {
18869 int idx, level;
18870 tree arg, pargs;
18871 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18872
18873 arg = NULL_TREE;
18874 if (TREE_VALUE (pack)
18875 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
18876 && (i - start < TREE_VEC_LENGTH (pargs)))
18877 {
18878 any_explicit = true;
18879 arg = TREE_VEC_ELT (pargs, i - start);
18880 }
18881 TMPL_ARG (targs, level, idx) = arg;
18882 }
18883
18884 /* If we had explicit template arguments, substitute them into the
18885 pattern before deduction. */
18886 if (any_explicit)
18887 {
18888 /* Some arguments might still be unspecified or dependent. */
18889 bool dependent;
18890 ++processing_template_decl;
18891 dependent = any_dependent_template_arguments_p (targs);
18892 if (!dependent)
18893 --processing_template_decl;
18894 parm = tsubst (pattern, targs,
18895 explain_p ? tf_warning_or_error : tf_none,
18896 NULL_TREE);
18897 if (dependent)
18898 --processing_template_decl;
18899 if (parm == error_mark_node)
18900 return 1;
18901 }
18902 else
18903 parm = pattern;
18904
18905 /* Unify the pattern with the current argument. */
18906 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18907 explain_p))
18908 return 1;
18909
18910 /* For each parameter pack, collect the deduced value. */
18911 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18912 {
18913 int idx, level;
18914 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18915
18916 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
18917 TMPL_ARG (targs, level, idx);
18918 }
18919 }
18920
18921 /* Verify that the results of unification with the parameter packs
18922 produce results consistent with what we've seen before, and make
18923 the deduced argument packs available. */
18924 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18925 {
18926 tree old_pack = TREE_VALUE (pack);
18927 tree new_args = TREE_TYPE (pack);
18928 int i, len = TREE_VEC_LENGTH (new_args);
18929 int idx, level;
18930 bool nondeduced_p = false;
18931
18932 /* By default keep the original deduced argument pack.
18933 If necessary, more specific code is going to update the
18934 resulting deduced argument later down in this function. */
18935 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18936 TMPL_ARG (targs, level, idx) = old_pack;
18937
18938 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
18939 actually deduce anything. */
18940 for (i = 0; i < len && !nondeduced_p; ++i)
18941 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
18942 nondeduced_p = true;
18943 if (nondeduced_p)
18944 continue;
18945
18946 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
18947 {
18948 /* If we had fewer function args than explicit template args,
18949 just use the explicits. */
18950 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18951 int explicit_len = TREE_VEC_LENGTH (explicit_args);
18952 if (len < explicit_len)
18953 new_args = explicit_args;
18954 }
18955
18956 if (!old_pack)
18957 {
18958 tree result;
18959 /* Build the deduced *_ARGUMENT_PACK. */
18960 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
18961 {
18962 result = make_node (NONTYPE_ARGUMENT_PACK);
18963 TREE_TYPE (result) =
18964 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
18965 TREE_CONSTANT (result) = 1;
18966 }
18967 else
18968 result = cxx_make_type (TYPE_ARGUMENT_PACK);
18969
18970 SET_ARGUMENT_PACK_ARGS (result, new_args);
18971
18972 /* Note the deduced argument packs for this parameter
18973 pack. */
18974 TMPL_ARG (targs, level, idx) = result;
18975 }
18976 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
18977 && (ARGUMENT_PACK_ARGS (old_pack)
18978 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
18979 {
18980 /* We only had the explicitly-provided arguments before, but
18981 now we have a complete set of arguments. */
18982 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18983
18984 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
18985 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
18986 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
18987 }
18988 else
18989 {
18990 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
18991 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
18992
18993 if (!comp_template_args_with_info (old_args, new_args,
18994 &bad_old_arg, &bad_new_arg))
18995 /* Inconsistent unification of this parameter pack. */
18996 return unify_parameter_pack_inconsistent (explain_p,
18997 bad_old_arg,
18998 bad_new_arg);
18999 }
19000 }
19001
19002 return unify_success (explain_p);
19003 }
19004
19005 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19006 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19007 parameters and return value are as for unify. */
19008
19009 static int
19010 unify_array_domain (tree tparms, tree targs,
19011 tree parm_dom, tree arg_dom,
19012 bool explain_p)
19013 {
19014 tree parm_max;
19015 tree arg_max;
19016 bool parm_cst;
19017 bool arg_cst;
19018
19019 /* Our representation of array types uses "N - 1" as the
19020 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19021 not an integer constant. We cannot unify arbitrarily
19022 complex expressions, so we eliminate the MINUS_EXPRs
19023 here. */
19024 parm_max = TYPE_MAX_VALUE (parm_dom);
19025 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19026 if (!parm_cst)
19027 {
19028 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19029 parm_max = TREE_OPERAND (parm_max, 0);
19030 }
19031 arg_max = TYPE_MAX_VALUE (arg_dom);
19032 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19033 if (!arg_cst)
19034 {
19035 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19036 trying to unify the type of a variable with the type
19037 of a template parameter. For example:
19038
19039 template <unsigned int N>
19040 void f (char (&) [N]);
19041 int g();
19042 void h(int i) {
19043 char a[g(i)];
19044 f(a);
19045 }
19046
19047 Here, the type of the ARG will be "int [g(i)]", and
19048 may be a SAVE_EXPR, etc. */
19049 if (TREE_CODE (arg_max) != MINUS_EXPR)
19050 return unify_vla_arg (explain_p, arg_dom);
19051 arg_max = TREE_OPERAND (arg_max, 0);
19052 }
19053
19054 /* If only one of the bounds used a MINUS_EXPR, compensate
19055 by adding one to the other bound. */
19056 if (parm_cst && !arg_cst)
19057 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19058 integer_type_node,
19059 parm_max,
19060 integer_one_node);
19061 else if (arg_cst && !parm_cst)
19062 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19063 integer_type_node,
19064 arg_max,
19065 integer_one_node);
19066
19067 return unify (tparms, targs, parm_max, arg_max,
19068 UNIFY_ALLOW_INTEGER, explain_p);
19069 }
19070
19071 /* Deduce the value of template parameters. TPARMS is the (innermost)
19072 set of template parameters to a template. TARGS is the bindings
19073 for those template parameters, as determined thus far; TARGS may
19074 include template arguments for outer levels of template parameters
19075 as well. PARM is a parameter to a template function, or a
19076 subcomponent of that parameter; ARG is the corresponding argument.
19077 This function attempts to match PARM with ARG in a manner
19078 consistent with the existing assignments in TARGS. If more values
19079 are deduced, then TARGS is updated.
19080
19081 Returns 0 if the type deduction succeeds, 1 otherwise. The
19082 parameter STRICT is a bitwise or of the following flags:
19083
19084 UNIFY_ALLOW_NONE:
19085 Require an exact match between PARM and ARG.
19086 UNIFY_ALLOW_MORE_CV_QUAL:
19087 Allow the deduced ARG to be more cv-qualified (by qualification
19088 conversion) than ARG.
19089 UNIFY_ALLOW_LESS_CV_QUAL:
19090 Allow the deduced ARG to be less cv-qualified than ARG.
19091 UNIFY_ALLOW_DERIVED:
19092 Allow the deduced ARG to be a template base class of ARG,
19093 or a pointer to a template base class of the type pointed to by
19094 ARG.
19095 UNIFY_ALLOW_INTEGER:
19096 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19097 case for more information.
19098 UNIFY_ALLOW_OUTER_LEVEL:
19099 This is the outermost level of a deduction. Used to determine validity
19100 of qualification conversions. A valid qualification conversion must
19101 have const qualified pointers leading up to the inner type which
19102 requires additional CV quals, except at the outer level, where const
19103 is not required [conv.qual]. It would be normal to set this flag in
19104 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19105 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19106 This is the outermost level of a deduction, and PARM can be more CV
19107 qualified at this point.
19108 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19109 This is the outermost level of a deduction, and PARM can be less CV
19110 qualified at this point. */
19111
19112 static int
19113 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19114 bool explain_p)
19115 {
19116 int idx;
19117 tree targ;
19118 tree tparm;
19119 int strict_in = strict;
19120
19121 /* I don't think this will do the right thing with respect to types.
19122 But the only case I've seen it in so far has been array bounds, where
19123 signedness is the only information lost, and I think that will be
19124 okay. */
19125 while (TREE_CODE (parm) == NOP_EXPR)
19126 parm = TREE_OPERAND (parm, 0);
19127
19128 if (arg == error_mark_node)
19129 return unify_invalid (explain_p);
19130 if (arg == unknown_type_node
19131 || arg == init_list_type_node)
19132 /* We can't deduce anything from this, but we might get all the
19133 template args from other function args. */
19134 return unify_success (explain_p);
19135
19136 /* If PARM uses template parameters, then we can't bail out here,
19137 even if ARG == PARM, since we won't record unifications for the
19138 template parameters. We might need them if we're trying to
19139 figure out which of two things is more specialized. */
19140 if (arg == parm && !uses_template_parms (parm))
19141 return unify_success (explain_p);
19142
19143 /* Handle init lists early, so the rest of the function can assume
19144 we're dealing with a type. */
19145 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19146 {
19147 tree elt, elttype;
19148 unsigned i;
19149 tree orig_parm = parm;
19150
19151 /* Replace T with std::initializer_list<T> for deduction. */
19152 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19153 && flag_deduce_init_list)
19154 parm = listify (parm);
19155
19156 if (!is_std_init_list (parm)
19157 && TREE_CODE (parm) != ARRAY_TYPE)
19158 /* We can only deduce from an initializer list argument if the
19159 parameter is std::initializer_list or an array; otherwise this
19160 is a non-deduced context. */
19161 return unify_success (explain_p);
19162
19163 if (TREE_CODE (parm) == ARRAY_TYPE)
19164 elttype = TREE_TYPE (parm);
19165 else
19166 {
19167 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19168 /* Deduction is defined in terms of a single type, so just punt
19169 on the (bizarre) std::initializer_list<T...>. */
19170 if (PACK_EXPANSION_P (elttype))
19171 return unify_success (explain_p);
19172 }
19173
19174 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19175 {
19176 int elt_strict = strict;
19177
19178 if (elt == error_mark_node)
19179 return unify_invalid (explain_p);
19180
19181 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19182 {
19183 tree type = TREE_TYPE (elt);
19184 if (type == error_mark_node)
19185 return unify_invalid (explain_p);
19186 /* It should only be possible to get here for a call. */
19187 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19188 elt_strict |= maybe_adjust_types_for_deduction
19189 (DEDUCE_CALL, &elttype, &type, elt);
19190 elt = type;
19191 }
19192
19193 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19194 explain_p);
19195 }
19196
19197 if (TREE_CODE (parm) == ARRAY_TYPE
19198 && deducible_array_bound (TYPE_DOMAIN (parm)))
19199 {
19200 /* Also deduce from the length of the initializer list. */
19201 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19202 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19203 if (idx == error_mark_node)
19204 return unify_invalid (explain_p);
19205 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19206 idx, explain_p);
19207 }
19208
19209 /* If the std::initializer_list<T> deduction worked, replace the
19210 deduced A with std::initializer_list<A>. */
19211 if (orig_parm != parm)
19212 {
19213 idx = TEMPLATE_TYPE_IDX (orig_parm);
19214 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19215 targ = listify (targ);
19216 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19217 }
19218 return unify_success (explain_p);
19219 }
19220
19221 /* Immediately reject some pairs that won't unify because of
19222 cv-qualification mismatches. */
19223 if (TREE_CODE (arg) == TREE_CODE (parm)
19224 && TYPE_P (arg)
19225 /* It is the elements of the array which hold the cv quals of an array
19226 type, and the elements might be template type parms. We'll check
19227 when we recurse. */
19228 && TREE_CODE (arg) != ARRAY_TYPE
19229 /* We check the cv-qualifiers when unifying with template type
19230 parameters below. We want to allow ARG `const T' to unify with
19231 PARM `T' for example, when computing which of two templates
19232 is more specialized, for example. */
19233 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19234 && !check_cv_quals_for_unify (strict_in, arg, parm))
19235 return unify_cv_qual_mismatch (explain_p, parm, arg);
19236
19237 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19238 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19239 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19240 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19241 strict &= ~UNIFY_ALLOW_DERIVED;
19242 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19243 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19244
19245 switch (TREE_CODE (parm))
19246 {
19247 case TYPENAME_TYPE:
19248 case SCOPE_REF:
19249 case UNBOUND_CLASS_TEMPLATE:
19250 /* In a type which contains a nested-name-specifier, template
19251 argument values cannot be deduced for template parameters used
19252 within the nested-name-specifier. */
19253 return unify_success (explain_p);
19254
19255 case TEMPLATE_TYPE_PARM:
19256 case TEMPLATE_TEMPLATE_PARM:
19257 case BOUND_TEMPLATE_TEMPLATE_PARM:
19258 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19259 if (error_operand_p (tparm))
19260 return unify_invalid (explain_p);
19261
19262 if (TEMPLATE_TYPE_LEVEL (parm)
19263 != template_decl_level (tparm))
19264 /* The PARM is not one we're trying to unify. Just check
19265 to see if it matches ARG. */
19266 {
19267 if (TREE_CODE (arg) == TREE_CODE (parm)
19268 && (is_auto (parm) ? is_auto (arg)
19269 : same_type_p (parm, arg)))
19270 return unify_success (explain_p);
19271 else
19272 return unify_type_mismatch (explain_p, parm, arg);
19273 }
19274 idx = TEMPLATE_TYPE_IDX (parm);
19275 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19276 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19277 if (error_operand_p (tparm))
19278 return unify_invalid (explain_p);
19279
19280 /* Check for mixed types and values. */
19281 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19282 && TREE_CODE (tparm) != TYPE_DECL)
19283 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19284 && TREE_CODE (tparm) != TEMPLATE_DECL))
19285 gcc_unreachable ();
19286
19287 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19288 {
19289 /* ARG must be constructed from a template class or a template
19290 template parameter. */
19291 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19292 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19293 return unify_template_deduction_failure (explain_p, parm, arg);
19294 {
19295 tree parmvec = TYPE_TI_ARGS (parm);
19296 /* An alias template name is never deduced. */
19297 if (TYPE_ALIAS_P (arg))
19298 arg = strip_typedefs (arg);
19299 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19300 tree full_argvec = add_to_template_args (targs, argvec);
19301 tree parm_parms
19302 = DECL_INNERMOST_TEMPLATE_PARMS
19303 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19304 int i, len;
19305 int parm_variadic_p = 0;
19306
19307 /* The resolution to DR150 makes clear that default
19308 arguments for an N-argument may not be used to bind T
19309 to a template template parameter with fewer than N
19310 parameters. It is not safe to permit the binding of
19311 default arguments as an extension, as that may change
19312 the meaning of a conforming program. Consider:
19313
19314 struct Dense { static const unsigned int dim = 1; };
19315
19316 template <template <typename> class View,
19317 typename Block>
19318 void operator+(float, View<Block> const&);
19319
19320 template <typename Block,
19321 unsigned int Dim = Block::dim>
19322 struct Lvalue_proxy { operator float() const; };
19323
19324 void
19325 test_1d (void) {
19326 Lvalue_proxy<Dense> p;
19327 float b;
19328 b + p;
19329 }
19330
19331 Here, if Lvalue_proxy is permitted to bind to View, then
19332 the global operator+ will be used; if they are not, the
19333 Lvalue_proxy will be converted to float. */
19334 if (coerce_template_parms (parm_parms,
19335 full_argvec,
19336 TYPE_TI_TEMPLATE (parm),
19337 (explain_p
19338 ? tf_warning_or_error
19339 : tf_none),
19340 /*require_all_args=*/true,
19341 /*use_default_args=*/false)
19342 == error_mark_node)
19343 return 1;
19344
19345 /* Deduce arguments T, i from TT<T> or TT<i>.
19346 We check each element of PARMVEC and ARGVEC individually
19347 rather than the whole TREE_VEC since they can have
19348 different number of elements. */
19349
19350 parmvec = expand_template_argument_pack (parmvec);
19351 argvec = expand_template_argument_pack (argvec);
19352
19353 len = TREE_VEC_LENGTH (parmvec);
19354
19355 /* Check if the parameters end in a pack, making them
19356 variadic. */
19357 if (len > 0
19358 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19359 parm_variadic_p = 1;
19360
19361 for (i = 0; i < len - parm_variadic_p; ++i)
19362 /* If the template argument list of P contains a pack
19363 expansion that is not the last template argument, the
19364 entire template argument list is a non-deduced
19365 context. */
19366 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19367 return unify_success (explain_p);
19368
19369 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19370 return unify_too_few_arguments (explain_p,
19371 TREE_VEC_LENGTH (argvec), len);
19372
19373 for (i = 0; i < len - parm_variadic_p; ++i)
19374 {
19375 RECUR_AND_CHECK_FAILURE (tparms, targs,
19376 TREE_VEC_ELT (parmvec, i),
19377 TREE_VEC_ELT (argvec, i),
19378 UNIFY_ALLOW_NONE, explain_p);
19379 }
19380
19381 if (parm_variadic_p
19382 && unify_pack_expansion (tparms, targs,
19383 parmvec, argvec,
19384 DEDUCE_EXACT,
19385 /*subr=*/true, explain_p))
19386 return 1;
19387 }
19388 arg = TYPE_TI_TEMPLATE (arg);
19389
19390 /* Fall through to deduce template name. */
19391 }
19392
19393 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19394 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19395 {
19396 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19397
19398 /* Simple cases: Value already set, does match or doesn't. */
19399 if (targ != NULL_TREE && template_args_equal (targ, arg))
19400 return unify_success (explain_p);
19401 else if (targ)
19402 return unify_inconsistency (explain_p, parm, targ, arg);
19403 }
19404 else
19405 {
19406 /* If PARM is `const T' and ARG is only `int', we don't have
19407 a match unless we are allowing additional qualification.
19408 If ARG is `const int' and PARM is just `T' that's OK;
19409 that binds `const int' to `T'. */
19410 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19411 arg, parm))
19412 return unify_cv_qual_mismatch (explain_p, parm, arg);
19413
19414 /* Consider the case where ARG is `const volatile int' and
19415 PARM is `const T'. Then, T should be `volatile int'. */
19416 arg = cp_build_qualified_type_real
19417 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19418 if (arg == error_mark_node)
19419 return unify_invalid (explain_p);
19420
19421 /* Simple cases: Value already set, does match or doesn't. */
19422 if (targ != NULL_TREE && same_type_p (targ, arg))
19423 return unify_success (explain_p);
19424 else if (targ)
19425 return unify_inconsistency (explain_p, parm, targ, arg);
19426
19427 /* Make sure that ARG is not a variable-sized array. (Note
19428 that were talking about variable-sized arrays (like
19429 `int[n]'), rather than arrays of unknown size (like
19430 `int[]').) We'll get very confused by such a type since
19431 the bound of the array is not constant, and therefore
19432 not mangleable. Besides, such types are not allowed in
19433 ISO C++, so we can do as we please here. We do allow
19434 them for 'auto' deduction, since that isn't ABI-exposed. */
19435 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19436 return unify_vla_arg (explain_p, arg);
19437
19438 /* Strip typedefs as in convert_template_argument. */
19439 arg = canonicalize_type_argument (arg, tf_none);
19440 }
19441
19442 /* If ARG is a parameter pack or an expansion, we cannot unify
19443 against it unless PARM is also a parameter pack. */
19444 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19445 && !template_parameter_pack_p (parm))
19446 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19447
19448 /* If the argument deduction results is a METHOD_TYPE,
19449 then there is a problem.
19450 METHOD_TYPE doesn't map to any real C++ type the result of
19451 the deduction can not be of that type. */
19452 if (TREE_CODE (arg) == METHOD_TYPE)
19453 return unify_method_type_error (explain_p, arg);
19454
19455 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19456 return unify_success (explain_p);
19457
19458 case TEMPLATE_PARM_INDEX:
19459 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19460 if (error_operand_p (tparm))
19461 return unify_invalid (explain_p);
19462
19463 if (TEMPLATE_PARM_LEVEL (parm)
19464 != template_decl_level (tparm))
19465 {
19466 /* The PARM is not one we're trying to unify. Just check
19467 to see if it matches ARG. */
19468 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19469 && cp_tree_equal (parm, arg));
19470 if (result)
19471 unify_expression_unequal (explain_p, parm, arg);
19472 return result;
19473 }
19474
19475 idx = TEMPLATE_PARM_IDX (parm);
19476 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19477
19478 if (targ)
19479 {
19480 int x = !cp_tree_equal (targ, arg);
19481 if (x)
19482 unify_inconsistency (explain_p, parm, targ, arg);
19483 return x;
19484 }
19485
19486 /* [temp.deduct.type] If, in the declaration of a function template
19487 with a non-type template-parameter, the non-type
19488 template-parameter is used in an expression in the function
19489 parameter-list and, if the corresponding template-argument is
19490 deduced, the template-argument type shall match the type of the
19491 template-parameter exactly, except that a template-argument
19492 deduced from an array bound may be of any integral type.
19493 The non-type parameter might use already deduced type parameters. */
19494 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19495 if (!TREE_TYPE (arg))
19496 /* Template-parameter dependent expression. Just accept it for now.
19497 It will later be processed in convert_template_argument. */
19498 ;
19499 else if (same_type_p (TREE_TYPE (arg), tparm))
19500 /* OK */;
19501 else if ((strict & UNIFY_ALLOW_INTEGER)
19502 && CP_INTEGRAL_TYPE_P (tparm))
19503 /* Convert the ARG to the type of PARM; the deduced non-type
19504 template argument must exactly match the types of the
19505 corresponding parameter. */
19506 arg = fold (build_nop (tparm, arg));
19507 else if (uses_template_parms (tparm))
19508 /* We haven't deduced the type of this parameter yet. Try again
19509 later. */
19510 return unify_success (explain_p);
19511 else
19512 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19513
19514 /* If ARG is a parameter pack or an expansion, we cannot unify
19515 against it unless PARM is also a parameter pack. */
19516 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19517 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19518 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19519
19520 {
19521 bool removed_attr = false;
19522 arg = strip_typedefs_expr (arg, &removed_attr);
19523 }
19524 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19525 return unify_success (explain_p);
19526
19527 case PTRMEM_CST:
19528 {
19529 /* A pointer-to-member constant can be unified only with
19530 another constant. */
19531 if (TREE_CODE (arg) != PTRMEM_CST)
19532 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19533
19534 /* Just unify the class member. It would be useless (and possibly
19535 wrong, depending on the strict flags) to unify also
19536 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19537 arg refer to the same variable, even if through different
19538 classes. For instance:
19539
19540 struct A { int x; };
19541 struct B : A { };
19542
19543 Unification of &A::x and &B::x must succeed. */
19544 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19545 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19546 }
19547
19548 case POINTER_TYPE:
19549 {
19550 if (!TYPE_PTR_P (arg))
19551 return unify_type_mismatch (explain_p, parm, arg);
19552
19553 /* [temp.deduct.call]
19554
19555 A can be another pointer or pointer to member type that can
19556 be converted to the deduced A via a qualification
19557 conversion (_conv.qual_).
19558
19559 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19560 This will allow for additional cv-qualification of the
19561 pointed-to types if appropriate. */
19562
19563 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19564 /* The derived-to-base conversion only persists through one
19565 level of pointers. */
19566 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19567
19568 return unify (tparms, targs, TREE_TYPE (parm),
19569 TREE_TYPE (arg), strict, explain_p);
19570 }
19571
19572 case REFERENCE_TYPE:
19573 if (TREE_CODE (arg) != REFERENCE_TYPE)
19574 return unify_type_mismatch (explain_p, parm, arg);
19575 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19576 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19577
19578 case ARRAY_TYPE:
19579 if (TREE_CODE (arg) != ARRAY_TYPE)
19580 return unify_type_mismatch (explain_p, parm, arg);
19581 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19582 != (TYPE_DOMAIN (arg) == NULL_TREE))
19583 return unify_type_mismatch (explain_p, parm, arg);
19584 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19585 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19586 if (TYPE_DOMAIN (parm) != NULL_TREE)
19587 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19588 TYPE_DOMAIN (arg), explain_p);
19589 return unify_success (explain_p);
19590
19591 case REAL_TYPE:
19592 case COMPLEX_TYPE:
19593 case VECTOR_TYPE:
19594 case INTEGER_TYPE:
19595 case BOOLEAN_TYPE:
19596 case ENUMERAL_TYPE:
19597 case VOID_TYPE:
19598 case NULLPTR_TYPE:
19599 if (TREE_CODE (arg) != TREE_CODE (parm))
19600 return unify_type_mismatch (explain_p, parm, arg);
19601
19602 /* We have already checked cv-qualification at the top of the
19603 function. */
19604 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19605 return unify_type_mismatch (explain_p, parm, arg);
19606
19607 /* As far as unification is concerned, this wins. Later checks
19608 will invalidate it if necessary. */
19609 return unify_success (explain_p);
19610
19611 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19612 /* Type INTEGER_CST can come from ordinary constant template args. */
19613 case INTEGER_CST:
19614 while (TREE_CODE (arg) == NOP_EXPR)
19615 arg = TREE_OPERAND (arg, 0);
19616
19617 if (TREE_CODE (arg) != INTEGER_CST)
19618 return unify_template_argument_mismatch (explain_p, parm, arg);
19619 return (tree_int_cst_equal (parm, arg)
19620 ? unify_success (explain_p)
19621 : unify_template_argument_mismatch (explain_p, parm, arg));
19622
19623 case TREE_VEC:
19624 {
19625 int i, len, argslen;
19626 int parm_variadic_p = 0;
19627
19628 if (TREE_CODE (arg) != TREE_VEC)
19629 return unify_template_argument_mismatch (explain_p, parm, arg);
19630
19631 len = TREE_VEC_LENGTH (parm);
19632 argslen = TREE_VEC_LENGTH (arg);
19633
19634 /* Check for pack expansions in the parameters. */
19635 for (i = 0; i < len; ++i)
19636 {
19637 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19638 {
19639 if (i == len - 1)
19640 /* We can unify against something with a trailing
19641 parameter pack. */
19642 parm_variadic_p = 1;
19643 else
19644 /* [temp.deduct.type]/9: If the template argument list of
19645 P contains a pack expansion that is not the last
19646 template argument, the entire template argument list
19647 is a non-deduced context. */
19648 return unify_success (explain_p);
19649 }
19650 }
19651
19652 /* If we don't have enough arguments to satisfy the parameters
19653 (not counting the pack expression at the end), or we have
19654 too many arguments for a parameter list that doesn't end in
19655 a pack expression, we can't unify. */
19656 if (parm_variadic_p
19657 ? argslen < len - parm_variadic_p
19658 : argslen != len)
19659 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19660
19661 /* Unify all of the parameters that precede the (optional)
19662 pack expression. */
19663 for (i = 0; i < len - parm_variadic_p; ++i)
19664 {
19665 RECUR_AND_CHECK_FAILURE (tparms, targs,
19666 TREE_VEC_ELT (parm, i),
19667 TREE_VEC_ELT (arg, i),
19668 UNIFY_ALLOW_NONE, explain_p);
19669 }
19670 if (parm_variadic_p)
19671 return unify_pack_expansion (tparms, targs, parm, arg,
19672 DEDUCE_EXACT,
19673 /*subr=*/true, explain_p);
19674 return unify_success (explain_p);
19675 }
19676
19677 case RECORD_TYPE:
19678 case UNION_TYPE:
19679 if (TREE_CODE (arg) != TREE_CODE (parm))
19680 return unify_type_mismatch (explain_p, parm, arg);
19681
19682 if (TYPE_PTRMEMFUNC_P (parm))
19683 {
19684 if (!TYPE_PTRMEMFUNC_P (arg))
19685 return unify_type_mismatch (explain_p, parm, arg);
19686
19687 return unify (tparms, targs,
19688 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19689 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19690 strict, explain_p);
19691 }
19692 else if (TYPE_PTRMEMFUNC_P (arg))
19693 return unify_type_mismatch (explain_p, parm, arg);
19694
19695 if (CLASSTYPE_TEMPLATE_INFO (parm))
19696 {
19697 tree t = NULL_TREE;
19698
19699 if (strict_in & UNIFY_ALLOW_DERIVED)
19700 {
19701 /* First, we try to unify the PARM and ARG directly. */
19702 t = try_class_unification (tparms, targs,
19703 parm, arg, explain_p);
19704
19705 if (!t)
19706 {
19707 /* Fallback to the special case allowed in
19708 [temp.deduct.call]:
19709
19710 If P is a class, and P has the form
19711 template-id, then A can be a derived class of
19712 the deduced A. Likewise, if P is a pointer to
19713 a class of the form template-id, A can be a
19714 pointer to a derived class pointed to by the
19715 deduced A. */
19716 enum template_base_result r;
19717 r = get_template_base (tparms, targs, parm, arg,
19718 explain_p, &t);
19719
19720 if (!t)
19721 {
19722 /* Don't give the derived diagnostic if we're
19723 already dealing with the same template. */
19724 bool same_template
19725 = (CLASSTYPE_TEMPLATE_INFO (arg)
19726 && (CLASSTYPE_TI_TEMPLATE (parm)
19727 == CLASSTYPE_TI_TEMPLATE (arg)));
19728 return unify_no_common_base (explain_p && !same_template,
19729 r, parm, arg);
19730 }
19731 }
19732 }
19733 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19734 && (CLASSTYPE_TI_TEMPLATE (parm)
19735 == CLASSTYPE_TI_TEMPLATE (arg)))
19736 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19737 Then, we should unify `int' and `U'. */
19738 t = arg;
19739 else
19740 /* There's no chance of unification succeeding. */
19741 return unify_type_mismatch (explain_p, parm, arg);
19742
19743 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19744 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19745 }
19746 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19747 return unify_type_mismatch (explain_p, parm, arg);
19748 return unify_success (explain_p);
19749
19750 case METHOD_TYPE:
19751 case FUNCTION_TYPE:
19752 {
19753 unsigned int nargs;
19754 tree *args;
19755 tree a;
19756 unsigned int i;
19757
19758 if (TREE_CODE (arg) != TREE_CODE (parm))
19759 return unify_type_mismatch (explain_p, parm, arg);
19760
19761 /* CV qualifications for methods can never be deduced, they must
19762 match exactly. We need to check them explicitly here,
19763 because type_unification_real treats them as any other
19764 cv-qualified parameter. */
19765 if (TREE_CODE (parm) == METHOD_TYPE
19766 && (!check_cv_quals_for_unify
19767 (UNIFY_ALLOW_NONE,
19768 class_of_this_parm (arg),
19769 class_of_this_parm (parm))))
19770 return unify_cv_qual_mismatch (explain_p, parm, arg);
19771
19772 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
19773 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
19774
19775 nargs = list_length (TYPE_ARG_TYPES (arg));
19776 args = XALLOCAVEC (tree, nargs);
19777 for (a = TYPE_ARG_TYPES (arg), i = 0;
19778 a != NULL_TREE && a != void_list_node;
19779 a = TREE_CHAIN (a), ++i)
19780 args[i] = TREE_VALUE (a);
19781 nargs = i;
19782
19783 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
19784 args, nargs, 1, DEDUCE_EXACT,
19785 LOOKUP_NORMAL, NULL, explain_p);
19786 }
19787
19788 case OFFSET_TYPE:
19789 /* Unify a pointer to member with a pointer to member function, which
19790 deduces the type of the member as a function type. */
19791 if (TYPE_PTRMEMFUNC_P (arg))
19792 {
19793 /* Check top-level cv qualifiers */
19794 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
19795 return unify_cv_qual_mismatch (explain_p, parm, arg);
19796
19797 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19798 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
19799 UNIFY_ALLOW_NONE, explain_p);
19800
19801 /* Determine the type of the function we are unifying against. */
19802 tree fntype = static_fn_type (arg);
19803
19804 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
19805 }
19806
19807 if (TREE_CODE (arg) != OFFSET_TYPE)
19808 return unify_type_mismatch (explain_p, parm, arg);
19809 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19810 TYPE_OFFSET_BASETYPE (arg),
19811 UNIFY_ALLOW_NONE, explain_p);
19812 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19813 strict, explain_p);
19814
19815 case CONST_DECL:
19816 if (DECL_TEMPLATE_PARM_P (parm))
19817 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
19818 if (arg != scalar_constant_value (parm))
19819 return unify_template_argument_mismatch (explain_p, parm, arg);
19820 return unify_success (explain_p);
19821
19822 case FIELD_DECL:
19823 case TEMPLATE_DECL:
19824 /* Matched cases are handled by the ARG == PARM test above. */
19825 return unify_template_argument_mismatch (explain_p, parm, arg);
19826
19827 case VAR_DECL:
19828 /* A non-type template parameter that is a variable should be a
19829 an integral constant, in which case, it whould have been
19830 folded into its (constant) value. So we should not be getting
19831 a variable here. */
19832 gcc_unreachable ();
19833
19834 case TYPE_ARGUMENT_PACK:
19835 case NONTYPE_ARGUMENT_PACK:
19836 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
19837 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
19838
19839 case TYPEOF_TYPE:
19840 case DECLTYPE_TYPE:
19841 case UNDERLYING_TYPE:
19842 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
19843 or UNDERLYING_TYPE nodes. */
19844 return unify_success (explain_p);
19845
19846 case ERROR_MARK:
19847 /* Unification fails if we hit an error node. */
19848 return unify_invalid (explain_p);
19849
19850 case INDIRECT_REF:
19851 if (REFERENCE_REF_P (parm))
19852 {
19853 if (REFERENCE_REF_P (arg))
19854 arg = TREE_OPERAND (arg, 0);
19855 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
19856 strict, explain_p);
19857 }
19858 /* FALLTHRU */
19859
19860 default:
19861 /* An unresolved overload is a nondeduced context. */
19862 if (is_overloaded_fn (parm) || type_unknown_p (parm))
19863 return unify_success (explain_p);
19864 gcc_assert (EXPR_P (parm));
19865
19866 /* We must be looking at an expression. This can happen with
19867 something like:
19868
19869 template <int I>
19870 void foo(S<I>, S<I + 2>);
19871
19872 This is a "nondeduced context":
19873
19874 [deduct.type]
19875
19876 The nondeduced contexts are:
19877
19878 --A type that is a template-id in which one or more of
19879 the template-arguments is an expression that references
19880 a template-parameter.
19881
19882 In these cases, we assume deduction succeeded, but don't
19883 actually infer any unifications. */
19884
19885 if (!uses_template_parms (parm)
19886 && !template_args_equal (parm, arg))
19887 return unify_expression_unequal (explain_p, parm, arg);
19888 else
19889 return unify_success (explain_p);
19890 }
19891 }
19892 #undef RECUR_AND_CHECK_FAILURE
19893 \f
19894 /* Note that DECL can be defined in this translation unit, if
19895 required. */
19896
19897 static void
19898 mark_definable (tree decl)
19899 {
19900 tree clone;
19901 DECL_NOT_REALLY_EXTERN (decl) = 1;
19902 FOR_EACH_CLONE (clone, decl)
19903 DECL_NOT_REALLY_EXTERN (clone) = 1;
19904 }
19905
19906 /* Called if RESULT is explicitly instantiated, or is a member of an
19907 explicitly instantiated class. */
19908
19909 void
19910 mark_decl_instantiated (tree result, int extern_p)
19911 {
19912 SET_DECL_EXPLICIT_INSTANTIATION (result);
19913
19914 /* If this entity has already been written out, it's too late to
19915 make any modifications. */
19916 if (TREE_ASM_WRITTEN (result))
19917 return;
19918
19919 /* For anonymous namespace we don't need to do anything. */
19920 if (decl_anon_ns_mem_p (result))
19921 {
19922 gcc_assert (!TREE_PUBLIC (result));
19923 return;
19924 }
19925
19926 if (TREE_CODE (result) != FUNCTION_DECL)
19927 /* The TREE_PUBLIC flag for function declarations will have been
19928 set correctly by tsubst. */
19929 TREE_PUBLIC (result) = 1;
19930
19931 /* This might have been set by an earlier implicit instantiation. */
19932 DECL_COMDAT (result) = 0;
19933
19934 if (extern_p)
19935 DECL_NOT_REALLY_EXTERN (result) = 0;
19936 else
19937 {
19938 mark_definable (result);
19939 mark_needed (result);
19940 /* Always make artificials weak. */
19941 if (DECL_ARTIFICIAL (result) && flag_weak)
19942 comdat_linkage (result);
19943 /* For WIN32 we also want to put explicit instantiations in
19944 linkonce sections. */
19945 else if (TREE_PUBLIC (result))
19946 maybe_make_one_only (result);
19947 }
19948
19949 /* If EXTERN_P, then this function will not be emitted -- unless
19950 followed by an explicit instantiation, at which point its linkage
19951 will be adjusted. If !EXTERN_P, then this function will be
19952 emitted here. In neither circumstance do we want
19953 import_export_decl to adjust the linkage. */
19954 DECL_INTERFACE_KNOWN (result) = 1;
19955 }
19956
19957 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
19958 important template arguments. If any are missing, we check whether
19959 they're important by using error_mark_node for substituting into any
19960 args that were used for partial ordering (the ones between ARGS and END)
19961 and seeing if it bubbles up. */
19962
19963 static bool
19964 check_undeduced_parms (tree targs, tree args, tree end)
19965 {
19966 bool found = false;
19967 int i;
19968 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
19969 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
19970 {
19971 found = true;
19972 TREE_VEC_ELT (targs, i) = error_mark_node;
19973 }
19974 if (found)
19975 {
19976 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
19977 if (substed == error_mark_node)
19978 return true;
19979 }
19980 return false;
19981 }
19982
19983 /* Given two function templates PAT1 and PAT2, return:
19984
19985 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
19986 -1 if PAT2 is more specialized than PAT1.
19987 0 if neither is more specialized.
19988
19989 LEN indicates the number of parameters we should consider
19990 (defaulted parameters should not be considered).
19991
19992 The 1998 std underspecified function template partial ordering, and
19993 DR214 addresses the issue. We take pairs of arguments, one from
19994 each of the templates, and deduce them against each other. One of
19995 the templates will be more specialized if all the *other*
19996 template's arguments deduce against its arguments and at least one
19997 of its arguments *does* *not* deduce against the other template's
19998 corresponding argument. Deduction is done as for class templates.
19999 The arguments used in deduction have reference and top level cv
20000 qualifiers removed. Iff both arguments were originally reference
20001 types *and* deduction succeeds in both directions, an lvalue reference
20002 wins against an rvalue reference and otherwise the template
20003 with the more cv-qualified argument wins for that pairing (if
20004 neither is more cv-qualified, they both are equal). Unlike regular
20005 deduction, after all the arguments have been deduced in this way,
20006 we do *not* verify the deduced template argument values can be
20007 substituted into non-deduced contexts.
20008
20009 The logic can be a bit confusing here, because we look at deduce1 and
20010 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20011 can find template arguments for pat1 to make arg1 look like arg2, that
20012 means that arg2 is at least as specialized as arg1. */
20013
20014 int
20015 more_specialized_fn (tree pat1, tree pat2, int len)
20016 {
20017 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20018 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20019 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20020 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20021 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20022 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20023 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20024 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20025 tree origs1, origs2;
20026 bool lose1 = false;
20027 bool lose2 = false;
20028
20029 /* Remove the this parameter from non-static member functions. If
20030 one is a non-static member function and the other is not a static
20031 member function, remove the first parameter from that function
20032 also. This situation occurs for operator functions where we
20033 locate both a member function (with this pointer) and non-member
20034 operator (with explicit first operand). */
20035 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20036 {
20037 len--; /* LEN is the number of significant arguments for DECL1 */
20038 args1 = TREE_CHAIN (args1);
20039 if (!DECL_STATIC_FUNCTION_P (decl2))
20040 args2 = TREE_CHAIN (args2);
20041 }
20042 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20043 {
20044 args2 = TREE_CHAIN (args2);
20045 if (!DECL_STATIC_FUNCTION_P (decl1))
20046 {
20047 len--;
20048 args1 = TREE_CHAIN (args1);
20049 }
20050 }
20051
20052 /* If only one is a conversion operator, they are unordered. */
20053 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20054 return 0;
20055
20056 /* Consider the return type for a conversion function */
20057 if (DECL_CONV_FN_P (decl1))
20058 {
20059 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20060 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20061 len++;
20062 }
20063
20064 processing_template_decl++;
20065
20066 origs1 = args1;
20067 origs2 = args2;
20068
20069 while (len--
20070 /* Stop when an ellipsis is seen. */
20071 && args1 != NULL_TREE && args2 != NULL_TREE)
20072 {
20073 tree arg1 = TREE_VALUE (args1);
20074 tree arg2 = TREE_VALUE (args2);
20075 int deduce1, deduce2;
20076 int quals1 = -1;
20077 int quals2 = -1;
20078 int ref1 = 0;
20079 int ref2 = 0;
20080
20081 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20082 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20083 {
20084 /* When both arguments are pack expansions, we need only
20085 unify the patterns themselves. */
20086 arg1 = PACK_EXPANSION_PATTERN (arg1);
20087 arg2 = PACK_EXPANSION_PATTERN (arg2);
20088
20089 /* This is the last comparison we need to do. */
20090 len = 0;
20091 }
20092
20093 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20094 {
20095 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20096 arg1 = TREE_TYPE (arg1);
20097 quals1 = cp_type_quals (arg1);
20098 }
20099
20100 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20101 {
20102 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20103 arg2 = TREE_TYPE (arg2);
20104 quals2 = cp_type_quals (arg2);
20105 }
20106
20107 arg1 = TYPE_MAIN_VARIANT (arg1);
20108 arg2 = TYPE_MAIN_VARIANT (arg2);
20109
20110 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20111 {
20112 int i, len2 = list_length (args2);
20113 tree parmvec = make_tree_vec (1);
20114 tree argvec = make_tree_vec (len2);
20115 tree ta = args2;
20116
20117 /* Setup the parameter vector, which contains only ARG1. */
20118 TREE_VEC_ELT (parmvec, 0) = arg1;
20119
20120 /* Setup the argument vector, which contains the remaining
20121 arguments. */
20122 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20123 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20124
20125 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20126 argvec, DEDUCE_EXACT,
20127 /*subr=*/true, /*explain_p=*/false)
20128 == 0);
20129
20130 /* We cannot deduce in the other direction, because ARG1 is
20131 a pack expansion but ARG2 is not. */
20132 deduce2 = 0;
20133 }
20134 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20135 {
20136 int i, len1 = list_length (args1);
20137 tree parmvec = make_tree_vec (1);
20138 tree argvec = make_tree_vec (len1);
20139 tree ta = args1;
20140
20141 /* Setup the parameter vector, which contains only ARG1. */
20142 TREE_VEC_ELT (parmvec, 0) = arg2;
20143
20144 /* Setup the argument vector, which contains the remaining
20145 arguments. */
20146 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20147 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20148
20149 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20150 argvec, DEDUCE_EXACT,
20151 /*subr=*/true, /*explain_p=*/false)
20152 == 0);
20153
20154 /* We cannot deduce in the other direction, because ARG2 is
20155 a pack expansion but ARG1 is not.*/
20156 deduce1 = 0;
20157 }
20158
20159 else
20160 {
20161 /* The normal case, where neither argument is a pack
20162 expansion. */
20163 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20164 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20165 == 0);
20166 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20167 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20168 == 0);
20169 }
20170
20171 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20172 arg2, then arg2 is not as specialized as arg1. */
20173 if (!deduce1)
20174 lose2 = true;
20175 if (!deduce2)
20176 lose1 = true;
20177
20178 /* "If, for a given type, deduction succeeds in both directions
20179 (i.e., the types are identical after the transformations above)
20180 and both P and A were reference types (before being replaced with
20181 the type referred to above):
20182 - if the type from the argument template was an lvalue reference and
20183 the type from the parameter template was not, the argument type is
20184 considered to be more specialized than the other; otherwise,
20185 - if the type from the argument template is more cv-qualified
20186 than the type from the parameter template (as described above),
20187 the argument type is considered to be more specialized than the other;
20188 otherwise,
20189 - neither type is more specialized than the other." */
20190
20191 if (deduce1 && deduce2)
20192 {
20193 if (ref1 && ref2 && ref1 != ref2)
20194 {
20195 if (ref1 > ref2)
20196 lose1 = true;
20197 else
20198 lose2 = true;
20199 }
20200 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20201 {
20202 if ((quals1 & quals2) == quals2)
20203 lose2 = true;
20204 if ((quals1 & quals2) == quals1)
20205 lose1 = true;
20206 }
20207 }
20208
20209 if (lose1 && lose2)
20210 /* We've failed to deduce something in either direction.
20211 These must be unordered. */
20212 break;
20213
20214 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20215 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20216 /* We have already processed all of the arguments in our
20217 handing of the pack expansion type. */
20218 len = 0;
20219
20220 args1 = TREE_CHAIN (args1);
20221 args2 = TREE_CHAIN (args2);
20222 }
20223
20224 /* "In most cases, all template parameters must have values in order for
20225 deduction to succeed, but for partial ordering purposes a template
20226 parameter may remain without a value provided it is not used in the
20227 types being used for partial ordering."
20228
20229 Thus, if we are missing any of the targs1 we need to substitute into
20230 origs1, then pat2 is not as specialized as pat1. This can happen when
20231 there is a nondeduced context. */
20232 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20233 lose2 = true;
20234 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20235 lose1 = true;
20236
20237 processing_template_decl--;
20238
20239 /* If both deductions succeed, the partial ordering selects the more
20240 constrained template. */
20241 if (!lose1 && !lose2)
20242 {
20243 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20244 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20245 lose1 = !subsumes_constraints (c1, c2);
20246 lose2 = !subsumes_constraints (c2, c1);
20247 }
20248
20249 /* All things being equal, if the next argument is a pack expansion
20250 for one function but not for the other, prefer the
20251 non-variadic function. FIXME this is bogus; see c++/41958. */
20252 if (lose1 == lose2
20253 && args1 && TREE_VALUE (args1)
20254 && args2 && TREE_VALUE (args2))
20255 {
20256 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20257 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20258 }
20259
20260 if (lose1 == lose2)
20261 return 0;
20262 else if (!lose1)
20263 return 1;
20264 else
20265 return -1;
20266 }
20267
20268 /* Determine which of two partial specializations of TMPL is more
20269 specialized.
20270
20271 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20272 to the first partial specialization. The TREE_PURPOSE is the
20273 innermost set of template parameters for the partial
20274 specialization. PAT2 is similar, but for the second template.
20275
20276 Return 1 if the first partial specialization is more specialized;
20277 -1 if the second is more specialized; 0 if neither is more
20278 specialized.
20279
20280 See [temp.class.order] for information about determining which of
20281 two templates is more specialized. */
20282
20283 static int
20284 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20285 {
20286 tree targs;
20287 int winner = 0;
20288 bool any_deductions = false;
20289
20290 tree tmpl1 = TREE_VALUE (pat1);
20291 tree tmpl2 = TREE_VALUE (pat2);
20292 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20293 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20294 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20295 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20296
20297 /* Just like what happens for functions, if we are ordering between
20298 different template specializations, we may encounter dependent
20299 types in the arguments, and we need our dependency check functions
20300 to behave correctly. */
20301 ++processing_template_decl;
20302 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20303 if (targs)
20304 {
20305 --winner;
20306 any_deductions = true;
20307 }
20308
20309 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20310 if (targs)
20311 {
20312 ++winner;
20313 any_deductions = true;
20314 }
20315 --processing_template_decl;
20316
20317 /* If both deductions succeed, the partial ordering selects the more
20318 constrained template. */
20319 if (!winner && any_deductions)
20320 return more_constrained (tmpl1, tmpl2);
20321
20322 /* In the case of a tie where at least one of the templates
20323 has a parameter pack at the end, the template with the most
20324 non-packed parameters wins. */
20325 if (winner == 0
20326 && any_deductions
20327 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20328 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20329 {
20330 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20331 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20332 int len1 = TREE_VEC_LENGTH (args1);
20333 int len2 = TREE_VEC_LENGTH (args2);
20334
20335 /* We don't count the pack expansion at the end. */
20336 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20337 --len1;
20338 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20339 --len2;
20340
20341 if (len1 > len2)
20342 return 1;
20343 else if (len1 < len2)
20344 return -1;
20345 }
20346
20347 return winner;
20348 }
20349
20350 /* Return the template arguments that will produce the function signature
20351 DECL from the function template FN, with the explicit template
20352 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20353 also match. Return NULL_TREE if no satisfactory arguments could be
20354 found. */
20355
20356 static tree
20357 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20358 {
20359 int ntparms = DECL_NTPARMS (fn);
20360 tree targs = make_tree_vec (ntparms);
20361 tree decl_type = TREE_TYPE (decl);
20362 tree decl_arg_types;
20363 tree *args;
20364 unsigned int nargs, ix;
20365 tree arg;
20366
20367 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20368
20369 /* Never do unification on the 'this' parameter. */
20370 decl_arg_types = skip_artificial_parms_for (decl,
20371 TYPE_ARG_TYPES (decl_type));
20372
20373 nargs = list_length (decl_arg_types);
20374 args = XALLOCAVEC (tree, nargs);
20375 for (arg = decl_arg_types, ix = 0;
20376 arg != NULL_TREE && arg != void_list_node;
20377 arg = TREE_CHAIN (arg), ++ix)
20378 args[ix] = TREE_VALUE (arg);
20379
20380 if (fn_type_unification (fn, explicit_args, targs,
20381 args, ix,
20382 (check_rettype || DECL_CONV_FN_P (fn)
20383 ? TREE_TYPE (decl_type) : NULL_TREE),
20384 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20385 /*decltype*/false)
20386 == error_mark_node)
20387 return NULL_TREE;
20388
20389 return targs;
20390 }
20391
20392 /* Return the innermost template arguments that, when applied to a partial
20393 specialization of TMPL whose innermost template parameters are
20394 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20395 ARGS.
20396
20397 For example, suppose we have:
20398
20399 template <class T, class U> struct S {};
20400 template <class T> struct S<T*, int> {};
20401
20402 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20403 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20404 int}. The resulting vector will be {double}, indicating that `T'
20405 is bound to `double'. */
20406
20407 static tree
20408 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20409 {
20410 int i, ntparms = TREE_VEC_LENGTH (tparms);
20411 tree deduced_args;
20412 tree innermost_deduced_args;
20413
20414 innermost_deduced_args = make_tree_vec (ntparms);
20415 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20416 {
20417 deduced_args = copy_node (args);
20418 SET_TMPL_ARGS_LEVEL (deduced_args,
20419 TMPL_ARGS_DEPTH (deduced_args),
20420 innermost_deduced_args);
20421 }
20422 else
20423 deduced_args = innermost_deduced_args;
20424
20425 if (unify (tparms, deduced_args,
20426 INNERMOST_TEMPLATE_ARGS (spec_args),
20427 INNERMOST_TEMPLATE_ARGS (args),
20428 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20429 return NULL_TREE;
20430
20431 for (i = 0; i < ntparms; ++i)
20432 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20433 return NULL_TREE;
20434
20435 /* Verify that nondeduced template arguments agree with the type
20436 obtained from argument deduction.
20437
20438 For example:
20439
20440 struct A { typedef int X; };
20441 template <class T, class U> struct C {};
20442 template <class T> struct C<T, typename T::X> {};
20443
20444 Then with the instantiation `C<A, int>', we can deduce that
20445 `T' is `A' but unify () does not check whether `typename T::X'
20446 is `int'. */
20447 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20448 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20449 spec_args, tmpl,
20450 tf_none, false, false);
20451 if (spec_args == error_mark_node
20452 /* We only need to check the innermost arguments; the other
20453 arguments will always agree. */
20454 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20455 INNERMOST_TEMPLATE_ARGS (args)))
20456 return NULL_TREE;
20457
20458 /* Now that we have bindings for all of the template arguments,
20459 ensure that the arguments deduced for the template template
20460 parameters have compatible template parameter lists. See the use
20461 of template_template_parm_bindings_ok_p in fn_type_unification
20462 for more information. */
20463 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20464 return NULL_TREE;
20465
20466 return deduced_args;
20467 }
20468
20469 // Compare two function templates T1 and T2 by deducing bindings
20470 // from one against the other. If both deductions succeed, compare
20471 // constraints to see which is more constrained.
20472 static int
20473 more_specialized_inst (tree t1, tree t2)
20474 {
20475 int fate = 0;
20476 int count = 0;
20477
20478 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20479 {
20480 --fate;
20481 ++count;
20482 }
20483
20484 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20485 {
20486 ++fate;
20487 ++count;
20488 }
20489
20490 // If both deductions succeed, then one may be more constrained.
20491 if (count == 2 && fate == 0)
20492 fate = more_constrained (t1, t2);
20493
20494 return fate;
20495 }
20496
20497 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20498 Return the TREE_LIST node with the most specialized template, if
20499 any. If there is no most specialized template, the error_mark_node
20500 is returned.
20501
20502 Note that this function does not look at, or modify, the
20503 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20504 returned is one of the elements of INSTANTIATIONS, callers may
20505 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20506 and retrieve it from the value returned. */
20507
20508 tree
20509 most_specialized_instantiation (tree templates)
20510 {
20511 tree fn, champ;
20512
20513 ++processing_template_decl;
20514
20515 champ = templates;
20516 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20517 {
20518 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20519 if (fate == -1)
20520 champ = fn;
20521 else if (!fate)
20522 {
20523 /* Equally specialized, move to next function. If there
20524 is no next function, nothing's most specialized. */
20525 fn = TREE_CHAIN (fn);
20526 champ = fn;
20527 if (!fn)
20528 break;
20529 }
20530 }
20531
20532 if (champ)
20533 /* Now verify that champ is better than everything earlier in the
20534 instantiation list. */
20535 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20536 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20537 {
20538 champ = NULL_TREE;
20539 break;
20540 }
20541 }
20542
20543 processing_template_decl--;
20544
20545 if (!champ)
20546 return error_mark_node;
20547
20548 return champ;
20549 }
20550
20551 /* If DECL is a specialization of some template, return the most
20552 general such template. Otherwise, returns NULL_TREE.
20553
20554 For example, given:
20555
20556 template <class T> struct S { template <class U> void f(U); };
20557
20558 if TMPL is `template <class U> void S<int>::f(U)' this will return
20559 the full template. This function will not trace past partial
20560 specializations, however. For example, given in addition:
20561
20562 template <class T> struct S<T*> { template <class U> void f(U); };
20563
20564 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20565 `template <class T> template <class U> S<T*>::f(U)'. */
20566
20567 tree
20568 most_general_template (tree decl)
20569 {
20570 if (TREE_CODE (decl) != TEMPLATE_DECL)
20571 {
20572 if (tree tinfo = get_template_info (decl))
20573 decl = TI_TEMPLATE (tinfo);
20574 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20575 template friend, or a FIELD_DECL for a capture pack. */
20576 if (TREE_CODE (decl) != TEMPLATE_DECL)
20577 return NULL_TREE;
20578 }
20579
20580 /* Look for more and more general templates. */
20581 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20582 {
20583 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20584 (See cp-tree.h for details.) */
20585 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20586 break;
20587
20588 if (CLASS_TYPE_P (TREE_TYPE (decl))
20589 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20590 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20591 break;
20592
20593 /* Stop if we run into an explicitly specialized class template. */
20594 if (!DECL_NAMESPACE_SCOPE_P (decl)
20595 && DECL_CONTEXT (decl)
20596 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20597 break;
20598
20599 decl = DECL_TI_TEMPLATE (decl);
20600 }
20601
20602 return decl;
20603 }
20604
20605 /* Return the most specialized of the template partial specializations
20606 which can produce TARGET, a specialization of some class or variable
20607 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20608 a TEMPLATE_DECL node corresponding to the partial specialization, while
20609 the TREE_PURPOSE is the set of template arguments that must be
20610 substituted into the template pattern in order to generate TARGET.
20611
20612 If the choice of partial specialization is ambiguous, a diagnostic
20613 is issued, and the error_mark_node is returned. If there are no
20614 partial specializations matching TARGET, then NULL_TREE is
20615 returned, indicating that the primary template should be used. */
20616
20617 static tree
20618 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20619 {
20620 tree list = NULL_TREE;
20621 tree t;
20622 tree champ;
20623 int fate;
20624 bool ambiguous_p;
20625 tree outer_args = NULL_TREE;
20626 tree tmpl, args;
20627
20628 if (TYPE_P (target))
20629 {
20630 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20631 tmpl = TI_TEMPLATE (tinfo);
20632 args = TI_ARGS (tinfo);
20633 }
20634 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20635 {
20636 tmpl = TREE_OPERAND (target, 0);
20637 args = TREE_OPERAND (target, 1);
20638 }
20639 else if (VAR_P (target))
20640 {
20641 tree tinfo = DECL_TEMPLATE_INFO (target);
20642 tmpl = TI_TEMPLATE (tinfo);
20643 args = TI_ARGS (tinfo);
20644 }
20645 else
20646 gcc_unreachable ();
20647
20648 tree main_tmpl = most_general_template (tmpl);
20649
20650 /* For determining which partial specialization to use, only the
20651 innermost args are interesting. */
20652 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20653 {
20654 outer_args = strip_innermost_template_args (args, 1);
20655 args = INNERMOST_TEMPLATE_ARGS (args);
20656 }
20657
20658 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20659 {
20660 tree partial_spec_args;
20661 tree spec_args;
20662 tree spec_tmpl = TREE_VALUE (t);
20663
20664 partial_spec_args = TREE_PURPOSE (t);
20665
20666 ++processing_template_decl;
20667
20668 if (outer_args)
20669 {
20670 /* Discard the outer levels of args, and then substitute in the
20671 template args from the enclosing class. */
20672 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20673 partial_spec_args = tsubst_template_args
20674 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20675
20676 /* And the same for the partial specialization TEMPLATE_DECL. */
20677 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20678 }
20679
20680 partial_spec_args =
20681 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20682 partial_spec_args,
20683 tmpl, tf_none,
20684 /*require_all_args=*/true,
20685 /*use_default_args=*/true);
20686
20687 --processing_template_decl;
20688
20689 if (partial_spec_args == error_mark_node)
20690 return error_mark_node;
20691 if (spec_tmpl == error_mark_node)
20692 return error_mark_node;
20693
20694 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20695 spec_args = get_partial_spec_bindings (tmpl, parms,
20696 partial_spec_args,
20697 args);
20698 if (spec_args)
20699 {
20700 if (outer_args)
20701 spec_args = add_to_template_args (outer_args, spec_args);
20702
20703 /* Keep the candidate only if the constraints are satisfied,
20704 or if we're not compiling with concepts. */
20705 if (!flag_concepts
20706 || constraints_satisfied_p (spec_tmpl, spec_args))
20707 {
20708 list = tree_cons (spec_args, TREE_VALUE (t), list);
20709 TREE_TYPE (list) = TREE_TYPE (t);
20710 }
20711 }
20712 }
20713
20714 if (! list)
20715 return NULL_TREE;
20716
20717 ambiguous_p = false;
20718 t = list;
20719 champ = t;
20720 t = TREE_CHAIN (t);
20721 for (; t; t = TREE_CHAIN (t))
20722 {
20723 fate = more_specialized_partial_spec (tmpl, champ, t);
20724 if (fate == 1)
20725 ;
20726 else
20727 {
20728 if (fate == 0)
20729 {
20730 t = TREE_CHAIN (t);
20731 if (! t)
20732 {
20733 ambiguous_p = true;
20734 break;
20735 }
20736 }
20737 champ = t;
20738 }
20739 }
20740
20741 if (!ambiguous_p)
20742 for (t = list; t && t != champ; t = TREE_CHAIN (t))
20743 {
20744 fate = more_specialized_partial_spec (tmpl, champ, t);
20745 if (fate != 1)
20746 {
20747 ambiguous_p = true;
20748 break;
20749 }
20750 }
20751
20752 if (ambiguous_p)
20753 {
20754 const char *str;
20755 char *spaces = NULL;
20756 if (!(complain & tf_error))
20757 return error_mark_node;
20758 if (TYPE_P (target))
20759 error ("ambiguous template instantiation for %q#T", target);
20760 else
20761 error ("ambiguous template instantiation for %q#D", target);
20762 str = ngettext ("candidate is:", "candidates are:", list_length (list));
20763 for (t = list; t; t = TREE_CHAIN (t))
20764 {
20765 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
20766 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
20767 "%s %#S", spaces ? spaces : str, subst);
20768 spaces = spaces ? spaces : get_spaces (str);
20769 }
20770 free (spaces);
20771 return error_mark_node;
20772 }
20773
20774 return champ;
20775 }
20776
20777 /* Explicitly instantiate DECL. */
20778
20779 void
20780 do_decl_instantiation (tree decl, tree storage)
20781 {
20782 tree result = NULL_TREE;
20783 int extern_p = 0;
20784
20785 if (!decl || decl == error_mark_node)
20786 /* An error occurred, for which grokdeclarator has already issued
20787 an appropriate message. */
20788 return;
20789 else if (! DECL_LANG_SPECIFIC (decl))
20790 {
20791 error ("explicit instantiation of non-template %q#D", decl);
20792 return;
20793 }
20794
20795 bool var_templ = (DECL_TEMPLATE_INFO (decl)
20796 && variable_template_p (DECL_TI_TEMPLATE (decl)));
20797
20798 if (VAR_P (decl) && !var_templ)
20799 {
20800 /* There is an asymmetry here in the way VAR_DECLs and
20801 FUNCTION_DECLs are handled by grokdeclarator. In the case of
20802 the latter, the DECL we get back will be marked as a
20803 template instantiation, and the appropriate
20804 DECL_TEMPLATE_INFO will be set up. This does not happen for
20805 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
20806 should handle VAR_DECLs as it currently handles
20807 FUNCTION_DECLs. */
20808 if (!DECL_CLASS_SCOPE_P (decl))
20809 {
20810 error ("%qD is not a static data member of a class template", decl);
20811 return;
20812 }
20813 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
20814 if (!result || !VAR_P (result))
20815 {
20816 error ("no matching template for %qD found", decl);
20817 return;
20818 }
20819 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
20820 {
20821 error ("type %qT for explicit instantiation %qD does not match "
20822 "declared type %qT", TREE_TYPE (result), decl,
20823 TREE_TYPE (decl));
20824 return;
20825 }
20826 }
20827 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
20828 {
20829 error ("explicit instantiation of %q#D", decl);
20830 return;
20831 }
20832 else
20833 result = decl;
20834
20835 /* Check for various error cases. Note that if the explicit
20836 instantiation is valid the RESULT will currently be marked as an
20837 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
20838 until we get here. */
20839
20840 if (DECL_TEMPLATE_SPECIALIZATION (result))
20841 {
20842 /* DR 259 [temp.spec].
20843
20844 Both an explicit instantiation and a declaration of an explicit
20845 specialization shall not appear in a program unless the explicit
20846 instantiation follows a declaration of the explicit specialization.
20847
20848 For a given set of template parameters, if an explicit
20849 instantiation of a template appears after a declaration of an
20850 explicit specialization for that template, the explicit
20851 instantiation has no effect. */
20852 return;
20853 }
20854 else if (DECL_EXPLICIT_INSTANTIATION (result))
20855 {
20856 /* [temp.spec]
20857
20858 No program shall explicitly instantiate any template more
20859 than once.
20860
20861 We check DECL_NOT_REALLY_EXTERN so as not to complain when
20862 the first instantiation was `extern' and the second is not,
20863 and EXTERN_P for the opposite case. */
20864 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
20865 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
20866 /* If an "extern" explicit instantiation follows an ordinary
20867 explicit instantiation, the template is instantiated. */
20868 if (extern_p)
20869 return;
20870 }
20871 else if (!DECL_IMPLICIT_INSTANTIATION (result))
20872 {
20873 error ("no matching template for %qD found", result);
20874 return;
20875 }
20876 else if (!DECL_TEMPLATE_INFO (result))
20877 {
20878 permerror (input_location, "explicit instantiation of non-template %q#D", result);
20879 return;
20880 }
20881
20882 if (storage == NULL_TREE)
20883 ;
20884 else if (storage == ridpointers[(int) RID_EXTERN])
20885 {
20886 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
20887 pedwarn (input_location, OPT_Wpedantic,
20888 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
20889 "instantiations");
20890 extern_p = 1;
20891 }
20892 else
20893 error ("storage class %qD applied to template instantiation", storage);
20894
20895 check_explicit_instantiation_namespace (result);
20896 mark_decl_instantiated (result, extern_p);
20897 if (! extern_p)
20898 instantiate_decl (result, /*defer_ok=*/1,
20899 /*expl_inst_class_mem_p=*/false);
20900 }
20901
20902 static void
20903 mark_class_instantiated (tree t, int extern_p)
20904 {
20905 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
20906 SET_CLASSTYPE_INTERFACE_KNOWN (t);
20907 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
20908 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
20909 if (! extern_p)
20910 {
20911 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
20912 rest_of_type_compilation (t, 1);
20913 }
20914 }
20915
20916 /* Called from do_type_instantiation through binding_table_foreach to
20917 do recursive instantiation for the type bound in ENTRY. */
20918 static void
20919 bt_instantiate_type_proc (binding_entry entry, void *data)
20920 {
20921 tree storage = *(tree *) data;
20922
20923 if (MAYBE_CLASS_TYPE_P (entry->type)
20924 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
20925 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
20926 }
20927
20928 /* Called from do_type_instantiation to instantiate a member
20929 (a member function or a static member variable) of an
20930 explicitly instantiated class template. */
20931 static void
20932 instantiate_class_member (tree decl, int extern_p)
20933 {
20934 mark_decl_instantiated (decl, extern_p);
20935 if (! extern_p)
20936 instantiate_decl (decl, /*defer_ok=*/1,
20937 /*expl_inst_class_mem_p=*/true);
20938 }
20939
20940 /* Perform an explicit instantiation of template class T. STORAGE, if
20941 non-null, is the RID for extern, inline or static. COMPLAIN is
20942 nonzero if this is called from the parser, zero if called recursively,
20943 since the standard is unclear (as detailed below). */
20944
20945 void
20946 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
20947 {
20948 int extern_p = 0;
20949 int nomem_p = 0;
20950 int static_p = 0;
20951 int previous_instantiation_extern_p = 0;
20952
20953 if (TREE_CODE (t) == TYPE_DECL)
20954 t = TREE_TYPE (t);
20955
20956 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
20957 {
20958 tree tmpl =
20959 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
20960 if (tmpl)
20961 error ("explicit instantiation of non-class template %qD", tmpl);
20962 else
20963 error ("explicit instantiation of non-template type %qT", t);
20964 return;
20965 }
20966
20967 complete_type (t);
20968
20969 if (!COMPLETE_TYPE_P (t))
20970 {
20971 if (complain & tf_error)
20972 error ("explicit instantiation of %q#T before definition of template",
20973 t);
20974 return;
20975 }
20976
20977 if (storage != NULL_TREE)
20978 {
20979 if (!in_system_header_at (input_location))
20980 {
20981 if (storage == ridpointers[(int) RID_EXTERN])
20982 {
20983 if (cxx_dialect == cxx98)
20984 pedwarn (input_location, OPT_Wpedantic,
20985 "ISO C++ 1998 forbids the use of %<extern%> on "
20986 "explicit instantiations");
20987 }
20988 else
20989 pedwarn (input_location, OPT_Wpedantic,
20990 "ISO C++ forbids the use of %qE"
20991 " on explicit instantiations", storage);
20992 }
20993
20994 if (storage == ridpointers[(int) RID_INLINE])
20995 nomem_p = 1;
20996 else if (storage == ridpointers[(int) RID_EXTERN])
20997 extern_p = 1;
20998 else if (storage == ridpointers[(int) RID_STATIC])
20999 static_p = 1;
21000 else
21001 {
21002 error ("storage class %qD applied to template instantiation",
21003 storage);
21004 extern_p = 0;
21005 }
21006 }
21007
21008 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21009 {
21010 /* DR 259 [temp.spec].
21011
21012 Both an explicit instantiation and a declaration of an explicit
21013 specialization shall not appear in a program unless the explicit
21014 instantiation follows a declaration of the explicit specialization.
21015
21016 For a given set of template parameters, if an explicit
21017 instantiation of a template appears after a declaration of an
21018 explicit specialization for that template, the explicit
21019 instantiation has no effect. */
21020 return;
21021 }
21022 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21023 {
21024 /* [temp.spec]
21025
21026 No program shall explicitly instantiate any template more
21027 than once.
21028
21029 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21030 instantiation was `extern'. If EXTERN_P then the second is.
21031 These cases are OK. */
21032 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21033
21034 if (!previous_instantiation_extern_p && !extern_p
21035 && (complain & tf_error))
21036 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21037
21038 /* If we've already instantiated the template, just return now. */
21039 if (!CLASSTYPE_INTERFACE_ONLY (t))
21040 return;
21041 }
21042
21043 check_explicit_instantiation_namespace (TYPE_NAME (t));
21044 mark_class_instantiated (t, extern_p);
21045
21046 if (nomem_p)
21047 return;
21048
21049 {
21050 tree tmp;
21051
21052 /* In contrast to implicit instantiation, where only the
21053 declarations, and not the definitions, of members are
21054 instantiated, we have here:
21055
21056 [temp.explicit]
21057
21058 The explicit instantiation of a class template specialization
21059 implies the instantiation of all of its members not
21060 previously explicitly specialized in the translation unit
21061 containing the explicit instantiation.
21062
21063 Of course, we can't instantiate member template classes, since
21064 we don't have any arguments for them. Note that the standard
21065 is unclear on whether the instantiation of the members are
21066 *explicit* instantiations or not. However, the most natural
21067 interpretation is that it should be an explicit instantiation. */
21068
21069 if (! static_p)
21070 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21071 if (TREE_CODE (tmp) == FUNCTION_DECL
21072 && DECL_TEMPLATE_INSTANTIATION (tmp))
21073 instantiate_class_member (tmp, extern_p);
21074
21075 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21076 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21077 instantiate_class_member (tmp, extern_p);
21078
21079 if (CLASSTYPE_NESTED_UTDS (t))
21080 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21081 bt_instantiate_type_proc, &storage);
21082 }
21083 }
21084
21085 /* Given a function DECL, which is a specialization of TMPL, modify
21086 DECL to be a re-instantiation of TMPL with the same template
21087 arguments. TMPL should be the template into which tsubst'ing
21088 should occur for DECL, not the most general template.
21089
21090 One reason for doing this is a scenario like this:
21091
21092 template <class T>
21093 void f(const T&, int i);
21094
21095 void g() { f(3, 7); }
21096
21097 template <class T>
21098 void f(const T& t, const int i) { }
21099
21100 Note that when the template is first instantiated, with
21101 instantiate_template, the resulting DECL will have no name for the
21102 first parameter, and the wrong type for the second. So, when we go
21103 to instantiate the DECL, we regenerate it. */
21104
21105 static void
21106 regenerate_decl_from_template (tree decl, tree tmpl)
21107 {
21108 /* The arguments used to instantiate DECL, from the most general
21109 template. */
21110 tree args;
21111 tree code_pattern;
21112
21113 args = DECL_TI_ARGS (decl);
21114 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21115
21116 /* Make sure that we can see identifiers, and compute access
21117 correctly. */
21118 push_access_scope (decl);
21119
21120 if (TREE_CODE (decl) == FUNCTION_DECL)
21121 {
21122 tree decl_parm;
21123 tree pattern_parm;
21124 tree specs;
21125 int args_depth;
21126 int parms_depth;
21127
21128 args_depth = TMPL_ARGS_DEPTH (args);
21129 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21130 if (args_depth > parms_depth)
21131 args = get_innermost_template_args (args, parms_depth);
21132
21133 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21134 args, tf_error, NULL_TREE,
21135 /*defer_ok*/false);
21136 if (specs && specs != error_mark_node)
21137 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21138 specs);
21139
21140 /* Merge parameter declarations. */
21141 decl_parm = skip_artificial_parms_for (decl,
21142 DECL_ARGUMENTS (decl));
21143 pattern_parm
21144 = skip_artificial_parms_for (code_pattern,
21145 DECL_ARGUMENTS (code_pattern));
21146 while (decl_parm && !DECL_PACK_P (pattern_parm))
21147 {
21148 tree parm_type;
21149 tree attributes;
21150
21151 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21152 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21153 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21154 NULL_TREE);
21155 parm_type = type_decays_to (parm_type);
21156 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21157 TREE_TYPE (decl_parm) = parm_type;
21158 attributes = DECL_ATTRIBUTES (pattern_parm);
21159 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21160 {
21161 DECL_ATTRIBUTES (decl_parm) = attributes;
21162 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21163 }
21164 decl_parm = DECL_CHAIN (decl_parm);
21165 pattern_parm = DECL_CHAIN (pattern_parm);
21166 }
21167 /* Merge any parameters that match with the function parameter
21168 pack. */
21169 if (pattern_parm && DECL_PACK_P (pattern_parm))
21170 {
21171 int i, len;
21172 tree expanded_types;
21173 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21174 the parameters in this function parameter pack. */
21175 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21176 args, tf_error, NULL_TREE);
21177 len = TREE_VEC_LENGTH (expanded_types);
21178 for (i = 0; i < len; i++)
21179 {
21180 tree parm_type;
21181 tree attributes;
21182
21183 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21184 /* Rename the parameter to include the index. */
21185 DECL_NAME (decl_parm) =
21186 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21187 parm_type = TREE_VEC_ELT (expanded_types, i);
21188 parm_type = type_decays_to (parm_type);
21189 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21190 TREE_TYPE (decl_parm) = parm_type;
21191 attributes = DECL_ATTRIBUTES (pattern_parm);
21192 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21193 {
21194 DECL_ATTRIBUTES (decl_parm) = attributes;
21195 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21196 }
21197 decl_parm = DECL_CHAIN (decl_parm);
21198 }
21199 }
21200 /* Merge additional specifiers from the CODE_PATTERN. */
21201 if (DECL_DECLARED_INLINE_P (code_pattern)
21202 && !DECL_DECLARED_INLINE_P (decl))
21203 DECL_DECLARED_INLINE_P (decl) = 1;
21204 }
21205 else if (VAR_P (decl))
21206 {
21207 DECL_INITIAL (decl) =
21208 tsubst_expr (DECL_INITIAL (code_pattern), args,
21209 tf_error, DECL_TI_TEMPLATE (decl),
21210 /*integral_constant_expression_p=*/false);
21211 if (VAR_HAD_UNKNOWN_BOUND (decl))
21212 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21213 tf_error, DECL_TI_TEMPLATE (decl));
21214 }
21215 else
21216 gcc_unreachable ();
21217
21218 pop_access_scope (decl);
21219 }
21220
21221 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21222 substituted to get DECL. */
21223
21224 tree
21225 template_for_substitution (tree decl)
21226 {
21227 tree tmpl = DECL_TI_TEMPLATE (decl);
21228
21229 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21230 for the instantiation. This is not always the most general
21231 template. Consider, for example:
21232
21233 template <class T>
21234 struct S { template <class U> void f();
21235 template <> void f<int>(); };
21236
21237 and an instantiation of S<double>::f<int>. We want TD to be the
21238 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21239 while (/* An instantiation cannot have a definition, so we need a
21240 more general template. */
21241 DECL_TEMPLATE_INSTANTIATION (tmpl)
21242 /* We must also deal with friend templates. Given:
21243
21244 template <class T> struct S {
21245 template <class U> friend void f() {};
21246 };
21247
21248 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21249 so far as the language is concerned, but that's still
21250 where we get the pattern for the instantiation from. On
21251 other hand, if the definition comes outside the class, say:
21252
21253 template <class T> struct S {
21254 template <class U> friend void f();
21255 };
21256 template <class U> friend void f() {}
21257
21258 we don't need to look any further. That's what the check for
21259 DECL_INITIAL is for. */
21260 || (TREE_CODE (decl) == FUNCTION_DECL
21261 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21262 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21263 {
21264 /* The present template, TD, should not be a definition. If it
21265 were a definition, we should be using it! Note that we
21266 cannot restructure the loop to just keep going until we find
21267 a template with a definition, since that might go too far if
21268 a specialization was declared, but not defined. */
21269
21270 /* Fetch the more general template. */
21271 tmpl = DECL_TI_TEMPLATE (tmpl);
21272 }
21273
21274 return tmpl;
21275 }
21276
21277 /* Returns true if we need to instantiate this template instance even if we
21278 know we aren't going to emit it. */
21279
21280 bool
21281 always_instantiate_p (tree decl)
21282 {
21283 /* We always instantiate inline functions so that we can inline them. An
21284 explicit instantiation declaration prohibits implicit instantiation of
21285 non-inline functions. With high levels of optimization, we would
21286 normally inline non-inline functions -- but we're not allowed to do
21287 that for "extern template" functions. Therefore, we check
21288 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21289 return ((TREE_CODE (decl) == FUNCTION_DECL
21290 && (DECL_DECLARED_INLINE_P (decl)
21291 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21292 /* And we need to instantiate static data members so that
21293 their initializers are available in integral constant
21294 expressions. */
21295 || (VAR_P (decl)
21296 && decl_maybe_constant_var_p (decl)));
21297 }
21298
21299 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21300 instantiate it now, modifying TREE_TYPE (fn). */
21301
21302 void
21303 maybe_instantiate_noexcept (tree fn)
21304 {
21305 tree fntype, spec, noex, clone;
21306
21307 /* Don't instantiate a noexcept-specification from template context. */
21308 if (processing_template_decl)
21309 return;
21310
21311 if (DECL_CLONED_FUNCTION_P (fn))
21312 fn = DECL_CLONED_FUNCTION (fn);
21313 fntype = TREE_TYPE (fn);
21314 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21315
21316 if (!spec || !TREE_PURPOSE (spec))
21317 return;
21318
21319 noex = TREE_PURPOSE (spec);
21320
21321 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21322 {
21323 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21324 spec = get_defaulted_eh_spec (fn);
21325 else if (push_tinst_level (fn))
21326 {
21327 push_access_scope (fn);
21328 push_deferring_access_checks (dk_no_deferred);
21329 input_location = DECL_SOURCE_LOCATION (fn);
21330 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21331 DEFERRED_NOEXCEPT_ARGS (noex),
21332 tf_warning_or_error, fn,
21333 /*function_p=*/false,
21334 /*integral_constant_expression_p=*/true);
21335 pop_deferring_access_checks ();
21336 pop_access_scope (fn);
21337 pop_tinst_level ();
21338 spec = build_noexcept_spec (noex, tf_warning_or_error);
21339 if (spec == error_mark_node)
21340 spec = noexcept_false_spec;
21341 }
21342 else
21343 spec = noexcept_false_spec;
21344
21345 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21346 }
21347
21348 FOR_EACH_CLONE (clone, fn)
21349 {
21350 if (TREE_TYPE (clone) == fntype)
21351 TREE_TYPE (clone) = TREE_TYPE (fn);
21352 else
21353 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21354 }
21355 }
21356
21357 /* Produce the definition of D, a _DECL generated from a template. If
21358 DEFER_OK is nonzero, then we don't have to actually do the
21359 instantiation now; we just have to do it sometime. Normally it is
21360 an error if this is an explicit instantiation but D is undefined.
21361 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21362 explicitly instantiated class template. */
21363
21364 tree
21365 instantiate_decl (tree d, int defer_ok,
21366 bool expl_inst_class_mem_p)
21367 {
21368 tree tmpl = DECL_TI_TEMPLATE (d);
21369 tree gen_args;
21370 tree args;
21371 tree td;
21372 tree code_pattern;
21373 tree spec;
21374 tree gen_tmpl;
21375 bool pattern_defined;
21376 location_t saved_loc = input_location;
21377 int saved_unevaluated_operand = cp_unevaluated_operand;
21378 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21379 bool external_p;
21380 bool deleted_p;
21381 tree fn_context;
21382 bool nested = false;
21383
21384 /* This function should only be used to instantiate templates for
21385 functions and static member variables. */
21386 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21387
21388 /* A concept is never instantiated. */
21389 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21390
21391 /* Variables are never deferred; if instantiation is required, they
21392 are instantiated right away. That allows for better code in the
21393 case that an expression refers to the value of the variable --
21394 if the variable has a constant value the referring expression can
21395 take advantage of that fact. */
21396 if (VAR_P (d)
21397 || DECL_DECLARED_CONSTEXPR_P (d))
21398 defer_ok = 0;
21399
21400 /* Don't instantiate cloned functions. Instead, instantiate the
21401 functions they cloned. */
21402 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21403 d = DECL_CLONED_FUNCTION (d);
21404
21405 if (DECL_TEMPLATE_INSTANTIATED (d)
21406 || (TREE_CODE (d) == FUNCTION_DECL
21407 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21408 || DECL_TEMPLATE_SPECIALIZATION (d))
21409 /* D has already been instantiated or explicitly specialized, so
21410 there's nothing for us to do here.
21411
21412 It might seem reasonable to check whether or not D is an explicit
21413 instantiation, and, if so, stop here. But when an explicit
21414 instantiation is deferred until the end of the compilation,
21415 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21416 the instantiation. */
21417 return d;
21418
21419 /* Check to see whether we know that this template will be
21420 instantiated in some other file, as with "extern template"
21421 extension. */
21422 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21423
21424 /* In general, we do not instantiate such templates. */
21425 if (external_p && !always_instantiate_p (d))
21426 return d;
21427
21428 gen_tmpl = most_general_template (tmpl);
21429 gen_args = DECL_TI_ARGS (d);
21430
21431 if (tmpl != gen_tmpl)
21432 /* We should already have the extra args. */
21433 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21434 == TMPL_ARGS_DEPTH (gen_args));
21435 /* And what's in the hash table should match D. */
21436 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21437 || spec == NULL_TREE);
21438
21439 /* This needs to happen before any tsubsting. */
21440 if (! push_tinst_level (d))
21441 return d;
21442
21443 timevar_push (TV_TEMPLATE_INST);
21444
21445 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21446 for the instantiation. */
21447 td = template_for_substitution (d);
21448 code_pattern = DECL_TEMPLATE_RESULT (td);
21449
21450 /* We should never be trying to instantiate a member of a class
21451 template or partial specialization. */
21452 gcc_assert (d != code_pattern);
21453
21454 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21455 || DECL_TEMPLATE_SPECIALIZATION (td))
21456 /* In the case of a friend template whose definition is provided
21457 outside the class, we may have too many arguments. Drop the
21458 ones we don't need. The same is true for specializations. */
21459 args = get_innermost_template_args
21460 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21461 else
21462 args = gen_args;
21463
21464 if (TREE_CODE (d) == FUNCTION_DECL)
21465 {
21466 deleted_p = DECL_DELETED_FN (code_pattern);
21467 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21468 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21469 || deleted_p);
21470 }
21471 else
21472 {
21473 deleted_p = false;
21474 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21475 }
21476
21477 /* We may be in the middle of deferred access check. Disable it now. */
21478 push_deferring_access_checks (dk_no_deferred);
21479
21480 /* Unless an explicit instantiation directive has already determined
21481 the linkage of D, remember that a definition is available for
21482 this entity. */
21483 if (pattern_defined
21484 && !DECL_INTERFACE_KNOWN (d)
21485 && !DECL_NOT_REALLY_EXTERN (d))
21486 mark_definable (d);
21487
21488 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21489 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21490 input_location = DECL_SOURCE_LOCATION (d);
21491
21492 /* If D is a member of an explicitly instantiated class template,
21493 and no definition is available, treat it like an implicit
21494 instantiation. */
21495 if (!pattern_defined && expl_inst_class_mem_p
21496 && DECL_EXPLICIT_INSTANTIATION (d))
21497 {
21498 /* Leave linkage flags alone on instantiations with anonymous
21499 visibility. */
21500 if (TREE_PUBLIC (d))
21501 {
21502 DECL_NOT_REALLY_EXTERN (d) = 0;
21503 DECL_INTERFACE_KNOWN (d) = 0;
21504 }
21505 SET_DECL_IMPLICIT_INSTANTIATION (d);
21506 }
21507
21508 /* Defer all other templates, unless we have been explicitly
21509 forbidden from doing so. */
21510 if (/* If there is no definition, we cannot instantiate the
21511 template. */
21512 ! pattern_defined
21513 /* If it's OK to postpone instantiation, do so. */
21514 || defer_ok
21515 /* If this is a static data member that will be defined
21516 elsewhere, we don't want to instantiate the entire data
21517 member, but we do want to instantiate the initializer so that
21518 we can substitute that elsewhere. */
21519 || (external_p && VAR_P (d))
21520 /* Handle here a deleted function too, avoid generating
21521 its body (c++/61080). */
21522 || deleted_p)
21523 {
21524 /* The definition of the static data member is now required so
21525 we must substitute the initializer. */
21526 if (VAR_P (d)
21527 && !DECL_INITIAL (d)
21528 && DECL_INITIAL (code_pattern))
21529 {
21530 tree ns;
21531 tree init;
21532 bool const_init = false;
21533 bool enter_context = DECL_CLASS_SCOPE_P (d);
21534
21535 ns = decl_namespace_context (d);
21536 push_nested_namespace (ns);
21537 if (enter_context)
21538 push_nested_class (DECL_CONTEXT (d));
21539 init = tsubst_expr (DECL_INITIAL (code_pattern),
21540 args,
21541 tf_warning_or_error, NULL_TREE,
21542 /*integral_constant_expression_p=*/false);
21543 /* If instantiating the initializer involved instantiating this
21544 again, don't call cp_finish_decl twice. */
21545 if (!DECL_INITIAL (d))
21546 {
21547 /* Make sure the initializer is still constant, in case of
21548 circular dependency (template/instantiate6.C). */
21549 const_init
21550 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21551 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21552 /*asmspec_tree=*/NULL_TREE,
21553 LOOKUP_ONLYCONVERTING);
21554 }
21555 if (enter_context)
21556 pop_nested_class ();
21557 pop_nested_namespace (ns);
21558 }
21559
21560 /* We restore the source position here because it's used by
21561 add_pending_template. */
21562 input_location = saved_loc;
21563
21564 if (at_eof && !pattern_defined
21565 && DECL_EXPLICIT_INSTANTIATION (d)
21566 && DECL_NOT_REALLY_EXTERN (d))
21567 /* [temp.explicit]
21568
21569 The definition of a non-exported function template, a
21570 non-exported member function template, or a non-exported
21571 member function or static data member of a class template
21572 shall be present in every translation unit in which it is
21573 explicitly instantiated. */
21574 permerror (input_location, "explicit instantiation of %qD "
21575 "but no definition available", d);
21576
21577 /* If we're in unevaluated context, we just wanted to get the
21578 constant value; this isn't an odr use, so don't queue
21579 a full instantiation. */
21580 if (cp_unevaluated_operand != 0)
21581 goto out;
21582 /* ??? Historically, we have instantiated inline functions, even
21583 when marked as "extern template". */
21584 if (!(external_p && VAR_P (d)))
21585 add_pending_template (d);
21586 goto out;
21587 }
21588 /* Tell the repository that D is available in this translation unit
21589 -- and see if it is supposed to be instantiated here. */
21590 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21591 {
21592 /* In a PCH file, despite the fact that the repository hasn't
21593 requested instantiation in the PCH it is still possible that
21594 an instantiation will be required in a file that includes the
21595 PCH. */
21596 if (pch_file)
21597 add_pending_template (d);
21598 /* Instantiate inline functions so that the inliner can do its
21599 job, even though we'll not be emitting a copy of this
21600 function. */
21601 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21602 goto out;
21603 }
21604
21605 fn_context = decl_function_context (d);
21606 nested = (current_function_decl != NULL_TREE);
21607 vec<tree> omp_privatization_save;
21608 if (nested)
21609 save_omp_privatization_clauses (omp_privatization_save);
21610
21611 if (!fn_context)
21612 push_to_top_level ();
21613 else
21614 {
21615 if (nested)
21616 push_function_context ();
21617 cp_unevaluated_operand = 0;
21618 c_inhibit_evaluation_warnings = 0;
21619 }
21620
21621 /* Mark D as instantiated so that recursive calls to
21622 instantiate_decl do not try to instantiate it again. */
21623 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21624
21625 /* Regenerate the declaration in case the template has been modified
21626 by a subsequent redeclaration. */
21627 regenerate_decl_from_template (d, td);
21628
21629 /* We already set the file and line above. Reset them now in case
21630 they changed as a result of calling regenerate_decl_from_template. */
21631 input_location = DECL_SOURCE_LOCATION (d);
21632
21633 if (VAR_P (d))
21634 {
21635 tree init;
21636 bool const_init = false;
21637
21638 /* Clear out DECL_RTL; whatever was there before may not be right
21639 since we've reset the type of the declaration. */
21640 SET_DECL_RTL (d, NULL);
21641 DECL_IN_AGGR_P (d) = 0;
21642
21643 /* The initializer is placed in DECL_INITIAL by
21644 regenerate_decl_from_template so we don't need to
21645 push/pop_access_scope again here. Pull it out so that
21646 cp_finish_decl can process it. */
21647 init = DECL_INITIAL (d);
21648 DECL_INITIAL (d) = NULL_TREE;
21649 DECL_INITIALIZED_P (d) = 0;
21650
21651 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21652 initializer. That function will defer actual emission until
21653 we have a chance to determine linkage. */
21654 DECL_EXTERNAL (d) = 0;
21655
21656 /* Enter the scope of D so that access-checking works correctly. */
21657 bool enter_context = DECL_CLASS_SCOPE_P (d);
21658 if (enter_context)
21659 push_nested_class (DECL_CONTEXT (d));
21660
21661 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21662 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21663
21664 if (enter_context)
21665 pop_nested_class ();
21666
21667 if (variable_template_p (td))
21668 note_variable_template_instantiation (d);
21669 }
21670 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21671 synthesize_method (d);
21672 else if (TREE_CODE (d) == FUNCTION_DECL)
21673 {
21674 hash_map<tree, tree> *saved_local_specializations;
21675 tree subst_decl;
21676 tree tmpl_parm;
21677 tree spec_parm;
21678 tree block = NULL_TREE;
21679
21680 /* Save away the current list, in case we are instantiating one
21681 template from within the body of another. */
21682 saved_local_specializations = local_specializations;
21683
21684 /* Set up the list of local specializations. */
21685 local_specializations = new hash_map<tree, tree>;
21686
21687 /* Set up context. */
21688 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21689 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21690 block = push_stmt_list ();
21691 else
21692 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21693
21694 /* Some typedefs referenced from within the template code need to be
21695 access checked at template instantiation time, i.e now. These
21696 types were added to the template at parsing time. Let's get those
21697 and perform the access checks then. */
21698 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21699 gen_args);
21700
21701 /* Create substitution entries for the parameters. */
21702 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21703 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21704 spec_parm = DECL_ARGUMENTS (d);
21705 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21706 {
21707 register_local_specialization (spec_parm, tmpl_parm);
21708 spec_parm = skip_artificial_parms_for (d, spec_parm);
21709 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21710 }
21711 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21712 {
21713 if (!DECL_PACK_P (tmpl_parm))
21714 {
21715 register_local_specialization (spec_parm, tmpl_parm);
21716 spec_parm = DECL_CHAIN (spec_parm);
21717 }
21718 else
21719 {
21720 /* Register the (value) argument pack as a specialization of
21721 TMPL_PARM, then move on. */
21722 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21723 register_local_specialization (argpack, tmpl_parm);
21724 }
21725 }
21726 gcc_assert (!spec_parm);
21727
21728 /* Substitute into the body of the function. */
21729 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21730 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
21731 tf_warning_or_error, tmpl);
21732 else
21733 {
21734 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
21735 tf_warning_or_error, tmpl,
21736 /*integral_constant_expression_p=*/false);
21737
21738 /* Set the current input_location to the end of the function
21739 so that finish_function knows where we are. */
21740 input_location
21741 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
21742
21743 /* Remember if we saw an infinite loop in the template. */
21744 current_function_infinite_loop
21745 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
21746 }
21747
21748 /* We don't need the local specializations any more. */
21749 delete local_specializations;
21750 local_specializations = saved_local_specializations;
21751
21752 /* Finish the function. */
21753 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21754 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21755 DECL_SAVED_TREE (d) = pop_stmt_list (block);
21756 else
21757 {
21758 d = finish_function (0);
21759 expand_or_defer_fn (d);
21760 }
21761
21762 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21763 cp_check_omp_declare_reduction (d);
21764 }
21765
21766 /* We're not deferring instantiation any more. */
21767 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
21768
21769 if (!fn_context)
21770 pop_from_top_level ();
21771 else if (nested)
21772 pop_function_context ();
21773
21774 out:
21775 input_location = saved_loc;
21776 cp_unevaluated_operand = saved_unevaluated_operand;
21777 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
21778 pop_deferring_access_checks ();
21779 pop_tinst_level ();
21780 if (nested)
21781 restore_omp_privatization_clauses (omp_privatization_save);
21782
21783 timevar_pop (TV_TEMPLATE_INST);
21784
21785 return d;
21786 }
21787
21788 /* Run through the list of templates that we wish we could
21789 instantiate, and instantiate any we can. RETRIES is the
21790 number of times we retry pending template instantiation. */
21791
21792 void
21793 instantiate_pending_templates (int retries)
21794 {
21795 int reconsider;
21796 location_t saved_loc = input_location;
21797
21798 /* Instantiating templates may trigger vtable generation. This in turn
21799 may require further template instantiations. We place a limit here
21800 to avoid infinite loop. */
21801 if (pending_templates && retries >= max_tinst_depth)
21802 {
21803 tree decl = pending_templates->tinst->decl;
21804
21805 fatal_error (input_location,
21806 "template instantiation depth exceeds maximum of %d"
21807 " instantiating %q+D, possibly from virtual table generation"
21808 " (use -ftemplate-depth= to increase the maximum)",
21809 max_tinst_depth, decl);
21810 if (TREE_CODE (decl) == FUNCTION_DECL)
21811 /* Pretend that we defined it. */
21812 DECL_INITIAL (decl) = error_mark_node;
21813 return;
21814 }
21815
21816 do
21817 {
21818 struct pending_template **t = &pending_templates;
21819 struct pending_template *last = NULL;
21820 reconsider = 0;
21821 while (*t)
21822 {
21823 tree instantiation = reopen_tinst_level ((*t)->tinst);
21824 bool complete = false;
21825
21826 if (TYPE_P (instantiation))
21827 {
21828 tree fn;
21829
21830 if (!COMPLETE_TYPE_P (instantiation))
21831 {
21832 instantiate_class_template (instantiation);
21833 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
21834 for (fn = TYPE_METHODS (instantiation);
21835 fn;
21836 fn = TREE_CHAIN (fn))
21837 if (! DECL_ARTIFICIAL (fn))
21838 instantiate_decl (fn,
21839 /*defer_ok=*/0,
21840 /*expl_inst_class_mem_p=*/false);
21841 if (COMPLETE_TYPE_P (instantiation))
21842 reconsider = 1;
21843 }
21844
21845 complete = COMPLETE_TYPE_P (instantiation);
21846 }
21847 else
21848 {
21849 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
21850 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
21851 {
21852 instantiation
21853 = instantiate_decl (instantiation,
21854 /*defer_ok=*/0,
21855 /*expl_inst_class_mem_p=*/false);
21856 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
21857 reconsider = 1;
21858 }
21859
21860 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
21861 || DECL_TEMPLATE_INSTANTIATED (instantiation));
21862 }
21863
21864 if (complete)
21865 /* If INSTANTIATION has been instantiated, then we don't
21866 need to consider it again in the future. */
21867 *t = (*t)->next;
21868 else
21869 {
21870 last = *t;
21871 t = &(*t)->next;
21872 }
21873 tinst_depth = 0;
21874 current_tinst_level = NULL;
21875 }
21876 last_pending_template = last;
21877 }
21878 while (reconsider);
21879
21880 input_location = saved_loc;
21881 }
21882
21883 /* Substitute ARGVEC into T, which is a list of initializers for
21884 either base class or a non-static data member. The TREE_PURPOSEs
21885 are DECLs, and the TREE_VALUEs are the initializer values. Used by
21886 instantiate_decl. */
21887
21888 static tree
21889 tsubst_initializer_list (tree t, tree argvec)
21890 {
21891 tree inits = NULL_TREE;
21892
21893 for (; t; t = TREE_CHAIN (t))
21894 {
21895 tree decl;
21896 tree init;
21897 tree expanded_bases = NULL_TREE;
21898 tree expanded_arguments = NULL_TREE;
21899 int i, len = 1;
21900
21901 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
21902 {
21903 tree expr;
21904 tree arg;
21905
21906 /* Expand the base class expansion type into separate base
21907 classes. */
21908 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
21909 tf_warning_or_error,
21910 NULL_TREE);
21911 if (expanded_bases == error_mark_node)
21912 continue;
21913
21914 /* We'll be building separate TREE_LISTs of arguments for
21915 each base. */
21916 len = TREE_VEC_LENGTH (expanded_bases);
21917 expanded_arguments = make_tree_vec (len);
21918 for (i = 0; i < len; i++)
21919 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
21920
21921 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
21922 expand each argument in the TREE_VALUE of t. */
21923 expr = make_node (EXPR_PACK_EXPANSION);
21924 PACK_EXPANSION_LOCAL_P (expr) = true;
21925 PACK_EXPANSION_PARAMETER_PACKS (expr) =
21926 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
21927
21928 if (TREE_VALUE (t) == void_type_node)
21929 /* VOID_TYPE_NODE is used to indicate
21930 value-initialization. */
21931 {
21932 for (i = 0; i < len; i++)
21933 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
21934 }
21935 else
21936 {
21937 /* Substitute parameter packs into each argument in the
21938 TREE_LIST. */
21939 in_base_initializer = 1;
21940 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
21941 {
21942 tree expanded_exprs;
21943
21944 /* Expand the argument. */
21945 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
21946 expanded_exprs
21947 = tsubst_pack_expansion (expr, argvec,
21948 tf_warning_or_error,
21949 NULL_TREE);
21950 if (expanded_exprs == error_mark_node)
21951 continue;
21952
21953 /* Prepend each of the expanded expressions to the
21954 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
21955 for (i = 0; i < len; i++)
21956 {
21957 TREE_VEC_ELT (expanded_arguments, i) =
21958 tree_cons (NULL_TREE,
21959 TREE_VEC_ELT (expanded_exprs, i),
21960 TREE_VEC_ELT (expanded_arguments, i));
21961 }
21962 }
21963 in_base_initializer = 0;
21964
21965 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
21966 since we built them backwards. */
21967 for (i = 0; i < len; i++)
21968 {
21969 TREE_VEC_ELT (expanded_arguments, i) =
21970 nreverse (TREE_VEC_ELT (expanded_arguments, i));
21971 }
21972 }
21973 }
21974
21975 for (i = 0; i < len; ++i)
21976 {
21977 if (expanded_bases)
21978 {
21979 decl = TREE_VEC_ELT (expanded_bases, i);
21980 decl = expand_member_init (decl);
21981 init = TREE_VEC_ELT (expanded_arguments, i);
21982 }
21983 else
21984 {
21985 tree tmp;
21986 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
21987 tf_warning_or_error, NULL_TREE);
21988
21989 decl = expand_member_init (decl);
21990 if (decl && !DECL_P (decl))
21991 in_base_initializer = 1;
21992
21993 init = TREE_VALUE (t);
21994 tmp = init;
21995 if (init != void_type_node)
21996 init = tsubst_expr (init, argvec,
21997 tf_warning_or_error, NULL_TREE,
21998 /*integral_constant_expression_p=*/false);
21999 if (init == NULL_TREE && tmp != NULL_TREE)
22000 /* If we had an initializer but it instantiated to nothing,
22001 value-initialize the object. This will only occur when
22002 the initializer was a pack expansion where the parameter
22003 packs used in that expansion were of length zero. */
22004 init = void_type_node;
22005 in_base_initializer = 0;
22006 }
22007
22008 if (decl)
22009 {
22010 init = build_tree_list (decl, init);
22011 TREE_CHAIN (init) = inits;
22012 inits = init;
22013 }
22014 }
22015 }
22016 return inits;
22017 }
22018
22019 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22020
22021 static void
22022 set_current_access_from_decl (tree decl)
22023 {
22024 if (TREE_PRIVATE (decl))
22025 current_access_specifier = access_private_node;
22026 else if (TREE_PROTECTED (decl))
22027 current_access_specifier = access_protected_node;
22028 else
22029 current_access_specifier = access_public_node;
22030 }
22031
22032 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22033 is the instantiation (which should have been created with
22034 start_enum) and ARGS are the template arguments to use. */
22035
22036 static void
22037 tsubst_enum (tree tag, tree newtag, tree args)
22038 {
22039 tree e;
22040
22041 if (SCOPED_ENUM_P (newtag))
22042 begin_scope (sk_scoped_enum, newtag);
22043
22044 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22045 {
22046 tree value;
22047 tree decl;
22048
22049 decl = TREE_VALUE (e);
22050 /* Note that in a template enum, the TREE_VALUE is the
22051 CONST_DECL, not the corresponding INTEGER_CST. */
22052 value = tsubst_expr (DECL_INITIAL (decl),
22053 args, tf_warning_or_error, NULL_TREE,
22054 /*integral_constant_expression_p=*/true);
22055
22056 /* Give this enumeration constant the correct access. */
22057 set_current_access_from_decl (decl);
22058
22059 /* Actually build the enumerator itself. Here we're assuming that
22060 enumerators can't have dependent attributes. */
22061 build_enumerator (DECL_NAME (decl), value, newtag,
22062 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22063 }
22064
22065 if (SCOPED_ENUM_P (newtag))
22066 finish_scope ();
22067
22068 finish_enum_value_list (newtag);
22069 finish_enum (newtag);
22070
22071 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22072 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22073 }
22074
22075 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22076 its type -- but without substituting the innermost set of template
22077 arguments. So, innermost set of template parameters will appear in
22078 the type. */
22079
22080 tree
22081 get_mostly_instantiated_function_type (tree decl)
22082 {
22083 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22084 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22085 }
22086
22087 /* Return truthvalue if we're processing a template different from
22088 the last one involved in diagnostics. */
22089 bool
22090 problematic_instantiation_changed (void)
22091 {
22092 return current_tinst_level != last_error_tinst_level;
22093 }
22094
22095 /* Remember current template involved in diagnostics. */
22096 void
22097 record_last_problematic_instantiation (void)
22098 {
22099 last_error_tinst_level = current_tinst_level;
22100 }
22101
22102 struct tinst_level *
22103 current_instantiation (void)
22104 {
22105 return current_tinst_level;
22106 }
22107
22108 /* Return TRUE if current_function_decl is being instantiated, false
22109 otherwise. */
22110
22111 bool
22112 instantiating_current_function_p (void)
22113 {
22114 return (current_instantiation ()
22115 && current_instantiation ()->decl == current_function_decl);
22116 }
22117
22118 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22119 type. Return zero for ok, nonzero for disallowed. Issue error and
22120 warning messages under control of COMPLAIN. */
22121
22122 static int
22123 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22124 {
22125 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22126 return 0;
22127 else if (POINTER_TYPE_P (type))
22128 return 0;
22129 else if (TYPE_PTRMEM_P (type))
22130 return 0;
22131 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22132 return 0;
22133 else if (TREE_CODE (type) == TYPENAME_TYPE)
22134 return 0;
22135 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22136 return 0;
22137 else if (TREE_CODE (type) == NULLPTR_TYPE)
22138 return 0;
22139 /* A bound template template parm could later be instantiated to have a valid
22140 nontype parm type via an alias template. */
22141 else if (cxx_dialect >= cxx11
22142 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22143 return 0;
22144
22145 if (complain & tf_error)
22146 {
22147 if (type == error_mark_node)
22148 inform (input_location, "invalid template non-type parameter");
22149 else
22150 error ("%q#T is not a valid type for a template non-type parameter",
22151 type);
22152 }
22153 return 1;
22154 }
22155
22156 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22157 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22158
22159 static bool
22160 dependent_type_p_r (tree type)
22161 {
22162 tree scope;
22163
22164 /* [temp.dep.type]
22165
22166 A type is dependent if it is:
22167
22168 -- a template parameter. Template template parameters are types
22169 for us (since TYPE_P holds true for them) so we handle
22170 them here. */
22171 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22172 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22173 return true;
22174 /* -- a qualified-id with a nested-name-specifier which contains a
22175 class-name that names a dependent type or whose unqualified-id
22176 names a dependent type. */
22177 if (TREE_CODE (type) == TYPENAME_TYPE)
22178 return true;
22179
22180 /* An alias template specialization can be dependent even if the
22181 resulting type is not. */
22182 if (dependent_alias_template_spec_p (type))
22183 return true;
22184
22185 /* -- a cv-qualified type where the cv-unqualified type is
22186 dependent.
22187 No code is necessary for this bullet; the code below handles
22188 cv-qualified types, and we don't want to strip aliases with
22189 TYPE_MAIN_VARIANT because of DR 1558. */
22190 /* -- a compound type constructed from any dependent type. */
22191 if (TYPE_PTRMEM_P (type))
22192 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22193 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22194 (type)));
22195 else if (TYPE_PTR_P (type)
22196 || TREE_CODE (type) == REFERENCE_TYPE)
22197 return dependent_type_p (TREE_TYPE (type));
22198 else if (TREE_CODE (type) == FUNCTION_TYPE
22199 || TREE_CODE (type) == METHOD_TYPE)
22200 {
22201 tree arg_type;
22202
22203 if (dependent_type_p (TREE_TYPE (type)))
22204 return true;
22205 for (arg_type = TYPE_ARG_TYPES (type);
22206 arg_type;
22207 arg_type = TREE_CHAIN (arg_type))
22208 if (dependent_type_p (TREE_VALUE (arg_type)))
22209 return true;
22210 return false;
22211 }
22212 /* -- an array type constructed from any dependent type or whose
22213 size is specified by a constant expression that is
22214 value-dependent.
22215
22216 We checked for type- and value-dependence of the bounds in
22217 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22218 if (TREE_CODE (type) == ARRAY_TYPE)
22219 {
22220 if (TYPE_DOMAIN (type)
22221 && dependent_type_p (TYPE_DOMAIN (type)))
22222 return true;
22223 return dependent_type_p (TREE_TYPE (type));
22224 }
22225
22226 /* -- a template-id in which either the template name is a template
22227 parameter ... */
22228 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22229 return true;
22230 /* ... or any of the template arguments is a dependent type or
22231 an expression that is type-dependent or value-dependent. */
22232 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22233 && (any_dependent_template_arguments_p
22234 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22235 return true;
22236
22237 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22238 dependent; if the argument of the `typeof' expression is not
22239 type-dependent, then it should already been have resolved. */
22240 if (TREE_CODE (type) == TYPEOF_TYPE
22241 || TREE_CODE (type) == DECLTYPE_TYPE
22242 || TREE_CODE (type) == UNDERLYING_TYPE)
22243 return true;
22244
22245 /* A template argument pack is dependent if any of its packed
22246 arguments are. */
22247 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22248 {
22249 tree args = ARGUMENT_PACK_ARGS (type);
22250 int i, len = TREE_VEC_LENGTH (args);
22251 for (i = 0; i < len; ++i)
22252 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22253 return true;
22254 }
22255
22256 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22257 be template parameters. */
22258 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22259 return true;
22260
22261 /* The standard does not specifically mention types that are local
22262 to template functions or local classes, but they should be
22263 considered dependent too. For example:
22264
22265 template <int I> void f() {
22266 enum E { a = I };
22267 S<sizeof (E)> s;
22268 }
22269
22270 The size of `E' cannot be known until the value of `I' has been
22271 determined. Therefore, `E' must be considered dependent. */
22272 scope = TYPE_CONTEXT (type);
22273 if (scope && TYPE_P (scope))
22274 return dependent_type_p (scope);
22275 /* Don't use type_dependent_expression_p here, as it can lead
22276 to infinite recursion trying to determine whether a lambda
22277 nested in a lambda is dependent (c++/47687). */
22278 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22279 && DECL_LANG_SPECIFIC (scope)
22280 && DECL_TEMPLATE_INFO (scope)
22281 && (any_dependent_template_arguments_p
22282 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22283 return true;
22284
22285 /* Other types are non-dependent. */
22286 return false;
22287 }
22288
22289 /* Returns TRUE if TYPE is dependent, in the sense of
22290 [temp.dep.type]. Note that a NULL type is considered dependent. */
22291
22292 bool
22293 dependent_type_p (tree type)
22294 {
22295 /* If there are no template parameters in scope, then there can't be
22296 any dependent types. */
22297 if (!processing_template_decl)
22298 {
22299 /* If we are not processing a template, then nobody should be
22300 providing us with a dependent type. */
22301 gcc_assert (type);
22302 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22303 return false;
22304 }
22305
22306 /* If the type is NULL, we have not computed a type for the entity
22307 in question; in that case, the type is dependent. */
22308 if (!type)
22309 return true;
22310
22311 /* Erroneous types can be considered non-dependent. */
22312 if (type == error_mark_node)
22313 return false;
22314
22315 /* If we have not already computed the appropriate value for TYPE,
22316 do so now. */
22317 if (!TYPE_DEPENDENT_P_VALID (type))
22318 {
22319 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22320 TYPE_DEPENDENT_P_VALID (type) = 1;
22321 }
22322
22323 return TYPE_DEPENDENT_P (type);
22324 }
22325
22326 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22327 lookup. In other words, a dependent type that is not the current
22328 instantiation. */
22329
22330 bool
22331 dependent_scope_p (tree scope)
22332 {
22333 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22334 && !currently_open_class (scope));
22335 }
22336
22337 /* T is a SCOPE_REF; return whether we need to consider it
22338 instantiation-dependent so that we can check access at instantiation
22339 time even though we know which member it resolves to. */
22340
22341 static bool
22342 instantiation_dependent_scope_ref_p (tree t)
22343 {
22344 if (DECL_P (TREE_OPERAND (t, 1))
22345 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22346 && accessible_in_template_p (TREE_OPERAND (t, 0),
22347 TREE_OPERAND (t, 1)))
22348 return false;
22349 else
22350 return true;
22351 }
22352
22353 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22354 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22355 expression. */
22356
22357 /* Note that this predicate is not appropriate for general expressions;
22358 only constant expressions (that satisfy potential_constant_expression)
22359 can be tested for value dependence. */
22360
22361 bool
22362 value_dependent_expression_p (tree expression)
22363 {
22364 if (!processing_template_decl)
22365 return false;
22366
22367 /* A name declared with a dependent type. */
22368 if (DECL_P (expression) && type_dependent_expression_p (expression))
22369 return true;
22370
22371 switch (TREE_CODE (expression))
22372 {
22373 case IDENTIFIER_NODE:
22374 /* A name that has not been looked up -- must be dependent. */
22375 return true;
22376
22377 case TEMPLATE_PARM_INDEX:
22378 /* A non-type template parm. */
22379 return true;
22380
22381 case CONST_DECL:
22382 /* A non-type template parm. */
22383 if (DECL_TEMPLATE_PARM_P (expression))
22384 return true;
22385 return value_dependent_expression_p (DECL_INITIAL (expression));
22386
22387 case VAR_DECL:
22388 /* A constant with literal type and is initialized
22389 with an expression that is value-dependent.
22390
22391 Note that a non-dependent parenthesized initializer will have
22392 already been replaced with its constant value, so if we see
22393 a TREE_LIST it must be dependent. */
22394 if (DECL_INITIAL (expression)
22395 && decl_constant_var_p (expression)
22396 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22397 /* cp_finish_decl doesn't fold reference initializers. */
22398 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22399 || value_dependent_expression_p (DECL_INITIAL (expression))))
22400 return true;
22401 return false;
22402
22403 case DYNAMIC_CAST_EXPR:
22404 case STATIC_CAST_EXPR:
22405 case CONST_CAST_EXPR:
22406 case REINTERPRET_CAST_EXPR:
22407 case CAST_EXPR:
22408 /* These expressions are value-dependent if the type to which
22409 the cast occurs is dependent or the expression being casted
22410 is value-dependent. */
22411 {
22412 tree type = TREE_TYPE (expression);
22413
22414 if (dependent_type_p (type))
22415 return true;
22416
22417 /* A functional cast has a list of operands. */
22418 expression = TREE_OPERAND (expression, 0);
22419 if (!expression)
22420 {
22421 /* If there are no operands, it must be an expression such
22422 as "int()". This should not happen for aggregate types
22423 because it would form non-constant expressions. */
22424 gcc_assert (cxx_dialect >= cxx11
22425 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22426
22427 return false;
22428 }
22429
22430 if (TREE_CODE (expression) == TREE_LIST)
22431 return any_value_dependent_elements_p (expression);
22432
22433 return value_dependent_expression_p (expression);
22434 }
22435
22436 case SIZEOF_EXPR:
22437 if (SIZEOF_EXPR_TYPE_P (expression))
22438 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22439 /* FALLTHRU */
22440 case ALIGNOF_EXPR:
22441 case TYPEID_EXPR:
22442 /* A `sizeof' expression is value-dependent if the operand is
22443 type-dependent or is a pack expansion. */
22444 expression = TREE_OPERAND (expression, 0);
22445 if (PACK_EXPANSION_P (expression))
22446 return true;
22447 else if (TYPE_P (expression))
22448 return dependent_type_p (expression);
22449 return instantiation_dependent_expression_p (expression);
22450
22451 case AT_ENCODE_EXPR:
22452 /* An 'encode' expression is value-dependent if the operand is
22453 type-dependent. */
22454 expression = TREE_OPERAND (expression, 0);
22455 return dependent_type_p (expression);
22456
22457 case NOEXCEPT_EXPR:
22458 expression = TREE_OPERAND (expression, 0);
22459 return instantiation_dependent_expression_p (expression);
22460
22461 case SCOPE_REF:
22462 /* All instantiation-dependent expressions should also be considered
22463 value-dependent. */
22464 return instantiation_dependent_scope_ref_p (expression);
22465
22466 case COMPONENT_REF:
22467 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22468 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22469
22470 case NONTYPE_ARGUMENT_PACK:
22471 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22472 is value-dependent. */
22473 {
22474 tree values = ARGUMENT_PACK_ARGS (expression);
22475 int i, len = TREE_VEC_LENGTH (values);
22476
22477 for (i = 0; i < len; ++i)
22478 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22479 return true;
22480
22481 return false;
22482 }
22483
22484 case TRAIT_EXPR:
22485 {
22486 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22487 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22488 || (type2 ? dependent_type_p (type2) : false));
22489 }
22490
22491 case MODOP_EXPR:
22492 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22493 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22494
22495 case ARRAY_REF:
22496 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22497 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22498
22499 case ADDR_EXPR:
22500 {
22501 tree op = TREE_OPERAND (expression, 0);
22502 return (value_dependent_expression_p (op)
22503 || has_value_dependent_address (op));
22504 }
22505
22506 case REQUIRES_EXPR:
22507 /* Treat all requires-expressions as value-dependent so
22508 we don't try to fold them. */
22509 return true;
22510
22511 case TYPE_REQ:
22512 return dependent_type_p (TREE_OPERAND (expression, 0));
22513
22514 case CALL_EXPR:
22515 {
22516 tree fn = get_callee_fndecl (expression);
22517 int i, nargs;
22518 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22519 return true;
22520 nargs = call_expr_nargs (expression);
22521 for (i = 0; i < nargs; ++i)
22522 {
22523 tree op = CALL_EXPR_ARG (expression, i);
22524 /* In a call to a constexpr member function, look through the
22525 implicit ADDR_EXPR on the object argument so that it doesn't
22526 cause the call to be considered value-dependent. We also
22527 look through it in potential_constant_expression. */
22528 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22529 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22530 && TREE_CODE (op) == ADDR_EXPR)
22531 op = TREE_OPERAND (op, 0);
22532 if (value_dependent_expression_p (op))
22533 return true;
22534 }
22535 return false;
22536 }
22537
22538 case TEMPLATE_ID_EXPR:
22539 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22540 type-dependent. */
22541 return type_dependent_expression_p (expression)
22542 || variable_concept_p (TREE_OPERAND (expression, 0));
22543
22544 case CONSTRUCTOR:
22545 {
22546 unsigned ix;
22547 tree val;
22548 if (dependent_type_p (TREE_TYPE (expression)))
22549 return true;
22550 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22551 if (value_dependent_expression_p (val))
22552 return true;
22553 return false;
22554 }
22555
22556 case STMT_EXPR:
22557 /* Treat a GNU statement expression as dependent to avoid crashing
22558 under instantiate_non_dependent_expr; it can't be constant. */
22559 return true;
22560
22561 default:
22562 /* A constant expression is value-dependent if any subexpression is
22563 value-dependent. */
22564 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22565 {
22566 case tcc_reference:
22567 case tcc_unary:
22568 case tcc_comparison:
22569 case tcc_binary:
22570 case tcc_expression:
22571 case tcc_vl_exp:
22572 {
22573 int i, len = cp_tree_operand_length (expression);
22574
22575 for (i = 0; i < len; i++)
22576 {
22577 tree t = TREE_OPERAND (expression, i);
22578
22579 /* In some cases, some of the operands may be missing.l
22580 (For example, in the case of PREDECREMENT_EXPR, the
22581 amount to increment by may be missing.) That doesn't
22582 make the expression dependent. */
22583 if (t && value_dependent_expression_p (t))
22584 return true;
22585 }
22586 }
22587 break;
22588 default:
22589 break;
22590 }
22591 break;
22592 }
22593
22594 /* The expression is not value-dependent. */
22595 return false;
22596 }
22597
22598 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22599 [temp.dep.expr]. Note that an expression with no type is
22600 considered dependent. Other parts of the compiler arrange for an
22601 expression with type-dependent subexpressions to have no type, so
22602 this function doesn't have to be fully recursive. */
22603
22604 bool
22605 type_dependent_expression_p (tree expression)
22606 {
22607 if (!processing_template_decl)
22608 return false;
22609
22610 if (expression == NULL_TREE || expression == error_mark_node)
22611 return false;
22612
22613 /* An unresolved name is always dependent. */
22614 if (identifier_p (expression)
22615 || TREE_CODE (expression) == USING_DECL
22616 || TREE_CODE (expression) == WILDCARD_DECL)
22617 return true;
22618
22619 /* A fold expression is type-dependent. */
22620 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22621 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22622 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22623 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22624 return true;
22625
22626 /* Some expression forms are never type-dependent. */
22627 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22628 || TREE_CODE (expression) == SIZEOF_EXPR
22629 || TREE_CODE (expression) == ALIGNOF_EXPR
22630 || TREE_CODE (expression) == AT_ENCODE_EXPR
22631 || TREE_CODE (expression) == NOEXCEPT_EXPR
22632 || TREE_CODE (expression) == TRAIT_EXPR
22633 || TREE_CODE (expression) == TYPEID_EXPR
22634 || TREE_CODE (expression) == DELETE_EXPR
22635 || TREE_CODE (expression) == VEC_DELETE_EXPR
22636 || TREE_CODE (expression) == THROW_EXPR
22637 || TREE_CODE (expression) == REQUIRES_EXPR)
22638 return false;
22639
22640 /* The types of these expressions depends only on the type to which
22641 the cast occurs. */
22642 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22643 || TREE_CODE (expression) == STATIC_CAST_EXPR
22644 || TREE_CODE (expression) == CONST_CAST_EXPR
22645 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22646 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22647 || TREE_CODE (expression) == CAST_EXPR)
22648 return dependent_type_p (TREE_TYPE (expression));
22649
22650 /* The types of these expressions depends only on the type created
22651 by the expression. */
22652 if (TREE_CODE (expression) == NEW_EXPR
22653 || TREE_CODE (expression) == VEC_NEW_EXPR)
22654 {
22655 /* For NEW_EXPR tree nodes created inside a template, either
22656 the object type itself or a TREE_LIST may appear as the
22657 operand 1. */
22658 tree type = TREE_OPERAND (expression, 1);
22659 if (TREE_CODE (type) == TREE_LIST)
22660 /* This is an array type. We need to check array dimensions
22661 as well. */
22662 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22663 || value_dependent_expression_p
22664 (TREE_OPERAND (TREE_VALUE (type), 1));
22665 else
22666 return dependent_type_p (type);
22667 }
22668
22669 if (TREE_CODE (expression) == SCOPE_REF)
22670 {
22671 tree scope = TREE_OPERAND (expression, 0);
22672 tree name = TREE_OPERAND (expression, 1);
22673
22674 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22675 contains an identifier associated by name lookup with one or more
22676 declarations declared with a dependent type, or...a
22677 nested-name-specifier or qualified-id that names a member of an
22678 unknown specialization. */
22679 return (type_dependent_expression_p (name)
22680 || dependent_scope_p (scope));
22681 }
22682
22683 if (TREE_CODE (expression) == FUNCTION_DECL
22684 && DECL_LANG_SPECIFIC (expression)
22685 && DECL_TEMPLATE_INFO (expression)
22686 && (any_dependent_template_arguments_p
22687 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
22688 return true;
22689
22690 if (TREE_CODE (expression) == TEMPLATE_DECL
22691 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22692 return false;
22693
22694 if (TREE_CODE (expression) == STMT_EXPR)
22695 expression = stmt_expr_value_expr (expression);
22696
22697 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22698 {
22699 tree elt;
22700 unsigned i;
22701
22702 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22703 {
22704 if (type_dependent_expression_p (elt))
22705 return true;
22706 }
22707 return false;
22708 }
22709
22710 /* A static data member of the current instantiation with incomplete
22711 array type is type-dependent, as the definition and specializations
22712 can have different bounds. */
22713 if (VAR_P (expression)
22714 && DECL_CLASS_SCOPE_P (expression)
22715 && dependent_type_p (DECL_CONTEXT (expression))
22716 && VAR_HAD_UNKNOWN_BOUND (expression))
22717 return true;
22718
22719 /* An array of unknown bound depending on a variadic parameter, eg:
22720
22721 template<typename... Args>
22722 void foo (Args... args)
22723 {
22724 int arr[] = { args... };
22725 }
22726
22727 template<int... vals>
22728 void bar ()
22729 {
22730 int arr[] = { vals... };
22731 }
22732
22733 If the array has no length and has an initializer, it must be that
22734 we couldn't determine its length in cp_complete_array_type because
22735 it is dependent. */
22736 if (VAR_P (expression)
22737 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
22738 && !TYPE_DOMAIN (TREE_TYPE (expression))
22739 && DECL_INITIAL (expression))
22740 return true;
22741
22742 /* A variable template specialization is type-dependent if it has any
22743 dependent template arguments. */
22744 if (VAR_P (expression)
22745 && DECL_LANG_SPECIFIC (expression)
22746 && DECL_TEMPLATE_INFO (expression)
22747 && variable_template_p (DECL_TI_TEMPLATE (expression)))
22748 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22749
22750 /* Always dependent, on the number of arguments if nothing else. */
22751 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
22752 return true;
22753
22754 if (TREE_TYPE (expression) == unknown_type_node)
22755 {
22756 if (TREE_CODE (expression) == ADDR_EXPR)
22757 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
22758 if (TREE_CODE (expression) == COMPONENT_REF
22759 || TREE_CODE (expression) == OFFSET_REF)
22760 {
22761 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
22762 return true;
22763 expression = TREE_OPERAND (expression, 1);
22764 if (identifier_p (expression))
22765 return false;
22766 }
22767 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
22768 if (TREE_CODE (expression) == SCOPE_REF)
22769 return false;
22770
22771 if (BASELINK_P (expression))
22772 {
22773 if (BASELINK_OPTYPE (expression)
22774 && dependent_type_p (BASELINK_OPTYPE (expression)))
22775 return true;
22776 expression = BASELINK_FUNCTIONS (expression);
22777 }
22778
22779 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
22780 {
22781 if (any_dependent_template_arguments_p
22782 (TREE_OPERAND (expression, 1)))
22783 return true;
22784 expression = TREE_OPERAND (expression, 0);
22785 if (identifier_p (expression))
22786 return true;
22787 }
22788
22789 gcc_assert (TREE_CODE (expression) == OVERLOAD
22790 || TREE_CODE (expression) == FUNCTION_DECL);
22791
22792 while (expression)
22793 {
22794 if (type_dependent_expression_p (OVL_CURRENT (expression)))
22795 return true;
22796 expression = OVL_NEXT (expression);
22797 }
22798 return false;
22799 }
22800
22801 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
22802
22803 return (dependent_type_p (TREE_TYPE (expression)));
22804 }
22805
22806 /* walk_tree callback function for instantiation_dependent_expression_p,
22807 below. Returns non-zero if a dependent subexpression is found. */
22808
22809 static tree
22810 instantiation_dependent_r (tree *tp, int *walk_subtrees,
22811 void * /*data*/)
22812 {
22813 if (TYPE_P (*tp))
22814 {
22815 /* We don't have to worry about decltype currently because decltype
22816 of an instantiation-dependent expr is a dependent type. This
22817 might change depending on the resolution of DR 1172. */
22818 *walk_subtrees = false;
22819 return NULL_TREE;
22820 }
22821 enum tree_code code = TREE_CODE (*tp);
22822 switch (code)
22823 {
22824 /* Don't treat an argument list as dependent just because it has no
22825 TREE_TYPE. */
22826 case TREE_LIST:
22827 case TREE_VEC:
22828 return NULL_TREE;
22829
22830 case VAR_DECL:
22831 case CONST_DECL:
22832 /* A constant with a dependent initializer is dependent. */
22833 if (value_dependent_expression_p (*tp))
22834 return *tp;
22835 break;
22836
22837 case TEMPLATE_PARM_INDEX:
22838 return *tp;
22839
22840 /* Handle expressions with type operands. */
22841 case SIZEOF_EXPR:
22842 case ALIGNOF_EXPR:
22843 case TYPEID_EXPR:
22844 case AT_ENCODE_EXPR:
22845 {
22846 tree op = TREE_OPERAND (*tp, 0);
22847 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
22848 op = TREE_TYPE (op);
22849 if (TYPE_P (op))
22850 {
22851 if (dependent_type_p (op))
22852 return *tp;
22853 else
22854 {
22855 *walk_subtrees = false;
22856 return NULL_TREE;
22857 }
22858 }
22859 break;
22860 }
22861
22862 case TRAIT_EXPR:
22863 if (value_dependent_expression_p (*tp))
22864 return *tp;
22865 *walk_subtrees = false;
22866 return NULL_TREE;
22867
22868 case COMPONENT_REF:
22869 if (identifier_p (TREE_OPERAND (*tp, 1)))
22870 /* In a template, finish_class_member_access_expr creates a
22871 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
22872 type-dependent, so that we can check access control at
22873 instantiation time (PR 42277). See also Core issue 1273. */
22874 return *tp;
22875 break;
22876
22877 case SCOPE_REF:
22878 if (instantiation_dependent_scope_ref_p (*tp))
22879 return *tp;
22880 else
22881 break;
22882
22883 /* Treat statement-expressions as dependent. */
22884 case BIND_EXPR:
22885 return *tp;
22886
22887 /* Treat requires-expressions as dependent. */
22888 case REQUIRES_EXPR:
22889 return *tp;
22890
22891 case CALL_EXPR:
22892 /* Treat calls to function concepts as dependent. */
22893 if (function_concept_check_p (*tp))
22894 return *tp;
22895 break;
22896
22897 case TEMPLATE_ID_EXPR:
22898 /* And variable concepts. */
22899 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
22900 return *tp;
22901 break;
22902
22903 default:
22904 break;
22905 }
22906
22907 if (type_dependent_expression_p (*tp))
22908 return *tp;
22909 else
22910 return NULL_TREE;
22911 }
22912
22913 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
22914 sense defined by the ABI:
22915
22916 "An expression is instantiation-dependent if it is type-dependent
22917 or value-dependent, or it has a subexpression that is type-dependent
22918 or value-dependent." */
22919
22920 bool
22921 instantiation_dependent_expression_p (tree expression)
22922 {
22923 tree result;
22924
22925 if (!processing_template_decl)
22926 return false;
22927
22928 if (expression == error_mark_node)
22929 return false;
22930
22931 result = cp_walk_tree_without_duplicates (&expression,
22932 instantiation_dependent_r, NULL);
22933 return result != NULL_TREE;
22934 }
22935
22936 /* Like type_dependent_expression_p, but it also works while not processing
22937 a template definition, i.e. during substitution or mangling. */
22938
22939 bool
22940 type_dependent_expression_p_push (tree expr)
22941 {
22942 bool b;
22943 ++processing_template_decl;
22944 b = type_dependent_expression_p (expr);
22945 --processing_template_decl;
22946 return b;
22947 }
22948
22949 /* Returns TRUE if ARGS contains a type-dependent expression. */
22950
22951 bool
22952 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
22953 {
22954 unsigned int i;
22955 tree arg;
22956
22957 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
22958 {
22959 if (type_dependent_expression_p (arg))
22960 return true;
22961 }
22962 return false;
22963 }
22964
22965 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22966 expressions) contains any type-dependent expressions. */
22967
22968 bool
22969 any_type_dependent_elements_p (const_tree list)
22970 {
22971 for (; list; list = TREE_CHAIN (list))
22972 if (type_dependent_expression_p (TREE_VALUE (list)))
22973 return true;
22974
22975 return false;
22976 }
22977
22978 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22979 expressions) contains any value-dependent expressions. */
22980
22981 bool
22982 any_value_dependent_elements_p (const_tree list)
22983 {
22984 for (; list; list = TREE_CHAIN (list))
22985 if (value_dependent_expression_p (TREE_VALUE (list)))
22986 return true;
22987
22988 return false;
22989 }
22990
22991 /* Returns TRUE if the ARG (a template argument) is dependent. */
22992
22993 bool
22994 dependent_template_arg_p (tree arg)
22995 {
22996 if (!processing_template_decl)
22997 return false;
22998
22999 /* Assume a template argument that was wrongly written by the user
23000 is dependent. This is consistent with what
23001 any_dependent_template_arguments_p [that calls this function]
23002 does. */
23003 if (!arg || arg == error_mark_node)
23004 return true;
23005
23006 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23007 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23008
23009 if (TREE_CODE (arg) == TEMPLATE_DECL
23010 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23011 return dependent_template_p (arg);
23012 else if (ARGUMENT_PACK_P (arg))
23013 {
23014 tree args = ARGUMENT_PACK_ARGS (arg);
23015 int i, len = TREE_VEC_LENGTH (args);
23016 for (i = 0; i < len; ++i)
23017 {
23018 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23019 return true;
23020 }
23021
23022 return false;
23023 }
23024 else if (TYPE_P (arg))
23025 return dependent_type_p (arg);
23026 else
23027 return (type_dependent_expression_p (arg)
23028 || value_dependent_expression_p (arg));
23029 }
23030
23031 /* Returns true if ARGS (a collection of template arguments) contains
23032 any types that require structural equality testing. */
23033
23034 bool
23035 any_template_arguments_need_structural_equality_p (tree args)
23036 {
23037 int i;
23038 int j;
23039
23040 if (!args)
23041 return false;
23042 if (args == error_mark_node)
23043 return true;
23044
23045 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23046 {
23047 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23048 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23049 {
23050 tree arg = TREE_VEC_ELT (level, j);
23051 tree packed_args = NULL_TREE;
23052 int k, len = 1;
23053
23054 if (ARGUMENT_PACK_P (arg))
23055 {
23056 /* Look inside the argument pack. */
23057 packed_args = ARGUMENT_PACK_ARGS (arg);
23058 len = TREE_VEC_LENGTH (packed_args);
23059 }
23060
23061 for (k = 0; k < len; ++k)
23062 {
23063 if (packed_args)
23064 arg = TREE_VEC_ELT (packed_args, k);
23065
23066 if (error_operand_p (arg))
23067 return true;
23068 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23069 continue;
23070 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23071 return true;
23072 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23073 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23074 return true;
23075 }
23076 }
23077 }
23078
23079 return false;
23080 }
23081
23082 /* Returns true if ARGS (a collection of template arguments) contains
23083 any dependent arguments. */
23084
23085 bool
23086 any_dependent_template_arguments_p (const_tree args)
23087 {
23088 int i;
23089 int j;
23090
23091 if (!args)
23092 return false;
23093 if (args == error_mark_node)
23094 return true;
23095
23096 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23097 {
23098 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23099 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23100 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23101 return true;
23102 }
23103
23104 return false;
23105 }
23106
23107 /* Returns TRUE if the template TMPL is dependent. */
23108
23109 bool
23110 dependent_template_p (tree tmpl)
23111 {
23112 if (TREE_CODE (tmpl) == OVERLOAD)
23113 {
23114 while (tmpl)
23115 {
23116 if (dependent_template_p (OVL_CURRENT (tmpl)))
23117 return true;
23118 tmpl = OVL_NEXT (tmpl);
23119 }
23120 return false;
23121 }
23122
23123 /* Template template parameters are dependent. */
23124 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23125 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23126 return true;
23127 /* So are names that have not been looked up. */
23128 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23129 return true;
23130 /* So are member templates of dependent classes. */
23131 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
23132 return dependent_type_p (DECL_CONTEXT (tmpl));
23133 return false;
23134 }
23135
23136 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23137
23138 bool
23139 dependent_template_id_p (tree tmpl, tree args)
23140 {
23141 return (dependent_template_p (tmpl)
23142 || any_dependent_template_arguments_p (args));
23143 }
23144
23145 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23146 are dependent. */
23147
23148 bool
23149 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23150 {
23151 int i;
23152
23153 if (!processing_template_decl)
23154 return false;
23155
23156 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23157 {
23158 tree decl = TREE_VEC_ELT (declv, i);
23159 tree init = TREE_VEC_ELT (initv, i);
23160 tree cond = TREE_VEC_ELT (condv, i);
23161 tree incr = TREE_VEC_ELT (incrv, i);
23162
23163 if (type_dependent_expression_p (decl)
23164 || TREE_CODE (decl) == SCOPE_REF)
23165 return true;
23166
23167 if (init && type_dependent_expression_p (init))
23168 return true;
23169
23170 if (type_dependent_expression_p (cond))
23171 return true;
23172
23173 if (COMPARISON_CLASS_P (cond)
23174 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23175 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23176 return true;
23177
23178 if (TREE_CODE (incr) == MODOP_EXPR)
23179 {
23180 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23181 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23182 return true;
23183 }
23184 else if (type_dependent_expression_p (incr))
23185 return true;
23186 else if (TREE_CODE (incr) == MODIFY_EXPR)
23187 {
23188 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23189 return true;
23190 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23191 {
23192 tree t = TREE_OPERAND (incr, 1);
23193 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23194 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23195 return true;
23196 }
23197 }
23198 }
23199
23200 return false;
23201 }
23202
23203 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23204 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23205 no such TYPE can be found. Note that this function peers inside
23206 uninstantiated templates and therefore should be used only in
23207 extremely limited situations. ONLY_CURRENT_P restricts this
23208 peering to the currently open classes hierarchy (which is required
23209 when comparing types). */
23210
23211 tree
23212 resolve_typename_type (tree type, bool only_current_p)
23213 {
23214 tree scope;
23215 tree name;
23216 tree decl;
23217 int quals;
23218 tree pushed_scope;
23219 tree result;
23220
23221 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23222
23223 scope = TYPE_CONTEXT (type);
23224 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23225 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23226 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23227 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23228 identifier of the TYPENAME_TYPE anymore.
23229 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23230 TYPENAME_TYPE instead, we avoid messing up with a possible
23231 typedef variant case. */
23232 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23233
23234 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23235 it first before we can figure out what NAME refers to. */
23236 if (TREE_CODE (scope) == TYPENAME_TYPE)
23237 {
23238 if (TYPENAME_IS_RESOLVING_P (scope))
23239 /* Given a class template A with a dependent base with nested type C,
23240 typedef typename A::C::C C will land us here, as trying to resolve
23241 the initial A::C leads to the local C typedef, which leads back to
23242 A::C::C. So we break the recursion now. */
23243 return type;
23244 else
23245 scope = resolve_typename_type (scope, only_current_p);
23246 }
23247 /* If we don't know what SCOPE refers to, then we cannot resolve the
23248 TYPENAME_TYPE. */
23249 if (TREE_CODE (scope) == TYPENAME_TYPE)
23250 return type;
23251 /* If the SCOPE is a template type parameter, we have no way of
23252 resolving the name. */
23253 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23254 return type;
23255 /* If the SCOPE is not the current instantiation, there's no reason
23256 to look inside it. */
23257 if (only_current_p && !currently_open_class (scope))
23258 return type;
23259 /* If this is a typedef, we don't want to look inside (c++/11987). */
23260 if (typedef_variant_p (type))
23261 return type;
23262 /* If SCOPE isn't the template itself, it will not have a valid
23263 TYPE_FIELDS list. */
23264 if (CLASS_TYPE_P (scope)
23265 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23266 /* scope is either the template itself or a compatible instantiation
23267 like X<T>, so look up the name in the original template. */
23268 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23269 else
23270 /* scope is a partial instantiation, so we can't do the lookup or we
23271 will lose the template arguments. */
23272 return type;
23273 /* Enter the SCOPE so that name lookup will be resolved as if we
23274 were in the class definition. In particular, SCOPE will no
23275 longer be considered a dependent type. */
23276 pushed_scope = push_scope (scope);
23277 /* Look up the declaration. */
23278 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23279 tf_warning_or_error);
23280
23281 result = NULL_TREE;
23282
23283 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23284 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23285 if (!decl)
23286 /*nop*/;
23287 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23288 && TREE_CODE (decl) == TYPE_DECL)
23289 {
23290 result = TREE_TYPE (decl);
23291 if (result == error_mark_node)
23292 result = NULL_TREE;
23293 }
23294 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23295 && DECL_CLASS_TEMPLATE_P (decl))
23296 {
23297 tree tmpl;
23298 tree args;
23299 /* Obtain the template and the arguments. */
23300 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23301 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23302 /* Instantiate the template. */
23303 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23304 /*entering_scope=*/0,
23305 tf_error | tf_user);
23306 if (result == error_mark_node)
23307 result = NULL_TREE;
23308 }
23309
23310 /* Leave the SCOPE. */
23311 if (pushed_scope)
23312 pop_scope (pushed_scope);
23313
23314 /* If we failed to resolve it, return the original typename. */
23315 if (!result)
23316 return type;
23317
23318 /* If lookup found a typename type, resolve that too. */
23319 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23320 {
23321 /* Ill-formed programs can cause infinite recursion here, so we
23322 must catch that. */
23323 TYPENAME_IS_RESOLVING_P (type) = 1;
23324 result = resolve_typename_type (result, only_current_p);
23325 TYPENAME_IS_RESOLVING_P (type) = 0;
23326 }
23327
23328 /* Qualify the resulting type. */
23329 quals = cp_type_quals (type);
23330 if (quals)
23331 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23332
23333 return result;
23334 }
23335
23336 /* EXPR is an expression which is not type-dependent. Return a proxy
23337 for EXPR that can be used to compute the types of larger
23338 expressions containing EXPR. */
23339
23340 tree
23341 build_non_dependent_expr (tree expr)
23342 {
23343 tree inner_expr;
23344
23345 /* Try to get a constant value for all non-dependent expressions in
23346 order to expose bugs in *_dependent_expression_p and constexpr. */
23347 if (flag_checking && cxx_dialect >= cxx11)
23348 fold_non_dependent_expr (expr);
23349
23350 /* Preserve OVERLOADs; the functions must be available to resolve
23351 types. */
23352 inner_expr = expr;
23353 if (TREE_CODE (inner_expr) == STMT_EXPR)
23354 inner_expr = stmt_expr_value_expr (inner_expr);
23355 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23356 inner_expr = TREE_OPERAND (inner_expr, 0);
23357 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23358 inner_expr = TREE_OPERAND (inner_expr, 1);
23359 if (is_overloaded_fn (inner_expr)
23360 || TREE_CODE (inner_expr) == OFFSET_REF)
23361 return expr;
23362 /* There is no need to return a proxy for a variable. */
23363 if (VAR_P (expr))
23364 return expr;
23365 /* Preserve string constants; conversions from string constants to
23366 "char *" are allowed, even though normally a "const char *"
23367 cannot be used to initialize a "char *". */
23368 if (TREE_CODE (expr) == STRING_CST)
23369 return expr;
23370 /* Preserve void and arithmetic constants, as an optimization -- there is no
23371 reason to create a new node. */
23372 if (TREE_CODE (expr) == VOID_CST
23373 || TREE_CODE (expr) == INTEGER_CST
23374 || TREE_CODE (expr) == REAL_CST)
23375 return expr;
23376 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23377 There is at least one place where we want to know that a
23378 particular expression is a throw-expression: when checking a ?:
23379 expression, there are special rules if the second or third
23380 argument is a throw-expression. */
23381 if (TREE_CODE (expr) == THROW_EXPR)
23382 return expr;
23383
23384 /* Don't wrap an initializer list, we need to be able to look inside. */
23385 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23386 return expr;
23387
23388 /* Don't wrap a dummy object, we need to be able to test for it. */
23389 if (is_dummy_object (expr))
23390 return expr;
23391
23392 if (TREE_CODE (expr) == COND_EXPR)
23393 return build3 (COND_EXPR,
23394 TREE_TYPE (expr),
23395 TREE_OPERAND (expr, 0),
23396 (TREE_OPERAND (expr, 1)
23397 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23398 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23399 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23400 if (TREE_CODE (expr) == COMPOUND_EXPR
23401 && !COMPOUND_EXPR_OVERLOADED (expr))
23402 return build2 (COMPOUND_EXPR,
23403 TREE_TYPE (expr),
23404 TREE_OPERAND (expr, 0),
23405 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23406
23407 /* If the type is unknown, it can't really be non-dependent */
23408 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23409
23410 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23411 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23412 }
23413
23414 /* ARGS is a vector of expressions as arguments to a function call.
23415 Replace the arguments with equivalent non-dependent expressions.
23416 This modifies ARGS in place. */
23417
23418 void
23419 make_args_non_dependent (vec<tree, va_gc> *args)
23420 {
23421 unsigned int ix;
23422 tree arg;
23423
23424 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23425 {
23426 tree newarg = build_non_dependent_expr (arg);
23427 if (newarg != arg)
23428 (*args)[ix] = newarg;
23429 }
23430 }
23431
23432 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23433 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23434 parms. */
23435
23436 static tree
23437 make_auto_1 (tree name)
23438 {
23439 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23440 TYPE_NAME (au) = build_decl (input_location,
23441 TYPE_DECL, name, au);
23442 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23443 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23444 (0, processing_template_decl + 1, processing_template_decl + 1,
23445 TYPE_NAME (au), NULL_TREE);
23446 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23447 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23448 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23449
23450 return au;
23451 }
23452
23453 tree
23454 make_decltype_auto (void)
23455 {
23456 return make_auto_1 (get_identifier ("decltype(auto)"));
23457 }
23458
23459 tree
23460 make_auto (void)
23461 {
23462 return make_auto_1 (get_identifier ("auto"));
23463 }
23464
23465 /* Given type ARG, return std::initializer_list<ARG>. */
23466
23467 static tree
23468 listify (tree arg)
23469 {
23470 tree std_init_list = namespace_binding
23471 (get_identifier ("initializer_list"), std_node);
23472 tree argvec;
23473 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23474 {
23475 error ("deducing from brace-enclosed initializer list requires "
23476 "#include <initializer_list>");
23477 return error_mark_node;
23478 }
23479 argvec = make_tree_vec (1);
23480 TREE_VEC_ELT (argvec, 0) = arg;
23481 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23482 NULL_TREE, 0, tf_warning_or_error);
23483 }
23484
23485 /* Replace auto in TYPE with std::initializer_list<auto>. */
23486
23487 static tree
23488 listify_autos (tree type, tree auto_node)
23489 {
23490 tree init_auto = listify (auto_node);
23491 tree argvec = make_tree_vec (1);
23492 TREE_VEC_ELT (argvec, 0) = init_auto;
23493 if (processing_template_decl)
23494 argvec = add_to_template_args (current_template_args (), argvec);
23495 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23496 }
23497
23498 /* Hash traits for hashing possibly constrained 'auto'
23499 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23500
23501 struct auto_hash : default_hash_traits<tree>
23502 {
23503 static inline hashval_t hash (tree);
23504 static inline bool equal (tree, tree);
23505 };
23506
23507 /* Hash the 'auto' T. */
23508
23509 inline hashval_t
23510 auto_hash::hash (tree t)
23511 {
23512 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23513 /* Matching constrained-type-specifiers denote the same template
23514 parameter, so hash the constraint. */
23515 return hash_placeholder_constraint (c);
23516 else
23517 /* But unconstrained autos are all separate, so just hash the pointer. */
23518 return iterative_hash_object (t, 0);
23519 }
23520
23521 /* Compare two 'auto's. */
23522
23523 inline bool
23524 auto_hash::equal (tree t1, tree t2)
23525 {
23526 if (t1 == t2)
23527 return true;
23528
23529 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23530 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23531
23532 /* Two unconstrained autos are distinct. */
23533 if (!c1 || !c2)
23534 return false;
23535
23536 return equivalent_placeholder_constraints (c1, c2);
23537 }
23538
23539 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23540 constrained) auto, add it to the vector. */
23541
23542 static int
23543 extract_autos_r (tree t, void *data)
23544 {
23545 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23546 if (is_auto_or_concept (t))
23547 {
23548 /* All the autos were built with index 0; fix that up now. */
23549 tree *p = hash.find_slot (t, INSERT);
23550 unsigned idx;
23551 if (*p)
23552 /* If this is a repeated constrained-type-specifier, use the index we
23553 chose before. */
23554 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23555 else
23556 {
23557 /* Otherwise this is new, so use the current count. */
23558 *p = t;
23559 idx = hash.elements () - 1;
23560 }
23561 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23562 }
23563
23564 /* Always keep walking. */
23565 return 0;
23566 }
23567
23568 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23569 says they can appear anywhere in the type. */
23570
23571 static tree
23572 extract_autos (tree type)
23573 {
23574 hash_set<tree> visited;
23575 hash_table<auto_hash> hash (2);
23576
23577 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23578
23579 tree tree_vec = make_tree_vec (hash.elements());
23580 for (hash_table<auto_hash>::iterator iter = hash.begin();
23581 iter != hash.end(); ++iter)
23582 {
23583 tree elt = *iter;
23584 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23585 TREE_VEC_ELT (tree_vec, i)
23586 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23587 }
23588
23589 return tree_vec;
23590 }
23591
23592 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23593 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23594
23595 tree
23596 do_auto_deduction (tree type, tree init, tree auto_node)
23597 {
23598 return do_auto_deduction (type, init, auto_node,
23599 tf_warning_or_error,
23600 adc_unspecified);
23601 }
23602
23603 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23604 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23605 The CONTEXT determines the context in which auto deduction is performed
23606 and is used to control error diagnostics. */
23607
23608 tree
23609 do_auto_deduction (tree type, tree init, tree auto_node,
23610 tsubst_flags_t complain, auto_deduction_context context)
23611 {
23612 tree targs;
23613
23614 if (init == error_mark_node)
23615 return error_mark_node;
23616
23617 if (type_dependent_expression_p (init))
23618 /* Defining a subset of type-dependent expressions that we can deduce
23619 from ahead of time isn't worth the trouble. */
23620 return type;
23621
23622 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23623 with either a new invented type template parameter U or, if the
23624 initializer is a braced-init-list (8.5.4), with
23625 std::initializer_list<U>. */
23626 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23627 {
23628 if (!DIRECT_LIST_INIT_P (init))
23629 type = listify_autos (type, auto_node);
23630 else if (CONSTRUCTOR_NELTS (init) == 1)
23631 init = CONSTRUCTOR_ELT (init, 0)->value;
23632 else
23633 {
23634 if (complain & tf_warning_or_error)
23635 {
23636 if (permerror (input_location, "direct-list-initialization of "
23637 "%<auto%> requires exactly one element"))
23638 inform (input_location,
23639 "for deduction to %<std::initializer_list%>, use copy-"
23640 "list-initialization (i.e. add %<=%> before the %<{%>)");
23641 }
23642 type = listify_autos (type, auto_node);
23643 }
23644 }
23645
23646 init = resolve_nondeduced_context (init);
23647
23648 if (AUTO_IS_DECLTYPE (auto_node))
23649 {
23650 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23651 && !REF_PARENTHESIZED_P (init)));
23652 targs = make_tree_vec (1);
23653 TREE_VEC_ELT (targs, 0)
23654 = finish_decltype_type (init, id, tf_warning_or_error);
23655 if (type != auto_node)
23656 {
23657 if (complain & tf_error)
23658 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23659 return error_mark_node;
23660 }
23661 }
23662 else
23663 {
23664 tree parms = build_tree_list (NULL_TREE, type);
23665 tree tparms;
23666
23667 if (flag_concepts)
23668 tparms = extract_autos (type);
23669 else
23670 {
23671 tparms = make_tree_vec (1);
23672 TREE_VEC_ELT (tparms, 0)
23673 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23674 }
23675
23676 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
23677 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23678 DEDUCE_CALL, LOOKUP_NORMAL,
23679 NULL, /*explain_p=*/false);
23680 if (val > 0)
23681 {
23682 if (processing_template_decl)
23683 /* Try again at instantiation time. */
23684 return type;
23685 if (type && type != error_mark_node
23686 && (complain & tf_error))
23687 /* If type is error_mark_node a diagnostic must have been
23688 emitted by now. Also, having a mention to '<type error>'
23689 in the diagnostic is not really useful to the user. */
23690 {
23691 if (cfun && auto_node == current_function_auto_return_pattern
23692 && LAMBDA_FUNCTION_P (current_function_decl))
23693 error ("unable to deduce lambda return type from %qE", init);
23694 else
23695 error ("unable to deduce %qT from %qE", type, init);
23696 type_unification_real (tparms, targs, parms, &init, 1, 0,
23697 DEDUCE_CALL, LOOKUP_NORMAL,
23698 NULL, /*explain_p=*/true);
23699 }
23700 return error_mark_node;
23701 }
23702 }
23703
23704 /* If the list of declarators contains more than one declarator, the type
23705 of each declared variable is determined as described above. If the
23706 type deduced for the template parameter U is not the same in each
23707 deduction, the program is ill-formed. */
23708 if (!flag_concepts && TREE_TYPE (auto_node)
23709 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
23710 {
23711 if (cfun && auto_node == current_function_auto_return_pattern
23712 && LAMBDA_FUNCTION_P (current_function_decl))
23713 error ("inconsistent types %qT and %qT deduced for "
23714 "lambda return type", TREE_TYPE (auto_node),
23715 TREE_VEC_ELT (targs, 0));
23716 else
23717 error ("inconsistent deduction for %qT: %qT and then %qT",
23718 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
23719 return error_mark_node;
23720 }
23721 if (!flag_concepts)
23722 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
23723
23724 /* Check any placeholder constraints against the deduced type. */
23725 if (flag_concepts && !processing_template_decl)
23726 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
23727 {
23728 /* Use the deduced type to check the associated constraints. */
23729 if (!constraints_satisfied_p (constr, targs))
23730 {
23731 if (complain & tf_warning_or_error)
23732 {
23733 switch (context)
23734 {
23735 case adc_unspecified:
23736 error("placeholder constraints not satisfied");
23737 break;
23738 case adc_variable_type:
23739 error ("deduced initializer does not satisfy "
23740 "placeholder constraints");
23741 break;
23742 case adc_return_type:
23743 error ("deduced return type does not satisfy "
23744 "placeholder constraints");
23745 break;
23746 case adc_requirement:
23747 error ("deduced expression type does not saatisy "
23748 "placeholder constraints");
23749 break;
23750 }
23751 diagnose_constraints (input_location, constr, targs);
23752 }
23753 return error_mark_node;
23754 }
23755 }
23756
23757 if (processing_template_decl)
23758 targs = add_to_template_args (current_template_args (), targs);
23759 return tsubst (type, targs, complain, NULL_TREE);
23760 }
23761
23762 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
23763 result. */
23764
23765 tree
23766 splice_late_return_type (tree type, tree late_return_type)
23767 {
23768 if (is_auto (type))
23769 {
23770 if (late_return_type)
23771 return late_return_type;
23772
23773 tree idx = get_template_parm_index (type);
23774 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
23775 /* In an abbreviated function template we didn't know we were dealing
23776 with a function template when we saw the auto return type, so update
23777 it to have the correct level. */
23778 return make_auto_1 (TYPE_IDENTIFIER (type));
23779 }
23780 return type;
23781 }
23782
23783 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
23784 'decltype(auto)'. */
23785
23786 bool
23787 is_auto (const_tree type)
23788 {
23789 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23790 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
23791 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
23792 return true;
23793 else
23794 return false;
23795 }
23796
23797 /* for_each_template_parm callback for type_uses_auto. */
23798
23799 int
23800 is_auto_r (tree tp, void */*data*/)
23801 {
23802 return is_auto_or_concept (tp);
23803 }
23804
23805 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
23806 a use of `auto'. Returns NULL_TREE otherwise. */
23807
23808 tree
23809 type_uses_auto (tree type)
23810 {
23811 if (flag_concepts)
23812 {
23813 /* The Concepts TS allows multiple autos in one type-specifier; just
23814 return the first one we find, do_auto_deduction will collect all of
23815 them. */
23816 if (uses_template_parms (type))
23817 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
23818 /*visited*/NULL, /*nondeduced*/true);
23819 else
23820 return NULL_TREE;
23821 }
23822 else
23823 return find_type_usage (type, is_auto);
23824 }
23825
23826 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
23827 'decltype(auto)' or a concept. */
23828
23829 bool
23830 is_auto_or_concept (const_tree type)
23831 {
23832 return is_auto (type); // or concept
23833 }
23834
23835 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
23836 a concept identifier) iff TYPE contains a use of a generic type. Returns
23837 NULL_TREE otherwise. */
23838
23839 tree
23840 type_uses_auto_or_concept (tree type)
23841 {
23842 return find_type_usage (type, is_auto_or_concept);
23843 }
23844
23845
23846 /* For a given template T, return the vector of typedefs referenced
23847 in T for which access check is needed at T instantiation time.
23848 T is either a FUNCTION_DECL or a RECORD_TYPE.
23849 Those typedefs were added to T by the function
23850 append_type_to_template_for_access_check. */
23851
23852 vec<qualified_typedef_usage_t, va_gc> *
23853 get_types_needing_access_check (tree t)
23854 {
23855 tree ti;
23856 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
23857
23858 if (!t || t == error_mark_node)
23859 return NULL;
23860
23861 if (!(ti = get_template_info (t)))
23862 return NULL;
23863
23864 if (CLASS_TYPE_P (t)
23865 || TREE_CODE (t) == FUNCTION_DECL)
23866 {
23867 if (!TI_TEMPLATE (ti))
23868 return NULL;
23869
23870 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
23871 }
23872
23873 return result;
23874 }
23875
23876 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
23877 tied to T. That list of typedefs will be access checked at
23878 T instantiation time.
23879 T is either a FUNCTION_DECL or a RECORD_TYPE.
23880 TYPE_DECL is a TYPE_DECL node representing a typedef.
23881 SCOPE is the scope through which TYPE_DECL is accessed.
23882 LOCATION is the location of the usage point of TYPE_DECL.
23883
23884 This function is a subroutine of
23885 append_type_to_template_for_access_check. */
23886
23887 static void
23888 append_type_to_template_for_access_check_1 (tree t,
23889 tree type_decl,
23890 tree scope,
23891 location_t location)
23892 {
23893 qualified_typedef_usage_t typedef_usage;
23894 tree ti;
23895
23896 if (!t || t == error_mark_node)
23897 return;
23898
23899 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
23900 || CLASS_TYPE_P (t))
23901 && type_decl
23902 && TREE_CODE (type_decl) == TYPE_DECL
23903 && scope);
23904
23905 if (!(ti = get_template_info (t)))
23906 return;
23907
23908 gcc_assert (TI_TEMPLATE (ti));
23909
23910 typedef_usage.typedef_decl = type_decl;
23911 typedef_usage.context = scope;
23912 typedef_usage.locus = location;
23913
23914 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
23915 }
23916
23917 /* Append TYPE_DECL to the template TEMPL.
23918 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
23919 At TEMPL instanciation time, TYPE_DECL will be checked to see
23920 if it can be accessed through SCOPE.
23921 LOCATION is the location of the usage point of TYPE_DECL.
23922
23923 e.g. consider the following code snippet:
23924
23925 class C
23926 {
23927 typedef int myint;
23928 };
23929
23930 template<class U> struct S
23931 {
23932 C::myint mi; // <-- usage point of the typedef C::myint
23933 };
23934
23935 S<char> s;
23936
23937 At S<char> instantiation time, we need to check the access of C::myint
23938 In other words, we need to check the access of the myint typedef through
23939 the C scope. For that purpose, this function will add the myint typedef
23940 and the scope C through which its being accessed to a list of typedefs
23941 tied to the template S. That list will be walked at template instantiation
23942 time and access check performed on each typedefs it contains.
23943 Note that this particular code snippet should yield an error because
23944 myint is private to C. */
23945
23946 void
23947 append_type_to_template_for_access_check (tree templ,
23948 tree type_decl,
23949 tree scope,
23950 location_t location)
23951 {
23952 qualified_typedef_usage_t *iter;
23953 unsigned i;
23954
23955 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
23956
23957 /* Make sure we don't append the type to the template twice. */
23958 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
23959 if (iter->typedef_decl == type_decl && scope == iter->context)
23960 return;
23961
23962 append_type_to_template_for_access_check_1 (templ, type_decl,
23963 scope, location);
23964 }
23965
23966 /* Convert the generic type parameters in PARM that match the types given in the
23967 range [START_IDX, END_IDX) from the current_template_parms into generic type
23968 packs. */
23969
23970 tree
23971 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
23972 {
23973 tree current = current_template_parms;
23974 int depth = TMPL_PARMS_DEPTH (current);
23975 current = INNERMOST_TEMPLATE_PARMS (current);
23976 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
23977
23978 for (int i = 0; i < start_idx; ++i)
23979 TREE_VEC_ELT (replacement, i)
23980 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
23981
23982 for (int i = start_idx; i < end_idx; ++i)
23983 {
23984 /* Create a distinct parameter pack type from the current parm and add it
23985 to the replacement args to tsubst below into the generic function
23986 parameter. */
23987
23988 tree o = TREE_TYPE (TREE_VALUE
23989 (TREE_VEC_ELT (current, i)));
23990 tree t = copy_type (o);
23991 TEMPLATE_TYPE_PARM_INDEX (t)
23992 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
23993 o, 0, 0, tf_none);
23994 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
23995 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
23996 TYPE_MAIN_VARIANT (t) = t;
23997 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
23998 TYPE_CANONICAL (t) = canonical_type_parameter (t);
23999 TREE_VEC_ELT (replacement, i) = t;
24000 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24001 }
24002
24003 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24004 TREE_VEC_ELT (replacement, i)
24005 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24006
24007 /* If there are more levels then build up the replacement with the outer
24008 template parms. */
24009 if (depth > 1)
24010 replacement = add_to_template_args (template_parms_to_args
24011 (TREE_CHAIN (current_template_parms)),
24012 replacement);
24013
24014 return tsubst (parm, replacement, tf_none, NULL_TREE);
24015 }
24016
24017 /* Entries in the decl_constraint hash table. */
24018 struct GTY((for_user)) constr_entry
24019 {
24020 tree decl;
24021 tree ci;
24022 };
24023
24024 /* Hashing function and equality for constraint entries. */
24025 struct constr_hasher : ggc_ptr_hash<constr_entry>
24026 {
24027 static hashval_t hash (constr_entry *e)
24028 {
24029 return (hashval_t)DECL_UID (e->decl);
24030 }
24031
24032 static bool equal (constr_entry *e1, constr_entry *e2)
24033 {
24034 return e1->decl == e2->decl;
24035 }
24036 };
24037
24038 /* A mapping from declarations to constraint information. Note that
24039 both templates and their underlying declarations are mapped to the
24040 same constraint information.
24041
24042 FIXME: This is defined in pt.c because garbage collection
24043 code is not being generated for constraint.cc. */
24044
24045 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24046
24047 /* Returns true iff cinfo contains a valid set of constraints.
24048 This is the case when the associated requirements have been
24049 successfully decomposed into lists of atomic constraints.
24050 That is, when the saved assumptions are not error_mark_node. */
24051
24052 bool
24053 valid_constraints_p (tree cinfo)
24054 {
24055 gcc_assert (cinfo);
24056 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
24057 }
24058
24059 /* Returns the template constraints of declaration T. If T is not
24060 constrained, return NULL_TREE. Note that T must be non-null. */
24061
24062 tree
24063 get_constraints (tree t)
24064 {
24065 gcc_assert (DECL_P (t));
24066 if (TREE_CODE (t) == TEMPLATE_DECL)
24067 t = DECL_TEMPLATE_RESULT (t);
24068 constr_entry elt = { t, NULL_TREE };
24069 constr_entry* found = decl_constraints->find (&elt);
24070 if (found)
24071 return found->ci;
24072 else
24073 return NULL_TREE;
24074 }
24075
24076 /* Associate the given constraint information CI with the declaration
24077 T. If T is a template, then the constraints are associated with
24078 its underlying declaration. Don't build associations if CI is
24079 NULL_TREE. */
24080
24081 void
24082 set_constraints (tree t, tree ci)
24083 {
24084 if (!ci)
24085 return;
24086 gcc_assert (t);
24087 if (TREE_CODE (t) == TEMPLATE_DECL)
24088 t = DECL_TEMPLATE_RESULT (t);
24089 gcc_assert (!get_constraints (t));
24090 constr_entry elt = {t, ci};
24091 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24092 constr_entry* entry = ggc_alloc<constr_entry> ();
24093 *entry = elt;
24094 *slot = entry;
24095 }
24096
24097 /* Remove the associated constraints of the declaration T. */
24098
24099 void
24100 remove_constraints (tree t)
24101 {
24102 gcc_assert (DECL_P (t));
24103 if (TREE_CODE (t) == TEMPLATE_DECL)
24104 t = DECL_TEMPLATE_RESULT (t);
24105
24106 constr_entry elt = {t, NULL_TREE};
24107 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24108 if (slot)
24109 decl_constraints->clear_slot (slot);
24110 }
24111
24112 /* Set up the hash table for constraint association. */
24113
24114 void
24115 init_constraint_processing (void)
24116 {
24117 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24118 }
24119
24120 /* Set up the hash tables for template instantiations. */
24121
24122 void
24123 init_template_processing (void)
24124 {
24125 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24126 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24127 }
24128
24129 /* Print stats about the template hash tables for -fstats. */
24130
24131 void
24132 print_template_statistics (void)
24133 {
24134 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24135 "%f collisions\n", (long) decl_specializations->size (),
24136 (long) decl_specializations->elements (),
24137 decl_specializations->collisions ());
24138 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24139 "%f collisions\n", (long) type_specializations->size (),
24140 (long) type_specializations->elements (),
24141 type_specializations->collisions ());
24142 }
24143
24144 #include "gt-cp-pt.h"