re PR c++/68290 (g++.dg/concepts/auto1.C FAILs)
[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 }
2804
2805 declarator = lookup_template_function (fns, NULL_TREE);
2806 }
2807
2808 if (declarator == error_mark_node)
2809 return error_mark_node;
2810
2811 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2812 {
2813 if (!explicit_instantiation)
2814 /* A specialization in class scope. This is invalid,
2815 but the error will already have been flagged by
2816 check_specialization_scope. */
2817 return error_mark_node;
2818 else
2819 {
2820 /* It's not valid to write an explicit instantiation in
2821 class scope, e.g.:
2822
2823 class C { template void f(); }
2824
2825 This case is caught by the parser. However, on
2826 something like:
2827
2828 template class C { void f(); };
2829
2830 (which is invalid) we can get here. The error will be
2831 issued later. */
2832 ;
2833 }
2834
2835 return decl;
2836 }
2837 else if (ctype != NULL_TREE
2838 && (identifier_p (TREE_OPERAND (declarator, 0))))
2839 {
2840 // We'll match variable templates in start_decl.
2841 if (VAR_P (decl))
2842 return decl;
2843
2844 /* Find the list of functions in ctype that have the same
2845 name as the declared function. */
2846 tree name = TREE_OPERAND (declarator, 0);
2847 tree fns = NULL_TREE;
2848 int idx;
2849
2850 if (constructor_name_p (name, ctype))
2851 {
2852 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2853
2854 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2855 : !CLASSTYPE_DESTRUCTORS (ctype))
2856 {
2857 /* From [temp.expl.spec]:
2858
2859 If such an explicit specialization for the member
2860 of a class template names an implicitly-declared
2861 special member function (clause _special_), the
2862 program is ill-formed.
2863
2864 Similar language is found in [temp.explicit]. */
2865 error ("specialization of implicitly-declared special member function");
2866 return error_mark_node;
2867 }
2868
2869 name = is_constructor ? ctor_identifier : dtor_identifier;
2870 }
2871
2872 if (!DECL_CONV_FN_P (decl))
2873 {
2874 idx = lookup_fnfields_1 (ctype, name);
2875 if (idx >= 0)
2876 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2877 }
2878 else
2879 {
2880 vec<tree, va_gc> *methods;
2881 tree ovl;
2882
2883 /* For a type-conversion operator, we cannot do a
2884 name-based lookup. We might be looking for `operator
2885 int' which will be a specialization of `operator T'.
2886 So, we find *all* the conversion operators, and then
2887 select from them. */
2888 fns = NULL_TREE;
2889
2890 methods = CLASSTYPE_METHOD_VEC (ctype);
2891 if (methods)
2892 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2893 methods->iterate (idx, &ovl);
2894 ++idx)
2895 {
2896 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2897 /* There are no more conversion functions. */
2898 break;
2899
2900 /* Glue all these conversion functions together
2901 with those we already have. */
2902 for (; ovl; ovl = OVL_NEXT (ovl))
2903 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2904 }
2905 }
2906
2907 if (fns == NULL_TREE)
2908 {
2909 error ("no member function %qD declared in %qT", name, ctype);
2910 return error_mark_node;
2911 }
2912 else
2913 TREE_OPERAND (declarator, 0) = fns;
2914 }
2915
2916 /* Figure out what exactly is being specialized at this point.
2917 Note that for an explicit instantiation, even one for a
2918 member function, we cannot tell apriori whether the
2919 instantiation is for a member template, or just a member
2920 function of a template class. Even if a member template is
2921 being instantiated, the member template arguments may be
2922 elided if they can be deduced from the rest of the
2923 declaration. */
2924 tmpl = determine_specialization (declarator, decl,
2925 &targs,
2926 member_specialization,
2927 template_count,
2928 tsk);
2929
2930 if (!tmpl || tmpl == error_mark_node)
2931 /* We couldn't figure out what this declaration was
2932 specializing. */
2933 return error_mark_node;
2934 else
2935 {
2936 if (!ctype && !was_template_id
2937 && (specialization || member_specialization
2938 || explicit_instantiation)
2939 && !is_associated_namespace (CP_DECL_CONTEXT (decl),
2940 CP_DECL_CONTEXT (tmpl)))
2941 error ("%qD is not declared in %qD",
2942 tmpl, current_namespace);
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 case DECLTYPE_TYPE:
3555 {
3556 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3557 type_pack_expansion_p to false so that any placeholders
3558 within the expression don't get marked as parameter packs. */
3559 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3560 ppd->type_pack_expansion_p = false;
3561 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3562 ppd, ppd->visited);
3563 ppd->type_pack_expansion_p = type_pack_expansion_p;
3564 *walk_subtrees = 0;
3565 return NULL_TREE;
3566 }
3567
3568 default:
3569 return NULL_TREE;
3570 }
3571
3572 return NULL_TREE;
3573 }
3574
3575 /* Determines if the expression or type T uses any parameter packs. */
3576 bool
3577 uses_parameter_packs (tree t)
3578 {
3579 tree parameter_packs = NULL_TREE;
3580 struct find_parameter_pack_data ppd;
3581 ppd.parameter_packs = &parameter_packs;
3582 ppd.visited = new hash_set<tree>;
3583 ppd.type_pack_expansion_p = false;
3584 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3585 delete ppd.visited;
3586 return parameter_packs != NULL_TREE;
3587 }
3588
3589 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3590 representation a base-class initializer into a parameter pack
3591 expansion. If all goes well, the resulting node will be an
3592 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3593 respectively. */
3594 tree
3595 make_pack_expansion (tree arg)
3596 {
3597 tree result;
3598 tree parameter_packs = NULL_TREE;
3599 bool for_types = false;
3600 struct find_parameter_pack_data ppd;
3601
3602 if (!arg || arg == error_mark_node)
3603 return arg;
3604
3605 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3606 {
3607 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3608 class initializer. In this case, the TREE_PURPOSE will be a
3609 _TYPE node (representing the base class expansion we're
3610 initializing) and the TREE_VALUE will be a TREE_LIST
3611 containing the initialization arguments.
3612
3613 The resulting expansion looks somewhat different from most
3614 expansions. Rather than returning just one _EXPANSION, we
3615 return a TREE_LIST whose TREE_PURPOSE is a
3616 TYPE_PACK_EXPANSION containing the bases that will be
3617 initialized. The TREE_VALUE will be identical to the
3618 original TREE_VALUE, which is a list of arguments that will
3619 be passed to each base. We do not introduce any new pack
3620 expansion nodes into the TREE_VALUE (although it is possible
3621 that some already exist), because the TREE_PURPOSE and
3622 TREE_VALUE all need to be expanded together with the same
3623 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3624 resulting TREE_PURPOSE will mention the parameter packs in
3625 both the bases and the arguments to the bases. */
3626 tree purpose;
3627 tree value;
3628 tree parameter_packs = NULL_TREE;
3629
3630 /* Determine which parameter packs will be used by the base
3631 class expansion. */
3632 ppd.visited = new hash_set<tree>;
3633 ppd.parameter_packs = &parameter_packs;
3634 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3635 &ppd, ppd.visited);
3636
3637 if (parameter_packs == NULL_TREE)
3638 {
3639 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3640 delete ppd.visited;
3641 return error_mark_node;
3642 }
3643
3644 if (TREE_VALUE (arg) != void_type_node)
3645 {
3646 /* Collect the sets of parameter packs used in each of the
3647 initialization arguments. */
3648 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3649 {
3650 /* Determine which parameter packs will be expanded in this
3651 argument. */
3652 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3653 &ppd, ppd.visited);
3654 }
3655 }
3656
3657 delete ppd.visited;
3658
3659 /* Create the pack expansion type for the base type. */
3660 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3661 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3662 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3663
3664 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3665 they will rarely be compared to anything. */
3666 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3667
3668 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3669 }
3670
3671 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3672 for_types = true;
3673
3674 /* Build the PACK_EXPANSION_* node. */
3675 result = for_types
3676 ? cxx_make_type (TYPE_PACK_EXPANSION)
3677 : make_node (EXPR_PACK_EXPANSION);
3678 SET_PACK_EXPANSION_PATTERN (result, arg);
3679 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3680 {
3681 /* Propagate type and const-expression information. */
3682 TREE_TYPE (result) = TREE_TYPE (arg);
3683 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3684 }
3685 else
3686 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3687 they will rarely be compared to anything. */
3688 SET_TYPE_STRUCTURAL_EQUALITY (result);
3689
3690 /* Determine which parameter packs will be expanded. */
3691 ppd.parameter_packs = &parameter_packs;
3692 ppd.visited = new hash_set<tree>;
3693 ppd.type_pack_expansion_p = TYPE_P (arg);
3694 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3695 delete ppd.visited;
3696
3697 /* Make sure we found some parameter packs. */
3698 if (parameter_packs == NULL_TREE)
3699 {
3700 if (TYPE_P (arg))
3701 error ("expansion pattern %<%T%> contains no argument packs", arg);
3702 else
3703 error ("expansion pattern %<%E%> contains no argument packs", arg);
3704 return error_mark_node;
3705 }
3706 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3707
3708 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3709
3710 return result;
3711 }
3712
3713 /* Checks T for any "bare" parameter packs, which have not yet been
3714 expanded, and issues an error if any are found. This operation can
3715 only be done on full expressions or types (e.g., an expression
3716 statement, "if" condition, etc.), because we could have expressions like:
3717
3718 foo(f(g(h(args)))...)
3719
3720 where "args" is a parameter pack. check_for_bare_parameter_packs
3721 should not be called for the subexpressions args, h(args),
3722 g(h(args)), or f(g(h(args))), because we would produce erroneous
3723 error messages.
3724
3725 Returns TRUE and emits an error if there were bare parameter packs,
3726 returns FALSE otherwise. */
3727 bool
3728 check_for_bare_parameter_packs (tree t)
3729 {
3730 tree parameter_packs = NULL_TREE;
3731 struct find_parameter_pack_data ppd;
3732
3733 if (!processing_template_decl || !t || t == error_mark_node)
3734 return false;
3735
3736 if (TREE_CODE (t) == TYPE_DECL)
3737 t = TREE_TYPE (t);
3738
3739 ppd.parameter_packs = &parameter_packs;
3740 ppd.visited = new hash_set<tree>;
3741 ppd.type_pack_expansion_p = false;
3742 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3743 delete ppd.visited;
3744
3745 if (parameter_packs)
3746 {
3747 error ("parameter packs not expanded with %<...%>:");
3748 while (parameter_packs)
3749 {
3750 tree pack = TREE_VALUE (parameter_packs);
3751 tree name = NULL_TREE;
3752
3753 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3754 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3755 name = TYPE_NAME (pack);
3756 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3757 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3758 else
3759 name = DECL_NAME (pack);
3760
3761 if (name)
3762 inform (input_location, " %qD", name);
3763 else
3764 inform (input_location, " <anonymous>");
3765
3766 parameter_packs = TREE_CHAIN (parameter_packs);
3767 }
3768
3769 return true;
3770 }
3771
3772 return false;
3773 }
3774
3775 /* Expand any parameter packs that occur in the template arguments in
3776 ARGS. */
3777 tree
3778 expand_template_argument_pack (tree args)
3779 {
3780 tree result_args = NULL_TREE;
3781 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3782 int num_result_args = -1;
3783 int non_default_args_count = -1;
3784
3785 /* First, determine if we need to expand anything, and the number of
3786 slots we'll need. */
3787 for (in_arg = 0; in_arg < nargs; ++in_arg)
3788 {
3789 tree arg = TREE_VEC_ELT (args, in_arg);
3790 if (arg == NULL_TREE)
3791 return args;
3792 if (ARGUMENT_PACK_P (arg))
3793 {
3794 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3795 if (num_result_args < 0)
3796 num_result_args = in_arg + num_packed;
3797 else
3798 num_result_args += num_packed;
3799 }
3800 else
3801 {
3802 if (num_result_args >= 0)
3803 num_result_args++;
3804 }
3805 }
3806
3807 /* If no expansion is necessary, we're done. */
3808 if (num_result_args < 0)
3809 return args;
3810
3811 /* Expand arguments. */
3812 result_args = make_tree_vec (num_result_args);
3813 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3814 non_default_args_count =
3815 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3816 for (in_arg = 0; in_arg < nargs; ++in_arg)
3817 {
3818 tree arg = TREE_VEC_ELT (args, in_arg);
3819 if (ARGUMENT_PACK_P (arg))
3820 {
3821 tree packed = ARGUMENT_PACK_ARGS (arg);
3822 int i, num_packed = TREE_VEC_LENGTH (packed);
3823 for (i = 0; i < num_packed; ++i, ++out_arg)
3824 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3825 if (non_default_args_count > 0)
3826 non_default_args_count += num_packed - 1;
3827 }
3828 else
3829 {
3830 TREE_VEC_ELT (result_args, out_arg) = arg;
3831 ++out_arg;
3832 }
3833 }
3834 if (non_default_args_count >= 0)
3835 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3836 return result_args;
3837 }
3838
3839 /* Checks if DECL shadows a template parameter.
3840
3841 [temp.local]: A template-parameter shall not be redeclared within its
3842 scope (including nested scopes).
3843
3844 Emits an error and returns TRUE if the DECL shadows a parameter,
3845 returns FALSE otherwise. */
3846
3847 bool
3848 check_template_shadow (tree decl)
3849 {
3850 tree olddecl;
3851
3852 /* If we're not in a template, we can't possibly shadow a template
3853 parameter. */
3854 if (!current_template_parms)
3855 return true;
3856
3857 /* Figure out what we're shadowing. */
3858 if (TREE_CODE (decl) == OVERLOAD)
3859 decl = OVL_CURRENT (decl);
3860 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3861
3862 /* If there's no previous binding for this name, we're not shadowing
3863 anything, let alone a template parameter. */
3864 if (!olddecl)
3865 return true;
3866
3867 /* If we're not shadowing a template parameter, we're done. Note
3868 that OLDDECL might be an OVERLOAD (or perhaps even an
3869 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3870 node. */
3871 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3872 return true;
3873
3874 /* We check for decl != olddecl to avoid bogus errors for using a
3875 name inside a class. We check TPFI to avoid duplicate errors for
3876 inline member templates. */
3877 if (decl == olddecl
3878 || (DECL_TEMPLATE_PARM_P (decl)
3879 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3880 return true;
3881
3882 /* Don't complain about the injected class name, as we've already
3883 complained about the class itself. */
3884 if (DECL_SELF_REFERENCE_P (decl))
3885 return false;
3886
3887 if (DECL_TEMPLATE_PARM_P (decl))
3888 error ("declaration of template parameter %q+D shadows "
3889 "template parameter", decl);
3890 else
3891 error ("declaration of %q+#D shadows template parameter", decl);
3892 inform (DECL_SOURCE_LOCATION (olddecl),
3893 "template parameter %qD declared here", olddecl);
3894 return false;
3895 }
3896
3897 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3898 ORIG_LEVEL, DECL, and TYPE. */
3899
3900 static tree
3901 build_template_parm_index (int index,
3902 int level,
3903 int orig_level,
3904 tree decl,
3905 tree type)
3906 {
3907 tree t = make_node (TEMPLATE_PARM_INDEX);
3908 TEMPLATE_PARM_IDX (t) = index;
3909 TEMPLATE_PARM_LEVEL (t) = level;
3910 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3911 TEMPLATE_PARM_DECL (t) = decl;
3912 TREE_TYPE (t) = type;
3913 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3914 TREE_READONLY (t) = TREE_READONLY (decl);
3915
3916 return t;
3917 }
3918
3919 /* Find the canonical type parameter for the given template type
3920 parameter. Returns the canonical type parameter, which may be TYPE
3921 if no such parameter existed. */
3922
3923 static tree
3924 canonical_type_parameter (tree type)
3925 {
3926 tree list;
3927 int idx = TEMPLATE_TYPE_IDX (type);
3928 if (!canonical_template_parms)
3929 vec_alloc (canonical_template_parms, idx+1);
3930
3931 while (canonical_template_parms->length () <= (unsigned)idx)
3932 vec_safe_push (canonical_template_parms, NULL_TREE);
3933
3934 list = (*canonical_template_parms)[idx];
3935 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3936 list = TREE_CHAIN (list);
3937
3938 if (list)
3939 return TREE_VALUE (list);
3940 else
3941 {
3942 (*canonical_template_parms)[idx]
3943 = tree_cons (NULL_TREE, type,
3944 (*canonical_template_parms)[idx]);
3945 return type;
3946 }
3947 }
3948
3949 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3950 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3951 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3952 new one is created. */
3953
3954 static tree
3955 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3956 tsubst_flags_t complain)
3957 {
3958 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3959 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3960 != TEMPLATE_PARM_LEVEL (index) - levels)
3961 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3962 {
3963 tree orig_decl = TEMPLATE_PARM_DECL (index);
3964 tree decl, t;
3965
3966 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3967 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3968 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3969 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3970 DECL_ARTIFICIAL (decl) = 1;
3971 SET_DECL_TEMPLATE_PARM_P (decl);
3972
3973 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3974 TEMPLATE_PARM_LEVEL (index) - levels,
3975 TEMPLATE_PARM_ORIG_LEVEL (index),
3976 decl, type);
3977 TEMPLATE_PARM_DESCENDANTS (index) = t;
3978 TEMPLATE_PARM_PARAMETER_PACK (t)
3979 = TEMPLATE_PARM_PARAMETER_PACK (index);
3980
3981 /* Template template parameters need this. */
3982 if (TREE_CODE (decl) == TEMPLATE_DECL)
3983 {
3984 DECL_TEMPLATE_RESULT (decl)
3985 = build_decl (DECL_SOURCE_LOCATION (decl),
3986 TYPE_DECL, DECL_NAME (decl), type);
3987 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3988 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3989 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
3990 }
3991 }
3992
3993 return TEMPLATE_PARM_DESCENDANTS (index);
3994 }
3995
3996 /* Process information from new template parameter PARM and append it
3997 to the LIST being built. This new parameter is a non-type
3998 parameter iff IS_NON_TYPE is true. This new parameter is a
3999 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4000 is in PARM_LOC. */
4001
4002 tree
4003 process_template_parm (tree list, location_t parm_loc, tree parm,
4004 bool is_non_type, bool is_parameter_pack)
4005 {
4006 tree decl = 0;
4007 int idx = 0;
4008
4009 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4010 tree defval = TREE_PURPOSE (parm);
4011 tree constr = TREE_TYPE (parm);
4012
4013 if (list)
4014 {
4015 tree p = tree_last (list);
4016
4017 if (p && TREE_VALUE (p) != error_mark_node)
4018 {
4019 p = TREE_VALUE (p);
4020 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4021 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4022 else
4023 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4024 }
4025
4026 ++idx;
4027 }
4028
4029 if (is_non_type)
4030 {
4031 parm = TREE_VALUE (parm);
4032
4033 SET_DECL_TEMPLATE_PARM_P (parm);
4034
4035 if (TREE_TYPE (parm) != error_mark_node)
4036 {
4037 /* [temp.param]
4038
4039 The top-level cv-qualifiers on the template-parameter are
4040 ignored when determining its type. */
4041 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4042 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4043 TREE_TYPE (parm) = error_mark_node;
4044 else if (uses_parameter_packs (TREE_TYPE (parm))
4045 && !is_parameter_pack
4046 /* If we're in a nested template parameter list, the template
4047 template parameter could be a parameter pack. */
4048 && processing_template_parmlist == 1)
4049 {
4050 /* This template parameter is not a parameter pack, but it
4051 should be. Complain about "bare" parameter packs. */
4052 check_for_bare_parameter_packs (TREE_TYPE (parm));
4053
4054 /* Recover by calling this a parameter pack. */
4055 is_parameter_pack = true;
4056 }
4057 }
4058
4059 /* A template parameter is not modifiable. */
4060 TREE_CONSTANT (parm) = 1;
4061 TREE_READONLY (parm) = 1;
4062 decl = build_decl (parm_loc,
4063 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4064 TREE_CONSTANT (decl) = 1;
4065 TREE_READONLY (decl) = 1;
4066 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4067 = build_template_parm_index (idx, processing_template_decl,
4068 processing_template_decl,
4069 decl, TREE_TYPE (parm));
4070
4071 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4072 = is_parameter_pack;
4073 }
4074 else
4075 {
4076 tree t;
4077 parm = TREE_VALUE (TREE_VALUE (parm));
4078
4079 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4080 {
4081 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4082 /* This is for distinguishing between real templates and template
4083 template parameters */
4084 TREE_TYPE (parm) = t;
4085 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4086 decl = parm;
4087 }
4088 else
4089 {
4090 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4091 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4092 decl = build_decl (parm_loc,
4093 TYPE_DECL, parm, t);
4094 }
4095
4096 TYPE_NAME (t) = decl;
4097 TYPE_STUB_DECL (t) = decl;
4098 parm = decl;
4099 TEMPLATE_TYPE_PARM_INDEX (t)
4100 = build_template_parm_index (idx, processing_template_decl,
4101 processing_template_decl,
4102 decl, TREE_TYPE (parm));
4103 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4104 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4105 }
4106 DECL_ARTIFICIAL (decl) = 1;
4107 SET_DECL_TEMPLATE_PARM_P (decl);
4108
4109 /* Build requirements for the type/template parameter.
4110 This must be done after SET_DECL_TEMPLATE_PARM_P or
4111 process_template_parm could fail. */
4112 tree reqs = finish_shorthand_constraint (parm, constr);
4113
4114 pushdecl (decl);
4115
4116 /* Build the parameter node linking the parameter declaration,
4117 its default argument (if any), and its constraints (if any). */
4118 parm = build_tree_list (defval, parm);
4119 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4120
4121 return chainon (list, parm);
4122 }
4123
4124 /* The end of a template parameter list has been reached. Process the
4125 tree list into a parameter vector, converting each parameter into a more
4126 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4127 as PARM_DECLs. */
4128
4129 tree
4130 end_template_parm_list (tree parms)
4131 {
4132 int nparms;
4133 tree parm, next;
4134 tree saved_parmlist = make_tree_vec (list_length (parms));
4135
4136 /* Pop the dummy parameter level and add the real one. */
4137 current_template_parms = TREE_CHAIN (current_template_parms);
4138
4139 current_template_parms
4140 = tree_cons (size_int (processing_template_decl),
4141 saved_parmlist, current_template_parms);
4142
4143 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4144 {
4145 next = TREE_CHAIN (parm);
4146 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4147 TREE_CHAIN (parm) = NULL_TREE;
4148 }
4149
4150 --processing_template_parmlist;
4151
4152 return saved_parmlist;
4153 }
4154
4155 // Explicitly indicate the end of the template parameter list. We assume
4156 // that the current template parameters have been constructed and/or
4157 // managed explicitly, as when creating new template template parameters
4158 // from a shorthand constraint.
4159 void
4160 end_template_parm_list ()
4161 {
4162 --processing_template_parmlist;
4163 }
4164
4165 /* end_template_decl is called after a template declaration is seen. */
4166
4167 void
4168 end_template_decl (void)
4169 {
4170 reset_specialization ();
4171
4172 if (! processing_template_decl)
4173 return;
4174
4175 /* This matches the pushlevel in begin_template_parm_list. */
4176 finish_scope ();
4177
4178 --processing_template_decl;
4179 current_template_parms = TREE_CHAIN (current_template_parms);
4180 }
4181
4182 /* Takes a TREE_LIST representing a template parameter and convert it
4183 into an argument suitable to be passed to the type substitution
4184 functions. Note that If the TREE_LIST contains an error_mark
4185 node, the returned argument is error_mark_node. */
4186
4187 tree
4188 template_parm_to_arg (tree t)
4189 {
4190
4191 if (t == NULL_TREE
4192 || TREE_CODE (t) != TREE_LIST)
4193 return t;
4194
4195 if (error_operand_p (TREE_VALUE (t)))
4196 return error_mark_node;
4197
4198 t = TREE_VALUE (t);
4199
4200 if (TREE_CODE (t) == TYPE_DECL
4201 || TREE_CODE (t) == TEMPLATE_DECL)
4202 {
4203 t = TREE_TYPE (t);
4204
4205 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4206 {
4207 /* Turn this argument into a TYPE_ARGUMENT_PACK
4208 with a single element, which expands T. */
4209 tree vec = make_tree_vec (1);
4210 if (CHECKING_P)
4211 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4212
4213 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4214
4215 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4216 SET_ARGUMENT_PACK_ARGS (t, vec);
4217 }
4218 }
4219 else
4220 {
4221 t = DECL_INITIAL (t);
4222
4223 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4224 {
4225 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4226 with a single element, which expands T. */
4227 tree vec = make_tree_vec (1);
4228 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4229 if (CHECKING_P)
4230 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4231
4232 t = convert_from_reference (t);
4233 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4234
4235 t = make_node (NONTYPE_ARGUMENT_PACK);
4236 SET_ARGUMENT_PACK_ARGS (t, vec);
4237 TREE_TYPE (t) = type;
4238 }
4239 else
4240 t = convert_from_reference (t);
4241 }
4242 return t;
4243 }
4244
4245 /* Given a set of template parameters, return them as a set of template
4246 arguments. The template parameters are represented as a TREE_VEC, in
4247 the form documented in cp-tree.h for template arguments. */
4248
4249 static tree
4250 template_parms_to_args (tree parms)
4251 {
4252 tree header;
4253 tree args = NULL_TREE;
4254 int length = TMPL_PARMS_DEPTH (parms);
4255 int l = length;
4256
4257 /* If there is only one level of template parameters, we do not
4258 create a TREE_VEC of TREE_VECs. Instead, we return a single
4259 TREE_VEC containing the arguments. */
4260 if (length > 1)
4261 args = make_tree_vec (length);
4262
4263 for (header = parms; header; header = TREE_CHAIN (header))
4264 {
4265 tree a = copy_node (TREE_VALUE (header));
4266 int i;
4267
4268 TREE_TYPE (a) = NULL_TREE;
4269 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4270 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4271
4272 if (CHECKING_P)
4273 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4274
4275 if (length > 1)
4276 TREE_VEC_ELT (args, --l) = a;
4277 else
4278 args = a;
4279 }
4280
4281 return args;
4282 }
4283
4284 /* Within the declaration of a template, return the currently active
4285 template parameters as an argument TREE_VEC. */
4286
4287 static tree
4288 current_template_args (void)
4289 {
4290 return template_parms_to_args (current_template_parms);
4291 }
4292
4293 /* Update the declared TYPE by doing any lookups which were thought to be
4294 dependent, but are not now that we know the SCOPE of the declarator. */
4295
4296 tree
4297 maybe_update_decl_type (tree orig_type, tree scope)
4298 {
4299 tree type = orig_type;
4300
4301 if (type == NULL_TREE)
4302 return type;
4303
4304 if (TREE_CODE (orig_type) == TYPE_DECL)
4305 type = TREE_TYPE (type);
4306
4307 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4308 && dependent_type_p (type)
4309 /* Don't bother building up the args in this case. */
4310 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4311 {
4312 /* tsubst in the args corresponding to the template parameters,
4313 including auto if present. Most things will be unchanged, but
4314 make_typename_type and tsubst_qualified_id will resolve
4315 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4316 tree args = current_template_args ();
4317 tree auto_node = type_uses_auto (type);
4318 tree pushed;
4319 if (auto_node)
4320 {
4321 tree auto_vec = make_tree_vec (1);
4322 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4323 args = add_to_template_args (args, auto_vec);
4324 }
4325 pushed = push_scope (scope);
4326 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4327 if (pushed)
4328 pop_scope (scope);
4329 }
4330
4331 if (type == error_mark_node)
4332 return orig_type;
4333
4334 if (TREE_CODE (orig_type) == TYPE_DECL)
4335 {
4336 if (same_type_p (type, TREE_TYPE (orig_type)))
4337 type = orig_type;
4338 else
4339 type = TYPE_NAME (type);
4340 }
4341 return type;
4342 }
4343
4344 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4345 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4346 the new template is a member template. */
4347
4348 tree
4349 build_template_decl (tree decl, tree parms, bool member_template_p)
4350 {
4351 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4352 DECL_TEMPLATE_PARMS (tmpl) = parms;
4353 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4354 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4355 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4356
4357 return tmpl;
4358 }
4359
4360 struct template_parm_data
4361 {
4362 /* The level of the template parameters we are currently
4363 processing. */
4364 int level;
4365
4366 /* The index of the specialization argument we are currently
4367 processing. */
4368 int current_arg;
4369
4370 /* An array whose size is the number of template parameters. The
4371 elements are nonzero if the parameter has been used in any one
4372 of the arguments processed so far. */
4373 int* parms;
4374
4375 /* An array whose size is the number of template arguments. The
4376 elements are nonzero if the argument makes use of template
4377 parameters of this level. */
4378 int* arg_uses_template_parms;
4379 };
4380
4381 /* Subroutine of push_template_decl used to see if each template
4382 parameter in a partial specialization is used in the explicit
4383 argument list. If T is of the LEVEL given in DATA (which is
4384 treated as a template_parm_data*), then DATA->PARMS is marked
4385 appropriately. */
4386
4387 static int
4388 mark_template_parm (tree t, void* data)
4389 {
4390 int level;
4391 int idx;
4392 struct template_parm_data* tpd = (struct template_parm_data*) data;
4393
4394 template_parm_level_and_index (t, &level, &idx);
4395
4396 if (level == tpd->level)
4397 {
4398 tpd->parms[idx] = 1;
4399 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4400 }
4401
4402 /* Return zero so that for_each_template_parm will continue the
4403 traversal of the tree; we want to mark *every* template parm. */
4404 return 0;
4405 }
4406
4407 /* Process the partial specialization DECL. */
4408
4409 static tree
4410 process_partial_specialization (tree decl)
4411 {
4412 tree type = TREE_TYPE (decl);
4413 tree tinfo = get_template_info (decl);
4414 tree maintmpl = TI_TEMPLATE (tinfo);
4415 tree specargs = TI_ARGS (tinfo);
4416 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4417 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4418 tree inner_parms;
4419 tree inst;
4420 int nargs = TREE_VEC_LENGTH (inner_args);
4421 int ntparms;
4422 int i;
4423 bool did_error_intro = false;
4424 struct template_parm_data tpd;
4425 struct template_parm_data tpd2;
4426
4427 gcc_assert (current_template_parms);
4428
4429 /* A concept cannot be specialized. */
4430 if (flag_concepts && variable_concept_p (maintmpl))
4431 {
4432 error ("specialization of variable concept %q#D", maintmpl);
4433 return error_mark_node;
4434 }
4435
4436 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4437 ntparms = TREE_VEC_LENGTH (inner_parms);
4438
4439 /* We check that each of the template parameters given in the
4440 partial specialization is used in the argument list to the
4441 specialization. For example:
4442
4443 template <class T> struct S;
4444 template <class T> struct S<T*>;
4445
4446 The second declaration is OK because `T*' uses the template
4447 parameter T, whereas
4448
4449 template <class T> struct S<int>;
4450
4451 is no good. Even trickier is:
4452
4453 template <class T>
4454 struct S1
4455 {
4456 template <class U>
4457 struct S2;
4458 template <class U>
4459 struct S2<T>;
4460 };
4461
4462 The S2<T> declaration is actually invalid; it is a
4463 full-specialization. Of course,
4464
4465 template <class U>
4466 struct S2<T (*)(U)>;
4467
4468 or some such would have been OK. */
4469 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4470 tpd.parms = XALLOCAVEC (int, ntparms);
4471 memset (tpd.parms, 0, sizeof (int) * ntparms);
4472
4473 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4474 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4475 for (i = 0; i < nargs; ++i)
4476 {
4477 tpd.current_arg = i;
4478 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4479 &mark_template_parm,
4480 &tpd,
4481 NULL,
4482 /*include_nondeduced_p=*/false);
4483 }
4484 for (i = 0; i < ntparms; ++i)
4485 if (tpd.parms[i] == 0)
4486 {
4487 /* One of the template parms was not used in a deduced context in the
4488 specialization. */
4489 if (!did_error_intro)
4490 {
4491 error ("template parameters not deducible in "
4492 "partial specialization:");
4493 did_error_intro = true;
4494 }
4495
4496 inform (input_location, " %qD",
4497 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4498 }
4499
4500 if (did_error_intro)
4501 return error_mark_node;
4502
4503 /* [temp.class.spec]
4504
4505 The argument list of the specialization shall not be identical to
4506 the implicit argument list of the primary template. */
4507 tree main_args
4508 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4509 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4510 && (!flag_concepts
4511 || !subsumes_constraints (current_template_constraints (),
4512 get_constraints (maintmpl))))
4513 {
4514 if (!flag_concepts)
4515 error ("partial specialization %q+D does not specialize "
4516 "any template arguments", decl);
4517 else
4518 error ("partial specialization %q+D does not specialize any "
4519 "template arguments and is not more constrained than", decl);
4520 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4521 }
4522
4523 /* A partial specialization that replaces multiple parameters of the
4524 primary template with a pack expansion is less specialized for those
4525 parameters. */
4526 if (nargs < DECL_NTPARMS (maintmpl))
4527 {
4528 error ("partial specialization is not more specialized than the "
4529 "primary template because it replaces multiple parameters "
4530 "with a pack expansion");
4531 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4532 return decl;
4533 }
4534
4535 /* [temp.class.spec]
4536
4537 A partially specialized non-type argument expression shall not
4538 involve template parameters of the partial specialization except
4539 when the argument expression is a simple identifier.
4540
4541 The type of a template parameter corresponding to a specialized
4542 non-type argument shall not be dependent on a parameter of the
4543 specialization.
4544
4545 Also, we verify that pack expansions only occur at the
4546 end of the argument list. */
4547 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4548 tpd2.parms = 0;
4549 for (i = 0; i < nargs; ++i)
4550 {
4551 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4552 tree arg = TREE_VEC_ELT (inner_args, i);
4553 tree packed_args = NULL_TREE;
4554 int j, len = 1;
4555
4556 if (ARGUMENT_PACK_P (arg))
4557 {
4558 /* Extract the arguments from the argument pack. We'll be
4559 iterating over these in the following loop. */
4560 packed_args = ARGUMENT_PACK_ARGS (arg);
4561 len = TREE_VEC_LENGTH (packed_args);
4562 }
4563
4564 for (j = 0; j < len; j++)
4565 {
4566 if (packed_args)
4567 /* Get the Jth argument in the parameter pack. */
4568 arg = TREE_VEC_ELT (packed_args, j);
4569
4570 if (PACK_EXPANSION_P (arg))
4571 {
4572 /* Pack expansions must come at the end of the
4573 argument list. */
4574 if ((packed_args && j < len - 1)
4575 || (!packed_args && i < nargs - 1))
4576 {
4577 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4578 error ("parameter pack argument %qE must be at the "
4579 "end of the template argument list", arg);
4580 else
4581 error ("parameter pack argument %qT must be at the "
4582 "end of the template argument list", arg);
4583 }
4584 }
4585
4586 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4587 /* We only care about the pattern. */
4588 arg = PACK_EXPANSION_PATTERN (arg);
4589
4590 if (/* These first two lines are the `non-type' bit. */
4591 !TYPE_P (arg)
4592 && TREE_CODE (arg) != TEMPLATE_DECL
4593 /* This next two lines are the `argument expression is not just a
4594 simple identifier' condition and also the `specialized
4595 non-type argument' bit. */
4596 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4597 && !(REFERENCE_REF_P (arg)
4598 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4599 {
4600 if ((!packed_args && tpd.arg_uses_template_parms[i])
4601 || (packed_args && uses_template_parms (arg)))
4602 error ("template argument %qE involves template parameter(s)",
4603 arg);
4604 else
4605 {
4606 /* Look at the corresponding template parameter,
4607 marking which template parameters its type depends
4608 upon. */
4609 tree type = TREE_TYPE (parm);
4610
4611 if (!tpd2.parms)
4612 {
4613 /* We haven't yet initialized TPD2. Do so now. */
4614 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4615 /* The number of parameters here is the number in the
4616 main template, which, as checked in the assertion
4617 above, is NARGS. */
4618 tpd2.parms = XALLOCAVEC (int, nargs);
4619 tpd2.level =
4620 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4621 }
4622
4623 /* Mark the template parameters. But this time, we're
4624 looking for the template parameters of the main
4625 template, not in the specialization. */
4626 tpd2.current_arg = i;
4627 tpd2.arg_uses_template_parms[i] = 0;
4628 memset (tpd2.parms, 0, sizeof (int) * nargs);
4629 for_each_template_parm (type,
4630 &mark_template_parm,
4631 &tpd2,
4632 NULL,
4633 /*include_nondeduced_p=*/false);
4634
4635 if (tpd2.arg_uses_template_parms [i])
4636 {
4637 /* The type depended on some template parameters.
4638 If they are fully specialized in the
4639 specialization, that's OK. */
4640 int j;
4641 int count = 0;
4642 for (j = 0; j < nargs; ++j)
4643 if (tpd2.parms[j] != 0
4644 && tpd.arg_uses_template_parms [j])
4645 ++count;
4646 if (count != 0)
4647 error_n (input_location, count,
4648 "type %qT of template argument %qE depends "
4649 "on a template parameter",
4650 "type %qT of template argument %qE depends "
4651 "on template parameters",
4652 type,
4653 arg);
4654 }
4655 }
4656 }
4657 }
4658 }
4659
4660 /* We should only get here once. */
4661 if (TREE_CODE (decl) == TYPE_DECL)
4662 gcc_assert (!COMPLETE_TYPE_P (type));
4663
4664 // Build the template decl.
4665 tree tmpl = build_template_decl (decl, current_template_parms,
4666 DECL_MEMBER_TEMPLATE_P (maintmpl));
4667 TREE_TYPE (tmpl) = type;
4668 DECL_TEMPLATE_RESULT (tmpl) = decl;
4669 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4670 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4671 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4672
4673 if (VAR_P (decl))
4674 /* We didn't register this in check_explicit_specialization so we could
4675 wait until the constraints were set. */
4676 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4677 else
4678 associate_classtype_constraints (type);
4679
4680 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4681 = tree_cons (specargs, tmpl,
4682 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4683 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4684
4685 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4686 inst = TREE_CHAIN (inst))
4687 {
4688 tree instance = TREE_VALUE (inst);
4689 if (TYPE_P (instance)
4690 ? (COMPLETE_TYPE_P (instance)
4691 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4692 : DECL_TEMPLATE_INSTANTIATION (instance))
4693 {
4694 tree spec = most_specialized_partial_spec (instance, tf_none);
4695 tree inst_decl = (DECL_P (instance)
4696 ? instance : TYPE_NAME (instance));
4697 if (!spec)
4698 /* OK */;
4699 else if (spec == error_mark_node)
4700 permerror (input_location,
4701 "declaration of %qD ambiguates earlier template "
4702 "instantiation for %qD", decl, inst_decl);
4703 else if (TREE_VALUE (spec) == tmpl)
4704 permerror (input_location,
4705 "partial specialization of %qD after instantiation "
4706 "of %qD", decl, inst_decl);
4707 }
4708 }
4709
4710 return decl;
4711 }
4712
4713 /* PARM is a template parameter of some form; return the corresponding
4714 TEMPLATE_PARM_INDEX. */
4715
4716 static tree
4717 get_template_parm_index (tree parm)
4718 {
4719 if (TREE_CODE (parm) == PARM_DECL
4720 || TREE_CODE (parm) == CONST_DECL)
4721 parm = DECL_INITIAL (parm);
4722 else if (TREE_CODE (parm) == TYPE_DECL
4723 || TREE_CODE (parm) == TEMPLATE_DECL)
4724 parm = TREE_TYPE (parm);
4725 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4726 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4727 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4728 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4729 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4730 return parm;
4731 }
4732
4733 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4734 parameter packs used by the template parameter PARM. */
4735
4736 static void
4737 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4738 {
4739 /* A type parm can't refer to another parm. */
4740 if (TREE_CODE (parm) == TYPE_DECL)
4741 return;
4742 else if (TREE_CODE (parm) == PARM_DECL)
4743 {
4744 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4745 ppd, ppd->visited);
4746 return;
4747 }
4748
4749 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4750
4751 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4752 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4753 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4754 }
4755
4756 /* PARM is a template parameter pack. Return any parameter packs used in
4757 its type or the type of any of its template parameters. If there are
4758 any such packs, it will be instantiated into a fixed template parameter
4759 list by partial instantiation rather than be fully deduced. */
4760
4761 tree
4762 fixed_parameter_pack_p (tree parm)
4763 {
4764 /* This can only be true in a member template. */
4765 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4766 return NULL_TREE;
4767 /* This can only be true for a parameter pack. */
4768 if (!template_parameter_pack_p (parm))
4769 return NULL_TREE;
4770 /* A type parm can't refer to another parm. */
4771 if (TREE_CODE (parm) == TYPE_DECL)
4772 return NULL_TREE;
4773
4774 tree parameter_packs = NULL_TREE;
4775 struct find_parameter_pack_data ppd;
4776 ppd.parameter_packs = &parameter_packs;
4777 ppd.visited = new hash_set<tree>;
4778 ppd.type_pack_expansion_p = false;
4779
4780 fixed_parameter_pack_p_1 (parm, &ppd);
4781
4782 delete ppd.visited;
4783 return parameter_packs;
4784 }
4785
4786 /* Check that a template declaration's use of default arguments and
4787 parameter packs is not invalid. Here, PARMS are the template
4788 parameters. IS_PRIMARY is true if DECL is the thing declared by
4789 a primary template. IS_PARTIAL is true if DECL is a partial
4790 specialization.
4791
4792 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4793 declaration (but not a definition); 1 indicates a declaration, 2
4794 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4795 emitted for extraneous default arguments.
4796
4797 Returns TRUE if there were no errors found, FALSE otherwise. */
4798
4799 bool
4800 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4801 bool is_partial, int is_friend_decl)
4802 {
4803 const char *msg;
4804 int last_level_to_check;
4805 tree parm_level;
4806 bool no_errors = true;
4807
4808 /* [temp.param]
4809
4810 A default template-argument shall not be specified in a
4811 function template declaration or a function template definition, nor
4812 in the template-parameter-list of the definition of a member of a
4813 class template. */
4814
4815 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4816 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4817 /* You can't have a function template declaration in a local
4818 scope, nor you can you define a member of a class template in a
4819 local scope. */
4820 return true;
4821
4822 if ((TREE_CODE (decl) == TYPE_DECL
4823 && TREE_TYPE (decl)
4824 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4825 || (TREE_CODE (decl) == FUNCTION_DECL
4826 && LAMBDA_FUNCTION_P (decl)))
4827 /* A lambda doesn't have an explicit declaration; don't complain
4828 about the parms of the enclosing class. */
4829 return true;
4830
4831 if (current_class_type
4832 && !TYPE_BEING_DEFINED (current_class_type)
4833 && DECL_LANG_SPECIFIC (decl)
4834 && DECL_DECLARES_FUNCTION_P (decl)
4835 /* If this is either a friend defined in the scope of the class
4836 or a member function. */
4837 && (DECL_FUNCTION_MEMBER_P (decl)
4838 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4839 : DECL_FRIEND_CONTEXT (decl)
4840 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4841 : false)
4842 /* And, if it was a member function, it really was defined in
4843 the scope of the class. */
4844 && (!DECL_FUNCTION_MEMBER_P (decl)
4845 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4846 /* We already checked these parameters when the template was
4847 declared, so there's no need to do it again now. This function
4848 was defined in class scope, but we're processing its body now
4849 that the class is complete. */
4850 return true;
4851
4852 /* Core issue 226 (C++0x only): the following only applies to class
4853 templates. */
4854 if (is_primary
4855 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4856 {
4857 /* [temp.param]
4858
4859 If a template-parameter has a default template-argument, all
4860 subsequent template-parameters shall have a default
4861 template-argument supplied. */
4862 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4863 {
4864 tree inner_parms = TREE_VALUE (parm_level);
4865 int ntparms = TREE_VEC_LENGTH (inner_parms);
4866 int seen_def_arg_p = 0;
4867 int i;
4868
4869 for (i = 0; i < ntparms; ++i)
4870 {
4871 tree parm = TREE_VEC_ELT (inner_parms, i);
4872
4873 if (parm == error_mark_node)
4874 continue;
4875
4876 if (TREE_PURPOSE (parm))
4877 seen_def_arg_p = 1;
4878 else if (seen_def_arg_p
4879 && !template_parameter_pack_p (TREE_VALUE (parm)))
4880 {
4881 error ("no default argument for %qD", TREE_VALUE (parm));
4882 /* For better subsequent error-recovery, we indicate that
4883 there should have been a default argument. */
4884 TREE_PURPOSE (parm) = error_mark_node;
4885 no_errors = false;
4886 }
4887 else if (!is_partial
4888 && !is_friend_decl
4889 /* Don't complain about an enclosing partial
4890 specialization. */
4891 && parm_level == parms
4892 && TREE_CODE (decl) == TYPE_DECL
4893 && i < ntparms - 1
4894 && template_parameter_pack_p (TREE_VALUE (parm))
4895 /* A fixed parameter pack will be partially
4896 instantiated into a fixed length list. */
4897 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4898 {
4899 /* A primary class template can only have one
4900 parameter pack, at the end of the template
4901 parameter list. */
4902
4903 error ("parameter pack %q+D must be at the end of the"
4904 " template parameter list", TREE_VALUE (parm));
4905
4906 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4907 = error_mark_node;
4908 no_errors = false;
4909 }
4910 }
4911 }
4912 }
4913
4914 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4915 || is_partial
4916 || !is_primary
4917 || is_friend_decl)
4918 /* For an ordinary class template, default template arguments are
4919 allowed at the innermost level, e.g.:
4920 template <class T = int>
4921 struct S {};
4922 but, in a partial specialization, they're not allowed even
4923 there, as we have in [temp.class.spec]:
4924
4925 The template parameter list of a specialization shall not
4926 contain default template argument values.
4927
4928 So, for a partial specialization, or for a function template
4929 (in C++98/C++03), we look at all of them. */
4930 ;
4931 else
4932 /* But, for a primary class template that is not a partial
4933 specialization we look at all template parameters except the
4934 innermost ones. */
4935 parms = TREE_CHAIN (parms);
4936
4937 /* Figure out what error message to issue. */
4938 if (is_friend_decl == 2)
4939 msg = G_("default template arguments may not be used in function template "
4940 "friend re-declaration");
4941 else if (is_friend_decl)
4942 msg = G_("default template arguments may not be used in function template "
4943 "friend declarations");
4944 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4945 msg = G_("default template arguments may not be used in function templates "
4946 "without -std=c++11 or -std=gnu++11");
4947 else if (is_partial)
4948 msg = G_("default template arguments may not be used in "
4949 "partial specializations");
4950 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4951 msg = G_("default argument for template parameter for class enclosing %qD");
4952 else
4953 /* Per [temp.param]/9, "A default template-argument shall not be
4954 specified in the template-parameter-lists of the definition of
4955 a member of a class template that appears outside of the member's
4956 class.", thus if we aren't handling a member of a class template
4957 there is no need to examine the parameters. */
4958 return true;
4959
4960 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4961 /* If we're inside a class definition, there's no need to
4962 examine the parameters to the class itself. On the one
4963 hand, they will be checked when the class is defined, and,
4964 on the other, default arguments are valid in things like:
4965 template <class T = double>
4966 struct S { template <class U> void f(U); };
4967 Here the default argument for `S' has no bearing on the
4968 declaration of `f'. */
4969 last_level_to_check = template_class_depth (current_class_type) + 1;
4970 else
4971 /* Check everything. */
4972 last_level_to_check = 0;
4973
4974 for (parm_level = parms;
4975 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4976 parm_level = TREE_CHAIN (parm_level))
4977 {
4978 tree inner_parms = TREE_VALUE (parm_level);
4979 int i;
4980 int ntparms;
4981
4982 ntparms = TREE_VEC_LENGTH (inner_parms);
4983 for (i = 0; i < ntparms; ++i)
4984 {
4985 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4986 continue;
4987
4988 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4989 {
4990 if (msg)
4991 {
4992 no_errors = false;
4993 if (is_friend_decl == 2)
4994 return no_errors;
4995
4996 error (msg, decl);
4997 msg = 0;
4998 }
4999
5000 /* Clear out the default argument so that we are not
5001 confused later. */
5002 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5003 }
5004 }
5005
5006 /* At this point, if we're still interested in issuing messages,
5007 they must apply to classes surrounding the object declared. */
5008 if (msg)
5009 msg = G_("default argument for template parameter for class "
5010 "enclosing %qD");
5011 }
5012
5013 return no_errors;
5014 }
5015
5016 /* Worker for push_template_decl_real, called via
5017 for_each_template_parm. DATA is really an int, indicating the
5018 level of the parameters we are interested in. If T is a template
5019 parameter of that level, return nonzero. */
5020
5021 static int
5022 template_parm_this_level_p (tree t, void* data)
5023 {
5024 int this_level = *(int *)data;
5025 int level;
5026
5027 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5028 level = TEMPLATE_PARM_LEVEL (t);
5029 else
5030 level = TEMPLATE_TYPE_LEVEL (t);
5031 return level == this_level;
5032 }
5033
5034 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5035 parameters given by current_template_args, or reuses a
5036 previously existing one, if appropriate. Returns the DECL, or an
5037 equivalent one, if it is replaced via a call to duplicate_decls.
5038
5039 If IS_FRIEND is true, DECL is a friend declaration. */
5040
5041 tree
5042 push_template_decl_real (tree decl, bool is_friend)
5043 {
5044 tree tmpl;
5045 tree args;
5046 tree info;
5047 tree ctx;
5048 bool is_primary;
5049 bool is_partial;
5050 int new_template_p = 0;
5051 /* True if the template is a member template, in the sense of
5052 [temp.mem]. */
5053 bool member_template_p = false;
5054
5055 if (decl == error_mark_node || !current_template_parms)
5056 return error_mark_node;
5057
5058 /* See if this is a partial specialization. */
5059 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5060 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5061 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5062 || (VAR_P (decl)
5063 && DECL_LANG_SPECIFIC (decl)
5064 && DECL_TEMPLATE_SPECIALIZATION (decl)
5065 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5066
5067 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5068 is_friend = true;
5069
5070 if (is_friend)
5071 /* For a friend, we want the context of the friend function, not
5072 the type of which it is a friend. */
5073 ctx = CP_DECL_CONTEXT (decl);
5074 else if (CP_DECL_CONTEXT (decl)
5075 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5076 /* In the case of a virtual function, we want the class in which
5077 it is defined. */
5078 ctx = CP_DECL_CONTEXT (decl);
5079 else
5080 /* Otherwise, if we're currently defining some class, the DECL
5081 is assumed to be a member of the class. */
5082 ctx = current_scope ();
5083
5084 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5085 ctx = NULL_TREE;
5086
5087 if (!DECL_CONTEXT (decl))
5088 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5089
5090 /* See if this is a primary template. */
5091 if (is_friend && ctx
5092 && uses_template_parms_level (ctx, processing_template_decl))
5093 /* A friend template that specifies a class context, i.e.
5094 template <typename T> friend void A<T>::f();
5095 is not primary. */
5096 is_primary = false;
5097 else if (TREE_CODE (decl) == TYPE_DECL
5098 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5099 is_primary = false;
5100 else
5101 is_primary = template_parm_scope_p ();
5102
5103 if (is_primary)
5104 {
5105 warning (OPT_Wtemplates, "template %qD declared", decl);
5106
5107 if (DECL_CLASS_SCOPE_P (decl))
5108 member_template_p = true;
5109 if (TREE_CODE (decl) == TYPE_DECL
5110 && anon_aggrname_p (DECL_NAME (decl)))
5111 {
5112 error ("template class without a name");
5113 return error_mark_node;
5114 }
5115 else if (TREE_CODE (decl) == FUNCTION_DECL)
5116 {
5117 if (member_template_p)
5118 {
5119 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5120 error ("member template %qD may not have virt-specifiers", decl);
5121 }
5122 if (DECL_DESTRUCTOR_P (decl))
5123 {
5124 /* [temp.mem]
5125
5126 A destructor shall not be a member template. */
5127 error ("destructor %qD declared as member template", decl);
5128 return error_mark_node;
5129 }
5130 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5131 && (!prototype_p (TREE_TYPE (decl))
5132 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5133 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5134 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5135 == void_list_node)))
5136 {
5137 /* [basic.stc.dynamic.allocation]
5138
5139 An allocation function can be a function
5140 template. ... Template allocation functions shall
5141 have two or more parameters. */
5142 error ("invalid template declaration of %qD", decl);
5143 return error_mark_node;
5144 }
5145 }
5146 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5147 && CLASS_TYPE_P (TREE_TYPE (decl)))
5148 /* OK */;
5149 else if (TREE_CODE (decl) == TYPE_DECL
5150 && TYPE_DECL_ALIAS_P (decl))
5151 /* alias-declaration */
5152 gcc_assert (!DECL_ARTIFICIAL (decl));
5153 else if (VAR_P (decl))
5154 /* C++14 variable template. */;
5155 else
5156 {
5157 error ("template declaration of %q#D", decl);
5158 return error_mark_node;
5159 }
5160 }
5161
5162 /* Check to see that the rules regarding the use of default
5163 arguments are not being violated. */
5164 check_default_tmpl_args (decl, current_template_parms,
5165 is_primary, is_partial, /*is_friend_decl=*/0);
5166
5167 /* Ensure that there are no parameter packs in the type of this
5168 declaration that have not been expanded. */
5169 if (TREE_CODE (decl) == FUNCTION_DECL)
5170 {
5171 /* Check each of the arguments individually to see if there are
5172 any bare parameter packs. */
5173 tree type = TREE_TYPE (decl);
5174 tree arg = DECL_ARGUMENTS (decl);
5175 tree argtype = TYPE_ARG_TYPES (type);
5176
5177 while (arg && argtype)
5178 {
5179 if (!DECL_PACK_P (arg)
5180 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5181 {
5182 /* This is a PARM_DECL that contains unexpanded parameter
5183 packs. We have already complained about this in the
5184 check_for_bare_parameter_packs call, so just replace
5185 these types with ERROR_MARK_NODE. */
5186 TREE_TYPE (arg) = error_mark_node;
5187 TREE_VALUE (argtype) = error_mark_node;
5188 }
5189
5190 arg = DECL_CHAIN (arg);
5191 argtype = TREE_CHAIN (argtype);
5192 }
5193
5194 /* Check for bare parameter packs in the return type and the
5195 exception specifiers. */
5196 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5197 /* Errors were already issued, set return type to int
5198 as the frontend doesn't expect error_mark_node as
5199 the return type. */
5200 TREE_TYPE (type) = integer_type_node;
5201 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5202 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5203 }
5204 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5205 && TYPE_DECL_ALIAS_P (decl))
5206 ? DECL_ORIGINAL_TYPE (decl)
5207 : TREE_TYPE (decl)))
5208 {
5209 TREE_TYPE (decl) = error_mark_node;
5210 return error_mark_node;
5211 }
5212
5213 if (is_partial)
5214 return process_partial_specialization (decl);
5215
5216 args = current_template_args ();
5217
5218 if (!ctx
5219 || TREE_CODE (ctx) == FUNCTION_DECL
5220 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5221 || (TREE_CODE (decl) == TYPE_DECL
5222 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5223 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5224 {
5225 if (DECL_LANG_SPECIFIC (decl)
5226 && DECL_TEMPLATE_INFO (decl)
5227 && DECL_TI_TEMPLATE (decl))
5228 tmpl = DECL_TI_TEMPLATE (decl);
5229 /* If DECL is a TYPE_DECL for a class-template, then there won't
5230 be DECL_LANG_SPECIFIC. The information equivalent to
5231 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5232 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5233 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5234 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5235 {
5236 /* Since a template declaration already existed for this
5237 class-type, we must be redeclaring it here. Make sure
5238 that the redeclaration is valid. */
5239 redeclare_class_template (TREE_TYPE (decl),
5240 current_template_parms,
5241 current_template_constraints ());
5242 /* We don't need to create a new TEMPLATE_DECL; just use the
5243 one we already had. */
5244 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5245 }
5246 else
5247 {
5248 tmpl = build_template_decl (decl, current_template_parms,
5249 member_template_p);
5250 new_template_p = 1;
5251
5252 if (DECL_LANG_SPECIFIC (decl)
5253 && DECL_TEMPLATE_SPECIALIZATION (decl))
5254 {
5255 /* A specialization of a member template of a template
5256 class. */
5257 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5258 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5259 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5260 }
5261 }
5262 }
5263 else
5264 {
5265 tree a, t, current, parms;
5266 int i;
5267 tree tinfo = get_template_info (decl);
5268
5269 if (!tinfo)
5270 {
5271 error ("template definition of non-template %q#D", decl);
5272 return error_mark_node;
5273 }
5274
5275 tmpl = TI_TEMPLATE (tinfo);
5276
5277 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5278 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5279 && DECL_TEMPLATE_SPECIALIZATION (decl)
5280 && DECL_MEMBER_TEMPLATE_P (tmpl))
5281 {
5282 tree new_tmpl;
5283
5284 /* The declaration is a specialization of a member
5285 template, declared outside the class. Therefore, the
5286 innermost template arguments will be NULL, so we
5287 replace them with the arguments determined by the
5288 earlier call to check_explicit_specialization. */
5289 args = DECL_TI_ARGS (decl);
5290
5291 new_tmpl
5292 = build_template_decl (decl, current_template_parms,
5293 member_template_p);
5294 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5295 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5296 DECL_TI_TEMPLATE (decl) = new_tmpl;
5297 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5298 DECL_TEMPLATE_INFO (new_tmpl)
5299 = build_template_info (tmpl, args);
5300
5301 register_specialization (new_tmpl,
5302 most_general_template (tmpl),
5303 args,
5304 is_friend, 0);
5305 return decl;
5306 }
5307
5308 /* Make sure the template headers we got make sense. */
5309
5310 parms = DECL_TEMPLATE_PARMS (tmpl);
5311 i = TMPL_PARMS_DEPTH (parms);
5312 if (TMPL_ARGS_DEPTH (args) != i)
5313 {
5314 error ("expected %d levels of template parms for %q#D, got %d",
5315 i, decl, TMPL_ARGS_DEPTH (args));
5316 DECL_INTERFACE_KNOWN (decl) = 1;
5317 return error_mark_node;
5318 }
5319 else
5320 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5321 {
5322 a = TMPL_ARGS_LEVEL (args, i);
5323 t = INNERMOST_TEMPLATE_PARMS (parms);
5324
5325 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5326 {
5327 if (current == decl)
5328 error ("got %d template parameters for %q#D",
5329 TREE_VEC_LENGTH (a), decl);
5330 else
5331 error ("got %d template parameters for %q#T",
5332 TREE_VEC_LENGTH (a), current);
5333 error (" but %d required", TREE_VEC_LENGTH (t));
5334 /* Avoid crash in import_export_decl. */
5335 DECL_INTERFACE_KNOWN (decl) = 1;
5336 return error_mark_node;
5337 }
5338
5339 if (current == decl)
5340 current = ctx;
5341 else if (current == NULL_TREE)
5342 /* Can happen in erroneous input. */
5343 break;
5344 else
5345 current = get_containing_scope (current);
5346 }
5347
5348 /* Check that the parms are used in the appropriate qualifying scopes
5349 in the declarator. */
5350 if (!comp_template_args
5351 (TI_ARGS (tinfo),
5352 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5353 {
5354 error ("\
5355 template arguments to %qD do not match original template %qD",
5356 decl, DECL_TEMPLATE_RESULT (tmpl));
5357 if (!uses_template_parms (TI_ARGS (tinfo)))
5358 inform (input_location, "use template<> for an explicit specialization");
5359 /* Avoid crash in import_export_decl. */
5360 DECL_INTERFACE_KNOWN (decl) = 1;
5361 return error_mark_node;
5362 }
5363 }
5364
5365 DECL_TEMPLATE_RESULT (tmpl) = decl;
5366 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5367
5368 /* Push template declarations for global functions and types. Note
5369 that we do not try to push a global template friend declared in a
5370 template class; such a thing may well depend on the template
5371 parameters of the class. */
5372 if (new_template_p && !ctx
5373 && !(is_friend && template_class_depth (current_class_type) > 0))
5374 {
5375 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5376 if (tmpl == error_mark_node)
5377 return error_mark_node;
5378
5379 /* Hide template friend classes that haven't been declared yet. */
5380 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5381 {
5382 DECL_ANTICIPATED (tmpl) = 1;
5383 DECL_FRIEND_P (tmpl) = 1;
5384 }
5385 }
5386
5387 if (is_primary)
5388 {
5389 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5390 int i;
5391
5392 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5393 if (DECL_CONV_FN_P (tmpl))
5394 {
5395 int depth = TMPL_PARMS_DEPTH (parms);
5396
5397 /* It is a conversion operator. See if the type converted to
5398 depends on innermost template operands. */
5399
5400 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5401 depth))
5402 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5403 }
5404
5405 /* Give template template parms a DECL_CONTEXT of the template
5406 for which they are a parameter. */
5407 parms = INNERMOST_TEMPLATE_PARMS (parms);
5408 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5409 {
5410 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5411 if (TREE_CODE (parm) == TEMPLATE_DECL)
5412 DECL_CONTEXT (parm) = tmpl;
5413 }
5414
5415 if (TREE_CODE (decl) == TYPE_DECL
5416 && TYPE_DECL_ALIAS_P (decl)
5417 && complex_alias_template_p (tmpl))
5418 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5419 }
5420
5421 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5422 back to its most general template. If TMPL is a specialization,
5423 ARGS may only have the innermost set of arguments. Add the missing
5424 argument levels if necessary. */
5425 if (DECL_TEMPLATE_INFO (tmpl))
5426 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5427
5428 info = build_template_info (tmpl, args);
5429
5430 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5431 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5432 else
5433 {
5434 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5435 retrofit_lang_decl (decl);
5436 if (DECL_LANG_SPECIFIC (decl))
5437 DECL_TEMPLATE_INFO (decl) = info;
5438 }
5439
5440 if (flag_implicit_templates
5441 && !is_friend
5442 && TREE_PUBLIC (decl)
5443 && VAR_OR_FUNCTION_DECL_P (decl))
5444 /* Set DECL_COMDAT on template instantiations; if we force
5445 them to be emitted by explicit instantiation or -frepo,
5446 mark_needed will tell cgraph to do the right thing. */
5447 DECL_COMDAT (decl) = true;
5448
5449 return DECL_TEMPLATE_RESULT (tmpl);
5450 }
5451
5452 tree
5453 push_template_decl (tree decl)
5454 {
5455 return push_template_decl_real (decl, false);
5456 }
5457
5458 /* FN is an inheriting constructor that inherits from the constructor
5459 template INHERITED; turn FN into a constructor template with a matching
5460 template header. */
5461
5462 tree
5463 add_inherited_template_parms (tree fn, tree inherited)
5464 {
5465 tree inner_parms
5466 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5467 inner_parms = copy_node (inner_parms);
5468 tree parms
5469 = tree_cons (size_int (processing_template_decl + 1),
5470 inner_parms, current_template_parms);
5471 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5472 tree args = template_parms_to_args (parms);
5473 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5474 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5475 DECL_TEMPLATE_RESULT (tmpl) = fn;
5476 DECL_ARTIFICIAL (tmpl) = true;
5477 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5478 return tmpl;
5479 }
5480
5481 /* Called when a class template TYPE is redeclared with the indicated
5482 template PARMS, e.g.:
5483
5484 template <class T> struct S;
5485 template <class T> struct S {}; */
5486
5487 bool
5488 redeclare_class_template (tree type, tree parms, tree cons)
5489 {
5490 tree tmpl;
5491 tree tmpl_parms;
5492 int i;
5493
5494 if (!TYPE_TEMPLATE_INFO (type))
5495 {
5496 error ("%qT is not a template type", type);
5497 return false;
5498 }
5499
5500 tmpl = TYPE_TI_TEMPLATE (type);
5501 if (!PRIMARY_TEMPLATE_P (tmpl))
5502 /* The type is nested in some template class. Nothing to worry
5503 about here; there are no new template parameters for the nested
5504 type. */
5505 return true;
5506
5507 if (!parms)
5508 {
5509 error ("template specifiers not specified in declaration of %qD",
5510 tmpl);
5511 return false;
5512 }
5513
5514 parms = INNERMOST_TEMPLATE_PARMS (parms);
5515 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5516
5517 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5518 {
5519 error_n (input_location, TREE_VEC_LENGTH (parms),
5520 "redeclared with %d template parameter",
5521 "redeclared with %d template parameters",
5522 TREE_VEC_LENGTH (parms));
5523 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5524 "previous declaration %qD used %d template parameter",
5525 "previous declaration %qD used %d template parameters",
5526 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5527 return false;
5528 }
5529
5530 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5531 {
5532 tree tmpl_parm;
5533 tree parm;
5534 tree tmpl_default;
5535 tree parm_default;
5536
5537 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5538 || TREE_VEC_ELT (parms, i) == error_mark_node)
5539 continue;
5540
5541 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5542 if (error_operand_p (tmpl_parm))
5543 return false;
5544
5545 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5546 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5547 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5548
5549 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5550 TEMPLATE_DECL. */
5551 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5552 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5553 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5554 || (TREE_CODE (tmpl_parm) != PARM_DECL
5555 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5556 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5557 || (TREE_CODE (tmpl_parm) == PARM_DECL
5558 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5559 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5560 {
5561 error ("template parameter %q+#D", tmpl_parm);
5562 error ("redeclared here as %q#D", parm);
5563 return false;
5564 }
5565
5566 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5567 {
5568 /* We have in [temp.param]:
5569
5570 A template-parameter may not be given default arguments
5571 by two different declarations in the same scope. */
5572 error_at (input_location, "redefinition of default argument for %q#D", parm);
5573 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5574 "original definition appeared here");
5575 return false;
5576 }
5577
5578 if (parm_default != NULL_TREE)
5579 /* Update the previous template parameters (which are the ones
5580 that will really count) with the new default value. */
5581 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5582 else if (tmpl_default != NULL_TREE)
5583 /* Update the new parameters, too; they'll be used as the
5584 parameters for any members. */
5585 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5586
5587 /* Give each template template parm in this redeclaration a
5588 DECL_CONTEXT of the template for which they are a parameter. */
5589 if (TREE_CODE (parm) == TEMPLATE_DECL)
5590 {
5591 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5592 DECL_CONTEXT (parm) = tmpl;
5593 }
5594 }
5595
5596 // Cannot redeclare a class template with a different set of constraints.
5597 if (!equivalent_constraints (get_constraints (tmpl), cons))
5598 {
5599 error_at (input_location, "redeclaration %q#D with different "
5600 "constraints", tmpl);
5601 inform (DECL_SOURCE_LOCATION (tmpl),
5602 "original declaration appeared here");
5603 }
5604
5605 return true;
5606 }
5607
5608 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5609 to be used when the caller has already checked
5610 (processing_template_decl
5611 && !instantiation_dependent_expression_p (expr)
5612 && potential_constant_expression (expr))
5613 and cleared processing_template_decl. */
5614
5615 tree
5616 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5617 {
5618 return tsubst_copy_and_build (expr,
5619 /*args=*/NULL_TREE,
5620 complain,
5621 /*in_decl=*/NULL_TREE,
5622 /*function_p=*/false,
5623 /*integral_constant_expression_p=*/true);
5624 }
5625
5626 /* Simplify EXPR if it is a non-dependent expression. Returns the
5627 (possibly simplified) expression. */
5628
5629 tree
5630 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5631 {
5632 if (expr == NULL_TREE)
5633 return NULL_TREE;
5634
5635 /* If we're in a template, but EXPR isn't value dependent, simplify
5636 it. We're supposed to treat:
5637
5638 template <typename T> void f(T[1 + 1]);
5639 template <typename T> void f(T[2]);
5640
5641 as two declarations of the same function, for example. */
5642 if (processing_template_decl
5643 && !instantiation_dependent_expression_p (expr)
5644 && potential_constant_expression (expr))
5645 {
5646 processing_template_decl_sentinel s;
5647 expr = instantiate_non_dependent_expr_internal (expr, complain);
5648 }
5649 return expr;
5650 }
5651
5652 tree
5653 instantiate_non_dependent_expr (tree expr)
5654 {
5655 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5656 }
5657
5658 /* True iff T is a specialization of a variable template. */
5659
5660 bool
5661 variable_template_specialization_p (tree t)
5662 {
5663 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5664 return false;
5665 tree tmpl = DECL_TI_TEMPLATE (t);
5666 return variable_template_p (tmpl);
5667 }
5668
5669 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5670 template declaration, or a TYPE_DECL for an alias declaration. */
5671
5672 bool
5673 alias_type_or_template_p (tree t)
5674 {
5675 if (t == NULL_TREE)
5676 return false;
5677 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5678 || (TYPE_P (t)
5679 && TYPE_NAME (t)
5680 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5681 || DECL_ALIAS_TEMPLATE_P (t));
5682 }
5683
5684 /* Return TRUE iff T is a specialization of an alias template. */
5685
5686 bool
5687 alias_template_specialization_p (const_tree t)
5688 {
5689 /* It's an alias template specialization if it's an alias and its
5690 TYPE_NAME is a specialization of a primary template. */
5691 if (TYPE_ALIAS_P (t))
5692 {
5693 tree name = TYPE_NAME (t);
5694 if (DECL_LANG_SPECIFIC (name))
5695 if (tree ti = DECL_TEMPLATE_INFO (name))
5696 {
5697 tree tmpl = TI_TEMPLATE (ti);
5698 return PRIMARY_TEMPLATE_P (tmpl);
5699 }
5700 }
5701 return false;
5702 }
5703
5704 /* An alias template is complex from a SFINAE perspective if a template-id
5705 using that alias can be ill-formed when the expansion is not, as with
5706 the void_t template. We determine this by checking whether the
5707 expansion for the alias template uses all its template parameters. */
5708
5709 struct uses_all_template_parms_data
5710 {
5711 int level;
5712 bool *seen;
5713 };
5714
5715 static int
5716 uses_all_template_parms_r (tree t, void *data_)
5717 {
5718 struct uses_all_template_parms_data &data
5719 = *(struct uses_all_template_parms_data*)data_;
5720 tree idx = get_template_parm_index (t);
5721
5722 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5723 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5724 return 0;
5725 }
5726
5727 static bool
5728 complex_alias_template_p (const_tree tmpl)
5729 {
5730 struct uses_all_template_parms_data data;
5731 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5732 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5733 data.level = TMPL_PARMS_DEPTH (parms);
5734 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5735 data.seen = XALLOCAVEC (bool, len);
5736 for (int i = 0; i < len; ++i)
5737 data.seen[i] = false;
5738
5739 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5740 for (int i = 0; i < len; ++i)
5741 if (!data.seen[i])
5742 return true;
5743 return false;
5744 }
5745
5746 /* Return TRUE iff T is a specialization of a complex alias template with
5747 dependent template-arguments. */
5748
5749 bool
5750 dependent_alias_template_spec_p (const_tree t)
5751 {
5752 return (alias_template_specialization_p (t)
5753 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5754 && (any_dependent_template_arguments_p
5755 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5756 }
5757
5758 /* Return the number of innermost template parameters in TMPL. */
5759
5760 static int
5761 num_innermost_template_parms (tree tmpl)
5762 {
5763 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5764 return TREE_VEC_LENGTH (parms);
5765 }
5766
5767 /* Return either TMPL or another template that it is equivalent to under DR
5768 1286: An alias that just changes the name of a template is equivalent to
5769 the other template. */
5770
5771 static tree
5772 get_underlying_template (tree tmpl)
5773 {
5774 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5775 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5776 {
5777 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5778 if (TYPE_TEMPLATE_INFO (result))
5779 {
5780 tree sub = TYPE_TI_TEMPLATE (result);
5781 if (PRIMARY_TEMPLATE_P (sub)
5782 && (num_innermost_template_parms (tmpl)
5783 == num_innermost_template_parms (sub)))
5784 {
5785 tree alias_args = INNERMOST_TEMPLATE_ARGS
5786 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5787 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5788 break;
5789 /* The alias type is equivalent to the pattern of the
5790 underlying template, so strip the alias. */
5791 tmpl = sub;
5792 continue;
5793 }
5794 }
5795 break;
5796 }
5797 return tmpl;
5798 }
5799
5800 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5801 must be a function or a pointer-to-function type, as specified
5802 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5803 and check that the resulting function has external linkage. */
5804
5805 static tree
5806 convert_nontype_argument_function (tree type, tree expr,
5807 tsubst_flags_t complain)
5808 {
5809 tree fns = expr;
5810 tree fn, fn_no_ptr;
5811 linkage_kind linkage;
5812
5813 fn = instantiate_type (type, fns, tf_none);
5814 if (fn == error_mark_node)
5815 return error_mark_node;
5816
5817 fn_no_ptr = fn;
5818 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5819 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5820 if (BASELINK_P (fn_no_ptr))
5821 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5822
5823 /* [temp.arg.nontype]/1
5824
5825 A template-argument for a non-type, non-template template-parameter
5826 shall be one of:
5827 [...]
5828 -- the address of an object or function with external [C++11: or
5829 internal] linkage. */
5830
5831 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5832 {
5833 if (complain & tf_error)
5834 {
5835 error ("%qE is not a valid template argument for type %qT",
5836 expr, type);
5837 if (TYPE_PTR_P (type))
5838 error ("it must be the address of a function with "
5839 "external linkage");
5840 else
5841 error ("it must be the name of a function with "
5842 "external linkage");
5843 }
5844 return NULL_TREE;
5845 }
5846
5847 linkage = decl_linkage (fn_no_ptr);
5848 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5849 {
5850 if (complain & tf_error)
5851 {
5852 if (cxx_dialect >= cxx11)
5853 error ("%qE is not a valid template argument for type %qT "
5854 "because %qD has no linkage",
5855 expr, type, fn_no_ptr);
5856 else
5857 error ("%qE is not a valid template argument for type %qT "
5858 "because %qD does not have external linkage",
5859 expr, type, fn_no_ptr);
5860 }
5861 return NULL_TREE;
5862 }
5863
5864 return fn;
5865 }
5866
5867 /* Subroutine of convert_nontype_argument.
5868 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5869 Emit an error otherwise. */
5870
5871 static bool
5872 check_valid_ptrmem_cst_expr (tree type, tree expr,
5873 tsubst_flags_t complain)
5874 {
5875 STRIP_NOPS (expr);
5876 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5877 return true;
5878 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5879 return true;
5880 if (processing_template_decl
5881 && TREE_CODE (expr) == ADDR_EXPR
5882 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5883 return true;
5884 if (complain & tf_error)
5885 {
5886 error ("%qE is not a valid template argument for type %qT",
5887 expr, type);
5888 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5889 }
5890 return false;
5891 }
5892
5893 /* Returns TRUE iff the address of OP is value-dependent.
5894
5895 14.6.2.4 [temp.dep.temp]:
5896 A non-integral non-type template-argument is dependent if its type is
5897 dependent or it has either of the following forms
5898 qualified-id
5899 & qualified-id
5900 and contains a nested-name-specifier which specifies a class-name that
5901 names a dependent type.
5902
5903 We generalize this to just say that the address of a member of a
5904 dependent class is value-dependent; the above doesn't cover the
5905 address of a static data member named with an unqualified-id. */
5906
5907 static bool
5908 has_value_dependent_address (tree op)
5909 {
5910 /* We could use get_inner_reference here, but there's no need;
5911 this is only relevant for template non-type arguments, which
5912 can only be expressed as &id-expression. */
5913 if (DECL_P (op))
5914 {
5915 tree ctx = CP_DECL_CONTEXT (op);
5916 if (TYPE_P (ctx) && dependent_type_p (ctx))
5917 return true;
5918 }
5919
5920 return false;
5921 }
5922
5923 /* The next set of functions are used for providing helpful explanatory
5924 diagnostics for failed overload resolution. Their messages should be
5925 indented by two spaces for consistency with the messages in
5926 call.c */
5927
5928 static int
5929 unify_success (bool /*explain_p*/)
5930 {
5931 return 0;
5932 }
5933
5934 static int
5935 unify_parameter_deduction_failure (bool explain_p, tree parm)
5936 {
5937 if (explain_p)
5938 inform (input_location,
5939 " couldn't deduce template parameter %qD", parm);
5940 return 1;
5941 }
5942
5943 static int
5944 unify_invalid (bool /*explain_p*/)
5945 {
5946 return 1;
5947 }
5948
5949 static int
5950 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5951 {
5952 if (explain_p)
5953 inform (input_location,
5954 " types %qT and %qT have incompatible cv-qualifiers",
5955 parm, arg);
5956 return 1;
5957 }
5958
5959 static int
5960 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5961 {
5962 if (explain_p)
5963 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5964 return 1;
5965 }
5966
5967 static int
5968 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5969 {
5970 if (explain_p)
5971 inform (input_location,
5972 " template parameter %qD is not a parameter pack, but "
5973 "argument %qD is",
5974 parm, arg);
5975 return 1;
5976 }
5977
5978 static int
5979 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5980 {
5981 if (explain_p)
5982 inform (input_location,
5983 " template argument %qE does not match "
5984 "pointer-to-member constant %qE",
5985 arg, parm);
5986 return 1;
5987 }
5988
5989 static int
5990 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5991 {
5992 if (explain_p)
5993 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5994 return 1;
5995 }
5996
5997 static int
5998 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5999 {
6000 if (explain_p)
6001 inform (input_location,
6002 " inconsistent parameter pack deduction with %qT and %qT",
6003 old_arg, new_arg);
6004 return 1;
6005 }
6006
6007 static int
6008 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6009 {
6010 if (explain_p)
6011 {
6012 if (TYPE_P (parm))
6013 inform (input_location,
6014 " deduced conflicting types for parameter %qT (%qT and %qT)",
6015 parm, first, second);
6016 else
6017 inform (input_location,
6018 " deduced conflicting values for non-type parameter "
6019 "%qE (%qE and %qE)", parm, first, second);
6020 }
6021 return 1;
6022 }
6023
6024 static int
6025 unify_vla_arg (bool explain_p, tree arg)
6026 {
6027 if (explain_p)
6028 inform (input_location,
6029 " variable-sized array type %qT is not "
6030 "a valid template argument",
6031 arg);
6032 return 1;
6033 }
6034
6035 static int
6036 unify_method_type_error (bool explain_p, tree arg)
6037 {
6038 if (explain_p)
6039 inform (input_location,
6040 " member function type %qT is not a valid template argument",
6041 arg);
6042 return 1;
6043 }
6044
6045 static int
6046 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6047 {
6048 if (explain_p)
6049 {
6050 if (least_p)
6051 inform_n (input_location, wanted,
6052 " candidate expects at least %d argument, %d provided",
6053 " candidate expects at least %d arguments, %d provided",
6054 wanted, have);
6055 else
6056 inform_n (input_location, wanted,
6057 " candidate expects %d argument, %d provided",
6058 " candidate expects %d arguments, %d provided",
6059 wanted, have);
6060 }
6061 return 1;
6062 }
6063
6064 static int
6065 unify_too_many_arguments (bool explain_p, int have, int wanted)
6066 {
6067 return unify_arity (explain_p, have, wanted);
6068 }
6069
6070 static int
6071 unify_too_few_arguments (bool explain_p, int have, int wanted,
6072 bool least_p = false)
6073 {
6074 return unify_arity (explain_p, have, wanted, least_p);
6075 }
6076
6077 static int
6078 unify_arg_conversion (bool explain_p, tree to_type,
6079 tree from_type, tree arg)
6080 {
6081 if (explain_p)
6082 inform (EXPR_LOC_OR_LOC (arg, input_location),
6083 " cannot convert %qE (type %qT) to type %qT",
6084 arg, from_type, to_type);
6085 return 1;
6086 }
6087
6088 static int
6089 unify_no_common_base (bool explain_p, enum template_base_result r,
6090 tree parm, tree arg)
6091 {
6092 if (explain_p)
6093 switch (r)
6094 {
6095 case tbr_ambiguous_baseclass:
6096 inform (input_location, " %qT is an ambiguous base class of %qT",
6097 parm, arg);
6098 break;
6099 default:
6100 inform (input_location, " %qT is not derived from %qT", arg, parm);
6101 break;
6102 }
6103 return 1;
6104 }
6105
6106 static int
6107 unify_inconsistent_template_template_parameters (bool explain_p)
6108 {
6109 if (explain_p)
6110 inform (input_location,
6111 " template parameters of a template template argument are "
6112 "inconsistent with other deduced template arguments");
6113 return 1;
6114 }
6115
6116 static int
6117 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6118 {
6119 if (explain_p)
6120 inform (input_location,
6121 " can't deduce a template for %qT from non-template type %qT",
6122 parm, arg);
6123 return 1;
6124 }
6125
6126 static int
6127 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6128 {
6129 if (explain_p)
6130 inform (input_location,
6131 " template argument %qE does not match %qD", arg, parm);
6132 return 1;
6133 }
6134
6135 static int
6136 unify_overload_resolution_failure (bool explain_p, tree arg)
6137 {
6138 if (explain_p)
6139 inform (input_location,
6140 " could not resolve address from overloaded function %qE",
6141 arg);
6142 return 1;
6143 }
6144
6145 /* Attempt to convert the non-type template parameter EXPR to the
6146 indicated TYPE. If the conversion is successful, return the
6147 converted value. If the conversion is unsuccessful, return
6148 NULL_TREE if we issued an error message, or error_mark_node if we
6149 did not. We issue error messages for out-and-out bad template
6150 parameters, but not simply because the conversion failed, since we
6151 might be just trying to do argument deduction. Both TYPE and EXPR
6152 must be non-dependent.
6153
6154 The conversion follows the special rules described in
6155 [temp.arg.nontype], and it is much more strict than an implicit
6156 conversion.
6157
6158 This function is called twice for each template argument (see
6159 lookup_template_class for a more accurate description of this
6160 problem). This means that we need to handle expressions which
6161 are not valid in a C++ source, but can be created from the
6162 first call (for instance, casts to perform conversions). These
6163 hacks can go away after we fix the double coercion problem. */
6164
6165 static tree
6166 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6167 {
6168 tree expr_type;
6169
6170 /* Detect immediately string literals as invalid non-type argument.
6171 This special-case is not needed for correctness (we would easily
6172 catch this later), but only to provide better diagnostic for this
6173 common user mistake. As suggested by DR 100, we do not mention
6174 linkage issues in the diagnostic as this is not the point. */
6175 /* FIXME we're making this OK. */
6176 if (TREE_CODE (expr) == STRING_CST)
6177 {
6178 if (complain & tf_error)
6179 error ("%qE is not a valid template argument for type %qT "
6180 "because string literals can never be used in this context",
6181 expr, type);
6182 return NULL_TREE;
6183 }
6184
6185 /* Add the ADDR_EXPR now for the benefit of
6186 value_dependent_expression_p. */
6187 if (TYPE_PTROBV_P (type)
6188 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6189 {
6190 expr = decay_conversion (expr, complain);
6191 if (expr == error_mark_node)
6192 return error_mark_node;
6193 }
6194
6195 /* If we are in a template, EXPR may be non-dependent, but still
6196 have a syntactic, rather than semantic, form. For example, EXPR
6197 might be a SCOPE_REF, rather than the VAR_DECL to which the
6198 SCOPE_REF refers. Preserving the qualifying scope is necessary
6199 so that access checking can be performed when the template is
6200 instantiated -- but here we need the resolved form so that we can
6201 convert the argument. */
6202 bool non_dep = false;
6203 if (TYPE_REF_OBJ_P (type)
6204 && has_value_dependent_address (expr))
6205 /* If we want the address and it's value-dependent, don't fold. */;
6206 else if (!type_unknown_p (expr)
6207 && processing_template_decl
6208 && !instantiation_dependent_expression_p (expr)
6209 && potential_constant_expression (expr))
6210 non_dep = true;
6211 if (error_operand_p (expr))
6212 return error_mark_node;
6213 expr_type = TREE_TYPE (expr);
6214 if (TREE_CODE (type) == REFERENCE_TYPE)
6215 expr = mark_lvalue_use (expr);
6216 else
6217 expr = mark_rvalue_use (expr);
6218
6219 /* If the argument is non-dependent, perform any conversions in
6220 non-dependent context as well. */
6221 processing_template_decl_sentinel s (non_dep);
6222 if (non_dep)
6223 expr = instantiate_non_dependent_expr_internal (expr, complain);
6224
6225 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6226 to a non-type argument of "nullptr". */
6227 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6228 expr = fold_simple (convert (type, expr));
6229
6230 /* In C++11, integral or enumeration non-type template arguments can be
6231 arbitrary constant expressions. Pointer and pointer to
6232 member arguments can be general constant expressions that evaluate
6233 to a null value, but otherwise still need to be of a specific form. */
6234 if (cxx_dialect >= cxx11)
6235 {
6236 if (TREE_CODE (expr) == PTRMEM_CST)
6237 /* A PTRMEM_CST is already constant, and a valid template
6238 argument for a parameter of pointer to member type, we just want
6239 to leave it in that form rather than lower it to a
6240 CONSTRUCTOR. */;
6241 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6242 expr = maybe_constant_value (expr);
6243 else if (cxx_dialect >= cxx1z)
6244 {
6245 if (TREE_CODE (type) != REFERENCE_TYPE)
6246 expr = maybe_constant_value (expr);
6247 else if (REFERENCE_REF_P (expr))
6248 {
6249 expr = TREE_OPERAND (expr, 0);
6250 expr = maybe_constant_value (expr);
6251 expr = convert_from_reference (expr);
6252 }
6253 }
6254 else if (TYPE_PTR_OR_PTRMEM_P (type))
6255 {
6256 tree folded = maybe_constant_value (expr);
6257 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6258 : null_member_pointer_value_p (folded))
6259 expr = folded;
6260 }
6261 }
6262
6263 /* HACK: Due to double coercion, we can get a
6264 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6265 which is the tree that we built on the first call (see
6266 below when coercing to reference to object or to reference to
6267 function). We just strip everything and get to the arg.
6268 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6269 for examples. */
6270 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6271 {
6272 tree probe_type, probe = expr;
6273 if (REFERENCE_REF_P (probe))
6274 probe = TREE_OPERAND (probe, 0);
6275 probe_type = TREE_TYPE (probe);
6276 if (TREE_CODE (probe) == NOP_EXPR)
6277 {
6278 /* ??? Maybe we could use convert_from_reference here, but we
6279 would need to relax its constraints because the NOP_EXPR
6280 could actually change the type to something more cv-qualified,
6281 and this is not folded by convert_from_reference. */
6282 tree addr = TREE_OPERAND (probe, 0);
6283 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6284 && TREE_CODE (addr) == ADDR_EXPR
6285 && TYPE_PTR_P (TREE_TYPE (addr))
6286 && (same_type_ignoring_top_level_qualifiers_p
6287 (TREE_TYPE (probe_type),
6288 TREE_TYPE (TREE_TYPE (addr)))))
6289 {
6290 expr = TREE_OPERAND (addr, 0);
6291 expr_type = TREE_TYPE (probe_type);
6292 }
6293 }
6294 }
6295
6296 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6297 parameter is a pointer to object, through decay and
6298 qualification conversion. Let's strip everything. */
6299 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6300 {
6301 tree probe = expr;
6302 STRIP_NOPS (probe);
6303 if (TREE_CODE (probe) == ADDR_EXPR
6304 && TYPE_PTR_P (TREE_TYPE (probe)))
6305 {
6306 /* Skip the ADDR_EXPR only if it is part of the decay for
6307 an array. Otherwise, it is part of the original argument
6308 in the source code. */
6309 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6310 probe = TREE_OPERAND (probe, 0);
6311 expr = probe;
6312 expr_type = TREE_TYPE (expr);
6313 }
6314 }
6315
6316 /* [temp.arg.nontype]/5, bullet 1
6317
6318 For a non-type template-parameter of integral or enumeration type,
6319 integral promotions (_conv.prom_) and integral conversions
6320 (_conv.integral_) are applied. */
6321 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6322 {
6323 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6324 t = maybe_constant_value (t);
6325 if (t != error_mark_node)
6326 expr = t;
6327
6328 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6329 return error_mark_node;
6330
6331 /* Notice that there are constant expressions like '4 % 0' which
6332 do not fold into integer constants. */
6333 if (TREE_CODE (expr) != INTEGER_CST)
6334 {
6335 if (complain & tf_error)
6336 {
6337 int errs = errorcount, warns = warningcount + werrorcount;
6338 if (processing_template_decl
6339 && !require_potential_constant_expression (expr))
6340 return NULL_TREE;
6341 expr = cxx_constant_value (expr);
6342 if (errorcount > errs || warningcount + werrorcount > warns)
6343 inform (EXPR_LOC_OR_LOC (expr, input_location),
6344 "in template argument for type %qT ", type);
6345 if (expr == error_mark_node)
6346 return NULL_TREE;
6347 /* else cxx_constant_value complained but gave us
6348 a real constant, so go ahead. */
6349 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6350 }
6351 else
6352 return NULL_TREE;
6353 }
6354
6355 /* Avoid typedef problems. */
6356 if (TREE_TYPE (expr) != type)
6357 expr = fold_convert (type, expr);
6358 }
6359 /* [temp.arg.nontype]/5, bullet 2
6360
6361 For a non-type template-parameter of type pointer to object,
6362 qualification conversions (_conv.qual_) and the array-to-pointer
6363 conversion (_conv.array_) are applied. */
6364 else if (TYPE_PTROBV_P (type))
6365 {
6366 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6367
6368 A template-argument for a non-type, non-template template-parameter
6369 shall be one of: [...]
6370
6371 -- the name of a non-type template-parameter;
6372 -- the address of an object or function with external linkage, [...]
6373 expressed as "& id-expression" where the & is optional if the name
6374 refers to a function or array, or if the corresponding
6375 template-parameter is a reference.
6376
6377 Here, we do not care about functions, as they are invalid anyway
6378 for a parameter of type pointer-to-object. */
6379
6380 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6381 /* Non-type template parameters are OK. */
6382 ;
6383 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6384 /* Null pointer values are OK in C++11. */;
6385 else if (TREE_CODE (expr) != ADDR_EXPR
6386 && TREE_CODE (expr_type) != ARRAY_TYPE)
6387 {
6388 if (VAR_P (expr))
6389 {
6390 if (complain & tf_error)
6391 error ("%qD is not a valid template argument "
6392 "because %qD is a variable, not the address of "
6393 "a variable", expr, expr);
6394 return NULL_TREE;
6395 }
6396 if (POINTER_TYPE_P (expr_type))
6397 {
6398 if (complain & tf_error)
6399 error ("%qE is not a valid template argument for %qT "
6400 "because it is not the address of a variable",
6401 expr, type);
6402 return NULL_TREE;
6403 }
6404 /* Other values, like integer constants, might be valid
6405 non-type arguments of some other type. */
6406 return error_mark_node;
6407 }
6408 else
6409 {
6410 tree decl;
6411
6412 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6413 ? TREE_OPERAND (expr, 0) : expr);
6414 if (!VAR_P (decl))
6415 {
6416 if (complain & tf_error)
6417 error ("%qE is not a valid template argument of type %qT "
6418 "because %qE is not a variable", expr, type, decl);
6419 return NULL_TREE;
6420 }
6421 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6422 {
6423 if (complain & tf_error)
6424 error ("%qE is not a valid template argument of type %qT "
6425 "because %qD does not have external linkage",
6426 expr, type, decl);
6427 return NULL_TREE;
6428 }
6429 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6430 {
6431 if (complain & tf_error)
6432 error ("%qE is not a valid template argument of type %qT "
6433 "because %qD has no linkage", expr, type, decl);
6434 return NULL_TREE;
6435 }
6436 }
6437
6438 expr = decay_conversion (expr, complain);
6439 if (expr == error_mark_node)
6440 return error_mark_node;
6441
6442 expr = perform_qualification_conversions (type, expr);
6443 if (expr == error_mark_node)
6444 return error_mark_node;
6445 }
6446 /* [temp.arg.nontype]/5, bullet 3
6447
6448 For a non-type template-parameter of type reference to object, no
6449 conversions apply. The type referred to by the reference may be more
6450 cv-qualified than the (otherwise identical) type of the
6451 template-argument. The template-parameter is bound directly to the
6452 template-argument, which must be an lvalue. */
6453 else if (TYPE_REF_OBJ_P (type))
6454 {
6455 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6456 expr_type))
6457 return error_mark_node;
6458
6459 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6460 {
6461 if (complain & tf_error)
6462 error ("%qE is not a valid template argument for type %qT "
6463 "because of conflicts in cv-qualification", expr, type);
6464 return NULL_TREE;
6465 }
6466
6467 if (!real_lvalue_p (expr))
6468 {
6469 if (complain & tf_error)
6470 error ("%qE is not a valid template argument for type %qT "
6471 "because it is not an lvalue", expr, type);
6472 return NULL_TREE;
6473 }
6474
6475 /* [temp.arg.nontype]/1
6476
6477 A template-argument for a non-type, non-template template-parameter
6478 shall be one of: [...]
6479
6480 -- the address of an object or function with external linkage. */
6481 if (INDIRECT_REF_P (expr)
6482 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6483 {
6484 expr = TREE_OPERAND (expr, 0);
6485 if (DECL_P (expr))
6486 {
6487 if (complain & tf_error)
6488 error ("%q#D is not a valid template argument for type %qT "
6489 "because a reference variable does not have a constant "
6490 "address", expr, type);
6491 return NULL_TREE;
6492 }
6493 }
6494
6495 if (!DECL_P (expr))
6496 {
6497 if (complain & tf_error)
6498 error ("%qE is not a valid template argument for type %qT "
6499 "because it is not an object with linkage",
6500 expr, type);
6501 return NULL_TREE;
6502 }
6503
6504 /* DR 1155 allows internal linkage in C++11 and up. */
6505 linkage_kind linkage = decl_linkage (expr);
6506 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6507 {
6508 if (complain & tf_error)
6509 error ("%qE is not a valid template argument for type %qT "
6510 "because object %qD does not have linkage",
6511 expr, type, expr);
6512 return NULL_TREE;
6513 }
6514
6515 expr = build_nop (type, build_address (expr));
6516 }
6517 /* [temp.arg.nontype]/5, bullet 4
6518
6519 For a non-type template-parameter of type pointer to function, only
6520 the function-to-pointer conversion (_conv.func_) is applied. If the
6521 template-argument represents a set of overloaded functions (or a
6522 pointer to such), the matching function is selected from the set
6523 (_over.over_). */
6524 else if (TYPE_PTRFN_P (type))
6525 {
6526 /* If the argument is a template-id, we might not have enough
6527 context information to decay the pointer. */
6528 if (!type_unknown_p (expr_type))
6529 {
6530 expr = decay_conversion (expr, complain);
6531 if (expr == error_mark_node)
6532 return error_mark_node;
6533 }
6534
6535 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6536 /* Null pointer values are OK in C++11. */
6537 return perform_qualification_conversions (type, expr);
6538
6539 expr = convert_nontype_argument_function (type, expr, complain);
6540 if (!expr || expr == error_mark_node)
6541 return expr;
6542 }
6543 /* [temp.arg.nontype]/5, bullet 5
6544
6545 For a non-type template-parameter of type reference to function, no
6546 conversions apply. If the template-argument represents a set of
6547 overloaded functions, the matching function is selected from the set
6548 (_over.over_). */
6549 else if (TYPE_REFFN_P (type))
6550 {
6551 if (TREE_CODE (expr) == ADDR_EXPR)
6552 {
6553 if (complain & tf_error)
6554 {
6555 error ("%qE is not a valid template argument for type %qT "
6556 "because it is a pointer", expr, type);
6557 inform (input_location, "try using %qE instead",
6558 TREE_OPERAND (expr, 0));
6559 }
6560 return NULL_TREE;
6561 }
6562
6563 expr = convert_nontype_argument_function (type, expr, complain);
6564 if (!expr || expr == error_mark_node)
6565 return expr;
6566
6567 expr = build_nop (type, build_address (expr));
6568 }
6569 /* [temp.arg.nontype]/5, bullet 6
6570
6571 For a non-type template-parameter of type pointer to member function,
6572 no conversions apply. If the template-argument represents a set of
6573 overloaded member functions, the matching member function is selected
6574 from the set (_over.over_). */
6575 else if (TYPE_PTRMEMFUNC_P (type))
6576 {
6577 expr = instantiate_type (type, expr, tf_none);
6578 if (expr == error_mark_node)
6579 return error_mark_node;
6580
6581 /* [temp.arg.nontype] bullet 1 says the pointer to member
6582 expression must be a pointer-to-member constant. */
6583 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6584 return error_mark_node;
6585
6586 /* There is no way to disable standard conversions in
6587 resolve_address_of_overloaded_function (called by
6588 instantiate_type). It is possible that the call succeeded by
6589 converting &B::I to &D::I (where B is a base of D), so we need
6590 to reject this conversion here.
6591
6592 Actually, even if there was a way to disable standard conversions,
6593 it would still be better to reject them here so that we can
6594 provide a superior diagnostic. */
6595 if (!same_type_p (TREE_TYPE (expr), type))
6596 {
6597 if (complain & tf_error)
6598 {
6599 error ("%qE is not a valid template argument for type %qT "
6600 "because it is of type %qT", expr, type,
6601 TREE_TYPE (expr));
6602 /* If we are just one standard conversion off, explain. */
6603 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6604 inform (input_location,
6605 "standard conversions are not allowed in this context");
6606 }
6607 return NULL_TREE;
6608 }
6609 }
6610 /* [temp.arg.nontype]/5, bullet 7
6611
6612 For a non-type template-parameter of type pointer to data member,
6613 qualification conversions (_conv.qual_) are applied. */
6614 else if (TYPE_PTRDATAMEM_P (type))
6615 {
6616 /* [temp.arg.nontype] bullet 1 says the pointer to member
6617 expression must be a pointer-to-member constant. */
6618 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6619 return error_mark_node;
6620
6621 expr = perform_qualification_conversions (type, expr);
6622 if (expr == error_mark_node)
6623 return expr;
6624 }
6625 else if (NULLPTR_TYPE_P (type))
6626 {
6627 if (expr != nullptr_node)
6628 {
6629 if (complain & tf_error)
6630 error ("%qE is not a valid template argument for type %qT "
6631 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6632 return NULL_TREE;
6633 }
6634 return expr;
6635 }
6636 /* A template non-type parameter must be one of the above. */
6637 else
6638 gcc_unreachable ();
6639
6640 /* Sanity check: did we actually convert the argument to the
6641 right type? */
6642 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6643 (type, TREE_TYPE (expr)));
6644 return convert_from_reference (expr);
6645 }
6646
6647 /* Subroutine of coerce_template_template_parms, which returns 1 if
6648 PARM_PARM and ARG_PARM match using the rule for the template
6649 parameters of template template parameters. Both PARM and ARG are
6650 template parameters; the rest of the arguments are the same as for
6651 coerce_template_template_parms.
6652 */
6653 static int
6654 coerce_template_template_parm (tree parm,
6655 tree arg,
6656 tsubst_flags_t complain,
6657 tree in_decl,
6658 tree outer_args)
6659 {
6660 if (arg == NULL_TREE || error_operand_p (arg)
6661 || parm == NULL_TREE || error_operand_p (parm))
6662 return 0;
6663
6664 if (TREE_CODE (arg) != TREE_CODE (parm))
6665 return 0;
6666
6667 switch (TREE_CODE (parm))
6668 {
6669 case TEMPLATE_DECL:
6670 /* We encounter instantiations of templates like
6671 template <template <template <class> class> class TT>
6672 class C; */
6673 {
6674 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6675 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6676
6677 if (!coerce_template_template_parms
6678 (parmparm, argparm, complain, in_decl, outer_args))
6679 return 0;
6680 }
6681 /* Fall through. */
6682
6683 case TYPE_DECL:
6684 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6685 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6686 /* Argument is a parameter pack but parameter is not. */
6687 return 0;
6688 break;
6689
6690 case PARM_DECL:
6691 /* The tsubst call is used to handle cases such as
6692
6693 template <int> class C {};
6694 template <class T, template <T> class TT> class D {};
6695 D<int, C> d;
6696
6697 i.e. the parameter list of TT depends on earlier parameters. */
6698 if (!uses_template_parms (TREE_TYPE (arg)))
6699 {
6700 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6701 if (!uses_template_parms (t)
6702 && !same_type_p (t, TREE_TYPE (arg)))
6703 return 0;
6704 }
6705
6706 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6707 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6708 /* Argument is a parameter pack but parameter is not. */
6709 return 0;
6710
6711 break;
6712
6713 default:
6714 gcc_unreachable ();
6715 }
6716
6717 return 1;
6718 }
6719
6720
6721 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6722 template template parameters. Both PARM_PARMS and ARG_PARMS are
6723 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6724 or PARM_DECL.
6725
6726 Consider the example:
6727 template <class T> class A;
6728 template<template <class U> class TT> class B;
6729
6730 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6731 the parameters to A, and OUTER_ARGS contains A. */
6732
6733 static int
6734 coerce_template_template_parms (tree parm_parms,
6735 tree arg_parms,
6736 tsubst_flags_t complain,
6737 tree in_decl,
6738 tree outer_args)
6739 {
6740 int nparms, nargs, i;
6741 tree parm, arg;
6742 int variadic_p = 0;
6743
6744 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6745 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6746
6747 nparms = TREE_VEC_LENGTH (parm_parms);
6748 nargs = TREE_VEC_LENGTH (arg_parms);
6749
6750 /* Determine whether we have a parameter pack at the end of the
6751 template template parameter's template parameter list. */
6752 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6753 {
6754 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6755
6756 if (error_operand_p (parm))
6757 return 0;
6758
6759 switch (TREE_CODE (parm))
6760 {
6761 case TEMPLATE_DECL:
6762 case TYPE_DECL:
6763 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6764 variadic_p = 1;
6765 break;
6766
6767 case PARM_DECL:
6768 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6769 variadic_p = 1;
6770 break;
6771
6772 default:
6773 gcc_unreachable ();
6774 }
6775 }
6776
6777 if (nargs != nparms
6778 && !(variadic_p && nargs >= nparms - 1))
6779 return 0;
6780
6781 /* Check all of the template parameters except the parameter pack at
6782 the end (if any). */
6783 for (i = 0; i < nparms - variadic_p; ++i)
6784 {
6785 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6786 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6787 continue;
6788
6789 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6790 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6791
6792 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6793 outer_args))
6794 return 0;
6795
6796 }
6797
6798 if (variadic_p)
6799 {
6800 /* Check each of the template parameters in the template
6801 argument against the template parameter pack at the end of
6802 the template template parameter. */
6803 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6804 return 0;
6805
6806 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6807
6808 for (; i < nargs; ++i)
6809 {
6810 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6811 continue;
6812
6813 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6814
6815 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6816 outer_args))
6817 return 0;
6818 }
6819 }
6820
6821 return 1;
6822 }
6823
6824 /* Verifies that the deduced template arguments (in TARGS) for the
6825 template template parameters (in TPARMS) represent valid bindings,
6826 by comparing the template parameter list of each template argument
6827 to the template parameter list of its corresponding template
6828 template parameter, in accordance with DR150. This
6829 routine can only be called after all template arguments have been
6830 deduced. It will return TRUE if all of the template template
6831 parameter bindings are okay, FALSE otherwise. */
6832 bool
6833 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6834 {
6835 int i, ntparms = TREE_VEC_LENGTH (tparms);
6836 bool ret = true;
6837
6838 /* We're dealing with template parms in this process. */
6839 ++processing_template_decl;
6840
6841 targs = INNERMOST_TEMPLATE_ARGS (targs);
6842
6843 for (i = 0; i < ntparms; ++i)
6844 {
6845 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6846 tree targ = TREE_VEC_ELT (targs, i);
6847
6848 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6849 {
6850 tree packed_args = NULL_TREE;
6851 int idx, len = 1;
6852
6853 if (ARGUMENT_PACK_P (targ))
6854 {
6855 /* Look inside the argument pack. */
6856 packed_args = ARGUMENT_PACK_ARGS (targ);
6857 len = TREE_VEC_LENGTH (packed_args);
6858 }
6859
6860 for (idx = 0; idx < len; ++idx)
6861 {
6862 tree targ_parms = NULL_TREE;
6863
6864 if (packed_args)
6865 /* Extract the next argument from the argument
6866 pack. */
6867 targ = TREE_VEC_ELT (packed_args, idx);
6868
6869 if (PACK_EXPANSION_P (targ))
6870 /* Look at the pattern of the pack expansion. */
6871 targ = PACK_EXPANSION_PATTERN (targ);
6872
6873 /* Extract the template parameters from the template
6874 argument. */
6875 if (TREE_CODE (targ) == TEMPLATE_DECL)
6876 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6877 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6878 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6879
6880 /* Verify that we can coerce the template template
6881 parameters from the template argument to the template
6882 parameter. This requires an exact match. */
6883 if (targ_parms
6884 && !coerce_template_template_parms
6885 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6886 targ_parms,
6887 tf_none,
6888 tparm,
6889 targs))
6890 {
6891 ret = false;
6892 goto out;
6893 }
6894 }
6895 }
6896 }
6897
6898 out:
6899
6900 --processing_template_decl;
6901 return ret;
6902 }
6903
6904 /* Since type attributes aren't mangled, we need to strip them from
6905 template type arguments. */
6906
6907 static tree
6908 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6909 {
6910 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6911 return arg;
6912 bool removed_attributes = false;
6913 tree canon = strip_typedefs (arg, &removed_attributes);
6914 if (removed_attributes
6915 && (complain & tf_warning))
6916 warning (0, "ignoring attributes on template argument %qT", arg);
6917 return canon;
6918 }
6919
6920 // A template declaration can be substituted for a constrained
6921 // template template parameter only when the argument is more
6922 // constrained than the parameter.
6923 static bool
6924 is_compatible_template_arg (tree parm, tree arg)
6925 {
6926 tree parm_cons = get_constraints (parm);
6927
6928 /* For now, allow constrained template template arguments
6929 and unconstrained template template parameters. */
6930 if (parm_cons == NULL_TREE)
6931 return true;
6932
6933 tree arg_cons = get_constraints (arg);
6934
6935 // If the template parameter is constrained, we need to rewrite its
6936 // constraints in terms of the ARG's template parameters. This ensures
6937 // that all of the template parameter types will have the same depth.
6938 //
6939 // Note that this is only valid when coerce_template_template_parm is
6940 // true for the innermost template parameters of PARM and ARG. In other
6941 // words, because coercion is successful, this conversion will be valid.
6942 if (parm_cons)
6943 {
6944 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6945 parm_cons = tsubst_constraint_info (parm_cons,
6946 INNERMOST_TEMPLATE_ARGS (args),
6947 tf_none, NULL_TREE);
6948 if (parm_cons == error_mark_node)
6949 return false;
6950 }
6951
6952 return subsumes (parm_cons, arg_cons);
6953 }
6954
6955 // Convert a placeholder argument into a binding to the original
6956 // parameter. The original parameter is saved as the TREE_TYPE of
6957 // ARG.
6958 static inline tree
6959 convert_wildcard_argument (tree parm, tree arg)
6960 {
6961 TREE_TYPE (arg) = parm;
6962 return arg;
6963 }
6964
6965 /* Convert the indicated template ARG as necessary to match the
6966 indicated template PARM. Returns the converted ARG, or
6967 error_mark_node if the conversion was unsuccessful. Error and
6968 warning messages are issued under control of COMPLAIN. This
6969 conversion is for the Ith parameter in the parameter list. ARGS is
6970 the full set of template arguments deduced so far. */
6971
6972 static tree
6973 convert_template_argument (tree parm,
6974 tree arg,
6975 tree args,
6976 tsubst_flags_t complain,
6977 int i,
6978 tree in_decl)
6979 {
6980 tree orig_arg;
6981 tree val;
6982 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6983
6984 if (parm == error_mark_node)
6985 return error_mark_node;
6986
6987 /* Trivially convert placeholders. */
6988 if (TREE_CODE (arg) == WILDCARD_DECL)
6989 return convert_wildcard_argument (parm, arg);
6990
6991 if (TREE_CODE (arg) == TREE_LIST
6992 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6993 {
6994 /* The template argument was the name of some
6995 member function. That's usually
6996 invalid, but static members are OK. In any
6997 case, grab the underlying fields/functions
6998 and issue an error later if required. */
6999 orig_arg = TREE_VALUE (arg);
7000 TREE_TYPE (arg) = unknown_type_node;
7001 }
7002
7003 orig_arg = arg;
7004
7005 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7006 requires_type = (TREE_CODE (parm) == TYPE_DECL
7007 || requires_tmpl_type);
7008
7009 /* When determining whether an argument pack expansion is a template,
7010 look at the pattern. */
7011 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7012 arg = PACK_EXPANSION_PATTERN (arg);
7013
7014 /* Deal with an injected-class-name used as a template template arg. */
7015 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7016 {
7017 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7018 if (TREE_CODE (t) == TEMPLATE_DECL)
7019 {
7020 if (cxx_dialect >= cxx11)
7021 /* OK under DR 1004. */;
7022 else if (complain & tf_warning_or_error)
7023 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7024 " used as template template argument", TYPE_NAME (arg));
7025 else if (flag_pedantic_errors)
7026 t = arg;
7027
7028 arg = t;
7029 }
7030 }
7031
7032 is_tmpl_type =
7033 ((TREE_CODE (arg) == TEMPLATE_DECL
7034 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7035 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7036 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7037 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7038
7039 if (is_tmpl_type
7040 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7041 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7042 arg = TYPE_STUB_DECL (arg);
7043
7044 is_type = TYPE_P (arg) || is_tmpl_type;
7045
7046 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7047 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7048 {
7049 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7050 {
7051 if (complain & tf_error)
7052 error ("invalid use of destructor %qE as a type", orig_arg);
7053 return error_mark_node;
7054 }
7055
7056 permerror (input_location,
7057 "to refer to a type member of a template parameter, "
7058 "use %<typename %E%>", orig_arg);
7059
7060 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7061 TREE_OPERAND (arg, 1),
7062 typename_type,
7063 complain);
7064 arg = orig_arg;
7065 is_type = 1;
7066 }
7067 if (is_type != requires_type)
7068 {
7069 if (in_decl)
7070 {
7071 if (complain & tf_error)
7072 {
7073 error ("type/value mismatch at argument %d in template "
7074 "parameter list for %qD",
7075 i + 1, in_decl);
7076 if (is_type)
7077 inform (input_location,
7078 " expected a constant of type %qT, got %qT",
7079 TREE_TYPE (parm),
7080 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7081 else if (requires_tmpl_type)
7082 inform (input_location,
7083 " expected a class template, got %qE", orig_arg);
7084 else
7085 inform (input_location,
7086 " expected a type, got %qE", orig_arg);
7087 }
7088 }
7089 return error_mark_node;
7090 }
7091 if (is_tmpl_type ^ requires_tmpl_type)
7092 {
7093 if (in_decl && (complain & tf_error))
7094 {
7095 error ("type/value mismatch at argument %d in template "
7096 "parameter list for %qD",
7097 i + 1, in_decl);
7098 if (is_tmpl_type)
7099 inform (input_location,
7100 " expected a type, got %qT", DECL_NAME (arg));
7101 else
7102 inform (input_location,
7103 " expected a class template, got %qT", orig_arg);
7104 }
7105 return error_mark_node;
7106 }
7107
7108 if (is_type)
7109 {
7110 if (requires_tmpl_type)
7111 {
7112 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7113 val = orig_arg;
7114 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7115 /* The number of argument required is not known yet.
7116 Just accept it for now. */
7117 val = TREE_TYPE (arg);
7118 else
7119 {
7120 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7121 tree argparm;
7122
7123 /* Strip alias templates that are equivalent to another
7124 template. */
7125 arg = get_underlying_template (arg);
7126 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7127
7128 if (coerce_template_template_parms (parmparm, argparm,
7129 complain, in_decl,
7130 args))
7131 {
7132 val = arg;
7133
7134 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7135 TEMPLATE_DECL. */
7136 if (val != error_mark_node)
7137 {
7138 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7139 val = TREE_TYPE (val);
7140 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7141 val = make_pack_expansion (val);
7142 }
7143 }
7144 else
7145 {
7146 if (in_decl && (complain & tf_error))
7147 {
7148 error ("type/value mismatch at argument %d in "
7149 "template parameter list for %qD",
7150 i + 1, in_decl);
7151 inform (input_location,
7152 " expected a template of type %qD, got %qT",
7153 parm, orig_arg);
7154 }
7155
7156 val = error_mark_node;
7157 }
7158
7159 // Check that the constraints are compatible before allowing the
7160 // substitution.
7161 if (val != error_mark_node)
7162 if (!is_compatible_template_arg (parm, arg))
7163 {
7164 if (in_decl && (complain & tf_error))
7165 {
7166 error ("constraint mismatch at argument %d in "
7167 "template parameter list for %qD",
7168 i + 1, in_decl);
7169 inform (input_location, " expected %qD but got %qD",
7170 parm, arg);
7171 }
7172 val = error_mark_node;
7173 }
7174 }
7175 }
7176 else
7177 val = orig_arg;
7178 /* We only form one instance of each template specialization.
7179 Therefore, if we use a non-canonical variant (i.e., a
7180 typedef), any future messages referring to the type will use
7181 the typedef, which is confusing if those future uses do not
7182 themselves also use the typedef. */
7183 if (TYPE_P (val))
7184 val = canonicalize_type_argument (val, complain);
7185 }
7186 else
7187 {
7188 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7189
7190 if (invalid_nontype_parm_type_p (t, complain))
7191 return error_mark_node;
7192
7193 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7194 {
7195 if (same_type_p (t, TREE_TYPE (orig_arg)))
7196 val = orig_arg;
7197 else
7198 {
7199 /* Not sure if this is reachable, but it doesn't hurt
7200 to be robust. */
7201 error ("type mismatch in nontype parameter pack");
7202 val = error_mark_node;
7203 }
7204 }
7205 else if (!dependent_template_arg_p (orig_arg)
7206 && !uses_template_parms (t))
7207 /* We used to call digest_init here. However, digest_init
7208 will report errors, which we don't want when complain
7209 is zero. More importantly, digest_init will try too
7210 hard to convert things: for example, `0' should not be
7211 converted to pointer type at this point according to
7212 the standard. Accepting this is not merely an
7213 extension, since deciding whether or not these
7214 conversions can occur is part of determining which
7215 function template to call, or whether a given explicit
7216 argument specification is valid. */
7217 val = convert_nontype_argument (t, orig_arg, complain);
7218 else
7219 {
7220 bool removed_attr = false;
7221 val = strip_typedefs_expr (orig_arg, &removed_attr);
7222 }
7223
7224 if (val == NULL_TREE)
7225 val = error_mark_node;
7226 else if (val == error_mark_node && (complain & tf_error))
7227 error ("could not convert template argument %qE to %qT", orig_arg, t);
7228
7229 if (INDIRECT_REF_P (val))
7230 {
7231 /* Reject template arguments that are references to built-in
7232 functions with no library fallbacks. */
7233 const_tree inner = TREE_OPERAND (val, 0);
7234 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7235 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7236 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7237 && 0 < TREE_OPERAND_LENGTH (inner)
7238 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7239 return error_mark_node;
7240 }
7241
7242 if (TREE_CODE (val) == SCOPE_REF)
7243 {
7244 /* Strip typedefs from the SCOPE_REF. */
7245 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7246 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7247 complain);
7248 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7249 QUALIFIED_NAME_IS_TEMPLATE (val));
7250 }
7251 }
7252
7253 return val;
7254 }
7255
7256 /* Coerces the remaining template arguments in INNER_ARGS (from
7257 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7258 Returns the coerced argument pack. PARM_IDX is the position of this
7259 parameter in the template parameter list. ARGS is the original
7260 template argument list. */
7261 static tree
7262 coerce_template_parameter_pack (tree parms,
7263 int parm_idx,
7264 tree args,
7265 tree inner_args,
7266 int arg_idx,
7267 tree new_args,
7268 int* lost,
7269 tree in_decl,
7270 tsubst_flags_t complain)
7271 {
7272 tree parm = TREE_VEC_ELT (parms, parm_idx);
7273 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7274 tree packed_args;
7275 tree argument_pack;
7276 tree packed_parms = NULL_TREE;
7277
7278 if (arg_idx > nargs)
7279 arg_idx = nargs;
7280
7281 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7282 {
7283 /* When the template parameter is a non-type template parameter pack
7284 or template template parameter pack whose type or template
7285 parameters use parameter packs, we know exactly how many arguments
7286 we are looking for. Build a vector of the instantiated decls for
7287 these template parameters in PACKED_PARMS. */
7288 /* We can't use make_pack_expansion here because it would interpret a
7289 _DECL as a use rather than a declaration. */
7290 tree decl = TREE_VALUE (parm);
7291 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7292 SET_PACK_EXPANSION_PATTERN (exp, decl);
7293 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7294 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7295
7296 TREE_VEC_LENGTH (args)--;
7297 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7298 TREE_VEC_LENGTH (args)++;
7299
7300 if (packed_parms == error_mark_node)
7301 return error_mark_node;
7302
7303 /* If we're doing a partial instantiation of a member template,
7304 verify that all of the types used for the non-type
7305 template parameter pack are, in fact, valid for non-type
7306 template parameters. */
7307 if (arg_idx < nargs
7308 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7309 {
7310 int j, len = TREE_VEC_LENGTH (packed_parms);
7311 for (j = 0; j < len; ++j)
7312 {
7313 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7314 if (invalid_nontype_parm_type_p (t, complain))
7315 return error_mark_node;
7316 }
7317 /* We don't know how many args we have yet, just
7318 use the unconverted ones for now. */
7319 return NULL_TREE;
7320 }
7321
7322 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7323 }
7324 /* Check if we have a placeholder pack, which indicates we're
7325 in the context of a introduction list. In that case we want
7326 to match this pack to the single placeholder. */
7327 else if (arg_idx < nargs
7328 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7329 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7330 {
7331 nargs = arg_idx + 1;
7332 packed_args = make_tree_vec (1);
7333 }
7334 else
7335 packed_args = make_tree_vec (nargs - arg_idx);
7336
7337 /* Convert the remaining arguments, which will be a part of the
7338 parameter pack "parm". */
7339 for (; arg_idx < nargs; ++arg_idx)
7340 {
7341 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7342 tree actual_parm = TREE_VALUE (parm);
7343 int pack_idx = arg_idx - parm_idx;
7344
7345 if (packed_parms)
7346 {
7347 /* Once we've packed as many args as we have types, stop. */
7348 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7349 break;
7350 else if (PACK_EXPANSION_P (arg))
7351 /* We don't know how many args we have yet, just
7352 use the unconverted ones for now. */
7353 return NULL_TREE;
7354 else
7355 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7356 }
7357
7358 if (arg == error_mark_node)
7359 {
7360 if (complain & tf_error)
7361 error ("template argument %d is invalid", arg_idx + 1);
7362 }
7363 else
7364 arg = convert_template_argument (actual_parm,
7365 arg, new_args, complain, parm_idx,
7366 in_decl);
7367 if (arg == error_mark_node)
7368 (*lost)++;
7369 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7370 }
7371
7372 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7373 && TREE_VEC_LENGTH (packed_args) > 0)
7374 {
7375 if (complain & tf_error)
7376 error ("wrong number of template arguments (%d, should be %d)",
7377 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7378 return error_mark_node;
7379 }
7380
7381 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7382 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7383 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7384 else
7385 {
7386 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7387 TREE_TYPE (argument_pack)
7388 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7389 TREE_CONSTANT (argument_pack) = 1;
7390 }
7391
7392 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7393 if (CHECKING_P)
7394 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7395 TREE_VEC_LENGTH (packed_args));
7396 return argument_pack;
7397 }
7398
7399 /* Returns the number of pack expansions in the template argument vector
7400 ARGS. */
7401
7402 static int
7403 pack_expansion_args_count (tree args)
7404 {
7405 int i;
7406 int count = 0;
7407 if (args)
7408 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7409 {
7410 tree elt = TREE_VEC_ELT (args, i);
7411 if (elt && PACK_EXPANSION_P (elt))
7412 ++count;
7413 }
7414 return count;
7415 }
7416
7417 /* Convert all template arguments to their appropriate types, and
7418 return a vector containing the innermost resulting template
7419 arguments. If any error occurs, return error_mark_node. Error and
7420 warning messages are issued under control of COMPLAIN.
7421
7422 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7423 for arguments not specified in ARGS. Otherwise, if
7424 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7425 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7426 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7427 ARGS. */
7428
7429 static tree
7430 coerce_template_parms (tree parms,
7431 tree args,
7432 tree in_decl,
7433 tsubst_flags_t complain,
7434 bool require_all_args,
7435 bool use_default_args)
7436 {
7437 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7438 tree orig_inner_args;
7439 tree inner_args;
7440 tree new_args;
7441 tree new_inner_args;
7442 int saved_unevaluated_operand;
7443 int saved_inhibit_evaluation_warnings;
7444
7445 /* When used as a boolean value, indicates whether this is a
7446 variadic template parameter list. Since it's an int, we can also
7447 subtract it from nparms to get the number of non-variadic
7448 parameters. */
7449 int variadic_p = 0;
7450 int variadic_args_p = 0;
7451 int post_variadic_parms = 0;
7452
7453 /* Likewise for parameters with default arguments. */
7454 int default_p = 0;
7455
7456 if (args == error_mark_node)
7457 return error_mark_node;
7458
7459 nparms = TREE_VEC_LENGTH (parms);
7460
7461 /* Determine if there are any parameter packs or default arguments. */
7462 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7463 {
7464 tree parm = TREE_VEC_ELT (parms, parm_idx);
7465 if (variadic_p)
7466 ++post_variadic_parms;
7467 if (template_parameter_pack_p (TREE_VALUE (parm)))
7468 ++variadic_p;
7469 if (TREE_PURPOSE (parm))
7470 ++default_p;
7471 }
7472
7473 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7474 /* If there are no parameters that follow a parameter pack, we need to
7475 expand any argument packs so that we can deduce a parameter pack from
7476 some non-packed args followed by an argument pack, as in variadic85.C.
7477 If there are such parameters, we need to leave argument packs intact
7478 so the arguments are assigned properly. This can happen when dealing
7479 with a nested class inside a partial specialization of a class
7480 template, as in variadic92.C, or when deducing a template parameter pack
7481 from a sub-declarator, as in variadic114.C. */
7482 if (!post_variadic_parms)
7483 inner_args = expand_template_argument_pack (inner_args);
7484
7485 /* Count any pack expansion args. */
7486 variadic_args_p = pack_expansion_args_count (inner_args);
7487
7488 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7489 if ((nargs > nparms && !variadic_p)
7490 || (nargs < nparms - variadic_p
7491 && require_all_args
7492 && !variadic_args_p
7493 && (!use_default_args
7494 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7495 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7496 {
7497 if (complain & tf_error)
7498 {
7499 if (variadic_p || default_p)
7500 {
7501 nparms -= variadic_p + default_p;
7502 error ("wrong number of template arguments "
7503 "(%d, should be at least %d)", nargs, nparms);
7504 }
7505 else
7506 error ("wrong number of template arguments "
7507 "(%d, should be %d)", nargs, nparms);
7508
7509 if (in_decl)
7510 inform (DECL_SOURCE_LOCATION (in_decl),
7511 "provided for %qD", in_decl);
7512 }
7513
7514 return error_mark_node;
7515 }
7516 /* We can't pass a pack expansion to a non-pack parameter of an alias
7517 template (DR 1430). */
7518 else if (in_decl
7519 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7520 || concept_template_p (in_decl))
7521 && variadic_args_p
7522 && nargs - variadic_args_p < nparms - variadic_p)
7523 {
7524 if (complain & tf_error)
7525 {
7526 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7527 {
7528 tree arg = TREE_VEC_ELT (inner_args, i);
7529 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7530
7531 if (PACK_EXPANSION_P (arg)
7532 && !template_parameter_pack_p (parm))
7533 {
7534 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7535 error_at (location_of (arg),
7536 "pack expansion argument for non-pack parameter "
7537 "%qD of alias template %qD", parm, in_decl);
7538 else
7539 error_at (location_of (arg),
7540 "pack expansion argument for non-pack parameter "
7541 "%qD of concept %qD", parm, in_decl);
7542 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7543 goto found;
7544 }
7545 }
7546 gcc_unreachable ();
7547 found:;
7548 }
7549 return error_mark_node;
7550 }
7551
7552 /* We need to evaluate the template arguments, even though this
7553 template-id may be nested within a "sizeof". */
7554 saved_unevaluated_operand = cp_unevaluated_operand;
7555 cp_unevaluated_operand = 0;
7556 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7557 c_inhibit_evaluation_warnings = 0;
7558 new_inner_args = make_tree_vec (nparms);
7559 new_args = add_outermost_template_args (args, new_inner_args);
7560 int pack_adjust = 0;
7561 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7562 {
7563 tree arg;
7564 tree parm;
7565
7566 /* Get the Ith template parameter. */
7567 parm = TREE_VEC_ELT (parms, parm_idx);
7568
7569 if (parm == error_mark_node)
7570 {
7571 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7572 continue;
7573 }
7574
7575 /* Calculate the next argument. */
7576 if (arg_idx < nargs)
7577 arg = TREE_VEC_ELT (inner_args, arg_idx);
7578 else
7579 arg = NULL_TREE;
7580
7581 if (template_parameter_pack_p (TREE_VALUE (parm))
7582 && !(arg && ARGUMENT_PACK_P (arg)))
7583 {
7584 /* Some arguments will be placed in the
7585 template parameter pack PARM. */
7586 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7587 inner_args, arg_idx,
7588 new_args, &lost,
7589 in_decl, complain);
7590
7591 if (arg == NULL_TREE)
7592 {
7593 /* We don't know how many args we have yet, just use the
7594 unconverted (and still packed) ones for now. */
7595 new_inner_args = orig_inner_args;
7596 arg_idx = nargs;
7597 break;
7598 }
7599
7600 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7601
7602 /* Store this argument. */
7603 if (arg == error_mark_node)
7604 {
7605 lost++;
7606 /* We are done with all of the arguments. */
7607 arg_idx = nargs;
7608 }
7609 else
7610 {
7611 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7612 arg_idx += pack_adjust;
7613 }
7614
7615 continue;
7616 }
7617 else if (arg)
7618 {
7619 if (PACK_EXPANSION_P (arg))
7620 {
7621 /* "If every valid specialization of a variadic template
7622 requires an empty template parameter pack, the template is
7623 ill-formed, no diagnostic required." So check that the
7624 pattern works with this parameter. */
7625 tree pattern = PACK_EXPANSION_PATTERN (arg);
7626 tree conv = convert_template_argument (TREE_VALUE (parm),
7627 pattern, new_args,
7628 complain, parm_idx,
7629 in_decl);
7630 if (conv == error_mark_node)
7631 {
7632 inform (input_location, "so any instantiation with a "
7633 "non-empty parameter pack would be ill-formed");
7634 ++lost;
7635 }
7636 else if (TYPE_P (conv) && !TYPE_P (pattern))
7637 /* Recover from missing typename. */
7638 TREE_VEC_ELT (inner_args, arg_idx)
7639 = make_pack_expansion (conv);
7640
7641 /* We don't know how many args we have yet, just
7642 use the unconverted ones for now. */
7643 new_inner_args = inner_args;
7644 arg_idx = nargs;
7645 break;
7646 }
7647 }
7648 else if (require_all_args)
7649 {
7650 /* There must be a default arg in this case. */
7651 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7652 complain, in_decl);
7653 /* The position of the first default template argument,
7654 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7655 Record that. */
7656 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7657 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7658 arg_idx - pack_adjust);
7659 }
7660 else
7661 break;
7662
7663 if (arg == error_mark_node)
7664 {
7665 if (complain & tf_error)
7666 error ("template argument %d is invalid", arg_idx + 1);
7667 }
7668 else if (!arg)
7669 /* This only occurs if there was an error in the template
7670 parameter list itself (which we would already have
7671 reported) that we are trying to recover from, e.g., a class
7672 template with a parameter list such as
7673 template<typename..., typename>. */
7674 ++lost;
7675 else
7676 arg = convert_template_argument (TREE_VALUE (parm),
7677 arg, new_args, complain,
7678 parm_idx, in_decl);
7679
7680 if (arg == error_mark_node)
7681 lost++;
7682 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7683 }
7684 cp_unevaluated_operand = saved_unevaluated_operand;
7685 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7686
7687 if (variadic_p && arg_idx < nargs)
7688 {
7689 if (complain & tf_error)
7690 {
7691 error ("wrong number of template arguments "
7692 "(%d, should be %d)", nargs, arg_idx);
7693 if (in_decl)
7694 error ("provided for %q+D", in_decl);
7695 }
7696 return error_mark_node;
7697 }
7698
7699 if (lost)
7700 return error_mark_node;
7701
7702 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7703 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7704 TREE_VEC_LENGTH (new_inner_args));
7705
7706 return new_inner_args;
7707 }
7708
7709 /* Convert all template arguments to their appropriate types, and
7710 return a vector containing the innermost resulting template
7711 arguments. If any error occurs, return error_mark_node. Error and
7712 warning messages are not issued.
7713
7714 Note that no function argument deduction is performed, and default
7715 arguments are used to fill in unspecified arguments. */
7716 tree
7717 coerce_template_parms (tree parms, tree args, tree in_decl)
7718 {
7719 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7720 }
7721
7722 /* Convert all template arguments to their appropriate type, and
7723 instantiate default arguments as needed. This returns a vector
7724 containing the innermost resulting template arguments, or
7725 error_mark_node if unsuccessful. */
7726 tree
7727 coerce_template_parms (tree parms, tree args, tree in_decl,
7728 tsubst_flags_t complain)
7729 {
7730 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7731 }
7732
7733 /* Like coerce_template_parms. If PARMS represents all template
7734 parameters levels, this function returns a vector of vectors
7735 representing all the resulting argument levels. Note that in this
7736 case, only the innermost arguments are coerced because the
7737 outermost ones are supposed to have been coerced already.
7738
7739 Otherwise, if PARMS represents only (the innermost) vector of
7740 parameters, this function returns a vector containing just the
7741 innermost resulting arguments. */
7742
7743 static tree
7744 coerce_innermost_template_parms (tree parms,
7745 tree args,
7746 tree in_decl,
7747 tsubst_flags_t complain,
7748 bool require_all_args,
7749 bool use_default_args)
7750 {
7751 int parms_depth = TMPL_PARMS_DEPTH (parms);
7752 int args_depth = TMPL_ARGS_DEPTH (args);
7753 tree coerced_args;
7754
7755 if (parms_depth > 1)
7756 {
7757 coerced_args = make_tree_vec (parms_depth);
7758 tree level;
7759 int cur_depth;
7760
7761 for (level = parms, cur_depth = parms_depth;
7762 parms_depth > 0 && level != NULL_TREE;
7763 level = TREE_CHAIN (level), --cur_depth)
7764 {
7765 tree l;
7766 if (cur_depth == args_depth)
7767 l = coerce_template_parms (TREE_VALUE (level),
7768 args, in_decl, complain,
7769 require_all_args,
7770 use_default_args);
7771 else
7772 l = TMPL_ARGS_LEVEL (args, cur_depth);
7773
7774 if (l == error_mark_node)
7775 return error_mark_node;
7776
7777 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7778 }
7779 }
7780 else
7781 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7782 args, in_decl, complain,
7783 require_all_args,
7784 use_default_args);
7785 return coerced_args;
7786 }
7787
7788 /* Returns 1 if template args OT and NT are equivalent. */
7789
7790 static int
7791 template_args_equal (tree ot, tree nt)
7792 {
7793 if (nt == ot)
7794 return 1;
7795 if (nt == NULL_TREE || ot == NULL_TREE)
7796 return false;
7797
7798 if (TREE_CODE (nt) == TREE_VEC)
7799 /* For member templates */
7800 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7801 else if (PACK_EXPANSION_P (ot))
7802 return (PACK_EXPANSION_P (nt)
7803 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7804 PACK_EXPANSION_PATTERN (nt))
7805 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7806 PACK_EXPANSION_EXTRA_ARGS (nt)));
7807 else if (ARGUMENT_PACK_P (ot))
7808 {
7809 int i, len;
7810 tree opack, npack;
7811
7812 if (!ARGUMENT_PACK_P (nt))
7813 return 0;
7814
7815 opack = ARGUMENT_PACK_ARGS (ot);
7816 npack = ARGUMENT_PACK_ARGS (nt);
7817 len = TREE_VEC_LENGTH (opack);
7818 if (TREE_VEC_LENGTH (npack) != len)
7819 return 0;
7820 for (i = 0; i < len; ++i)
7821 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7822 TREE_VEC_ELT (npack, i)))
7823 return 0;
7824 return 1;
7825 }
7826 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7827 {
7828 /* We get here probably because we are in the middle of substituting
7829 into the pattern of a pack expansion. In that case the
7830 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7831 interested in. So we want to use the initial pack argument for
7832 the comparison. */
7833 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7834 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7835 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7836 return template_args_equal (ot, nt);
7837 }
7838 else if (TYPE_P (nt))
7839 {
7840 if (!TYPE_P (ot))
7841 return false;
7842 /* Don't treat an alias template specialization with dependent
7843 arguments as equivalent to its underlying type when used as a
7844 template argument; we need them to be distinct so that we
7845 substitute into the specialization arguments at instantiation
7846 time. And aliases can't be equivalent without being ==, so
7847 we don't need to look any deeper. */
7848 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7849 return false;
7850 else
7851 return same_type_p (ot, nt);
7852 }
7853 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7854 return 0;
7855 else
7856 {
7857 /* Try to treat a template non-type argument that has been converted
7858 to the parameter type as equivalent to one that hasn't yet. */
7859 for (enum tree_code code1 = TREE_CODE (ot);
7860 CONVERT_EXPR_CODE_P (code1)
7861 || code1 == NON_LVALUE_EXPR;
7862 code1 = TREE_CODE (ot))
7863 ot = TREE_OPERAND (ot, 0);
7864 for (enum tree_code code2 = TREE_CODE (nt);
7865 CONVERT_EXPR_CODE_P (code2)
7866 || code2 == NON_LVALUE_EXPR;
7867 code2 = TREE_CODE (nt))
7868 nt = TREE_OPERAND (nt, 0);
7869
7870 return cp_tree_equal (ot, nt);
7871 }
7872 }
7873
7874 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7875 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7876 NEWARG_PTR with the offending arguments if they are non-NULL. */
7877
7878 static int
7879 comp_template_args_with_info (tree oldargs, tree newargs,
7880 tree *oldarg_ptr, tree *newarg_ptr)
7881 {
7882 int i;
7883
7884 if (oldargs == newargs)
7885 return 1;
7886
7887 if (!oldargs || !newargs)
7888 return 0;
7889
7890 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7891 return 0;
7892
7893 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7894 {
7895 tree nt = TREE_VEC_ELT (newargs, i);
7896 tree ot = TREE_VEC_ELT (oldargs, i);
7897
7898 if (! template_args_equal (ot, nt))
7899 {
7900 if (oldarg_ptr != NULL)
7901 *oldarg_ptr = ot;
7902 if (newarg_ptr != NULL)
7903 *newarg_ptr = nt;
7904 return 0;
7905 }
7906 }
7907 return 1;
7908 }
7909
7910 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7911 of template arguments. Returns 0 otherwise. */
7912
7913 int
7914 comp_template_args (tree oldargs, tree newargs)
7915 {
7916 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7917 }
7918
7919 static void
7920 add_pending_template (tree d)
7921 {
7922 tree ti = (TYPE_P (d)
7923 ? CLASSTYPE_TEMPLATE_INFO (d)
7924 : DECL_TEMPLATE_INFO (d));
7925 struct pending_template *pt;
7926 int level;
7927
7928 if (TI_PENDING_TEMPLATE_FLAG (ti))
7929 return;
7930
7931 /* We are called both from instantiate_decl, where we've already had a
7932 tinst_level pushed, and instantiate_template, where we haven't.
7933 Compensate. */
7934 level = !current_tinst_level || current_tinst_level->decl != d;
7935
7936 if (level)
7937 push_tinst_level (d);
7938
7939 pt = ggc_alloc<pending_template> ();
7940 pt->next = NULL;
7941 pt->tinst = current_tinst_level;
7942 if (last_pending_template)
7943 last_pending_template->next = pt;
7944 else
7945 pending_templates = pt;
7946
7947 last_pending_template = pt;
7948
7949 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7950
7951 if (level)
7952 pop_tinst_level ();
7953 }
7954
7955
7956 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7957 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7958 documentation for TEMPLATE_ID_EXPR. */
7959
7960 tree
7961 lookup_template_function (tree fns, tree arglist)
7962 {
7963 tree type;
7964
7965 if (fns == error_mark_node || arglist == error_mark_node)
7966 return error_mark_node;
7967
7968 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7969
7970 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7971 {
7972 error ("%q#D is not a function template", fns);
7973 return error_mark_node;
7974 }
7975
7976 if (BASELINK_P (fns))
7977 {
7978 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7979 unknown_type_node,
7980 BASELINK_FUNCTIONS (fns),
7981 arglist);
7982 return fns;
7983 }
7984
7985 type = TREE_TYPE (fns);
7986 if (TREE_CODE (fns) == OVERLOAD || !type)
7987 type = unknown_type_node;
7988
7989 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7990 }
7991
7992 /* Within the scope of a template class S<T>, the name S gets bound
7993 (in build_self_reference) to a TYPE_DECL for the class, not a
7994 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7995 or one of its enclosing classes, and that type is a template,
7996 return the associated TEMPLATE_DECL. Otherwise, the original
7997 DECL is returned.
7998
7999 Also handle the case when DECL is a TREE_LIST of ambiguous
8000 injected-class-names from different bases. */
8001
8002 tree
8003 maybe_get_template_decl_from_type_decl (tree decl)
8004 {
8005 if (decl == NULL_TREE)
8006 return decl;
8007
8008 /* DR 176: A lookup that finds an injected-class-name (10.2
8009 [class.member.lookup]) can result in an ambiguity in certain cases
8010 (for example, if it is found in more than one base class). If all of
8011 the injected-class-names that are found refer to specializations of
8012 the same class template, and if the name is followed by a
8013 template-argument-list, the reference refers to the class template
8014 itself and not a specialization thereof, and is not ambiguous. */
8015 if (TREE_CODE (decl) == TREE_LIST)
8016 {
8017 tree t, tmpl = NULL_TREE;
8018 for (t = decl; t; t = TREE_CHAIN (t))
8019 {
8020 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8021 if (!tmpl)
8022 tmpl = elt;
8023 else if (tmpl != elt)
8024 break;
8025 }
8026 if (tmpl && t == NULL_TREE)
8027 return tmpl;
8028 else
8029 return decl;
8030 }
8031
8032 return (decl != NULL_TREE
8033 && DECL_SELF_REFERENCE_P (decl)
8034 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8035 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8036 }
8037
8038 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8039 parameters, find the desired type.
8040
8041 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8042
8043 IN_DECL, if non-NULL, is the template declaration we are trying to
8044 instantiate.
8045
8046 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8047 the class we are looking up.
8048
8049 Issue error and warning messages under control of COMPLAIN.
8050
8051 If the template class is really a local class in a template
8052 function, then the FUNCTION_CONTEXT is the function in which it is
8053 being instantiated.
8054
8055 ??? Note that this function is currently called *twice* for each
8056 template-id: the first time from the parser, while creating the
8057 incomplete type (finish_template_type), and the second type during the
8058 real instantiation (instantiate_template_class). This is surely something
8059 that we want to avoid. It also causes some problems with argument
8060 coercion (see convert_nontype_argument for more information on this). */
8061
8062 static tree
8063 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8064 int entering_scope, tsubst_flags_t complain)
8065 {
8066 tree templ = NULL_TREE, parmlist;
8067 tree t;
8068 spec_entry **slot;
8069 spec_entry *entry;
8070 spec_entry elt;
8071 hashval_t hash;
8072
8073 if (identifier_p (d1))
8074 {
8075 tree value = innermost_non_namespace_value (d1);
8076 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8077 templ = value;
8078 else
8079 {
8080 if (context)
8081 push_decl_namespace (context);
8082 templ = lookup_name (d1);
8083 templ = maybe_get_template_decl_from_type_decl (templ);
8084 if (context)
8085 pop_decl_namespace ();
8086 }
8087 if (templ)
8088 context = DECL_CONTEXT (templ);
8089 }
8090 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8091 {
8092 tree type = TREE_TYPE (d1);
8093
8094 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8095 an implicit typename for the second A. Deal with it. */
8096 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8097 type = TREE_TYPE (type);
8098
8099 if (CLASSTYPE_TEMPLATE_INFO (type))
8100 {
8101 templ = CLASSTYPE_TI_TEMPLATE (type);
8102 d1 = DECL_NAME (templ);
8103 }
8104 }
8105 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8106 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8107 {
8108 templ = TYPE_TI_TEMPLATE (d1);
8109 d1 = DECL_NAME (templ);
8110 }
8111 else if (DECL_TYPE_TEMPLATE_P (d1))
8112 {
8113 templ = d1;
8114 d1 = DECL_NAME (templ);
8115 context = DECL_CONTEXT (templ);
8116 }
8117 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8118 {
8119 templ = d1;
8120 d1 = DECL_NAME (templ);
8121 }
8122
8123 /* Issue an error message if we didn't find a template. */
8124 if (! templ)
8125 {
8126 if (complain & tf_error)
8127 error ("%qT is not a template", d1);
8128 return error_mark_node;
8129 }
8130
8131 if (TREE_CODE (templ) != TEMPLATE_DECL
8132 /* Make sure it's a user visible template, if it was named by
8133 the user. */
8134 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8135 && !PRIMARY_TEMPLATE_P (templ)))
8136 {
8137 if (complain & tf_error)
8138 {
8139 error ("non-template type %qT used as a template", d1);
8140 if (in_decl)
8141 error ("for template declaration %q+D", in_decl);
8142 }
8143 return error_mark_node;
8144 }
8145
8146 complain &= ~tf_user;
8147
8148 /* An alias that just changes the name of a template is equivalent to the
8149 other template, so if any of the arguments are pack expansions, strip
8150 the alias to avoid problems with a pack expansion passed to a non-pack
8151 alias template parameter (DR 1430). */
8152 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8153 templ = get_underlying_template (templ);
8154
8155 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8156 {
8157 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8158 template arguments */
8159
8160 tree parm;
8161 tree arglist2;
8162 tree outer;
8163
8164 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8165
8166 /* Consider an example where a template template parameter declared as
8167
8168 template <class T, class U = std::allocator<T> > class TT
8169
8170 The template parameter level of T and U are one level larger than
8171 of TT. To proper process the default argument of U, say when an
8172 instantiation `TT<int>' is seen, we need to build the full
8173 arguments containing {int} as the innermost level. Outer levels,
8174 available when not appearing as default template argument, can be
8175 obtained from the arguments of the enclosing template.
8176
8177 Suppose that TT is later substituted with std::vector. The above
8178 instantiation is `TT<int, std::allocator<T> >' with TT at
8179 level 1, and T at level 2, while the template arguments at level 1
8180 becomes {std::vector} and the inner level 2 is {int}. */
8181
8182 outer = DECL_CONTEXT (templ);
8183 if (outer)
8184 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8185 else if (current_template_parms)
8186 {
8187 /* This is an argument of the current template, so we haven't set
8188 DECL_CONTEXT yet. */
8189 tree relevant_template_parms;
8190
8191 /* Parameter levels that are greater than the level of the given
8192 template template parm are irrelevant. */
8193 relevant_template_parms = current_template_parms;
8194 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8195 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8196 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8197
8198 outer = template_parms_to_args (relevant_template_parms);
8199 }
8200
8201 if (outer)
8202 arglist = add_to_template_args (outer, arglist);
8203
8204 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8205 complain,
8206 /*require_all_args=*/true,
8207 /*use_default_args=*/true);
8208 if (arglist2 == error_mark_node
8209 || (!uses_template_parms (arglist2)
8210 && check_instantiated_args (templ, arglist2, complain)))
8211 return error_mark_node;
8212
8213 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8214 return parm;
8215 }
8216 else
8217 {
8218 tree template_type = TREE_TYPE (templ);
8219 tree gen_tmpl;
8220 tree type_decl;
8221 tree found = NULL_TREE;
8222 int arg_depth;
8223 int parm_depth;
8224 int is_dependent_type;
8225 int use_partial_inst_tmpl = false;
8226
8227 if (template_type == error_mark_node)
8228 /* An error occurred while building the template TEMPL, and a
8229 diagnostic has most certainly been emitted for that
8230 already. Let's propagate that error. */
8231 return error_mark_node;
8232
8233 gen_tmpl = most_general_template (templ);
8234 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8235 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8236 arg_depth = TMPL_ARGS_DEPTH (arglist);
8237
8238 if (arg_depth == 1 && parm_depth > 1)
8239 {
8240 /* We've been given an incomplete set of template arguments.
8241 For example, given:
8242
8243 template <class T> struct S1 {
8244 template <class U> struct S2 {};
8245 template <class U> struct S2<U*> {};
8246 };
8247
8248 we will be called with an ARGLIST of `U*', but the
8249 TEMPLATE will be `template <class T> template
8250 <class U> struct S1<T>::S2'. We must fill in the missing
8251 arguments. */
8252 arglist
8253 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8254 arglist);
8255 arg_depth = TMPL_ARGS_DEPTH (arglist);
8256 }
8257
8258 /* Now we should have enough arguments. */
8259 gcc_assert (parm_depth == arg_depth);
8260
8261 /* From here on, we're only interested in the most general
8262 template. */
8263
8264 /* Calculate the BOUND_ARGS. These will be the args that are
8265 actually tsubst'd into the definition to create the
8266 instantiation. */
8267 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8268 complain,
8269 /*require_all_args=*/true,
8270 /*use_default_args=*/true);
8271
8272 if (arglist == error_mark_node)
8273 /* We were unable to bind the arguments. */
8274 return error_mark_node;
8275
8276 /* In the scope of a template class, explicit references to the
8277 template class refer to the type of the template, not any
8278 instantiation of it. For example, in:
8279
8280 template <class T> class C { void f(C<T>); }
8281
8282 the `C<T>' is just the same as `C'. Outside of the
8283 class, however, such a reference is an instantiation. */
8284 if ((entering_scope
8285 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8286 || currently_open_class (template_type))
8287 /* comp_template_args is expensive, check it last. */
8288 && comp_template_args (TYPE_TI_ARGS (template_type),
8289 arglist))
8290 return template_type;
8291
8292 /* If we already have this specialization, return it. */
8293 elt.tmpl = gen_tmpl;
8294 elt.args = arglist;
8295 elt.spec = NULL_TREE;
8296 hash = spec_hasher::hash (&elt);
8297 entry = type_specializations->find_with_hash (&elt, hash);
8298
8299 if (entry)
8300 return entry->spec;
8301
8302 /* If the the template's constraints are not satisfied,
8303 then we cannot form a valid type.
8304
8305 Note that the check is deferred until after the hash
8306 lookup. This prevents redundant checks on previously
8307 instantiated specializations. */
8308 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8309 {
8310 if (complain & tf_error)
8311 {
8312 error ("template constraint failure");
8313 diagnose_constraints (input_location, gen_tmpl, arglist);
8314 }
8315 return error_mark_node;
8316 }
8317
8318 is_dependent_type = uses_template_parms (arglist);
8319
8320 /* If the deduced arguments are invalid, then the binding
8321 failed. */
8322 if (!is_dependent_type
8323 && check_instantiated_args (gen_tmpl,
8324 INNERMOST_TEMPLATE_ARGS (arglist),
8325 complain))
8326 return error_mark_node;
8327
8328 if (!is_dependent_type
8329 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8330 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8331 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8332 {
8333 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8334 DECL_NAME (gen_tmpl),
8335 /*tag_scope=*/ts_global);
8336 return found;
8337 }
8338
8339 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8340 complain, in_decl);
8341 if (context == error_mark_node)
8342 return error_mark_node;
8343
8344 if (!context)
8345 context = global_namespace;
8346
8347 /* Create the type. */
8348 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8349 {
8350 /* The user referred to a specialization of an alias
8351 template represented by GEN_TMPL.
8352
8353 [temp.alias]/2 says:
8354
8355 When a template-id refers to the specialization of an
8356 alias template, it is equivalent to the associated
8357 type obtained by substitution of its
8358 template-arguments for the template-parameters in the
8359 type-id of the alias template. */
8360
8361 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8362 /* Note that the call above (by indirectly calling
8363 register_specialization in tsubst_decl) registers the
8364 TYPE_DECL representing the specialization of the alias
8365 template. So next time someone substitutes ARGLIST for
8366 the template parms into the alias template (GEN_TMPL),
8367 she'll get that TYPE_DECL back. */
8368
8369 if (t == error_mark_node)
8370 return t;
8371 }
8372 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8373 {
8374 if (!is_dependent_type)
8375 {
8376 set_current_access_from_decl (TYPE_NAME (template_type));
8377 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8378 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8379 arglist, complain, in_decl),
8380 SCOPED_ENUM_P (template_type), NULL);
8381
8382 if (t == error_mark_node)
8383 return t;
8384 }
8385 else
8386 {
8387 /* We don't want to call start_enum for this type, since
8388 the values for the enumeration constants may involve
8389 template parameters. And, no one should be interested
8390 in the enumeration constants for such a type. */
8391 t = cxx_make_type (ENUMERAL_TYPE);
8392 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8393 }
8394 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8395 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8396 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8397 }
8398 else if (CLASS_TYPE_P (template_type))
8399 {
8400 t = make_class_type (TREE_CODE (template_type));
8401 CLASSTYPE_DECLARED_CLASS (t)
8402 = CLASSTYPE_DECLARED_CLASS (template_type);
8403 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8404 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8405
8406 /* A local class. Make sure the decl gets registered properly. */
8407 if (context == current_function_decl)
8408 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8409
8410 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8411 /* This instantiation is another name for the primary
8412 template type. Set the TYPE_CANONICAL field
8413 appropriately. */
8414 TYPE_CANONICAL (t) = template_type;
8415 else if (any_template_arguments_need_structural_equality_p (arglist))
8416 /* Some of the template arguments require structural
8417 equality testing, so this template class requires
8418 structural equality testing. */
8419 SET_TYPE_STRUCTURAL_EQUALITY (t);
8420 }
8421 else
8422 gcc_unreachable ();
8423
8424 /* If we called start_enum or pushtag above, this information
8425 will already be set up. */
8426 if (!TYPE_NAME (t))
8427 {
8428 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8429
8430 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8431 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8432 DECL_SOURCE_LOCATION (type_decl)
8433 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8434 }
8435 else
8436 type_decl = TYPE_NAME (t);
8437
8438 if (CLASS_TYPE_P (template_type))
8439 {
8440 TREE_PRIVATE (type_decl)
8441 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8442 TREE_PROTECTED (type_decl)
8443 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8444 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8445 {
8446 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8447 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8448 }
8449 }
8450
8451 if (OVERLOAD_TYPE_P (t)
8452 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8453 {
8454 static const char *tags[] = {"abi_tag", "may_alias"};
8455
8456 for (unsigned ix = 0; ix != 2; ix++)
8457 {
8458 tree attributes
8459 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8460
8461 if (!attributes)
8462 ;
8463 else if (!TREE_CHAIN (attributes) && !TYPE_ATTRIBUTES (t))
8464 TYPE_ATTRIBUTES (t) = attributes;
8465 else
8466 TYPE_ATTRIBUTES (t)
8467 = tree_cons (TREE_PURPOSE (attributes),
8468 TREE_VALUE (attributes),
8469 TYPE_ATTRIBUTES (t));
8470 }
8471 }
8472
8473 /* Let's consider the explicit specialization of a member
8474 of a class template specialization that is implicitly instantiated,
8475 e.g.:
8476 template<class T>
8477 struct S
8478 {
8479 template<class U> struct M {}; //#0
8480 };
8481
8482 template<>
8483 template<>
8484 struct S<int>::M<char> //#1
8485 {
8486 int i;
8487 };
8488 [temp.expl.spec]/4 says this is valid.
8489
8490 In this case, when we write:
8491 S<int>::M<char> m;
8492
8493 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8494 the one of #0.
8495
8496 When we encounter #1, we want to store the partial instantiation
8497 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8498
8499 For all cases other than this "explicit specialization of member of a
8500 class template", we just want to store the most general template into
8501 the CLASSTYPE_TI_TEMPLATE of M.
8502
8503 This case of "explicit specialization of member of a class template"
8504 only happens when:
8505 1/ the enclosing class is an instantiation of, and therefore not
8506 the same as, the context of the most general template, and
8507 2/ we aren't looking at the partial instantiation itself, i.e.
8508 the innermost arguments are not the same as the innermost parms of
8509 the most general template.
8510
8511 So it's only when 1/ and 2/ happens that we want to use the partial
8512 instantiation of the member template in lieu of its most general
8513 template. */
8514
8515 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8516 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8517 /* the enclosing class must be an instantiation... */
8518 && CLASS_TYPE_P (context)
8519 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8520 {
8521 tree partial_inst_args;
8522 TREE_VEC_LENGTH (arglist)--;
8523 ++processing_template_decl;
8524 partial_inst_args =
8525 tsubst (INNERMOST_TEMPLATE_ARGS
8526 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8527 arglist, complain, NULL_TREE);
8528 --processing_template_decl;
8529 TREE_VEC_LENGTH (arglist)++;
8530 use_partial_inst_tmpl =
8531 /*...and we must not be looking at the partial instantiation
8532 itself. */
8533 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8534 partial_inst_args);
8535 }
8536
8537 if (!use_partial_inst_tmpl)
8538 /* This case is easy; there are no member templates involved. */
8539 found = gen_tmpl;
8540 else
8541 {
8542 /* This is a full instantiation of a member template. Find
8543 the partial instantiation of which this is an instance. */
8544
8545 /* Temporarily reduce by one the number of levels in the ARGLIST
8546 so as to avoid comparing the last set of arguments. */
8547 TREE_VEC_LENGTH (arglist)--;
8548 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8549 TREE_VEC_LENGTH (arglist)++;
8550 /* FOUND is either a proper class type, or an alias
8551 template specialization. In the later case, it's a
8552 TYPE_DECL, resulting from the substituting of arguments
8553 for parameters in the TYPE_DECL of the alias template
8554 done earlier. So be careful while getting the template
8555 of FOUND. */
8556 found = TREE_CODE (found) == TYPE_DECL
8557 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8558 : CLASSTYPE_TI_TEMPLATE (found);
8559 }
8560
8561 // Build template info for the new specialization.
8562 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8563
8564 elt.spec = t;
8565 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8566 entry = ggc_alloc<spec_entry> ();
8567 *entry = elt;
8568 *slot = entry;
8569
8570 /* Note this use of the partial instantiation so we can check it
8571 later in maybe_process_partial_specialization. */
8572 DECL_TEMPLATE_INSTANTIATIONS (found)
8573 = tree_cons (arglist, t,
8574 DECL_TEMPLATE_INSTANTIATIONS (found));
8575
8576 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8577 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8578 /* Now that the type has been registered on the instantiations
8579 list, we set up the enumerators. Because the enumeration
8580 constants may involve the enumeration type itself, we make
8581 sure to register the type first, and then create the
8582 constants. That way, doing tsubst_expr for the enumeration
8583 constants won't result in recursive calls here; we'll find
8584 the instantiation and exit above. */
8585 tsubst_enum (template_type, t, arglist);
8586
8587 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8588 /* If the type makes use of template parameters, the
8589 code that generates debugging information will crash. */
8590 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8591
8592 /* Possibly limit visibility based on template args. */
8593 TREE_PUBLIC (type_decl) = 1;
8594 determine_visibility (type_decl);
8595
8596 inherit_targ_abi_tags (t);
8597
8598 return t;
8599 }
8600 }
8601
8602 /* Wrapper for lookup_template_class_1. */
8603
8604 tree
8605 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8606 int entering_scope, tsubst_flags_t complain)
8607 {
8608 tree ret;
8609 timevar_push (TV_TEMPLATE_INST);
8610 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8611 entering_scope, complain);
8612 timevar_pop (TV_TEMPLATE_INST);
8613 return ret;
8614 }
8615
8616 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8617
8618 tree
8619 lookup_template_variable (tree templ, tree arglist)
8620 {
8621 /* The type of the expression is NULL_TREE since the template-id could refer
8622 to an explicit or partial specialization. */
8623 tree type = NULL_TREE;
8624 if (flag_concepts && variable_concept_p (templ))
8625 /* Except that concepts are always bool. */
8626 type = boolean_type_node;
8627 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8628 }
8629
8630 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8631
8632 tree
8633 finish_template_variable (tree var, tsubst_flags_t complain)
8634 {
8635 tree templ = TREE_OPERAND (var, 0);
8636 tree arglist = TREE_OPERAND (var, 1);
8637
8638 /* We never want to return a VAR_DECL for a variable concept, since they
8639 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8640 bool concept_p = flag_concepts && variable_concept_p (templ);
8641 if (concept_p && processing_template_decl)
8642 return var;
8643
8644 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8645 arglist = add_outermost_template_args (tmpl_args, arglist);
8646
8647 tree parms = DECL_TEMPLATE_PARMS (templ);
8648 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8649 /*req_all*/true,
8650 /*use_default*/true);
8651
8652 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8653 {
8654 if (complain & tf_error)
8655 {
8656 error ("constraints for %qD not satisfied", templ);
8657 diagnose_constraints (location_of (var), templ, arglist);
8658 }
8659 return error_mark_node;
8660 }
8661
8662 /* If a template-id refers to a specialization of a variable
8663 concept, then the expression is true if and only if the
8664 concept's constraints are satisfied by the given template
8665 arguments.
8666
8667 NOTE: This is an extension of Concepts Lite TS that
8668 allows constraints to be used in expressions. */
8669 if (concept_p)
8670 {
8671 tree decl = DECL_TEMPLATE_RESULT (templ);
8672 return evaluate_variable_concept (decl, arglist);
8673 }
8674
8675 return instantiate_template (templ, arglist, complain);
8676 }
8677 \f
8678 struct pair_fn_data
8679 {
8680 tree_fn_t fn;
8681 void *data;
8682 /* True when we should also visit template parameters that occur in
8683 non-deduced contexts. */
8684 bool include_nondeduced_p;
8685 hash_set<tree> *visited;
8686 };
8687
8688 /* Called from for_each_template_parm via walk_tree. */
8689
8690 static tree
8691 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8692 {
8693 tree t = *tp;
8694 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8695 tree_fn_t fn = pfd->fn;
8696 void *data = pfd->data;
8697 tree result = NULL_TREE;
8698
8699 #define WALK_SUBTREE(NODE) \
8700 do \
8701 { \
8702 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8703 pfd->include_nondeduced_p); \
8704 if (result) goto out; \
8705 } \
8706 while (0)
8707
8708 if (TYPE_P (t)
8709 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8710 WALK_SUBTREE (TYPE_CONTEXT (t));
8711
8712 switch (TREE_CODE (t))
8713 {
8714 case RECORD_TYPE:
8715 if (TYPE_PTRMEMFUNC_P (t))
8716 break;
8717 /* Fall through. */
8718
8719 case UNION_TYPE:
8720 case ENUMERAL_TYPE:
8721 if (!TYPE_TEMPLATE_INFO (t))
8722 *walk_subtrees = 0;
8723 else
8724 WALK_SUBTREE (TYPE_TI_ARGS (t));
8725 break;
8726
8727 case INTEGER_TYPE:
8728 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8729 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8730 break;
8731
8732 case METHOD_TYPE:
8733 /* Since we're not going to walk subtrees, we have to do this
8734 explicitly here. */
8735 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8736 /* Fall through. */
8737
8738 case FUNCTION_TYPE:
8739 /* Check the return type. */
8740 WALK_SUBTREE (TREE_TYPE (t));
8741
8742 /* Check the parameter types. Since default arguments are not
8743 instantiated until they are needed, the TYPE_ARG_TYPES may
8744 contain expressions that involve template parameters. But,
8745 no-one should be looking at them yet. And, once they're
8746 instantiated, they don't contain template parameters, so
8747 there's no point in looking at them then, either. */
8748 {
8749 tree parm;
8750
8751 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8752 WALK_SUBTREE (TREE_VALUE (parm));
8753
8754 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8755 want walk_tree walking into them itself. */
8756 *walk_subtrees = 0;
8757 }
8758 break;
8759
8760 case TYPEOF_TYPE:
8761 case UNDERLYING_TYPE:
8762 if (pfd->include_nondeduced_p
8763 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8764 pfd->visited,
8765 pfd->include_nondeduced_p))
8766 return error_mark_node;
8767 break;
8768
8769 case FUNCTION_DECL:
8770 case VAR_DECL:
8771 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8772 WALK_SUBTREE (DECL_TI_ARGS (t));
8773 /* Fall through. */
8774
8775 case PARM_DECL:
8776 case CONST_DECL:
8777 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8778 WALK_SUBTREE (DECL_INITIAL (t));
8779 if (DECL_CONTEXT (t)
8780 && pfd->include_nondeduced_p)
8781 WALK_SUBTREE (DECL_CONTEXT (t));
8782 break;
8783
8784 case BOUND_TEMPLATE_TEMPLATE_PARM:
8785 /* Record template parameters such as `T' inside `TT<T>'. */
8786 WALK_SUBTREE (TYPE_TI_ARGS (t));
8787 /* Fall through. */
8788
8789 case TEMPLATE_TEMPLATE_PARM:
8790 case TEMPLATE_TYPE_PARM:
8791 case TEMPLATE_PARM_INDEX:
8792 if (fn && (*fn)(t, data))
8793 return t;
8794 else if (!fn)
8795 return t;
8796 break;
8797
8798 case TEMPLATE_DECL:
8799 /* A template template parameter is encountered. */
8800 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8801 WALK_SUBTREE (TREE_TYPE (t));
8802
8803 /* Already substituted template template parameter */
8804 *walk_subtrees = 0;
8805 break;
8806
8807 case TYPENAME_TYPE:
8808 if (!fn)
8809 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8810 break;
8811
8812 case CONSTRUCTOR:
8813 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8814 && pfd->include_nondeduced_p)
8815 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8816 break;
8817
8818 case INDIRECT_REF:
8819 case COMPONENT_REF:
8820 /* If there's no type, then this thing must be some expression
8821 involving template parameters. */
8822 if (!fn && !TREE_TYPE (t))
8823 return error_mark_node;
8824 break;
8825
8826 case MODOP_EXPR:
8827 case CAST_EXPR:
8828 case IMPLICIT_CONV_EXPR:
8829 case REINTERPRET_CAST_EXPR:
8830 case CONST_CAST_EXPR:
8831 case STATIC_CAST_EXPR:
8832 case DYNAMIC_CAST_EXPR:
8833 case ARROW_EXPR:
8834 case DOTSTAR_EXPR:
8835 case TYPEID_EXPR:
8836 case PSEUDO_DTOR_EXPR:
8837 if (!fn)
8838 return error_mark_node;
8839 break;
8840
8841 default:
8842 break;
8843 }
8844
8845 #undef WALK_SUBTREE
8846
8847 /* We didn't find any template parameters we liked. */
8848 out:
8849 return result;
8850 }
8851
8852 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8853 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8854 call FN with the parameter and the DATA.
8855 If FN returns nonzero, the iteration is terminated, and
8856 for_each_template_parm returns 1. Otherwise, the iteration
8857 continues. If FN never returns a nonzero value, the value
8858 returned by for_each_template_parm is 0. If FN is NULL, it is
8859 considered to be the function which always returns 1.
8860
8861 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8862 parameters that occur in non-deduced contexts. When false, only
8863 visits those template parameters that can be deduced. */
8864
8865 static tree
8866 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8867 hash_set<tree> *visited,
8868 bool include_nondeduced_p)
8869 {
8870 struct pair_fn_data pfd;
8871 tree result;
8872
8873 /* Set up. */
8874 pfd.fn = fn;
8875 pfd.data = data;
8876 pfd.include_nondeduced_p = include_nondeduced_p;
8877
8878 /* Walk the tree. (Conceptually, we would like to walk without
8879 duplicates, but for_each_template_parm_r recursively calls
8880 for_each_template_parm, so we would need to reorganize a fair
8881 bit to use walk_tree_without_duplicates, so we keep our own
8882 visited list.) */
8883 if (visited)
8884 pfd.visited = visited;
8885 else
8886 pfd.visited = new hash_set<tree>;
8887 result = cp_walk_tree (&t,
8888 for_each_template_parm_r,
8889 &pfd,
8890 pfd.visited);
8891
8892 /* Clean up. */
8893 if (!visited)
8894 {
8895 delete pfd.visited;
8896 pfd.visited = 0;
8897 }
8898
8899 return result;
8900 }
8901
8902 /* Returns true if T depends on any template parameter. */
8903
8904 int
8905 uses_template_parms (tree t)
8906 {
8907 if (t == NULL_TREE)
8908 return false;
8909
8910 bool dependent_p;
8911 int saved_processing_template_decl;
8912
8913 saved_processing_template_decl = processing_template_decl;
8914 if (!saved_processing_template_decl)
8915 processing_template_decl = 1;
8916 if (TYPE_P (t))
8917 dependent_p = dependent_type_p (t);
8918 else if (TREE_CODE (t) == TREE_VEC)
8919 dependent_p = any_dependent_template_arguments_p (t);
8920 else if (TREE_CODE (t) == TREE_LIST)
8921 dependent_p = (uses_template_parms (TREE_VALUE (t))
8922 || uses_template_parms (TREE_CHAIN (t)));
8923 else if (TREE_CODE (t) == TYPE_DECL)
8924 dependent_p = dependent_type_p (TREE_TYPE (t));
8925 else if (DECL_P (t)
8926 || EXPR_P (t)
8927 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8928 || TREE_CODE (t) == OVERLOAD
8929 || BASELINK_P (t)
8930 || identifier_p (t)
8931 || TREE_CODE (t) == TRAIT_EXPR
8932 || TREE_CODE (t) == CONSTRUCTOR
8933 || CONSTANT_CLASS_P (t))
8934 dependent_p = (type_dependent_expression_p (t)
8935 || value_dependent_expression_p (t));
8936 else
8937 {
8938 gcc_assert (t == error_mark_node);
8939 dependent_p = false;
8940 }
8941
8942 processing_template_decl = saved_processing_template_decl;
8943
8944 return dependent_p;
8945 }
8946
8947 /* Returns true iff current_function_decl is an incompletely instantiated
8948 template. Useful instead of processing_template_decl because the latter
8949 is set to 0 during instantiate_non_dependent_expr. */
8950
8951 bool
8952 in_template_function (void)
8953 {
8954 tree fn = current_function_decl;
8955 bool ret;
8956 ++processing_template_decl;
8957 ret = (fn && DECL_LANG_SPECIFIC (fn)
8958 && DECL_TEMPLATE_INFO (fn)
8959 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8960 --processing_template_decl;
8961 return ret;
8962 }
8963
8964 /* Returns true if T depends on any template parameter with level LEVEL. */
8965
8966 bool
8967 uses_template_parms_level (tree t, int level)
8968 {
8969 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8970 /*include_nondeduced_p=*/true);
8971 }
8972
8973 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8974 ill-formed translation unit, i.e. a variable or function that isn't
8975 usable in a constant expression. */
8976
8977 static inline bool
8978 neglectable_inst_p (tree d)
8979 {
8980 return (DECL_P (d)
8981 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8982 : decl_maybe_constant_var_p (d)));
8983 }
8984
8985 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8986 neglectable and instantiated from within an erroneous instantiation. */
8987
8988 static bool
8989 limit_bad_template_recursion (tree decl)
8990 {
8991 struct tinst_level *lev = current_tinst_level;
8992 int errs = errorcount + sorrycount;
8993 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8994 return false;
8995
8996 for (; lev; lev = lev->next)
8997 if (neglectable_inst_p (lev->decl))
8998 break;
8999
9000 return (lev && errs > lev->errors);
9001 }
9002
9003 static int tinst_depth;
9004 extern int max_tinst_depth;
9005 int depth_reached;
9006
9007 static GTY(()) struct tinst_level *last_error_tinst_level;
9008
9009 /* We're starting to instantiate D; record the template instantiation context
9010 for diagnostics and to restore it later. */
9011
9012 bool
9013 push_tinst_level (tree d)
9014 {
9015 return push_tinst_level_loc (d, input_location);
9016 }
9017
9018 /* We're starting to instantiate D; record the template instantiation context
9019 at LOC for diagnostics and to restore it later. */
9020
9021 bool
9022 push_tinst_level_loc (tree d, location_t loc)
9023 {
9024 struct tinst_level *new_level;
9025
9026 if (tinst_depth >= max_tinst_depth)
9027 {
9028 fatal_error (input_location,
9029 "template instantiation depth exceeds maximum of %d"
9030 " (use -ftemplate-depth= to increase the maximum)",
9031 max_tinst_depth);
9032 return false;
9033 }
9034
9035 /* If the current instantiation caused problems, don't let it instantiate
9036 anything else. Do allow deduction substitution and decls usable in
9037 constant expressions. */
9038 if (limit_bad_template_recursion (d))
9039 return false;
9040
9041 new_level = ggc_alloc<tinst_level> ();
9042 new_level->decl = d;
9043 new_level->locus = loc;
9044 new_level->errors = errorcount+sorrycount;
9045 new_level->in_system_header_p = in_system_header_at (input_location);
9046 new_level->next = current_tinst_level;
9047 current_tinst_level = new_level;
9048
9049 ++tinst_depth;
9050 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9051 depth_reached = tinst_depth;
9052
9053 return true;
9054 }
9055
9056 /* We're done instantiating this template; return to the instantiation
9057 context. */
9058
9059 void
9060 pop_tinst_level (void)
9061 {
9062 /* Restore the filename and line number stashed away when we started
9063 this instantiation. */
9064 input_location = current_tinst_level->locus;
9065 current_tinst_level = current_tinst_level->next;
9066 --tinst_depth;
9067 }
9068
9069 /* We're instantiating a deferred template; restore the template
9070 instantiation context in which the instantiation was requested, which
9071 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9072
9073 static tree
9074 reopen_tinst_level (struct tinst_level *level)
9075 {
9076 struct tinst_level *t;
9077
9078 tinst_depth = 0;
9079 for (t = level; t; t = t->next)
9080 ++tinst_depth;
9081
9082 current_tinst_level = level;
9083 pop_tinst_level ();
9084 if (current_tinst_level)
9085 current_tinst_level->errors = errorcount+sorrycount;
9086 return level->decl;
9087 }
9088
9089 /* Returns the TINST_LEVEL which gives the original instantiation
9090 context. */
9091
9092 struct tinst_level *
9093 outermost_tinst_level (void)
9094 {
9095 struct tinst_level *level = current_tinst_level;
9096 if (level)
9097 while (level->next)
9098 level = level->next;
9099 return level;
9100 }
9101
9102 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9103 vector of template arguments, as for tsubst.
9104
9105 Returns an appropriate tsubst'd friend declaration. */
9106
9107 static tree
9108 tsubst_friend_function (tree decl, tree args)
9109 {
9110 tree new_friend;
9111
9112 if (TREE_CODE (decl) == FUNCTION_DECL
9113 && DECL_TEMPLATE_INSTANTIATION (decl)
9114 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9115 /* This was a friend declared with an explicit template
9116 argument list, e.g.:
9117
9118 friend void f<>(T);
9119
9120 to indicate that f was a template instantiation, not a new
9121 function declaration. Now, we have to figure out what
9122 instantiation of what template. */
9123 {
9124 tree template_id, arglist, fns;
9125 tree new_args;
9126 tree tmpl;
9127 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9128
9129 /* Friend functions are looked up in the containing namespace scope.
9130 We must enter that scope, to avoid finding member functions of the
9131 current class with same name. */
9132 push_nested_namespace (ns);
9133 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9134 tf_warning_or_error, NULL_TREE,
9135 /*integral_constant_expression_p=*/false);
9136 pop_nested_namespace (ns);
9137 arglist = tsubst (DECL_TI_ARGS (decl), args,
9138 tf_warning_or_error, NULL_TREE);
9139 template_id = lookup_template_function (fns, arglist);
9140
9141 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9142 tmpl = determine_specialization (template_id, new_friend,
9143 &new_args,
9144 /*need_member_template=*/0,
9145 TREE_VEC_LENGTH (args),
9146 tsk_none);
9147 return instantiate_template (tmpl, new_args, tf_error);
9148 }
9149
9150 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9151
9152 /* The NEW_FRIEND will look like an instantiation, to the
9153 compiler, but is not an instantiation from the point of view of
9154 the language. For example, we might have had:
9155
9156 template <class T> struct S {
9157 template <class U> friend void f(T, U);
9158 };
9159
9160 Then, in S<int>, template <class U> void f(int, U) is not an
9161 instantiation of anything. */
9162 if (new_friend == error_mark_node)
9163 return error_mark_node;
9164
9165 DECL_USE_TEMPLATE (new_friend) = 0;
9166 if (TREE_CODE (decl) == TEMPLATE_DECL)
9167 {
9168 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9169 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9170 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9171 }
9172
9173 /* The mangled name for the NEW_FRIEND is incorrect. The function
9174 is not a template instantiation and should not be mangled like
9175 one. Therefore, we forget the mangling here; we'll recompute it
9176 later if we need it. */
9177 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9178 {
9179 SET_DECL_RTL (new_friend, NULL);
9180 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9181 }
9182
9183 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9184 {
9185 tree old_decl;
9186 tree new_friend_template_info;
9187 tree new_friend_result_template_info;
9188 tree ns;
9189 int new_friend_is_defn;
9190
9191 /* We must save some information from NEW_FRIEND before calling
9192 duplicate decls since that function will free NEW_FRIEND if
9193 possible. */
9194 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9195 new_friend_is_defn =
9196 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9197 (template_for_substitution (new_friend)))
9198 != NULL_TREE);
9199 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9200 {
9201 /* This declaration is a `primary' template. */
9202 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9203
9204 new_friend_result_template_info
9205 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9206 }
9207 else
9208 new_friend_result_template_info = NULL_TREE;
9209
9210 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9211 if (new_friend_is_defn)
9212 DECL_INITIAL (new_friend) = error_mark_node;
9213
9214 /* Inside pushdecl_namespace_level, we will push into the
9215 current namespace. However, the friend function should go
9216 into the namespace of the template. */
9217 ns = decl_namespace_context (new_friend);
9218 push_nested_namespace (ns);
9219 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9220 pop_nested_namespace (ns);
9221
9222 if (old_decl == error_mark_node)
9223 return error_mark_node;
9224
9225 if (old_decl != new_friend)
9226 {
9227 /* This new friend declaration matched an existing
9228 declaration. For example, given:
9229
9230 template <class T> void f(T);
9231 template <class U> class C {
9232 template <class T> friend void f(T) {}
9233 };
9234
9235 the friend declaration actually provides the definition
9236 of `f', once C has been instantiated for some type. So,
9237 old_decl will be the out-of-class template declaration,
9238 while new_friend is the in-class definition.
9239
9240 But, if `f' was called before this point, the
9241 instantiation of `f' will have DECL_TI_ARGS corresponding
9242 to `T' but not to `U', references to which might appear
9243 in the definition of `f'. Previously, the most general
9244 template for an instantiation of `f' was the out-of-class
9245 version; now it is the in-class version. Therefore, we
9246 run through all specialization of `f', adding to their
9247 DECL_TI_ARGS appropriately. In particular, they need a
9248 new set of outer arguments, corresponding to the
9249 arguments for this class instantiation.
9250
9251 The same situation can arise with something like this:
9252
9253 friend void f(int);
9254 template <class T> class C {
9255 friend void f(T) {}
9256 };
9257
9258 when `C<int>' is instantiated. Now, `f(int)' is defined
9259 in the class. */
9260
9261 if (!new_friend_is_defn)
9262 /* On the other hand, if the in-class declaration does
9263 *not* provide a definition, then we don't want to alter
9264 existing definitions. We can just leave everything
9265 alone. */
9266 ;
9267 else
9268 {
9269 tree new_template = TI_TEMPLATE (new_friend_template_info);
9270 tree new_args = TI_ARGS (new_friend_template_info);
9271
9272 /* Overwrite whatever template info was there before, if
9273 any, with the new template information pertaining to
9274 the declaration. */
9275 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9276
9277 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9278 {
9279 /* We should have called reregister_specialization in
9280 duplicate_decls. */
9281 gcc_assert (retrieve_specialization (new_template,
9282 new_args, 0)
9283 == old_decl);
9284
9285 /* Instantiate it if the global has already been used. */
9286 if (DECL_ODR_USED (old_decl))
9287 instantiate_decl (old_decl, /*defer_ok=*/true,
9288 /*expl_inst_class_mem_p=*/false);
9289 }
9290 else
9291 {
9292 tree t;
9293
9294 /* Indicate that the old function template is a partial
9295 instantiation. */
9296 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9297 = new_friend_result_template_info;
9298
9299 gcc_assert (new_template
9300 == most_general_template (new_template));
9301 gcc_assert (new_template != old_decl);
9302
9303 /* Reassign any specializations already in the hash table
9304 to the new more general template, and add the
9305 additional template args. */
9306 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9307 t != NULL_TREE;
9308 t = TREE_CHAIN (t))
9309 {
9310 tree spec = TREE_VALUE (t);
9311 spec_entry elt;
9312
9313 elt.tmpl = old_decl;
9314 elt.args = DECL_TI_ARGS (spec);
9315 elt.spec = NULL_TREE;
9316
9317 decl_specializations->remove_elt (&elt);
9318
9319 DECL_TI_ARGS (spec)
9320 = add_outermost_template_args (new_args,
9321 DECL_TI_ARGS (spec));
9322
9323 register_specialization
9324 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9325
9326 }
9327 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9328 }
9329 }
9330
9331 /* The information from NEW_FRIEND has been merged into OLD_DECL
9332 by duplicate_decls. */
9333 new_friend = old_decl;
9334 }
9335 }
9336 else
9337 {
9338 tree context = DECL_CONTEXT (new_friend);
9339 bool dependent_p;
9340
9341 /* In the code
9342 template <class T> class C {
9343 template <class U> friend void C1<U>::f (); // case 1
9344 friend void C2<T>::f (); // case 2
9345 };
9346 we only need to make sure CONTEXT is a complete type for
9347 case 2. To distinguish between the two cases, we note that
9348 CONTEXT of case 1 remains dependent type after tsubst while
9349 this isn't true for case 2. */
9350 ++processing_template_decl;
9351 dependent_p = dependent_type_p (context);
9352 --processing_template_decl;
9353
9354 if (!dependent_p
9355 && !complete_type_or_else (context, NULL_TREE))
9356 return error_mark_node;
9357
9358 if (COMPLETE_TYPE_P (context))
9359 {
9360 tree fn = new_friend;
9361 /* do_friend adds the TEMPLATE_DECL for any member friend
9362 template even if it isn't a member template, i.e.
9363 template <class T> friend A<T>::f();
9364 Look through it in that case. */
9365 if (TREE_CODE (fn) == TEMPLATE_DECL
9366 && !PRIMARY_TEMPLATE_P (fn))
9367 fn = DECL_TEMPLATE_RESULT (fn);
9368 /* Check to see that the declaration is really present, and,
9369 possibly obtain an improved declaration. */
9370 fn = check_classfn (context, fn, NULL_TREE);
9371
9372 if (fn)
9373 new_friend = fn;
9374 }
9375 }
9376
9377 return new_friend;
9378 }
9379
9380 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9381 template arguments, as for tsubst.
9382
9383 Returns an appropriate tsubst'd friend type or error_mark_node on
9384 failure. */
9385
9386 static tree
9387 tsubst_friend_class (tree friend_tmpl, tree args)
9388 {
9389 tree friend_type;
9390 tree tmpl;
9391 tree context;
9392
9393 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9394 {
9395 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9396 return TREE_TYPE (t);
9397 }
9398
9399 context = CP_DECL_CONTEXT (friend_tmpl);
9400
9401 if (context != global_namespace)
9402 {
9403 if (TREE_CODE (context) == NAMESPACE_DECL)
9404 push_nested_namespace (context);
9405 else
9406 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9407 }
9408
9409 /* Look for a class template declaration. We look for hidden names
9410 because two friend declarations of the same template are the
9411 same. For example, in:
9412
9413 struct A {
9414 template <typename> friend class F;
9415 };
9416 template <typename> struct B {
9417 template <typename> friend class F;
9418 };
9419
9420 both F templates are the same. */
9421 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9422 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9423
9424 /* But, if we don't find one, it might be because we're in a
9425 situation like this:
9426
9427 template <class T>
9428 struct S {
9429 template <class U>
9430 friend struct S;
9431 };
9432
9433 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9434 for `S<int>', not the TEMPLATE_DECL. */
9435 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9436 {
9437 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9438 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9439 }
9440
9441 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9442 {
9443 /* The friend template has already been declared. Just
9444 check to see that the declarations match, and install any new
9445 default parameters. We must tsubst the default parameters,
9446 of course. We only need the innermost template parameters
9447 because that is all that redeclare_class_template will look
9448 at. */
9449 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9450 > TMPL_ARGS_DEPTH (args))
9451 {
9452 tree parms;
9453 location_t saved_input_location;
9454 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9455 args, tf_warning_or_error);
9456
9457 saved_input_location = input_location;
9458 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9459 tree cons = get_constraints (tmpl);
9460 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9461 input_location = saved_input_location;
9462
9463 }
9464
9465 friend_type = TREE_TYPE (tmpl);
9466 }
9467 else
9468 {
9469 /* The friend template has not already been declared. In this
9470 case, the instantiation of the template class will cause the
9471 injection of this template into the global scope. */
9472 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9473 if (tmpl == error_mark_node)
9474 return error_mark_node;
9475
9476 /* The new TMPL is not an instantiation of anything, so we
9477 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9478 the new type because that is supposed to be the corresponding
9479 template decl, i.e., TMPL. */
9480 DECL_USE_TEMPLATE (tmpl) = 0;
9481 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9482 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9483 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9484 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9485
9486 /* Inject this template into the global scope. */
9487 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9488 }
9489
9490 if (context != global_namespace)
9491 {
9492 if (TREE_CODE (context) == NAMESPACE_DECL)
9493 pop_nested_namespace (context);
9494 else
9495 pop_nested_class ();
9496 }
9497
9498 return friend_type;
9499 }
9500
9501 /* Returns zero if TYPE cannot be completed later due to circularity.
9502 Otherwise returns one. */
9503
9504 static int
9505 can_complete_type_without_circularity (tree type)
9506 {
9507 if (type == NULL_TREE || type == error_mark_node)
9508 return 0;
9509 else if (COMPLETE_TYPE_P (type))
9510 return 1;
9511 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9512 return can_complete_type_without_circularity (TREE_TYPE (type));
9513 else if (CLASS_TYPE_P (type)
9514 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9515 return 0;
9516 else
9517 return 1;
9518 }
9519
9520 static tree tsubst_omp_clauses (tree, bool, bool, tree, tsubst_flags_t, tree);
9521
9522 /* Apply any attributes which had to be deferred until instantiation
9523 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9524 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9525
9526 static void
9527 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9528 tree args, tsubst_flags_t complain, tree in_decl)
9529 {
9530 tree last_dep = NULL_TREE;
9531 tree t;
9532 tree *p;
9533
9534 for (t = attributes; t; t = TREE_CHAIN (t))
9535 if (ATTR_IS_DEPENDENT (t))
9536 {
9537 last_dep = t;
9538 attributes = copy_list (attributes);
9539 break;
9540 }
9541
9542 if (DECL_P (*decl_p))
9543 {
9544 if (TREE_TYPE (*decl_p) == error_mark_node)
9545 return;
9546 p = &DECL_ATTRIBUTES (*decl_p);
9547 }
9548 else
9549 p = &TYPE_ATTRIBUTES (*decl_p);
9550
9551 if (last_dep)
9552 {
9553 tree late_attrs = NULL_TREE;
9554 tree *q = &late_attrs;
9555
9556 for (*p = attributes; *p; )
9557 {
9558 t = *p;
9559 if (ATTR_IS_DEPENDENT (t))
9560 {
9561 *p = TREE_CHAIN (t);
9562 TREE_CHAIN (t) = NULL_TREE;
9563 if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9564 && is_attribute_p ("omp declare simd",
9565 get_attribute_name (t))
9566 && TREE_VALUE (t))
9567 {
9568 tree clauses = TREE_VALUE (TREE_VALUE (t));
9569 clauses = tsubst_omp_clauses (clauses, true, false, args,
9570 complain, in_decl);
9571 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9572 clauses = finish_omp_clauses (clauses, false, true);
9573 tree parms = DECL_ARGUMENTS (*decl_p);
9574 clauses
9575 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9576 if (clauses)
9577 TREE_VALUE (TREE_VALUE (t)) = clauses;
9578 else
9579 TREE_VALUE (t) = NULL_TREE;
9580 }
9581 /* If the first attribute argument is an identifier, don't
9582 pass it through tsubst. Attributes like mode, format,
9583 cleanup and several target specific attributes expect it
9584 unmodified. */
9585 else if (attribute_takes_identifier_p (get_attribute_name (t))
9586 && TREE_VALUE (t))
9587 {
9588 tree chain
9589 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9590 in_decl,
9591 /*integral_constant_expression_p=*/false);
9592 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9593 TREE_VALUE (t)
9594 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9595 chain);
9596 }
9597 else if (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t)))
9598 {
9599 /* An attribute pack expansion. */
9600 tree purp = TREE_PURPOSE (t);
9601 tree pack = (tsubst_pack_expansion
9602 (TREE_VALUE (t), args, complain, in_decl));
9603 int len = TREE_VEC_LENGTH (pack);
9604 for (int i = 0; i < len; ++i)
9605 {
9606 tree elt = TREE_VEC_ELT (pack, i);
9607 *q = build_tree_list (purp, elt);
9608 q = &TREE_CHAIN (*q);
9609 }
9610 continue;
9611 }
9612 else
9613 TREE_VALUE (t)
9614 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9615 /*integral_constant_expression_p=*/false);
9616 *q = t;
9617 q = &TREE_CHAIN (t);
9618 }
9619 else
9620 p = &TREE_CHAIN (t);
9621 }
9622
9623 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9624 }
9625 }
9626
9627 /* Perform (or defer) access check for typedefs that were referenced
9628 from within the template TMPL code.
9629 This is a subroutine of instantiate_decl and instantiate_class_template.
9630 TMPL is the template to consider and TARGS is the list of arguments of
9631 that template. */
9632
9633 static void
9634 perform_typedefs_access_check (tree tmpl, tree targs)
9635 {
9636 location_t saved_location;
9637 unsigned i;
9638 qualified_typedef_usage_t *iter;
9639
9640 if (!tmpl
9641 || (!CLASS_TYPE_P (tmpl)
9642 && TREE_CODE (tmpl) != FUNCTION_DECL))
9643 return;
9644
9645 saved_location = input_location;
9646 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9647 {
9648 tree type_decl = iter->typedef_decl;
9649 tree type_scope = iter->context;
9650
9651 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9652 continue;
9653
9654 if (uses_template_parms (type_decl))
9655 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9656 if (uses_template_parms (type_scope))
9657 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9658
9659 /* Make access check error messages point to the location
9660 of the use of the typedef. */
9661 input_location = iter->locus;
9662 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9663 type_decl, type_decl,
9664 tf_warning_or_error);
9665 }
9666 input_location = saved_location;
9667 }
9668
9669 static tree
9670 instantiate_class_template_1 (tree type)
9671 {
9672 tree templ, args, pattern, t, member;
9673 tree typedecl;
9674 tree pbinfo;
9675 tree base_list;
9676 unsigned int saved_maximum_field_alignment;
9677 tree fn_context;
9678
9679 if (type == error_mark_node)
9680 return error_mark_node;
9681
9682 if (COMPLETE_OR_OPEN_TYPE_P (type)
9683 || uses_template_parms (type))
9684 return type;
9685
9686 /* Figure out which template is being instantiated. */
9687 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9688 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9689
9690 /* Determine what specialization of the original template to
9691 instantiate. */
9692 t = most_specialized_partial_spec (type, tf_warning_or_error);
9693 if (t == error_mark_node)
9694 {
9695 TYPE_BEING_DEFINED (type) = 1;
9696 return error_mark_node;
9697 }
9698 else if (t)
9699 {
9700 /* This TYPE is actually an instantiation of a partial
9701 specialization. We replace the innermost set of ARGS with
9702 the arguments appropriate for substitution. For example,
9703 given:
9704
9705 template <class T> struct S {};
9706 template <class T> struct S<T*> {};
9707
9708 and supposing that we are instantiating S<int*>, ARGS will
9709 presently be {int*} -- but we need {int}. */
9710 pattern = TREE_TYPE (t);
9711 args = TREE_PURPOSE (t);
9712 }
9713 else
9714 {
9715 pattern = TREE_TYPE (templ);
9716 args = CLASSTYPE_TI_ARGS (type);
9717 }
9718
9719 /* If the template we're instantiating is incomplete, then clearly
9720 there's nothing we can do. */
9721 if (!COMPLETE_TYPE_P (pattern))
9722 return type;
9723
9724 /* If we've recursively instantiated too many templates, stop. */
9725 if (! push_tinst_level (type))
9726 return type;
9727
9728 /* Now we're really doing the instantiation. Mark the type as in
9729 the process of being defined. */
9730 TYPE_BEING_DEFINED (type) = 1;
9731
9732 /* We may be in the middle of deferred access check. Disable
9733 it now. */
9734 push_deferring_access_checks (dk_no_deferred);
9735
9736 int saved_unevaluated_operand = cp_unevaluated_operand;
9737 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9738
9739 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9740 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9741 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9742 fn_context = error_mark_node;
9743 if (!fn_context)
9744 push_to_top_level ();
9745 else
9746 {
9747 cp_unevaluated_operand = 0;
9748 c_inhibit_evaluation_warnings = 0;
9749 }
9750 /* Use #pragma pack from the template context. */
9751 saved_maximum_field_alignment = maximum_field_alignment;
9752 maximum_field_alignment = TYPE_PRECISION (pattern);
9753
9754 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9755
9756 /* Set the input location to the most specialized template definition.
9757 This is needed if tsubsting causes an error. */
9758 typedecl = TYPE_MAIN_DECL (pattern);
9759 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9760 DECL_SOURCE_LOCATION (typedecl);
9761
9762 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9763 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9764 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9765 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9766 if (ANON_AGGR_TYPE_P (pattern))
9767 SET_ANON_AGGR_TYPE_P (type);
9768 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9769 {
9770 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9771 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9772 /* Adjust visibility for template arguments. */
9773 determine_visibility (TYPE_MAIN_DECL (type));
9774 }
9775 if (CLASS_TYPE_P (type))
9776 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9777
9778 pbinfo = TYPE_BINFO (pattern);
9779
9780 /* We should never instantiate a nested class before its enclosing
9781 class; we need to look up the nested class by name before we can
9782 instantiate it, and that lookup should instantiate the enclosing
9783 class. */
9784 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9785 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9786
9787 base_list = NULL_TREE;
9788 if (BINFO_N_BASE_BINFOS (pbinfo))
9789 {
9790 tree pbase_binfo;
9791 tree pushed_scope;
9792 int i;
9793
9794 /* We must enter the scope containing the type, as that is where
9795 the accessibility of types named in dependent bases are
9796 looked up from. */
9797 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9798
9799 /* Substitute into each of the bases to determine the actual
9800 basetypes. */
9801 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9802 {
9803 tree base;
9804 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9805 tree expanded_bases = NULL_TREE;
9806 int idx, len = 1;
9807
9808 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9809 {
9810 expanded_bases =
9811 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9812 args, tf_error, NULL_TREE);
9813 if (expanded_bases == error_mark_node)
9814 continue;
9815
9816 len = TREE_VEC_LENGTH (expanded_bases);
9817 }
9818
9819 for (idx = 0; idx < len; idx++)
9820 {
9821 if (expanded_bases)
9822 /* Extract the already-expanded base class. */
9823 base = TREE_VEC_ELT (expanded_bases, idx);
9824 else
9825 /* Substitute to figure out the base class. */
9826 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9827 NULL_TREE);
9828
9829 if (base == error_mark_node)
9830 continue;
9831
9832 base_list = tree_cons (access, base, base_list);
9833 if (BINFO_VIRTUAL_P (pbase_binfo))
9834 TREE_TYPE (base_list) = integer_type_node;
9835 }
9836 }
9837
9838 /* The list is now in reverse order; correct that. */
9839 base_list = nreverse (base_list);
9840
9841 if (pushed_scope)
9842 pop_scope (pushed_scope);
9843 }
9844 /* Now call xref_basetypes to set up all the base-class
9845 information. */
9846 xref_basetypes (type, base_list);
9847
9848 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9849 (int) ATTR_FLAG_TYPE_IN_PLACE,
9850 args, tf_error, NULL_TREE);
9851 fixup_attribute_variants (type);
9852
9853 /* Now that our base classes are set up, enter the scope of the
9854 class, so that name lookups into base classes, etc. will work
9855 correctly. This is precisely analogous to what we do in
9856 begin_class_definition when defining an ordinary non-template
9857 class, except we also need to push the enclosing classes. */
9858 push_nested_class (type);
9859
9860 /* Now members are processed in the order of declaration. */
9861 for (member = CLASSTYPE_DECL_LIST (pattern);
9862 member; member = TREE_CHAIN (member))
9863 {
9864 tree t = TREE_VALUE (member);
9865
9866 if (TREE_PURPOSE (member))
9867 {
9868 if (TYPE_P (t))
9869 {
9870 /* Build new CLASSTYPE_NESTED_UTDS. */
9871
9872 tree newtag;
9873 bool class_template_p;
9874
9875 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9876 && TYPE_LANG_SPECIFIC (t)
9877 && CLASSTYPE_IS_TEMPLATE (t));
9878 /* If the member is a class template, then -- even after
9879 substitution -- there may be dependent types in the
9880 template argument list for the class. We increment
9881 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9882 that function will assume that no types are dependent
9883 when outside of a template. */
9884 if (class_template_p)
9885 ++processing_template_decl;
9886 newtag = tsubst (t, args, tf_error, NULL_TREE);
9887 if (class_template_p)
9888 --processing_template_decl;
9889 if (newtag == error_mark_node)
9890 continue;
9891
9892 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9893 {
9894 tree name = TYPE_IDENTIFIER (t);
9895
9896 if (class_template_p)
9897 /* Unfortunately, lookup_template_class sets
9898 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9899 instantiation (i.e., for the type of a member
9900 template class nested within a template class.)
9901 This behavior is required for
9902 maybe_process_partial_specialization to work
9903 correctly, but is not accurate in this case;
9904 the TAG is not an instantiation of anything.
9905 (The corresponding TEMPLATE_DECL is an
9906 instantiation, but the TYPE is not.) */
9907 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9908
9909 /* Now, we call pushtag to put this NEWTAG into the scope of
9910 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9911 pushtag calling push_template_decl. We don't have to do
9912 this for enums because it will already have been done in
9913 tsubst_enum. */
9914 if (name)
9915 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9916 pushtag (name, newtag, /*tag_scope=*/ts_current);
9917 }
9918 }
9919 else if (DECL_DECLARES_FUNCTION_P (t))
9920 {
9921 /* Build new TYPE_METHODS. */
9922 tree r;
9923
9924 if (TREE_CODE (t) == TEMPLATE_DECL)
9925 ++processing_template_decl;
9926 r = tsubst (t, args, tf_error, NULL_TREE);
9927 if (TREE_CODE (t) == TEMPLATE_DECL)
9928 --processing_template_decl;
9929 set_current_access_from_decl (r);
9930 finish_member_declaration (r);
9931 /* Instantiate members marked with attribute used. */
9932 if (r != error_mark_node && DECL_PRESERVE_P (r))
9933 mark_used (r);
9934 if (TREE_CODE (r) == FUNCTION_DECL
9935 && DECL_OMP_DECLARE_REDUCTION_P (r))
9936 cp_check_omp_declare_reduction (r);
9937 }
9938 else if (DECL_CLASS_TEMPLATE_P (t)
9939 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9940 /* A closure type for a lambda in a default argument for a
9941 member template. Ignore it; it will be instantiated with
9942 the default argument. */;
9943 else
9944 {
9945 /* Build new TYPE_FIELDS. */
9946 if (TREE_CODE (t) == STATIC_ASSERT)
9947 {
9948 tree condition;
9949
9950 ++c_inhibit_evaluation_warnings;
9951 condition =
9952 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9953 tf_warning_or_error, NULL_TREE,
9954 /*integral_constant_expression_p=*/true);
9955 --c_inhibit_evaluation_warnings;
9956
9957 finish_static_assert (condition,
9958 STATIC_ASSERT_MESSAGE (t),
9959 STATIC_ASSERT_SOURCE_LOCATION (t),
9960 /*member_p=*/true);
9961 }
9962 else if (TREE_CODE (t) != CONST_DECL)
9963 {
9964 tree r;
9965 tree vec = NULL_TREE;
9966 int len = 1;
9967
9968 /* The file and line for this declaration, to
9969 assist in error message reporting. Since we
9970 called push_tinst_level above, we don't need to
9971 restore these. */
9972 input_location = DECL_SOURCE_LOCATION (t);
9973
9974 if (TREE_CODE (t) == TEMPLATE_DECL)
9975 ++processing_template_decl;
9976 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9977 if (TREE_CODE (t) == TEMPLATE_DECL)
9978 --processing_template_decl;
9979
9980 if (TREE_CODE (r) == TREE_VEC)
9981 {
9982 /* A capture pack became multiple fields. */
9983 vec = r;
9984 len = TREE_VEC_LENGTH (vec);
9985 }
9986
9987 for (int i = 0; i < len; ++i)
9988 {
9989 if (vec)
9990 r = TREE_VEC_ELT (vec, i);
9991 if (VAR_P (r))
9992 {
9993 /* In [temp.inst]:
9994
9995 [t]he initialization (and any associated
9996 side-effects) of a static data member does
9997 not occur unless the static data member is
9998 itself used in a way that requires the
9999 definition of the static data member to
10000 exist.
10001
10002 Therefore, we do not substitute into the
10003 initialized for the static data member here. */
10004 finish_static_data_member_decl
10005 (r,
10006 /*init=*/NULL_TREE,
10007 /*init_const_expr_p=*/false,
10008 /*asmspec_tree=*/NULL_TREE,
10009 /*flags=*/0);
10010 /* Instantiate members marked with attribute used. */
10011 if (r != error_mark_node && DECL_PRESERVE_P (r))
10012 mark_used (r);
10013 }
10014 else if (TREE_CODE (r) == FIELD_DECL)
10015 {
10016 /* Determine whether R has a valid type and can be
10017 completed later. If R is invalid, then its type
10018 is replaced by error_mark_node. */
10019 tree rtype = TREE_TYPE (r);
10020 if (can_complete_type_without_circularity (rtype))
10021 complete_type (rtype);
10022
10023 if (!COMPLETE_TYPE_P (rtype))
10024 {
10025 cxx_incomplete_type_error (r, rtype);
10026 TREE_TYPE (r) = error_mark_node;
10027 }
10028 }
10029
10030 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10031 such a thing will already have been added to the field
10032 list by tsubst_enum in finish_member_declaration in the
10033 CLASSTYPE_NESTED_UTDS case above. */
10034 if (!(TREE_CODE (r) == TYPE_DECL
10035 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10036 && DECL_ARTIFICIAL (r)))
10037 {
10038 set_current_access_from_decl (r);
10039 finish_member_declaration (r);
10040 }
10041 }
10042 }
10043 }
10044 }
10045 else
10046 {
10047 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10048 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10049 {
10050 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10051
10052 tree friend_type = t;
10053 bool adjust_processing_template_decl = false;
10054
10055 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10056 {
10057 /* template <class T> friend class C; */
10058 friend_type = tsubst_friend_class (friend_type, args);
10059 adjust_processing_template_decl = true;
10060 }
10061 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10062 {
10063 /* template <class T> friend class C::D; */
10064 friend_type = tsubst (friend_type, args,
10065 tf_warning_or_error, NULL_TREE);
10066 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10067 friend_type = TREE_TYPE (friend_type);
10068 adjust_processing_template_decl = true;
10069 }
10070 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10071 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10072 {
10073 /* This could be either
10074
10075 friend class T::C;
10076
10077 when dependent_type_p is false or
10078
10079 template <class U> friend class T::C;
10080
10081 otherwise. */
10082 friend_type = tsubst (friend_type, args,
10083 tf_warning_or_error, NULL_TREE);
10084 /* Bump processing_template_decl for correct
10085 dependent_type_p calculation. */
10086 ++processing_template_decl;
10087 if (dependent_type_p (friend_type))
10088 adjust_processing_template_decl = true;
10089 --processing_template_decl;
10090 }
10091 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10092 && hidden_name_p (TYPE_NAME (friend_type)))
10093 {
10094 /* friend class C;
10095
10096 where C hasn't been declared yet. Let's lookup name
10097 from namespace scope directly, bypassing any name that
10098 come from dependent base class. */
10099 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10100
10101 /* The call to xref_tag_from_type does injection for friend
10102 classes. */
10103 push_nested_namespace (ns);
10104 friend_type =
10105 xref_tag_from_type (friend_type, NULL_TREE,
10106 /*tag_scope=*/ts_current);
10107 pop_nested_namespace (ns);
10108 }
10109 else if (uses_template_parms (friend_type))
10110 /* friend class C<T>; */
10111 friend_type = tsubst (friend_type, args,
10112 tf_warning_or_error, NULL_TREE);
10113 /* Otherwise it's
10114
10115 friend class C;
10116
10117 where C is already declared or
10118
10119 friend class C<int>;
10120
10121 We don't have to do anything in these cases. */
10122
10123 if (adjust_processing_template_decl)
10124 /* Trick make_friend_class into realizing that the friend
10125 we're adding is a template, not an ordinary class. It's
10126 important that we use make_friend_class since it will
10127 perform some error-checking and output cross-reference
10128 information. */
10129 ++processing_template_decl;
10130
10131 if (friend_type != error_mark_node)
10132 make_friend_class (type, friend_type, /*complain=*/false);
10133
10134 if (adjust_processing_template_decl)
10135 --processing_template_decl;
10136 }
10137 else
10138 {
10139 /* Build new DECL_FRIENDLIST. */
10140 tree r;
10141
10142 /* The file and line for this declaration, to
10143 assist in error message reporting. Since we
10144 called push_tinst_level above, we don't need to
10145 restore these. */
10146 input_location = DECL_SOURCE_LOCATION (t);
10147
10148 if (TREE_CODE (t) == TEMPLATE_DECL)
10149 {
10150 ++processing_template_decl;
10151 push_deferring_access_checks (dk_no_check);
10152 }
10153
10154 r = tsubst_friend_function (t, args);
10155 add_friend (type, r, /*complain=*/false);
10156 if (TREE_CODE (t) == TEMPLATE_DECL)
10157 {
10158 pop_deferring_access_checks ();
10159 --processing_template_decl;
10160 }
10161 }
10162 }
10163 }
10164
10165 if (fn_context)
10166 {
10167 /* Restore these before substituting into the lambda capture
10168 initializers. */
10169 cp_unevaluated_operand = saved_unevaluated_operand;
10170 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10171 }
10172
10173 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10174 {
10175 tree decl = lambda_function (type);
10176 if (decl)
10177 {
10178 if (!DECL_TEMPLATE_INFO (decl)
10179 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10180 {
10181 /* Set function_depth to avoid garbage collection. */
10182 ++function_depth;
10183 instantiate_decl (decl, false, false);
10184 --function_depth;
10185 }
10186
10187 /* We need to instantiate the capture list from the template
10188 after we've instantiated the closure members, but before we
10189 consider adding the conversion op. Also keep any captures
10190 that may have been added during instantiation of the op(). */
10191 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10192 tree tmpl_cap
10193 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10194 args, tf_warning_or_error, NULL_TREE,
10195 false, false);
10196
10197 LAMBDA_EXPR_CAPTURE_LIST (expr)
10198 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10199
10200 maybe_add_lambda_conv_op (type);
10201 }
10202 else
10203 gcc_assert (errorcount);
10204 }
10205
10206 /* Set the file and line number information to whatever is given for
10207 the class itself. This puts error messages involving generated
10208 implicit functions at a predictable point, and the same point
10209 that would be used for non-template classes. */
10210 input_location = DECL_SOURCE_LOCATION (typedecl);
10211
10212 unreverse_member_declarations (type);
10213 finish_struct_1 (type);
10214 TYPE_BEING_DEFINED (type) = 0;
10215
10216 /* We don't instantiate default arguments for member functions. 14.7.1:
10217
10218 The implicit instantiation of a class template specialization causes
10219 the implicit instantiation of the declarations, but not of the
10220 definitions or default arguments, of the class member functions,
10221 member classes, static data members and member templates.... */
10222
10223 /* Some typedefs referenced from within the template code need to be access
10224 checked at template instantiation time, i.e now. These types were
10225 added to the template at parsing time. Let's get those and perform
10226 the access checks then. */
10227 perform_typedefs_access_check (pattern, args);
10228 perform_deferred_access_checks (tf_warning_or_error);
10229 pop_nested_class ();
10230 maximum_field_alignment = saved_maximum_field_alignment;
10231 if (!fn_context)
10232 pop_from_top_level ();
10233 pop_deferring_access_checks ();
10234 pop_tinst_level ();
10235
10236 /* The vtable for a template class can be emitted in any translation
10237 unit in which the class is instantiated. When there is no key
10238 method, however, finish_struct_1 will already have added TYPE to
10239 the keyed_classes list. */
10240 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10241 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10242
10243 return type;
10244 }
10245
10246 /* Wrapper for instantiate_class_template_1. */
10247
10248 tree
10249 instantiate_class_template (tree type)
10250 {
10251 tree ret;
10252 timevar_push (TV_TEMPLATE_INST);
10253 ret = instantiate_class_template_1 (type);
10254 timevar_pop (TV_TEMPLATE_INST);
10255 return ret;
10256 }
10257
10258 static tree
10259 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10260 {
10261 tree r;
10262
10263 if (!t)
10264 r = t;
10265 else if (TYPE_P (t))
10266 r = tsubst (t, args, complain, in_decl);
10267 else
10268 {
10269 if (!(complain & tf_warning))
10270 ++c_inhibit_evaluation_warnings;
10271 r = tsubst_expr (t, args, complain, in_decl,
10272 /*integral_constant_expression_p=*/true);
10273 if (!(complain & tf_warning))
10274 --c_inhibit_evaluation_warnings;
10275 }
10276 return r;
10277 }
10278
10279 /* Given a function parameter pack TMPL_PARM and some function parameters
10280 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10281 and set *SPEC_P to point at the next point in the list. */
10282
10283 tree
10284 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10285 {
10286 /* Collect all of the extra "packed" parameters into an
10287 argument pack. */
10288 tree parmvec;
10289 tree parmtypevec;
10290 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10291 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10292 tree spec_parm = *spec_p;
10293 int i, len;
10294
10295 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10296 if (tmpl_parm
10297 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10298 break;
10299
10300 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10301 parmvec = make_tree_vec (len);
10302 parmtypevec = make_tree_vec (len);
10303 spec_parm = *spec_p;
10304 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10305 {
10306 TREE_VEC_ELT (parmvec, i) = spec_parm;
10307 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10308 }
10309
10310 /* Build the argument packs. */
10311 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10312 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10313 TREE_TYPE (argpack) = argtypepack;
10314 *spec_p = spec_parm;
10315
10316 return argpack;
10317 }
10318
10319 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10320 NONTYPE_ARGUMENT_PACK. */
10321
10322 static tree
10323 make_fnparm_pack (tree spec_parm)
10324 {
10325 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10326 }
10327
10328 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10329 pack expansion with no extra args, 2 if it has extra args, or 0
10330 if it is not a pack expansion. */
10331
10332 static int
10333 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10334 {
10335 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10336 if (i >= TREE_VEC_LENGTH (vec))
10337 return 0;
10338 tree elt = TREE_VEC_ELT (vec, i);
10339 if (DECL_P (elt))
10340 /* A decl pack is itself an expansion. */
10341 elt = TREE_TYPE (elt);
10342 if (!PACK_EXPANSION_P (elt))
10343 return 0;
10344 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10345 return 2;
10346 return 1;
10347 }
10348
10349
10350 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10351
10352 static tree
10353 make_argument_pack_select (tree arg_pack, unsigned index)
10354 {
10355 tree aps = make_node (ARGUMENT_PACK_SELECT);
10356
10357 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10358 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10359
10360 return aps;
10361 }
10362
10363 /* This is a subroutine of tsubst_pack_expansion.
10364
10365 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10366 mechanism to store the (non complete list of) arguments of the
10367 substitution and return a non substituted pack expansion, in order
10368 to wait for when we have enough arguments to really perform the
10369 substitution. */
10370
10371 static bool
10372 use_pack_expansion_extra_args_p (tree parm_packs,
10373 int arg_pack_len,
10374 bool has_empty_arg)
10375 {
10376 /* If one pack has an expansion and another pack has a normal
10377 argument or if one pack has an empty argument and an another
10378 one hasn't then tsubst_pack_expansion cannot perform the
10379 substitution and need to fall back on the
10380 PACK_EXPANSION_EXTRA mechanism. */
10381 if (parm_packs == NULL_TREE)
10382 return false;
10383 else if (has_empty_arg)
10384 return true;
10385
10386 bool has_expansion_arg = false;
10387 for (int i = 0 ; i < arg_pack_len; ++i)
10388 {
10389 bool has_non_expansion_arg = false;
10390 for (tree parm_pack = parm_packs;
10391 parm_pack;
10392 parm_pack = TREE_CHAIN (parm_pack))
10393 {
10394 tree arg = TREE_VALUE (parm_pack);
10395
10396 int exp = argument_pack_element_is_expansion_p (arg, i);
10397 if (exp == 2)
10398 /* We can't substitute a pack expansion with extra args into
10399 our pattern. */
10400 return true;
10401 else if (exp)
10402 has_expansion_arg = true;
10403 else
10404 has_non_expansion_arg = true;
10405 }
10406
10407 if (has_expansion_arg && has_non_expansion_arg)
10408 return true;
10409 }
10410 return false;
10411 }
10412
10413 /* [temp.variadic]/6 says that:
10414
10415 The instantiation of a pack expansion [...]
10416 produces a list E1,E2, ..., En, where N is the number of elements
10417 in the pack expansion parameters.
10418
10419 This subroutine of tsubst_pack_expansion produces one of these Ei.
10420
10421 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10422 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10423 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10424 INDEX is the index 'i' of the element Ei to produce. ARGS,
10425 COMPLAIN, and IN_DECL are the same parameters as for the
10426 tsubst_pack_expansion function.
10427
10428 The function returns the resulting Ei upon successful completion,
10429 or error_mark_node.
10430
10431 Note that this function possibly modifies the ARGS parameter, so
10432 it's the responsibility of the caller to restore it. */
10433
10434 static tree
10435 gen_elem_of_pack_expansion_instantiation (tree pattern,
10436 tree parm_packs,
10437 unsigned index,
10438 tree args /* This parm gets
10439 modified. */,
10440 tsubst_flags_t complain,
10441 tree in_decl)
10442 {
10443 tree t;
10444 bool ith_elem_is_expansion = false;
10445
10446 /* For each parameter pack, change the substitution of the parameter
10447 pack to the ith argument in its argument pack, then expand the
10448 pattern. */
10449 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10450 {
10451 tree parm = TREE_PURPOSE (pack);
10452 tree arg_pack = TREE_VALUE (pack);
10453 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10454
10455 ith_elem_is_expansion |=
10456 argument_pack_element_is_expansion_p (arg_pack, index);
10457
10458 /* Select the Ith argument from the pack. */
10459 if (TREE_CODE (parm) == PARM_DECL
10460 || TREE_CODE (parm) == FIELD_DECL)
10461 {
10462 if (index == 0)
10463 {
10464 aps = make_argument_pack_select (arg_pack, index);
10465 if (!mark_used (parm, complain) && !(complain & tf_error))
10466 return error_mark_node;
10467 register_local_specialization (aps, parm);
10468 }
10469 else
10470 aps = retrieve_local_specialization (parm);
10471 }
10472 else
10473 {
10474 int idx, level;
10475 template_parm_level_and_index (parm, &level, &idx);
10476
10477 if (index == 0)
10478 {
10479 aps = make_argument_pack_select (arg_pack, index);
10480 /* Update the corresponding argument. */
10481 TMPL_ARG (args, level, idx) = aps;
10482 }
10483 else
10484 /* Re-use the ARGUMENT_PACK_SELECT. */
10485 aps = TMPL_ARG (args, level, idx);
10486 }
10487 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10488 }
10489
10490 /* Substitute into the PATTERN with the (possibly altered)
10491 arguments. */
10492 if (pattern == in_decl)
10493 /* Expanding a fixed parameter pack from
10494 coerce_template_parameter_pack. */
10495 t = tsubst_decl (pattern, args, complain);
10496 else if (pattern == error_mark_node)
10497 t = error_mark_node;
10498 else if (constraint_p (pattern))
10499 {
10500 if (processing_template_decl)
10501 t = tsubst_constraint (pattern, args, complain, in_decl);
10502 else
10503 t = (constraints_satisfied_p (pattern, args)
10504 ? boolean_true_node : boolean_false_node);
10505 }
10506 else if (!TYPE_P (pattern))
10507 t = tsubst_expr (pattern, args, complain, in_decl,
10508 /*integral_constant_expression_p=*/false);
10509 else
10510 t = tsubst (pattern, args, complain, in_decl);
10511
10512 /* If the Ith argument pack element is a pack expansion, then
10513 the Ith element resulting from the substituting is going to
10514 be a pack expansion as well. */
10515 if (ith_elem_is_expansion)
10516 t = make_pack_expansion (t);
10517
10518 return t;
10519 }
10520
10521 /* When the unexpanded parameter pack in a fold expression expands to an empty
10522 sequence, the value of the expression is as follows; the program is
10523 ill-formed if the operator is not listed in this table.
10524
10525 * 1
10526 + 0
10527 & -1
10528 | 0
10529 && true
10530 || false
10531 , void() */
10532
10533 tree
10534 expand_empty_fold (tree t, tsubst_flags_t complain)
10535 {
10536 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10537 if (!FOLD_EXPR_MODIFY_P (t))
10538 switch (code)
10539 {
10540 case MULT_EXPR:
10541 return integer_one_node;
10542 case PLUS_EXPR:
10543 return integer_zero_node;
10544 case BIT_AND_EXPR:
10545 return integer_minus_one_node;
10546 case BIT_IOR_EXPR:
10547 return integer_zero_node;
10548 case TRUTH_ANDIF_EXPR:
10549 return boolean_true_node;
10550 case TRUTH_ORIF_EXPR:
10551 return boolean_false_node;
10552 case COMPOUND_EXPR:
10553 return void_node;
10554 default:
10555 break;
10556 }
10557
10558 if (complain & tf_error)
10559 error_at (location_of (t),
10560 "fold of empty expansion over %O", code);
10561 return error_mark_node;
10562 }
10563
10564 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10565 form an expression that combines the two terms using the
10566 operator of T. */
10567
10568 static tree
10569 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10570 {
10571 tree op = FOLD_EXPR_OP (t);
10572 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10573
10574 // Handle compound assignment operators.
10575 if (FOLD_EXPR_MODIFY_P (t))
10576 return build_x_modify_expr (input_location, left, code, right, complain);
10577
10578 switch (code)
10579 {
10580 case COMPOUND_EXPR:
10581 return build_x_compound_expr (input_location, left, right, complain);
10582 case DOTSTAR_EXPR:
10583 return build_m_component_ref (left, right, complain);
10584 default:
10585 return build_x_binary_op (input_location, code,
10586 left, TREE_CODE (left),
10587 right, TREE_CODE (right),
10588 /*overload=*/NULL,
10589 complain);
10590 }
10591 }
10592
10593 /* Substitute ARGS into the pack of a fold expression T. */
10594
10595 static inline tree
10596 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10597 {
10598 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10599 }
10600
10601 /* Substitute ARGS into the pack of a fold expression T. */
10602
10603 static inline tree
10604 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10605 {
10606 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10607 }
10608
10609 /* Expand a PACK of arguments into a grouped as left fold.
10610 Given a pack containing elements A0, A1, ..., An and an
10611 operator @, this builds the expression:
10612
10613 ((A0 @ A1) @ A2) ... @ An
10614
10615 Note that PACK must not be empty.
10616
10617 The operator is defined by the original fold expression T. */
10618
10619 static tree
10620 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10621 {
10622 tree left = TREE_VEC_ELT (pack, 0);
10623 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10624 {
10625 tree right = TREE_VEC_ELT (pack, i);
10626 left = fold_expression (t, left, right, complain);
10627 }
10628 return left;
10629 }
10630
10631 /* Substitute into a unary left fold expression. */
10632
10633 static tree
10634 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10635 tree in_decl)
10636 {
10637 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10638 if (pack == error_mark_node)
10639 return error_mark_node;
10640 if (TREE_VEC_LENGTH (pack) == 0)
10641 return expand_empty_fold (t, complain);
10642 else
10643 return expand_left_fold (t, pack, complain);
10644 }
10645
10646 /* Substitute into a binary left fold expression.
10647
10648 Do ths by building a single (non-empty) vector of argumnts and
10649 building the expression from those elements. */
10650
10651 static tree
10652 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10653 tree in_decl)
10654 {
10655 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10656 if (pack == error_mark_node)
10657 return error_mark_node;
10658 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10659 if (init == error_mark_node)
10660 return error_mark_node;
10661
10662 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10663 TREE_VEC_ELT (vec, 0) = init;
10664 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10665 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10666
10667 return expand_left_fold (t, vec, complain);
10668 }
10669
10670 /* Expand a PACK of arguments into a grouped as right fold.
10671 Given a pack containing elementns A0, A1, ..., and an
10672 operator @, this builds the expression:
10673
10674 A0@ ... (An-2 @ (An-1 @ An))
10675
10676 Note that PACK must not be empty.
10677
10678 The operator is defined by the original fold expression T. */
10679
10680 tree
10681 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10682 {
10683 // Build the expression.
10684 int n = TREE_VEC_LENGTH (pack);
10685 tree right = TREE_VEC_ELT (pack, n - 1);
10686 for (--n; n != 0; --n)
10687 {
10688 tree left = TREE_VEC_ELT (pack, n - 1);
10689 right = fold_expression (t, left, right, complain);
10690 }
10691 return right;
10692 }
10693
10694 /* Substitute into a unary right fold expression. */
10695
10696 static tree
10697 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10698 tree in_decl)
10699 {
10700 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10701 if (pack == error_mark_node)
10702 return error_mark_node;
10703 if (TREE_VEC_LENGTH (pack) == 0)
10704 return expand_empty_fold (t, complain);
10705 else
10706 return expand_right_fold (t, pack, complain);
10707 }
10708
10709 /* Substitute into a binary right fold expression.
10710
10711 Do ths by building a single (non-empty) vector of arguments and
10712 building the expression from those elements. */
10713
10714 static tree
10715 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10716 tree in_decl)
10717 {
10718 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10719 if (pack == error_mark_node)
10720 return error_mark_node;
10721 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10722 if (init == error_mark_node)
10723 return error_mark_node;
10724
10725 int n = TREE_VEC_LENGTH (pack);
10726 tree vec = make_tree_vec (n + 1);
10727 for (int i = 0; i < n; ++i)
10728 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10729 TREE_VEC_ELT (vec, n) = init;
10730
10731 return expand_right_fold (t, vec, complain);
10732 }
10733
10734
10735 /* Substitute ARGS into T, which is an pack expansion
10736 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10737 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10738 (if only a partial substitution could be performed) or
10739 ERROR_MARK_NODE if there was an error. */
10740 tree
10741 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10742 tree in_decl)
10743 {
10744 tree pattern;
10745 tree pack, packs = NULL_TREE;
10746 bool unsubstituted_packs = false;
10747 int i, len = -1;
10748 tree result;
10749 hash_map<tree, tree> *saved_local_specializations = NULL;
10750 bool need_local_specializations = false;
10751 int levels;
10752
10753 gcc_assert (PACK_EXPANSION_P (t));
10754 pattern = PACK_EXPANSION_PATTERN (t);
10755
10756 /* Add in any args remembered from an earlier partial instantiation. */
10757 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10758
10759 levels = TMPL_ARGS_DEPTH (args);
10760
10761 /* Determine the argument packs that will instantiate the parameter
10762 packs used in the expansion expression. While we're at it,
10763 compute the number of arguments to be expanded and make sure it
10764 is consistent. */
10765 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10766 pack = TREE_CHAIN (pack))
10767 {
10768 tree parm_pack = TREE_VALUE (pack);
10769 tree arg_pack = NULL_TREE;
10770 tree orig_arg = NULL_TREE;
10771 int level = 0;
10772
10773 if (TREE_CODE (parm_pack) == BASES)
10774 {
10775 if (BASES_DIRECT (parm_pack))
10776 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10777 args, complain, in_decl, false));
10778 else
10779 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10780 args, complain, in_decl, false));
10781 }
10782 if (TREE_CODE (parm_pack) == PARM_DECL)
10783 {
10784 /* We know we have correct local_specializations if this
10785 expansion is at function scope, or if we're dealing with a
10786 local parameter in a requires expression; for the latter,
10787 tsubst_requires_expr set it up appropriately. */
10788 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10789 arg_pack = retrieve_local_specialization (parm_pack);
10790 else
10791 {
10792 /* We can't rely on local_specializations for a parameter
10793 name used later in a function declaration (such as in a
10794 late-specified return type). Even if it exists, it might
10795 have the wrong value for a recursive call. Just make a
10796 dummy decl, since it's only used for its type. */
10797 arg_pack = tsubst_decl (parm_pack, args, complain);
10798 if (arg_pack && DECL_PACK_P (arg_pack))
10799 /* Partial instantiation of the parm_pack, we can't build
10800 up an argument pack yet. */
10801 arg_pack = NULL_TREE;
10802 else
10803 arg_pack = make_fnparm_pack (arg_pack);
10804 need_local_specializations = true;
10805 }
10806 }
10807 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10808 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10809 else
10810 {
10811 int idx;
10812 template_parm_level_and_index (parm_pack, &level, &idx);
10813
10814 if (level <= levels)
10815 arg_pack = TMPL_ARG (args, level, idx);
10816 }
10817
10818 orig_arg = arg_pack;
10819 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10820 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10821
10822 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10823 /* This can only happen if we forget to expand an argument
10824 pack somewhere else. Just return an error, silently. */
10825 {
10826 result = make_tree_vec (1);
10827 TREE_VEC_ELT (result, 0) = error_mark_node;
10828 return result;
10829 }
10830
10831 if (arg_pack)
10832 {
10833 int my_len =
10834 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10835
10836 /* Don't bother trying to do a partial substitution with
10837 incomplete packs; we'll try again after deduction. */
10838 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10839 return t;
10840
10841 if (len < 0)
10842 len = my_len;
10843 else if (len != my_len)
10844 {
10845 if (!(complain & tf_error))
10846 /* Fail quietly. */;
10847 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10848 error ("mismatched argument pack lengths while expanding "
10849 "%<%T%>",
10850 pattern);
10851 else
10852 error ("mismatched argument pack lengths while expanding "
10853 "%<%E%>",
10854 pattern);
10855 return error_mark_node;
10856 }
10857
10858 /* Keep track of the parameter packs and their corresponding
10859 argument packs. */
10860 packs = tree_cons (parm_pack, arg_pack, packs);
10861 TREE_TYPE (packs) = orig_arg;
10862 }
10863 else
10864 {
10865 /* We can't substitute for this parameter pack. We use a flag as
10866 well as the missing_level counter because function parameter
10867 packs don't have a level. */
10868 unsubstituted_packs = true;
10869 }
10870 }
10871
10872 /* If the expansion is just T..., return the matching argument pack, unless
10873 we need to call convert_from_reference on all the elements. This is an
10874 important optimization; see c++/68422. */
10875 if (!unsubstituted_packs
10876 && TREE_PURPOSE (packs) == pattern)
10877 {
10878 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10879 /* Types need no adjustment, nor does sizeof..., and if we still have
10880 some pack expansion args we won't do anything yet. */
10881 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10882 || PACK_EXPANSION_SIZEOF_P (t)
10883 || pack_expansion_args_count (args))
10884 return args;
10885 /* Also optimize expression pack expansions if we can tell that the
10886 elements won't have reference type. */
10887 tree type = TREE_TYPE (pattern);
10888 if (type && TREE_CODE (type) != REFERENCE_TYPE
10889 && !PACK_EXPANSION_P (type)
10890 && !WILDCARD_TYPE_P (type))
10891 return args;
10892 /* Otherwise use the normal path so we get convert_from_reference. */
10893 }
10894
10895 /* We cannot expand this expansion expression, because we don't have
10896 all of the argument packs we need. */
10897 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10898 {
10899 /* We got some full packs, but we can't substitute them in until we
10900 have values for all the packs. So remember these until then. */
10901
10902 t = make_pack_expansion (pattern);
10903 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10904 return t;
10905 }
10906 else if (unsubstituted_packs)
10907 {
10908 /* There were no real arguments, we're just replacing a parameter
10909 pack with another version of itself. Substitute into the
10910 pattern and return a PACK_EXPANSION_*. The caller will need to
10911 deal with that. */
10912 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10913 t = tsubst_expr (pattern, args, complain, in_decl,
10914 /*integral_constant_expression_p=*/false);
10915 else
10916 t = tsubst (pattern, args, complain, in_decl);
10917 t = make_pack_expansion (t);
10918 return t;
10919 }
10920
10921 gcc_assert (len >= 0);
10922
10923 if (need_local_specializations)
10924 {
10925 /* We're in a late-specified return type, so create our own local
10926 specializations map; the current map is either NULL or (in the
10927 case of recursive unification) might have bindings that we don't
10928 want to use or alter. */
10929 saved_local_specializations = local_specializations;
10930 local_specializations = new hash_map<tree, tree>;
10931 }
10932
10933 /* For each argument in each argument pack, substitute into the
10934 pattern. */
10935 result = make_tree_vec (len);
10936 for (i = 0; i < len; ++i)
10937 {
10938 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10939 i,
10940 args, complain,
10941 in_decl);
10942 TREE_VEC_ELT (result, i) = t;
10943 if (t == error_mark_node)
10944 {
10945 result = error_mark_node;
10946 break;
10947 }
10948 }
10949
10950 /* Update ARGS to restore the substitution from parameter packs to
10951 their argument packs. */
10952 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10953 {
10954 tree parm = TREE_PURPOSE (pack);
10955
10956 if (TREE_CODE (parm) == PARM_DECL
10957 || TREE_CODE (parm) == FIELD_DECL)
10958 register_local_specialization (TREE_TYPE (pack), parm);
10959 else
10960 {
10961 int idx, level;
10962
10963 if (TREE_VALUE (pack) == NULL_TREE)
10964 continue;
10965
10966 template_parm_level_and_index (parm, &level, &idx);
10967
10968 /* Update the corresponding argument. */
10969 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10970 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10971 TREE_TYPE (pack);
10972 else
10973 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10974 }
10975 }
10976
10977 if (need_local_specializations)
10978 {
10979 delete local_specializations;
10980 local_specializations = saved_local_specializations;
10981 }
10982
10983 return result;
10984 }
10985
10986 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10987 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10988 parameter packs; all parms generated from a function parameter pack will
10989 have the same DECL_PARM_INDEX. */
10990
10991 tree
10992 get_pattern_parm (tree parm, tree tmpl)
10993 {
10994 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10995 tree patparm;
10996
10997 if (DECL_ARTIFICIAL (parm))
10998 {
10999 for (patparm = DECL_ARGUMENTS (pattern);
11000 patparm; patparm = DECL_CHAIN (patparm))
11001 if (DECL_ARTIFICIAL (patparm)
11002 && DECL_NAME (parm) == DECL_NAME (patparm))
11003 break;
11004 }
11005 else
11006 {
11007 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11008 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11009 gcc_assert (DECL_PARM_INDEX (patparm)
11010 == DECL_PARM_INDEX (parm));
11011 }
11012
11013 return patparm;
11014 }
11015
11016 /* Substitute ARGS into the vector or list of template arguments T. */
11017
11018 static tree
11019 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11020 {
11021 tree orig_t = t;
11022 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11023 tree *elts;
11024
11025 if (t == error_mark_node)
11026 return error_mark_node;
11027
11028 len = TREE_VEC_LENGTH (t);
11029 elts = XALLOCAVEC (tree, len);
11030
11031 for (i = 0; i < len; i++)
11032 {
11033 tree orig_arg = TREE_VEC_ELT (t, i);
11034 tree new_arg;
11035
11036 if (TREE_CODE (orig_arg) == TREE_VEC)
11037 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11038 else if (PACK_EXPANSION_P (orig_arg))
11039 {
11040 /* Substitute into an expansion expression. */
11041 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11042
11043 if (TREE_CODE (new_arg) == TREE_VEC)
11044 /* Add to the expanded length adjustment the number of
11045 expanded arguments. We subtract one from this
11046 measurement, because the argument pack expression
11047 itself is already counted as 1 in
11048 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11049 the argument pack is empty. */
11050 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11051 }
11052 else if (ARGUMENT_PACK_P (orig_arg))
11053 {
11054 /* Substitute into each of the arguments. */
11055 new_arg = TYPE_P (orig_arg)
11056 ? cxx_make_type (TREE_CODE (orig_arg))
11057 : make_node (TREE_CODE (orig_arg));
11058
11059 SET_ARGUMENT_PACK_ARGS (
11060 new_arg,
11061 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11062 args, complain, in_decl));
11063
11064 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11065 new_arg = error_mark_node;
11066
11067 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11068 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11069 complain, in_decl);
11070 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11071
11072 if (TREE_TYPE (new_arg) == error_mark_node)
11073 new_arg = error_mark_node;
11074 }
11075 }
11076 else
11077 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11078
11079 if (new_arg == error_mark_node)
11080 return error_mark_node;
11081
11082 elts[i] = new_arg;
11083 if (new_arg != orig_arg)
11084 need_new = 1;
11085 }
11086
11087 if (!need_new)
11088 return t;
11089
11090 /* Make space for the expanded arguments coming from template
11091 argument packs. */
11092 t = make_tree_vec (len + expanded_len_adjust);
11093 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11094 arguments for a member template.
11095 In that case each TREE_VEC in ORIG_T represents a level of template
11096 arguments, and ORIG_T won't carry any non defaulted argument count.
11097 It will rather be the nested TREE_VECs that will carry one.
11098 In other words, ORIG_T carries a non defaulted argument count only
11099 if it doesn't contain any nested TREE_VEC. */
11100 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11101 {
11102 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11103 count += expanded_len_adjust;
11104 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11105 }
11106 for (i = 0, out = 0; i < len; i++)
11107 {
11108 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11109 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11110 && TREE_CODE (elts[i]) == TREE_VEC)
11111 {
11112 int idx;
11113
11114 /* Now expand the template argument pack "in place". */
11115 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11116 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11117 }
11118 else
11119 {
11120 TREE_VEC_ELT (t, out) = elts[i];
11121 out++;
11122 }
11123 }
11124
11125 return t;
11126 }
11127
11128 /* Return the result of substituting ARGS into the template parameters
11129 given by PARMS. If there are m levels of ARGS and m + n levels of
11130 PARMS, then the result will contain n levels of PARMS. For
11131 example, if PARMS is `template <class T> template <class U>
11132 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11133 result will be `template <int*, double, class V>'. */
11134
11135 static tree
11136 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11137 {
11138 tree r = NULL_TREE;
11139 tree* new_parms;
11140
11141 /* When substituting into a template, we must set
11142 PROCESSING_TEMPLATE_DECL as the template parameters may be
11143 dependent if they are based on one-another, and the dependency
11144 predicates are short-circuit outside of templates. */
11145 ++processing_template_decl;
11146
11147 for (new_parms = &r;
11148 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11149 new_parms = &(TREE_CHAIN (*new_parms)),
11150 parms = TREE_CHAIN (parms))
11151 {
11152 tree new_vec =
11153 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11154 int i;
11155
11156 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11157 {
11158 tree tuple;
11159
11160 if (parms == error_mark_node)
11161 continue;
11162
11163 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11164
11165 if (tuple == error_mark_node)
11166 continue;
11167
11168 TREE_VEC_ELT (new_vec, i) =
11169 tsubst_template_parm (tuple, args, complain);
11170 }
11171
11172 *new_parms =
11173 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11174 - TMPL_ARGS_DEPTH (args)),
11175 new_vec, NULL_TREE);
11176 }
11177
11178 --processing_template_decl;
11179
11180 return r;
11181 }
11182
11183 /* Return the result of substituting ARGS into one template parameter
11184 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11185 parameter and which TREE_PURPOSE is the default argument of the
11186 template parameter. */
11187
11188 static tree
11189 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11190 {
11191 tree default_value, parm_decl;
11192
11193 if (args == NULL_TREE
11194 || t == NULL_TREE
11195 || t == error_mark_node)
11196 return t;
11197
11198 gcc_assert (TREE_CODE (t) == TREE_LIST);
11199
11200 default_value = TREE_PURPOSE (t);
11201 parm_decl = TREE_VALUE (t);
11202
11203 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11204 if (TREE_CODE (parm_decl) == PARM_DECL
11205 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11206 parm_decl = error_mark_node;
11207 default_value = tsubst_template_arg (default_value, args,
11208 complain, NULL_TREE);
11209
11210 return build_tree_list (default_value, parm_decl);
11211 }
11212
11213 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11214 type T. If T is not an aggregate or enumeration type, it is
11215 handled as if by tsubst. IN_DECL is as for tsubst. If
11216 ENTERING_SCOPE is nonzero, T is the context for a template which
11217 we are presently tsubst'ing. Return the substituted value. */
11218
11219 static tree
11220 tsubst_aggr_type (tree t,
11221 tree args,
11222 tsubst_flags_t complain,
11223 tree in_decl,
11224 int entering_scope)
11225 {
11226 if (t == NULL_TREE)
11227 return NULL_TREE;
11228
11229 switch (TREE_CODE (t))
11230 {
11231 case RECORD_TYPE:
11232 if (TYPE_PTRMEMFUNC_P (t))
11233 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11234
11235 /* Else fall through. */
11236 case ENUMERAL_TYPE:
11237 case UNION_TYPE:
11238 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11239 {
11240 tree argvec;
11241 tree context;
11242 tree r;
11243 int saved_unevaluated_operand;
11244 int saved_inhibit_evaluation_warnings;
11245
11246 /* In "sizeof(X<I>)" we need to evaluate "I". */
11247 saved_unevaluated_operand = cp_unevaluated_operand;
11248 cp_unevaluated_operand = 0;
11249 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11250 c_inhibit_evaluation_warnings = 0;
11251
11252 /* First, determine the context for the type we are looking
11253 up. */
11254 context = TYPE_CONTEXT (t);
11255 if (context && TYPE_P (context))
11256 {
11257 context = tsubst_aggr_type (context, args, complain,
11258 in_decl, /*entering_scope=*/1);
11259 /* If context is a nested class inside a class template,
11260 it may still need to be instantiated (c++/33959). */
11261 context = complete_type (context);
11262 }
11263
11264 /* Then, figure out what arguments are appropriate for the
11265 type we are trying to find. For example, given:
11266
11267 template <class T> struct S;
11268 template <class T, class U> void f(T, U) { S<U> su; }
11269
11270 and supposing that we are instantiating f<int, double>,
11271 then our ARGS will be {int, double}, but, when looking up
11272 S we only want {double}. */
11273 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11274 complain, in_decl);
11275 if (argvec == error_mark_node)
11276 r = error_mark_node;
11277 else
11278 {
11279 r = lookup_template_class (t, argvec, in_decl, context,
11280 entering_scope, complain);
11281 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11282 }
11283
11284 cp_unevaluated_operand = saved_unevaluated_operand;
11285 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11286
11287 return r;
11288 }
11289 else
11290 /* This is not a template type, so there's nothing to do. */
11291 return t;
11292
11293 default:
11294 return tsubst (t, args, complain, in_decl);
11295 }
11296 }
11297
11298 /* Substitute into the default argument ARG (a default argument for
11299 FN), which has the indicated TYPE. */
11300
11301 tree
11302 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11303 {
11304 tree saved_class_ptr = NULL_TREE;
11305 tree saved_class_ref = NULL_TREE;
11306 int errs = errorcount + sorrycount;
11307
11308 /* This can happen in invalid code. */
11309 if (TREE_CODE (arg) == DEFAULT_ARG)
11310 return arg;
11311
11312 /* This default argument came from a template. Instantiate the
11313 default argument here, not in tsubst. In the case of
11314 something like:
11315
11316 template <class T>
11317 struct S {
11318 static T t();
11319 void f(T = t());
11320 };
11321
11322 we must be careful to do name lookup in the scope of S<T>,
11323 rather than in the current class. */
11324 push_access_scope (fn);
11325 /* The "this" pointer is not valid in a default argument. */
11326 if (cfun)
11327 {
11328 saved_class_ptr = current_class_ptr;
11329 cp_function_chain->x_current_class_ptr = NULL_TREE;
11330 saved_class_ref = current_class_ref;
11331 cp_function_chain->x_current_class_ref = NULL_TREE;
11332 }
11333
11334 push_deferring_access_checks(dk_no_deferred);
11335 /* The default argument expression may cause implicitly defined
11336 member functions to be synthesized, which will result in garbage
11337 collection. We must treat this situation as if we were within
11338 the body of function so as to avoid collecting live data on the
11339 stack. */
11340 ++function_depth;
11341 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11342 complain, NULL_TREE,
11343 /*integral_constant_expression_p=*/false);
11344 --function_depth;
11345 pop_deferring_access_checks();
11346
11347 /* Restore the "this" pointer. */
11348 if (cfun)
11349 {
11350 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11351 cp_function_chain->x_current_class_ref = saved_class_ref;
11352 }
11353
11354 if (errorcount+sorrycount > errs
11355 && (complain & tf_warning_or_error))
11356 inform (input_location,
11357 " when instantiating default argument for call to %D", fn);
11358
11359 /* Make sure the default argument is reasonable. */
11360 arg = check_default_argument (type, arg, complain);
11361
11362 pop_access_scope (fn);
11363
11364 return arg;
11365 }
11366
11367 /* Substitute into all the default arguments for FN. */
11368
11369 static void
11370 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11371 {
11372 tree arg;
11373 tree tmpl_args;
11374
11375 tmpl_args = DECL_TI_ARGS (fn);
11376
11377 /* If this function is not yet instantiated, we certainly don't need
11378 its default arguments. */
11379 if (uses_template_parms (tmpl_args))
11380 return;
11381 /* Don't do this again for clones. */
11382 if (DECL_CLONED_FUNCTION_P (fn))
11383 return;
11384
11385 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11386 arg;
11387 arg = TREE_CHAIN (arg))
11388 if (TREE_PURPOSE (arg))
11389 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11390 TREE_VALUE (arg),
11391 TREE_PURPOSE (arg),
11392 complain);
11393 }
11394
11395 /* Substitute the ARGS into the T, which is a _DECL. Return the
11396 result of the substitution. Issue error and warning messages under
11397 control of COMPLAIN. */
11398
11399 static tree
11400 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11401 {
11402 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11403 location_t saved_loc;
11404 tree r = NULL_TREE;
11405 tree in_decl = t;
11406 hashval_t hash = 0;
11407
11408 /* Set the filename and linenumber to improve error-reporting. */
11409 saved_loc = input_location;
11410 input_location = DECL_SOURCE_LOCATION (t);
11411
11412 switch (TREE_CODE (t))
11413 {
11414 case TEMPLATE_DECL:
11415 {
11416 /* We can get here when processing a member function template,
11417 member class template, or template template parameter. */
11418 tree decl = DECL_TEMPLATE_RESULT (t);
11419 tree spec;
11420 tree tmpl_args;
11421 tree full_args;
11422
11423 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11424 {
11425 /* Template template parameter is treated here. */
11426 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11427 if (new_type == error_mark_node)
11428 r = error_mark_node;
11429 /* If we get a real template back, return it. This can happen in
11430 the context of most_specialized_partial_spec. */
11431 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11432 r = new_type;
11433 else
11434 /* The new TEMPLATE_DECL was built in
11435 reduce_template_parm_level. */
11436 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11437 break;
11438 }
11439
11440 /* We might already have an instance of this template.
11441 The ARGS are for the surrounding class type, so the
11442 full args contain the tsubst'd args for the context,
11443 plus the innermost args from the template decl. */
11444 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11445 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11446 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11447 /* Because this is a template, the arguments will still be
11448 dependent, even after substitution. If
11449 PROCESSING_TEMPLATE_DECL is not set, the dependency
11450 predicates will short-circuit. */
11451 ++processing_template_decl;
11452 full_args = tsubst_template_args (tmpl_args, args,
11453 complain, in_decl);
11454 --processing_template_decl;
11455 if (full_args == error_mark_node)
11456 RETURN (error_mark_node);
11457
11458 /* If this is a default template template argument,
11459 tsubst might not have changed anything. */
11460 if (full_args == tmpl_args)
11461 RETURN (t);
11462
11463 hash = hash_tmpl_and_args (t, full_args);
11464 spec = retrieve_specialization (t, full_args, hash);
11465 if (spec != NULL_TREE)
11466 {
11467 r = spec;
11468 break;
11469 }
11470
11471 /* Make a new template decl. It will be similar to the
11472 original, but will record the current template arguments.
11473 We also create a new function declaration, which is just
11474 like the old one, but points to this new template, rather
11475 than the old one. */
11476 r = copy_decl (t);
11477 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11478 DECL_CHAIN (r) = NULL_TREE;
11479
11480 // Build new template info linking to the original template decl.
11481 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11482
11483 if (TREE_CODE (decl) == TYPE_DECL
11484 && !TYPE_DECL_ALIAS_P (decl))
11485 {
11486 tree new_type;
11487 ++processing_template_decl;
11488 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11489 --processing_template_decl;
11490 if (new_type == error_mark_node)
11491 RETURN (error_mark_node);
11492
11493 TREE_TYPE (r) = new_type;
11494 /* For a partial specialization, we need to keep pointing to
11495 the primary template. */
11496 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11497 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11498 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11499 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11500 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11501 }
11502 else
11503 {
11504 tree new_decl;
11505 ++processing_template_decl;
11506 new_decl = tsubst (decl, args, complain, in_decl);
11507 --processing_template_decl;
11508 if (new_decl == error_mark_node)
11509 RETURN (error_mark_node);
11510
11511 DECL_TEMPLATE_RESULT (r) = new_decl;
11512 DECL_TI_TEMPLATE (new_decl) = r;
11513 TREE_TYPE (r) = TREE_TYPE (new_decl);
11514 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11515 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11516 }
11517
11518 SET_DECL_IMPLICIT_INSTANTIATION (r);
11519 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11520 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11521
11522 /* The template parameters for this new template are all the
11523 template parameters for the old template, except the
11524 outermost level of parameters. */
11525 DECL_TEMPLATE_PARMS (r)
11526 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11527 complain);
11528
11529 if (PRIMARY_TEMPLATE_P (t))
11530 DECL_PRIMARY_TEMPLATE (r) = r;
11531
11532 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11533 /* Record this non-type partial instantiation. */
11534 register_specialization (r, t,
11535 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11536 false, hash);
11537 }
11538 break;
11539
11540 case FUNCTION_DECL:
11541 {
11542 tree ctx;
11543 tree argvec = NULL_TREE;
11544 tree *friends;
11545 tree gen_tmpl;
11546 tree type;
11547 int member;
11548 int args_depth;
11549 int parms_depth;
11550
11551 /* Nobody should be tsubst'ing into non-template functions. */
11552 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11553
11554 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11555 {
11556 tree spec;
11557 bool dependent_p;
11558
11559 /* If T is not dependent, just return it. We have to
11560 increment PROCESSING_TEMPLATE_DECL because
11561 value_dependent_expression_p assumes that nothing is
11562 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11563 ++processing_template_decl;
11564 dependent_p = value_dependent_expression_p (t);
11565 --processing_template_decl;
11566 if (!dependent_p)
11567 RETURN (t);
11568
11569 /* Calculate the most general template of which R is a
11570 specialization, and the complete set of arguments used to
11571 specialize R. */
11572 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11573 argvec = tsubst_template_args (DECL_TI_ARGS
11574 (DECL_TEMPLATE_RESULT
11575 (DECL_TI_TEMPLATE (t))),
11576 args, complain, in_decl);
11577 if (argvec == error_mark_node)
11578 RETURN (error_mark_node);
11579
11580 /* Check to see if we already have this specialization. */
11581 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11582 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11583
11584 if (spec)
11585 {
11586 r = spec;
11587 break;
11588 }
11589
11590 /* We can see more levels of arguments than parameters if
11591 there was a specialization of a member template, like
11592 this:
11593
11594 template <class T> struct S { template <class U> void f(); }
11595 template <> template <class U> void S<int>::f(U);
11596
11597 Here, we'll be substituting into the specialization,
11598 because that's where we can find the code we actually
11599 want to generate, but we'll have enough arguments for
11600 the most general template.
11601
11602 We also deal with the peculiar case:
11603
11604 template <class T> struct S {
11605 template <class U> friend void f();
11606 };
11607 template <class U> void f() {}
11608 template S<int>;
11609 template void f<double>();
11610
11611 Here, the ARGS for the instantiation of will be {int,
11612 double}. But, we only need as many ARGS as there are
11613 levels of template parameters in CODE_PATTERN. We are
11614 careful not to get fooled into reducing the ARGS in
11615 situations like:
11616
11617 template <class T> struct S { template <class U> void f(U); }
11618 template <class T> template <> void S<T>::f(int) {}
11619
11620 which we can spot because the pattern will be a
11621 specialization in this case. */
11622 args_depth = TMPL_ARGS_DEPTH (args);
11623 parms_depth =
11624 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11625 if (args_depth > parms_depth
11626 && !DECL_TEMPLATE_SPECIALIZATION (t))
11627 args = get_innermost_template_args (args, parms_depth);
11628 }
11629 else
11630 {
11631 /* This special case arises when we have something like this:
11632
11633 template <class T> struct S {
11634 friend void f<int>(int, double);
11635 };
11636
11637 Here, the DECL_TI_TEMPLATE for the friend declaration
11638 will be an IDENTIFIER_NODE. We are being called from
11639 tsubst_friend_function, and we want only to create a
11640 new decl (R) with appropriate types so that we can call
11641 determine_specialization. */
11642 gen_tmpl = NULL_TREE;
11643 }
11644
11645 if (DECL_CLASS_SCOPE_P (t))
11646 {
11647 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11648 member = 2;
11649 else
11650 member = 1;
11651 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11652 complain, t, /*entering_scope=*/1);
11653 }
11654 else
11655 {
11656 member = 0;
11657 ctx = DECL_CONTEXT (t);
11658 }
11659 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11660 if (type == error_mark_node)
11661 RETURN (error_mark_node);
11662
11663 /* If we hit excessive deduction depth, the type is bogus even if
11664 it isn't error_mark_node, so don't build a decl. */
11665 if (excessive_deduction_depth)
11666 RETURN (error_mark_node);
11667
11668 /* We do NOT check for matching decls pushed separately at this
11669 point, as they may not represent instantiations of this
11670 template, and in any case are considered separate under the
11671 discrete model. */
11672 r = copy_decl (t);
11673 DECL_USE_TEMPLATE (r) = 0;
11674 TREE_TYPE (r) = type;
11675 /* Clear out the mangled name and RTL for the instantiation. */
11676 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11677 SET_DECL_RTL (r, NULL);
11678 /* Leave DECL_INITIAL set on deleted instantiations. */
11679 if (!DECL_DELETED_FN (r))
11680 DECL_INITIAL (r) = NULL_TREE;
11681 DECL_CONTEXT (r) = ctx;
11682
11683 /* OpenMP UDRs have the only argument a reference to the declared
11684 type. We want to diagnose if the declared type is a reference,
11685 which is invalid, but as references to references are usually
11686 quietly merged, diagnose it here. */
11687 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11688 {
11689 tree argtype
11690 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11691 argtype = tsubst (argtype, args, complain, in_decl);
11692 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11693 error_at (DECL_SOURCE_LOCATION (t),
11694 "reference type %qT in "
11695 "%<#pragma omp declare reduction%>", argtype);
11696 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11697 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11698 argtype);
11699 }
11700
11701 if (member && DECL_CONV_FN_P (r))
11702 /* Type-conversion operator. Reconstruct the name, in
11703 case it's the name of one of the template's parameters. */
11704 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11705
11706 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11707 complain, t);
11708 DECL_RESULT (r) = NULL_TREE;
11709
11710 TREE_STATIC (r) = 0;
11711 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11712 DECL_EXTERNAL (r) = 1;
11713 /* If this is an instantiation of a function with internal
11714 linkage, we already know what object file linkage will be
11715 assigned to the instantiation. */
11716 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11717 DECL_DEFER_OUTPUT (r) = 0;
11718 DECL_CHAIN (r) = NULL_TREE;
11719 DECL_PENDING_INLINE_INFO (r) = 0;
11720 DECL_PENDING_INLINE_P (r) = 0;
11721 DECL_SAVED_TREE (r) = NULL_TREE;
11722 DECL_STRUCT_FUNCTION (r) = NULL;
11723 TREE_USED (r) = 0;
11724 /* We'll re-clone as appropriate in instantiate_template. */
11725 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11726
11727 /* If we aren't complaining now, return on error before we register
11728 the specialization so that we'll complain eventually. */
11729 if ((complain & tf_error) == 0
11730 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11731 && !grok_op_properties (r, /*complain=*/false))
11732 RETURN (error_mark_node);
11733
11734 /* When instantiating a constrained member, substitute
11735 into the constraints to create a new constraint. */
11736 if (tree ci = get_constraints (t))
11737 if (member)
11738 {
11739 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11740 set_constraints (r, ci);
11741 }
11742
11743 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11744 this in the special friend case mentioned above where
11745 GEN_TMPL is NULL. */
11746 if (gen_tmpl)
11747 {
11748 DECL_TEMPLATE_INFO (r)
11749 = build_template_info (gen_tmpl, argvec);
11750 SET_DECL_IMPLICIT_INSTANTIATION (r);
11751
11752 tree new_r
11753 = register_specialization (r, gen_tmpl, argvec, false, hash);
11754 if (new_r != r)
11755 /* We instantiated this while substituting into
11756 the type earlier (template/friend54.C). */
11757 RETURN (new_r);
11758
11759 /* We're not supposed to instantiate default arguments
11760 until they are called, for a template. But, for a
11761 declaration like:
11762
11763 template <class T> void f ()
11764 { extern void g(int i = T()); }
11765
11766 we should do the substitution when the template is
11767 instantiated. We handle the member function case in
11768 instantiate_class_template since the default arguments
11769 might refer to other members of the class. */
11770 if (!member
11771 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11772 && !uses_template_parms (argvec))
11773 tsubst_default_arguments (r, complain);
11774 }
11775 else
11776 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11777
11778 /* Copy the list of befriending classes. */
11779 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11780 *friends;
11781 friends = &TREE_CHAIN (*friends))
11782 {
11783 *friends = copy_node (*friends);
11784 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11785 args, complain,
11786 in_decl);
11787 }
11788
11789 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11790 {
11791 maybe_retrofit_in_chrg (r);
11792 if (DECL_CONSTRUCTOR_P (r))
11793 grok_ctor_properties (ctx, r);
11794 if (DECL_INHERITED_CTOR_BASE (r))
11795 deduce_inheriting_ctor (r);
11796 /* If this is an instantiation of a member template, clone it.
11797 If it isn't, that'll be handled by
11798 clone_constructors_and_destructors. */
11799 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11800 clone_function_decl (r, /*update_method_vec_p=*/0);
11801 }
11802 else if ((complain & tf_error) != 0
11803 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11804 && !grok_op_properties (r, /*complain=*/true))
11805 RETURN (error_mark_node);
11806
11807 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11808 SET_DECL_FRIEND_CONTEXT (r,
11809 tsubst (DECL_FRIEND_CONTEXT (t),
11810 args, complain, in_decl));
11811
11812 /* Possibly limit visibility based on template args. */
11813 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11814 if (DECL_VISIBILITY_SPECIFIED (t))
11815 {
11816 DECL_VISIBILITY_SPECIFIED (r) = 0;
11817 DECL_ATTRIBUTES (r)
11818 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11819 }
11820 determine_visibility (r);
11821 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11822 && !processing_template_decl)
11823 defaulted_late_check (r);
11824
11825 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11826 args, complain, in_decl);
11827 }
11828 break;
11829
11830 case PARM_DECL:
11831 {
11832 tree type = NULL_TREE;
11833 int i, len = 1;
11834 tree expanded_types = NULL_TREE;
11835 tree prev_r = NULL_TREE;
11836 tree first_r = NULL_TREE;
11837
11838 if (DECL_PACK_P (t))
11839 {
11840 /* If there is a local specialization that isn't a
11841 parameter pack, it means that we're doing a "simple"
11842 substitution from inside tsubst_pack_expansion. Just
11843 return the local specialization (which will be a single
11844 parm). */
11845 tree spec = retrieve_local_specialization (t);
11846 if (spec
11847 && TREE_CODE (spec) == PARM_DECL
11848 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11849 RETURN (spec);
11850
11851 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11852 the parameters in this function parameter pack. */
11853 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11854 complain, in_decl);
11855 if (TREE_CODE (expanded_types) == TREE_VEC)
11856 {
11857 len = TREE_VEC_LENGTH (expanded_types);
11858
11859 /* Zero-length parameter packs are boring. Just substitute
11860 into the chain. */
11861 if (len == 0)
11862 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11863 TREE_CHAIN (t)));
11864 }
11865 else
11866 {
11867 /* All we did was update the type. Make a note of that. */
11868 type = expanded_types;
11869 expanded_types = NULL_TREE;
11870 }
11871 }
11872
11873 /* Loop through all of the parameters we'll build. When T is
11874 a function parameter pack, LEN is the number of expanded
11875 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11876 r = NULL_TREE;
11877 for (i = 0; i < len; ++i)
11878 {
11879 prev_r = r;
11880 r = copy_node (t);
11881 if (DECL_TEMPLATE_PARM_P (t))
11882 SET_DECL_TEMPLATE_PARM_P (r);
11883
11884 if (expanded_types)
11885 /* We're on the Ith parameter of the function parameter
11886 pack. */
11887 {
11888 /* Get the Ith type. */
11889 type = TREE_VEC_ELT (expanded_types, i);
11890
11891 /* Rename the parameter to include the index. */
11892 DECL_NAME (r)
11893 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11894 }
11895 else if (!type)
11896 /* We're dealing with a normal parameter. */
11897 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11898
11899 type = type_decays_to (type);
11900 TREE_TYPE (r) = type;
11901 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11902
11903 if (DECL_INITIAL (r))
11904 {
11905 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11906 DECL_INITIAL (r) = TREE_TYPE (r);
11907 else
11908 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11909 complain, in_decl);
11910 }
11911
11912 DECL_CONTEXT (r) = NULL_TREE;
11913
11914 if (!DECL_TEMPLATE_PARM_P (r))
11915 DECL_ARG_TYPE (r) = type_passed_as (type);
11916
11917 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11918 args, complain, in_decl);
11919
11920 /* Keep track of the first new parameter we
11921 generate. That's what will be returned to the
11922 caller. */
11923 if (!first_r)
11924 first_r = r;
11925
11926 /* Build a proper chain of parameters when substituting
11927 into a function parameter pack. */
11928 if (prev_r)
11929 DECL_CHAIN (prev_r) = r;
11930 }
11931
11932 /* If cp_unevaluated_operand is set, we're just looking for a
11933 single dummy parameter, so don't keep going. */
11934 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11935 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11936 complain, DECL_CHAIN (t));
11937
11938 /* FIRST_R contains the start of the chain we've built. */
11939 r = first_r;
11940 }
11941 break;
11942
11943 case FIELD_DECL:
11944 {
11945 tree type = NULL_TREE;
11946 tree vec = NULL_TREE;
11947 tree expanded_types = NULL_TREE;
11948 int len = 1;
11949
11950 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11951 {
11952 /* This field is a lambda capture pack. Return a TREE_VEC of
11953 the expanded fields to instantiate_class_template_1 and
11954 store them in the specializations hash table as a
11955 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11956 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11957 complain, in_decl);
11958 if (TREE_CODE (expanded_types) == TREE_VEC)
11959 {
11960 len = TREE_VEC_LENGTH (expanded_types);
11961 vec = make_tree_vec (len);
11962 }
11963 else
11964 {
11965 /* All we did was update the type. Make a note of that. */
11966 type = expanded_types;
11967 expanded_types = NULL_TREE;
11968 }
11969 }
11970
11971 for (int i = 0; i < len; ++i)
11972 {
11973 r = copy_decl (t);
11974 if (expanded_types)
11975 {
11976 type = TREE_VEC_ELT (expanded_types, i);
11977 DECL_NAME (r)
11978 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11979 }
11980 else if (!type)
11981 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11982
11983 if (type == error_mark_node)
11984 RETURN (error_mark_node);
11985 TREE_TYPE (r) = type;
11986 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11987
11988 if (DECL_C_BIT_FIELD (r))
11989 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11990 non-bit-fields DECL_INITIAL is a non-static data member
11991 initializer, which gets deferred instantiation. */
11992 DECL_INITIAL (r)
11993 = tsubst_expr (DECL_INITIAL (t), args,
11994 complain, in_decl,
11995 /*integral_constant_expression_p=*/true);
11996 else if (DECL_INITIAL (t))
11997 {
11998 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11999 NSDMI in perform_member_init. Still set DECL_INITIAL
12000 so that we know there is one. */
12001 DECL_INITIAL (r) = void_node;
12002 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12003 retrofit_lang_decl (r);
12004 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12005 }
12006 /* We don't have to set DECL_CONTEXT here; it is set by
12007 finish_member_declaration. */
12008 DECL_CHAIN (r) = NULL_TREE;
12009
12010 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12011 args, complain, in_decl);
12012
12013 if (vec)
12014 TREE_VEC_ELT (vec, i) = r;
12015 }
12016
12017 if (vec)
12018 {
12019 r = vec;
12020 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12021 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12022 SET_ARGUMENT_PACK_ARGS (pack, vec);
12023 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12024 TREE_TYPE (pack) = tpack;
12025 register_specialization (pack, t, args, false, 0);
12026 }
12027 }
12028 break;
12029
12030 case USING_DECL:
12031 /* We reach here only for member using decls. We also need to check
12032 uses_template_parms because DECL_DEPENDENT_P is not set for a
12033 using-declaration that designates a member of the current
12034 instantiation (c++/53549). */
12035 if (DECL_DEPENDENT_P (t)
12036 || uses_template_parms (USING_DECL_SCOPE (t)))
12037 {
12038 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12039 complain, in_decl);
12040 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12041 r = do_class_using_decl (inst_scope, name);
12042 if (!r)
12043 r = error_mark_node;
12044 else
12045 {
12046 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12047 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12048 }
12049 }
12050 else
12051 {
12052 r = copy_node (t);
12053 DECL_CHAIN (r) = NULL_TREE;
12054 }
12055 break;
12056
12057 case TYPE_DECL:
12058 case VAR_DECL:
12059 {
12060 tree argvec = NULL_TREE;
12061 tree gen_tmpl = NULL_TREE;
12062 tree spec;
12063 tree tmpl = NULL_TREE;
12064 tree ctx;
12065 tree type = NULL_TREE;
12066 bool local_p;
12067
12068 if (TREE_TYPE (t) == error_mark_node)
12069 RETURN (error_mark_node);
12070
12071 if (TREE_CODE (t) == TYPE_DECL
12072 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12073 {
12074 /* If this is the canonical decl, we don't have to
12075 mess with instantiations, and often we can't (for
12076 typename, template type parms and such). Note that
12077 TYPE_NAME is not correct for the above test if
12078 we've copied the type for a typedef. */
12079 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12080 if (type == error_mark_node)
12081 RETURN (error_mark_node);
12082 r = TYPE_NAME (type);
12083 break;
12084 }
12085
12086 /* Check to see if we already have the specialization we
12087 need. */
12088 spec = NULL_TREE;
12089 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12090 {
12091 /* T is a static data member or namespace-scope entity.
12092 We have to substitute into namespace-scope variables
12093 (not just variable templates) because of cases like:
12094
12095 template <class T> void f() { extern T t; }
12096
12097 where the entity referenced is not known until
12098 instantiation time. */
12099 local_p = false;
12100 ctx = DECL_CONTEXT (t);
12101 if (DECL_CLASS_SCOPE_P (t))
12102 {
12103 ctx = tsubst_aggr_type (ctx, args,
12104 complain,
12105 in_decl, /*entering_scope=*/1);
12106 /* If CTX is unchanged, then T is in fact the
12107 specialization we want. That situation occurs when
12108 referencing a static data member within in its own
12109 class. We can use pointer equality, rather than
12110 same_type_p, because DECL_CONTEXT is always
12111 canonical... */
12112 if (ctx == DECL_CONTEXT (t)
12113 /* ... unless T is a member template; in which
12114 case our caller can be willing to create a
12115 specialization of that template represented
12116 by T. */
12117 && !(DECL_TI_TEMPLATE (t)
12118 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12119 spec = t;
12120 }
12121
12122 if (!spec)
12123 {
12124 tmpl = DECL_TI_TEMPLATE (t);
12125 gen_tmpl = most_general_template (tmpl);
12126 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12127 if (argvec != error_mark_node)
12128 argvec = (coerce_innermost_template_parms
12129 (DECL_TEMPLATE_PARMS (gen_tmpl),
12130 argvec, t, complain,
12131 /*all*/true, /*defarg*/true));
12132 if (argvec == error_mark_node)
12133 RETURN (error_mark_node);
12134 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12135 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12136 }
12137 }
12138 else
12139 {
12140 /* A local variable. */
12141 local_p = true;
12142 /* Subsequent calls to pushdecl will fill this in. */
12143 ctx = NULL_TREE;
12144 spec = retrieve_local_specialization (t);
12145 }
12146 /* If we already have the specialization we need, there is
12147 nothing more to do. */
12148 if (spec)
12149 {
12150 r = spec;
12151 break;
12152 }
12153
12154 /* Create a new node for the specialization we need. */
12155 r = copy_decl (t);
12156 if (type == NULL_TREE)
12157 {
12158 if (is_typedef_decl (t))
12159 type = DECL_ORIGINAL_TYPE (t);
12160 else
12161 type = TREE_TYPE (t);
12162 if (VAR_P (t)
12163 && VAR_HAD_UNKNOWN_BOUND (t)
12164 && type != error_mark_node)
12165 type = strip_array_domain (type);
12166 type = tsubst (type, args, complain, in_decl);
12167 }
12168 if (VAR_P (r))
12169 {
12170 /* Even if the original location is out of scope, the
12171 newly substituted one is not. */
12172 DECL_DEAD_FOR_LOCAL (r) = 0;
12173 DECL_INITIALIZED_P (r) = 0;
12174 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12175 if (type == error_mark_node)
12176 RETURN (error_mark_node);
12177 if (TREE_CODE (type) == FUNCTION_TYPE)
12178 {
12179 /* It may seem that this case cannot occur, since:
12180
12181 typedef void f();
12182 void g() { f x; }
12183
12184 declares a function, not a variable. However:
12185
12186 typedef void f();
12187 template <typename T> void g() { T t; }
12188 template void g<f>();
12189
12190 is an attempt to declare a variable with function
12191 type. */
12192 error ("variable %qD has function type",
12193 /* R is not yet sufficiently initialized, so we
12194 just use its name. */
12195 DECL_NAME (r));
12196 RETURN (error_mark_node);
12197 }
12198 type = complete_type (type);
12199 /* Wait until cp_finish_decl to set this again, to handle
12200 circular dependency (template/instantiate6.C). */
12201 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12202 type = check_var_type (DECL_NAME (r), type);
12203
12204 if (DECL_HAS_VALUE_EXPR_P (t))
12205 {
12206 tree ve = DECL_VALUE_EXPR (t);
12207 ve = tsubst_expr (ve, args, complain, in_decl,
12208 /*constant_expression_p=*/false);
12209 if (REFERENCE_REF_P (ve))
12210 {
12211 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12212 ve = TREE_OPERAND (ve, 0);
12213 }
12214 SET_DECL_VALUE_EXPR (r, ve);
12215 }
12216 if (CP_DECL_THREAD_LOCAL_P (r)
12217 && !processing_template_decl)
12218 set_decl_tls_model (r, decl_default_tls_model (r));
12219 }
12220 else if (DECL_SELF_REFERENCE_P (t))
12221 SET_DECL_SELF_REFERENCE_P (r);
12222 TREE_TYPE (r) = type;
12223 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12224 DECL_CONTEXT (r) = ctx;
12225 /* Clear out the mangled name and RTL for the instantiation. */
12226 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12227 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12228 SET_DECL_RTL (r, NULL);
12229 /* The initializer must not be expanded until it is required;
12230 see [temp.inst]. */
12231 DECL_INITIAL (r) = NULL_TREE;
12232 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12233 SET_DECL_RTL (r, NULL);
12234 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12235 if (VAR_P (r))
12236 {
12237 /* Possibly limit visibility based on template args. */
12238 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12239 if (DECL_VISIBILITY_SPECIFIED (t))
12240 {
12241 DECL_VISIBILITY_SPECIFIED (r) = 0;
12242 DECL_ATTRIBUTES (r)
12243 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12244 }
12245 determine_visibility (r);
12246 }
12247
12248 if (!local_p)
12249 {
12250 /* A static data member declaration is always marked
12251 external when it is declared in-class, even if an
12252 initializer is present. We mimic the non-template
12253 processing here. */
12254 DECL_EXTERNAL (r) = 1;
12255 if (DECL_NAMESPACE_SCOPE_P (t))
12256 DECL_NOT_REALLY_EXTERN (r) = 1;
12257
12258 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12259 SET_DECL_IMPLICIT_INSTANTIATION (r);
12260 register_specialization (r, gen_tmpl, argvec, false, hash);
12261 }
12262 else if (!cp_unevaluated_operand)
12263 register_local_specialization (r, t);
12264
12265 DECL_CHAIN (r) = NULL_TREE;
12266
12267 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12268 /*flags=*/0,
12269 args, complain, in_decl);
12270
12271 /* Preserve a typedef that names a type. */
12272 if (is_typedef_decl (r))
12273 {
12274 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12275 set_underlying_type (r);
12276 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12277 /* An alias template specialization can be dependent
12278 even if its underlying type is not. */
12279 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12280 }
12281
12282 layout_decl (r, 0);
12283 }
12284 break;
12285
12286 default:
12287 gcc_unreachable ();
12288 }
12289 #undef RETURN
12290
12291 out:
12292 /* Restore the file and line information. */
12293 input_location = saved_loc;
12294
12295 return r;
12296 }
12297
12298 /* Substitute into the ARG_TYPES of a function type.
12299 If END is a TREE_CHAIN, leave it and any following types
12300 un-substituted. */
12301
12302 static tree
12303 tsubst_arg_types (tree arg_types,
12304 tree args,
12305 tree end,
12306 tsubst_flags_t complain,
12307 tree in_decl)
12308 {
12309 tree remaining_arg_types;
12310 tree type = NULL_TREE;
12311 int i = 1;
12312 tree expanded_args = NULL_TREE;
12313 tree default_arg;
12314
12315 if (!arg_types || arg_types == void_list_node || arg_types == end)
12316 return arg_types;
12317
12318 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12319 args, end, complain, in_decl);
12320 if (remaining_arg_types == error_mark_node)
12321 return error_mark_node;
12322
12323 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12324 {
12325 /* For a pack expansion, perform substitution on the
12326 entire expression. Later on, we'll handle the arguments
12327 one-by-one. */
12328 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12329 args, complain, in_decl);
12330
12331 if (TREE_CODE (expanded_args) == TREE_VEC)
12332 /* So that we'll spin through the parameters, one by one. */
12333 i = TREE_VEC_LENGTH (expanded_args);
12334 else
12335 {
12336 /* We only partially substituted into the parameter
12337 pack. Our type is TYPE_PACK_EXPANSION. */
12338 type = expanded_args;
12339 expanded_args = NULL_TREE;
12340 }
12341 }
12342
12343 while (i > 0) {
12344 --i;
12345
12346 if (expanded_args)
12347 type = TREE_VEC_ELT (expanded_args, i);
12348 else if (!type)
12349 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12350
12351 if (type == error_mark_node)
12352 return error_mark_node;
12353 if (VOID_TYPE_P (type))
12354 {
12355 if (complain & tf_error)
12356 {
12357 error ("invalid parameter type %qT", type);
12358 if (in_decl)
12359 error ("in declaration %q+D", in_decl);
12360 }
12361 return error_mark_node;
12362 }
12363 /* DR 657. */
12364 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12365 return error_mark_node;
12366
12367 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12368 top-level qualifiers as required. */
12369 type = cv_unqualified (type_decays_to (type));
12370
12371 /* We do not substitute into default arguments here. The standard
12372 mandates that they be instantiated only when needed, which is
12373 done in build_over_call. */
12374 default_arg = TREE_PURPOSE (arg_types);
12375
12376 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12377 {
12378 /* We've instantiated a template before its default arguments
12379 have been parsed. This can happen for a nested template
12380 class, and is not an error unless we require the default
12381 argument in a call of this function. */
12382 remaining_arg_types =
12383 tree_cons (default_arg, type, remaining_arg_types);
12384 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12385 }
12386 else
12387 remaining_arg_types =
12388 hash_tree_cons (default_arg, type, remaining_arg_types);
12389 }
12390
12391 return remaining_arg_types;
12392 }
12393
12394 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12395 *not* handle the exception-specification for FNTYPE, because the
12396 initial substitution of explicitly provided template parameters
12397 during argument deduction forbids substitution into the
12398 exception-specification:
12399
12400 [temp.deduct]
12401
12402 All references in the function type of the function template to the
12403 corresponding template parameters are replaced by the specified tem-
12404 plate argument values. If a substitution in a template parameter or
12405 in the function type of the function template results in an invalid
12406 type, type deduction fails. [Note: The equivalent substitution in
12407 exception specifications is done only when the function is instanti-
12408 ated, at which point a program is ill-formed if the substitution
12409 results in an invalid type.] */
12410
12411 static tree
12412 tsubst_function_type (tree t,
12413 tree args,
12414 tsubst_flags_t complain,
12415 tree in_decl)
12416 {
12417 tree return_type;
12418 tree arg_types = NULL_TREE;
12419 tree fntype;
12420
12421 /* The TYPE_CONTEXT is not used for function/method types. */
12422 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12423
12424 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12425 failure. */
12426 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12427
12428 if (late_return_type_p)
12429 {
12430 /* Substitute the argument types. */
12431 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12432 complain, in_decl);
12433 if (arg_types == error_mark_node)
12434 return error_mark_node;
12435
12436 tree save_ccp = current_class_ptr;
12437 tree save_ccr = current_class_ref;
12438 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12439 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12440 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12441 if (do_inject)
12442 {
12443 /* DR 1207: 'this' is in scope in the trailing return type. */
12444 inject_this_parameter (this_type, cp_type_quals (this_type));
12445 }
12446
12447 /* Substitute the return type. */
12448 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12449
12450 if (do_inject)
12451 {
12452 current_class_ptr = save_ccp;
12453 current_class_ref = save_ccr;
12454 }
12455 }
12456 else
12457 /* Substitute the return type. */
12458 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12459
12460 if (return_type == error_mark_node)
12461 return error_mark_node;
12462 /* DR 486 clarifies that creation of a function type with an
12463 invalid return type is a deduction failure. */
12464 if (TREE_CODE (return_type) == ARRAY_TYPE
12465 || TREE_CODE (return_type) == FUNCTION_TYPE)
12466 {
12467 if (complain & tf_error)
12468 {
12469 if (TREE_CODE (return_type) == ARRAY_TYPE)
12470 error ("function returning an array");
12471 else
12472 error ("function returning a function");
12473 }
12474 return error_mark_node;
12475 }
12476 /* And DR 657. */
12477 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12478 return error_mark_node;
12479
12480 if (!late_return_type_p)
12481 {
12482 /* Substitute the argument types. */
12483 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12484 complain, in_decl);
12485 if (arg_types == error_mark_node)
12486 return error_mark_node;
12487 }
12488
12489 /* Construct a new type node and return it. */
12490 if (TREE_CODE (t) == FUNCTION_TYPE)
12491 {
12492 fntype = build_function_type (return_type, arg_types);
12493 fntype = apply_memfn_quals (fntype,
12494 type_memfn_quals (t),
12495 type_memfn_rqual (t));
12496 }
12497 else
12498 {
12499 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12500 /* Don't pick up extra function qualifiers from the basetype. */
12501 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12502 if (! MAYBE_CLASS_TYPE_P (r))
12503 {
12504 /* [temp.deduct]
12505
12506 Type deduction may fail for any of the following
12507 reasons:
12508
12509 -- Attempting to create "pointer to member of T" when T
12510 is not a class type. */
12511 if (complain & tf_error)
12512 error ("creating pointer to member function of non-class type %qT",
12513 r);
12514 return error_mark_node;
12515 }
12516
12517 fntype = build_method_type_directly (r, return_type,
12518 TREE_CHAIN (arg_types));
12519 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12520 }
12521 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12522
12523 if (late_return_type_p)
12524 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12525
12526 return fntype;
12527 }
12528
12529 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12530 ARGS into that specification, and return the substituted
12531 specification. If there is no specification, return NULL_TREE. */
12532
12533 static tree
12534 tsubst_exception_specification (tree fntype,
12535 tree args,
12536 tsubst_flags_t complain,
12537 tree in_decl,
12538 bool defer_ok)
12539 {
12540 tree specs;
12541 tree new_specs;
12542
12543 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12544 new_specs = NULL_TREE;
12545 if (specs && TREE_PURPOSE (specs))
12546 {
12547 /* A noexcept-specifier. */
12548 tree expr = TREE_PURPOSE (specs);
12549 if (TREE_CODE (expr) == INTEGER_CST)
12550 new_specs = expr;
12551 else if (defer_ok)
12552 {
12553 /* Defer instantiation of noexcept-specifiers to avoid
12554 excessive instantiations (c++/49107). */
12555 new_specs = make_node (DEFERRED_NOEXCEPT);
12556 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12557 {
12558 /* We already partially instantiated this member template,
12559 so combine the new args with the old. */
12560 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12561 = DEFERRED_NOEXCEPT_PATTERN (expr);
12562 DEFERRED_NOEXCEPT_ARGS (new_specs)
12563 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12564 }
12565 else
12566 {
12567 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12568 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12569 }
12570 }
12571 else
12572 new_specs = tsubst_copy_and_build
12573 (expr, args, complain, in_decl, /*function_p=*/false,
12574 /*integral_constant_expression_p=*/true);
12575 new_specs = build_noexcept_spec (new_specs, complain);
12576 }
12577 else if (specs)
12578 {
12579 if (! TREE_VALUE (specs))
12580 new_specs = specs;
12581 else
12582 while (specs)
12583 {
12584 tree spec;
12585 int i, len = 1;
12586 tree expanded_specs = NULL_TREE;
12587
12588 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12589 {
12590 /* Expand the pack expansion type. */
12591 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12592 args, complain,
12593 in_decl);
12594
12595 if (expanded_specs == error_mark_node)
12596 return error_mark_node;
12597 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12598 len = TREE_VEC_LENGTH (expanded_specs);
12599 else
12600 {
12601 /* We're substituting into a member template, so
12602 we got a TYPE_PACK_EXPANSION back. Add that
12603 expansion and move on. */
12604 gcc_assert (TREE_CODE (expanded_specs)
12605 == TYPE_PACK_EXPANSION);
12606 new_specs = add_exception_specifier (new_specs,
12607 expanded_specs,
12608 complain);
12609 specs = TREE_CHAIN (specs);
12610 continue;
12611 }
12612 }
12613
12614 for (i = 0; i < len; ++i)
12615 {
12616 if (expanded_specs)
12617 spec = TREE_VEC_ELT (expanded_specs, i);
12618 else
12619 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12620 if (spec == error_mark_node)
12621 return spec;
12622 new_specs = add_exception_specifier (new_specs, spec,
12623 complain);
12624 }
12625
12626 specs = TREE_CHAIN (specs);
12627 }
12628 }
12629 return new_specs;
12630 }
12631
12632 /* Take the tree structure T and replace template parameters used
12633 therein with the argument vector ARGS. IN_DECL is an associated
12634 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12635 Issue error and warning messages under control of COMPLAIN. Note
12636 that we must be relatively non-tolerant of extensions here, in
12637 order to preserve conformance; if we allow substitutions that
12638 should not be allowed, we may allow argument deductions that should
12639 not succeed, and therefore report ambiguous overload situations
12640 where there are none. In theory, we could allow the substitution,
12641 but indicate that it should have failed, and allow our caller to
12642 make sure that the right thing happens, but we don't try to do this
12643 yet.
12644
12645 This function is used for dealing with types, decls and the like;
12646 for expressions, use tsubst_expr or tsubst_copy. */
12647
12648 tree
12649 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12650 {
12651 enum tree_code code;
12652 tree type, r = NULL_TREE;
12653
12654 if (t == NULL_TREE || t == error_mark_node
12655 || t == integer_type_node
12656 || t == void_type_node
12657 || t == char_type_node
12658 || t == unknown_type_node
12659 || TREE_CODE (t) == NAMESPACE_DECL
12660 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12661 return t;
12662
12663 if (DECL_P (t))
12664 return tsubst_decl (t, args, complain);
12665
12666 if (args == NULL_TREE)
12667 return t;
12668
12669 code = TREE_CODE (t);
12670
12671 if (code == IDENTIFIER_NODE)
12672 type = IDENTIFIER_TYPE_VALUE (t);
12673 else
12674 type = TREE_TYPE (t);
12675
12676 gcc_assert (type != unknown_type_node);
12677
12678 /* Reuse typedefs. We need to do this to handle dependent attributes,
12679 such as attribute aligned. */
12680 if (TYPE_P (t)
12681 && typedef_variant_p (t))
12682 {
12683 tree decl = TYPE_NAME (t);
12684
12685 if (alias_template_specialization_p (t))
12686 {
12687 /* DECL represents an alias template and we want to
12688 instantiate it. */
12689 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12690 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12691 r = instantiate_alias_template (tmpl, gen_args, complain);
12692 }
12693 else if (DECL_CLASS_SCOPE_P (decl)
12694 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12695 && uses_template_parms (DECL_CONTEXT (decl)))
12696 {
12697 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12698 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12699 r = retrieve_specialization (tmpl, gen_args, 0);
12700 }
12701 else if (DECL_FUNCTION_SCOPE_P (decl)
12702 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12703 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12704 r = retrieve_local_specialization (decl);
12705 else
12706 /* The typedef is from a non-template context. */
12707 return t;
12708
12709 if (r)
12710 {
12711 r = TREE_TYPE (r);
12712 r = cp_build_qualified_type_real
12713 (r, cp_type_quals (t) | cp_type_quals (r),
12714 complain | tf_ignore_bad_quals);
12715 return r;
12716 }
12717 else
12718 {
12719 /* We don't have an instantiation yet, so drop the typedef. */
12720 int quals = cp_type_quals (t);
12721 t = DECL_ORIGINAL_TYPE (decl);
12722 t = cp_build_qualified_type_real (t, quals,
12723 complain | tf_ignore_bad_quals);
12724 }
12725 }
12726
12727 if (type
12728 && code != TYPENAME_TYPE
12729 && code != TEMPLATE_TYPE_PARM
12730 && code != IDENTIFIER_NODE
12731 && code != FUNCTION_TYPE
12732 && code != METHOD_TYPE)
12733 type = tsubst (type, args, complain, in_decl);
12734 if (type == error_mark_node)
12735 return error_mark_node;
12736
12737 switch (code)
12738 {
12739 case RECORD_TYPE:
12740 case UNION_TYPE:
12741 case ENUMERAL_TYPE:
12742 return tsubst_aggr_type (t, args, complain, in_decl,
12743 /*entering_scope=*/0);
12744
12745 case ERROR_MARK:
12746 case IDENTIFIER_NODE:
12747 case VOID_TYPE:
12748 case REAL_TYPE:
12749 case COMPLEX_TYPE:
12750 case VECTOR_TYPE:
12751 case BOOLEAN_TYPE:
12752 case NULLPTR_TYPE:
12753 case LANG_TYPE:
12754 return t;
12755
12756 case INTEGER_TYPE:
12757 if (t == integer_type_node)
12758 return t;
12759
12760 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12761 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12762 return t;
12763
12764 {
12765 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12766
12767 max = tsubst_expr (omax, args, complain, in_decl,
12768 /*integral_constant_expression_p=*/false);
12769
12770 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12771 needed. */
12772 if (TREE_CODE (max) == NOP_EXPR
12773 && TREE_SIDE_EFFECTS (omax)
12774 && !TREE_TYPE (max))
12775 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12776
12777 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12778 with TREE_SIDE_EFFECTS that indicates this is not an integral
12779 constant expression. */
12780 if (processing_template_decl
12781 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12782 {
12783 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12784 TREE_SIDE_EFFECTS (max) = 1;
12785 }
12786
12787 return compute_array_index_type (NULL_TREE, max, complain);
12788 }
12789
12790 case TEMPLATE_TYPE_PARM:
12791 case TEMPLATE_TEMPLATE_PARM:
12792 case BOUND_TEMPLATE_TEMPLATE_PARM:
12793 case TEMPLATE_PARM_INDEX:
12794 {
12795 int idx;
12796 int level;
12797 int levels;
12798 tree arg = NULL_TREE;
12799
12800 /* Early in template argument deduction substitution, we don't
12801 want to reduce the level of 'auto', or it will be confused
12802 with a normal template parm in subsequent deduction. */
12803 if (is_auto (t) && (complain & tf_partial))
12804 return t;
12805
12806 r = NULL_TREE;
12807
12808 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12809 template_parm_level_and_index (t, &level, &idx);
12810
12811 levels = TMPL_ARGS_DEPTH (args);
12812 if (level <= levels
12813 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12814 {
12815 arg = TMPL_ARG (args, level, idx);
12816
12817 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12818 {
12819 /* See through ARGUMENT_PACK_SELECT arguments. */
12820 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12821 /* If the selected argument is an expansion E, that most
12822 likely means we were called from
12823 gen_elem_of_pack_expansion_instantiation during the
12824 substituting of pack an argument pack (which Ith
12825 element is a pack expansion, where I is
12826 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12827 In this case, the Ith element resulting from this
12828 substituting is going to be a pack expansion, which
12829 pattern is the pattern of E. Let's return the
12830 pattern of E, and
12831 gen_elem_of_pack_expansion_instantiation will
12832 build the resulting pack expansion from it. */
12833 if (PACK_EXPANSION_P (arg))
12834 {
12835 /* Make sure we aren't throwing away arg info. */
12836 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12837 arg = PACK_EXPANSION_PATTERN (arg);
12838 }
12839 }
12840 }
12841
12842 if (arg == error_mark_node)
12843 return error_mark_node;
12844 else if (arg != NULL_TREE)
12845 {
12846 if (ARGUMENT_PACK_P (arg))
12847 /* If ARG is an argument pack, we don't actually want to
12848 perform a substitution here, because substitutions
12849 for argument packs are only done
12850 element-by-element. We can get to this point when
12851 substituting the type of a non-type template
12852 parameter pack, when that type actually contains
12853 template parameter packs from an outer template, e.g.,
12854
12855 template<typename... Types> struct A {
12856 template<Types... Values> struct B { };
12857 }; */
12858 return t;
12859
12860 if (code == TEMPLATE_TYPE_PARM)
12861 {
12862 int quals;
12863 gcc_assert (TYPE_P (arg));
12864
12865 quals = cp_type_quals (arg) | cp_type_quals (t);
12866
12867 return cp_build_qualified_type_real
12868 (arg, quals, complain | tf_ignore_bad_quals);
12869 }
12870 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12871 {
12872 /* We are processing a type constructed from a
12873 template template parameter. */
12874 tree argvec = tsubst (TYPE_TI_ARGS (t),
12875 args, complain, in_decl);
12876 if (argvec == error_mark_node)
12877 return error_mark_node;
12878
12879 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12880 || TREE_CODE (arg) == TEMPLATE_DECL
12881 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12882
12883 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12884 /* Consider this code:
12885
12886 template <template <class> class Template>
12887 struct Internal {
12888 template <class Arg> using Bind = Template<Arg>;
12889 };
12890
12891 template <template <class> class Template, class Arg>
12892 using Instantiate = Template<Arg>; //#0
12893
12894 template <template <class> class Template,
12895 class Argument>
12896 using Bind =
12897 Instantiate<Internal<Template>::template Bind,
12898 Argument>; //#1
12899
12900 When #1 is parsed, the
12901 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12902 parameter `Template' in #0 matches the
12903 UNBOUND_CLASS_TEMPLATE representing the argument
12904 `Internal<Template>::template Bind'; We then want
12905 to assemble the type `Bind<Argument>' that can't
12906 be fully created right now, because
12907 `Internal<Template>' not being complete, the Bind
12908 template cannot be looked up in that context. So
12909 we need to "store" `Bind<Argument>' for later
12910 when the context of Bind becomes complete. Let's
12911 store that in a TYPENAME_TYPE. */
12912 return make_typename_type (TYPE_CONTEXT (arg),
12913 build_nt (TEMPLATE_ID_EXPR,
12914 TYPE_IDENTIFIER (arg),
12915 argvec),
12916 typename_type,
12917 complain);
12918
12919 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12920 are resolving nested-types in the signature of a
12921 member function templates. Otherwise ARG is a
12922 TEMPLATE_DECL and is the real template to be
12923 instantiated. */
12924 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12925 arg = TYPE_NAME (arg);
12926
12927 r = lookup_template_class (arg,
12928 argvec, in_decl,
12929 DECL_CONTEXT (arg),
12930 /*entering_scope=*/0,
12931 complain);
12932 return cp_build_qualified_type_real
12933 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12934 }
12935 else
12936 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12937 return convert_from_reference (unshare_expr (arg));
12938 }
12939
12940 if (level == 1)
12941 /* This can happen during the attempted tsubst'ing in
12942 unify. This means that we don't yet have any information
12943 about the template parameter in question. */
12944 return t;
12945
12946 /* If we get here, we must have been looking at a parm for a
12947 more deeply nested template. Make a new version of this
12948 template parameter, but with a lower level. */
12949 switch (code)
12950 {
12951 case TEMPLATE_TYPE_PARM:
12952 case TEMPLATE_TEMPLATE_PARM:
12953 case BOUND_TEMPLATE_TEMPLATE_PARM:
12954 if (cp_type_quals (t))
12955 {
12956 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12957 r = cp_build_qualified_type_real
12958 (r, cp_type_quals (t),
12959 complain | (code == TEMPLATE_TYPE_PARM
12960 ? tf_ignore_bad_quals : 0));
12961 }
12962 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
12963 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
12964 && (r = (TEMPLATE_PARM_DESCENDANTS
12965 (TEMPLATE_TYPE_PARM_INDEX (t))))
12966 && (r = TREE_TYPE (r))
12967 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
12968 /* Break infinite recursion when substituting the constraints
12969 of a constrained placeholder. */;
12970 else
12971 {
12972 r = copy_type (t);
12973 TEMPLATE_TYPE_PARM_INDEX (r)
12974 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12975 r, levels, args, complain);
12976 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12977 TYPE_MAIN_VARIANT (r) = r;
12978 TYPE_POINTER_TO (r) = NULL_TREE;
12979 TYPE_REFERENCE_TO (r) = NULL_TREE;
12980
12981 /* Propagate constraints on placeholders. */
12982 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
12983 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
12984 PLACEHOLDER_TYPE_CONSTRAINTS (r)
12985 = tsubst_constraint (constr, args, complain, in_decl);
12986
12987 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12988 /* We have reduced the level of the template
12989 template parameter, but not the levels of its
12990 template parameters, so canonical_type_parameter
12991 will not be able to find the canonical template
12992 template parameter for this level. Thus, we
12993 require structural equality checking to compare
12994 TEMPLATE_TEMPLATE_PARMs. */
12995 SET_TYPE_STRUCTURAL_EQUALITY (r);
12996 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12997 SET_TYPE_STRUCTURAL_EQUALITY (r);
12998 else
12999 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13000
13001 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13002 {
13003 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
13004 complain, in_decl);
13005 if (argvec == error_mark_node)
13006 return error_mark_node;
13007
13008 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13009 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
13010 }
13011 }
13012 break;
13013
13014 case TEMPLATE_PARM_INDEX:
13015 r = reduce_template_parm_level (t, type, levels, args, complain);
13016 break;
13017
13018 default:
13019 gcc_unreachable ();
13020 }
13021
13022 return r;
13023 }
13024
13025 case TREE_LIST:
13026 {
13027 tree purpose, value, chain;
13028
13029 if (t == void_list_node)
13030 return t;
13031
13032 purpose = TREE_PURPOSE (t);
13033 if (purpose)
13034 {
13035 purpose = tsubst (purpose, args, complain, in_decl);
13036 if (purpose == error_mark_node)
13037 return error_mark_node;
13038 }
13039 value = TREE_VALUE (t);
13040 if (value)
13041 {
13042 value = tsubst (value, args, complain, in_decl);
13043 if (value == error_mark_node)
13044 return error_mark_node;
13045 }
13046 chain = TREE_CHAIN (t);
13047 if (chain && chain != void_type_node)
13048 {
13049 chain = tsubst (chain, args, complain, in_decl);
13050 if (chain == error_mark_node)
13051 return error_mark_node;
13052 }
13053 if (purpose == TREE_PURPOSE (t)
13054 && value == TREE_VALUE (t)
13055 && chain == TREE_CHAIN (t))
13056 return t;
13057 return hash_tree_cons (purpose, value, chain);
13058 }
13059
13060 case TREE_BINFO:
13061 /* We should never be tsubsting a binfo. */
13062 gcc_unreachable ();
13063
13064 case TREE_VEC:
13065 /* A vector of template arguments. */
13066 gcc_assert (!type);
13067 return tsubst_template_args (t, args, complain, in_decl);
13068
13069 case POINTER_TYPE:
13070 case REFERENCE_TYPE:
13071 {
13072 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13073 return t;
13074
13075 /* [temp.deduct]
13076
13077 Type deduction may fail for any of the following
13078 reasons:
13079
13080 -- Attempting to create a pointer to reference type.
13081 -- Attempting to create a reference to a reference type or
13082 a reference to void.
13083
13084 Core issue 106 says that creating a reference to a reference
13085 during instantiation is no longer a cause for failure. We
13086 only enforce this check in strict C++98 mode. */
13087 if ((TREE_CODE (type) == REFERENCE_TYPE
13088 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13089 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13090 {
13091 static location_t last_loc;
13092
13093 /* We keep track of the last time we issued this error
13094 message to avoid spewing a ton of messages during a
13095 single bad template instantiation. */
13096 if (complain & tf_error
13097 && last_loc != input_location)
13098 {
13099 if (VOID_TYPE_P (type))
13100 error ("forming reference to void");
13101 else if (code == POINTER_TYPE)
13102 error ("forming pointer to reference type %qT", type);
13103 else
13104 error ("forming reference to reference type %qT", type);
13105 last_loc = input_location;
13106 }
13107
13108 return error_mark_node;
13109 }
13110 else if (TREE_CODE (type) == FUNCTION_TYPE
13111 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13112 || type_memfn_rqual (type) != REF_QUAL_NONE))
13113 {
13114 if (complain & tf_error)
13115 {
13116 if (code == POINTER_TYPE)
13117 error ("forming pointer to qualified function type %qT",
13118 type);
13119 else
13120 error ("forming reference to qualified function type %qT",
13121 type);
13122 }
13123 return error_mark_node;
13124 }
13125 else if (code == POINTER_TYPE)
13126 {
13127 r = build_pointer_type (type);
13128 if (TREE_CODE (type) == METHOD_TYPE)
13129 r = build_ptrmemfunc_type (r);
13130 }
13131 else if (TREE_CODE (type) == REFERENCE_TYPE)
13132 /* In C++0x, during template argument substitution, when there is an
13133 attempt to create a reference to a reference type, reference
13134 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13135
13136 "If a template-argument for a template-parameter T names a type
13137 that is a reference to a type A, an attempt to create the type
13138 'lvalue reference to cv T' creates the type 'lvalue reference to
13139 A,' while an attempt to create the type type rvalue reference to
13140 cv T' creates the type T"
13141 */
13142 r = cp_build_reference_type
13143 (TREE_TYPE (type),
13144 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13145 else
13146 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13147 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13148
13149 if (r != error_mark_node)
13150 /* Will this ever be needed for TYPE_..._TO values? */
13151 layout_type (r);
13152
13153 return r;
13154 }
13155 case OFFSET_TYPE:
13156 {
13157 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13158 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13159 {
13160 /* [temp.deduct]
13161
13162 Type deduction may fail for any of the following
13163 reasons:
13164
13165 -- Attempting to create "pointer to member of T" when T
13166 is not a class type. */
13167 if (complain & tf_error)
13168 error ("creating pointer to member of non-class type %qT", r);
13169 return error_mark_node;
13170 }
13171 if (TREE_CODE (type) == REFERENCE_TYPE)
13172 {
13173 if (complain & tf_error)
13174 error ("creating pointer to member reference type %qT", type);
13175 return error_mark_node;
13176 }
13177 if (VOID_TYPE_P (type))
13178 {
13179 if (complain & tf_error)
13180 error ("creating pointer to member of type void");
13181 return error_mark_node;
13182 }
13183 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13184 if (TREE_CODE (type) == FUNCTION_TYPE)
13185 {
13186 /* The type of the implicit object parameter gets its
13187 cv-qualifiers from the FUNCTION_TYPE. */
13188 tree memptr;
13189 tree method_type
13190 = build_memfn_type (type, r, type_memfn_quals (type),
13191 type_memfn_rqual (type));
13192 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13193 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13194 complain);
13195 }
13196 else
13197 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13198 cp_type_quals (t),
13199 complain);
13200 }
13201 case FUNCTION_TYPE:
13202 case METHOD_TYPE:
13203 {
13204 tree fntype;
13205 tree specs;
13206 fntype = tsubst_function_type (t, args, complain, in_decl);
13207 if (fntype == error_mark_node)
13208 return error_mark_node;
13209
13210 /* Substitute the exception specification. */
13211 specs = tsubst_exception_specification (t, args, complain,
13212 in_decl, /*defer_ok*/true);
13213 if (specs == error_mark_node)
13214 return error_mark_node;
13215 if (specs)
13216 fntype = build_exception_variant (fntype, specs);
13217 return fntype;
13218 }
13219 case ARRAY_TYPE:
13220 {
13221 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13222 if (domain == error_mark_node)
13223 return error_mark_node;
13224
13225 /* As an optimization, we avoid regenerating the array type if
13226 it will obviously be the same as T. */
13227 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13228 return t;
13229
13230 /* These checks should match the ones in create_array_type_for_decl.
13231
13232 [temp.deduct]
13233
13234 The deduction may fail for any of the following reasons:
13235
13236 -- Attempting to create an array with an element type that
13237 is void, a function type, or a reference type, or [DR337]
13238 an abstract class type. */
13239 if (VOID_TYPE_P (type)
13240 || TREE_CODE (type) == FUNCTION_TYPE
13241 || (TREE_CODE (type) == ARRAY_TYPE
13242 && TYPE_DOMAIN (type) == NULL_TREE)
13243 || TREE_CODE (type) == REFERENCE_TYPE)
13244 {
13245 if (complain & tf_error)
13246 error ("creating array of %qT", type);
13247 return error_mark_node;
13248 }
13249
13250 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13251 return error_mark_node;
13252
13253 r = build_cplus_array_type (type, domain);
13254
13255 if (TYPE_USER_ALIGN (t))
13256 {
13257 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13258 TYPE_USER_ALIGN (r) = 1;
13259 }
13260
13261 return r;
13262 }
13263
13264 case TYPENAME_TYPE:
13265 {
13266 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13267 in_decl, /*entering_scope=*/1);
13268 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13269 complain, in_decl);
13270
13271 if (ctx == error_mark_node || f == error_mark_node)
13272 return error_mark_node;
13273
13274 if (!MAYBE_CLASS_TYPE_P (ctx))
13275 {
13276 if (complain & tf_error)
13277 error ("%qT is not a class, struct, or union type", ctx);
13278 return error_mark_node;
13279 }
13280 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13281 {
13282 /* Normally, make_typename_type does not require that the CTX
13283 have complete type in order to allow things like:
13284
13285 template <class T> struct S { typename S<T>::X Y; };
13286
13287 But, such constructs have already been resolved by this
13288 point, so here CTX really should have complete type, unless
13289 it's a partial instantiation. */
13290 ctx = complete_type (ctx);
13291 if (!COMPLETE_TYPE_P (ctx))
13292 {
13293 if (complain & tf_error)
13294 cxx_incomplete_type_error (NULL_TREE, ctx);
13295 return error_mark_node;
13296 }
13297 }
13298
13299 f = make_typename_type (ctx, f, typename_type,
13300 complain | tf_keep_type_decl);
13301 if (f == error_mark_node)
13302 return f;
13303 if (TREE_CODE (f) == TYPE_DECL)
13304 {
13305 complain |= tf_ignore_bad_quals;
13306 f = TREE_TYPE (f);
13307 }
13308
13309 if (TREE_CODE (f) != TYPENAME_TYPE)
13310 {
13311 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13312 {
13313 if (complain & tf_error)
13314 error ("%qT resolves to %qT, which is not an enumeration type",
13315 t, f);
13316 else
13317 return error_mark_node;
13318 }
13319 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13320 {
13321 if (complain & tf_error)
13322 error ("%qT resolves to %qT, which is is not a class type",
13323 t, f);
13324 else
13325 return error_mark_node;
13326 }
13327 }
13328
13329 return cp_build_qualified_type_real
13330 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13331 }
13332
13333 case UNBOUND_CLASS_TEMPLATE:
13334 {
13335 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13336 in_decl, /*entering_scope=*/1);
13337 tree name = TYPE_IDENTIFIER (t);
13338 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13339
13340 if (ctx == error_mark_node || name == error_mark_node)
13341 return error_mark_node;
13342
13343 if (parm_list)
13344 parm_list = tsubst_template_parms (parm_list, args, complain);
13345 return make_unbound_class_template (ctx, name, parm_list, complain);
13346 }
13347
13348 case TYPEOF_TYPE:
13349 {
13350 tree type;
13351
13352 ++cp_unevaluated_operand;
13353 ++c_inhibit_evaluation_warnings;
13354
13355 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13356 complain, in_decl,
13357 /*integral_constant_expression_p=*/false);
13358
13359 --cp_unevaluated_operand;
13360 --c_inhibit_evaluation_warnings;
13361
13362 type = finish_typeof (type);
13363 return cp_build_qualified_type_real (type,
13364 cp_type_quals (t)
13365 | cp_type_quals (type),
13366 complain);
13367 }
13368
13369 case DECLTYPE_TYPE:
13370 {
13371 tree type;
13372
13373 ++cp_unevaluated_operand;
13374 ++c_inhibit_evaluation_warnings;
13375
13376 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13377 complain|tf_decltype, in_decl,
13378 /*function_p*/false,
13379 /*integral_constant_expression*/false);
13380
13381 --cp_unevaluated_operand;
13382 --c_inhibit_evaluation_warnings;
13383
13384 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13385 type = lambda_capture_field_type (type,
13386 DECLTYPE_FOR_INIT_CAPTURE (t));
13387 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13388 type = lambda_proxy_type (type);
13389 else
13390 {
13391 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13392 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13393 && EXPR_P (type))
13394 /* In a template ~id could be either a complement expression
13395 or an unqualified-id naming a destructor; if instantiating
13396 it produces an expression, it's not an id-expression or
13397 member access. */
13398 id = false;
13399 type = finish_decltype_type (type, id, complain);
13400 }
13401 return cp_build_qualified_type_real (type,
13402 cp_type_quals (t)
13403 | cp_type_quals (type),
13404 complain | tf_ignore_bad_quals);
13405 }
13406
13407 case UNDERLYING_TYPE:
13408 {
13409 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13410 complain, in_decl);
13411 return finish_underlying_type (type);
13412 }
13413
13414 case TYPE_ARGUMENT_PACK:
13415 case NONTYPE_ARGUMENT_PACK:
13416 {
13417 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13418 tree packed_out =
13419 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13420 args,
13421 complain,
13422 in_decl);
13423 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13424
13425 /* For template nontype argument packs, also substitute into
13426 the type. */
13427 if (code == NONTYPE_ARGUMENT_PACK)
13428 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13429
13430 return r;
13431 }
13432 break;
13433
13434 case VOID_CST:
13435 case INTEGER_CST:
13436 case REAL_CST:
13437 case STRING_CST:
13438 case PLUS_EXPR:
13439 case MINUS_EXPR:
13440 case NEGATE_EXPR:
13441 case NOP_EXPR:
13442 case INDIRECT_REF:
13443 case ADDR_EXPR:
13444 case CALL_EXPR:
13445 case ARRAY_REF:
13446 case SCOPE_REF:
13447 /* We should use one of the expression tsubsts for these codes. */
13448 gcc_unreachable ();
13449
13450 default:
13451 sorry ("use of %qs in template", get_tree_code_name (code));
13452 return error_mark_node;
13453 }
13454 }
13455
13456 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13457 type of the expression on the left-hand side of the "." or "->"
13458 operator. */
13459
13460 static tree
13461 tsubst_baselink (tree baselink, tree object_type,
13462 tree args, tsubst_flags_t complain, tree in_decl)
13463 {
13464 tree name;
13465 tree qualifying_scope;
13466 tree fns;
13467 tree optype;
13468 tree template_args = 0;
13469 bool template_id_p = false;
13470 bool qualified = BASELINK_QUALIFIED_P (baselink);
13471
13472 /* A baselink indicates a function from a base class. Both the
13473 BASELINK_ACCESS_BINFO and the base class referenced may
13474 indicate bases of the template class, rather than the
13475 instantiated class. In addition, lookups that were not
13476 ambiguous before may be ambiguous now. Therefore, we perform
13477 the lookup again. */
13478 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13479 qualifying_scope = tsubst (qualifying_scope, args,
13480 complain, in_decl);
13481 fns = BASELINK_FUNCTIONS (baselink);
13482 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13483 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13484 {
13485 template_id_p = true;
13486 template_args = TREE_OPERAND (fns, 1);
13487 fns = TREE_OPERAND (fns, 0);
13488 if (template_args)
13489 template_args = tsubst_template_args (template_args, args,
13490 complain, in_decl);
13491 }
13492 name = DECL_NAME (get_first_fn (fns));
13493 if (IDENTIFIER_TYPENAME_P (name))
13494 name = mangle_conv_op_name_for_type (optype);
13495 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13496 if (!baselink)
13497 return error_mark_node;
13498
13499 /* If lookup found a single function, mark it as used at this
13500 point. (If it lookup found multiple functions the one selected
13501 later by overload resolution will be marked as used at that
13502 point.) */
13503 if (BASELINK_P (baselink))
13504 fns = BASELINK_FUNCTIONS (baselink);
13505 if (!template_id_p && !really_overloaded_fn (fns)
13506 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13507 return error_mark_node;
13508
13509 /* Add back the template arguments, if present. */
13510 if (BASELINK_P (baselink) && template_id_p)
13511 BASELINK_FUNCTIONS (baselink)
13512 = build_nt (TEMPLATE_ID_EXPR,
13513 BASELINK_FUNCTIONS (baselink),
13514 template_args);
13515 /* Update the conversion operator type. */
13516 BASELINK_OPTYPE (baselink) = optype;
13517
13518 if (!object_type)
13519 object_type = current_class_type;
13520
13521 if (qualified)
13522 baselink = adjust_result_of_qualified_name_lookup (baselink,
13523 qualifying_scope,
13524 object_type);
13525 return baselink;
13526 }
13527
13528 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13529 true if the qualified-id will be a postfix-expression in-and-of
13530 itself; false if more of the postfix-expression follows the
13531 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13532 of "&". */
13533
13534 static tree
13535 tsubst_qualified_id (tree qualified_id, tree args,
13536 tsubst_flags_t complain, tree in_decl,
13537 bool done, bool address_p)
13538 {
13539 tree expr;
13540 tree scope;
13541 tree name;
13542 bool is_template;
13543 tree template_args;
13544 location_t loc = UNKNOWN_LOCATION;
13545
13546 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13547
13548 /* Figure out what name to look up. */
13549 name = TREE_OPERAND (qualified_id, 1);
13550 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13551 {
13552 is_template = true;
13553 loc = EXPR_LOCATION (name);
13554 template_args = TREE_OPERAND (name, 1);
13555 if (template_args)
13556 template_args = tsubst_template_args (template_args, args,
13557 complain, in_decl);
13558 name = TREE_OPERAND (name, 0);
13559 }
13560 else
13561 {
13562 is_template = false;
13563 template_args = NULL_TREE;
13564 }
13565
13566 /* Substitute into the qualifying scope. When there are no ARGS, we
13567 are just trying to simplify a non-dependent expression. In that
13568 case the qualifying scope may be dependent, and, in any case,
13569 substituting will not help. */
13570 scope = TREE_OPERAND (qualified_id, 0);
13571 if (args)
13572 {
13573 scope = tsubst (scope, args, complain, in_decl);
13574 expr = tsubst_copy (name, args, complain, in_decl);
13575 }
13576 else
13577 expr = name;
13578
13579 if (dependent_scope_p (scope))
13580 {
13581 if (is_template)
13582 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13583 return build_qualified_name (NULL_TREE, scope, expr,
13584 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13585 }
13586
13587 if (!BASELINK_P (name) && !DECL_P (expr))
13588 {
13589 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13590 {
13591 /* A BIT_NOT_EXPR is used to represent a destructor. */
13592 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13593 {
13594 error ("qualifying type %qT does not match destructor name ~%qT",
13595 scope, TREE_OPERAND (expr, 0));
13596 expr = error_mark_node;
13597 }
13598 else
13599 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13600 /*is_type_p=*/0, false);
13601 }
13602 else
13603 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13604 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13605 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13606 {
13607 if (complain & tf_error)
13608 {
13609 error ("dependent-name %qE is parsed as a non-type, but "
13610 "instantiation yields a type", qualified_id);
13611 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13612 }
13613 return error_mark_node;
13614 }
13615 }
13616
13617 if (DECL_P (expr))
13618 {
13619 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13620 scope);
13621 /* Remember that there was a reference to this entity. */
13622 if (!mark_used (expr, complain) && !(complain & tf_error))
13623 return error_mark_node;
13624 }
13625
13626 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13627 {
13628 if (complain & tf_error)
13629 qualified_name_lookup_error (scope,
13630 TREE_OPERAND (qualified_id, 1),
13631 expr, input_location);
13632 return error_mark_node;
13633 }
13634
13635 if (is_template)
13636 expr = lookup_template_function (expr, template_args);
13637
13638 if (expr == error_mark_node && complain & tf_error)
13639 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13640 expr, input_location);
13641 else if (TYPE_P (scope))
13642 {
13643 expr = (adjust_result_of_qualified_name_lookup
13644 (expr, scope, current_nonlambda_class_type ()));
13645 expr = (finish_qualified_id_expr
13646 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13647 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13648 /*template_arg_p=*/false, complain));
13649 }
13650
13651 /* Expressions do not generally have reference type. */
13652 if (TREE_CODE (expr) != SCOPE_REF
13653 /* However, if we're about to form a pointer-to-member, we just
13654 want the referenced member referenced. */
13655 && TREE_CODE (expr) != OFFSET_REF)
13656 expr = convert_from_reference (expr);
13657
13658 return expr;
13659 }
13660
13661 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13662 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13663 for tsubst. */
13664
13665 static tree
13666 tsubst_init (tree init, tree decl, tree args,
13667 tsubst_flags_t complain, tree in_decl)
13668 {
13669 if (!init)
13670 return NULL_TREE;
13671
13672 init = tsubst_expr (init, args, complain, in_decl, false);
13673
13674 if (!init)
13675 {
13676 /* If we had an initializer but it
13677 instantiated to nothing,
13678 value-initialize the object. This will
13679 only occur when the initializer was a
13680 pack expansion where the parameter packs
13681 used in that expansion were of length
13682 zero. */
13683 init = build_value_init (TREE_TYPE (decl),
13684 complain);
13685 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13686 init = get_target_expr_sfinae (init, complain);
13687 }
13688
13689 return init;
13690 }
13691
13692 /* Like tsubst, but deals with expressions. This function just replaces
13693 template parms; to finish processing the resultant expression, use
13694 tsubst_copy_and_build or tsubst_expr. */
13695
13696 static tree
13697 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13698 {
13699 enum tree_code code;
13700 tree r;
13701
13702 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13703 return t;
13704
13705 code = TREE_CODE (t);
13706
13707 switch (code)
13708 {
13709 case PARM_DECL:
13710 r = retrieve_local_specialization (t);
13711
13712 if (r == NULL_TREE)
13713 {
13714 /* We get here for a use of 'this' in an NSDMI. */
13715 if (DECL_NAME (t) == this_identifier
13716 && current_function_decl
13717 && DECL_CONSTRUCTOR_P (current_function_decl))
13718 return current_class_ptr;
13719
13720 /* This can happen for a parameter name used later in a function
13721 declaration (such as in a late-specified return type). Just
13722 make a dummy decl, since it's only used for its type. */
13723 gcc_assert (cp_unevaluated_operand != 0);
13724 r = tsubst_decl (t, args, complain);
13725 /* Give it the template pattern as its context; its true context
13726 hasn't been instantiated yet and this is good enough for
13727 mangling. */
13728 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13729 }
13730
13731 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13732 r = ARGUMENT_PACK_SELECT_ARG (r);
13733 if (!mark_used (r, complain) && !(complain & tf_error))
13734 return error_mark_node;
13735 return r;
13736
13737 case CONST_DECL:
13738 {
13739 tree enum_type;
13740 tree v;
13741
13742 if (DECL_TEMPLATE_PARM_P (t))
13743 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13744 /* There is no need to substitute into namespace-scope
13745 enumerators. */
13746 if (DECL_NAMESPACE_SCOPE_P (t))
13747 return t;
13748 /* If ARGS is NULL, then T is known to be non-dependent. */
13749 if (args == NULL_TREE)
13750 return scalar_constant_value (t);
13751
13752 /* Unfortunately, we cannot just call lookup_name here.
13753 Consider:
13754
13755 template <int I> int f() {
13756 enum E { a = I };
13757 struct S { void g() { E e = a; } };
13758 };
13759
13760 When we instantiate f<7>::S::g(), say, lookup_name is not
13761 clever enough to find f<7>::a. */
13762 enum_type
13763 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13764 /*entering_scope=*/0);
13765
13766 for (v = TYPE_VALUES (enum_type);
13767 v != NULL_TREE;
13768 v = TREE_CHAIN (v))
13769 if (TREE_PURPOSE (v) == DECL_NAME (t))
13770 return TREE_VALUE (v);
13771
13772 /* We didn't find the name. That should never happen; if
13773 name-lookup found it during preliminary parsing, we
13774 should find it again here during instantiation. */
13775 gcc_unreachable ();
13776 }
13777 return t;
13778
13779 case FIELD_DECL:
13780 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13781 {
13782 /* Check for a local specialization set up by
13783 tsubst_pack_expansion. */
13784 if (tree r = retrieve_local_specialization (t))
13785 {
13786 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13787 r = ARGUMENT_PACK_SELECT_ARG (r);
13788 return r;
13789 }
13790
13791 /* When retrieving a capture pack from a generic lambda, remove the
13792 lambda call op's own template argument list from ARGS. Only the
13793 template arguments active for the closure type should be used to
13794 retrieve the pack specialization. */
13795 if (LAMBDA_FUNCTION_P (current_function_decl)
13796 && (template_class_depth (DECL_CONTEXT (t))
13797 != TMPL_ARGS_DEPTH (args)))
13798 args = strip_innermost_template_args (args, 1);
13799
13800 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13801 tsubst_decl put in the hash table. */
13802 return retrieve_specialization (t, args, 0);
13803 }
13804
13805 if (DECL_CONTEXT (t))
13806 {
13807 tree ctx;
13808
13809 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13810 /*entering_scope=*/1);
13811 if (ctx != DECL_CONTEXT (t))
13812 {
13813 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13814 if (!r)
13815 {
13816 if (complain & tf_error)
13817 error ("using invalid field %qD", t);
13818 return error_mark_node;
13819 }
13820 return r;
13821 }
13822 }
13823
13824 return t;
13825
13826 case VAR_DECL:
13827 case FUNCTION_DECL:
13828 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13829 r = tsubst (t, args, complain, in_decl);
13830 else if (local_variable_p (t))
13831 {
13832 r = retrieve_local_specialization (t);
13833 if (r == NULL_TREE)
13834 {
13835 /* First try name lookup to find the instantiation. */
13836 r = lookup_name (DECL_NAME (t));
13837 if (r)
13838 {
13839 /* Make sure that the one we found is the one we want. */
13840 tree ctx = DECL_CONTEXT (t);
13841 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
13842 ctx = tsubst (ctx, args, complain, in_decl);
13843 if (ctx != DECL_CONTEXT (r))
13844 r = NULL_TREE;
13845 }
13846
13847 if (r)
13848 /* OK */;
13849 else
13850 {
13851 /* This can happen for a variable used in a
13852 late-specified return type of a local lambda, or for a
13853 local static or constant. Building a new VAR_DECL
13854 should be OK in all those cases. */
13855 r = tsubst_decl (t, args, complain);
13856 if (decl_maybe_constant_var_p (r))
13857 {
13858 /* We can't call cp_finish_decl, so handle the
13859 initializer by hand. */
13860 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13861 complain, in_decl);
13862 if (!processing_template_decl)
13863 init = maybe_constant_init (init);
13864 if (processing_template_decl
13865 ? potential_constant_expression (init)
13866 : reduced_constant_expression_p (init))
13867 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13868 = TREE_CONSTANT (r) = true;
13869 DECL_INITIAL (r) = init;
13870 }
13871 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13872 || decl_constant_var_p (r)
13873 || errorcount || sorrycount);
13874 if (!processing_template_decl)
13875 {
13876 if (TREE_STATIC (r))
13877 rest_of_decl_compilation (r, toplevel_bindings_p (),
13878 at_eof);
13879 else
13880 r = process_outer_var_ref (r, complain);
13881 }
13882 }
13883 /* Remember this for subsequent uses. */
13884 if (local_specializations)
13885 register_local_specialization (r, t);
13886 }
13887 }
13888 else
13889 r = t;
13890 if (!mark_used (r, complain) && !(complain & tf_error))
13891 return error_mark_node;
13892 return r;
13893
13894 case NAMESPACE_DECL:
13895 return t;
13896
13897 case OVERLOAD:
13898 /* An OVERLOAD will always be a non-dependent overload set; an
13899 overload set from function scope will just be represented with an
13900 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13901 gcc_assert (!uses_template_parms (t));
13902 return t;
13903
13904 case BASELINK:
13905 return tsubst_baselink (t, current_nonlambda_class_type (),
13906 args, complain, in_decl);
13907
13908 case TEMPLATE_DECL:
13909 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13910 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13911 args, complain, in_decl);
13912 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13913 return tsubst (t, args, complain, in_decl);
13914 else if (DECL_CLASS_SCOPE_P (t)
13915 && uses_template_parms (DECL_CONTEXT (t)))
13916 {
13917 /* Template template argument like the following example need
13918 special treatment:
13919
13920 template <template <class> class TT> struct C {};
13921 template <class T> struct D {
13922 template <class U> struct E {};
13923 C<E> c; // #1
13924 };
13925 D<int> d; // #2
13926
13927 We are processing the template argument `E' in #1 for
13928 the template instantiation #2. Originally, `E' is a
13929 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13930 have to substitute this with one having context `D<int>'. */
13931
13932 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13933 return lookup_field (context, DECL_NAME(t), 0, false);
13934 }
13935 else
13936 /* Ordinary template template argument. */
13937 return t;
13938
13939 case CAST_EXPR:
13940 case REINTERPRET_CAST_EXPR:
13941 case CONST_CAST_EXPR:
13942 case STATIC_CAST_EXPR:
13943 case DYNAMIC_CAST_EXPR:
13944 case IMPLICIT_CONV_EXPR:
13945 case CONVERT_EXPR:
13946 case NOP_EXPR:
13947 {
13948 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13949 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13950 return build1 (code, type, op0);
13951 }
13952
13953 case SIZEOF_EXPR:
13954 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13955 {
13956 tree expanded, op = TREE_OPERAND (t, 0);
13957 int len = 0;
13958
13959 if (SIZEOF_EXPR_TYPE_P (t))
13960 op = TREE_TYPE (op);
13961
13962 ++cp_unevaluated_operand;
13963 ++c_inhibit_evaluation_warnings;
13964 /* We only want to compute the number of arguments. */
13965 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13966 --cp_unevaluated_operand;
13967 --c_inhibit_evaluation_warnings;
13968
13969 if (TREE_CODE (expanded) == TREE_VEC)
13970 len = TREE_VEC_LENGTH (expanded);
13971
13972 if (expanded == error_mark_node)
13973 return error_mark_node;
13974 else if (PACK_EXPANSION_P (expanded)
13975 || (TREE_CODE (expanded) == TREE_VEC
13976 && len > 0
13977 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13978 {
13979 if (TREE_CODE (expanded) == TREE_VEC)
13980 expanded = TREE_VEC_ELT (expanded, len - 1);
13981 else
13982 PACK_EXPANSION_SIZEOF_P (expanded) = true;
13983
13984 if (TYPE_P (expanded))
13985 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13986 complain & tf_error);
13987 else
13988 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13989 complain & tf_error);
13990 }
13991 else
13992 return build_int_cst (size_type_node, len);
13993 }
13994 if (SIZEOF_EXPR_TYPE_P (t))
13995 {
13996 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13997 args, complain, in_decl);
13998 r = build1 (NOP_EXPR, r, error_mark_node);
13999 r = build1 (SIZEOF_EXPR,
14000 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14001 SIZEOF_EXPR_TYPE_P (r) = 1;
14002 return r;
14003 }
14004 /* Fall through */
14005
14006 case INDIRECT_REF:
14007 case NEGATE_EXPR:
14008 case TRUTH_NOT_EXPR:
14009 case BIT_NOT_EXPR:
14010 case ADDR_EXPR:
14011 case UNARY_PLUS_EXPR: /* Unary + */
14012 case ALIGNOF_EXPR:
14013 case AT_ENCODE_EXPR:
14014 case ARROW_EXPR:
14015 case THROW_EXPR:
14016 case TYPEID_EXPR:
14017 case REALPART_EXPR:
14018 case IMAGPART_EXPR:
14019 case PAREN_EXPR:
14020 {
14021 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14022 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14023 return build1 (code, type, op0);
14024 }
14025
14026 case COMPONENT_REF:
14027 {
14028 tree object;
14029 tree name;
14030
14031 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14032 name = TREE_OPERAND (t, 1);
14033 if (TREE_CODE (name) == BIT_NOT_EXPR)
14034 {
14035 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14036 complain, in_decl);
14037 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14038 }
14039 else if (TREE_CODE (name) == SCOPE_REF
14040 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14041 {
14042 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14043 complain, in_decl);
14044 name = TREE_OPERAND (name, 1);
14045 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14046 complain, in_decl);
14047 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14048 name = build_qualified_name (/*type=*/NULL_TREE,
14049 base, name,
14050 /*template_p=*/false);
14051 }
14052 else if (BASELINK_P (name))
14053 name = tsubst_baselink (name,
14054 non_reference (TREE_TYPE (object)),
14055 args, complain,
14056 in_decl);
14057 else
14058 name = tsubst_copy (name, args, complain, in_decl);
14059 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14060 }
14061
14062 case PLUS_EXPR:
14063 case MINUS_EXPR:
14064 case MULT_EXPR:
14065 case TRUNC_DIV_EXPR:
14066 case CEIL_DIV_EXPR:
14067 case FLOOR_DIV_EXPR:
14068 case ROUND_DIV_EXPR:
14069 case EXACT_DIV_EXPR:
14070 case BIT_AND_EXPR:
14071 case BIT_IOR_EXPR:
14072 case BIT_XOR_EXPR:
14073 case TRUNC_MOD_EXPR:
14074 case FLOOR_MOD_EXPR:
14075 case TRUTH_ANDIF_EXPR:
14076 case TRUTH_ORIF_EXPR:
14077 case TRUTH_AND_EXPR:
14078 case TRUTH_OR_EXPR:
14079 case RSHIFT_EXPR:
14080 case LSHIFT_EXPR:
14081 case RROTATE_EXPR:
14082 case LROTATE_EXPR:
14083 case EQ_EXPR:
14084 case NE_EXPR:
14085 case MAX_EXPR:
14086 case MIN_EXPR:
14087 case LE_EXPR:
14088 case GE_EXPR:
14089 case LT_EXPR:
14090 case GT_EXPR:
14091 case COMPOUND_EXPR:
14092 case DOTSTAR_EXPR:
14093 case MEMBER_REF:
14094 case PREDECREMENT_EXPR:
14095 case PREINCREMENT_EXPR:
14096 case POSTDECREMENT_EXPR:
14097 case POSTINCREMENT_EXPR:
14098 {
14099 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14100 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14101 return build_nt (code, op0, op1);
14102 }
14103
14104 case SCOPE_REF:
14105 {
14106 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14107 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14108 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14109 QUALIFIED_NAME_IS_TEMPLATE (t));
14110 }
14111
14112 case ARRAY_REF:
14113 {
14114 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14115 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14116 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14117 }
14118
14119 case CALL_EXPR:
14120 {
14121 int n = VL_EXP_OPERAND_LENGTH (t);
14122 tree result = build_vl_exp (CALL_EXPR, n);
14123 int i;
14124 for (i = 0; i < n; i++)
14125 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14126 complain, in_decl);
14127 return result;
14128 }
14129
14130 case COND_EXPR:
14131 case MODOP_EXPR:
14132 case PSEUDO_DTOR_EXPR:
14133 case VEC_PERM_EXPR:
14134 {
14135 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14136 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14137 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14138 r = build_nt (code, op0, op1, op2);
14139 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14140 return r;
14141 }
14142
14143 case NEW_EXPR:
14144 {
14145 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14146 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14147 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14148 r = build_nt (code, op0, op1, op2);
14149 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14150 return r;
14151 }
14152
14153 case DELETE_EXPR:
14154 {
14155 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14156 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14157 r = build_nt (code, op0, op1);
14158 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14159 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14160 return r;
14161 }
14162
14163 case TEMPLATE_ID_EXPR:
14164 {
14165 /* Substituted template arguments */
14166 tree fn = TREE_OPERAND (t, 0);
14167 tree targs = TREE_OPERAND (t, 1);
14168
14169 fn = tsubst_copy (fn, args, complain, in_decl);
14170 if (targs)
14171 targs = tsubst_template_args (targs, args, complain, in_decl);
14172
14173 return lookup_template_function (fn, targs);
14174 }
14175
14176 case TREE_LIST:
14177 {
14178 tree purpose, value, chain;
14179
14180 if (t == void_list_node)
14181 return t;
14182
14183 purpose = TREE_PURPOSE (t);
14184 if (purpose)
14185 purpose = tsubst_copy (purpose, args, complain, in_decl);
14186 value = TREE_VALUE (t);
14187 if (value)
14188 value = tsubst_copy (value, args, complain, in_decl);
14189 chain = TREE_CHAIN (t);
14190 if (chain && chain != void_type_node)
14191 chain = tsubst_copy (chain, args, complain, in_decl);
14192 if (purpose == TREE_PURPOSE (t)
14193 && value == TREE_VALUE (t)
14194 && chain == TREE_CHAIN (t))
14195 return t;
14196 return tree_cons (purpose, value, chain);
14197 }
14198
14199 case RECORD_TYPE:
14200 case UNION_TYPE:
14201 case ENUMERAL_TYPE:
14202 case INTEGER_TYPE:
14203 case TEMPLATE_TYPE_PARM:
14204 case TEMPLATE_TEMPLATE_PARM:
14205 case BOUND_TEMPLATE_TEMPLATE_PARM:
14206 case TEMPLATE_PARM_INDEX:
14207 case POINTER_TYPE:
14208 case REFERENCE_TYPE:
14209 case OFFSET_TYPE:
14210 case FUNCTION_TYPE:
14211 case METHOD_TYPE:
14212 case ARRAY_TYPE:
14213 case TYPENAME_TYPE:
14214 case UNBOUND_CLASS_TEMPLATE:
14215 case TYPEOF_TYPE:
14216 case DECLTYPE_TYPE:
14217 case TYPE_DECL:
14218 return tsubst (t, args, complain, in_decl);
14219
14220 case USING_DECL:
14221 t = DECL_NAME (t);
14222 /* Fall through. */
14223 case IDENTIFIER_NODE:
14224 if (IDENTIFIER_TYPENAME_P (t))
14225 {
14226 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14227 return mangle_conv_op_name_for_type (new_type);
14228 }
14229 else
14230 return t;
14231
14232 case CONSTRUCTOR:
14233 /* This is handled by tsubst_copy_and_build. */
14234 gcc_unreachable ();
14235
14236 case VA_ARG_EXPR:
14237 {
14238 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14239 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14240 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14241 }
14242
14243 case CLEANUP_POINT_EXPR:
14244 /* We shouldn't have built any of these during initial template
14245 generation. Instead, they should be built during instantiation
14246 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14247 gcc_unreachable ();
14248
14249 case OFFSET_REF:
14250 {
14251 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14252 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14253 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14254 r = build2 (code, type, op0, op1);
14255 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14256 if (!mark_used (TREE_OPERAND (r, 1), complain)
14257 && !(complain & tf_error))
14258 return error_mark_node;
14259 return r;
14260 }
14261
14262 case EXPR_PACK_EXPANSION:
14263 error ("invalid use of pack expansion expression");
14264 return error_mark_node;
14265
14266 case NONTYPE_ARGUMENT_PACK:
14267 error ("use %<...%> to expand argument pack");
14268 return error_mark_node;
14269
14270 case VOID_CST:
14271 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14272 return t;
14273
14274 case INTEGER_CST:
14275 case REAL_CST:
14276 case STRING_CST:
14277 case COMPLEX_CST:
14278 {
14279 /* Instantiate any typedefs in the type. */
14280 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14281 r = fold_convert (type, t);
14282 gcc_assert (TREE_CODE (r) == code);
14283 return r;
14284 }
14285
14286 case PTRMEM_CST:
14287 /* These can sometimes show up in a partial instantiation, but never
14288 involve template parms. */
14289 gcc_assert (!uses_template_parms (t));
14290 return t;
14291
14292 case UNARY_LEFT_FOLD_EXPR:
14293 return tsubst_unary_left_fold (t, args, complain, in_decl);
14294 case UNARY_RIGHT_FOLD_EXPR:
14295 return tsubst_unary_right_fold (t, args, complain, in_decl);
14296 case BINARY_LEFT_FOLD_EXPR:
14297 return tsubst_binary_left_fold (t, args, complain, in_decl);
14298 case BINARY_RIGHT_FOLD_EXPR:
14299 return tsubst_binary_right_fold (t, args, complain, in_decl);
14300
14301 default:
14302 /* We shouldn't get here, but keep going if !flag_checking. */
14303 if (flag_checking)
14304 gcc_unreachable ();
14305 return t;
14306 }
14307 }
14308
14309 /* Helper function for tsubst_omp_clauses, used for instantiation of
14310 OMP_CLAUSE_DECL of clauses. */
14311
14312 static tree
14313 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14314 tree in_decl)
14315 {
14316 if (decl == NULL_TREE)
14317 return NULL_TREE;
14318
14319 /* Handle an OpenMP array section represented as a TREE_LIST (or
14320 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14321 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14322 TREE_LIST. We can handle it exactly the same as an array section
14323 (purpose, value, and a chain), even though the nomenclature
14324 (low_bound, length, etc) is different. */
14325 if (TREE_CODE (decl) == TREE_LIST)
14326 {
14327 tree low_bound
14328 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14329 /*integral_constant_expression_p=*/false);
14330 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14331 /*integral_constant_expression_p=*/false);
14332 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14333 in_decl);
14334 if (TREE_PURPOSE (decl) == low_bound
14335 && TREE_VALUE (decl) == length
14336 && TREE_CHAIN (decl) == chain)
14337 return decl;
14338 tree ret = tree_cons (low_bound, length, chain);
14339 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14340 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14341 return ret;
14342 }
14343 tree ret = tsubst_expr (decl, args, complain, in_decl,
14344 /*integral_constant_expression_p=*/false);
14345 /* Undo convert_from_reference tsubst_expr could have called. */
14346 if (decl
14347 && REFERENCE_REF_P (ret)
14348 && !REFERENCE_REF_P (decl))
14349 ret = TREE_OPERAND (ret, 0);
14350 return ret;
14351 }
14352
14353 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14354
14355 static tree
14356 tsubst_omp_clauses (tree clauses, bool declare_simd, bool allow_fields,
14357 tree args, tsubst_flags_t complain, tree in_decl)
14358 {
14359 tree new_clauses = NULL_TREE, nc, oc;
14360 tree linear_no_step = NULL_TREE;
14361
14362 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14363 {
14364 nc = copy_node (oc);
14365 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14366 new_clauses = nc;
14367
14368 switch (OMP_CLAUSE_CODE (nc))
14369 {
14370 case OMP_CLAUSE_LASTPRIVATE:
14371 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14372 {
14373 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14374 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14375 in_decl, /*integral_constant_expression_p=*/false);
14376 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14377 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14378 }
14379 /* FALLTHRU */
14380 case OMP_CLAUSE_PRIVATE:
14381 case OMP_CLAUSE_SHARED:
14382 case OMP_CLAUSE_FIRSTPRIVATE:
14383 case OMP_CLAUSE_COPYIN:
14384 case OMP_CLAUSE_COPYPRIVATE:
14385 case OMP_CLAUSE_UNIFORM:
14386 case OMP_CLAUSE_DEPEND:
14387 case OMP_CLAUSE_FROM:
14388 case OMP_CLAUSE_TO:
14389 case OMP_CLAUSE_MAP:
14390 case OMP_CLAUSE_USE_DEVICE:
14391 case OMP_CLAUSE_USE_DEVICE_PTR:
14392 case OMP_CLAUSE_IS_DEVICE_PTR:
14393 OMP_CLAUSE_DECL (nc)
14394 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14395 in_decl);
14396 break;
14397 case OMP_CLAUSE_IF:
14398 case OMP_CLAUSE_NUM_THREADS:
14399 case OMP_CLAUSE_SCHEDULE:
14400 case OMP_CLAUSE_COLLAPSE:
14401 case OMP_CLAUSE_FINAL:
14402 case OMP_CLAUSE_DEVICE:
14403 case OMP_CLAUSE_DIST_SCHEDULE:
14404 case OMP_CLAUSE_NUM_TEAMS:
14405 case OMP_CLAUSE_THREAD_LIMIT:
14406 case OMP_CLAUSE_SAFELEN:
14407 case OMP_CLAUSE_SIMDLEN:
14408 case OMP_CLAUSE_NUM_TASKS:
14409 case OMP_CLAUSE_GRAINSIZE:
14410 case OMP_CLAUSE_PRIORITY:
14411 case OMP_CLAUSE_ORDERED:
14412 case OMP_CLAUSE_HINT:
14413 case OMP_CLAUSE_NUM_GANGS:
14414 case OMP_CLAUSE_NUM_WORKERS:
14415 case OMP_CLAUSE_VECTOR_LENGTH:
14416 case OMP_CLAUSE_WORKER:
14417 case OMP_CLAUSE_VECTOR:
14418 case OMP_CLAUSE_ASYNC:
14419 case OMP_CLAUSE_WAIT:
14420 OMP_CLAUSE_OPERAND (nc, 0)
14421 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14422 in_decl, /*integral_constant_expression_p=*/false);
14423 break;
14424 case OMP_CLAUSE_REDUCTION:
14425 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14426 {
14427 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14428 if (TREE_CODE (placeholder) == SCOPE_REF)
14429 {
14430 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14431 complain, in_decl);
14432 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14433 = build_qualified_name (NULL_TREE, scope,
14434 TREE_OPERAND (placeholder, 1),
14435 false);
14436 }
14437 else
14438 gcc_assert (identifier_p (placeholder));
14439 }
14440 OMP_CLAUSE_DECL (nc)
14441 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14442 in_decl);
14443 break;
14444 case OMP_CLAUSE_GANG:
14445 case OMP_CLAUSE_ALIGNED:
14446 OMP_CLAUSE_DECL (nc)
14447 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14448 in_decl);
14449 OMP_CLAUSE_OPERAND (nc, 1)
14450 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14451 in_decl, /*integral_constant_expression_p=*/false);
14452 break;
14453 case OMP_CLAUSE_LINEAR:
14454 OMP_CLAUSE_DECL (nc)
14455 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14456 in_decl);
14457 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14458 {
14459 gcc_assert (!linear_no_step);
14460 linear_no_step = nc;
14461 }
14462 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14463 OMP_CLAUSE_LINEAR_STEP (nc)
14464 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14465 complain, in_decl);
14466 else
14467 OMP_CLAUSE_LINEAR_STEP (nc)
14468 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14469 in_decl,
14470 /*integral_constant_expression_p=*/false);
14471 break;
14472 case OMP_CLAUSE_NOWAIT:
14473 case OMP_CLAUSE_DEFAULT:
14474 case OMP_CLAUSE_UNTIED:
14475 case OMP_CLAUSE_MERGEABLE:
14476 case OMP_CLAUSE_INBRANCH:
14477 case OMP_CLAUSE_NOTINBRANCH:
14478 case OMP_CLAUSE_PROC_BIND:
14479 case OMP_CLAUSE_FOR:
14480 case OMP_CLAUSE_PARALLEL:
14481 case OMP_CLAUSE_SECTIONS:
14482 case OMP_CLAUSE_TASKGROUP:
14483 case OMP_CLAUSE_NOGROUP:
14484 case OMP_CLAUSE_THREADS:
14485 case OMP_CLAUSE_SIMD:
14486 case OMP_CLAUSE_DEFAULTMAP:
14487 case OMP_CLAUSE_INDEPENDENT:
14488 case OMP_CLAUSE_AUTO:
14489 case OMP_CLAUSE_SEQ:
14490 break;
14491 case OMP_CLAUSE_TILE:
14492 {
14493 tree lnc, loc;
14494 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14495 loc = OMP_CLAUSE_TILE_LIST (oc);
14496 loc;
14497 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14498 {
14499 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14500 complain, in_decl, false);
14501 }
14502 }
14503 break;
14504 default:
14505 gcc_unreachable ();
14506 }
14507 if (allow_fields)
14508 switch (OMP_CLAUSE_CODE (nc))
14509 {
14510 case OMP_CLAUSE_SHARED:
14511 case OMP_CLAUSE_PRIVATE:
14512 case OMP_CLAUSE_FIRSTPRIVATE:
14513 case OMP_CLAUSE_LASTPRIVATE:
14514 case OMP_CLAUSE_COPYPRIVATE:
14515 case OMP_CLAUSE_LINEAR:
14516 case OMP_CLAUSE_REDUCTION:
14517 case OMP_CLAUSE_USE_DEVICE:
14518 case OMP_CLAUSE_USE_DEVICE_PTR:
14519 case OMP_CLAUSE_IS_DEVICE_PTR:
14520 /* tsubst_expr on SCOPE_REF results in returning
14521 finish_non_static_data_member result. Undo that here. */
14522 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14523 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14524 == IDENTIFIER_NODE))
14525 {
14526 tree t = OMP_CLAUSE_DECL (nc);
14527 tree v = t;
14528 while (v)
14529 switch (TREE_CODE (v))
14530 {
14531 case COMPONENT_REF:
14532 case MEM_REF:
14533 case INDIRECT_REF:
14534 CASE_CONVERT:
14535 case POINTER_PLUS_EXPR:
14536 v = TREE_OPERAND (v, 0);
14537 continue;
14538 case PARM_DECL:
14539 if (DECL_CONTEXT (v) == current_function_decl
14540 && DECL_ARTIFICIAL (v)
14541 && DECL_NAME (v) == this_identifier)
14542 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14543 /* FALLTHRU */
14544 default:
14545 v = NULL_TREE;
14546 break;
14547 }
14548 }
14549 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14550 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14551 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14552 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14553 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14554 {
14555 tree decl = OMP_CLAUSE_DECL (nc);
14556 if (VAR_P (decl))
14557 {
14558 if (!DECL_LANG_SPECIFIC (decl))
14559 retrofit_lang_decl (decl);
14560 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14561 }
14562 }
14563 break;
14564 default:
14565 break;
14566 }
14567 }
14568
14569 new_clauses = nreverse (new_clauses);
14570 if (!declare_simd)
14571 {
14572 new_clauses = finish_omp_clauses (new_clauses, allow_fields);
14573 if (linear_no_step)
14574 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14575 if (nc == linear_no_step)
14576 {
14577 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14578 break;
14579 }
14580 }
14581 return new_clauses;
14582 }
14583
14584 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14585
14586 static tree
14587 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14588 tree in_decl)
14589 {
14590 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14591
14592 tree purpose, value, chain;
14593
14594 if (t == NULL)
14595 return t;
14596
14597 if (TREE_CODE (t) != TREE_LIST)
14598 return tsubst_copy_and_build (t, args, complain, in_decl,
14599 /*function_p=*/false,
14600 /*integral_constant_expression_p=*/false);
14601
14602 if (t == void_list_node)
14603 return t;
14604
14605 purpose = TREE_PURPOSE (t);
14606 if (purpose)
14607 purpose = RECUR (purpose);
14608 value = TREE_VALUE (t);
14609 if (value)
14610 {
14611 if (TREE_CODE (value) != LABEL_DECL)
14612 value = RECUR (value);
14613 else
14614 {
14615 value = lookup_label (DECL_NAME (value));
14616 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14617 TREE_USED (value) = 1;
14618 }
14619 }
14620 chain = TREE_CHAIN (t);
14621 if (chain && chain != void_type_node)
14622 chain = RECUR (chain);
14623 return tree_cons (purpose, value, chain);
14624 #undef RECUR
14625 }
14626
14627 /* Used to temporarily communicate the list of #pragma omp parallel
14628 clauses to #pragma omp for instantiation if they are combined
14629 together. */
14630
14631 static tree *omp_parallel_combined_clauses;
14632
14633 /* Substitute one OMP_FOR iterator. */
14634
14635 static void
14636 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14637 tree initv, tree condv, tree incrv, tree *clauses,
14638 tree args, tsubst_flags_t complain, tree in_decl,
14639 bool integral_constant_expression_p)
14640 {
14641 #define RECUR(NODE) \
14642 tsubst_expr ((NODE), args, complain, in_decl, \
14643 integral_constant_expression_p)
14644 tree decl, init, cond, incr;
14645
14646 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14647 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14648
14649 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14650 {
14651 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14652 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14653 }
14654
14655 decl = TREE_OPERAND (init, 0);
14656 init = TREE_OPERAND (init, 1);
14657 tree decl_expr = NULL_TREE;
14658 if (init && TREE_CODE (init) == DECL_EXPR)
14659 {
14660 /* We need to jump through some hoops to handle declarations in the
14661 for-init-statement, since we might need to handle auto deduction,
14662 but we need to keep control of initialization. */
14663 decl_expr = init;
14664 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14665 decl = tsubst_decl (decl, args, complain);
14666 }
14667 else
14668 {
14669 if (TREE_CODE (decl) == SCOPE_REF)
14670 {
14671 decl = RECUR (decl);
14672 if (TREE_CODE (decl) == COMPONENT_REF)
14673 {
14674 tree v = decl;
14675 while (v)
14676 switch (TREE_CODE (v))
14677 {
14678 case COMPONENT_REF:
14679 case MEM_REF:
14680 case INDIRECT_REF:
14681 CASE_CONVERT:
14682 case POINTER_PLUS_EXPR:
14683 v = TREE_OPERAND (v, 0);
14684 continue;
14685 case PARM_DECL:
14686 if (DECL_CONTEXT (v) == current_function_decl
14687 && DECL_ARTIFICIAL (v)
14688 && DECL_NAME (v) == this_identifier)
14689 {
14690 decl = TREE_OPERAND (decl, 1);
14691 decl = omp_privatize_field (decl, false);
14692 }
14693 /* FALLTHRU */
14694 default:
14695 v = NULL_TREE;
14696 break;
14697 }
14698 }
14699 }
14700 else
14701 decl = RECUR (decl);
14702 }
14703 init = RECUR (init);
14704
14705 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14706 if (auto_node && init)
14707 TREE_TYPE (decl)
14708 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14709
14710 gcc_assert (!type_dependent_expression_p (decl));
14711
14712 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14713 {
14714 if (decl_expr)
14715 {
14716 /* Declare the variable, but don't let that initialize it. */
14717 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14718 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14719 RECUR (decl_expr);
14720 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14721 }
14722
14723 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14724 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14725 if (TREE_CODE (incr) == MODIFY_EXPR)
14726 {
14727 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14728 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14729 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14730 NOP_EXPR, rhs, complain);
14731 }
14732 else
14733 incr = RECUR (incr);
14734 TREE_VEC_ELT (declv, i) = decl;
14735 TREE_VEC_ELT (initv, i) = init;
14736 TREE_VEC_ELT (condv, i) = cond;
14737 TREE_VEC_ELT (incrv, i) = incr;
14738 return;
14739 }
14740
14741 if (decl_expr)
14742 {
14743 /* Declare and initialize the variable. */
14744 RECUR (decl_expr);
14745 init = NULL_TREE;
14746 }
14747 else if (init)
14748 {
14749 tree *pc;
14750 int j;
14751 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
14752 {
14753 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
14754 {
14755 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
14756 && OMP_CLAUSE_DECL (*pc) == decl)
14757 break;
14758 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
14759 && OMP_CLAUSE_DECL (*pc) == decl)
14760 {
14761 if (j)
14762 break;
14763 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14764 tree c = *pc;
14765 *pc = OMP_CLAUSE_CHAIN (c);
14766 OMP_CLAUSE_CHAIN (c) = *clauses;
14767 *clauses = c;
14768 }
14769 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
14770 && OMP_CLAUSE_DECL (*pc) == decl)
14771 {
14772 error ("iteration variable %qD should not be firstprivate",
14773 decl);
14774 *pc = OMP_CLAUSE_CHAIN (*pc);
14775 }
14776 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
14777 && OMP_CLAUSE_DECL (*pc) == decl)
14778 {
14779 error ("iteration variable %qD should not be reduction",
14780 decl);
14781 *pc = OMP_CLAUSE_CHAIN (*pc);
14782 }
14783 else
14784 pc = &OMP_CLAUSE_CHAIN (*pc);
14785 }
14786 if (*pc)
14787 break;
14788 }
14789 if (*pc == NULL_TREE)
14790 {
14791 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14792 OMP_CLAUSE_DECL (c) = decl;
14793 c = finish_omp_clauses (c, true);
14794 if (c)
14795 {
14796 OMP_CLAUSE_CHAIN (c) = *clauses;
14797 *clauses = c;
14798 }
14799 }
14800 }
14801 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14802 if (COMPARISON_CLASS_P (cond))
14803 {
14804 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14805 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14806 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14807 }
14808 else
14809 cond = RECUR (cond);
14810 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14811 switch (TREE_CODE (incr))
14812 {
14813 case PREINCREMENT_EXPR:
14814 case PREDECREMENT_EXPR:
14815 case POSTINCREMENT_EXPR:
14816 case POSTDECREMENT_EXPR:
14817 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14818 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14819 break;
14820 case MODIFY_EXPR:
14821 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14822 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14823 {
14824 tree rhs = TREE_OPERAND (incr, 1);
14825 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14826 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14827 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14828 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14829 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14830 rhs0, rhs1));
14831 }
14832 else
14833 incr = RECUR (incr);
14834 break;
14835 case MODOP_EXPR:
14836 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14837 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14838 {
14839 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14840 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14841 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
14842 TREE_TYPE (decl), lhs,
14843 RECUR (TREE_OPERAND (incr, 2))));
14844 }
14845 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
14846 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
14847 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
14848 {
14849 tree rhs = TREE_OPERAND (incr, 2);
14850 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14851 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14852 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14853 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14854 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14855 rhs0, rhs1));
14856 }
14857 else
14858 incr = RECUR (incr);
14859 break;
14860 default:
14861 incr = RECUR (incr);
14862 break;
14863 }
14864
14865 TREE_VEC_ELT (declv, i) = decl;
14866 TREE_VEC_ELT (initv, i) = init;
14867 TREE_VEC_ELT (condv, i) = cond;
14868 TREE_VEC_ELT (incrv, i) = incr;
14869 #undef RECUR
14870 }
14871
14872 /* Helper function of tsubst_expr, find OMP_TEAMS inside
14873 of OMP_TARGET's body. */
14874
14875 static tree
14876 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
14877 {
14878 *walk_subtrees = 0;
14879 switch (TREE_CODE (*tp))
14880 {
14881 case OMP_TEAMS:
14882 return *tp;
14883 case BIND_EXPR:
14884 case STATEMENT_LIST:
14885 *walk_subtrees = 1;
14886 break;
14887 default:
14888 break;
14889 }
14890 return NULL_TREE;
14891 }
14892
14893 /* Like tsubst_copy for expressions, etc. but also does semantic
14894 processing. */
14895
14896 tree
14897 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
14898 bool integral_constant_expression_p)
14899 {
14900 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
14901 #define RECUR(NODE) \
14902 tsubst_expr ((NODE), args, complain, in_decl, \
14903 integral_constant_expression_p)
14904
14905 tree stmt, tmp;
14906 tree r;
14907 location_t loc;
14908
14909 if (t == NULL_TREE || t == error_mark_node)
14910 return t;
14911
14912 loc = input_location;
14913 if (EXPR_HAS_LOCATION (t))
14914 input_location = EXPR_LOCATION (t);
14915 if (STATEMENT_CODE_P (TREE_CODE (t)))
14916 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
14917
14918 switch (TREE_CODE (t))
14919 {
14920 case STATEMENT_LIST:
14921 {
14922 tree_stmt_iterator i;
14923 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
14924 RECUR (tsi_stmt (i));
14925 break;
14926 }
14927
14928 case CTOR_INITIALIZER:
14929 finish_mem_initializers (tsubst_initializer_list
14930 (TREE_OPERAND (t, 0), args));
14931 break;
14932
14933 case RETURN_EXPR:
14934 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
14935 break;
14936
14937 case EXPR_STMT:
14938 tmp = RECUR (EXPR_STMT_EXPR (t));
14939 if (EXPR_STMT_STMT_EXPR_RESULT (t))
14940 finish_stmt_expr_expr (tmp, cur_stmt_expr);
14941 else
14942 finish_expr_stmt (tmp);
14943 break;
14944
14945 case USING_STMT:
14946 do_using_directive (USING_STMT_NAMESPACE (t));
14947 break;
14948
14949 case DECL_EXPR:
14950 {
14951 tree decl, pattern_decl;
14952 tree init;
14953
14954 pattern_decl = decl = DECL_EXPR_DECL (t);
14955 if (TREE_CODE (decl) == LABEL_DECL)
14956 finish_label_decl (DECL_NAME (decl));
14957 else if (TREE_CODE (decl) == USING_DECL)
14958 {
14959 tree scope = USING_DECL_SCOPE (decl);
14960 tree name = DECL_NAME (decl);
14961 tree decl;
14962
14963 scope = tsubst (scope, args, complain, in_decl);
14964 decl = lookup_qualified_name (scope, name,
14965 /*is_type_p=*/false,
14966 /*complain=*/false);
14967 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
14968 qualified_name_lookup_error (scope, name, decl, input_location);
14969 else
14970 do_local_using_decl (decl, scope, name);
14971 }
14972 else if (DECL_PACK_P (decl))
14973 {
14974 /* Don't build up decls for a variadic capture proxy, we'll
14975 instantiate the elements directly as needed. */
14976 break;
14977 }
14978 else
14979 {
14980 init = DECL_INITIAL (decl);
14981 decl = tsubst (decl, args, complain, in_decl);
14982 if (decl != error_mark_node)
14983 {
14984 /* By marking the declaration as instantiated, we avoid
14985 trying to instantiate it. Since instantiate_decl can't
14986 handle local variables, and since we've already done
14987 all that needs to be done, that's the right thing to
14988 do. */
14989 if (VAR_P (decl))
14990 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14991 if (VAR_P (decl)
14992 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
14993 /* Anonymous aggregates are a special case. */
14994 finish_anon_union (decl);
14995 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
14996 {
14997 DECL_CONTEXT (decl) = current_function_decl;
14998 if (DECL_NAME (decl) == this_identifier)
14999 {
15000 tree lam = DECL_CONTEXT (current_function_decl);
15001 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15002 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15003 }
15004 insert_capture_proxy (decl);
15005 }
15006 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15007 /* We already did a pushtag. */;
15008 else if (TREE_CODE (decl) == FUNCTION_DECL
15009 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15010 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15011 {
15012 DECL_CONTEXT (decl) = NULL_TREE;
15013 pushdecl (decl);
15014 DECL_CONTEXT (decl) = current_function_decl;
15015 cp_check_omp_declare_reduction (decl);
15016 }
15017 else
15018 {
15019 int const_init = false;
15020 maybe_push_decl (decl);
15021 if (VAR_P (decl)
15022 && DECL_PRETTY_FUNCTION_P (decl))
15023 {
15024 /* For __PRETTY_FUNCTION__ we have to adjust the
15025 initializer. */
15026 const char *const name
15027 = cxx_printable_name (current_function_decl, 2);
15028 init = cp_fname_init (name, &TREE_TYPE (decl));
15029 }
15030 else
15031 init = tsubst_init (init, decl, args, complain, in_decl);
15032
15033 if (VAR_P (decl))
15034 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15035 (pattern_decl));
15036 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15037 }
15038 }
15039 }
15040
15041 break;
15042 }
15043
15044 case FOR_STMT:
15045 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15046 RECUR (FOR_INIT_STMT (t));
15047 finish_for_init_stmt (stmt);
15048 tmp = RECUR (FOR_COND (t));
15049 finish_for_cond (tmp, stmt, false);
15050 tmp = RECUR (FOR_EXPR (t));
15051 finish_for_expr (tmp, stmt);
15052 RECUR (FOR_BODY (t));
15053 finish_for_stmt (stmt);
15054 break;
15055
15056 case RANGE_FOR_STMT:
15057 {
15058 tree decl, expr;
15059 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15060 decl = RANGE_FOR_DECL (t);
15061 decl = tsubst (decl, args, complain, in_decl);
15062 maybe_push_decl (decl);
15063 expr = RECUR (RANGE_FOR_EXPR (t));
15064 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15065 RECUR (RANGE_FOR_BODY (t));
15066 finish_for_stmt (stmt);
15067 }
15068 break;
15069
15070 case WHILE_STMT:
15071 stmt = begin_while_stmt ();
15072 tmp = RECUR (WHILE_COND (t));
15073 finish_while_stmt_cond (tmp, stmt, false);
15074 RECUR (WHILE_BODY (t));
15075 finish_while_stmt (stmt);
15076 break;
15077
15078 case DO_STMT:
15079 stmt = begin_do_stmt ();
15080 RECUR (DO_BODY (t));
15081 finish_do_body (stmt);
15082 tmp = RECUR (DO_COND (t));
15083 finish_do_stmt (tmp, stmt, false);
15084 break;
15085
15086 case IF_STMT:
15087 stmt = begin_if_stmt ();
15088 tmp = RECUR (IF_COND (t));
15089 finish_if_stmt_cond (tmp, stmt);
15090 RECUR (THEN_CLAUSE (t));
15091 finish_then_clause (stmt);
15092
15093 if (ELSE_CLAUSE (t))
15094 {
15095 begin_else_clause (stmt);
15096 RECUR (ELSE_CLAUSE (t));
15097 finish_else_clause (stmt);
15098 }
15099
15100 finish_if_stmt (stmt);
15101 break;
15102
15103 case BIND_EXPR:
15104 if (BIND_EXPR_BODY_BLOCK (t))
15105 stmt = begin_function_body ();
15106 else
15107 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15108 ? BCS_TRY_BLOCK : 0);
15109
15110 RECUR (BIND_EXPR_BODY (t));
15111
15112 if (BIND_EXPR_BODY_BLOCK (t))
15113 finish_function_body (stmt);
15114 else
15115 finish_compound_stmt (stmt);
15116 break;
15117
15118 case BREAK_STMT:
15119 finish_break_stmt ();
15120 break;
15121
15122 case CONTINUE_STMT:
15123 finish_continue_stmt ();
15124 break;
15125
15126 case SWITCH_STMT:
15127 stmt = begin_switch_stmt ();
15128 tmp = RECUR (SWITCH_STMT_COND (t));
15129 finish_switch_cond (tmp, stmt);
15130 RECUR (SWITCH_STMT_BODY (t));
15131 finish_switch_stmt (stmt);
15132 break;
15133
15134 case CASE_LABEL_EXPR:
15135 {
15136 tree low = RECUR (CASE_LOW (t));
15137 tree high = RECUR (CASE_HIGH (t));
15138 finish_case_label (EXPR_LOCATION (t), low, high);
15139 }
15140 break;
15141
15142 case LABEL_EXPR:
15143 {
15144 tree decl = LABEL_EXPR_LABEL (t);
15145 tree label;
15146
15147 label = finish_label_stmt (DECL_NAME (decl));
15148 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15149 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15150 }
15151 break;
15152
15153 case GOTO_EXPR:
15154 tmp = GOTO_DESTINATION (t);
15155 if (TREE_CODE (tmp) != LABEL_DECL)
15156 /* Computed goto's must be tsubst'd into. On the other hand,
15157 non-computed gotos must not be; the identifier in question
15158 will have no binding. */
15159 tmp = RECUR (tmp);
15160 else
15161 tmp = DECL_NAME (tmp);
15162 finish_goto_stmt (tmp);
15163 break;
15164
15165 case ASM_EXPR:
15166 {
15167 tree string = RECUR (ASM_STRING (t));
15168 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15169 complain, in_decl);
15170 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15171 complain, in_decl);
15172 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15173 complain, in_decl);
15174 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15175 complain, in_decl);
15176 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15177 clobbers, labels);
15178 tree asm_expr = tmp;
15179 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15180 asm_expr = TREE_OPERAND (asm_expr, 0);
15181 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15182 }
15183 break;
15184
15185 case TRY_BLOCK:
15186 if (CLEANUP_P (t))
15187 {
15188 stmt = begin_try_block ();
15189 RECUR (TRY_STMTS (t));
15190 finish_cleanup_try_block (stmt);
15191 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15192 }
15193 else
15194 {
15195 tree compound_stmt = NULL_TREE;
15196
15197 if (FN_TRY_BLOCK_P (t))
15198 stmt = begin_function_try_block (&compound_stmt);
15199 else
15200 stmt = begin_try_block ();
15201
15202 RECUR (TRY_STMTS (t));
15203
15204 if (FN_TRY_BLOCK_P (t))
15205 finish_function_try_block (stmt);
15206 else
15207 finish_try_block (stmt);
15208
15209 RECUR (TRY_HANDLERS (t));
15210 if (FN_TRY_BLOCK_P (t))
15211 finish_function_handler_sequence (stmt, compound_stmt);
15212 else
15213 finish_handler_sequence (stmt);
15214 }
15215 break;
15216
15217 case HANDLER:
15218 {
15219 tree decl = HANDLER_PARMS (t);
15220
15221 if (decl)
15222 {
15223 decl = tsubst (decl, args, complain, in_decl);
15224 /* Prevent instantiate_decl from trying to instantiate
15225 this variable. We've already done all that needs to be
15226 done. */
15227 if (decl != error_mark_node)
15228 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15229 }
15230 stmt = begin_handler ();
15231 finish_handler_parms (decl, stmt);
15232 RECUR (HANDLER_BODY (t));
15233 finish_handler (stmt);
15234 }
15235 break;
15236
15237 case TAG_DEFN:
15238 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15239 if (CLASS_TYPE_P (tmp))
15240 {
15241 /* Local classes are not independent templates; they are
15242 instantiated along with their containing function. And this
15243 way we don't have to deal with pushing out of one local class
15244 to instantiate a member of another local class. */
15245 tree fn;
15246 /* Closures are handled by the LAMBDA_EXPR. */
15247 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15248 complete_type (tmp);
15249 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15250 if (!DECL_ARTIFICIAL (fn))
15251 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15252 }
15253 break;
15254
15255 case STATIC_ASSERT:
15256 {
15257 tree condition;
15258
15259 ++c_inhibit_evaluation_warnings;
15260 condition =
15261 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15262 args,
15263 complain, in_decl,
15264 /*integral_constant_expression_p=*/true);
15265 --c_inhibit_evaluation_warnings;
15266
15267 finish_static_assert (condition,
15268 STATIC_ASSERT_MESSAGE (t),
15269 STATIC_ASSERT_SOURCE_LOCATION (t),
15270 /*member_p=*/false);
15271 }
15272 break;
15273
15274 case OACC_KERNELS:
15275 case OACC_PARALLEL:
15276 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, false, args, complain,
15277 in_decl);
15278 stmt = begin_omp_parallel ();
15279 RECUR (OMP_BODY (t));
15280 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15281 break;
15282
15283 case OMP_PARALLEL:
15284 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15285 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false, true,
15286 args, complain, in_decl);
15287 if (OMP_PARALLEL_COMBINED (t))
15288 omp_parallel_combined_clauses = &tmp;
15289 stmt = begin_omp_parallel ();
15290 RECUR (OMP_PARALLEL_BODY (t));
15291 gcc_assert (omp_parallel_combined_clauses == NULL);
15292 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15293 = OMP_PARALLEL_COMBINED (t);
15294 pop_omp_privatization_clauses (r);
15295 break;
15296
15297 case OMP_TASK:
15298 r = push_omp_privatization_clauses (false);
15299 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false, true,
15300 args, complain, in_decl);
15301 stmt = begin_omp_task ();
15302 RECUR (OMP_TASK_BODY (t));
15303 finish_omp_task (tmp, stmt);
15304 pop_omp_privatization_clauses (r);
15305 break;
15306
15307 case OMP_FOR:
15308 case OMP_SIMD:
15309 case CILK_SIMD:
15310 case CILK_FOR:
15311 case OMP_DISTRIBUTE:
15312 case OMP_TASKLOOP:
15313 case OACC_LOOP:
15314 {
15315 tree clauses, body, pre_body;
15316 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15317 tree orig_declv = NULL_TREE;
15318 tree incrv = NULL_TREE;
15319 int i;
15320
15321 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15322 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
15323 TREE_CODE (t) != OACC_LOOP,
15324 args, complain, in_decl);
15325 if (OMP_FOR_INIT (t) != NULL_TREE)
15326 {
15327 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15328 if (OMP_FOR_ORIG_DECLS (t))
15329 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15330 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15331 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15332 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15333 }
15334
15335 stmt = begin_omp_structured_block ();
15336
15337 pre_body = push_stmt_list ();
15338 RECUR (OMP_FOR_PRE_BODY (t));
15339 pre_body = pop_stmt_list (pre_body);
15340
15341 if (OMP_FOR_INIT (t) != NULL_TREE)
15342 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15343 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15344 incrv, &clauses, args, complain, in_decl,
15345 integral_constant_expression_p);
15346 omp_parallel_combined_clauses = NULL;
15347
15348 body = push_stmt_list ();
15349 RECUR (OMP_FOR_BODY (t));
15350 body = pop_stmt_list (body);
15351
15352 if (OMP_FOR_INIT (t) != NULL_TREE)
15353 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15354 orig_declv, initv, condv, incrv, body, pre_body,
15355 NULL, clauses);
15356 else
15357 {
15358 t = make_node (TREE_CODE (t));
15359 TREE_TYPE (t) = void_type_node;
15360 OMP_FOR_BODY (t) = body;
15361 OMP_FOR_PRE_BODY (t) = pre_body;
15362 OMP_FOR_CLAUSES (t) = clauses;
15363 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15364 add_stmt (t);
15365 }
15366
15367 add_stmt (finish_omp_structured_block (stmt));
15368 pop_omp_privatization_clauses (r);
15369 }
15370 break;
15371
15372 case OMP_SECTIONS:
15373 omp_parallel_combined_clauses = NULL;
15374 /* FALLTHRU */
15375 case OMP_SINGLE:
15376 case OMP_TEAMS:
15377 case OMP_CRITICAL:
15378 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15379 && OMP_TEAMS_COMBINED (t));
15380 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false, true,
15381 args, complain, in_decl);
15382 stmt = push_stmt_list ();
15383 RECUR (OMP_BODY (t));
15384 stmt = pop_stmt_list (stmt);
15385
15386 t = copy_node (t);
15387 OMP_BODY (t) = stmt;
15388 OMP_CLAUSES (t) = tmp;
15389 add_stmt (t);
15390 pop_omp_privatization_clauses (r);
15391 break;
15392
15393 case OACC_DATA:
15394 case OMP_TARGET_DATA:
15395 case OMP_TARGET:
15396 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15397 TREE_CODE (t) != OACC_DATA,
15398 args, complain, in_decl);
15399 keep_next_level (true);
15400 stmt = begin_omp_structured_block ();
15401
15402 RECUR (OMP_BODY (t));
15403 stmt = finish_omp_structured_block (stmt);
15404
15405 t = copy_node (t);
15406 OMP_BODY (t) = stmt;
15407 OMP_CLAUSES (t) = tmp;
15408 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15409 {
15410 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15411 if (teams)
15412 {
15413 /* For combined target teams, ensure the num_teams and
15414 thread_limit clause expressions are evaluated on the host,
15415 before entering the target construct. */
15416 tree c;
15417 for (c = OMP_TEAMS_CLAUSES (teams);
15418 c; c = OMP_CLAUSE_CHAIN (c))
15419 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15420 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15421 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15422 {
15423 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15424 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15425 if (expr == error_mark_node)
15426 continue;
15427 tmp = TARGET_EXPR_SLOT (expr);
15428 add_stmt (expr);
15429 OMP_CLAUSE_OPERAND (c, 0) = expr;
15430 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15431 OMP_CLAUSE_FIRSTPRIVATE);
15432 OMP_CLAUSE_DECL (tc) = tmp;
15433 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15434 OMP_TARGET_CLAUSES (t) = tc;
15435 }
15436 }
15437 }
15438 add_stmt (t);
15439 break;
15440
15441 case OACC_DECLARE:
15442 t = copy_node (t);
15443 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), false, false,
15444 args, complain, in_decl);
15445 OACC_DECLARE_CLAUSES (t) = tmp;
15446 add_stmt (t);
15447 break;
15448
15449 case OMP_TARGET_UPDATE:
15450 case OMP_TARGET_ENTER_DATA:
15451 case OMP_TARGET_EXIT_DATA:
15452 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, true,
15453 args, complain, in_decl);
15454 t = copy_node (t);
15455 OMP_STANDALONE_CLAUSES (t) = tmp;
15456 add_stmt (t);
15457 break;
15458
15459 case OACC_ENTER_DATA:
15460 case OACC_EXIT_DATA:
15461 case OACC_UPDATE:
15462 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), false, false,
15463 args, complain, in_decl);
15464 t = copy_node (t);
15465 OMP_STANDALONE_CLAUSES (t) = tmp;
15466 add_stmt (t);
15467 break;
15468
15469 case OMP_ORDERED:
15470 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), false, true,
15471 args, complain, in_decl);
15472 stmt = push_stmt_list ();
15473 RECUR (OMP_BODY (t));
15474 stmt = pop_stmt_list (stmt);
15475
15476 t = copy_node (t);
15477 OMP_BODY (t) = stmt;
15478 OMP_ORDERED_CLAUSES (t) = tmp;
15479 add_stmt (t);
15480 break;
15481
15482 case OMP_SECTION:
15483 case OMP_MASTER:
15484 case OMP_TASKGROUP:
15485 stmt = push_stmt_list ();
15486 RECUR (OMP_BODY (t));
15487 stmt = pop_stmt_list (stmt);
15488
15489 t = copy_node (t);
15490 OMP_BODY (t) = stmt;
15491 add_stmt (t);
15492 break;
15493
15494 case OMP_ATOMIC:
15495 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15496 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15497 {
15498 tree op1 = TREE_OPERAND (t, 1);
15499 tree rhs1 = NULL_TREE;
15500 tree lhs, rhs;
15501 if (TREE_CODE (op1) == COMPOUND_EXPR)
15502 {
15503 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15504 op1 = TREE_OPERAND (op1, 1);
15505 }
15506 lhs = RECUR (TREE_OPERAND (op1, 0));
15507 rhs = RECUR (TREE_OPERAND (op1, 1));
15508 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15509 NULL_TREE, NULL_TREE, rhs1,
15510 OMP_ATOMIC_SEQ_CST (t));
15511 }
15512 else
15513 {
15514 tree op1 = TREE_OPERAND (t, 1);
15515 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15516 tree rhs1 = NULL_TREE;
15517 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15518 enum tree_code opcode = NOP_EXPR;
15519 if (code == OMP_ATOMIC_READ)
15520 {
15521 v = RECUR (TREE_OPERAND (op1, 0));
15522 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15523 }
15524 else if (code == OMP_ATOMIC_CAPTURE_OLD
15525 || code == OMP_ATOMIC_CAPTURE_NEW)
15526 {
15527 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15528 v = RECUR (TREE_OPERAND (op1, 0));
15529 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15530 if (TREE_CODE (op11) == COMPOUND_EXPR)
15531 {
15532 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15533 op11 = TREE_OPERAND (op11, 1);
15534 }
15535 lhs = RECUR (TREE_OPERAND (op11, 0));
15536 rhs = RECUR (TREE_OPERAND (op11, 1));
15537 opcode = TREE_CODE (op11);
15538 if (opcode == MODIFY_EXPR)
15539 opcode = NOP_EXPR;
15540 }
15541 else
15542 {
15543 code = OMP_ATOMIC;
15544 lhs = RECUR (TREE_OPERAND (op1, 0));
15545 rhs = RECUR (TREE_OPERAND (op1, 1));
15546 }
15547 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15548 OMP_ATOMIC_SEQ_CST (t));
15549 }
15550 break;
15551
15552 case TRANSACTION_EXPR:
15553 {
15554 int flags = 0;
15555 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15556 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15557
15558 if (TRANSACTION_EXPR_IS_STMT (t))
15559 {
15560 tree body = TRANSACTION_EXPR_BODY (t);
15561 tree noex = NULL_TREE;
15562 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15563 {
15564 noex = MUST_NOT_THROW_COND (body);
15565 if (noex == NULL_TREE)
15566 noex = boolean_true_node;
15567 body = TREE_OPERAND (body, 0);
15568 }
15569 stmt = begin_transaction_stmt (input_location, NULL, flags);
15570 RECUR (body);
15571 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15572 }
15573 else
15574 {
15575 stmt = build_transaction_expr (EXPR_LOCATION (t),
15576 RECUR (TRANSACTION_EXPR_BODY (t)),
15577 flags, NULL_TREE);
15578 RETURN (stmt);
15579 }
15580 }
15581 break;
15582
15583 case MUST_NOT_THROW_EXPR:
15584 {
15585 tree op0 = RECUR (TREE_OPERAND (t, 0));
15586 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15587 RETURN (build_must_not_throw_expr (op0, cond));
15588 }
15589
15590 case EXPR_PACK_EXPANSION:
15591 error ("invalid use of pack expansion expression");
15592 RETURN (error_mark_node);
15593
15594 case NONTYPE_ARGUMENT_PACK:
15595 error ("use %<...%> to expand argument pack");
15596 RETURN (error_mark_node);
15597
15598 case CILK_SPAWN_STMT:
15599 cfun->calls_cilk_spawn = 1;
15600 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15601
15602 case CILK_SYNC_STMT:
15603 RETURN (build_cilk_sync ());
15604
15605 case COMPOUND_EXPR:
15606 tmp = RECUR (TREE_OPERAND (t, 0));
15607 if (tmp == NULL_TREE)
15608 /* If the first operand was a statement, we're done with it. */
15609 RETURN (RECUR (TREE_OPERAND (t, 1)));
15610 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15611 RECUR (TREE_OPERAND (t, 1)),
15612 complain));
15613
15614 case ANNOTATE_EXPR:
15615 tmp = RECUR (TREE_OPERAND (t, 0));
15616 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15617 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15618
15619 default:
15620 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15621
15622 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15623 /*function_p=*/false,
15624 integral_constant_expression_p));
15625 }
15626
15627 RETURN (NULL_TREE);
15628 out:
15629 input_location = loc;
15630 return r;
15631 #undef RECUR
15632 #undef RETURN
15633 }
15634
15635 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15636 function. For description of the body see comment above
15637 cp_parser_omp_declare_reduction_exprs. */
15638
15639 static void
15640 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15641 {
15642 if (t == NULL_TREE || t == error_mark_node)
15643 return;
15644
15645 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15646
15647 tree_stmt_iterator tsi;
15648 int i;
15649 tree stmts[7];
15650 memset (stmts, 0, sizeof stmts);
15651 for (i = 0, tsi = tsi_start (t);
15652 i < 7 && !tsi_end_p (tsi);
15653 i++, tsi_next (&tsi))
15654 stmts[i] = tsi_stmt (tsi);
15655 gcc_assert (tsi_end_p (tsi));
15656
15657 if (i >= 3)
15658 {
15659 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15660 && TREE_CODE (stmts[1]) == DECL_EXPR);
15661 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15662 args, complain, in_decl);
15663 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15664 args, complain, in_decl);
15665 DECL_CONTEXT (omp_out) = current_function_decl;
15666 DECL_CONTEXT (omp_in) = current_function_decl;
15667 keep_next_level (true);
15668 tree block = begin_omp_structured_block ();
15669 tsubst_expr (stmts[2], args, complain, in_decl, false);
15670 block = finish_omp_structured_block (block);
15671 block = maybe_cleanup_point_expr_void (block);
15672 add_decl_expr (omp_out);
15673 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15674 TREE_NO_WARNING (omp_out) = 1;
15675 add_decl_expr (omp_in);
15676 finish_expr_stmt (block);
15677 }
15678 if (i >= 6)
15679 {
15680 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15681 && TREE_CODE (stmts[4]) == DECL_EXPR);
15682 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15683 args, complain, in_decl);
15684 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15685 args, complain, in_decl);
15686 DECL_CONTEXT (omp_priv) = current_function_decl;
15687 DECL_CONTEXT (omp_orig) = current_function_decl;
15688 keep_next_level (true);
15689 tree block = begin_omp_structured_block ();
15690 tsubst_expr (stmts[5], args, complain, in_decl, false);
15691 block = finish_omp_structured_block (block);
15692 block = maybe_cleanup_point_expr_void (block);
15693 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15694 add_decl_expr (omp_priv);
15695 add_decl_expr (omp_orig);
15696 finish_expr_stmt (block);
15697 if (i == 7)
15698 add_decl_expr (omp_orig);
15699 }
15700 }
15701
15702 /* T is a postfix-expression that is not being used in a function
15703 call. Return the substituted version of T. */
15704
15705 static tree
15706 tsubst_non_call_postfix_expression (tree t, tree args,
15707 tsubst_flags_t complain,
15708 tree in_decl)
15709 {
15710 if (TREE_CODE (t) == SCOPE_REF)
15711 t = tsubst_qualified_id (t, args, complain, in_decl,
15712 /*done=*/false, /*address_p=*/false);
15713 else
15714 t = tsubst_copy_and_build (t, args, complain, in_decl,
15715 /*function_p=*/false,
15716 /*integral_constant_expression_p=*/false);
15717
15718 return t;
15719 }
15720
15721 /* Like tsubst but deals with expressions and performs semantic
15722 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15723
15724 tree
15725 tsubst_copy_and_build (tree t,
15726 tree args,
15727 tsubst_flags_t complain,
15728 tree in_decl,
15729 bool function_p,
15730 bool integral_constant_expression_p)
15731 {
15732 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15733 #define RECUR(NODE) \
15734 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15735 /*function_p=*/false, \
15736 integral_constant_expression_p)
15737
15738 tree retval, op1;
15739 location_t loc;
15740
15741 if (t == NULL_TREE || t == error_mark_node)
15742 return t;
15743
15744 loc = input_location;
15745 if (EXPR_HAS_LOCATION (t))
15746 input_location = EXPR_LOCATION (t);
15747
15748 /* N3276 decltype magic only applies to calls at the top level or on the
15749 right side of a comma. */
15750 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15751 complain &= ~tf_decltype;
15752
15753 switch (TREE_CODE (t))
15754 {
15755 case USING_DECL:
15756 t = DECL_NAME (t);
15757 /* Fall through. */
15758 case IDENTIFIER_NODE:
15759 {
15760 tree decl;
15761 cp_id_kind idk;
15762 bool non_integral_constant_expression_p;
15763 const char *error_msg;
15764
15765 if (IDENTIFIER_TYPENAME_P (t))
15766 {
15767 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15768 t = mangle_conv_op_name_for_type (new_type);
15769 }
15770
15771 /* Look up the name. */
15772 decl = lookup_name (t);
15773
15774 /* By convention, expressions use ERROR_MARK_NODE to indicate
15775 failure, not NULL_TREE. */
15776 if (decl == NULL_TREE)
15777 decl = error_mark_node;
15778
15779 decl = finish_id_expression (t, decl, NULL_TREE,
15780 &idk,
15781 integral_constant_expression_p,
15782 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15783 &non_integral_constant_expression_p,
15784 /*template_p=*/false,
15785 /*done=*/true,
15786 /*address_p=*/false,
15787 /*template_arg_p=*/false,
15788 &error_msg,
15789 input_location);
15790 if (error_msg)
15791 error (error_msg);
15792 if (!function_p && identifier_p (decl))
15793 {
15794 if (complain & tf_error)
15795 unqualified_name_lookup_error (decl);
15796 decl = error_mark_node;
15797 }
15798 RETURN (decl);
15799 }
15800
15801 case TEMPLATE_ID_EXPR:
15802 {
15803 tree object;
15804 tree templ = RECUR (TREE_OPERAND (t, 0));
15805 tree targs = TREE_OPERAND (t, 1);
15806
15807 if (targs)
15808 targs = tsubst_template_args (targs, args, complain, in_decl);
15809 if (targs == error_mark_node)
15810 return error_mark_node;
15811
15812 if (variable_template_p (templ))
15813 {
15814 templ = lookup_template_variable (templ, targs);
15815 if (!any_dependent_template_arguments_p (targs))
15816 {
15817 templ = finish_template_variable (templ, complain);
15818 mark_used (templ);
15819 }
15820 RETURN (convert_from_reference (templ));
15821 }
15822
15823 if (TREE_CODE (templ) == COMPONENT_REF)
15824 {
15825 object = TREE_OPERAND (templ, 0);
15826 templ = TREE_OPERAND (templ, 1);
15827 }
15828 else
15829 object = NULL_TREE;
15830 templ = lookup_template_function (templ, targs);
15831
15832 if (object)
15833 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
15834 object, templ, NULL_TREE));
15835 else
15836 RETURN (baselink_for_fns (templ));
15837 }
15838
15839 case INDIRECT_REF:
15840 {
15841 tree r = RECUR (TREE_OPERAND (t, 0));
15842
15843 if (REFERENCE_REF_P (t))
15844 {
15845 /* A type conversion to reference type will be enclosed in
15846 such an indirect ref, but the substitution of the cast
15847 will have also added such an indirect ref. */
15848 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
15849 r = convert_from_reference (r);
15850 }
15851 else
15852 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
15853 complain|decltype_flag);
15854 RETURN (r);
15855 }
15856
15857 case NOP_EXPR:
15858 {
15859 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15860 tree op0 = RECUR (TREE_OPERAND (t, 0));
15861 RETURN (build_nop (type, op0));
15862 }
15863
15864 case IMPLICIT_CONV_EXPR:
15865 {
15866 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15867 tree expr = RECUR (TREE_OPERAND (t, 0));
15868 int flags = LOOKUP_IMPLICIT;
15869 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
15870 flags = LOOKUP_NORMAL;
15871 RETURN (perform_implicit_conversion_flags (type, expr, complain,
15872 flags));
15873 }
15874
15875 case CONVERT_EXPR:
15876 {
15877 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15878 tree op0 = RECUR (TREE_OPERAND (t, 0));
15879 RETURN (build1 (CONVERT_EXPR, type, op0));
15880 }
15881
15882 case CAST_EXPR:
15883 case REINTERPRET_CAST_EXPR:
15884 case CONST_CAST_EXPR:
15885 case DYNAMIC_CAST_EXPR:
15886 case STATIC_CAST_EXPR:
15887 {
15888 tree type;
15889 tree op, r = NULL_TREE;
15890
15891 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15892 if (integral_constant_expression_p
15893 && !cast_valid_in_integral_constant_expression_p (type))
15894 {
15895 if (complain & tf_error)
15896 error ("a cast to a type other than an integral or "
15897 "enumeration type cannot appear in a constant-expression");
15898 RETURN (error_mark_node);
15899 }
15900
15901 op = RECUR (TREE_OPERAND (t, 0));
15902
15903 warning_sentinel s(warn_useless_cast);
15904 switch (TREE_CODE (t))
15905 {
15906 case CAST_EXPR:
15907 r = build_functional_cast (type, op, complain);
15908 break;
15909 case REINTERPRET_CAST_EXPR:
15910 r = build_reinterpret_cast (type, op, complain);
15911 break;
15912 case CONST_CAST_EXPR:
15913 r = build_const_cast (type, op, complain);
15914 break;
15915 case DYNAMIC_CAST_EXPR:
15916 r = build_dynamic_cast (type, op, complain);
15917 break;
15918 case STATIC_CAST_EXPR:
15919 r = build_static_cast (type, op, complain);
15920 break;
15921 default:
15922 gcc_unreachable ();
15923 }
15924
15925 RETURN (r);
15926 }
15927
15928 case POSTDECREMENT_EXPR:
15929 case POSTINCREMENT_EXPR:
15930 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15931 args, complain, in_decl);
15932 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
15933 complain|decltype_flag));
15934
15935 case PREDECREMENT_EXPR:
15936 case PREINCREMENT_EXPR:
15937 case NEGATE_EXPR:
15938 case BIT_NOT_EXPR:
15939 case ABS_EXPR:
15940 case TRUTH_NOT_EXPR:
15941 case UNARY_PLUS_EXPR: /* Unary + */
15942 case REALPART_EXPR:
15943 case IMAGPART_EXPR:
15944 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
15945 RECUR (TREE_OPERAND (t, 0)),
15946 complain|decltype_flag));
15947
15948 case FIX_TRUNC_EXPR:
15949 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
15950 0, complain));
15951
15952 case ADDR_EXPR:
15953 op1 = TREE_OPERAND (t, 0);
15954 if (TREE_CODE (op1) == LABEL_DECL)
15955 RETURN (finish_label_address_expr (DECL_NAME (op1),
15956 EXPR_LOCATION (op1)));
15957 if (TREE_CODE (op1) == SCOPE_REF)
15958 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
15959 /*done=*/true, /*address_p=*/true);
15960 else
15961 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
15962 in_decl);
15963 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
15964 complain|decltype_flag));
15965
15966 case PLUS_EXPR:
15967 case MINUS_EXPR:
15968 case MULT_EXPR:
15969 case TRUNC_DIV_EXPR:
15970 case CEIL_DIV_EXPR:
15971 case FLOOR_DIV_EXPR:
15972 case ROUND_DIV_EXPR:
15973 case EXACT_DIV_EXPR:
15974 case BIT_AND_EXPR:
15975 case BIT_IOR_EXPR:
15976 case BIT_XOR_EXPR:
15977 case TRUNC_MOD_EXPR:
15978 case FLOOR_MOD_EXPR:
15979 case TRUTH_ANDIF_EXPR:
15980 case TRUTH_ORIF_EXPR:
15981 case TRUTH_AND_EXPR:
15982 case TRUTH_OR_EXPR:
15983 case RSHIFT_EXPR:
15984 case LSHIFT_EXPR:
15985 case RROTATE_EXPR:
15986 case LROTATE_EXPR:
15987 case EQ_EXPR:
15988 case NE_EXPR:
15989 case MAX_EXPR:
15990 case MIN_EXPR:
15991 case LE_EXPR:
15992 case GE_EXPR:
15993 case LT_EXPR:
15994 case GT_EXPR:
15995 case MEMBER_REF:
15996 case DOTSTAR_EXPR:
15997 {
15998 warning_sentinel s1(warn_type_limits);
15999 warning_sentinel s2(warn_div_by_zero);
16000 warning_sentinel s3(warn_logical_op);
16001 warning_sentinel s4(warn_tautological_compare);
16002 tree op0 = RECUR (TREE_OPERAND (t, 0));
16003 tree op1 = RECUR (TREE_OPERAND (t, 1));
16004 tree r = build_x_binary_op
16005 (input_location, TREE_CODE (t),
16006 op0,
16007 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16008 ? ERROR_MARK
16009 : TREE_CODE (TREE_OPERAND (t, 0))),
16010 op1,
16011 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16012 ? ERROR_MARK
16013 : TREE_CODE (TREE_OPERAND (t, 1))),
16014 /*overload=*/NULL,
16015 complain|decltype_flag);
16016 if (EXPR_P (r) && TREE_NO_WARNING (t))
16017 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16018
16019 RETURN (r);
16020 }
16021
16022 case POINTER_PLUS_EXPR:
16023 {
16024 tree op0 = RECUR (TREE_OPERAND (t, 0));
16025 tree op1 = RECUR (TREE_OPERAND (t, 1));
16026 return fold_build_pointer_plus (op0, op1);
16027 }
16028
16029 case SCOPE_REF:
16030 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16031 /*address_p=*/false));
16032 case ARRAY_REF:
16033 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16034 args, complain, in_decl);
16035 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16036 RECUR (TREE_OPERAND (t, 1)),
16037 complain|decltype_flag));
16038
16039 case ARRAY_NOTATION_REF:
16040 {
16041 tree start_index, length, stride;
16042 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16043 args, complain, in_decl);
16044 start_index = RECUR (ARRAY_NOTATION_START (t));
16045 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16046 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16047 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16048 length, stride, TREE_TYPE (op1)));
16049 }
16050 case SIZEOF_EXPR:
16051 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
16052 RETURN (tsubst_copy (t, args, complain, in_decl));
16053 /* Fall through */
16054
16055 case ALIGNOF_EXPR:
16056 {
16057 tree r;
16058
16059 op1 = TREE_OPERAND (t, 0);
16060 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16061 op1 = TREE_TYPE (op1);
16062 if (!args)
16063 {
16064 /* When there are no ARGS, we are trying to evaluate a
16065 non-dependent expression from the parser. Trying to do
16066 the substitutions may not work. */
16067 if (!TYPE_P (op1))
16068 op1 = TREE_TYPE (op1);
16069 }
16070 else
16071 {
16072 ++cp_unevaluated_operand;
16073 ++c_inhibit_evaluation_warnings;
16074 if (TYPE_P (op1))
16075 op1 = tsubst (op1, args, complain, in_decl);
16076 else
16077 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16078 /*function_p=*/false,
16079 /*integral_constant_expression_p=*/
16080 false);
16081 --cp_unevaluated_operand;
16082 --c_inhibit_evaluation_warnings;
16083 }
16084 if (TYPE_P (op1))
16085 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16086 complain & tf_error);
16087 else
16088 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16089 complain & tf_error);
16090 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16091 {
16092 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16093 {
16094 if (!processing_template_decl && TYPE_P (op1))
16095 {
16096 r = build_min (SIZEOF_EXPR, size_type_node,
16097 build1 (NOP_EXPR, op1, error_mark_node));
16098 SIZEOF_EXPR_TYPE_P (r) = 1;
16099 }
16100 else
16101 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16102 TREE_SIDE_EFFECTS (r) = 0;
16103 TREE_READONLY (r) = 1;
16104 }
16105 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16106 }
16107 RETURN (r);
16108 }
16109
16110 case AT_ENCODE_EXPR:
16111 {
16112 op1 = TREE_OPERAND (t, 0);
16113 ++cp_unevaluated_operand;
16114 ++c_inhibit_evaluation_warnings;
16115 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16116 /*function_p=*/false,
16117 /*integral_constant_expression_p=*/false);
16118 --cp_unevaluated_operand;
16119 --c_inhibit_evaluation_warnings;
16120 RETURN (objc_build_encode_expr (op1));
16121 }
16122
16123 case NOEXCEPT_EXPR:
16124 op1 = TREE_OPERAND (t, 0);
16125 ++cp_unevaluated_operand;
16126 ++c_inhibit_evaluation_warnings;
16127 ++cp_noexcept_operand;
16128 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16129 /*function_p=*/false,
16130 /*integral_constant_expression_p=*/false);
16131 --cp_unevaluated_operand;
16132 --c_inhibit_evaluation_warnings;
16133 --cp_noexcept_operand;
16134 RETURN (finish_noexcept_expr (op1, complain));
16135
16136 case MODOP_EXPR:
16137 {
16138 warning_sentinel s(warn_div_by_zero);
16139 tree lhs = RECUR (TREE_OPERAND (t, 0));
16140 tree rhs = RECUR (TREE_OPERAND (t, 2));
16141 tree r = build_x_modify_expr
16142 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16143 complain|decltype_flag);
16144 /* TREE_NO_WARNING must be set if either the expression was
16145 parenthesized or it uses an operator such as >>= rather
16146 than plain assignment. In the former case, it was already
16147 set and must be copied. In the latter case,
16148 build_x_modify_expr sets it and it must not be reset
16149 here. */
16150 if (TREE_NO_WARNING (t))
16151 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16152
16153 RETURN (r);
16154 }
16155
16156 case ARROW_EXPR:
16157 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16158 args, complain, in_decl);
16159 /* Remember that there was a reference to this entity. */
16160 if (DECL_P (op1)
16161 && !mark_used (op1, complain) && !(complain & tf_error))
16162 RETURN (error_mark_node);
16163 RETURN (build_x_arrow (input_location, op1, complain));
16164
16165 case NEW_EXPR:
16166 {
16167 tree placement = RECUR (TREE_OPERAND (t, 0));
16168 tree init = RECUR (TREE_OPERAND (t, 3));
16169 vec<tree, va_gc> *placement_vec;
16170 vec<tree, va_gc> *init_vec;
16171 tree ret;
16172
16173 if (placement == NULL_TREE)
16174 placement_vec = NULL;
16175 else
16176 {
16177 placement_vec = make_tree_vector ();
16178 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16179 vec_safe_push (placement_vec, TREE_VALUE (placement));
16180 }
16181
16182 /* If there was an initializer in the original tree, but it
16183 instantiated to an empty list, then we should pass a
16184 non-NULL empty vector to tell build_new that it was an
16185 empty initializer() rather than no initializer. This can
16186 only happen when the initializer is a pack expansion whose
16187 parameter packs are of length zero. */
16188 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16189 init_vec = NULL;
16190 else
16191 {
16192 init_vec = make_tree_vector ();
16193 if (init == void_node)
16194 gcc_assert (init_vec != NULL);
16195 else
16196 {
16197 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16198 vec_safe_push (init_vec, TREE_VALUE (init));
16199 }
16200 }
16201
16202 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16203 tree op2 = RECUR (TREE_OPERAND (t, 2));
16204 ret = build_new (&placement_vec, op1, op2, &init_vec,
16205 NEW_EXPR_USE_GLOBAL (t),
16206 complain);
16207
16208 if (placement_vec != NULL)
16209 release_tree_vector (placement_vec);
16210 if (init_vec != NULL)
16211 release_tree_vector (init_vec);
16212
16213 RETURN (ret);
16214 }
16215
16216 case DELETE_EXPR:
16217 {
16218 tree op0 = RECUR (TREE_OPERAND (t, 0));
16219 tree op1 = RECUR (TREE_OPERAND (t, 1));
16220 RETURN (delete_sanity (op0, op1,
16221 DELETE_EXPR_USE_VEC (t),
16222 DELETE_EXPR_USE_GLOBAL (t),
16223 complain));
16224 }
16225
16226 case COMPOUND_EXPR:
16227 {
16228 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16229 complain & ~tf_decltype, in_decl,
16230 /*function_p=*/false,
16231 integral_constant_expression_p);
16232 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16233 op0,
16234 RECUR (TREE_OPERAND (t, 1)),
16235 complain|decltype_flag));
16236 }
16237
16238 case CALL_EXPR:
16239 {
16240 tree function;
16241 vec<tree, va_gc> *call_args;
16242 unsigned int nargs, i;
16243 bool qualified_p;
16244 bool koenig_p;
16245 tree ret;
16246
16247 function = CALL_EXPR_FN (t);
16248 /* When we parsed the expression, we determined whether or
16249 not Koenig lookup should be performed. */
16250 koenig_p = KOENIG_LOOKUP_P (t);
16251 if (TREE_CODE (function) == SCOPE_REF)
16252 {
16253 qualified_p = true;
16254 function = tsubst_qualified_id (function, args, complain, in_decl,
16255 /*done=*/false,
16256 /*address_p=*/false);
16257 }
16258 else if (koenig_p && identifier_p (function))
16259 {
16260 /* Do nothing; calling tsubst_copy_and_build on an identifier
16261 would incorrectly perform unqualified lookup again.
16262
16263 Note that we can also have an IDENTIFIER_NODE if the earlier
16264 unqualified lookup found a member function; in that case
16265 koenig_p will be false and we do want to do the lookup
16266 again to find the instantiated member function.
16267
16268 FIXME but doing that causes c++/15272, so we need to stop
16269 using IDENTIFIER_NODE in that situation. */
16270 qualified_p = false;
16271 }
16272 else
16273 {
16274 if (TREE_CODE (function) == COMPONENT_REF)
16275 {
16276 tree op = TREE_OPERAND (function, 1);
16277
16278 qualified_p = (TREE_CODE (op) == SCOPE_REF
16279 || (BASELINK_P (op)
16280 && BASELINK_QUALIFIED_P (op)));
16281 }
16282 else
16283 qualified_p = false;
16284
16285 if (TREE_CODE (function) == ADDR_EXPR
16286 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16287 /* Avoid error about taking the address of a constructor. */
16288 function = TREE_OPERAND (function, 0);
16289
16290 function = tsubst_copy_and_build (function, args, complain,
16291 in_decl,
16292 !qualified_p,
16293 integral_constant_expression_p);
16294
16295 if (BASELINK_P (function))
16296 qualified_p = true;
16297 }
16298
16299 nargs = call_expr_nargs (t);
16300 call_args = make_tree_vector ();
16301 for (i = 0; i < nargs; ++i)
16302 {
16303 tree arg = CALL_EXPR_ARG (t, i);
16304
16305 if (!PACK_EXPANSION_P (arg))
16306 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16307 else
16308 {
16309 /* Expand the pack expansion and push each entry onto
16310 CALL_ARGS. */
16311 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16312 if (TREE_CODE (arg) == TREE_VEC)
16313 {
16314 unsigned int len, j;
16315
16316 len = TREE_VEC_LENGTH (arg);
16317 for (j = 0; j < len; ++j)
16318 {
16319 tree value = TREE_VEC_ELT (arg, j);
16320 if (value != NULL_TREE)
16321 value = convert_from_reference (value);
16322 vec_safe_push (call_args, value);
16323 }
16324 }
16325 else
16326 {
16327 /* A partial substitution. Add one entry. */
16328 vec_safe_push (call_args, arg);
16329 }
16330 }
16331 }
16332
16333 /* We do not perform argument-dependent lookup if normal
16334 lookup finds a non-function, in accordance with the
16335 expected resolution of DR 218. */
16336 if (koenig_p
16337 && ((is_overloaded_fn (function)
16338 /* If lookup found a member function, the Koenig lookup is
16339 not appropriate, even if an unqualified-name was used
16340 to denote the function. */
16341 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16342 || identifier_p (function))
16343 /* Only do this when substitution turns a dependent call
16344 into a non-dependent call. */
16345 && type_dependent_expression_p_push (t)
16346 && !any_type_dependent_arguments_p (call_args))
16347 function = perform_koenig_lookup (function, call_args, tf_none);
16348
16349 if (identifier_p (function)
16350 && !any_type_dependent_arguments_p (call_args))
16351 {
16352 if (koenig_p && (complain & tf_warning_or_error))
16353 {
16354 /* For backwards compatibility and good diagnostics, try
16355 the unqualified lookup again if we aren't in SFINAE
16356 context. */
16357 tree unq = (tsubst_copy_and_build
16358 (function, args, complain, in_decl, true,
16359 integral_constant_expression_p));
16360 if (unq == error_mark_node)
16361 RETURN (error_mark_node);
16362
16363 if (unq != function)
16364 {
16365 tree fn = unq;
16366 if (INDIRECT_REF_P (fn))
16367 fn = TREE_OPERAND (fn, 0);
16368 if (TREE_CODE (fn) == COMPONENT_REF)
16369 fn = TREE_OPERAND (fn, 1);
16370 if (is_overloaded_fn (fn))
16371 fn = get_first_fn (fn);
16372 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16373 "%qD was not declared in this scope, "
16374 "and no declarations were found by "
16375 "argument-dependent lookup at the point "
16376 "of instantiation", function))
16377 {
16378 if (!DECL_P (fn))
16379 /* Can't say anything more. */;
16380 else if (DECL_CLASS_SCOPE_P (fn))
16381 {
16382 location_t loc = EXPR_LOC_OR_LOC (t,
16383 input_location);
16384 inform (loc,
16385 "declarations in dependent base %qT are "
16386 "not found by unqualified lookup",
16387 DECL_CLASS_CONTEXT (fn));
16388 if (current_class_ptr)
16389 inform (loc,
16390 "use %<this->%D%> instead", function);
16391 else
16392 inform (loc,
16393 "use %<%T::%D%> instead",
16394 current_class_name, function);
16395 }
16396 else
16397 inform (DECL_SOURCE_LOCATION (fn),
16398 "%qD declared here, later in the "
16399 "translation unit", fn);
16400 }
16401 function = unq;
16402 }
16403 }
16404 if (identifier_p (function))
16405 {
16406 if (complain & tf_error)
16407 unqualified_name_lookup_error (function);
16408 release_tree_vector (call_args);
16409 RETURN (error_mark_node);
16410 }
16411 }
16412
16413 /* Remember that there was a reference to this entity. */
16414 if (DECL_P (function)
16415 && !mark_used (function, complain) && !(complain & tf_error))
16416 RETURN (error_mark_node);
16417
16418 /* Put back tf_decltype for the actual call. */
16419 complain |= decltype_flag;
16420
16421 if (TREE_CODE (function) == OFFSET_REF)
16422 ret = build_offset_ref_call_from_tree (function, &call_args,
16423 complain);
16424 else if (TREE_CODE (function) == COMPONENT_REF)
16425 {
16426 tree instance = TREE_OPERAND (function, 0);
16427 tree fn = TREE_OPERAND (function, 1);
16428
16429 if (processing_template_decl
16430 && (type_dependent_expression_p (instance)
16431 || (!BASELINK_P (fn)
16432 && TREE_CODE (fn) != FIELD_DECL)
16433 || type_dependent_expression_p (fn)
16434 || any_type_dependent_arguments_p (call_args)))
16435 ret = build_nt_call_vec (function, call_args);
16436 else if (!BASELINK_P (fn))
16437 ret = finish_call_expr (function, &call_args,
16438 /*disallow_virtual=*/false,
16439 /*koenig_p=*/false,
16440 complain);
16441 else
16442 ret = (build_new_method_call
16443 (instance, fn,
16444 &call_args, NULL_TREE,
16445 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16446 /*fn_p=*/NULL,
16447 complain));
16448 }
16449 else
16450 ret = finish_call_expr (function, &call_args,
16451 /*disallow_virtual=*/qualified_p,
16452 koenig_p,
16453 complain);
16454
16455 release_tree_vector (call_args);
16456
16457 RETURN (ret);
16458 }
16459
16460 case COND_EXPR:
16461 {
16462 tree cond = RECUR (TREE_OPERAND (t, 0));
16463 tree folded_cond = fold_non_dependent_expr (cond);
16464 tree exp1, exp2;
16465
16466 if (TREE_CODE (folded_cond) == INTEGER_CST)
16467 {
16468 if (integer_zerop (folded_cond))
16469 {
16470 ++c_inhibit_evaluation_warnings;
16471 exp1 = RECUR (TREE_OPERAND (t, 1));
16472 --c_inhibit_evaluation_warnings;
16473 exp2 = RECUR (TREE_OPERAND (t, 2));
16474 }
16475 else
16476 {
16477 exp1 = RECUR (TREE_OPERAND (t, 1));
16478 ++c_inhibit_evaluation_warnings;
16479 exp2 = RECUR (TREE_OPERAND (t, 2));
16480 --c_inhibit_evaluation_warnings;
16481 }
16482 cond = folded_cond;
16483 }
16484 else
16485 {
16486 exp1 = RECUR (TREE_OPERAND (t, 1));
16487 exp2 = RECUR (TREE_OPERAND (t, 2));
16488 }
16489
16490 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16491 cond, exp1, exp2, complain));
16492 }
16493
16494 case PSEUDO_DTOR_EXPR:
16495 {
16496 tree op0 = RECUR (TREE_OPERAND (t, 0));
16497 tree op1 = RECUR (TREE_OPERAND (t, 1));
16498 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16499 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16500 input_location));
16501 }
16502
16503 case TREE_LIST:
16504 {
16505 tree purpose, value, chain;
16506
16507 if (t == void_list_node)
16508 RETURN (t);
16509
16510 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16511 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16512 {
16513 /* We have pack expansions, so expand those and
16514 create a new list out of it. */
16515 tree purposevec = NULL_TREE;
16516 tree valuevec = NULL_TREE;
16517 tree chain;
16518 int i, len = -1;
16519
16520 /* Expand the argument expressions. */
16521 if (TREE_PURPOSE (t))
16522 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16523 complain, in_decl);
16524 if (TREE_VALUE (t))
16525 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16526 complain, in_decl);
16527
16528 /* Build the rest of the list. */
16529 chain = TREE_CHAIN (t);
16530 if (chain && chain != void_type_node)
16531 chain = RECUR (chain);
16532
16533 /* Determine the number of arguments. */
16534 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16535 {
16536 len = TREE_VEC_LENGTH (purposevec);
16537 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16538 }
16539 else if (TREE_CODE (valuevec) == TREE_VEC)
16540 len = TREE_VEC_LENGTH (valuevec);
16541 else
16542 {
16543 /* Since we only performed a partial substitution into
16544 the argument pack, we only RETURN (a single list
16545 node. */
16546 if (purposevec == TREE_PURPOSE (t)
16547 && valuevec == TREE_VALUE (t)
16548 && chain == TREE_CHAIN (t))
16549 RETURN (t);
16550
16551 RETURN (tree_cons (purposevec, valuevec, chain));
16552 }
16553
16554 /* Convert the argument vectors into a TREE_LIST */
16555 i = len;
16556 while (i > 0)
16557 {
16558 /* Grab the Ith values. */
16559 i--;
16560 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16561 : NULL_TREE;
16562 value
16563 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16564 : NULL_TREE;
16565
16566 /* Build the list (backwards). */
16567 chain = tree_cons (purpose, value, chain);
16568 }
16569
16570 RETURN (chain);
16571 }
16572
16573 purpose = TREE_PURPOSE (t);
16574 if (purpose)
16575 purpose = RECUR (purpose);
16576 value = TREE_VALUE (t);
16577 if (value)
16578 value = RECUR (value);
16579 chain = TREE_CHAIN (t);
16580 if (chain && chain != void_type_node)
16581 chain = RECUR (chain);
16582 if (purpose == TREE_PURPOSE (t)
16583 && value == TREE_VALUE (t)
16584 && chain == TREE_CHAIN (t))
16585 RETURN (t);
16586 RETURN (tree_cons (purpose, value, chain));
16587 }
16588
16589 case COMPONENT_REF:
16590 {
16591 tree object;
16592 tree object_type;
16593 tree member;
16594 tree r;
16595
16596 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16597 args, complain, in_decl);
16598 /* Remember that there was a reference to this entity. */
16599 if (DECL_P (object)
16600 && !mark_used (object, complain) && !(complain & tf_error))
16601 RETURN (error_mark_node);
16602 object_type = TREE_TYPE (object);
16603
16604 member = TREE_OPERAND (t, 1);
16605 if (BASELINK_P (member))
16606 member = tsubst_baselink (member,
16607 non_reference (TREE_TYPE (object)),
16608 args, complain, in_decl);
16609 else
16610 member = tsubst_copy (member, args, complain, in_decl);
16611 if (member == error_mark_node)
16612 RETURN (error_mark_node);
16613
16614 if (type_dependent_expression_p (object))
16615 /* We can't do much here. */;
16616 else if (!CLASS_TYPE_P (object_type))
16617 {
16618 if (scalarish_type_p (object_type))
16619 {
16620 tree s = NULL_TREE;
16621 tree dtor = member;
16622
16623 if (TREE_CODE (dtor) == SCOPE_REF)
16624 {
16625 s = TREE_OPERAND (dtor, 0);
16626 dtor = TREE_OPERAND (dtor, 1);
16627 }
16628 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16629 {
16630 dtor = TREE_OPERAND (dtor, 0);
16631 if (TYPE_P (dtor))
16632 RETURN (finish_pseudo_destructor_expr
16633 (object, s, dtor, input_location));
16634 }
16635 }
16636 }
16637 else if (TREE_CODE (member) == SCOPE_REF
16638 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16639 {
16640 /* Lookup the template functions now that we know what the
16641 scope is. */
16642 tree scope = TREE_OPERAND (member, 0);
16643 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16644 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16645 member = lookup_qualified_name (scope, tmpl,
16646 /*is_type_p=*/false,
16647 /*complain=*/false);
16648 if (BASELINK_P (member))
16649 {
16650 BASELINK_FUNCTIONS (member)
16651 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16652 args);
16653 member = (adjust_result_of_qualified_name_lookup
16654 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16655 object_type));
16656 }
16657 else
16658 {
16659 qualified_name_lookup_error (scope, tmpl, member,
16660 input_location);
16661 RETURN (error_mark_node);
16662 }
16663 }
16664 else if (TREE_CODE (member) == SCOPE_REF
16665 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16666 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16667 {
16668 if (complain & tf_error)
16669 {
16670 if (TYPE_P (TREE_OPERAND (member, 0)))
16671 error ("%qT is not a class or namespace",
16672 TREE_OPERAND (member, 0));
16673 else
16674 error ("%qD is not a class or namespace",
16675 TREE_OPERAND (member, 0));
16676 }
16677 RETURN (error_mark_node);
16678 }
16679 else if (TREE_CODE (member) == FIELD_DECL)
16680 {
16681 r = finish_non_static_data_member (member, object, NULL_TREE);
16682 if (TREE_CODE (r) == COMPONENT_REF)
16683 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16684 RETURN (r);
16685 }
16686
16687 r = finish_class_member_access_expr (object, member,
16688 /*template_p=*/false,
16689 complain);
16690 if (TREE_CODE (r) == COMPONENT_REF)
16691 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16692 RETURN (r);
16693 }
16694
16695 case THROW_EXPR:
16696 RETURN (build_throw
16697 (RECUR (TREE_OPERAND (t, 0))));
16698
16699 case CONSTRUCTOR:
16700 {
16701 vec<constructor_elt, va_gc> *n;
16702 constructor_elt *ce;
16703 unsigned HOST_WIDE_INT idx;
16704 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16705 bool process_index_p;
16706 int newlen;
16707 bool need_copy_p = false;
16708 tree r;
16709
16710 if (type == error_mark_node)
16711 RETURN (error_mark_node);
16712
16713 /* digest_init will do the wrong thing if we let it. */
16714 if (type && TYPE_PTRMEMFUNC_P (type))
16715 RETURN (t);
16716
16717 /* We do not want to process the index of aggregate
16718 initializers as they are identifier nodes which will be
16719 looked up by digest_init. */
16720 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16721
16722 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16723 newlen = vec_safe_length (n);
16724 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16725 {
16726 if (ce->index && process_index_p
16727 /* An identifier index is looked up in the type
16728 being initialized, not the current scope. */
16729 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16730 ce->index = RECUR (ce->index);
16731
16732 if (PACK_EXPANSION_P (ce->value))
16733 {
16734 /* Substitute into the pack expansion. */
16735 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16736 in_decl);
16737
16738 if (ce->value == error_mark_node
16739 || PACK_EXPANSION_P (ce->value))
16740 ;
16741 else if (TREE_VEC_LENGTH (ce->value) == 1)
16742 /* Just move the argument into place. */
16743 ce->value = TREE_VEC_ELT (ce->value, 0);
16744 else
16745 {
16746 /* Update the length of the final CONSTRUCTOR
16747 arguments vector, and note that we will need to
16748 copy.*/
16749 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16750 need_copy_p = true;
16751 }
16752 }
16753 else
16754 ce->value = RECUR (ce->value);
16755 }
16756
16757 if (need_copy_p)
16758 {
16759 vec<constructor_elt, va_gc> *old_n = n;
16760
16761 vec_alloc (n, newlen);
16762 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16763 {
16764 if (TREE_CODE (ce->value) == TREE_VEC)
16765 {
16766 int i, len = TREE_VEC_LENGTH (ce->value);
16767 for (i = 0; i < len; ++i)
16768 CONSTRUCTOR_APPEND_ELT (n, 0,
16769 TREE_VEC_ELT (ce->value, i));
16770 }
16771 else
16772 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16773 }
16774 }
16775
16776 r = build_constructor (init_list_type_node, n);
16777 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16778
16779 if (TREE_HAS_CONSTRUCTOR (t))
16780 RETURN (finish_compound_literal (type, r, complain));
16781
16782 TREE_TYPE (r) = type;
16783 RETURN (r);
16784 }
16785
16786 case TYPEID_EXPR:
16787 {
16788 tree operand_0 = TREE_OPERAND (t, 0);
16789 if (TYPE_P (operand_0))
16790 {
16791 operand_0 = tsubst (operand_0, args, complain, in_decl);
16792 RETURN (get_typeid (operand_0, complain));
16793 }
16794 else
16795 {
16796 operand_0 = RECUR (operand_0);
16797 RETURN (build_typeid (operand_0, complain));
16798 }
16799 }
16800
16801 case VAR_DECL:
16802 if (!args)
16803 RETURN (t);
16804 else if (DECL_PACK_P (t))
16805 {
16806 /* We don't build decls for an instantiation of a
16807 variadic capture proxy, we instantiate the elements
16808 when needed. */
16809 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16810 return RECUR (DECL_VALUE_EXPR (t));
16811 }
16812 /* Fall through */
16813
16814 case PARM_DECL:
16815 {
16816 tree r = tsubst_copy (t, args, complain, in_decl);
16817 /* ??? We're doing a subset of finish_id_expression here. */
16818 if (VAR_P (r)
16819 && !processing_template_decl
16820 && !cp_unevaluated_operand
16821 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16822 && CP_DECL_THREAD_LOCAL_P (r))
16823 {
16824 if (tree wrap = get_tls_wrapper_fn (r))
16825 /* Replace an evaluated use of the thread_local variable with
16826 a call to its wrapper. */
16827 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
16828 }
16829 else if (outer_automatic_var_p (r))
16830 {
16831 r = process_outer_var_ref (r, complain);
16832 if (is_capture_proxy (r))
16833 register_local_specialization (r, t);
16834 }
16835
16836 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
16837 /* If the original type was a reference, we'll be wrapped in
16838 the appropriate INDIRECT_REF. */
16839 r = convert_from_reference (r);
16840 RETURN (r);
16841 }
16842
16843 case VA_ARG_EXPR:
16844 {
16845 tree op0 = RECUR (TREE_OPERAND (t, 0));
16846 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16847 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
16848 }
16849
16850 case OFFSETOF_EXPR:
16851 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
16852 EXPR_LOCATION (t)));
16853
16854 case TRAIT_EXPR:
16855 {
16856 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
16857 complain, in_decl);
16858
16859 tree type2 = TRAIT_EXPR_TYPE2 (t);
16860 if (type2 && TREE_CODE (type2) == TREE_LIST)
16861 type2 = RECUR (type2);
16862 else if (type2)
16863 type2 = tsubst (type2, args, complain, in_decl);
16864
16865 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
16866 }
16867
16868 case STMT_EXPR:
16869 {
16870 tree old_stmt_expr = cur_stmt_expr;
16871 tree stmt_expr = begin_stmt_expr ();
16872
16873 cur_stmt_expr = stmt_expr;
16874 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
16875 integral_constant_expression_p);
16876 stmt_expr = finish_stmt_expr (stmt_expr, false);
16877 cur_stmt_expr = old_stmt_expr;
16878
16879 /* If the resulting list of expression statement is empty,
16880 fold it further into void_node. */
16881 if (empty_expr_stmt_p (stmt_expr))
16882 stmt_expr = void_node;
16883
16884 RETURN (stmt_expr);
16885 }
16886
16887 case LAMBDA_EXPR:
16888 {
16889 tree r = build_lambda_expr ();
16890
16891 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
16892 LAMBDA_EXPR_CLOSURE (r) = type;
16893 CLASSTYPE_LAMBDA_EXPR (type) = r;
16894
16895 LAMBDA_EXPR_LOCATION (r)
16896 = LAMBDA_EXPR_LOCATION (t);
16897 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
16898 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
16899 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
16900 LAMBDA_EXPR_DISCRIMINATOR (r)
16901 = (LAMBDA_EXPR_DISCRIMINATOR (t));
16902 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
16903 if (!scope)
16904 /* No substitution needed. */;
16905 else if (VAR_OR_FUNCTION_DECL_P (scope))
16906 /* For a function or variable scope, we want to use tsubst so that we
16907 don't complain about referring to an auto before deduction. */
16908 scope = tsubst (scope, args, complain, in_decl);
16909 else if (TREE_CODE (scope) == PARM_DECL)
16910 {
16911 /* Look up the parameter we want directly, as tsubst_copy
16912 doesn't do what we need. */
16913 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
16914 tree parm = FUNCTION_FIRST_USER_PARM (fn);
16915 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
16916 parm = DECL_CHAIN (parm);
16917 scope = parm;
16918 /* FIXME Work around the parm not having DECL_CONTEXT set. */
16919 if (DECL_CONTEXT (scope) == NULL_TREE)
16920 DECL_CONTEXT (scope) = fn;
16921 }
16922 else if (TREE_CODE (scope) == FIELD_DECL)
16923 /* For a field, use tsubst_copy so that we look up the existing field
16924 rather than build a new one. */
16925 scope = RECUR (scope);
16926 else
16927 gcc_unreachable ();
16928 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
16929 LAMBDA_EXPR_RETURN_TYPE (r)
16930 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
16931
16932 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
16933 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
16934
16935 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
16936 determine_visibility (TYPE_NAME (type));
16937 /* Now that we know visibility, instantiate the type so we have a
16938 declaration of the op() for later calls to lambda_function. */
16939 complete_type (type);
16940
16941 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
16942
16943 insert_pending_capture_proxies ();
16944
16945 RETURN (build_lambda_object (r));
16946 }
16947
16948 case TARGET_EXPR:
16949 /* We can get here for a constant initializer of non-dependent type.
16950 FIXME stop folding in cp_parser_initializer_clause. */
16951 {
16952 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
16953 complain);
16954 RETURN (r);
16955 }
16956
16957 case TRANSACTION_EXPR:
16958 RETURN (tsubst_expr(t, args, complain, in_decl,
16959 integral_constant_expression_p));
16960
16961 case PAREN_EXPR:
16962 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
16963
16964 case VEC_PERM_EXPR:
16965 {
16966 tree op0 = RECUR (TREE_OPERAND (t, 0));
16967 tree op1 = RECUR (TREE_OPERAND (t, 1));
16968 tree op2 = RECUR (TREE_OPERAND (t, 2));
16969 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
16970 complain));
16971 }
16972
16973 case REQUIRES_EXPR:
16974 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
16975
16976 default:
16977 /* Handle Objective-C++ constructs, if appropriate. */
16978 {
16979 tree subst
16980 = objcp_tsubst_copy_and_build (t, args, complain,
16981 in_decl, /*function_p=*/false);
16982 if (subst)
16983 RETURN (subst);
16984 }
16985 RETURN (tsubst_copy (t, args, complain, in_decl));
16986 }
16987
16988 #undef RECUR
16989 #undef RETURN
16990 out:
16991 input_location = loc;
16992 return retval;
16993 }
16994
16995 /* Verify that the instantiated ARGS are valid. For type arguments,
16996 make sure that the type's linkage is ok. For non-type arguments,
16997 make sure they are constants if they are integral or enumerations.
16998 Emit an error under control of COMPLAIN, and return TRUE on error. */
16999
17000 static bool
17001 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17002 {
17003 if (dependent_template_arg_p (t))
17004 return false;
17005 if (ARGUMENT_PACK_P (t))
17006 {
17007 tree vec = ARGUMENT_PACK_ARGS (t);
17008 int len = TREE_VEC_LENGTH (vec);
17009 bool result = false;
17010 int i;
17011
17012 for (i = 0; i < len; ++i)
17013 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17014 result = true;
17015 return result;
17016 }
17017 else if (TYPE_P (t))
17018 {
17019 /* [basic.link]: A name with no linkage (notably, the name
17020 of a class or enumeration declared in a local scope)
17021 shall not be used to declare an entity with linkage.
17022 This implies that names with no linkage cannot be used as
17023 template arguments
17024
17025 DR 757 relaxes this restriction for C++0x. */
17026 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17027 : no_linkage_check (t, /*relaxed_p=*/false));
17028
17029 if (nt)
17030 {
17031 /* DR 488 makes use of a type with no linkage cause
17032 type deduction to fail. */
17033 if (complain & tf_error)
17034 {
17035 if (TYPE_ANONYMOUS_P (nt))
17036 error ("%qT is/uses anonymous type", t);
17037 else
17038 error ("template argument for %qD uses local type %qT",
17039 tmpl, t);
17040 }
17041 return true;
17042 }
17043 /* In order to avoid all sorts of complications, we do not
17044 allow variably-modified types as template arguments. */
17045 else if (variably_modified_type_p (t, NULL_TREE))
17046 {
17047 if (complain & tf_error)
17048 error ("%qT is a variably modified type", t);
17049 return true;
17050 }
17051 }
17052 /* Class template and alias template arguments should be OK. */
17053 else if (DECL_TYPE_TEMPLATE_P (t))
17054 ;
17055 /* A non-type argument of integral or enumerated type must be a
17056 constant. */
17057 else if (TREE_TYPE (t)
17058 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17059 && !REFERENCE_REF_P (t)
17060 && !TREE_CONSTANT (t))
17061 {
17062 if (complain & tf_error)
17063 error ("integral expression %qE is not constant", t);
17064 return true;
17065 }
17066 return false;
17067 }
17068
17069 static bool
17070 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17071 {
17072 int ix, len = DECL_NTPARMS (tmpl);
17073 bool result = false;
17074
17075 for (ix = 0; ix != len; ix++)
17076 {
17077 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17078 result = true;
17079 }
17080 if (result && (complain & tf_error))
17081 error (" trying to instantiate %qD", tmpl);
17082 return result;
17083 }
17084
17085 /* We're out of SFINAE context now, so generate diagnostics for the access
17086 errors we saw earlier when instantiating D from TMPL and ARGS. */
17087
17088 static void
17089 recheck_decl_substitution (tree d, tree tmpl, tree args)
17090 {
17091 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17092 tree type = TREE_TYPE (pattern);
17093 location_t loc = input_location;
17094
17095 push_access_scope (d);
17096 push_deferring_access_checks (dk_no_deferred);
17097 input_location = DECL_SOURCE_LOCATION (pattern);
17098 tsubst (type, args, tf_warning_or_error, d);
17099 input_location = loc;
17100 pop_deferring_access_checks ();
17101 pop_access_scope (d);
17102 }
17103
17104 /* Instantiate the indicated variable, function, or alias template TMPL with
17105 the template arguments in TARG_PTR. */
17106
17107 static tree
17108 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17109 {
17110 tree targ_ptr = orig_args;
17111 tree fndecl;
17112 tree gen_tmpl;
17113 tree spec;
17114 bool access_ok = true;
17115
17116 if (tmpl == error_mark_node)
17117 return error_mark_node;
17118
17119 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17120
17121 /* If this function is a clone, handle it specially. */
17122 if (DECL_CLONED_FUNCTION_P (tmpl))
17123 {
17124 tree spec;
17125 tree clone;
17126
17127 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17128 DECL_CLONED_FUNCTION. */
17129 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17130 targ_ptr, complain);
17131 if (spec == error_mark_node)
17132 return error_mark_node;
17133
17134 /* Look for the clone. */
17135 FOR_EACH_CLONE (clone, spec)
17136 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17137 return clone;
17138 /* We should always have found the clone by now. */
17139 gcc_unreachable ();
17140 return NULL_TREE;
17141 }
17142
17143 if (targ_ptr == error_mark_node)
17144 return error_mark_node;
17145
17146 /* Check to see if we already have this specialization. */
17147 gen_tmpl = most_general_template (tmpl);
17148 if (tmpl != gen_tmpl)
17149 /* The TMPL is a partial instantiation. To get a full set of
17150 arguments we must add the arguments used to perform the
17151 partial instantiation. */
17152 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
17153 targ_ptr);
17154
17155 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17156 but it doesn't seem to be on the hot path. */
17157 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17158
17159 gcc_assert (tmpl == gen_tmpl
17160 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17161 == spec)
17162 || fndecl == NULL_TREE);
17163
17164 if (spec != NULL_TREE)
17165 {
17166 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17167 {
17168 if (complain & tf_error)
17169 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17170 return error_mark_node;
17171 }
17172 return spec;
17173 }
17174
17175 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17176 complain))
17177 return error_mark_node;
17178
17179 /* We are building a FUNCTION_DECL, during which the access of its
17180 parameters and return types have to be checked. However this
17181 FUNCTION_DECL which is the desired context for access checking
17182 is not built yet. We solve this chicken-and-egg problem by
17183 deferring all checks until we have the FUNCTION_DECL. */
17184 push_deferring_access_checks (dk_deferred);
17185
17186 /* Instantiation of the function happens in the context of the function
17187 template, not the context of the overload resolution we're doing. */
17188 push_to_top_level ();
17189 /* If there are dependent arguments, e.g. because we're doing partial
17190 ordering, make sure processing_template_decl stays set. */
17191 if (uses_template_parms (targ_ptr))
17192 ++processing_template_decl;
17193 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17194 {
17195 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17196 complain, gen_tmpl, true);
17197 push_nested_class (ctx);
17198 }
17199
17200 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17201
17202 if (VAR_P (pattern))
17203 {
17204 /* We need to determine if we're using a partial or explicit
17205 specialization now, because the type of the variable could be
17206 different. */
17207 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17208 tree elt = most_specialized_partial_spec (tid, complain);
17209 if (elt == error_mark_node)
17210 pattern = error_mark_node;
17211 else if (elt)
17212 {
17213 tmpl = TREE_VALUE (elt);
17214 pattern = DECL_TEMPLATE_RESULT (tmpl);
17215 targ_ptr = TREE_PURPOSE (elt);
17216 }
17217 }
17218
17219 /* Substitute template parameters to obtain the specialization. */
17220 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17221 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17222 pop_nested_class ();
17223 pop_from_top_level ();
17224
17225 if (fndecl == error_mark_node)
17226 {
17227 pop_deferring_access_checks ();
17228 return error_mark_node;
17229 }
17230
17231 /* The DECL_TI_TEMPLATE should always be the immediate parent
17232 template, not the most general template. */
17233 DECL_TI_TEMPLATE (fndecl) = tmpl;
17234 DECL_TI_ARGS (fndecl) = targ_ptr;
17235
17236 /* Now we know the specialization, compute access previously
17237 deferred. */
17238 push_access_scope (fndecl);
17239 if (!perform_deferred_access_checks (complain))
17240 access_ok = false;
17241 pop_access_scope (fndecl);
17242 pop_deferring_access_checks ();
17243
17244 /* If we've just instantiated the main entry point for a function,
17245 instantiate all the alternate entry points as well. We do this
17246 by cloning the instantiation of the main entry point, not by
17247 instantiating the template clones. */
17248 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17249 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17250
17251 if (!access_ok)
17252 {
17253 if (!(complain & tf_error))
17254 {
17255 /* Remember to reinstantiate when we're out of SFINAE so the user
17256 can see the errors. */
17257 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17258 }
17259 return error_mark_node;
17260 }
17261 return fndecl;
17262 }
17263
17264 /* Wrapper for instantiate_template_1. */
17265
17266 tree
17267 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17268 {
17269 tree ret;
17270 timevar_push (TV_TEMPLATE_INST);
17271 ret = instantiate_template_1 (tmpl, orig_args, complain);
17272 timevar_pop (TV_TEMPLATE_INST);
17273 return ret;
17274 }
17275
17276 /* Instantiate the alias template TMPL with ARGS. Also push a template
17277 instantiation level, which instantiate_template doesn't do because
17278 functions and variables have sufficient context established by the
17279 callers. */
17280
17281 static tree
17282 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17283 {
17284 struct pending_template *old_last_pend = last_pending_template;
17285 struct tinst_level *old_error_tinst = last_error_tinst_level;
17286 if (tmpl == error_mark_node || args == error_mark_node)
17287 return error_mark_node;
17288 tree tinst = build_tree_list (tmpl, args);
17289 if (!push_tinst_level (tinst))
17290 {
17291 ggc_free (tinst);
17292 return error_mark_node;
17293 }
17294
17295 args =
17296 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17297 args, tmpl, complain,
17298 /*require_all_args=*/true,
17299 /*use_default_args=*/true);
17300
17301 tree r = instantiate_template (tmpl, args, complain);
17302 pop_tinst_level ();
17303 /* We can't free this if a pending_template entry or last_error_tinst_level
17304 is pointing at it. */
17305 if (last_pending_template == old_last_pend
17306 && last_error_tinst_level == old_error_tinst)
17307 ggc_free (tinst);
17308
17309 return r;
17310 }
17311
17312 /* PARM is a template parameter pack for FN. Returns true iff
17313 PARM is used in a deducible way in the argument list of FN. */
17314
17315 static bool
17316 pack_deducible_p (tree parm, tree fn)
17317 {
17318 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17319 for (; t; t = TREE_CHAIN (t))
17320 {
17321 tree type = TREE_VALUE (t);
17322 tree packs;
17323 if (!PACK_EXPANSION_P (type))
17324 continue;
17325 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17326 packs; packs = TREE_CHAIN (packs))
17327 if (template_args_equal (TREE_VALUE (packs), parm))
17328 {
17329 /* The template parameter pack is used in a function parameter
17330 pack. If this is the end of the parameter list, the
17331 template parameter pack is deducible. */
17332 if (TREE_CHAIN (t) == void_list_node)
17333 return true;
17334 else
17335 /* Otherwise, not. Well, it could be deduced from
17336 a non-pack parameter, but doing so would end up with
17337 a deduction mismatch, so don't bother. */
17338 return false;
17339 }
17340 }
17341 /* The template parameter pack isn't used in any function parameter
17342 packs, but it might be used deeper, e.g. tuple<Args...>. */
17343 return true;
17344 }
17345
17346 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17347 NARGS elements of the arguments that are being used when calling
17348 it. TARGS is a vector into which the deduced template arguments
17349 are placed.
17350
17351 Returns either a FUNCTION_DECL for the matching specialization of FN or
17352 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17353 true, diagnostics will be printed to explain why it failed.
17354
17355 If FN is a conversion operator, or we are trying to produce a specific
17356 specialization, RETURN_TYPE is the return type desired.
17357
17358 The EXPLICIT_TARGS are explicit template arguments provided via a
17359 template-id.
17360
17361 The parameter STRICT is one of:
17362
17363 DEDUCE_CALL:
17364 We are deducing arguments for a function call, as in
17365 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17366 deducing arguments for a call to the result of a conversion
17367 function template, as in [over.call.object].
17368
17369 DEDUCE_CONV:
17370 We are deducing arguments for a conversion function, as in
17371 [temp.deduct.conv].
17372
17373 DEDUCE_EXACT:
17374 We are deducing arguments when doing an explicit instantiation
17375 as in [temp.explicit], when determining an explicit specialization
17376 as in [temp.expl.spec], or when taking the address of a function
17377 template, as in [temp.deduct.funcaddr]. */
17378
17379 tree
17380 fn_type_unification (tree fn,
17381 tree explicit_targs,
17382 tree targs,
17383 const tree *args,
17384 unsigned int nargs,
17385 tree return_type,
17386 unification_kind_t strict,
17387 int flags,
17388 bool explain_p,
17389 bool decltype_p)
17390 {
17391 tree parms;
17392 tree fntype;
17393 tree decl = NULL_TREE;
17394 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17395 bool ok;
17396 static int deduction_depth;
17397 struct pending_template *old_last_pend = last_pending_template;
17398 struct tinst_level *old_error_tinst = last_error_tinst_level;
17399 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17400 tree tinst;
17401 tree r = error_mark_node;
17402
17403 if (decltype_p)
17404 complain |= tf_decltype;
17405
17406 /* In C++0x, it's possible to have a function template whose type depends
17407 on itself recursively. This is most obvious with decltype, but can also
17408 occur with enumeration scope (c++/48969). So we need to catch infinite
17409 recursion and reject the substitution at deduction time; this function
17410 will return error_mark_node for any repeated substitution.
17411
17412 This also catches excessive recursion such as when f<N> depends on
17413 f<N-1> across all integers, and returns error_mark_node for all the
17414 substitutions back up to the initial one.
17415
17416 This is, of course, not reentrant. */
17417 if (excessive_deduction_depth)
17418 return error_mark_node;
17419 tinst = build_tree_list (fn, NULL_TREE);
17420 ++deduction_depth;
17421
17422 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17423
17424 fntype = TREE_TYPE (fn);
17425 if (explicit_targs)
17426 {
17427 /* [temp.deduct]
17428
17429 The specified template arguments must match the template
17430 parameters in kind (i.e., type, nontype, template), and there
17431 must not be more arguments than there are parameters;
17432 otherwise type deduction fails.
17433
17434 Nontype arguments must match the types of the corresponding
17435 nontype template parameters, or must be convertible to the
17436 types of the corresponding nontype parameters as specified in
17437 _temp.arg.nontype_, otherwise type deduction fails.
17438
17439 All references in the function type of the function template
17440 to the corresponding template parameters are replaced by the
17441 specified template argument values. If a substitution in a
17442 template parameter or in the function type of the function
17443 template results in an invalid type, type deduction fails. */
17444 int i, len = TREE_VEC_LENGTH (tparms);
17445 location_t loc = input_location;
17446 bool incomplete = false;
17447
17448 /* Adjust any explicit template arguments before entering the
17449 substitution context. */
17450 explicit_targs
17451 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17452 complain,
17453 /*require_all_args=*/false,
17454 /*use_default_args=*/false));
17455 if (explicit_targs == error_mark_node)
17456 goto fail;
17457
17458 /* Substitute the explicit args into the function type. This is
17459 necessary so that, for instance, explicitly declared function
17460 arguments can match null pointed constants. If we were given
17461 an incomplete set of explicit args, we must not do semantic
17462 processing during substitution as we could create partial
17463 instantiations. */
17464 for (i = 0; i < len; i++)
17465 {
17466 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17467 bool parameter_pack = false;
17468 tree targ = TREE_VEC_ELT (explicit_targs, i);
17469
17470 /* Dig out the actual parm. */
17471 if (TREE_CODE (parm) == TYPE_DECL
17472 || TREE_CODE (parm) == TEMPLATE_DECL)
17473 {
17474 parm = TREE_TYPE (parm);
17475 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17476 }
17477 else if (TREE_CODE (parm) == PARM_DECL)
17478 {
17479 parm = DECL_INITIAL (parm);
17480 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17481 }
17482
17483 if (!parameter_pack && targ == NULL_TREE)
17484 /* No explicit argument for this template parameter. */
17485 incomplete = true;
17486
17487 if (parameter_pack && pack_deducible_p (parm, fn))
17488 {
17489 /* Mark the argument pack as "incomplete". We could
17490 still deduce more arguments during unification.
17491 We remove this mark in type_unification_real. */
17492 if (targ)
17493 {
17494 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17495 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17496 = ARGUMENT_PACK_ARGS (targ);
17497 }
17498
17499 /* We have some incomplete argument packs. */
17500 incomplete = true;
17501 }
17502 }
17503
17504 TREE_VALUE (tinst) = explicit_targs;
17505 if (!push_tinst_level (tinst))
17506 {
17507 excessive_deduction_depth = true;
17508 goto fail;
17509 }
17510 processing_template_decl += incomplete;
17511 input_location = DECL_SOURCE_LOCATION (fn);
17512 /* Ignore any access checks; we'll see them again in
17513 instantiate_template and they might have the wrong
17514 access path at this point. */
17515 push_deferring_access_checks (dk_deferred);
17516 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17517 complain | tf_partial, NULL_TREE);
17518 pop_deferring_access_checks ();
17519 input_location = loc;
17520 processing_template_decl -= incomplete;
17521 pop_tinst_level ();
17522
17523 if (fntype == error_mark_node)
17524 goto fail;
17525
17526 /* Place the explicitly specified arguments in TARGS. */
17527 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17528 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17529 }
17530
17531 /* Never do unification on the 'this' parameter. */
17532 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17533
17534 if (return_type && strict == DEDUCE_CALL)
17535 {
17536 /* We're deducing for a call to the result of a template conversion
17537 function. The parms we really want are in return_type. */
17538 if (POINTER_TYPE_P (return_type))
17539 return_type = TREE_TYPE (return_type);
17540 parms = TYPE_ARG_TYPES (return_type);
17541 }
17542 else if (return_type)
17543 {
17544 tree *new_args;
17545
17546 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17547 new_args = XALLOCAVEC (tree, nargs + 1);
17548 new_args[0] = return_type;
17549 memcpy (new_args + 1, args, nargs * sizeof (tree));
17550 args = new_args;
17551 ++nargs;
17552 }
17553
17554 /* We allow incomplete unification without an error message here
17555 because the standard doesn't seem to explicitly prohibit it. Our
17556 callers must be ready to deal with unification failures in any
17557 event. */
17558
17559 TREE_VALUE (tinst) = targs;
17560 /* If we aren't explaining yet, push tinst context so we can see where
17561 any errors (e.g. from class instantiations triggered by instantiation
17562 of default template arguments) come from. If we are explaining, this
17563 context is redundant. */
17564 if (!explain_p && !push_tinst_level (tinst))
17565 {
17566 excessive_deduction_depth = true;
17567 goto fail;
17568 }
17569
17570 /* type_unification_real will pass back any access checks from default
17571 template argument substitution. */
17572 vec<deferred_access_check, va_gc> *checks;
17573 checks = NULL;
17574
17575 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17576 targs, parms, args, nargs, /*subr=*/0,
17577 strict, flags, &checks, explain_p);
17578 if (!explain_p)
17579 pop_tinst_level ();
17580 if (!ok)
17581 goto fail;
17582
17583 /* Now that we have bindings for all of the template arguments,
17584 ensure that the arguments deduced for the template template
17585 parameters have compatible template parameter lists. We cannot
17586 check this property before we have deduced all template
17587 arguments, because the template parameter types of a template
17588 template parameter might depend on prior template parameters
17589 deduced after the template template parameter. The following
17590 ill-formed example illustrates this issue:
17591
17592 template<typename T, template<T> class C> void f(C<5>, T);
17593
17594 template<int N> struct X {};
17595
17596 void g() {
17597 f(X<5>(), 5l); // error: template argument deduction fails
17598 }
17599
17600 The template parameter list of 'C' depends on the template type
17601 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17602 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17603 time that we deduce 'C'. */
17604 if (!template_template_parm_bindings_ok_p
17605 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17606 {
17607 unify_inconsistent_template_template_parameters (explain_p);
17608 goto fail;
17609 }
17610
17611 /* All is well so far. Now, check:
17612
17613 [temp.deduct]
17614
17615 When all template arguments have been deduced, all uses of
17616 template parameters in nondeduced contexts are replaced with
17617 the corresponding deduced argument values. If the
17618 substitution results in an invalid type, as described above,
17619 type deduction fails. */
17620 TREE_VALUE (tinst) = targs;
17621 if (!push_tinst_level (tinst))
17622 {
17623 excessive_deduction_depth = true;
17624 goto fail;
17625 }
17626
17627 /* Also collect access checks from the instantiation. */
17628 reopen_deferring_access_checks (checks);
17629
17630 decl = instantiate_template (fn, targs, complain);
17631
17632 checks = get_deferred_access_checks ();
17633 pop_deferring_access_checks ();
17634
17635 pop_tinst_level ();
17636
17637 if (decl == error_mark_node)
17638 goto fail;
17639
17640 /* Now perform any access checks encountered during substitution. */
17641 push_access_scope (decl);
17642 ok = perform_access_checks (checks, complain);
17643 pop_access_scope (decl);
17644 if (!ok)
17645 goto fail;
17646
17647 /* If we're looking for an exact match, check that what we got
17648 is indeed an exact match. It might not be if some template
17649 parameters are used in non-deduced contexts. But don't check
17650 for an exact match if we have dependent template arguments;
17651 in that case we're doing partial ordering, and we already know
17652 that we have two candidates that will provide the actual type. */
17653 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17654 {
17655 tree substed = TREE_TYPE (decl);
17656 unsigned int i;
17657
17658 tree sarg
17659 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17660 if (return_type)
17661 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17662 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17663 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17664 {
17665 unify_type_mismatch (explain_p, args[i],
17666 TREE_VALUE (sarg));
17667 goto fail;
17668 }
17669 }
17670
17671 r = decl;
17672
17673 fail:
17674 --deduction_depth;
17675 if (excessive_deduction_depth)
17676 {
17677 if (deduction_depth == 0)
17678 /* Reset once we're all the way out. */
17679 excessive_deduction_depth = false;
17680 }
17681
17682 /* We can't free this if a pending_template entry or last_error_tinst_level
17683 is pointing at it. */
17684 if (last_pending_template == old_last_pend
17685 && last_error_tinst_level == old_error_tinst)
17686 ggc_free (tinst);
17687
17688 return r;
17689 }
17690
17691 /* Adjust types before performing type deduction, as described in
17692 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17693 sections are symmetric. PARM is the type of a function parameter
17694 or the return type of the conversion function. ARG is the type of
17695 the argument passed to the call, or the type of the value
17696 initialized with the result of the conversion function.
17697 ARG_EXPR is the original argument expression, which may be null. */
17698
17699 static int
17700 maybe_adjust_types_for_deduction (unification_kind_t strict,
17701 tree* parm,
17702 tree* arg,
17703 tree arg_expr)
17704 {
17705 int result = 0;
17706
17707 switch (strict)
17708 {
17709 case DEDUCE_CALL:
17710 break;
17711
17712 case DEDUCE_CONV:
17713 /* Swap PARM and ARG throughout the remainder of this
17714 function; the handling is precisely symmetric since PARM
17715 will initialize ARG rather than vice versa. */
17716 std::swap (parm, arg);
17717 break;
17718
17719 case DEDUCE_EXACT:
17720 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17721 too, but here handle it by stripping the reference from PARM
17722 rather than by adding it to ARG. */
17723 if (TREE_CODE (*parm) == REFERENCE_TYPE
17724 && TYPE_REF_IS_RVALUE (*parm)
17725 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17726 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17727 && TREE_CODE (*arg) == REFERENCE_TYPE
17728 && !TYPE_REF_IS_RVALUE (*arg))
17729 *parm = TREE_TYPE (*parm);
17730 /* Nothing else to do in this case. */
17731 return 0;
17732
17733 default:
17734 gcc_unreachable ();
17735 }
17736
17737 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17738 {
17739 /* [temp.deduct.call]
17740
17741 If P is not a reference type:
17742
17743 --If A is an array type, the pointer type produced by the
17744 array-to-pointer standard conversion (_conv.array_) is
17745 used in place of A for type deduction; otherwise,
17746
17747 --If A is a function type, the pointer type produced by
17748 the function-to-pointer standard conversion
17749 (_conv.func_) is used in place of A for type deduction;
17750 otherwise,
17751
17752 --If A is a cv-qualified type, the top level
17753 cv-qualifiers of A's type are ignored for type
17754 deduction. */
17755 if (TREE_CODE (*arg) == ARRAY_TYPE)
17756 *arg = build_pointer_type (TREE_TYPE (*arg));
17757 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17758 *arg = build_pointer_type (*arg);
17759 else
17760 *arg = TYPE_MAIN_VARIANT (*arg);
17761 }
17762
17763 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17764 of the form T&&, where T is a template parameter, and the argument
17765 is an lvalue, T is deduced as A& */
17766 if (TREE_CODE (*parm) == REFERENCE_TYPE
17767 && TYPE_REF_IS_RVALUE (*parm)
17768 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17769 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17770 && (arg_expr ? real_lvalue_p (arg_expr)
17771 /* try_one_overload doesn't provide an arg_expr, but
17772 functions are always lvalues. */
17773 : TREE_CODE (*arg) == FUNCTION_TYPE))
17774 *arg = build_reference_type (*arg);
17775
17776 /* [temp.deduct.call]
17777
17778 If P is a cv-qualified type, the top level cv-qualifiers
17779 of P's type are ignored for type deduction. If P is a
17780 reference type, the type referred to by P is used for
17781 type deduction. */
17782 *parm = TYPE_MAIN_VARIANT (*parm);
17783 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17784 {
17785 *parm = TREE_TYPE (*parm);
17786 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17787 }
17788
17789 /* DR 322. For conversion deduction, remove a reference type on parm
17790 too (which has been swapped into ARG). */
17791 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17792 *arg = TREE_TYPE (*arg);
17793
17794 return result;
17795 }
17796
17797 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17798 template which does contain any deducible template parameters; check if
17799 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17800 unify_one_argument. */
17801
17802 static int
17803 check_non_deducible_conversion (tree parm, tree arg, int strict,
17804 int flags, bool explain_p)
17805 {
17806 tree type;
17807
17808 if (!TYPE_P (arg))
17809 type = TREE_TYPE (arg);
17810 else
17811 type = arg;
17812
17813 if (same_type_p (parm, type))
17814 return unify_success (explain_p);
17815
17816 if (strict == DEDUCE_CONV)
17817 {
17818 if (can_convert_arg (type, parm, NULL_TREE, flags,
17819 explain_p ? tf_warning_or_error : tf_none))
17820 return unify_success (explain_p);
17821 }
17822 else if (strict != DEDUCE_EXACT)
17823 {
17824 if (can_convert_arg (parm, type,
17825 TYPE_P (arg) ? NULL_TREE : arg,
17826 flags, explain_p ? tf_warning_or_error : tf_none))
17827 return unify_success (explain_p);
17828 }
17829
17830 if (strict == DEDUCE_EXACT)
17831 return unify_type_mismatch (explain_p, parm, arg);
17832 else
17833 return unify_arg_conversion (explain_p, parm, type, arg);
17834 }
17835
17836 static bool uses_deducible_template_parms (tree type);
17837
17838 /* Returns true iff the expression EXPR is one from which a template
17839 argument can be deduced. In other words, if it's an undecorated
17840 use of a template non-type parameter. */
17841
17842 static bool
17843 deducible_expression (tree expr)
17844 {
17845 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
17846 }
17847
17848 /* Returns true iff the array domain DOMAIN uses a template parameter in a
17849 deducible way; that is, if it has a max value of <PARM> - 1. */
17850
17851 static bool
17852 deducible_array_bound (tree domain)
17853 {
17854 if (domain == NULL_TREE)
17855 return false;
17856
17857 tree max = TYPE_MAX_VALUE (domain);
17858 if (TREE_CODE (max) != MINUS_EXPR)
17859 return false;
17860
17861 return deducible_expression (TREE_OPERAND (max, 0));
17862 }
17863
17864 /* Returns true iff the template arguments ARGS use a template parameter
17865 in a deducible way. */
17866
17867 static bool
17868 deducible_template_args (tree args)
17869 {
17870 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
17871 {
17872 bool deducible;
17873 tree elt = TREE_VEC_ELT (args, i);
17874 if (ARGUMENT_PACK_P (elt))
17875 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
17876 else
17877 {
17878 if (PACK_EXPANSION_P (elt))
17879 elt = PACK_EXPANSION_PATTERN (elt);
17880 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
17881 deducible = true;
17882 else if (TYPE_P (elt))
17883 deducible = uses_deducible_template_parms (elt);
17884 else
17885 deducible = deducible_expression (elt);
17886 }
17887 if (deducible)
17888 return true;
17889 }
17890 return false;
17891 }
17892
17893 /* Returns true iff TYPE contains any deducible references to template
17894 parameters, as per 14.8.2.5. */
17895
17896 static bool
17897 uses_deducible_template_parms (tree type)
17898 {
17899 if (PACK_EXPANSION_P (type))
17900 type = PACK_EXPANSION_PATTERN (type);
17901
17902 /* T
17903 cv-list T
17904 TT<T>
17905 TT<i>
17906 TT<> */
17907 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
17908 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
17909 return true;
17910
17911 /* T*
17912 T&
17913 T&& */
17914 if (POINTER_TYPE_P (type))
17915 return uses_deducible_template_parms (TREE_TYPE (type));
17916
17917 /* T[integer-constant ]
17918 type [i] */
17919 if (TREE_CODE (type) == ARRAY_TYPE)
17920 return (uses_deducible_template_parms (TREE_TYPE (type))
17921 || deducible_array_bound (TYPE_DOMAIN (type)));
17922
17923 /* T type ::*
17924 type T::*
17925 T T::*
17926 T (type ::*)()
17927 type (T::*)()
17928 type (type ::*)(T)
17929 type (T::*)(T)
17930 T (type ::*)(T)
17931 T (T::*)()
17932 T (T::*)(T) */
17933 if (TYPE_PTRMEM_P (type))
17934 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
17935 || (uses_deducible_template_parms
17936 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
17937
17938 /* template-name <T> (where template-name refers to a class template)
17939 template-name <i> (where template-name refers to a class template) */
17940 if (CLASS_TYPE_P (type)
17941 && CLASSTYPE_TEMPLATE_INFO (type)
17942 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
17943 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
17944 (CLASSTYPE_TI_ARGS (type)));
17945
17946 /* type (T)
17947 T()
17948 T(T) */
17949 if (TREE_CODE (type) == FUNCTION_TYPE
17950 || TREE_CODE (type) == METHOD_TYPE)
17951 {
17952 if (uses_deducible_template_parms (TREE_TYPE (type)))
17953 return true;
17954 tree parm = TYPE_ARG_TYPES (type);
17955 if (TREE_CODE (type) == METHOD_TYPE)
17956 parm = TREE_CHAIN (parm);
17957 for (; parm; parm = TREE_CHAIN (parm))
17958 if (uses_deducible_template_parms (TREE_VALUE (parm)))
17959 return true;
17960 }
17961
17962 return false;
17963 }
17964
17965 /* Subroutine of type_unification_real and unify_pack_expansion to
17966 handle unification of a single P/A pair. Parameters are as
17967 for those functions. */
17968
17969 static int
17970 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
17971 int subr, unification_kind_t strict,
17972 bool explain_p)
17973 {
17974 tree arg_expr = NULL_TREE;
17975 int arg_strict;
17976
17977 if (arg == error_mark_node || parm == error_mark_node)
17978 return unify_invalid (explain_p);
17979 if (arg == unknown_type_node)
17980 /* We can't deduce anything from this, but we might get all the
17981 template args from other function args. */
17982 return unify_success (explain_p);
17983
17984 /* Implicit conversions (Clause 4) will be performed on a function
17985 argument to convert it to the type of the corresponding function
17986 parameter if the parameter type contains no template-parameters that
17987 participate in template argument deduction. */
17988 if (strict != DEDUCE_EXACT
17989 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
17990 /* For function parameters with no deducible template parameters,
17991 just return. We'll check non-dependent conversions later. */
17992 return unify_success (explain_p);
17993
17994 switch (strict)
17995 {
17996 case DEDUCE_CALL:
17997 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
17998 | UNIFY_ALLOW_MORE_CV_QUAL
17999 | UNIFY_ALLOW_DERIVED);
18000 break;
18001
18002 case DEDUCE_CONV:
18003 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18004 break;
18005
18006 case DEDUCE_EXACT:
18007 arg_strict = UNIFY_ALLOW_NONE;
18008 break;
18009
18010 default:
18011 gcc_unreachable ();
18012 }
18013
18014 /* We only do these transformations if this is the top-level
18015 parameter_type_list in a call or declaration matching; in other
18016 situations (nested function declarators, template argument lists) we
18017 won't be comparing a type to an expression, and we don't do any type
18018 adjustments. */
18019 if (!subr)
18020 {
18021 if (!TYPE_P (arg))
18022 {
18023 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18024 if (type_unknown_p (arg))
18025 {
18026 /* [temp.deduct.type] A template-argument can be
18027 deduced from a pointer to function or pointer
18028 to member function argument if the set of
18029 overloaded functions does not contain function
18030 templates and at most one of a set of
18031 overloaded functions provides a unique
18032 match. */
18033
18034 if (resolve_overloaded_unification
18035 (tparms, targs, parm, arg, strict,
18036 arg_strict, explain_p))
18037 return unify_success (explain_p);
18038 return unify_overload_resolution_failure (explain_p, arg);
18039 }
18040
18041 arg_expr = arg;
18042 arg = unlowered_expr_type (arg);
18043 if (arg == error_mark_node)
18044 return unify_invalid (explain_p);
18045 }
18046
18047 arg_strict |=
18048 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18049 }
18050 else
18051 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18052 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18053 return unify_template_argument_mismatch (explain_p, parm, arg);
18054
18055 /* For deduction from an init-list we need the actual list. */
18056 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18057 arg = arg_expr;
18058 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18059 }
18060
18061 /* Most parms like fn_type_unification.
18062
18063 If SUBR is 1, we're being called recursively (to unify the
18064 arguments of a function or method parameter of a function
18065 template).
18066
18067 CHECKS is a pointer to a vector of access checks encountered while
18068 substituting default template arguments. */
18069
18070 static int
18071 type_unification_real (tree tparms,
18072 tree targs,
18073 tree xparms,
18074 const tree *xargs,
18075 unsigned int xnargs,
18076 int subr,
18077 unification_kind_t strict,
18078 int flags,
18079 vec<deferred_access_check, va_gc> **checks,
18080 bool explain_p)
18081 {
18082 tree parm, arg;
18083 int i;
18084 int ntparms = TREE_VEC_LENGTH (tparms);
18085 int saw_undeduced = 0;
18086 tree parms;
18087 const tree *args;
18088 unsigned int nargs;
18089 unsigned int ia;
18090
18091 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18092 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18093 gcc_assert (ntparms > 0);
18094
18095 /* Reset the number of non-defaulted template arguments contained
18096 in TARGS. */
18097 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18098
18099 again:
18100 parms = xparms;
18101 args = xargs;
18102 nargs = xnargs;
18103
18104 ia = 0;
18105 while (parms && parms != void_list_node
18106 && ia < nargs)
18107 {
18108 parm = TREE_VALUE (parms);
18109
18110 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18111 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18112 /* For a function parameter pack that occurs at the end of the
18113 parameter-declaration-list, the type A of each remaining
18114 argument of the call is compared with the type P of the
18115 declarator-id of the function parameter pack. */
18116 break;
18117
18118 parms = TREE_CHAIN (parms);
18119
18120 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18121 /* For a function parameter pack that does not occur at the
18122 end of the parameter-declaration-list, the type of the
18123 parameter pack is a non-deduced context. */
18124 continue;
18125
18126 arg = args[ia];
18127 ++ia;
18128
18129 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18130 explain_p))
18131 return 1;
18132 }
18133
18134 if (parms
18135 && parms != void_list_node
18136 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18137 {
18138 /* Unify the remaining arguments with the pack expansion type. */
18139 tree argvec;
18140 tree parmvec = make_tree_vec (1);
18141
18142 /* Allocate a TREE_VEC and copy in all of the arguments */
18143 argvec = make_tree_vec (nargs - ia);
18144 for (i = 0; ia < nargs; ++ia, ++i)
18145 TREE_VEC_ELT (argvec, i) = args[ia];
18146
18147 /* Copy the parameter into parmvec. */
18148 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18149 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
18150 /*subr=*/subr, explain_p))
18151 return 1;
18152
18153 /* Advance to the end of the list of parameters. */
18154 parms = TREE_CHAIN (parms);
18155 }
18156
18157 /* Fail if we've reached the end of the parm list, and more args
18158 are present, and the parm list isn't variadic. */
18159 if (ia < nargs && parms == void_list_node)
18160 return unify_too_many_arguments (explain_p, nargs, ia);
18161 /* Fail if parms are left and they don't have default values and
18162 they aren't all deduced as empty packs (c++/57397). This is
18163 consistent with sufficient_parms_p. */
18164 if (parms && parms != void_list_node
18165 && TREE_PURPOSE (parms) == NULL_TREE)
18166 {
18167 unsigned int count = nargs;
18168 tree p = parms;
18169 bool type_pack_p;
18170 do
18171 {
18172 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18173 if (!type_pack_p)
18174 count++;
18175 p = TREE_CHAIN (p);
18176 }
18177 while (p && p != void_list_node);
18178 if (count != nargs)
18179 return unify_too_few_arguments (explain_p, ia, count,
18180 type_pack_p);
18181 }
18182
18183 if (!subr)
18184 {
18185 tsubst_flags_t complain = (explain_p
18186 ? tf_warning_or_error
18187 : tf_none);
18188
18189 for (i = 0; i < ntparms; i++)
18190 {
18191 tree targ = TREE_VEC_ELT (targs, i);
18192 tree tparm = TREE_VEC_ELT (tparms, i);
18193
18194 /* Clear the "incomplete" flags on all argument packs now so that
18195 substituting them into later default arguments works. */
18196 if (targ && ARGUMENT_PACK_P (targ))
18197 {
18198 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18199 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18200 }
18201
18202 if (targ || tparm == error_mark_node)
18203 continue;
18204 tparm = TREE_VALUE (tparm);
18205
18206 /* If this is an undeduced nontype parameter that depends on
18207 a type parameter, try another pass; its type may have been
18208 deduced from a later argument than the one from which
18209 this parameter can be deduced. */
18210 if (TREE_CODE (tparm) == PARM_DECL
18211 && uses_template_parms (TREE_TYPE (tparm))
18212 && saw_undeduced < 2)
18213 {
18214 saw_undeduced = 1;
18215 continue;
18216 }
18217
18218 /* Core issue #226 (C++0x) [temp.deduct]:
18219
18220 If a template argument has not been deduced, its
18221 default template argument, if any, is used.
18222
18223 When we are in C++98 mode, TREE_PURPOSE will either
18224 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18225 to explicitly check cxx_dialect here. */
18226 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18227 /* OK, there is a default argument. Wait until after the
18228 conversion check to do substitution. */
18229 continue;
18230
18231 /* If the type parameter is a parameter pack, then it will
18232 be deduced to an empty parameter pack. */
18233 if (template_parameter_pack_p (tparm))
18234 {
18235 tree arg;
18236
18237 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18238 {
18239 arg = make_node (NONTYPE_ARGUMENT_PACK);
18240 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18241 TREE_CONSTANT (arg) = 1;
18242 }
18243 else
18244 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18245
18246 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18247
18248 TREE_VEC_ELT (targs, i) = arg;
18249 continue;
18250 }
18251
18252 return unify_parameter_deduction_failure (explain_p, tparm);
18253 }
18254
18255 /* DR 1391: All parameters have args, now check non-dependent parms for
18256 convertibility. */
18257 if (saw_undeduced < 2)
18258 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18259 parms && parms != void_list_node && ia < nargs; )
18260 {
18261 parm = TREE_VALUE (parms);
18262
18263 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18264 && (!TREE_CHAIN (parms)
18265 || TREE_CHAIN (parms) == void_list_node))
18266 /* For a function parameter pack that occurs at the end of the
18267 parameter-declaration-list, the type A of each remaining
18268 argument of the call is compared with the type P of the
18269 declarator-id of the function parameter pack. */
18270 break;
18271
18272 parms = TREE_CHAIN (parms);
18273
18274 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18275 /* For a function parameter pack that does not occur at the
18276 end of the parameter-declaration-list, the type of the
18277 parameter pack is a non-deduced context. */
18278 continue;
18279
18280 arg = args[ia];
18281 ++ia;
18282
18283 if (uses_template_parms (parm))
18284 continue;
18285 if (check_non_deducible_conversion (parm, arg, strict, flags,
18286 explain_p))
18287 return 1;
18288 }
18289
18290 /* Now substitute into the default template arguments. */
18291 for (i = 0; i < ntparms; i++)
18292 {
18293 tree targ = TREE_VEC_ELT (targs, i);
18294 tree tparm = TREE_VEC_ELT (tparms, i);
18295
18296 if (targ || tparm == error_mark_node)
18297 continue;
18298 tree parm = TREE_VALUE (tparm);
18299
18300 if (TREE_CODE (parm) == PARM_DECL
18301 && uses_template_parms (TREE_TYPE (parm))
18302 && saw_undeduced < 2)
18303 continue;
18304
18305 tree arg = TREE_PURPOSE (tparm);
18306 reopen_deferring_access_checks (*checks);
18307 location_t save_loc = input_location;
18308 if (DECL_P (parm))
18309 input_location = DECL_SOURCE_LOCATION (parm);
18310 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
18311 arg = convert_template_argument (parm, arg, targs, complain,
18312 i, NULL_TREE);
18313 input_location = save_loc;
18314 *checks = get_deferred_access_checks ();
18315 pop_deferring_access_checks ();
18316 if (arg == error_mark_node)
18317 return 1;
18318 else
18319 {
18320 TREE_VEC_ELT (targs, i) = arg;
18321 /* The position of the first default template argument,
18322 is also the number of non-defaulted arguments in TARGS.
18323 Record that. */
18324 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18325 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18326 continue;
18327 }
18328 }
18329
18330 if (saw_undeduced++ == 1)
18331 goto again;
18332 }
18333
18334 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18335 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18336
18337 return unify_success (explain_p);
18338 }
18339
18340 /* Subroutine of type_unification_real. Args are like the variables
18341 at the call site. ARG is an overloaded function (or template-id);
18342 we try deducing template args from each of the overloads, and if
18343 only one succeeds, we go with that. Modifies TARGS and returns
18344 true on success. */
18345
18346 static bool
18347 resolve_overloaded_unification (tree tparms,
18348 tree targs,
18349 tree parm,
18350 tree arg,
18351 unification_kind_t strict,
18352 int sub_strict,
18353 bool explain_p)
18354 {
18355 tree tempargs = copy_node (targs);
18356 int good = 0;
18357 tree goodfn = NULL_TREE;
18358 bool addr_p;
18359
18360 if (TREE_CODE (arg) == ADDR_EXPR)
18361 {
18362 arg = TREE_OPERAND (arg, 0);
18363 addr_p = true;
18364 }
18365 else
18366 addr_p = false;
18367
18368 if (TREE_CODE (arg) == COMPONENT_REF)
18369 /* Handle `&x' where `x' is some static or non-static member
18370 function name. */
18371 arg = TREE_OPERAND (arg, 1);
18372
18373 if (TREE_CODE (arg) == OFFSET_REF)
18374 arg = TREE_OPERAND (arg, 1);
18375
18376 /* Strip baselink information. */
18377 if (BASELINK_P (arg))
18378 arg = BASELINK_FUNCTIONS (arg);
18379
18380 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18381 {
18382 /* If we got some explicit template args, we need to plug them into
18383 the affected templates before we try to unify, in case the
18384 explicit args will completely resolve the templates in question. */
18385
18386 int ok = 0;
18387 tree expl_subargs = TREE_OPERAND (arg, 1);
18388 arg = TREE_OPERAND (arg, 0);
18389
18390 for (; arg; arg = OVL_NEXT (arg))
18391 {
18392 tree fn = OVL_CURRENT (arg);
18393 tree subargs, elem;
18394
18395 if (TREE_CODE (fn) != TEMPLATE_DECL)
18396 continue;
18397
18398 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18399 expl_subargs, NULL_TREE, tf_none,
18400 /*require_all_args=*/true,
18401 /*use_default_args=*/true);
18402 if (subargs != error_mark_node
18403 && !any_dependent_template_arguments_p (subargs))
18404 {
18405 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18406 if (try_one_overload (tparms, targs, tempargs, parm,
18407 elem, strict, sub_strict, addr_p, explain_p)
18408 && (!goodfn || !same_type_p (goodfn, elem)))
18409 {
18410 goodfn = elem;
18411 ++good;
18412 }
18413 }
18414 else if (subargs)
18415 ++ok;
18416 }
18417 /* If no templates (or more than one) are fully resolved by the
18418 explicit arguments, this template-id is a non-deduced context; it
18419 could still be OK if we deduce all template arguments for the
18420 enclosing call through other arguments. */
18421 if (good != 1)
18422 good = ok;
18423 }
18424 else if (TREE_CODE (arg) != OVERLOAD
18425 && TREE_CODE (arg) != FUNCTION_DECL)
18426 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18427 -- but the deduction does not succeed because the expression is
18428 not just the function on its own. */
18429 return false;
18430 else
18431 for (; arg; arg = OVL_NEXT (arg))
18432 if (try_one_overload (tparms, targs, tempargs, parm,
18433 TREE_TYPE (OVL_CURRENT (arg)),
18434 strict, sub_strict, addr_p, explain_p)
18435 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18436 {
18437 goodfn = OVL_CURRENT (arg);
18438 ++good;
18439 }
18440
18441 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18442 to function or pointer to member function argument if the set of
18443 overloaded functions does not contain function templates and at most
18444 one of a set of overloaded functions provides a unique match.
18445
18446 So if we found multiple possibilities, we return success but don't
18447 deduce anything. */
18448
18449 if (good == 1)
18450 {
18451 int i = TREE_VEC_LENGTH (targs);
18452 for (; i--; )
18453 if (TREE_VEC_ELT (tempargs, i))
18454 {
18455 tree old = TREE_VEC_ELT (targs, i);
18456 tree new_ = TREE_VEC_ELT (tempargs, i);
18457 if (new_ && old && ARGUMENT_PACK_P (old)
18458 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18459 /* Don't forget explicit template arguments in a pack. */
18460 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18461 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18462 TREE_VEC_ELT (targs, i) = new_;
18463 }
18464 }
18465 if (good)
18466 return true;
18467
18468 return false;
18469 }
18470
18471 /* Core DR 115: In contexts where deduction is done and fails, or in
18472 contexts where deduction is not done, if a template argument list is
18473 specified and it, along with any default template arguments, identifies
18474 a single function template specialization, then the template-id is an
18475 lvalue for the function template specialization. */
18476
18477 tree
18478 resolve_nondeduced_context (tree orig_expr)
18479 {
18480 tree expr, offset, baselink;
18481 bool addr;
18482
18483 if (!type_unknown_p (orig_expr))
18484 return orig_expr;
18485
18486 expr = orig_expr;
18487 addr = false;
18488 offset = NULL_TREE;
18489 baselink = NULL_TREE;
18490
18491 if (TREE_CODE (expr) == ADDR_EXPR)
18492 {
18493 expr = TREE_OPERAND (expr, 0);
18494 addr = true;
18495 }
18496 if (TREE_CODE (expr) == OFFSET_REF)
18497 {
18498 offset = expr;
18499 expr = TREE_OPERAND (expr, 1);
18500 }
18501 if (BASELINK_P (expr))
18502 {
18503 baselink = expr;
18504 expr = BASELINK_FUNCTIONS (expr);
18505 }
18506
18507 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18508 {
18509 int good = 0;
18510 tree goodfn = NULL_TREE;
18511
18512 /* If we got some explicit template args, we need to plug them into
18513 the affected templates before we try to unify, in case the
18514 explicit args will completely resolve the templates in question. */
18515
18516 tree expl_subargs = TREE_OPERAND (expr, 1);
18517 tree arg = TREE_OPERAND (expr, 0);
18518 tree badfn = NULL_TREE;
18519 tree badargs = NULL_TREE;
18520
18521 for (; arg; arg = OVL_NEXT (arg))
18522 {
18523 tree fn = OVL_CURRENT (arg);
18524 tree subargs, elem;
18525
18526 if (TREE_CODE (fn) != TEMPLATE_DECL)
18527 continue;
18528
18529 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18530 expl_subargs, NULL_TREE, tf_none,
18531 /*require_all_args=*/true,
18532 /*use_default_args=*/true);
18533 if (subargs != error_mark_node
18534 && !any_dependent_template_arguments_p (subargs))
18535 {
18536 elem = instantiate_template (fn, subargs, tf_none);
18537 if (elem == error_mark_node)
18538 {
18539 badfn = fn;
18540 badargs = subargs;
18541 }
18542 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18543 {
18544 goodfn = elem;
18545 ++good;
18546 }
18547 }
18548 }
18549 if (good == 1)
18550 {
18551 mark_used (goodfn);
18552 expr = goodfn;
18553 if (baselink)
18554 expr = build_baselink (BASELINK_BINFO (baselink),
18555 BASELINK_ACCESS_BINFO (baselink),
18556 expr, BASELINK_OPTYPE (baselink));
18557 if (offset)
18558 {
18559 tree base
18560 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18561 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
18562 }
18563 if (addr)
18564 expr = cp_build_addr_expr (expr, tf_warning_or_error);
18565 return expr;
18566 }
18567 else if (good == 0 && badargs)
18568 /* There were no good options and at least one bad one, so let the
18569 user know what the problem is. */
18570 instantiate_template (badfn, badargs, tf_warning_or_error);
18571 }
18572 return orig_expr;
18573 }
18574
18575 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18576 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18577 different overloads deduce different arguments for a given parm.
18578 ADDR_P is true if the expression for which deduction is being
18579 performed was of the form "& fn" rather than simply "fn".
18580
18581 Returns 1 on success. */
18582
18583 static int
18584 try_one_overload (tree tparms,
18585 tree orig_targs,
18586 tree targs,
18587 tree parm,
18588 tree arg,
18589 unification_kind_t strict,
18590 int sub_strict,
18591 bool addr_p,
18592 bool explain_p)
18593 {
18594 int nargs;
18595 tree tempargs;
18596 int i;
18597
18598 if (arg == error_mark_node)
18599 return 0;
18600
18601 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18602 to function or pointer to member function argument if the set of
18603 overloaded functions does not contain function templates and at most
18604 one of a set of overloaded functions provides a unique match.
18605
18606 So if this is a template, just return success. */
18607
18608 if (uses_template_parms (arg))
18609 return 1;
18610
18611 if (TREE_CODE (arg) == METHOD_TYPE)
18612 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18613 else if (addr_p)
18614 arg = build_pointer_type (arg);
18615
18616 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18617
18618 /* We don't copy orig_targs for this because if we have already deduced
18619 some template args from previous args, unify would complain when we
18620 try to deduce a template parameter for the same argument, even though
18621 there isn't really a conflict. */
18622 nargs = TREE_VEC_LENGTH (targs);
18623 tempargs = make_tree_vec (nargs);
18624
18625 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18626 return 0;
18627
18628 /* First make sure we didn't deduce anything that conflicts with
18629 explicitly specified args. */
18630 for (i = nargs; i--; )
18631 {
18632 tree elt = TREE_VEC_ELT (tempargs, i);
18633 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18634
18635 if (!elt)
18636 /*NOP*/;
18637 else if (uses_template_parms (elt))
18638 /* Since we're unifying against ourselves, we will fill in
18639 template args used in the function parm list with our own
18640 template parms. Discard them. */
18641 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18642 else if (oldelt && !template_args_equal (oldelt, elt))
18643 return 0;
18644 }
18645
18646 for (i = nargs; i--; )
18647 {
18648 tree elt = TREE_VEC_ELT (tempargs, i);
18649
18650 if (elt)
18651 TREE_VEC_ELT (targs, i) = elt;
18652 }
18653
18654 return 1;
18655 }
18656
18657 /* PARM is a template class (perhaps with unbound template
18658 parameters). ARG is a fully instantiated type. If ARG can be
18659 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18660 TARGS are as for unify. */
18661
18662 static tree
18663 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18664 bool explain_p)
18665 {
18666 tree copy_of_targs;
18667
18668 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18669 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18670 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18671 return NULL_TREE;
18672
18673 /* We need to make a new template argument vector for the call to
18674 unify. If we used TARGS, we'd clutter it up with the result of
18675 the attempted unification, even if this class didn't work out.
18676 We also don't want to commit ourselves to all the unifications
18677 we've already done, since unification is supposed to be done on
18678 an argument-by-argument basis. In other words, consider the
18679 following pathological case:
18680
18681 template <int I, int J, int K>
18682 struct S {};
18683
18684 template <int I, int J>
18685 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18686
18687 template <int I, int J, int K>
18688 void f(S<I, J, K>, S<I, I, I>);
18689
18690 void g() {
18691 S<0, 0, 0> s0;
18692 S<0, 1, 2> s2;
18693
18694 f(s0, s2);
18695 }
18696
18697 Now, by the time we consider the unification involving `s2', we
18698 already know that we must have `f<0, 0, 0>'. But, even though
18699 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18700 because there are two ways to unify base classes of S<0, 1, 2>
18701 with S<I, I, I>. If we kept the already deduced knowledge, we
18702 would reject the possibility I=1. */
18703 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18704
18705 /* If unification failed, we're done. */
18706 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18707 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18708 return NULL_TREE;
18709
18710 return arg;
18711 }
18712
18713 /* Given a template type PARM and a class type ARG, find the unique
18714 base type in ARG that is an instance of PARM. We do not examine
18715 ARG itself; only its base-classes. If there is not exactly one
18716 appropriate base class, return NULL_TREE. PARM may be the type of
18717 a partial specialization, as well as a plain template type. Used
18718 by unify. */
18719
18720 static enum template_base_result
18721 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18722 bool explain_p, tree *result)
18723 {
18724 tree rval = NULL_TREE;
18725 tree binfo;
18726
18727 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18728
18729 binfo = TYPE_BINFO (complete_type (arg));
18730 if (!binfo)
18731 {
18732 /* The type could not be completed. */
18733 *result = NULL_TREE;
18734 return tbr_incomplete_type;
18735 }
18736
18737 /* Walk in inheritance graph order. The search order is not
18738 important, and this avoids multiple walks of virtual bases. */
18739 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18740 {
18741 tree r = try_class_unification (tparms, targs, parm,
18742 BINFO_TYPE (binfo), explain_p);
18743
18744 if (r)
18745 {
18746 /* If there is more than one satisfactory baseclass, then:
18747
18748 [temp.deduct.call]
18749
18750 If they yield more than one possible deduced A, the type
18751 deduction fails.
18752
18753 applies. */
18754 if (rval && !same_type_p (r, rval))
18755 {
18756 *result = NULL_TREE;
18757 return tbr_ambiguous_baseclass;
18758 }
18759
18760 rval = r;
18761 }
18762 }
18763
18764 *result = rval;
18765 return tbr_success;
18766 }
18767
18768 /* Returns the level of DECL, which declares a template parameter. */
18769
18770 static int
18771 template_decl_level (tree decl)
18772 {
18773 switch (TREE_CODE (decl))
18774 {
18775 case TYPE_DECL:
18776 case TEMPLATE_DECL:
18777 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18778
18779 case PARM_DECL:
18780 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18781
18782 default:
18783 gcc_unreachable ();
18784 }
18785 return 0;
18786 }
18787
18788 /* Decide whether ARG can be unified with PARM, considering only the
18789 cv-qualifiers of each type, given STRICT as documented for unify.
18790 Returns nonzero iff the unification is OK on that basis. */
18791
18792 static int
18793 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18794 {
18795 int arg_quals = cp_type_quals (arg);
18796 int parm_quals = cp_type_quals (parm);
18797
18798 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18799 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18800 {
18801 /* Although a CVR qualifier is ignored when being applied to a
18802 substituted template parameter ([8.3.2]/1 for example), that
18803 does not allow us to unify "const T" with "int&" because both
18804 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
18805 It is ok when we're allowing additional CV qualifiers
18806 at the outer level [14.8.2.1]/3,1st bullet. */
18807 if ((TREE_CODE (arg) == REFERENCE_TYPE
18808 || TREE_CODE (arg) == FUNCTION_TYPE
18809 || TREE_CODE (arg) == METHOD_TYPE)
18810 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
18811 return 0;
18812
18813 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
18814 && (parm_quals & TYPE_QUAL_RESTRICT))
18815 return 0;
18816 }
18817
18818 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18819 && (arg_quals & parm_quals) != parm_quals)
18820 return 0;
18821
18822 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
18823 && (parm_quals & arg_quals) != arg_quals)
18824 return 0;
18825
18826 return 1;
18827 }
18828
18829 /* Determines the LEVEL and INDEX for the template parameter PARM. */
18830 void
18831 template_parm_level_and_index (tree parm, int* level, int* index)
18832 {
18833 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18834 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18835 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18836 {
18837 *index = TEMPLATE_TYPE_IDX (parm);
18838 *level = TEMPLATE_TYPE_LEVEL (parm);
18839 }
18840 else
18841 {
18842 *index = TEMPLATE_PARM_IDX (parm);
18843 *level = TEMPLATE_PARM_LEVEL (parm);
18844 }
18845 }
18846
18847 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
18848 do { \
18849 if (unify (TP, TA, P, A, S, EP)) \
18850 return 1; \
18851 } while (0);
18852
18853 /* Unifies the remaining arguments in PACKED_ARGS with the pack
18854 expansion at the end of PACKED_PARMS. Returns 0 if the type
18855 deduction succeeds, 1 otherwise. STRICT is the same as in
18856 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
18857 call argument list. We'll need to adjust the arguments to make them
18858 types. SUBR tells us if this is from a recursive call to
18859 type_unification_real, or for comparing two template argument
18860 lists. */
18861
18862 static int
18863 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
18864 tree packed_args, unification_kind_t strict,
18865 bool subr, bool explain_p)
18866 {
18867 tree parm
18868 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
18869 tree pattern = PACK_EXPANSION_PATTERN (parm);
18870 tree pack, packs = NULL_TREE;
18871 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
18872
18873 packed_args = expand_template_argument_pack (packed_args);
18874
18875 int len = TREE_VEC_LENGTH (packed_args);
18876
18877 /* Determine the parameter packs we will be deducing from the
18878 pattern, and record their current deductions. */
18879 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
18880 pack; pack = TREE_CHAIN (pack))
18881 {
18882 tree parm_pack = TREE_VALUE (pack);
18883 int idx, level;
18884
18885 /* Determine the index and level of this parameter pack. */
18886 template_parm_level_and_index (parm_pack, &level, &idx);
18887
18888 /* Keep track of the parameter packs and their corresponding
18889 argument packs. */
18890 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
18891 TREE_TYPE (packs) = make_tree_vec (len - start);
18892 }
18893
18894 /* Loop through all of the arguments that have not yet been
18895 unified and unify each with the pattern. */
18896 for (i = start; i < len; i++)
18897 {
18898 tree parm;
18899 bool any_explicit = false;
18900 tree arg = TREE_VEC_ELT (packed_args, i);
18901
18902 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
18903 or the element of its argument pack at the current index if
18904 this argument was explicitly specified. */
18905 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18906 {
18907 int idx, level;
18908 tree arg, pargs;
18909 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18910
18911 arg = NULL_TREE;
18912 if (TREE_VALUE (pack)
18913 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
18914 && (i - start < TREE_VEC_LENGTH (pargs)))
18915 {
18916 any_explicit = true;
18917 arg = TREE_VEC_ELT (pargs, i - start);
18918 }
18919 TMPL_ARG (targs, level, idx) = arg;
18920 }
18921
18922 /* If we had explicit template arguments, substitute them into the
18923 pattern before deduction. */
18924 if (any_explicit)
18925 {
18926 /* Some arguments might still be unspecified or dependent. */
18927 bool dependent;
18928 ++processing_template_decl;
18929 dependent = any_dependent_template_arguments_p (targs);
18930 if (!dependent)
18931 --processing_template_decl;
18932 parm = tsubst (pattern, targs,
18933 explain_p ? tf_warning_or_error : tf_none,
18934 NULL_TREE);
18935 if (dependent)
18936 --processing_template_decl;
18937 if (parm == error_mark_node)
18938 return 1;
18939 }
18940 else
18941 parm = pattern;
18942
18943 /* Unify the pattern with the current argument. */
18944 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18945 explain_p))
18946 return 1;
18947
18948 /* For each parameter pack, collect the deduced value. */
18949 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18950 {
18951 int idx, level;
18952 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18953
18954 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
18955 TMPL_ARG (targs, level, idx);
18956 }
18957 }
18958
18959 /* Verify that the results of unification with the parameter packs
18960 produce results consistent with what we've seen before, and make
18961 the deduced argument packs available. */
18962 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18963 {
18964 tree old_pack = TREE_VALUE (pack);
18965 tree new_args = TREE_TYPE (pack);
18966 int i, len = TREE_VEC_LENGTH (new_args);
18967 int idx, level;
18968 bool nondeduced_p = false;
18969
18970 /* By default keep the original deduced argument pack.
18971 If necessary, more specific code is going to update the
18972 resulting deduced argument later down in this function. */
18973 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18974 TMPL_ARG (targs, level, idx) = old_pack;
18975
18976 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
18977 actually deduce anything. */
18978 for (i = 0; i < len && !nondeduced_p; ++i)
18979 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
18980 nondeduced_p = true;
18981 if (nondeduced_p)
18982 continue;
18983
18984 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
18985 {
18986 /* If we had fewer function args than explicit template args,
18987 just use the explicits. */
18988 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18989 int explicit_len = TREE_VEC_LENGTH (explicit_args);
18990 if (len < explicit_len)
18991 new_args = explicit_args;
18992 }
18993
18994 if (!old_pack)
18995 {
18996 tree result;
18997 /* Build the deduced *_ARGUMENT_PACK. */
18998 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
18999 {
19000 result = make_node (NONTYPE_ARGUMENT_PACK);
19001 TREE_TYPE (result) =
19002 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
19003 TREE_CONSTANT (result) = 1;
19004 }
19005 else
19006 result = cxx_make_type (TYPE_ARGUMENT_PACK);
19007
19008 SET_ARGUMENT_PACK_ARGS (result, new_args);
19009
19010 /* Note the deduced argument packs for this parameter
19011 pack. */
19012 TMPL_ARG (targs, level, idx) = result;
19013 }
19014 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
19015 && (ARGUMENT_PACK_ARGS (old_pack)
19016 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
19017 {
19018 /* We only had the explicitly-provided arguments before, but
19019 now we have a complete set of arguments. */
19020 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19021
19022 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
19023 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
19024 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
19025 }
19026 else
19027 {
19028 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
19029 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
19030
19031 if (!comp_template_args_with_info (old_args, new_args,
19032 &bad_old_arg, &bad_new_arg))
19033 /* Inconsistent unification of this parameter pack. */
19034 return unify_parameter_pack_inconsistent (explain_p,
19035 bad_old_arg,
19036 bad_new_arg);
19037 }
19038 }
19039
19040 return unify_success (explain_p);
19041 }
19042
19043 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19044 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19045 parameters and return value are as for unify. */
19046
19047 static int
19048 unify_array_domain (tree tparms, tree targs,
19049 tree parm_dom, tree arg_dom,
19050 bool explain_p)
19051 {
19052 tree parm_max;
19053 tree arg_max;
19054 bool parm_cst;
19055 bool arg_cst;
19056
19057 /* Our representation of array types uses "N - 1" as the
19058 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19059 not an integer constant. We cannot unify arbitrarily
19060 complex expressions, so we eliminate the MINUS_EXPRs
19061 here. */
19062 parm_max = TYPE_MAX_VALUE (parm_dom);
19063 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19064 if (!parm_cst)
19065 {
19066 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19067 parm_max = TREE_OPERAND (parm_max, 0);
19068 }
19069 arg_max = TYPE_MAX_VALUE (arg_dom);
19070 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19071 if (!arg_cst)
19072 {
19073 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19074 trying to unify the type of a variable with the type
19075 of a template parameter. For example:
19076
19077 template <unsigned int N>
19078 void f (char (&) [N]);
19079 int g();
19080 void h(int i) {
19081 char a[g(i)];
19082 f(a);
19083 }
19084
19085 Here, the type of the ARG will be "int [g(i)]", and
19086 may be a SAVE_EXPR, etc. */
19087 if (TREE_CODE (arg_max) != MINUS_EXPR)
19088 return unify_vla_arg (explain_p, arg_dom);
19089 arg_max = TREE_OPERAND (arg_max, 0);
19090 }
19091
19092 /* If only one of the bounds used a MINUS_EXPR, compensate
19093 by adding one to the other bound. */
19094 if (parm_cst && !arg_cst)
19095 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19096 integer_type_node,
19097 parm_max,
19098 integer_one_node);
19099 else if (arg_cst && !parm_cst)
19100 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19101 integer_type_node,
19102 arg_max,
19103 integer_one_node);
19104
19105 return unify (tparms, targs, parm_max, arg_max,
19106 UNIFY_ALLOW_INTEGER, explain_p);
19107 }
19108
19109 /* Deduce the value of template parameters. TPARMS is the (innermost)
19110 set of template parameters to a template. TARGS is the bindings
19111 for those template parameters, as determined thus far; TARGS may
19112 include template arguments for outer levels of template parameters
19113 as well. PARM is a parameter to a template function, or a
19114 subcomponent of that parameter; ARG is the corresponding argument.
19115 This function attempts to match PARM with ARG in a manner
19116 consistent with the existing assignments in TARGS. If more values
19117 are deduced, then TARGS is updated.
19118
19119 Returns 0 if the type deduction succeeds, 1 otherwise. The
19120 parameter STRICT is a bitwise or of the following flags:
19121
19122 UNIFY_ALLOW_NONE:
19123 Require an exact match between PARM and ARG.
19124 UNIFY_ALLOW_MORE_CV_QUAL:
19125 Allow the deduced ARG to be more cv-qualified (by qualification
19126 conversion) than ARG.
19127 UNIFY_ALLOW_LESS_CV_QUAL:
19128 Allow the deduced ARG to be less cv-qualified than ARG.
19129 UNIFY_ALLOW_DERIVED:
19130 Allow the deduced ARG to be a template base class of ARG,
19131 or a pointer to a template base class of the type pointed to by
19132 ARG.
19133 UNIFY_ALLOW_INTEGER:
19134 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19135 case for more information.
19136 UNIFY_ALLOW_OUTER_LEVEL:
19137 This is the outermost level of a deduction. Used to determine validity
19138 of qualification conversions. A valid qualification conversion must
19139 have const qualified pointers leading up to the inner type which
19140 requires additional CV quals, except at the outer level, where const
19141 is not required [conv.qual]. It would be normal to set this flag in
19142 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19143 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19144 This is the outermost level of a deduction, and PARM can be more CV
19145 qualified at this point.
19146 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19147 This is the outermost level of a deduction, and PARM can be less CV
19148 qualified at this point. */
19149
19150 static int
19151 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19152 bool explain_p)
19153 {
19154 int idx;
19155 tree targ;
19156 tree tparm;
19157 int strict_in = strict;
19158
19159 /* I don't think this will do the right thing with respect to types.
19160 But the only case I've seen it in so far has been array bounds, where
19161 signedness is the only information lost, and I think that will be
19162 okay. */
19163 while (TREE_CODE (parm) == NOP_EXPR)
19164 parm = TREE_OPERAND (parm, 0);
19165
19166 if (arg == error_mark_node)
19167 return unify_invalid (explain_p);
19168 if (arg == unknown_type_node
19169 || arg == init_list_type_node)
19170 /* We can't deduce anything from this, but we might get all the
19171 template args from other function args. */
19172 return unify_success (explain_p);
19173
19174 /* If PARM uses template parameters, then we can't bail out here,
19175 even if ARG == PARM, since we won't record unifications for the
19176 template parameters. We might need them if we're trying to
19177 figure out which of two things is more specialized. */
19178 if (arg == parm && !uses_template_parms (parm))
19179 return unify_success (explain_p);
19180
19181 /* Handle init lists early, so the rest of the function can assume
19182 we're dealing with a type. */
19183 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19184 {
19185 tree elt, elttype;
19186 unsigned i;
19187 tree orig_parm = parm;
19188
19189 /* Replace T with std::initializer_list<T> for deduction. */
19190 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19191 && flag_deduce_init_list)
19192 parm = listify (parm);
19193
19194 if (!is_std_init_list (parm)
19195 && TREE_CODE (parm) != ARRAY_TYPE)
19196 /* We can only deduce from an initializer list argument if the
19197 parameter is std::initializer_list or an array; otherwise this
19198 is a non-deduced context. */
19199 return unify_success (explain_p);
19200
19201 if (TREE_CODE (parm) == ARRAY_TYPE)
19202 elttype = TREE_TYPE (parm);
19203 else
19204 {
19205 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19206 /* Deduction is defined in terms of a single type, so just punt
19207 on the (bizarre) std::initializer_list<T...>. */
19208 if (PACK_EXPANSION_P (elttype))
19209 return unify_success (explain_p);
19210 }
19211
19212 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19213 {
19214 int elt_strict = strict;
19215
19216 if (elt == error_mark_node)
19217 return unify_invalid (explain_p);
19218
19219 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19220 {
19221 tree type = TREE_TYPE (elt);
19222 if (type == error_mark_node)
19223 return unify_invalid (explain_p);
19224 /* It should only be possible to get here for a call. */
19225 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19226 elt_strict |= maybe_adjust_types_for_deduction
19227 (DEDUCE_CALL, &elttype, &type, elt);
19228 elt = type;
19229 }
19230
19231 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19232 explain_p);
19233 }
19234
19235 if (TREE_CODE (parm) == ARRAY_TYPE
19236 && deducible_array_bound (TYPE_DOMAIN (parm)))
19237 {
19238 /* Also deduce from the length of the initializer list. */
19239 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19240 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19241 if (idx == error_mark_node)
19242 return unify_invalid (explain_p);
19243 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19244 idx, explain_p);
19245 }
19246
19247 /* If the std::initializer_list<T> deduction worked, replace the
19248 deduced A with std::initializer_list<A>. */
19249 if (orig_parm != parm)
19250 {
19251 idx = TEMPLATE_TYPE_IDX (orig_parm);
19252 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19253 targ = listify (targ);
19254 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19255 }
19256 return unify_success (explain_p);
19257 }
19258
19259 /* Immediately reject some pairs that won't unify because of
19260 cv-qualification mismatches. */
19261 if (TREE_CODE (arg) == TREE_CODE (parm)
19262 && TYPE_P (arg)
19263 /* It is the elements of the array which hold the cv quals of an array
19264 type, and the elements might be template type parms. We'll check
19265 when we recurse. */
19266 && TREE_CODE (arg) != ARRAY_TYPE
19267 /* We check the cv-qualifiers when unifying with template type
19268 parameters below. We want to allow ARG `const T' to unify with
19269 PARM `T' for example, when computing which of two templates
19270 is more specialized, for example. */
19271 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19272 && !check_cv_quals_for_unify (strict_in, arg, parm))
19273 return unify_cv_qual_mismatch (explain_p, parm, arg);
19274
19275 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19276 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19277 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19278 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19279 strict &= ~UNIFY_ALLOW_DERIVED;
19280 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19281 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19282
19283 switch (TREE_CODE (parm))
19284 {
19285 case TYPENAME_TYPE:
19286 case SCOPE_REF:
19287 case UNBOUND_CLASS_TEMPLATE:
19288 /* In a type which contains a nested-name-specifier, template
19289 argument values cannot be deduced for template parameters used
19290 within the nested-name-specifier. */
19291 return unify_success (explain_p);
19292
19293 case TEMPLATE_TYPE_PARM:
19294 case TEMPLATE_TEMPLATE_PARM:
19295 case BOUND_TEMPLATE_TEMPLATE_PARM:
19296 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19297 if (error_operand_p (tparm))
19298 return unify_invalid (explain_p);
19299
19300 if (TEMPLATE_TYPE_LEVEL (parm)
19301 != template_decl_level (tparm))
19302 /* The PARM is not one we're trying to unify. Just check
19303 to see if it matches ARG. */
19304 {
19305 if (TREE_CODE (arg) == TREE_CODE (parm)
19306 && (is_auto (parm) ? is_auto (arg)
19307 : same_type_p (parm, arg)))
19308 return unify_success (explain_p);
19309 else
19310 return unify_type_mismatch (explain_p, parm, arg);
19311 }
19312 idx = TEMPLATE_TYPE_IDX (parm);
19313 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19314 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19315 if (error_operand_p (tparm))
19316 return unify_invalid (explain_p);
19317
19318 /* Check for mixed types and values. */
19319 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19320 && TREE_CODE (tparm) != TYPE_DECL)
19321 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19322 && TREE_CODE (tparm) != TEMPLATE_DECL))
19323 gcc_unreachable ();
19324
19325 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19326 {
19327 /* ARG must be constructed from a template class or a template
19328 template parameter. */
19329 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19330 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19331 return unify_template_deduction_failure (explain_p, parm, arg);
19332 {
19333 tree parmvec = TYPE_TI_ARGS (parm);
19334 /* An alias template name is never deduced. */
19335 if (TYPE_ALIAS_P (arg))
19336 arg = strip_typedefs (arg);
19337 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19338 tree full_argvec = add_to_template_args (targs, argvec);
19339 tree parm_parms
19340 = DECL_INNERMOST_TEMPLATE_PARMS
19341 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19342 int i, len;
19343 int parm_variadic_p = 0;
19344
19345 /* The resolution to DR150 makes clear that default
19346 arguments for an N-argument may not be used to bind T
19347 to a template template parameter with fewer than N
19348 parameters. It is not safe to permit the binding of
19349 default arguments as an extension, as that may change
19350 the meaning of a conforming program. Consider:
19351
19352 struct Dense { static const unsigned int dim = 1; };
19353
19354 template <template <typename> class View,
19355 typename Block>
19356 void operator+(float, View<Block> const&);
19357
19358 template <typename Block,
19359 unsigned int Dim = Block::dim>
19360 struct Lvalue_proxy { operator float() const; };
19361
19362 void
19363 test_1d (void) {
19364 Lvalue_proxy<Dense> p;
19365 float b;
19366 b + p;
19367 }
19368
19369 Here, if Lvalue_proxy is permitted to bind to View, then
19370 the global operator+ will be used; if they are not, the
19371 Lvalue_proxy will be converted to float. */
19372 if (coerce_template_parms (parm_parms,
19373 full_argvec,
19374 TYPE_TI_TEMPLATE (parm),
19375 (explain_p
19376 ? tf_warning_or_error
19377 : tf_none),
19378 /*require_all_args=*/true,
19379 /*use_default_args=*/false)
19380 == error_mark_node)
19381 return 1;
19382
19383 /* Deduce arguments T, i from TT<T> or TT<i>.
19384 We check each element of PARMVEC and ARGVEC individually
19385 rather than the whole TREE_VEC since they can have
19386 different number of elements. */
19387
19388 parmvec = expand_template_argument_pack (parmvec);
19389 argvec = expand_template_argument_pack (argvec);
19390
19391 len = TREE_VEC_LENGTH (parmvec);
19392
19393 /* Check if the parameters end in a pack, making them
19394 variadic. */
19395 if (len > 0
19396 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19397 parm_variadic_p = 1;
19398
19399 for (i = 0; i < len - parm_variadic_p; ++i)
19400 /* If the template argument list of P contains a pack
19401 expansion that is not the last template argument, the
19402 entire template argument list is a non-deduced
19403 context. */
19404 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19405 return unify_success (explain_p);
19406
19407 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19408 return unify_too_few_arguments (explain_p,
19409 TREE_VEC_LENGTH (argvec), len);
19410
19411 for (i = 0; i < len - parm_variadic_p; ++i)
19412 {
19413 RECUR_AND_CHECK_FAILURE (tparms, targs,
19414 TREE_VEC_ELT (parmvec, i),
19415 TREE_VEC_ELT (argvec, i),
19416 UNIFY_ALLOW_NONE, explain_p);
19417 }
19418
19419 if (parm_variadic_p
19420 && unify_pack_expansion (tparms, targs,
19421 parmvec, argvec,
19422 DEDUCE_EXACT,
19423 /*subr=*/true, explain_p))
19424 return 1;
19425 }
19426 arg = TYPE_TI_TEMPLATE (arg);
19427
19428 /* Fall through to deduce template name. */
19429 }
19430
19431 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19432 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19433 {
19434 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19435
19436 /* Simple cases: Value already set, does match or doesn't. */
19437 if (targ != NULL_TREE && template_args_equal (targ, arg))
19438 return unify_success (explain_p);
19439 else if (targ)
19440 return unify_inconsistency (explain_p, parm, targ, arg);
19441 }
19442 else
19443 {
19444 /* If PARM is `const T' and ARG is only `int', we don't have
19445 a match unless we are allowing additional qualification.
19446 If ARG is `const int' and PARM is just `T' that's OK;
19447 that binds `const int' to `T'. */
19448 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19449 arg, parm))
19450 return unify_cv_qual_mismatch (explain_p, parm, arg);
19451
19452 /* Consider the case where ARG is `const volatile int' and
19453 PARM is `const T'. Then, T should be `volatile int'. */
19454 arg = cp_build_qualified_type_real
19455 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19456 if (arg == error_mark_node)
19457 return unify_invalid (explain_p);
19458
19459 /* Simple cases: Value already set, does match or doesn't. */
19460 if (targ != NULL_TREE && same_type_p (targ, arg))
19461 return unify_success (explain_p);
19462 else if (targ)
19463 return unify_inconsistency (explain_p, parm, targ, arg);
19464
19465 /* Make sure that ARG is not a variable-sized array. (Note
19466 that were talking about variable-sized arrays (like
19467 `int[n]'), rather than arrays of unknown size (like
19468 `int[]').) We'll get very confused by such a type since
19469 the bound of the array is not constant, and therefore
19470 not mangleable. Besides, such types are not allowed in
19471 ISO C++, so we can do as we please here. We do allow
19472 them for 'auto' deduction, since that isn't ABI-exposed. */
19473 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19474 return unify_vla_arg (explain_p, arg);
19475
19476 /* Strip typedefs as in convert_template_argument. */
19477 arg = canonicalize_type_argument (arg, tf_none);
19478 }
19479
19480 /* If ARG is a parameter pack or an expansion, we cannot unify
19481 against it unless PARM is also a parameter pack. */
19482 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19483 && !template_parameter_pack_p (parm))
19484 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19485
19486 /* If the argument deduction results is a METHOD_TYPE,
19487 then there is a problem.
19488 METHOD_TYPE doesn't map to any real C++ type the result of
19489 the deduction can not be of that type. */
19490 if (TREE_CODE (arg) == METHOD_TYPE)
19491 return unify_method_type_error (explain_p, arg);
19492
19493 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19494 return unify_success (explain_p);
19495
19496 case TEMPLATE_PARM_INDEX:
19497 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19498 if (error_operand_p (tparm))
19499 return unify_invalid (explain_p);
19500
19501 if (TEMPLATE_PARM_LEVEL (parm)
19502 != template_decl_level (tparm))
19503 {
19504 /* The PARM is not one we're trying to unify. Just check
19505 to see if it matches ARG. */
19506 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19507 && cp_tree_equal (parm, arg));
19508 if (result)
19509 unify_expression_unequal (explain_p, parm, arg);
19510 return result;
19511 }
19512
19513 idx = TEMPLATE_PARM_IDX (parm);
19514 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19515
19516 if (targ)
19517 {
19518 int x = !cp_tree_equal (targ, arg);
19519 if (x)
19520 unify_inconsistency (explain_p, parm, targ, arg);
19521 return x;
19522 }
19523
19524 /* [temp.deduct.type] If, in the declaration of a function template
19525 with a non-type template-parameter, the non-type
19526 template-parameter is used in an expression in the function
19527 parameter-list and, if the corresponding template-argument is
19528 deduced, the template-argument type shall match the type of the
19529 template-parameter exactly, except that a template-argument
19530 deduced from an array bound may be of any integral type.
19531 The non-type parameter might use already deduced type parameters. */
19532 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19533 if (!TREE_TYPE (arg))
19534 /* Template-parameter dependent expression. Just accept it for now.
19535 It will later be processed in convert_template_argument. */
19536 ;
19537 else if (same_type_p (TREE_TYPE (arg), tparm))
19538 /* OK */;
19539 else if ((strict & UNIFY_ALLOW_INTEGER)
19540 && CP_INTEGRAL_TYPE_P (tparm))
19541 /* Convert the ARG to the type of PARM; the deduced non-type
19542 template argument must exactly match the types of the
19543 corresponding parameter. */
19544 arg = fold (build_nop (tparm, arg));
19545 else if (uses_template_parms (tparm))
19546 /* We haven't deduced the type of this parameter yet. Try again
19547 later. */
19548 return unify_success (explain_p);
19549 else
19550 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19551
19552 /* If ARG is a parameter pack or an expansion, we cannot unify
19553 against it unless PARM is also a parameter pack. */
19554 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19555 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19556 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19557
19558 {
19559 bool removed_attr = false;
19560 arg = strip_typedefs_expr (arg, &removed_attr);
19561 }
19562 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19563 return unify_success (explain_p);
19564
19565 case PTRMEM_CST:
19566 {
19567 /* A pointer-to-member constant can be unified only with
19568 another constant. */
19569 if (TREE_CODE (arg) != PTRMEM_CST)
19570 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19571
19572 /* Just unify the class member. It would be useless (and possibly
19573 wrong, depending on the strict flags) to unify also
19574 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19575 arg refer to the same variable, even if through different
19576 classes. For instance:
19577
19578 struct A { int x; };
19579 struct B : A { };
19580
19581 Unification of &A::x and &B::x must succeed. */
19582 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19583 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19584 }
19585
19586 case POINTER_TYPE:
19587 {
19588 if (!TYPE_PTR_P (arg))
19589 return unify_type_mismatch (explain_p, parm, arg);
19590
19591 /* [temp.deduct.call]
19592
19593 A can be another pointer or pointer to member type that can
19594 be converted to the deduced A via a qualification
19595 conversion (_conv.qual_).
19596
19597 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19598 This will allow for additional cv-qualification of the
19599 pointed-to types if appropriate. */
19600
19601 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19602 /* The derived-to-base conversion only persists through one
19603 level of pointers. */
19604 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19605
19606 return unify (tparms, targs, TREE_TYPE (parm),
19607 TREE_TYPE (arg), strict, explain_p);
19608 }
19609
19610 case REFERENCE_TYPE:
19611 if (TREE_CODE (arg) != REFERENCE_TYPE)
19612 return unify_type_mismatch (explain_p, parm, arg);
19613 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19614 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19615
19616 case ARRAY_TYPE:
19617 if (TREE_CODE (arg) != ARRAY_TYPE)
19618 return unify_type_mismatch (explain_p, parm, arg);
19619 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19620 != (TYPE_DOMAIN (arg) == NULL_TREE))
19621 return unify_type_mismatch (explain_p, parm, arg);
19622 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19623 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19624 if (TYPE_DOMAIN (parm) != NULL_TREE)
19625 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19626 TYPE_DOMAIN (arg), explain_p);
19627 return unify_success (explain_p);
19628
19629 case REAL_TYPE:
19630 case COMPLEX_TYPE:
19631 case VECTOR_TYPE:
19632 case INTEGER_TYPE:
19633 case BOOLEAN_TYPE:
19634 case ENUMERAL_TYPE:
19635 case VOID_TYPE:
19636 case NULLPTR_TYPE:
19637 if (TREE_CODE (arg) != TREE_CODE (parm))
19638 return unify_type_mismatch (explain_p, parm, arg);
19639
19640 /* We have already checked cv-qualification at the top of the
19641 function. */
19642 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19643 return unify_type_mismatch (explain_p, parm, arg);
19644
19645 /* As far as unification is concerned, this wins. Later checks
19646 will invalidate it if necessary. */
19647 return unify_success (explain_p);
19648
19649 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19650 /* Type INTEGER_CST can come from ordinary constant template args. */
19651 case INTEGER_CST:
19652 while (TREE_CODE (arg) == NOP_EXPR)
19653 arg = TREE_OPERAND (arg, 0);
19654
19655 if (TREE_CODE (arg) != INTEGER_CST)
19656 return unify_template_argument_mismatch (explain_p, parm, arg);
19657 return (tree_int_cst_equal (parm, arg)
19658 ? unify_success (explain_p)
19659 : unify_template_argument_mismatch (explain_p, parm, arg));
19660
19661 case TREE_VEC:
19662 {
19663 int i, len, argslen;
19664 int parm_variadic_p = 0;
19665
19666 if (TREE_CODE (arg) != TREE_VEC)
19667 return unify_template_argument_mismatch (explain_p, parm, arg);
19668
19669 len = TREE_VEC_LENGTH (parm);
19670 argslen = TREE_VEC_LENGTH (arg);
19671
19672 /* Check for pack expansions in the parameters. */
19673 for (i = 0; i < len; ++i)
19674 {
19675 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19676 {
19677 if (i == len - 1)
19678 /* We can unify against something with a trailing
19679 parameter pack. */
19680 parm_variadic_p = 1;
19681 else
19682 /* [temp.deduct.type]/9: If the template argument list of
19683 P contains a pack expansion that is not the last
19684 template argument, the entire template argument list
19685 is a non-deduced context. */
19686 return unify_success (explain_p);
19687 }
19688 }
19689
19690 /* If we don't have enough arguments to satisfy the parameters
19691 (not counting the pack expression at the end), or we have
19692 too many arguments for a parameter list that doesn't end in
19693 a pack expression, we can't unify. */
19694 if (parm_variadic_p
19695 ? argslen < len - parm_variadic_p
19696 : argslen != len)
19697 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19698
19699 /* Unify all of the parameters that precede the (optional)
19700 pack expression. */
19701 for (i = 0; i < len - parm_variadic_p; ++i)
19702 {
19703 RECUR_AND_CHECK_FAILURE (tparms, targs,
19704 TREE_VEC_ELT (parm, i),
19705 TREE_VEC_ELT (arg, i),
19706 UNIFY_ALLOW_NONE, explain_p);
19707 }
19708 if (parm_variadic_p)
19709 return unify_pack_expansion (tparms, targs, parm, arg,
19710 DEDUCE_EXACT,
19711 /*subr=*/true, explain_p);
19712 return unify_success (explain_p);
19713 }
19714
19715 case RECORD_TYPE:
19716 case UNION_TYPE:
19717 if (TREE_CODE (arg) != TREE_CODE (parm))
19718 return unify_type_mismatch (explain_p, parm, arg);
19719
19720 if (TYPE_PTRMEMFUNC_P (parm))
19721 {
19722 if (!TYPE_PTRMEMFUNC_P (arg))
19723 return unify_type_mismatch (explain_p, parm, arg);
19724
19725 return unify (tparms, targs,
19726 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19727 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19728 strict, explain_p);
19729 }
19730 else if (TYPE_PTRMEMFUNC_P (arg))
19731 return unify_type_mismatch (explain_p, parm, arg);
19732
19733 if (CLASSTYPE_TEMPLATE_INFO (parm))
19734 {
19735 tree t = NULL_TREE;
19736
19737 if (strict_in & UNIFY_ALLOW_DERIVED)
19738 {
19739 /* First, we try to unify the PARM and ARG directly. */
19740 t = try_class_unification (tparms, targs,
19741 parm, arg, explain_p);
19742
19743 if (!t)
19744 {
19745 /* Fallback to the special case allowed in
19746 [temp.deduct.call]:
19747
19748 If P is a class, and P has the form
19749 template-id, then A can be a derived class of
19750 the deduced A. Likewise, if P is a pointer to
19751 a class of the form template-id, A can be a
19752 pointer to a derived class pointed to by the
19753 deduced A. */
19754 enum template_base_result r;
19755 r = get_template_base (tparms, targs, parm, arg,
19756 explain_p, &t);
19757
19758 if (!t)
19759 {
19760 /* Don't give the derived diagnostic if we're
19761 already dealing with the same template. */
19762 bool same_template
19763 = (CLASSTYPE_TEMPLATE_INFO (arg)
19764 && (CLASSTYPE_TI_TEMPLATE (parm)
19765 == CLASSTYPE_TI_TEMPLATE (arg)));
19766 return unify_no_common_base (explain_p && !same_template,
19767 r, parm, arg);
19768 }
19769 }
19770 }
19771 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19772 && (CLASSTYPE_TI_TEMPLATE (parm)
19773 == CLASSTYPE_TI_TEMPLATE (arg)))
19774 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19775 Then, we should unify `int' and `U'. */
19776 t = arg;
19777 else
19778 /* There's no chance of unification succeeding. */
19779 return unify_type_mismatch (explain_p, parm, arg);
19780
19781 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19782 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19783 }
19784 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19785 return unify_type_mismatch (explain_p, parm, arg);
19786 return unify_success (explain_p);
19787
19788 case METHOD_TYPE:
19789 case FUNCTION_TYPE:
19790 {
19791 unsigned int nargs;
19792 tree *args;
19793 tree a;
19794 unsigned int i;
19795
19796 if (TREE_CODE (arg) != TREE_CODE (parm))
19797 return unify_type_mismatch (explain_p, parm, arg);
19798
19799 /* CV qualifications for methods can never be deduced, they must
19800 match exactly. We need to check them explicitly here,
19801 because type_unification_real treats them as any other
19802 cv-qualified parameter. */
19803 if (TREE_CODE (parm) == METHOD_TYPE
19804 && (!check_cv_quals_for_unify
19805 (UNIFY_ALLOW_NONE,
19806 class_of_this_parm (arg),
19807 class_of_this_parm (parm))))
19808 return unify_cv_qual_mismatch (explain_p, parm, arg);
19809
19810 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
19811 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
19812
19813 nargs = list_length (TYPE_ARG_TYPES (arg));
19814 args = XALLOCAVEC (tree, nargs);
19815 for (a = TYPE_ARG_TYPES (arg), i = 0;
19816 a != NULL_TREE && a != void_list_node;
19817 a = TREE_CHAIN (a), ++i)
19818 args[i] = TREE_VALUE (a);
19819 nargs = i;
19820
19821 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
19822 args, nargs, 1, DEDUCE_EXACT,
19823 LOOKUP_NORMAL, NULL, explain_p);
19824 }
19825
19826 case OFFSET_TYPE:
19827 /* Unify a pointer to member with a pointer to member function, which
19828 deduces the type of the member as a function type. */
19829 if (TYPE_PTRMEMFUNC_P (arg))
19830 {
19831 /* Check top-level cv qualifiers */
19832 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
19833 return unify_cv_qual_mismatch (explain_p, parm, arg);
19834
19835 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19836 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
19837 UNIFY_ALLOW_NONE, explain_p);
19838
19839 /* Determine the type of the function we are unifying against. */
19840 tree fntype = static_fn_type (arg);
19841
19842 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
19843 }
19844
19845 if (TREE_CODE (arg) != OFFSET_TYPE)
19846 return unify_type_mismatch (explain_p, parm, arg);
19847 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19848 TYPE_OFFSET_BASETYPE (arg),
19849 UNIFY_ALLOW_NONE, explain_p);
19850 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19851 strict, explain_p);
19852
19853 case CONST_DECL:
19854 if (DECL_TEMPLATE_PARM_P (parm))
19855 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
19856 if (arg != scalar_constant_value (parm))
19857 return unify_template_argument_mismatch (explain_p, parm, arg);
19858 return unify_success (explain_p);
19859
19860 case FIELD_DECL:
19861 case TEMPLATE_DECL:
19862 /* Matched cases are handled by the ARG == PARM test above. */
19863 return unify_template_argument_mismatch (explain_p, parm, arg);
19864
19865 case VAR_DECL:
19866 /* A non-type template parameter that is a variable should be a
19867 an integral constant, in which case, it whould have been
19868 folded into its (constant) value. So we should not be getting
19869 a variable here. */
19870 gcc_unreachable ();
19871
19872 case TYPE_ARGUMENT_PACK:
19873 case NONTYPE_ARGUMENT_PACK:
19874 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
19875 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
19876
19877 case TYPEOF_TYPE:
19878 case DECLTYPE_TYPE:
19879 case UNDERLYING_TYPE:
19880 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
19881 or UNDERLYING_TYPE nodes. */
19882 return unify_success (explain_p);
19883
19884 case ERROR_MARK:
19885 /* Unification fails if we hit an error node. */
19886 return unify_invalid (explain_p);
19887
19888 case INDIRECT_REF:
19889 if (REFERENCE_REF_P (parm))
19890 {
19891 if (REFERENCE_REF_P (arg))
19892 arg = TREE_OPERAND (arg, 0);
19893 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
19894 strict, explain_p);
19895 }
19896 /* FALLTHRU */
19897
19898 default:
19899 /* An unresolved overload is a nondeduced context. */
19900 if (is_overloaded_fn (parm) || type_unknown_p (parm))
19901 return unify_success (explain_p);
19902 gcc_assert (EXPR_P (parm));
19903
19904 /* We must be looking at an expression. This can happen with
19905 something like:
19906
19907 template <int I>
19908 void foo(S<I>, S<I + 2>);
19909
19910 This is a "nondeduced context":
19911
19912 [deduct.type]
19913
19914 The nondeduced contexts are:
19915
19916 --A type that is a template-id in which one or more of
19917 the template-arguments is an expression that references
19918 a template-parameter.
19919
19920 In these cases, we assume deduction succeeded, but don't
19921 actually infer any unifications. */
19922
19923 if (!uses_template_parms (parm)
19924 && !template_args_equal (parm, arg))
19925 return unify_expression_unequal (explain_p, parm, arg);
19926 else
19927 return unify_success (explain_p);
19928 }
19929 }
19930 #undef RECUR_AND_CHECK_FAILURE
19931 \f
19932 /* Note that DECL can be defined in this translation unit, if
19933 required. */
19934
19935 static void
19936 mark_definable (tree decl)
19937 {
19938 tree clone;
19939 DECL_NOT_REALLY_EXTERN (decl) = 1;
19940 FOR_EACH_CLONE (clone, decl)
19941 DECL_NOT_REALLY_EXTERN (clone) = 1;
19942 }
19943
19944 /* Called if RESULT is explicitly instantiated, or is a member of an
19945 explicitly instantiated class. */
19946
19947 void
19948 mark_decl_instantiated (tree result, int extern_p)
19949 {
19950 SET_DECL_EXPLICIT_INSTANTIATION (result);
19951
19952 /* If this entity has already been written out, it's too late to
19953 make any modifications. */
19954 if (TREE_ASM_WRITTEN (result))
19955 return;
19956
19957 /* For anonymous namespace we don't need to do anything. */
19958 if (decl_anon_ns_mem_p (result))
19959 {
19960 gcc_assert (!TREE_PUBLIC (result));
19961 return;
19962 }
19963
19964 if (TREE_CODE (result) != FUNCTION_DECL)
19965 /* The TREE_PUBLIC flag for function declarations will have been
19966 set correctly by tsubst. */
19967 TREE_PUBLIC (result) = 1;
19968
19969 /* This might have been set by an earlier implicit instantiation. */
19970 DECL_COMDAT (result) = 0;
19971
19972 if (extern_p)
19973 DECL_NOT_REALLY_EXTERN (result) = 0;
19974 else
19975 {
19976 mark_definable (result);
19977 mark_needed (result);
19978 /* Always make artificials weak. */
19979 if (DECL_ARTIFICIAL (result) && flag_weak)
19980 comdat_linkage (result);
19981 /* For WIN32 we also want to put explicit instantiations in
19982 linkonce sections. */
19983 else if (TREE_PUBLIC (result))
19984 maybe_make_one_only (result);
19985 }
19986
19987 /* If EXTERN_P, then this function will not be emitted -- unless
19988 followed by an explicit instantiation, at which point its linkage
19989 will be adjusted. If !EXTERN_P, then this function will be
19990 emitted here. In neither circumstance do we want
19991 import_export_decl to adjust the linkage. */
19992 DECL_INTERFACE_KNOWN (result) = 1;
19993 }
19994
19995 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
19996 important template arguments. If any are missing, we check whether
19997 they're important by using error_mark_node for substituting into any
19998 args that were used for partial ordering (the ones between ARGS and END)
19999 and seeing if it bubbles up. */
20000
20001 static bool
20002 check_undeduced_parms (tree targs, tree args, tree end)
20003 {
20004 bool found = false;
20005 int i;
20006 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
20007 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
20008 {
20009 found = true;
20010 TREE_VEC_ELT (targs, i) = error_mark_node;
20011 }
20012 if (found)
20013 {
20014 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
20015 if (substed == error_mark_node)
20016 return true;
20017 }
20018 return false;
20019 }
20020
20021 /* Given two function templates PAT1 and PAT2, return:
20022
20023 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20024 -1 if PAT2 is more specialized than PAT1.
20025 0 if neither is more specialized.
20026
20027 LEN indicates the number of parameters we should consider
20028 (defaulted parameters should not be considered).
20029
20030 The 1998 std underspecified function template partial ordering, and
20031 DR214 addresses the issue. We take pairs of arguments, one from
20032 each of the templates, and deduce them against each other. One of
20033 the templates will be more specialized if all the *other*
20034 template's arguments deduce against its arguments and at least one
20035 of its arguments *does* *not* deduce against the other template's
20036 corresponding argument. Deduction is done as for class templates.
20037 The arguments used in deduction have reference and top level cv
20038 qualifiers removed. Iff both arguments were originally reference
20039 types *and* deduction succeeds in both directions, an lvalue reference
20040 wins against an rvalue reference and otherwise the template
20041 with the more cv-qualified argument wins for that pairing (if
20042 neither is more cv-qualified, they both are equal). Unlike regular
20043 deduction, after all the arguments have been deduced in this way,
20044 we do *not* verify the deduced template argument values can be
20045 substituted into non-deduced contexts.
20046
20047 The logic can be a bit confusing here, because we look at deduce1 and
20048 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20049 can find template arguments for pat1 to make arg1 look like arg2, that
20050 means that arg2 is at least as specialized as arg1. */
20051
20052 int
20053 more_specialized_fn (tree pat1, tree pat2, int len)
20054 {
20055 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20056 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20057 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20058 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20059 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20060 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20061 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20062 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20063 tree origs1, origs2;
20064 bool lose1 = false;
20065 bool lose2 = false;
20066
20067 /* Remove the this parameter from non-static member functions. If
20068 one is a non-static member function and the other is not a static
20069 member function, remove the first parameter from that function
20070 also. This situation occurs for operator functions where we
20071 locate both a member function (with this pointer) and non-member
20072 operator (with explicit first operand). */
20073 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20074 {
20075 len--; /* LEN is the number of significant arguments for DECL1 */
20076 args1 = TREE_CHAIN (args1);
20077 if (!DECL_STATIC_FUNCTION_P (decl2))
20078 args2 = TREE_CHAIN (args2);
20079 }
20080 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20081 {
20082 args2 = TREE_CHAIN (args2);
20083 if (!DECL_STATIC_FUNCTION_P (decl1))
20084 {
20085 len--;
20086 args1 = TREE_CHAIN (args1);
20087 }
20088 }
20089
20090 /* If only one is a conversion operator, they are unordered. */
20091 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20092 return 0;
20093
20094 /* Consider the return type for a conversion function */
20095 if (DECL_CONV_FN_P (decl1))
20096 {
20097 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20098 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20099 len++;
20100 }
20101
20102 processing_template_decl++;
20103
20104 origs1 = args1;
20105 origs2 = args2;
20106
20107 while (len--
20108 /* Stop when an ellipsis is seen. */
20109 && args1 != NULL_TREE && args2 != NULL_TREE)
20110 {
20111 tree arg1 = TREE_VALUE (args1);
20112 tree arg2 = TREE_VALUE (args2);
20113 int deduce1, deduce2;
20114 int quals1 = -1;
20115 int quals2 = -1;
20116 int ref1 = 0;
20117 int ref2 = 0;
20118
20119 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20120 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20121 {
20122 /* When both arguments are pack expansions, we need only
20123 unify the patterns themselves. */
20124 arg1 = PACK_EXPANSION_PATTERN (arg1);
20125 arg2 = PACK_EXPANSION_PATTERN (arg2);
20126
20127 /* This is the last comparison we need to do. */
20128 len = 0;
20129 }
20130
20131 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20132 {
20133 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20134 arg1 = TREE_TYPE (arg1);
20135 quals1 = cp_type_quals (arg1);
20136 }
20137
20138 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20139 {
20140 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20141 arg2 = TREE_TYPE (arg2);
20142 quals2 = cp_type_quals (arg2);
20143 }
20144
20145 arg1 = TYPE_MAIN_VARIANT (arg1);
20146 arg2 = TYPE_MAIN_VARIANT (arg2);
20147
20148 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20149 {
20150 int i, len2 = list_length (args2);
20151 tree parmvec = make_tree_vec (1);
20152 tree argvec = make_tree_vec (len2);
20153 tree ta = args2;
20154
20155 /* Setup the parameter vector, which contains only ARG1. */
20156 TREE_VEC_ELT (parmvec, 0) = arg1;
20157
20158 /* Setup the argument vector, which contains the remaining
20159 arguments. */
20160 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20161 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20162
20163 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20164 argvec, DEDUCE_EXACT,
20165 /*subr=*/true, /*explain_p=*/false)
20166 == 0);
20167
20168 /* We cannot deduce in the other direction, because ARG1 is
20169 a pack expansion but ARG2 is not. */
20170 deduce2 = 0;
20171 }
20172 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20173 {
20174 int i, len1 = list_length (args1);
20175 tree parmvec = make_tree_vec (1);
20176 tree argvec = make_tree_vec (len1);
20177 tree ta = args1;
20178
20179 /* Setup the parameter vector, which contains only ARG1. */
20180 TREE_VEC_ELT (parmvec, 0) = arg2;
20181
20182 /* Setup the argument vector, which contains the remaining
20183 arguments. */
20184 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20185 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20186
20187 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20188 argvec, DEDUCE_EXACT,
20189 /*subr=*/true, /*explain_p=*/false)
20190 == 0);
20191
20192 /* We cannot deduce in the other direction, because ARG2 is
20193 a pack expansion but ARG1 is not.*/
20194 deduce1 = 0;
20195 }
20196
20197 else
20198 {
20199 /* The normal case, where neither argument is a pack
20200 expansion. */
20201 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20202 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20203 == 0);
20204 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20205 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20206 == 0);
20207 }
20208
20209 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20210 arg2, then arg2 is not as specialized as arg1. */
20211 if (!deduce1)
20212 lose2 = true;
20213 if (!deduce2)
20214 lose1 = true;
20215
20216 /* "If, for a given type, deduction succeeds in both directions
20217 (i.e., the types are identical after the transformations above)
20218 and both P and A were reference types (before being replaced with
20219 the type referred to above):
20220 - if the type from the argument template was an lvalue reference and
20221 the type from the parameter template was not, the argument type is
20222 considered to be more specialized than the other; otherwise,
20223 - if the type from the argument template is more cv-qualified
20224 than the type from the parameter template (as described above),
20225 the argument type is considered to be more specialized than the other;
20226 otherwise,
20227 - neither type is more specialized than the other." */
20228
20229 if (deduce1 && deduce2)
20230 {
20231 if (ref1 && ref2 && ref1 != ref2)
20232 {
20233 if (ref1 > ref2)
20234 lose1 = true;
20235 else
20236 lose2 = true;
20237 }
20238 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20239 {
20240 if ((quals1 & quals2) == quals2)
20241 lose2 = true;
20242 if ((quals1 & quals2) == quals1)
20243 lose1 = true;
20244 }
20245 }
20246
20247 if (lose1 && lose2)
20248 /* We've failed to deduce something in either direction.
20249 These must be unordered. */
20250 break;
20251
20252 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20253 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20254 /* We have already processed all of the arguments in our
20255 handing of the pack expansion type. */
20256 len = 0;
20257
20258 args1 = TREE_CHAIN (args1);
20259 args2 = TREE_CHAIN (args2);
20260 }
20261
20262 /* "In most cases, all template parameters must have values in order for
20263 deduction to succeed, but for partial ordering purposes a template
20264 parameter may remain without a value provided it is not used in the
20265 types being used for partial ordering."
20266
20267 Thus, if we are missing any of the targs1 we need to substitute into
20268 origs1, then pat2 is not as specialized as pat1. This can happen when
20269 there is a nondeduced context. */
20270 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20271 lose2 = true;
20272 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20273 lose1 = true;
20274
20275 processing_template_decl--;
20276
20277 /* If both deductions succeed, the partial ordering selects the more
20278 constrained template. */
20279 if (!lose1 && !lose2)
20280 {
20281 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20282 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20283 lose1 = !subsumes_constraints (c1, c2);
20284 lose2 = !subsumes_constraints (c2, c1);
20285 }
20286
20287 /* All things being equal, if the next argument is a pack expansion
20288 for one function but not for the other, prefer the
20289 non-variadic function. FIXME this is bogus; see c++/41958. */
20290 if (lose1 == lose2
20291 && args1 && TREE_VALUE (args1)
20292 && args2 && TREE_VALUE (args2))
20293 {
20294 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20295 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20296 }
20297
20298 if (lose1 == lose2)
20299 return 0;
20300 else if (!lose1)
20301 return 1;
20302 else
20303 return -1;
20304 }
20305
20306 /* Determine which of two partial specializations of TMPL is more
20307 specialized.
20308
20309 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20310 to the first partial specialization. The TREE_PURPOSE is the
20311 innermost set of template parameters for the partial
20312 specialization. PAT2 is similar, but for the second template.
20313
20314 Return 1 if the first partial specialization is more specialized;
20315 -1 if the second is more specialized; 0 if neither is more
20316 specialized.
20317
20318 See [temp.class.order] for information about determining which of
20319 two templates is more specialized. */
20320
20321 static int
20322 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20323 {
20324 tree targs;
20325 int winner = 0;
20326 bool any_deductions = false;
20327
20328 tree tmpl1 = TREE_VALUE (pat1);
20329 tree tmpl2 = TREE_VALUE (pat2);
20330 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
20331 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
20332 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20333 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20334
20335 /* Just like what happens for functions, if we are ordering between
20336 different template specializations, we may encounter dependent
20337 types in the arguments, and we need our dependency check functions
20338 to behave correctly. */
20339 ++processing_template_decl;
20340 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
20341 if (targs)
20342 {
20343 --winner;
20344 any_deductions = true;
20345 }
20346
20347 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
20348 if (targs)
20349 {
20350 ++winner;
20351 any_deductions = true;
20352 }
20353 --processing_template_decl;
20354
20355 /* If both deductions succeed, the partial ordering selects the more
20356 constrained template. */
20357 if (!winner && any_deductions)
20358 return more_constrained (tmpl1, tmpl2);
20359
20360 /* In the case of a tie where at least one of the templates
20361 has a parameter pack at the end, the template with the most
20362 non-packed parameters wins. */
20363 if (winner == 0
20364 && any_deductions
20365 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20366 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20367 {
20368 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20369 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20370 int len1 = TREE_VEC_LENGTH (args1);
20371 int len2 = TREE_VEC_LENGTH (args2);
20372
20373 /* We don't count the pack expansion at the end. */
20374 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20375 --len1;
20376 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20377 --len2;
20378
20379 if (len1 > len2)
20380 return 1;
20381 else if (len1 < len2)
20382 return -1;
20383 }
20384
20385 return winner;
20386 }
20387
20388 /* Return the template arguments that will produce the function signature
20389 DECL from the function template FN, with the explicit template
20390 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20391 also match. Return NULL_TREE if no satisfactory arguments could be
20392 found. */
20393
20394 static tree
20395 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20396 {
20397 int ntparms = DECL_NTPARMS (fn);
20398 tree targs = make_tree_vec (ntparms);
20399 tree decl_type = TREE_TYPE (decl);
20400 tree decl_arg_types;
20401 tree *args;
20402 unsigned int nargs, ix;
20403 tree arg;
20404
20405 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20406
20407 /* Never do unification on the 'this' parameter. */
20408 decl_arg_types = skip_artificial_parms_for (decl,
20409 TYPE_ARG_TYPES (decl_type));
20410
20411 nargs = list_length (decl_arg_types);
20412 args = XALLOCAVEC (tree, nargs);
20413 for (arg = decl_arg_types, ix = 0;
20414 arg != NULL_TREE && arg != void_list_node;
20415 arg = TREE_CHAIN (arg), ++ix)
20416 args[ix] = TREE_VALUE (arg);
20417
20418 if (fn_type_unification (fn, explicit_args, targs,
20419 args, ix,
20420 (check_rettype || DECL_CONV_FN_P (fn)
20421 ? TREE_TYPE (decl_type) : NULL_TREE),
20422 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20423 /*decltype*/false)
20424 == error_mark_node)
20425 return NULL_TREE;
20426
20427 return targs;
20428 }
20429
20430 /* Return the innermost template arguments that, when applied to a partial
20431 specialization of TMPL whose innermost template parameters are
20432 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20433 ARGS.
20434
20435 For example, suppose we have:
20436
20437 template <class T, class U> struct S {};
20438 template <class T> struct S<T*, int> {};
20439
20440 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20441 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20442 int}. The resulting vector will be {double}, indicating that `T'
20443 is bound to `double'. */
20444
20445 static tree
20446 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20447 {
20448 int i, ntparms = TREE_VEC_LENGTH (tparms);
20449 tree deduced_args;
20450 tree innermost_deduced_args;
20451
20452 innermost_deduced_args = make_tree_vec (ntparms);
20453 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20454 {
20455 deduced_args = copy_node (args);
20456 SET_TMPL_ARGS_LEVEL (deduced_args,
20457 TMPL_ARGS_DEPTH (deduced_args),
20458 innermost_deduced_args);
20459 }
20460 else
20461 deduced_args = innermost_deduced_args;
20462
20463 if (unify (tparms, deduced_args,
20464 INNERMOST_TEMPLATE_ARGS (spec_args),
20465 INNERMOST_TEMPLATE_ARGS (args),
20466 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20467 return NULL_TREE;
20468
20469 for (i = 0; i < ntparms; ++i)
20470 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20471 return NULL_TREE;
20472
20473 /* Verify that nondeduced template arguments agree with the type
20474 obtained from argument deduction.
20475
20476 For example:
20477
20478 struct A { typedef int X; };
20479 template <class T, class U> struct C {};
20480 template <class T> struct C<T, typename T::X> {};
20481
20482 Then with the instantiation `C<A, int>', we can deduce that
20483 `T' is `A' but unify () does not check whether `typename T::X'
20484 is `int'. */
20485 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20486 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20487 spec_args, tmpl,
20488 tf_none, false, false);
20489 if (spec_args == error_mark_node
20490 /* We only need to check the innermost arguments; the other
20491 arguments will always agree. */
20492 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20493 INNERMOST_TEMPLATE_ARGS (args)))
20494 return NULL_TREE;
20495
20496 /* Now that we have bindings for all of the template arguments,
20497 ensure that the arguments deduced for the template template
20498 parameters have compatible template parameter lists. See the use
20499 of template_template_parm_bindings_ok_p in fn_type_unification
20500 for more information. */
20501 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20502 return NULL_TREE;
20503
20504 return deduced_args;
20505 }
20506
20507 // Compare two function templates T1 and T2 by deducing bindings
20508 // from one against the other. If both deductions succeed, compare
20509 // constraints to see which is more constrained.
20510 static int
20511 more_specialized_inst (tree t1, tree t2)
20512 {
20513 int fate = 0;
20514 int count = 0;
20515
20516 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20517 {
20518 --fate;
20519 ++count;
20520 }
20521
20522 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20523 {
20524 ++fate;
20525 ++count;
20526 }
20527
20528 // If both deductions succeed, then one may be more constrained.
20529 if (count == 2 && fate == 0)
20530 fate = more_constrained (t1, t2);
20531
20532 return fate;
20533 }
20534
20535 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20536 Return the TREE_LIST node with the most specialized template, if
20537 any. If there is no most specialized template, the error_mark_node
20538 is returned.
20539
20540 Note that this function does not look at, or modify, the
20541 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20542 returned is one of the elements of INSTANTIATIONS, callers may
20543 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20544 and retrieve it from the value returned. */
20545
20546 tree
20547 most_specialized_instantiation (tree templates)
20548 {
20549 tree fn, champ;
20550
20551 ++processing_template_decl;
20552
20553 champ = templates;
20554 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20555 {
20556 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20557 if (fate == -1)
20558 champ = fn;
20559 else if (!fate)
20560 {
20561 /* Equally specialized, move to next function. If there
20562 is no next function, nothing's most specialized. */
20563 fn = TREE_CHAIN (fn);
20564 champ = fn;
20565 if (!fn)
20566 break;
20567 }
20568 }
20569
20570 if (champ)
20571 /* Now verify that champ is better than everything earlier in the
20572 instantiation list. */
20573 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20574 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20575 {
20576 champ = NULL_TREE;
20577 break;
20578 }
20579 }
20580
20581 processing_template_decl--;
20582
20583 if (!champ)
20584 return error_mark_node;
20585
20586 return champ;
20587 }
20588
20589 /* If DECL is a specialization of some template, return the most
20590 general such template. Otherwise, returns NULL_TREE.
20591
20592 For example, given:
20593
20594 template <class T> struct S { template <class U> void f(U); };
20595
20596 if TMPL is `template <class U> void S<int>::f(U)' this will return
20597 the full template. This function will not trace past partial
20598 specializations, however. For example, given in addition:
20599
20600 template <class T> struct S<T*> { template <class U> void f(U); };
20601
20602 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20603 `template <class T> template <class U> S<T*>::f(U)'. */
20604
20605 tree
20606 most_general_template (tree decl)
20607 {
20608 if (TREE_CODE (decl) != TEMPLATE_DECL)
20609 {
20610 if (tree tinfo = get_template_info (decl))
20611 decl = TI_TEMPLATE (tinfo);
20612 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20613 template friend, or a FIELD_DECL for a capture pack. */
20614 if (TREE_CODE (decl) != TEMPLATE_DECL)
20615 return NULL_TREE;
20616 }
20617
20618 /* Look for more and more general templates. */
20619 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20620 {
20621 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20622 (See cp-tree.h for details.) */
20623 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20624 break;
20625
20626 if (CLASS_TYPE_P (TREE_TYPE (decl))
20627 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20628 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20629 break;
20630
20631 /* Stop if we run into an explicitly specialized class template. */
20632 if (!DECL_NAMESPACE_SCOPE_P (decl)
20633 && DECL_CONTEXT (decl)
20634 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20635 break;
20636
20637 decl = DECL_TI_TEMPLATE (decl);
20638 }
20639
20640 return decl;
20641 }
20642
20643 /* Return the most specialized of the template partial specializations
20644 which can produce TARGET, a specialization of some class or variable
20645 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20646 a TEMPLATE_DECL node corresponding to the partial specialization, while
20647 the TREE_PURPOSE is the set of template arguments that must be
20648 substituted into the template pattern in order to generate TARGET.
20649
20650 If the choice of partial specialization is ambiguous, a diagnostic
20651 is issued, and the error_mark_node is returned. If there are no
20652 partial specializations matching TARGET, then NULL_TREE is
20653 returned, indicating that the primary template should be used. */
20654
20655 static tree
20656 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20657 {
20658 tree list = NULL_TREE;
20659 tree t;
20660 tree champ;
20661 int fate;
20662 bool ambiguous_p;
20663 tree outer_args = NULL_TREE;
20664 tree tmpl, args;
20665
20666 if (TYPE_P (target))
20667 {
20668 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20669 tmpl = TI_TEMPLATE (tinfo);
20670 args = TI_ARGS (tinfo);
20671 }
20672 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20673 {
20674 tmpl = TREE_OPERAND (target, 0);
20675 args = TREE_OPERAND (target, 1);
20676 }
20677 else if (VAR_P (target))
20678 {
20679 tree tinfo = DECL_TEMPLATE_INFO (target);
20680 tmpl = TI_TEMPLATE (tinfo);
20681 args = TI_ARGS (tinfo);
20682 }
20683 else
20684 gcc_unreachable ();
20685
20686 tree main_tmpl = most_general_template (tmpl);
20687
20688 /* For determining which partial specialization to use, only the
20689 innermost args are interesting. */
20690 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20691 {
20692 outer_args = strip_innermost_template_args (args, 1);
20693 args = INNERMOST_TEMPLATE_ARGS (args);
20694 }
20695
20696 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20697 {
20698 tree partial_spec_args;
20699 tree spec_args;
20700 tree spec_tmpl = TREE_VALUE (t);
20701
20702 partial_spec_args = TREE_PURPOSE (t);
20703
20704 ++processing_template_decl;
20705
20706 if (outer_args)
20707 {
20708 /* Discard the outer levels of args, and then substitute in the
20709 template args from the enclosing class. */
20710 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20711 partial_spec_args = tsubst_template_args
20712 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20713
20714 /* And the same for the partial specialization TEMPLATE_DECL. */
20715 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20716 }
20717
20718 partial_spec_args =
20719 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20720 partial_spec_args,
20721 tmpl, tf_none,
20722 /*require_all_args=*/true,
20723 /*use_default_args=*/true);
20724
20725 --processing_template_decl;
20726
20727 if (partial_spec_args == error_mark_node)
20728 return error_mark_node;
20729 if (spec_tmpl == error_mark_node)
20730 return error_mark_node;
20731
20732 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20733 spec_args = get_partial_spec_bindings (tmpl, parms,
20734 partial_spec_args,
20735 args);
20736 if (spec_args)
20737 {
20738 if (outer_args)
20739 spec_args = add_to_template_args (outer_args, spec_args);
20740
20741 /* Keep the candidate only if the constraints are satisfied,
20742 or if we're not compiling with concepts. */
20743 if (!flag_concepts
20744 || constraints_satisfied_p (spec_tmpl, spec_args))
20745 {
20746 list = tree_cons (spec_args, TREE_VALUE (t), list);
20747 TREE_TYPE (list) = TREE_TYPE (t);
20748 }
20749 }
20750 }
20751
20752 if (! list)
20753 return NULL_TREE;
20754
20755 ambiguous_p = false;
20756 t = list;
20757 champ = t;
20758 t = TREE_CHAIN (t);
20759 for (; t; t = TREE_CHAIN (t))
20760 {
20761 fate = more_specialized_partial_spec (tmpl, champ, t);
20762 if (fate == 1)
20763 ;
20764 else
20765 {
20766 if (fate == 0)
20767 {
20768 t = TREE_CHAIN (t);
20769 if (! t)
20770 {
20771 ambiguous_p = true;
20772 break;
20773 }
20774 }
20775 champ = t;
20776 }
20777 }
20778
20779 if (!ambiguous_p)
20780 for (t = list; t && t != champ; t = TREE_CHAIN (t))
20781 {
20782 fate = more_specialized_partial_spec (tmpl, champ, t);
20783 if (fate != 1)
20784 {
20785 ambiguous_p = true;
20786 break;
20787 }
20788 }
20789
20790 if (ambiguous_p)
20791 {
20792 const char *str;
20793 char *spaces = NULL;
20794 if (!(complain & tf_error))
20795 return error_mark_node;
20796 if (TYPE_P (target))
20797 error ("ambiguous template instantiation for %q#T", target);
20798 else
20799 error ("ambiguous template instantiation for %q#D", target);
20800 str = ngettext ("candidate is:", "candidates are:", list_length (list));
20801 for (t = list; t; t = TREE_CHAIN (t))
20802 {
20803 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
20804 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
20805 "%s %#S", spaces ? spaces : str, subst);
20806 spaces = spaces ? spaces : get_spaces (str);
20807 }
20808 free (spaces);
20809 return error_mark_node;
20810 }
20811
20812 return champ;
20813 }
20814
20815 /* Explicitly instantiate DECL. */
20816
20817 void
20818 do_decl_instantiation (tree decl, tree storage)
20819 {
20820 tree result = NULL_TREE;
20821 int extern_p = 0;
20822
20823 if (!decl || decl == error_mark_node)
20824 /* An error occurred, for which grokdeclarator has already issued
20825 an appropriate message. */
20826 return;
20827 else if (! DECL_LANG_SPECIFIC (decl))
20828 {
20829 error ("explicit instantiation of non-template %q#D", decl);
20830 return;
20831 }
20832
20833 bool var_templ = (DECL_TEMPLATE_INFO (decl)
20834 && variable_template_p (DECL_TI_TEMPLATE (decl)));
20835
20836 if (VAR_P (decl) && !var_templ)
20837 {
20838 /* There is an asymmetry here in the way VAR_DECLs and
20839 FUNCTION_DECLs are handled by grokdeclarator. In the case of
20840 the latter, the DECL we get back will be marked as a
20841 template instantiation, and the appropriate
20842 DECL_TEMPLATE_INFO will be set up. This does not happen for
20843 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
20844 should handle VAR_DECLs as it currently handles
20845 FUNCTION_DECLs. */
20846 if (!DECL_CLASS_SCOPE_P (decl))
20847 {
20848 error ("%qD is not a static data member of a class template", decl);
20849 return;
20850 }
20851 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
20852 if (!result || !VAR_P (result))
20853 {
20854 error ("no matching template for %qD found", decl);
20855 return;
20856 }
20857 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
20858 {
20859 error ("type %qT for explicit instantiation %qD does not match "
20860 "declared type %qT", TREE_TYPE (result), decl,
20861 TREE_TYPE (decl));
20862 return;
20863 }
20864 }
20865 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
20866 {
20867 error ("explicit instantiation of %q#D", decl);
20868 return;
20869 }
20870 else
20871 result = decl;
20872
20873 /* Check for various error cases. Note that if the explicit
20874 instantiation is valid the RESULT will currently be marked as an
20875 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
20876 until we get here. */
20877
20878 if (DECL_TEMPLATE_SPECIALIZATION (result))
20879 {
20880 /* DR 259 [temp.spec].
20881
20882 Both an explicit instantiation and a declaration of an explicit
20883 specialization shall not appear in a program unless the explicit
20884 instantiation follows a declaration of the explicit specialization.
20885
20886 For a given set of template parameters, if an explicit
20887 instantiation of a template appears after a declaration of an
20888 explicit specialization for that template, the explicit
20889 instantiation has no effect. */
20890 return;
20891 }
20892 else if (DECL_EXPLICIT_INSTANTIATION (result))
20893 {
20894 /* [temp.spec]
20895
20896 No program shall explicitly instantiate any template more
20897 than once.
20898
20899 We check DECL_NOT_REALLY_EXTERN so as not to complain when
20900 the first instantiation was `extern' and the second is not,
20901 and EXTERN_P for the opposite case. */
20902 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
20903 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
20904 /* If an "extern" explicit instantiation follows an ordinary
20905 explicit instantiation, the template is instantiated. */
20906 if (extern_p)
20907 return;
20908 }
20909 else if (!DECL_IMPLICIT_INSTANTIATION (result))
20910 {
20911 error ("no matching template for %qD found", result);
20912 return;
20913 }
20914 else if (!DECL_TEMPLATE_INFO (result))
20915 {
20916 permerror (input_location, "explicit instantiation of non-template %q#D", result);
20917 return;
20918 }
20919
20920 if (storage == NULL_TREE)
20921 ;
20922 else if (storage == ridpointers[(int) RID_EXTERN])
20923 {
20924 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
20925 pedwarn (input_location, OPT_Wpedantic,
20926 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
20927 "instantiations");
20928 extern_p = 1;
20929 }
20930 else
20931 error ("storage class %qD applied to template instantiation", storage);
20932
20933 check_explicit_instantiation_namespace (result);
20934 mark_decl_instantiated (result, extern_p);
20935 if (! extern_p)
20936 instantiate_decl (result, /*defer_ok=*/1,
20937 /*expl_inst_class_mem_p=*/false);
20938 }
20939
20940 static void
20941 mark_class_instantiated (tree t, int extern_p)
20942 {
20943 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
20944 SET_CLASSTYPE_INTERFACE_KNOWN (t);
20945 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
20946 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
20947 if (! extern_p)
20948 {
20949 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
20950 rest_of_type_compilation (t, 1);
20951 }
20952 }
20953
20954 /* Called from do_type_instantiation through binding_table_foreach to
20955 do recursive instantiation for the type bound in ENTRY. */
20956 static void
20957 bt_instantiate_type_proc (binding_entry entry, void *data)
20958 {
20959 tree storage = *(tree *) data;
20960
20961 if (MAYBE_CLASS_TYPE_P (entry->type)
20962 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
20963 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
20964 }
20965
20966 /* Called from do_type_instantiation to instantiate a member
20967 (a member function or a static member variable) of an
20968 explicitly instantiated class template. */
20969 static void
20970 instantiate_class_member (tree decl, int extern_p)
20971 {
20972 mark_decl_instantiated (decl, extern_p);
20973 if (! extern_p)
20974 instantiate_decl (decl, /*defer_ok=*/1,
20975 /*expl_inst_class_mem_p=*/true);
20976 }
20977
20978 /* Perform an explicit instantiation of template class T. STORAGE, if
20979 non-null, is the RID for extern, inline or static. COMPLAIN is
20980 nonzero if this is called from the parser, zero if called recursively,
20981 since the standard is unclear (as detailed below). */
20982
20983 void
20984 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
20985 {
20986 int extern_p = 0;
20987 int nomem_p = 0;
20988 int static_p = 0;
20989 int previous_instantiation_extern_p = 0;
20990
20991 if (TREE_CODE (t) == TYPE_DECL)
20992 t = TREE_TYPE (t);
20993
20994 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
20995 {
20996 tree tmpl =
20997 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
20998 if (tmpl)
20999 error ("explicit instantiation of non-class template %qD", tmpl);
21000 else
21001 error ("explicit instantiation of non-template type %qT", t);
21002 return;
21003 }
21004
21005 complete_type (t);
21006
21007 if (!COMPLETE_TYPE_P (t))
21008 {
21009 if (complain & tf_error)
21010 error ("explicit instantiation of %q#T before definition of template",
21011 t);
21012 return;
21013 }
21014
21015 if (storage != NULL_TREE)
21016 {
21017 if (!in_system_header_at (input_location))
21018 {
21019 if (storage == ridpointers[(int) RID_EXTERN])
21020 {
21021 if (cxx_dialect == cxx98)
21022 pedwarn (input_location, OPT_Wpedantic,
21023 "ISO C++ 1998 forbids the use of %<extern%> on "
21024 "explicit instantiations");
21025 }
21026 else
21027 pedwarn (input_location, OPT_Wpedantic,
21028 "ISO C++ forbids the use of %qE"
21029 " on explicit instantiations", storage);
21030 }
21031
21032 if (storage == ridpointers[(int) RID_INLINE])
21033 nomem_p = 1;
21034 else if (storage == ridpointers[(int) RID_EXTERN])
21035 extern_p = 1;
21036 else if (storage == ridpointers[(int) RID_STATIC])
21037 static_p = 1;
21038 else
21039 {
21040 error ("storage class %qD applied to template instantiation",
21041 storage);
21042 extern_p = 0;
21043 }
21044 }
21045
21046 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21047 {
21048 /* DR 259 [temp.spec].
21049
21050 Both an explicit instantiation and a declaration of an explicit
21051 specialization shall not appear in a program unless the explicit
21052 instantiation follows a declaration of the explicit specialization.
21053
21054 For a given set of template parameters, if an explicit
21055 instantiation of a template appears after a declaration of an
21056 explicit specialization for that template, the explicit
21057 instantiation has no effect. */
21058 return;
21059 }
21060 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21061 {
21062 /* [temp.spec]
21063
21064 No program shall explicitly instantiate any template more
21065 than once.
21066
21067 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21068 instantiation was `extern'. If EXTERN_P then the second is.
21069 These cases are OK. */
21070 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21071
21072 if (!previous_instantiation_extern_p && !extern_p
21073 && (complain & tf_error))
21074 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21075
21076 /* If we've already instantiated the template, just return now. */
21077 if (!CLASSTYPE_INTERFACE_ONLY (t))
21078 return;
21079 }
21080
21081 check_explicit_instantiation_namespace (TYPE_NAME (t));
21082 mark_class_instantiated (t, extern_p);
21083
21084 if (nomem_p)
21085 return;
21086
21087 {
21088 tree tmp;
21089
21090 /* In contrast to implicit instantiation, where only the
21091 declarations, and not the definitions, of members are
21092 instantiated, we have here:
21093
21094 [temp.explicit]
21095
21096 The explicit instantiation of a class template specialization
21097 implies the instantiation of all of its members not
21098 previously explicitly specialized in the translation unit
21099 containing the explicit instantiation.
21100
21101 Of course, we can't instantiate member template classes, since
21102 we don't have any arguments for them. Note that the standard
21103 is unclear on whether the instantiation of the members are
21104 *explicit* instantiations or not. However, the most natural
21105 interpretation is that it should be an explicit instantiation. */
21106
21107 if (! static_p)
21108 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21109 if (TREE_CODE (tmp) == FUNCTION_DECL
21110 && DECL_TEMPLATE_INSTANTIATION (tmp))
21111 instantiate_class_member (tmp, extern_p);
21112
21113 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21114 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21115 instantiate_class_member (tmp, extern_p);
21116
21117 if (CLASSTYPE_NESTED_UTDS (t))
21118 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21119 bt_instantiate_type_proc, &storage);
21120 }
21121 }
21122
21123 /* Given a function DECL, which is a specialization of TMPL, modify
21124 DECL to be a re-instantiation of TMPL with the same template
21125 arguments. TMPL should be the template into which tsubst'ing
21126 should occur for DECL, not the most general template.
21127
21128 One reason for doing this is a scenario like this:
21129
21130 template <class T>
21131 void f(const T&, int i);
21132
21133 void g() { f(3, 7); }
21134
21135 template <class T>
21136 void f(const T& t, const int i) { }
21137
21138 Note that when the template is first instantiated, with
21139 instantiate_template, the resulting DECL will have no name for the
21140 first parameter, and the wrong type for the second. So, when we go
21141 to instantiate the DECL, we regenerate it. */
21142
21143 static void
21144 regenerate_decl_from_template (tree decl, tree tmpl)
21145 {
21146 /* The arguments used to instantiate DECL, from the most general
21147 template. */
21148 tree args;
21149 tree code_pattern;
21150
21151 args = DECL_TI_ARGS (decl);
21152 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21153
21154 /* Make sure that we can see identifiers, and compute access
21155 correctly. */
21156 push_access_scope (decl);
21157
21158 if (TREE_CODE (decl) == FUNCTION_DECL)
21159 {
21160 tree decl_parm;
21161 tree pattern_parm;
21162 tree specs;
21163 int args_depth;
21164 int parms_depth;
21165
21166 args_depth = TMPL_ARGS_DEPTH (args);
21167 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21168 if (args_depth > parms_depth)
21169 args = get_innermost_template_args (args, parms_depth);
21170
21171 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21172 args, tf_error, NULL_TREE,
21173 /*defer_ok*/false);
21174 if (specs && specs != error_mark_node)
21175 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21176 specs);
21177
21178 /* Merge parameter declarations. */
21179 decl_parm = skip_artificial_parms_for (decl,
21180 DECL_ARGUMENTS (decl));
21181 pattern_parm
21182 = skip_artificial_parms_for (code_pattern,
21183 DECL_ARGUMENTS (code_pattern));
21184 while (decl_parm && !DECL_PACK_P (pattern_parm))
21185 {
21186 tree parm_type;
21187 tree attributes;
21188
21189 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21190 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21191 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21192 NULL_TREE);
21193 parm_type = type_decays_to (parm_type);
21194 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21195 TREE_TYPE (decl_parm) = parm_type;
21196 attributes = DECL_ATTRIBUTES (pattern_parm);
21197 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21198 {
21199 DECL_ATTRIBUTES (decl_parm) = attributes;
21200 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21201 }
21202 decl_parm = DECL_CHAIN (decl_parm);
21203 pattern_parm = DECL_CHAIN (pattern_parm);
21204 }
21205 /* Merge any parameters that match with the function parameter
21206 pack. */
21207 if (pattern_parm && DECL_PACK_P (pattern_parm))
21208 {
21209 int i, len;
21210 tree expanded_types;
21211 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21212 the parameters in this function parameter pack. */
21213 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21214 args, tf_error, NULL_TREE);
21215 len = TREE_VEC_LENGTH (expanded_types);
21216 for (i = 0; i < len; i++)
21217 {
21218 tree parm_type;
21219 tree attributes;
21220
21221 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21222 /* Rename the parameter to include the index. */
21223 DECL_NAME (decl_parm) =
21224 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21225 parm_type = TREE_VEC_ELT (expanded_types, i);
21226 parm_type = type_decays_to (parm_type);
21227 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21228 TREE_TYPE (decl_parm) = parm_type;
21229 attributes = DECL_ATTRIBUTES (pattern_parm);
21230 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21231 {
21232 DECL_ATTRIBUTES (decl_parm) = attributes;
21233 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21234 }
21235 decl_parm = DECL_CHAIN (decl_parm);
21236 }
21237 }
21238 /* Merge additional specifiers from the CODE_PATTERN. */
21239 if (DECL_DECLARED_INLINE_P (code_pattern)
21240 && !DECL_DECLARED_INLINE_P (decl))
21241 DECL_DECLARED_INLINE_P (decl) = 1;
21242 }
21243 else if (VAR_P (decl))
21244 {
21245 DECL_INITIAL (decl) =
21246 tsubst_expr (DECL_INITIAL (code_pattern), args,
21247 tf_error, DECL_TI_TEMPLATE (decl),
21248 /*integral_constant_expression_p=*/false);
21249 if (VAR_HAD_UNKNOWN_BOUND (decl))
21250 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21251 tf_error, DECL_TI_TEMPLATE (decl));
21252 }
21253 else
21254 gcc_unreachable ();
21255
21256 pop_access_scope (decl);
21257 }
21258
21259 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21260 substituted to get DECL. */
21261
21262 tree
21263 template_for_substitution (tree decl)
21264 {
21265 tree tmpl = DECL_TI_TEMPLATE (decl);
21266
21267 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21268 for the instantiation. This is not always the most general
21269 template. Consider, for example:
21270
21271 template <class T>
21272 struct S { template <class U> void f();
21273 template <> void f<int>(); };
21274
21275 and an instantiation of S<double>::f<int>. We want TD to be the
21276 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21277 while (/* An instantiation cannot have a definition, so we need a
21278 more general template. */
21279 DECL_TEMPLATE_INSTANTIATION (tmpl)
21280 /* We must also deal with friend templates. Given:
21281
21282 template <class T> struct S {
21283 template <class U> friend void f() {};
21284 };
21285
21286 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21287 so far as the language is concerned, but that's still
21288 where we get the pattern for the instantiation from. On
21289 other hand, if the definition comes outside the class, say:
21290
21291 template <class T> struct S {
21292 template <class U> friend void f();
21293 };
21294 template <class U> friend void f() {}
21295
21296 we don't need to look any further. That's what the check for
21297 DECL_INITIAL is for. */
21298 || (TREE_CODE (decl) == FUNCTION_DECL
21299 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21300 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21301 {
21302 /* The present template, TD, should not be a definition. If it
21303 were a definition, we should be using it! Note that we
21304 cannot restructure the loop to just keep going until we find
21305 a template with a definition, since that might go too far if
21306 a specialization was declared, but not defined. */
21307
21308 /* Fetch the more general template. */
21309 tmpl = DECL_TI_TEMPLATE (tmpl);
21310 }
21311
21312 return tmpl;
21313 }
21314
21315 /* Returns true if we need to instantiate this template instance even if we
21316 know we aren't going to emit it. */
21317
21318 bool
21319 always_instantiate_p (tree decl)
21320 {
21321 /* We always instantiate inline functions so that we can inline them. An
21322 explicit instantiation declaration prohibits implicit instantiation of
21323 non-inline functions. With high levels of optimization, we would
21324 normally inline non-inline functions -- but we're not allowed to do
21325 that for "extern template" functions. Therefore, we check
21326 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21327 return ((TREE_CODE (decl) == FUNCTION_DECL
21328 && (DECL_DECLARED_INLINE_P (decl)
21329 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21330 /* And we need to instantiate static data members so that
21331 their initializers are available in integral constant
21332 expressions. */
21333 || (VAR_P (decl)
21334 && decl_maybe_constant_var_p (decl)));
21335 }
21336
21337 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21338 instantiate it now, modifying TREE_TYPE (fn). */
21339
21340 void
21341 maybe_instantiate_noexcept (tree fn)
21342 {
21343 tree fntype, spec, noex, clone;
21344
21345 /* Don't instantiate a noexcept-specification from template context. */
21346 if (processing_template_decl)
21347 return;
21348
21349 if (DECL_CLONED_FUNCTION_P (fn))
21350 fn = DECL_CLONED_FUNCTION (fn);
21351 fntype = TREE_TYPE (fn);
21352 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21353
21354 if (!spec || !TREE_PURPOSE (spec))
21355 return;
21356
21357 noex = TREE_PURPOSE (spec);
21358
21359 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21360 {
21361 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21362 spec = get_defaulted_eh_spec (fn);
21363 else if (push_tinst_level (fn))
21364 {
21365 push_access_scope (fn);
21366 push_deferring_access_checks (dk_no_deferred);
21367 input_location = DECL_SOURCE_LOCATION (fn);
21368 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21369 DEFERRED_NOEXCEPT_ARGS (noex),
21370 tf_warning_or_error, fn,
21371 /*function_p=*/false,
21372 /*integral_constant_expression_p=*/true);
21373 pop_deferring_access_checks ();
21374 pop_access_scope (fn);
21375 pop_tinst_level ();
21376 spec = build_noexcept_spec (noex, tf_warning_or_error);
21377 if (spec == error_mark_node)
21378 spec = noexcept_false_spec;
21379 }
21380 else
21381 spec = noexcept_false_spec;
21382
21383 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21384 }
21385
21386 FOR_EACH_CLONE (clone, fn)
21387 {
21388 if (TREE_TYPE (clone) == fntype)
21389 TREE_TYPE (clone) = TREE_TYPE (fn);
21390 else
21391 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21392 }
21393 }
21394
21395 /* Produce the definition of D, a _DECL generated from a template. If
21396 DEFER_OK is nonzero, then we don't have to actually do the
21397 instantiation now; we just have to do it sometime. Normally it is
21398 an error if this is an explicit instantiation but D is undefined.
21399 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21400 explicitly instantiated class template. */
21401
21402 tree
21403 instantiate_decl (tree d, int defer_ok,
21404 bool expl_inst_class_mem_p)
21405 {
21406 tree tmpl = DECL_TI_TEMPLATE (d);
21407 tree gen_args;
21408 tree args;
21409 tree td;
21410 tree code_pattern;
21411 tree spec;
21412 tree gen_tmpl;
21413 bool pattern_defined;
21414 location_t saved_loc = input_location;
21415 int saved_unevaluated_operand = cp_unevaluated_operand;
21416 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21417 bool external_p;
21418 bool deleted_p;
21419 tree fn_context;
21420 bool nested = false;
21421
21422 /* This function should only be used to instantiate templates for
21423 functions and static member variables. */
21424 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21425
21426 /* A concept is never instantiated. */
21427 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21428
21429 /* Variables are never deferred; if instantiation is required, they
21430 are instantiated right away. That allows for better code in the
21431 case that an expression refers to the value of the variable --
21432 if the variable has a constant value the referring expression can
21433 take advantage of that fact. */
21434 if (VAR_P (d)
21435 || DECL_DECLARED_CONSTEXPR_P (d))
21436 defer_ok = 0;
21437
21438 /* Don't instantiate cloned functions. Instead, instantiate the
21439 functions they cloned. */
21440 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21441 d = DECL_CLONED_FUNCTION (d);
21442
21443 if (DECL_TEMPLATE_INSTANTIATED (d)
21444 || (TREE_CODE (d) == FUNCTION_DECL
21445 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21446 || DECL_TEMPLATE_SPECIALIZATION (d))
21447 /* D has already been instantiated or explicitly specialized, so
21448 there's nothing for us to do here.
21449
21450 It might seem reasonable to check whether or not D is an explicit
21451 instantiation, and, if so, stop here. But when an explicit
21452 instantiation is deferred until the end of the compilation,
21453 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21454 the instantiation. */
21455 return d;
21456
21457 /* Check to see whether we know that this template will be
21458 instantiated in some other file, as with "extern template"
21459 extension. */
21460 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21461
21462 /* In general, we do not instantiate such templates. */
21463 if (external_p && !always_instantiate_p (d))
21464 return d;
21465
21466 gen_tmpl = most_general_template (tmpl);
21467 gen_args = DECL_TI_ARGS (d);
21468
21469 if (tmpl != gen_tmpl)
21470 /* We should already have the extra args. */
21471 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21472 == TMPL_ARGS_DEPTH (gen_args));
21473 /* And what's in the hash table should match D. */
21474 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21475 || spec == NULL_TREE);
21476
21477 /* This needs to happen before any tsubsting. */
21478 if (! push_tinst_level (d))
21479 return d;
21480
21481 timevar_push (TV_TEMPLATE_INST);
21482
21483 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21484 for the instantiation. */
21485 td = template_for_substitution (d);
21486 code_pattern = DECL_TEMPLATE_RESULT (td);
21487
21488 /* We should never be trying to instantiate a member of a class
21489 template or partial specialization. */
21490 gcc_assert (d != code_pattern);
21491
21492 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21493 || DECL_TEMPLATE_SPECIALIZATION (td))
21494 /* In the case of a friend template whose definition is provided
21495 outside the class, we may have too many arguments. Drop the
21496 ones we don't need. The same is true for specializations. */
21497 args = get_innermost_template_args
21498 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21499 else
21500 args = gen_args;
21501
21502 if (TREE_CODE (d) == FUNCTION_DECL)
21503 {
21504 deleted_p = DECL_DELETED_FN (code_pattern);
21505 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21506 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21507 || deleted_p);
21508 }
21509 else
21510 {
21511 deleted_p = false;
21512 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21513 }
21514
21515 /* We may be in the middle of deferred access check. Disable it now. */
21516 push_deferring_access_checks (dk_no_deferred);
21517
21518 /* Unless an explicit instantiation directive has already determined
21519 the linkage of D, remember that a definition is available for
21520 this entity. */
21521 if (pattern_defined
21522 && !DECL_INTERFACE_KNOWN (d)
21523 && !DECL_NOT_REALLY_EXTERN (d))
21524 mark_definable (d);
21525
21526 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21527 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21528 input_location = DECL_SOURCE_LOCATION (d);
21529
21530 /* If D is a member of an explicitly instantiated class template,
21531 and no definition is available, treat it like an implicit
21532 instantiation. */
21533 if (!pattern_defined && expl_inst_class_mem_p
21534 && DECL_EXPLICIT_INSTANTIATION (d))
21535 {
21536 /* Leave linkage flags alone on instantiations with anonymous
21537 visibility. */
21538 if (TREE_PUBLIC (d))
21539 {
21540 DECL_NOT_REALLY_EXTERN (d) = 0;
21541 DECL_INTERFACE_KNOWN (d) = 0;
21542 }
21543 SET_DECL_IMPLICIT_INSTANTIATION (d);
21544 }
21545
21546 /* Defer all other templates, unless we have been explicitly
21547 forbidden from doing so. */
21548 if (/* If there is no definition, we cannot instantiate the
21549 template. */
21550 ! pattern_defined
21551 /* If it's OK to postpone instantiation, do so. */
21552 || defer_ok
21553 /* If this is a static data member that will be defined
21554 elsewhere, we don't want to instantiate the entire data
21555 member, but we do want to instantiate the initializer so that
21556 we can substitute that elsewhere. */
21557 || (external_p && VAR_P (d))
21558 /* Handle here a deleted function too, avoid generating
21559 its body (c++/61080). */
21560 || deleted_p)
21561 {
21562 /* The definition of the static data member is now required so
21563 we must substitute the initializer. */
21564 if (VAR_P (d)
21565 && !DECL_INITIAL (d)
21566 && DECL_INITIAL (code_pattern))
21567 {
21568 tree ns;
21569 tree init;
21570 bool const_init = false;
21571 bool enter_context = DECL_CLASS_SCOPE_P (d);
21572
21573 ns = decl_namespace_context (d);
21574 push_nested_namespace (ns);
21575 if (enter_context)
21576 push_nested_class (DECL_CONTEXT (d));
21577 init = tsubst_expr (DECL_INITIAL (code_pattern),
21578 args,
21579 tf_warning_or_error, NULL_TREE,
21580 /*integral_constant_expression_p=*/false);
21581 /* If instantiating the initializer involved instantiating this
21582 again, don't call cp_finish_decl twice. */
21583 if (!DECL_INITIAL (d))
21584 {
21585 /* Make sure the initializer is still constant, in case of
21586 circular dependency (template/instantiate6.C). */
21587 const_init
21588 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21589 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21590 /*asmspec_tree=*/NULL_TREE,
21591 LOOKUP_ONLYCONVERTING);
21592 }
21593 if (enter_context)
21594 pop_nested_class ();
21595 pop_nested_namespace (ns);
21596 }
21597
21598 /* We restore the source position here because it's used by
21599 add_pending_template. */
21600 input_location = saved_loc;
21601
21602 if (at_eof && !pattern_defined
21603 && DECL_EXPLICIT_INSTANTIATION (d)
21604 && DECL_NOT_REALLY_EXTERN (d))
21605 /* [temp.explicit]
21606
21607 The definition of a non-exported function template, a
21608 non-exported member function template, or a non-exported
21609 member function or static data member of a class template
21610 shall be present in every translation unit in which it is
21611 explicitly instantiated. */
21612 permerror (input_location, "explicit instantiation of %qD "
21613 "but no definition available", d);
21614
21615 /* If we're in unevaluated context, we just wanted to get the
21616 constant value; this isn't an odr use, so don't queue
21617 a full instantiation. */
21618 if (cp_unevaluated_operand != 0)
21619 goto out;
21620 /* ??? Historically, we have instantiated inline functions, even
21621 when marked as "extern template". */
21622 if (!(external_p && VAR_P (d)))
21623 add_pending_template (d);
21624 goto out;
21625 }
21626 /* Tell the repository that D is available in this translation unit
21627 -- and see if it is supposed to be instantiated here. */
21628 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21629 {
21630 /* In a PCH file, despite the fact that the repository hasn't
21631 requested instantiation in the PCH it is still possible that
21632 an instantiation will be required in a file that includes the
21633 PCH. */
21634 if (pch_file)
21635 add_pending_template (d);
21636 /* Instantiate inline functions so that the inliner can do its
21637 job, even though we'll not be emitting a copy of this
21638 function. */
21639 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21640 goto out;
21641 }
21642
21643 fn_context = decl_function_context (d);
21644 nested = (current_function_decl != NULL_TREE);
21645 vec<tree> omp_privatization_save;
21646 if (nested)
21647 save_omp_privatization_clauses (omp_privatization_save);
21648
21649 if (!fn_context)
21650 push_to_top_level ();
21651 else
21652 {
21653 if (nested)
21654 push_function_context ();
21655 cp_unevaluated_operand = 0;
21656 c_inhibit_evaluation_warnings = 0;
21657 }
21658
21659 /* Mark D as instantiated so that recursive calls to
21660 instantiate_decl do not try to instantiate it again. */
21661 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21662
21663 /* Regenerate the declaration in case the template has been modified
21664 by a subsequent redeclaration. */
21665 regenerate_decl_from_template (d, td);
21666
21667 /* We already set the file and line above. Reset them now in case
21668 they changed as a result of calling regenerate_decl_from_template. */
21669 input_location = DECL_SOURCE_LOCATION (d);
21670
21671 if (VAR_P (d))
21672 {
21673 tree init;
21674 bool const_init = false;
21675
21676 /* Clear out DECL_RTL; whatever was there before may not be right
21677 since we've reset the type of the declaration. */
21678 SET_DECL_RTL (d, NULL);
21679 DECL_IN_AGGR_P (d) = 0;
21680
21681 /* The initializer is placed in DECL_INITIAL by
21682 regenerate_decl_from_template so we don't need to
21683 push/pop_access_scope again here. Pull it out so that
21684 cp_finish_decl can process it. */
21685 init = DECL_INITIAL (d);
21686 DECL_INITIAL (d) = NULL_TREE;
21687 DECL_INITIALIZED_P (d) = 0;
21688
21689 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21690 initializer. That function will defer actual emission until
21691 we have a chance to determine linkage. */
21692 DECL_EXTERNAL (d) = 0;
21693
21694 /* Enter the scope of D so that access-checking works correctly. */
21695 bool enter_context = DECL_CLASS_SCOPE_P (d);
21696 if (enter_context)
21697 push_nested_class (DECL_CONTEXT (d));
21698
21699 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21700 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21701
21702 if (enter_context)
21703 pop_nested_class ();
21704
21705 if (variable_template_p (td))
21706 note_variable_template_instantiation (d);
21707 }
21708 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21709 synthesize_method (d);
21710 else if (TREE_CODE (d) == FUNCTION_DECL)
21711 {
21712 hash_map<tree, tree> *saved_local_specializations;
21713 tree subst_decl;
21714 tree tmpl_parm;
21715 tree spec_parm;
21716 tree block = NULL_TREE;
21717
21718 /* Save away the current list, in case we are instantiating one
21719 template from within the body of another. */
21720 saved_local_specializations = local_specializations;
21721
21722 /* Set up the list of local specializations. */
21723 local_specializations = new hash_map<tree, tree>;
21724
21725 /* Set up context. */
21726 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21727 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21728 block = push_stmt_list ();
21729 else
21730 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21731
21732 /* Some typedefs referenced from within the template code need to be
21733 access checked at template instantiation time, i.e now. These
21734 types were added to the template at parsing time. Let's get those
21735 and perform the access checks then. */
21736 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21737 gen_args);
21738
21739 /* Create substitution entries for the parameters. */
21740 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21741 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21742 spec_parm = DECL_ARGUMENTS (d);
21743 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21744 {
21745 register_local_specialization (spec_parm, tmpl_parm);
21746 spec_parm = skip_artificial_parms_for (d, spec_parm);
21747 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21748 }
21749 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21750 {
21751 if (!DECL_PACK_P (tmpl_parm))
21752 {
21753 register_local_specialization (spec_parm, tmpl_parm);
21754 spec_parm = DECL_CHAIN (spec_parm);
21755 }
21756 else
21757 {
21758 /* Register the (value) argument pack as a specialization of
21759 TMPL_PARM, then move on. */
21760 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21761 register_local_specialization (argpack, tmpl_parm);
21762 }
21763 }
21764 gcc_assert (!spec_parm);
21765
21766 /* Substitute into the body of the function. */
21767 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21768 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
21769 tf_warning_or_error, tmpl);
21770 else
21771 {
21772 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
21773 tf_warning_or_error, tmpl,
21774 /*integral_constant_expression_p=*/false);
21775
21776 /* Set the current input_location to the end of the function
21777 so that finish_function knows where we are. */
21778 input_location
21779 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
21780
21781 /* Remember if we saw an infinite loop in the template. */
21782 current_function_infinite_loop
21783 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
21784 }
21785
21786 /* We don't need the local specializations any more. */
21787 delete local_specializations;
21788 local_specializations = saved_local_specializations;
21789
21790 /* Finish the function. */
21791 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21792 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21793 DECL_SAVED_TREE (d) = pop_stmt_list (block);
21794 else
21795 {
21796 d = finish_function (0);
21797 expand_or_defer_fn (d);
21798 }
21799
21800 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21801 cp_check_omp_declare_reduction (d);
21802 }
21803
21804 /* We're not deferring instantiation any more. */
21805 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
21806
21807 if (!fn_context)
21808 pop_from_top_level ();
21809 else if (nested)
21810 pop_function_context ();
21811
21812 out:
21813 input_location = saved_loc;
21814 cp_unevaluated_operand = saved_unevaluated_operand;
21815 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
21816 pop_deferring_access_checks ();
21817 pop_tinst_level ();
21818 if (nested)
21819 restore_omp_privatization_clauses (omp_privatization_save);
21820
21821 timevar_pop (TV_TEMPLATE_INST);
21822
21823 return d;
21824 }
21825
21826 /* Run through the list of templates that we wish we could
21827 instantiate, and instantiate any we can. RETRIES is the
21828 number of times we retry pending template instantiation. */
21829
21830 void
21831 instantiate_pending_templates (int retries)
21832 {
21833 int reconsider;
21834 location_t saved_loc = input_location;
21835
21836 /* Instantiating templates may trigger vtable generation. This in turn
21837 may require further template instantiations. We place a limit here
21838 to avoid infinite loop. */
21839 if (pending_templates && retries >= max_tinst_depth)
21840 {
21841 tree decl = pending_templates->tinst->decl;
21842
21843 fatal_error (input_location,
21844 "template instantiation depth exceeds maximum of %d"
21845 " instantiating %q+D, possibly from virtual table generation"
21846 " (use -ftemplate-depth= to increase the maximum)",
21847 max_tinst_depth, decl);
21848 if (TREE_CODE (decl) == FUNCTION_DECL)
21849 /* Pretend that we defined it. */
21850 DECL_INITIAL (decl) = error_mark_node;
21851 return;
21852 }
21853
21854 do
21855 {
21856 struct pending_template **t = &pending_templates;
21857 struct pending_template *last = NULL;
21858 reconsider = 0;
21859 while (*t)
21860 {
21861 tree instantiation = reopen_tinst_level ((*t)->tinst);
21862 bool complete = false;
21863
21864 if (TYPE_P (instantiation))
21865 {
21866 tree fn;
21867
21868 if (!COMPLETE_TYPE_P (instantiation))
21869 {
21870 instantiate_class_template (instantiation);
21871 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
21872 for (fn = TYPE_METHODS (instantiation);
21873 fn;
21874 fn = TREE_CHAIN (fn))
21875 if (! DECL_ARTIFICIAL (fn))
21876 instantiate_decl (fn,
21877 /*defer_ok=*/0,
21878 /*expl_inst_class_mem_p=*/false);
21879 if (COMPLETE_TYPE_P (instantiation))
21880 reconsider = 1;
21881 }
21882
21883 complete = COMPLETE_TYPE_P (instantiation);
21884 }
21885 else
21886 {
21887 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
21888 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
21889 {
21890 instantiation
21891 = instantiate_decl (instantiation,
21892 /*defer_ok=*/0,
21893 /*expl_inst_class_mem_p=*/false);
21894 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
21895 reconsider = 1;
21896 }
21897
21898 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
21899 || DECL_TEMPLATE_INSTANTIATED (instantiation));
21900 }
21901
21902 if (complete)
21903 /* If INSTANTIATION has been instantiated, then we don't
21904 need to consider it again in the future. */
21905 *t = (*t)->next;
21906 else
21907 {
21908 last = *t;
21909 t = &(*t)->next;
21910 }
21911 tinst_depth = 0;
21912 current_tinst_level = NULL;
21913 }
21914 last_pending_template = last;
21915 }
21916 while (reconsider);
21917
21918 input_location = saved_loc;
21919 }
21920
21921 /* Substitute ARGVEC into T, which is a list of initializers for
21922 either base class or a non-static data member. The TREE_PURPOSEs
21923 are DECLs, and the TREE_VALUEs are the initializer values. Used by
21924 instantiate_decl. */
21925
21926 static tree
21927 tsubst_initializer_list (tree t, tree argvec)
21928 {
21929 tree inits = NULL_TREE;
21930
21931 for (; t; t = TREE_CHAIN (t))
21932 {
21933 tree decl;
21934 tree init;
21935 tree expanded_bases = NULL_TREE;
21936 tree expanded_arguments = NULL_TREE;
21937 int i, len = 1;
21938
21939 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
21940 {
21941 tree expr;
21942 tree arg;
21943
21944 /* Expand the base class expansion type into separate base
21945 classes. */
21946 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
21947 tf_warning_or_error,
21948 NULL_TREE);
21949 if (expanded_bases == error_mark_node)
21950 continue;
21951
21952 /* We'll be building separate TREE_LISTs of arguments for
21953 each base. */
21954 len = TREE_VEC_LENGTH (expanded_bases);
21955 expanded_arguments = make_tree_vec (len);
21956 for (i = 0; i < len; i++)
21957 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
21958
21959 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
21960 expand each argument in the TREE_VALUE of t. */
21961 expr = make_node (EXPR_PACK_EXPANSION);
21962 PACK_EXPANSION_LOCAL_P (expr) = true;
21963 PACK_EXPANSION_PARAMETER_PACKS (expr) =
21964 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
21965
21966 if (TREE_VALUE (t) == void_type_node)
21967 /* VOID_TYPE_NODE is used to indicate
21968 value-initialization. */
21969 {
21970 for (i = 0; i < len; i++)
21971 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
21972 }
21973 else
21974 {
21975 /* Substitute parameter packs into each argument in the
21976 TREE_LIST. */
21977 in_base_initializer = 1;
21978 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
21979 {
21980 tree expanded_exprs;
21981
21982 /* Expand the argument. */
21983 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
21984 expanded_exprs
21985 = tsubst_pack_expansion (expr, argvec,
21986 tf_warning_or_error,
21987 NULL_TREE);
21988 if (expanded_exprs == error_mark_node)
21989 continue;
21990
21991 /* Prepend each of the expanded expressions to the
21992 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
21993 for (i = 0; i < len; i++)
21994 {
21995 TREE_VEC_ELT (expanded_arguments, i) =
21996 tree_cons (NULL_TREE,
21997 TREE_VEC_ELT (expanded_exprs, i),
21998 TREE_VEC_ELT (expanded_arguments, i));
21999 }
22000 }
22001 in_base_initializer = 0;
22002
22003 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22004 since we built them backwards. */
22005 for (i = 0; i < len; i++)
22006 {
22007 TREE_VEC_ELT (expanded_arguments, i) =
22008 nreverse (TREE_VEC_ELT (expanded_arguments, i));
22009 }
22010 }
22011 }
22012
22013 for (i = 0; i < len; ++i)
22014 {
22015 if (expanded_bases)
22016 {
22017 decl = TREE_VEC_ELT (expanded_bases, i);
22018 decl = expand_member_init (decl);
22019 init = TREE_VEC_ELT (expanded_arguments, i);
22020 }
22021 else
22022 {
22023 tree tmp;
22024 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
22025 tf_warning_or_error, NULL_TREE);
22026
22027 decl = expand_member_init (decl);
22028 if (decl && !DECL_P (decl))
22029 in_base_initializer = 1;
22030
22031 init = TREE_VALUE (t);
22032 tmp = init;
22033 if (init != void_type_node)
22034 init = tsubst_expr (init, argvec,
22035 tf_warning_or_error, NULL_TREE,
22036 /*integral_constant_expression_p=*/false);
22037 if (init == NULL_TREE && tmp != NULL_TREE)
22038 /* If we had an initializer but it instantiated to nothing,
22039 value-initialize the object. This will only occur when
22040 the initializer was a pack expansion where the parameter
22041 packs used in that expansion were of length zero. */
22042 init = void_type_node;
22043 in_base_initializer = 0;
22044 }
22045
22046 if (decl)
22047 {
22048 init = build_tree_list (decl, init);
22049 TREE_CHAIN (init) = inits;
22050 inits = init;
22051 }
22052 }
22053 }
22054 return inits;
22055 }
22056
22057 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22058
22059 static void
22060 set_current_access_from_decl (tree decl)
22061 {
22062 if (TREE_PRIVATE (decl))
22063 current_access_specifier = access_private_node;
22064 else if (TREE_PROTECTED (decl))
22065 current_access_specifier = access_protected_node;
22066 else
22067 current_access_specifier = access_public_node;
22068 }
22069
22070 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22071 is the instantiation (which should have been created with
22072 start_enum) and ARGS are the template arguments to use. */
22073
22074 static void
22075 tsubst_enum (tree tag, tree newtag, tree args)
22076 {
22077 tree e;
22078
22079 if (SCOPED_ENUM_P (newtag))
22080 begin_scope (sk_scoped_enum, newtag);
22081
22082 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22083 {
22084 tree value;
22085 tree decl;
22086
22087 decl = TREE_VALUE (e);
22088 /* Note that in a template enum, the TREE_VALUE is the
22089 CONST_DECL, not the corresponding INTEGER_CST. */
22090 value = tsubst_expr (DECL_INITIAL (decl),
22091 args, tf_warning_or_error, NULL_TREE,
22092 /*integral_constant_expression_p=*/true);
22093
22094 /* Give this enumeration constant the correct access. */
22095 set_current_access_from_decl (decl);
22096
22097 /* Actually build the enumerator itself. Here we're assuming that
22098 enumerators can't have dependent attributes. */
22099 build_enumerator (DECL_NAME (decl), value, newtag,
22100 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22101 }
22102
22103 if (SCOPED_ENUM_P (newtag))
22104 finish_scope ();
22105
22106 finish_enum_value_list (newtag);
22107 finish_enum (newtag);
22108
22109 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22110 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22111 }
22112
22113 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22114 its type -- but without substituting the innermost set of template
22115 arguments. So, innermost set of template parameters will appear in
22116 the type. */
22117
22118 tree
22119 get_mostly_instantiated_function_type (tree decl)
22120 {
22121 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22122 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22123 }
22124
22125 /* Return truthvalue if we're processing a template different from
22126 the last one involved in diagnostics. */
22127 bool
22128 problematic_instantiation_changed (void)
22129 {
22130 return current_tinst_level != last_error_tinst_level;
22131 }
22132
22133 /* Remember current template involved in diagnostics. */
22134 void
22135 record_last_problematic_instantiation (void)
22136 {
22137 last_error_tinst_level = current_tinst_level;
22138 }
22139
22140 struct tinst_level *
22141 current_instantiation (void)
22142 {
22143 return current_tinst_level;
22144 }
22145
22146 /* Return TRUE if current_function_decl is being instantiated, false
22147 otherwise. */
22148
22149 bool
22150 instantiating_current_function_p (void)
22151 {
22152 return (current_instantiation ()
22153 && current_instantiation ()->decl == current_function_decl);
22154 }
22155
22156 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22157 type. Return zero for ok, nonzero for disallowed. Issue error and
22158 warning messages under control of COMPLAIN. */
22159
22160 static int
22161 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22162 {
22163 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22164 return 0;
22165 else if (POINTER_TYPE_P (type))
22166 return 0;
22167 else if (TYPE_PTRMEM_P (type))
22168 return 0;
22169 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22170 return 0;
22171 else if (TREE_CODE (type) == TYPENAME_TYPE)
22172 return 0;
22173 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22174 return 0;
22175 else if (TREE_CODE (type) == NULLPTR_TYPE)
22176 return 0;
22177 /* A bound template template parm could later be instantiated to have a valid
22178 nontype parm type via an alias template. */
22179 else if (cxx_dialect >= cxx11
22180 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22181 return 0;
22182
22183 if (complain & tf_error)
22184 {
22185 if (type == error_mark_node)
22186 inform (input_location, "invalid template non-type parameter");
22187 else
22188 error ("%q#T is not a valid type for a template non-type parameter",
22189 type);
22190 }
22191 return 1;
22192 }
22193
22194 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22195 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22196
22197 static bool
22198 dependent_type_p_r (tree type)
22199 {
22200 tree scope;
22201
22202 /* [temp.dep.type]
22203
22204 A type is dependent if it is:
22205
22206 -- a template parameter. Template template parameters are types
22207 for us (since TYPE_P holds true for them) so we handle
22208 them here. */
22209 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22210 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22211 return true;
22212 /* -- a qualified-id with a nested-name-specifier which contains a
22213 class-name that names a dependent type or whose unqualified-id
22214 names a dependent type. */
22215 if (TREE_CODE (type) == TYPENAME_TYPE)
22216 return true;
22217
22218 /* An alias template specialization can be dependent even if the
22219 resulting type is not. */
22220 if (dependent_alias_template_spec_p (type))
22221 return true;
22222
22223 /* -- a cv-qualified type where the cv-unqualified type is
22224 dependent.
22225 No code is necessary for this bullet; the code below handles
22226 cv-qualified types, and we don't want to strip aliases with
22227 TYPE_MAIN_VARIANT because of DR 1558. */
22228 /* -- a compound type constructed from any dependent type. */
22229 if (TYPE_PTRMEM_P (type))
22230 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22231 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22232 (type)));
22233 else if (TYPE_PTR_P (type)
22234 || TREE_CODE (type) == REFERENCE_TYPE)
22235 return dependent_type_p (TREE_TYPE (type));
22236 else if (TREE_CODE (type) == FUNCTION_TYPE
22237 || TREE_CODE (type) == METHOD_TYPE)
22238 {
22239 tree arg_type;
22240
22241 if (dependent_type_p (TREE_TYPE (type)))
22242 return true;
22243 for (arg_type = TYPE_ARG_TYPES (type);
22244 arg_type;
22245 arg_type = TREE_CHAIN (arg_type))
22246 if (dependent_type_p (TREE_VALUE (arg_type)))
22247 return true;
22248 return false;
22249 }
22250 /* -- an array type constructed from any dependent type or whose
22251 size is specified by a constant expression that is
22252 value-dependent.
22253
22254 We checked for type- and value-dependence of the bounds in
22255 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22256 if (TREE_CODE (type) == ARRAY_TYPE)
22257 {
22258 if (TYPE_DOMAIN (type)
22259 && dependent_type_p (TYPE_DOMAIN (type)))
22260 return true;
22261 return dependent_type_p (TREE_TYPE (type));
22262 }
22263
22264 /* -- a template-id in which either the template name is a template
22265 parameter ... */
22266 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22267 return true;
22268 /* ... or any of the template arguments is a dependent type or
22269 an expression that is type-dependent or value-dependent. */
22270 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22271 && (any_dependent_template_arguments_p
22272 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22273 return true;
22274
22275 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22276 dependent; if the argument of the `typeof' expression is not
22277 type-dependent, then it should already been have resolved. */
22278 if (TREE_CODE (type) == TYPEOF_TYPE
22279 || TREE_CODE (type) == DECLTYPE_TYPE
22280 || TREE_CODE (type) == UNDERLYING_TYPE)
22281 return true;
22282
22283 /* A template argument pack is dependent if any of its packed
22284 arguments are. */
22285 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22286 {
22287 tree args = ARGUMENT_PACK_ARGS (type);
22288 int i, len = TREE_VEC_LENGTH (args);
22289 for (i = 0; i < len; ++i)
22290 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22291 return true;
22292 }
22293
22294 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22295 be template parameters. */
22296 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22297 return true;
22298
22299 /* The standard does not specifically mention types that are local
22300 to template functions or local classes, but they should be
22301 considered dependent too. For example:
22302
22303 template <int I> void f() {
22304 enum E { a = I };
22305 S<sizeof (E)> s;
22306 }
22307
22308 The size of `E' cannot be known until the value of `I' has been
22309 determined. Therefore, `E' must be considered dependent. */
22310 scope = TYPE_CONTEXT (type);
22311 if (scope && TYPE_P (scope))
22312 return dependent_type_p (scope);
22313 /* Don't use type_dependent_expression_p here, as it can lead
22314 to infinite recursion trying to determine whether a lambda
22315 nested in a lambda is dependent (c++/47687). */
22316 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22317 && DECL_LANG_SPECIFIC (scope)
22318 && DECL_TEMPLATE_INFO (scope)
22319 && (any_dependent_template_arguments_p
22320 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22321 return true;
22322
22323 /* Other types are non-dependent. */
22324 return false;
22325 }
22326
22327 /* Returns TRUE if TYPE is dependent, in the sense of
22328 [temp.dep.type]. Note that a NULL type is considered dependent. */
22329
22330 bool
22331 dependent_type_p (tree type)
22332 {
22333 /* If there are no template parameters in scope, then there can't be
22334 any dependent types. */
22335 if (!processing_template_decl)
22336 {
22337 /* If we are not processing a template, then nobody should be
22338 providing us with a dependent type. */
22339 gcc_assert (type);
22340 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22341 return false;
22342 }
22343
22344 /* If the type is NULL, we have not computed a type for the entity
22345 in question; in that case, the type is dependent. */
22346 if (!type)
22347 return true;
22348
22349 /* Erroneous types can be considered non-dependent. */
22350 if (type == error_mark_node)
22351 return false;
22352
22353 /* If we have not already computed the appropriate value for TYPE,
22354 do so now. */
22355 if (!TYPE_DEPENDENT_P_VALID (type))
22356 {
22357 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22358 TYPE_DEPENDENT_P_VALID (type) = 1;
22359 }
22360
22361 return TYPE_DEPENDENT_P (type);
22362 }
22363
22364 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22365 lookup. In other words, a dependent type that is not the current
22366 instantiation. */
22367
22368 bool
22369 dependent_scope_p (tree scope)
22370 {
22371 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22372 && !currently_open_class (scope));
22373 }
22374
22375 /* T is a SCOPE_REF; return whether we need to consider it
22376 instantiation-dependent so that we can check access at instantiation
22377 time even though we know which member it resolves to. */
22378
22379 static bool
22380 instantiation_dependent_scope_ref_p (tree t)
22381 {
22382 if (DECL_P (TREE_OPERAND (t, 1))
22383 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22384 && accessible_in_template_p (TREE_OPERAND (t, 0),
22385 TREE_OPERAND (t, 1)))
22386 return false;
22387 else
22388 return true;
22389 }
22390
22391 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22392 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22393 expression. */
22394
22395 /* Note that this predicate is not appropriate for general expressions;
22396 only constant expressions (that satisfy potential_constant_expression)
22397 can be tested for value dependence. */
22398
22399 bool
22400 value_dependent_expression_p (tree expression)
22401 {
22402 if (!processing_template_decl)
22403 return false;
22404
22405 /* A name declared with a dependent type. */
22406 if (DECL_P (expression) && type_dependent_expression_p (expression))
22407 return true;
22408
22409 switch (TREE_CODE (expression))
22410 {
22411 case IDENTIFIER_NODE:
22412 /* A name that has not been looked up -- must be dependent. */
22413 return true;
22414
22415 case TEMPLATE_PARM_INDEX:
22416 /* A non-type template parm. */
22417 return true;
22418
22419 case CONST_DECL:
22420 /* A non-type template parm. */
22421 if (DECL_TEMPLATE_PARM_P (expression))
22422 return true;
22423 return value_dependent_expression_p (DECL_INITIAL (expression));
22424
22425 case VAR_DECL:
22426 /* A constant with literal type and is initialized
22427 with an expression that is value-dependent.
22428
22429 Note that a non-dependent parenthesized initializer will have
22430 already been replaced with its constant value, so if we see
22431 a TREE_LIST it must be dependent. */
22432 if (DECL_INITIAL (expression)
22433 && decl_constant_var_p (expression)
22434 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22435 /* cp_finish_decl doesn't fold reference initializers. */
22436 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22437 || value_dependent_expression_p (DECL_INITIAL (expression))))
22438 return true;
22439 return false;
22440
22441 case DYNAMIC_CAST_EXPR:
22442 case STATIC_CAST_EXPR:
22443 case CONST_CAST_EXPR:
22444 case REINTERPRET_CAST_EXPR:
22445 case CAST_EXPR:
22446 /* These expressions are value-dependent if the type to which
22447 the cast occurs is dependent or the expression being casted
22448 is value-dependent. */
22449 {
22450 tree type = TREE_TYPE (expression);
22451
22452 if (dependent_type_p (type))
22453 return true;
22454
22455 /* A functional cast has a list of operands. */
22456 expression = TREE_OPERAND (expression, 0);
22457 if (!expression)
22458 {
22459 /* If there are no operands, it must be an expression such
22460 as "int()". This should not happen for aggregate types
22461 because it would form non-constant expressions. */
22462 gcc_assert (cxx_dialect >= cxx11
22463 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22464
22465 return false;
22466 }
22467
22468 if (TREE_CODE (expression) == TREE_LIST)
22469 return any_value_dependent_elements_p (expression);
22470
22471 return value_dependent_expression_p (expression);
22472 }
22473
22474 case SIZEOF_EXPR:
22475 if (SIZEOF_EXPR_TYPE_P (expression))
22476 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22477 /* FALLTHRU */
22478 case ALIGNOF_EXPR:
22479 case TYPEID_EXPR:
22480 /* A `sizeof' expression is value-dependent if the operand is
22481 type-dependent or is a pack expansion. */
22482 expression = TREE_OPERAND (expression, 0);
22483 if (PACK_EXPANSION_P (expression))
22484 return true;
22485 else if (TYPE_P (expression))
22486 return dependent_type_p (expression);
22487 return instantiation_dependent_expression_p (expression);
22488
22489 case AT_ENCODE_EXPR:
22490 /* An 'encode' expression is value-dependent if the operand is
22491 type-dependent. */
22492 expression = TREE_OPERAND (expression, 0);
22493 return dependent_type_p (expression);
22494
22495 case NOEXCEPT_EXPR:
22496 expression = TREE_OPERAND (expression, 0);
22497 return instantiation_dependent_expression_p (expression);
22498
22499 case SCOPE_REF:
22500 /* All instantiation-dependent expressions should also be considered
22501 value-dependent. */
22502 return instantiation_dependent_scope_ref_p (expression);
22503
22504 case COMPONENT_REF:
22505 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22506 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22507
22508 case NONTYPE_ARGUMENT_PACK:
22509 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22510 is value-dependent. */
22511 {
22512 tree values = ARGUMENT_PACK_ARGS (expression);
22513 int i, len = TREE_VEC_LENGTH (values);
22514
22515 for (i = 0; i < len; ++i)
22516 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22517 return true;
22518
22519 return false;
22520 }
22521
22522 case TRAIT_EXPR:
22523 {
22524 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22525 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22526 || (type2 ? dependent_type_p (type2) : false));
22527 }
22528
22529 case MODOP_EXPR:
22530 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22531 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22532
22533 case ARRAY_REF:
22534 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22535 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22536
22537 case ADDR_EXPR:
22538 {
22539 tree op = TREE_OPERAND (expression, 0);
22540 return (value_dependent_expression_p (op)
22541 || has_value_dependent_address (op));
22542 }
22543
22544 case REQUIRES_EXPR:
22545 /* Treat all requires-expressions as value-dependent so
22546 we don't try to fold them. */
22547 return true;
22548
22549 case TYPE_REQ:
22550 return dependent_type_p (TREE_OPERAND (expression, 0));
22551
22552 case CALL_EXPR:
22553 {
22554 tree fn = get_callee_fndecl (expression);
22555 int i, nargs;
22556 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22557 return true;
22558 nargs = call_expr_nargs (expression);
22559 for (i = 0; i < nargs; ++i)
22560 {
22561 tree op = CALL_EXPR_ARG (expression, i);
22562 /* In a call to a constexpr member function, look through the
22563 implicit ADDR_EXPR on the object argument so that it doesn't
22564 cause the call to be considered value-dependent. We also
22565 look through it in potential_constant_expression. */
22566 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22567 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22568 && TREE_CODE (op) == ADDR_EXPR)
22569 op = TREE_OPERAND (op, 0);
22570 if (value_dependent_expression_p (op))
22571 return true;
22572 }
22573 return false;
22574 }
22575
22576 case TEMPLATE_ID_EXPR:
22577 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22578 type-dependent. */
22579 return type_dependent_expression_p (expression)
22580 || variable_concept_p (TREE_OPERAND (expression, 0));
22581
22582 case CONSTRUCTOR:
22583 {
22584 unsigned ix;
22585 tree val;
22586 if (dependent_type_p (TREE_TYPE (expression)))
22587 return true;
22588 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22589 if (value_dependent_expression_p (val))
22590 return true;
22591 return false;
22592 }
22593
22594 case STMT_EXPR:
22595 /* Treat a GNU statement expression as dependent to avoid crashing
22596 under instantiate_non_dependent_expr; it can't be constant. */
22597 return true;
22598
22599 default:
22600 /* A constant expression is value-dependent if any subexpression is
22601 value-dependent. */
22602 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22603 {
22604 case tcc_reference:
22605 case tcc_unary:
22606 case tcc_comparison:
22607 case tcc_binary:
22608 case tcc_expression:
22609 case tcc_vl_exp:
22610 {
22611 int i, len = cp_tree_operand_length (expression);
22612
22613 for (i = 0; i < len; i++)
22614 {
22615 tree t = TREE_OPERAND (expression, i);
22616
22617 /* In some cases, some of the operands may be missing.l
22618 (For example, in the case of PREDECREMENT_EXPR, the
22619 amount to increment by may be missing.) That doesn't
22620 make the expression dependent. */
22621 if (t && value_dependent_expression_p (t))
22622 return true;
22623 }
22624 }
22625 break;
22626 default:
22627 break;
22628 }
22629 break;
22630 }
22631
22632 /* The expression is not value-dependent. */
22633 return false;
22634 }
22635
22636 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22637 [temp.dep.expr]. Note that an expression with no type is
22638 considered dependent. Other parts of the compiler arrange for an
22639 expression with type-dependent subexpressions to have no type, so
22640 this function doesn't have to be fully recursive. */
22641
22642 bool
22643 type_dependent_expression_p (tree expression)
22644 {
22645 if (!processing_template_decl)
22646 return false;
22647
22648 if (expression == NULL_TREE || expression == error_mark_node)
22649 return false;
22650
22651 /* An unresolved name is always dependent. */
22652 if (identifier_p (expression)
22653 || TREE_CODE (expression) == USING_DECL
22654 || TREE_CODE (expression) == WILDCARD_DECL)
22655 return true;
22656
22657 /* A fold expression is type-dependent. */
22658 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22659 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22660 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22661 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22662 return true;
22663
22664 /* Some expression forms are never type-dependent. */
22665 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22666 || TREE_CODE (expression) == SIZEOF_EXPR
22667 || TREE_CODE (expression) == ALIGNOF_EXPR
22668 || TREE_CODE (expression) == AT_ENCODE_EXPR
22669 || TREE_CODE (expression) == NOEXCEPT_EXPR
22670 || TREE_CODE (expression) == TRAIT_EXPR
22671 || TREE_CODE (expression) == TYPEID_EXPR
22672 || TREE_CODE (expression) == DELETE_EXPR
22673 || TREE_CODE (expression) == VEC_DELETE_EXPR
22674 || TREE_CODE (expression) == THROW_EXPR
22675 || TREE_CODE (expression) == REQUIRES_EXPR)
22676 return false;
22677
22678 /* The types of these expressions depends only on the type to which
22679 the cast occurs. */
22680 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22681 || TREE_CODE (expression) == STATIC_CAST_EXPR
22682 || TREE_CODE (expression) == CONST_CAST_EXPR
22683 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22684 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22685 || TREE_CODE (expression) == CAST_EXPR)
22686 return dependent_type_p (TREE_TYPE (expression));
22687
22688 /* The types of these expressions depends only on the type created
22689 by the expression. */
22690 if (TREE_CODE (expression) == NEW_EXPR
22691 || TREE_CODE (expression) == VEC_NEW_EXPR)
22692 {
22693 /* For NEW_EXPR tree nodes created inside a template, either
22694 the object type itself or a TREE_LIST may appear as the
22695 operand 1. */
22696 tree type = TREE_OPERAND (expression, 1);
22697 if (TREE_CODE (type) == TREE_LIST)
22698 /* This is an array type. We need to check array dimensions
22699 as well. */
22700 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22701 || value_dependent_expression_p
22702 (TREE_OPERAND (TREE_VALUE (type), 1));
22703 else
22704 return dependent_type_p (type);
22705 }
22706
22707 if (TREE_CODE (expression) == SCOPE_REF)
22708 {
22709 tree scope = TREE_OPERAND (expression, 0);
22710 tree name = TREE_OPERAND (expression, 1);
22711
22712 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22713 contains an identifier associated by name lookup with one or more
22714 declarations declared with a dependent type, or...a
22715 nested-name-specifier or qualified-id that names a member of an
22716 unknown specialization. */
22717 return (type_dependent_expression_p (name)
22718 || dependent_scope_p (scope));
22719 }
22720
22721 if (TREE_CODE (expression) == FUNCTION_DECL
22722 && DECL_LANG_SPECIFIC (expression)
22723 && DECL_TEMPLATE_INFO (expression)
22724 && (any_dependent_template_arguments_p
22725 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
22726 return true;
22727
22728 if (TREE_CODE (expression) == TEMPLATE_DECL
22729 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22730 return false;
22731
22732 if (TREE_CODE (expression) == STMT_EXPR)
22733 expression = stmt_expr_value_expr (expression);
22734
22735 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22736 {
22737 tree elt;
22738 unsigned i;
22739
22740 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22741 {
22742 if (type_dependent_expression_p (elt))
22743 return true;
22744 }
22745 return false;
22746 }
22747
22748 /* A static data member of the current instantiation with incomplete
22749 array type is type-dependent, as the definition and specializations
22750 can have different bounds. */
22751 if (VAR_P (expression)
22752 && DECL_CLASS_SCOPE_P (expression)
22753 && dependent_type_p (DECL_CONTEXT (expression))
22754 && VAR_HAD_UNKNOWN_BOUND (expression))
22755 return true;
22756
22757 /* An array of unknown bound depending on a variadic parameter, eg:
22758
22759 template<typename... Args>
22760 void foo (Args... args)
22761 {
22762 int arr[] = { args... };
22763 }
22764
22765 template<int... vals>
22766 void bar ()
22767 {
22768 int arr[] = { vals... };
22769 }
22770
22771 If the array has no length and has an initializer, it must be that
22772 we couldn't determine its length in cp_complete_array_type because
22773 it is dependent. */
22774 if (VAR_P (expression)
22775 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
22776 && !TYPE_DOMAIN (TREE_TYPE (expression))
22777 && DECL_INITIAL (expression))
22778 return true;
22779
22780 /* A variable template specialization is type-dependent if it has any
22781 dependent template arguments. */
22782 if (VAR_P (expression)
22783 && DECL_LANG_SPECIFIC (expression)
22784 && DECL_TEMPLATE_INFO (expression)
22785 && variable_template_p (DECL_TI_TEMPLATE (expression)))
22786 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22787
22788 /* Always dependent, on the number of arguments if nothing else. */
22789 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
22790 return true;
22791
22792 if (TREE_TYPE (expression) == unknown_type_node)
22793 {
22794 if (TREE_CODE (expression) == ADDR_EXPR)
22795 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
22796 if (TREE_CODE (expression) == COMPONENT_REF
22797 || TREE_CODE (expression) == OFFSET_REF)
22798 {
22799 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
22800 return true;
22801 expression = TREE_OPERAND (expression, 1);
22802 if (identifier_p (expression))
22803 return false;
22804 }
22805 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
22806 if (TREE_CODE (expression) == SCOPE_REF)
22807 return false;
22808
22809 if (BASELINK_P (expression))
22810 {
22811 if (BASELINK_OPTYPE (expression)
22812 && dependent_type_p (BASELINK_OPTYPE (expression)))
22813 return true;
22814 expression = BASELINK_FUNCTIONS (expression);
22815 }
22816
22817 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
22818 {
22819 if (any_dependent_template_arguments_p
22820 (TREE_OPERAND (expression, 1)))
22821 return true;
22822 expression = TREE_OPERAND (expression, 0);
22823 if (identifier_p (expression))
22824 return true;
22825 }
22826
22827 gcc_assert (TREE_CODE (expression) == OVERLOAD
22828 || TREE_CODE (expression) == FUNCTION_DECL);
22829
22830 while (expression)
22831 {
22832 if (type_dependent_expression_p (OVL_CURRENT (expression)))
22833 return true;
22834 expression = OVL_NEXT (expression);
22835 }
22836 return false;
22837 }
22838
22839 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
22840
22841 return (dependent_type_p (TREE_TYPE (expression)));
22842 }
22843
22844 /* walk_tree callback function for instantiation_dependent_expression_p,
22845 below. Returns non-zero if a dependent subexpression is found. */
22846
22847 static tree
22848 instantiation_dependent_r (tree *tp, int *walk_subtrees,
22849 void * /*data*/)
22850 {
22851 if (TYPE_P (*tp))
22852 {
22853 /* We don't have to worry about decltype currently because decltype
22854 of an instantiation-dependent expr is a dependent type. This
22855 might change depending on the resolution of DR 1172. */
22856 *walk_subtrees = false;
22857 return NULL_TREE;
22858 }
22859 enum tree_code code = TREE_CODE (*tp);
22860 switch (code)
22861 {
22862 /* Don't treat an argument list as dependent just because it has no
22863 TREE_TYPE. */
22864 case TREE_LIST:
22865 case TREE_VEC:
22866 return NULL_TREE;
22867
22868 case VAR_DECL:
22869 case CONST_DECL:
22870 /* A constant with a dependent initializer is dependent. */
22871 if (value_dependent_expression_p (*tp))
22872 return *tp;
22873 break;
22874
22875 case TEMPLATE_PARM_INDEX:
22876 return *tp;
22877
22878 /* Handle expressions with type operands. */
22879 case SIZEOF_EXPR:
22880 case ALIGNOF_EXPR:
22881 case TYPEID_EXPR:
22882 case AT_ENCODE_EXPR:
22883 {
22884 tree op = TREE_OPERAND (*tp, 0);
22885 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
22886 op = TREE_TYPE (op);
22887 if (TYPE_P (op))
22888 {
22889 if (dependent_type_p (op))
22890 return *tp;
22891 else
22892 {
22893 *walk_subtrees = false;
22894 return NULL_TREE;
22895 }
22896 }
22897 break;
22898 }
22899
22900 case TRAIT_EXPR:
22901 if (value_dependent_expression_p (*tp))
22902 return *tp;
22903 *walk_subtrees = false;
22904 return NULL_TREE;
22905
22906 case COMPONENT_REF:
22907 if (identifier_p (TREE_OPERAND (*tp, 1)))
22908 /* In a template, finish_class_member_access_expr creates a
22909 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
22910 type-dependent, so that we can check access control at
22911 instantiation time (PR 42277). See also Core issue 1273. */
22912 return *tp;
22913 break;
22914
22915 case SCOPE_REF:
22916 if (instantiation_dependent_scope_ref_p (*tp))
22917 return *tp;
22918 else
22919 break;
22920
22921 /* Treat statement-expressions as dependent. */
22922 case BIND_EXPR:
22923 return *tp;
22924
22925 /* Treat requires-expressions as dependent. */
22926 case REQUIRES_EXPR:
22927 return *tp;
22928
22929 case CALL_EXPR:
22930 /* Treat calls to function concepts as dependent. */
22931 if (function_concept_check_p (*tp))
22932 return *tp;
22933 break;
22934
22935 case TEMPLATE_ID_EXPR:
22936 /* And variable concepts. */
22937 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
22938 return *tp;
22939 break;
22940
22941 default:
22942 break;
22943 }
22944
22945 if (type_dependent_expression_p (*tp))
22946 return *tp;
22947 else
22948 return NULL_TREE;
22949 }
22950
22951 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
22952 sense defined by the ABI:
22953
22954 "An expression is instantiation-dependent if it is type-dependent
22955 or value-dependent, or it has a subexpression that is type-dependent
22956 or value-dependent." */
22957
22958 bool
22959 instantiation_dependent_expression_p (tree expression)
22960 {
22961 tree result;
22962
22963 if (!processing_template_decl)
22964 return false;
22965
22966 if (expression == error_mark_node)
22967 return false;
22968
22969 result = cp_walk_tree_without_duplicates (&expression,
22970 instantiation_dependent_r, NULL);
22971 return result != NULL_TREE;
22972 }
22973
22974 /* Like type_dependent_expression_p, but it also works while not processing
22975 a template definition, i.e. during substitution or mangling. */
22976
22977 bool
22978 type_dependent_expression_p_push (tree expr)
22979 {
22980 bool b;
22981 ++processing_template_decl;
22982 b = type_dependent_expression_p (expr);
22983 --processing_template_decl;
22984 return b;
22985 }
22986
22987 /* Returns TRUE if ARGS contains a type-dependent expression. */
22988
22989 bool
22990 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
22991 {
22992 unsigned int i;
22993 tree arg;
22994
22995 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
22996 {
22997 if (type_dependent_expression_p (arg))
22998 return true;
22999 }
23000 return false;
23001 }
23002
23003 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23004 expressions) contains any type-dependent expressions. */
23005
23006 bool
23007 any_type_dependent_elements_p (const_tree list)
23008 {
23009 for (; list; list = TREE_CHAIN (list))
23010 if (type_dependent_expression_p (TREE_VALUE (list)))
23011 return true;
23012
23013 return false;
23014 }
23015
23016 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23017 expressions) contains any value-dependent expressions. */
23018
23019 bool
23020 any_value_dependent_elements_p (const_tree list)
23021 {
23022 for (; list; list = TREE_CHAIN (list))
23023 if (value_dependent_expression_p (TREE_VALUE (list)))
23024 return true;
23025
23026 return false;
23027 }
23028
23029 /* Returns TRUE if the ARG (a template argument) is dependent. */
23030
23031 bool
23032 dependent_template_arg_p (tree arg)
23033 {
23034 if (!processing_template_decl)
23035 return false;
23036
23037 /* Assume a template argument that was wrongly written by the user
23038 is dependent. This is consistent with what
23039 any_dependent_template_arguments_p [that calls this function]
23040 does. */
23041 if (!arg || arg == error_mark_node)
23042 return true;
23043
23044 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23045 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23046
23047 if (TREE_CODE (arg) == TEMPLATE_DECL
23048 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23049 return dependent_template_p (arg);
23050 else if (ARGUMENT_PACK_P (arg))
23051 {
23052 tree args = ARGUMENT_PACK_ARGS (arg);
23053 int i, len = TREE_VEC_LENGTH (args);
23054 for (i = 0; i < len; ++i)
23055 {
23056 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23057 return true;
23058 }
23059
23060 return false;
23061 }
23062 else if (TYPE_P (arg))
23063 return dependent_type_p (arg);
23064 else
23065 return (type_dependent_expression_p (arg)
23066 || value_dependent_expression_p (arg));
23067 }
23068
23069 /* Returns true if ARGS (a collection of template arguments) contains
23070 any types that require structural equality testing. */
23071
23072 bool
23073 any_template_arguments_need_structural_equality_p (tree args)
23074 {
23075 int i;
23076 int j;
23077
23078 if (!args)
23079 return false;
23080 if (args == error_mark_node)
23081 return true;
23082
23083 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23084 {
23085 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23086 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23087 {
23088 tree arg = TREE_VEC_ELT (level, j);
23089 tree packed_args = NULL_TREE;
23090 int k, len = 1;
23091
23092 if (ARGUMENT_PACK_P (arg))
23093 {
23094 /* Look inside the argument pack. */
23095 packed_args = ARGUMENT_PACK_ARGS (arg);
23096 len = TREE_VEC_LENGTH (packed_args);
23097 }
23098
23099 for (k = 0; k < len; ++k)
23100 {
23101 if (packed_args)
23102 arg = TREE_VEC_ELT (packed_args, k);
23103
23104 if (error_operand_p (arg))
23105 return true;
23106 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23107 continue;
23108 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23109 return true;
23110 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23111 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23112 return true;
23113 }
23114 }
23115 }
23116
23117 return false;
23118 }
23119
23120 /* Returns true if ARGS (a collection of template arguments) contains
23121 any dependent arguments. */
23122
23123 bool
23124 any_dependent_template_arguments_p (const_tree args)
23125 {
23126 int i;
23127 int j;
23128
23129 if (!args)
23130 return false;
23131 if (args == error_mark_node)
23132 return true;
23133
23134 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23135 {
23136 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23137 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23138 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23139 return true;
23140 }
23141
23142 return false;
23143 }
23144
23145 /* Returns TRUE if the template TMPL is dependent. */
23146
23147 bool
23148 dependent_template_p (tree tmpl)
23149 {
23150 if (TREE_CODE (tmpl) == OVERLOAD)
23151 {
23152 while (tmpl)
23153 {
23154 if (dependent_template_p (OVL_CURRENT (tmpl)))
23155 return true;
23156 tmpl = OVL_NEXT (tmpl);
23157 }
23158 return false;
23159 }
23160
23161 /* Template template parameters are dependent. */
23162 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23163 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23164 return true;
23165 /* So are names that have not been looked up. */
23166 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23167 return true;
23168 /* So are member templates of dependent classes. */
23169 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
23170 return dependent_type_p (DECL_CONTEXT (tmpl));
23171 return false;
23172 }
23173
23174 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23175
23176 bool
23177 dependent_template_id_p (tree tmpl, tree args)
23178 {
23179 return (dependent_template_p (tmpl)
23180 || any_dependent_template_arguments_p (args));
23181 }
23182
23183 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23184 are dependent. */
23185
23186 bool
23187 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23188 {
23189 int i;
23190
23191 if (!processing_template_decl)
23192 return false;
23193
23194 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23195 {
23196 tree decl = TREE_VEC_ELT (declv, i);
23197 tree init = TREE_VEC_ELT (initv, i);
23198 tree cond = TREE_VEC_ELT (condv, i);
23199 tree incr = TREE_VEC_ELT (incrv, i);
23200
23201 if (type_dependent_expression_p (decl)
23202 || TREE_CODE (decl) == SCOPE_REF)
23203 return true;
23204
23205 if (init && type_dependent_expression_p (init))
23206 return true;
23207
23208 if (type_dependent_expression_p (cond))
23209 return true;
23210
23211 if (COMPARISON_CLASS_P (cond)
23212 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23213 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23214 return true;
23215
23216 if (TREE_CODE (incr) == MODOP_EXPR)
23217 {
23218 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23219 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23220 return true;
23221 }
23222 else if (type_dependent_expression_p (incr))
23223 return true;
23224 else if (TREE_CODE (incr) == MODIFY_EXPR)
23225 {
23226 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23227 return true;
23228 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23229 {
23230 tree t = TREE_OPERAND (incr, 1);
23231 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23232 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23233 return true;
23234 }
23235 }
23236 }
23237
23238 return false;
23239 }
23240
23241 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23242 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23243 no such TYPE can be found. Note that this function peers inside
23244 uninstantiated templates and therefore should be used only in
23245 extremely limited situations. ONLY_CURRENT_P restricts this
23246 peering to the currently open classes hierarchy (which is required
23247 when comparing types). */
23248
23249 tree
23250 resolve_typename_type (tree type, bool only_current_p)
23251 {
23252 tree scope;
23253 tree name;
23254 tree decl;
23255 int quals;
23256 tree pushed_scope;
23257 tree result;
23258
23259 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23260
23261 scope = TYPE_CONTEXT (type);
23262 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23263 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23264 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23265 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23266 identifier of the TYPENAME_TYPE anymore.
23267 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23268 TYPENAME_TYPE instead, we avoid messing up with a possible
23269 typedef variant case. */
23270 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23271
23272 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23273 it first before we can figure out what NAME refers to. */
23274 if (TREE_CODE (scope) == TYPENAME_TYPE)
23275 {
23276 if (TYPENAME_IS_RESOLVING_P (scope))
23277 /* Given a class template A with a dependent base with nested type C,
23278 typedef typename A::C::C C will land us here, as trying to resolve
23279 the initial A::C leads to the local C typedef, which leads back to
23280 A::C::C. So we break the recursion now. */
23281 return type;
23282 else
23283 scope = resolve_typename_type (scope, only_current_p);
23284 }
23285 /* If we don't know what SCOPE refers to, then we cannot resolve the
23286 TYPENAME_TYPE. */
23287 if (TREE_CODE (scope) == TYPENAME_TYPE)
23288 return type;
23289 /* If the SCOPE is a template type parameter, we have no way of
23290 resolving the name. */
23291 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
23292 return type;
23293 /* If the SCOPE is not the current instantiation, there's no reason
23294 to look inside it. */
23295 if (only_current_p && !currently_open_class (scope))
23296 return type;
23297 /* If this is a typedef, we don't want to look inside (c++/11987). */
23298 if (typedef_variant_p (type))
23299 return type;
23300 /* If SCOPE isn't the template itself, it will not have a valid
23301 TYPE_FIELDS list. */
23302 if (CLASS_TYPE_P (scope)
23303 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23304 /* scope is either the template itself or a compatible instantiation
23305 like X<T>, so look up the name in the original template. */
23306 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23307 else
23308 /* scope is a partial instantiation, so we can't do the lookup or we
23309 will lose the template arguments. */
23310 return type;
23311 /* Enter the SCOPE so that name lookup will be resolved as if we
23312 were in the class definition. In particular, SCOPE will no
23313 longer be considered a dependent type. */
23314 pushed_scope = push_scope (scope);
23315 /* Look up the declaration. */
23316 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23317 tf_warning_or_error);
23318
23319 result = NULL_TREE;
23320
23321 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23322 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23323 if (!decl)
23324 /*nop*/;
23325 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23326 && TREE_CODE (decl) == TYPE_DECL)
23327 {
23328 result = TREE_TYPE (decl);
23329 if (result == error_mark_node)
23330 result = NULL_TREE;
23331 }
23332 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23333 && DECL_CLASS_TEMPLATE_P (decl))
23334 {
23335 tree tmpl;
23336 tree args;
23337 /* Obtain the template and the arguments. */
23338 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23339 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23340 /* Instantiate the template. */
23341 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23342 /*entering_scope=*/0,
23343 tf_error | tf_user);
23344 if (result == error_mark_node)
23345 result = NULL_TREE;
23346 }
23347
23348 /* Leave the SCOPE. */
23349 if (pushed_scope)
23350 pop_scope (pushed_scope);
23351
23352 /* If we failed to resolve it, return the original typename. */
23353 if (!result)
23354 return type;
23355
23356 /* If lookup found a typename type, resolve that too. */
23357 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23358 {
23359 /* Ill-formed programs can cause infinite recursion here, so we
23360 must catch that. */
23361 TYPENAME_IS_RESOLVING_P (type) = 1;
23362 result = resolve_typename_type (result, only_current_p);
23363 TYPENAME_IS_RESOLVING_P (type) = 0;
23364 }
23365
23366 /* Qualify the resulting type. */
23367 quals = cp_type_quals (type);
23368 if (quals)
23369 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23370
23371 return result;
23372 }
23373
23374 /* EXPR is an expression which is not type-dependent. Return a proxy
23375 for EXPR that can be used to compute the types of larger
23376 expressions containing EXPR. */
23377
23378 tree
23379 build_non_dependent_expr (tree expr)
23380 {
23381 tree inner_expr;
23382
23383 /* Try to get a constant value for all non-dependent expressions in
23384 order to expose bugs in *_dependent_expression_p and constexpr. */
23385 if (flag_checking && cxx_dialect >= cxx11)
23386 fold_non_dependent_expr (expr);
23387
23388 /* Preserve OVERLOADs; the functions must be available to resolve
23389 types. */
23390 inner_expr = expr;
23391 if (TREE_CODE (inner_expr) == STMT_EXPR)
23392 inner_expr = stmt_expr_value_expr (inner_expr);
23393 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23394 inner_expr = TREE_OPERAND (inner_expr, 0);
23395 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23396 inner_expr = TREE_OPERAND (inner_expr, 1);
23397 if (is_overloaded_fn (inner_expr)
23398 || TREE_CODE (inner_expr) == OFFSET_REF)
23399 return expr;
23400 /* There is no need to return a proxy for a variable. */
23401 if (VAR_P (expr))
23402 return expr;
23403 /* Preserve string constants; conversions from string constants to
23404 "char *" are allowed, even though normally a "const char *"
23405 cannot be used to initialize a "char *". */
23406 if (TREE_CODE (expr) == STRING_CST)
23407 return expr;
23408 /* Preserve void and arithmetic constants, as an optimization -- there is no
23409 reason to create a new node. */
23410 if (TREE_CODE (expr) == VOID_CST
23411 || TREE_CODE (expr) == INTEGER_CST
23412 || TREE_CODE (expr) == REAL_CST)
23413 return expr;
23414 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23415 There is at least one place where we want to know that a
23416 particular expression is a throw-expression: when checking a ?:
23417 expression, there are special rules if the second or third
23418 argument is a throw-expression. */
23419 if (TREE_CODE (expr) == THROW_EXPR)
23420 return expr;
23421
23422 /* Don't wrap an initializer list, we need to be able to look inside. */
23423 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23424 return expr;
23425
23426 /* Don't wrap a dummy object, we need to be able to test for it. */
23427 if (is_dummy_object (expr))
23428 return expr;
23429
23430 if (TREE_CODE (expr) == COND_EXPR)
23431 return build3 (COND_EXPR,
23432 TREE_TYPE (expr),
23433 TREE_OPERAND (expr, 0),
23434 (TREE_OPERAND (expr, 1)
23435 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23436 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23437 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23438 if (TREE_CODE (expr) == COMPOUND_EXPR
23439 && !COMPOUND_EXPR_OVERLOADED (expr))
23440 return build2 (COMPOUND_EXPR,
23441 TREE_TYPE (expr),
23442 TREE_OPERAND (expr, 0),
23443 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23444
23445 /* If the type is unknown, it can't really be non-dependent */
23446 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23447
23448 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23449 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23450 }
23451
23452 /* ARGS is a vector of expressions as arguments to a function call.
23453 Replace the arguments with equivalent non-dependent expressions.
23454 This modifies ARGS in place. */
23455
23456 void
23457 make_args_non_dependent (vec<tree, va_gc> *args)
23458 {
23459 unsigned int ix;
23460 tree arg;
23461
23462 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23463 {
23464 tree newarg = build_non_dependent_expr (arg);
23465 if (newarg != arg)
23466 (*args)[ix] = newarg;
23467 }
23468 }
23469
23470 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23471 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23472 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23473
23474 static tree
23475 make_auto_1 (tree name, bool set_canonical)
23476 {
23477 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23478 TYPE_NAME (au) = build_decl (input_location,
23479 TYPE_DECL, name, au);
23480 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23481 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23482 (0, processing_template_decl + 1, processing_template_decl + 1,
23483 TYPE_NAME (au), NULL_TREE);
23484 if (set_canonical)
23485 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23486 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23487 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23488
23489 return au;
23490 }
23491
23492 tree
23493 make_decltype_auto (void)
23494 {
23495 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23496 }
23497
23498 tree
23499 make_auto (void)
23500 {
23501 return make_auto_1 (get_identifier ("auto"), true);
23502 }
23503
23504 /* Make a "constrained auto" type-specifier. This is an
23505 auto type with constraints that must be associated after
23506 deduction. The constraint is formed from the given
23507 CONC and its optional sequence of arguments, which are
23508 non-null if written as partial-concept-id. */
23509
23510 tree
23511 make_constrained_auto (tree con, tree args)
23512 {
23513 tree type = make_auto_1 (get_identifier ("auto"), false);
23514
23515 /* Build the constraint. */
23516 tree tmpl = DECL_TI_TEMPLATE (con);
23517 tree expr;
23518 if (VAR_P (con))
23519 expr = build_concept_check (tmpl, type, args);
23520 else
23521 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
23522
23523 tree constr = make_predicate_constraint (expr);
23524 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
23525
23526 /* Our canonical type depends on the constraint. */
23527 TYPE_CANONICAL (type) = canonical_type_parameter (type);
23528
23529 /* Attach the constraint to the type declaration. */
23530 tree decl = TYPE_NAME (type);
23531 return decl;
23532 }
23533
23534 /* Given type ARG, return std::initializer_list<ARG>. */
23535
23536 static tree
23537 listify (tree arg)
23538 {
23539 tree std_init_list = namespace_binding
23540 (get_identifier ("initializer_list"), std_node);
23541 tree argvec;
23542 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23543 {
23544 error ("deducing from brace-enclosed initializer list requires "
23545 "#include <initializer_list>");
23546 return error_mark_node;
23547 }
23548 argvec = make_tree_vec (1);
23549 TREE_VEC_ELT (argvec, 0) = arg;
23550 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23551 NULL_TREE, 0, tf_warning_or_error);
23552 }
23553
23554 /* Replace auto in TYPE with std::initializer_list<auto>. */
23555
23556 static tree
23557 listify_autos (tree type, tree auto_node)
23558 {
23559 tree init_auto = listify (auto_node);
23560 tree argvec = make_tree_vec (1);
23561 TREE_VEC_ELT (argvec, 0) = init_auto;
23562 if (processing_template_decl)
23563 argvec = add_to_template_args (current_template_args (), argvec);
23564 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23565 }
23566
23567 /* Hash traits for hashing possibly constrained 'auto'
23568 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23569
23570 struct auto_hash : default_hash_traits<tree>
23571 {
23572 static inline hashval_t hash (tree);
23573 static inline bool equal (tree, tree);
23574 };
23575
23576 /* Hash the 'auto' T. */
23577
23578 inline hashval_t
23579 auto_hash::hash (tree t)
23580 {
23581 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
23582 /* Matching constrained-type-specifiers denote the same template
23583 parameter, so hash the constraint. */
23584 return hash_placeholder_constraint (c);
23585 else
23586 /* But unconstrained autos are all separate, so just hash the pointer. */
23587 return iterative_hash_object (t, 0);
23588 }
23589
23590 /* Compare two 'auto's. */
23591
23592 inline bool
23593 auto_hash::equal (tree t1, tree t2)
23594 {
23595 if (t1 == t2)
23596 return true;
23597
23598 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
23599 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
23600
23601 /* Two unconstrained autos are distinct. */
23602 if (!c1 || !c2)
23603 return false;
23604
23605 return equivalent_placeholder_constraints (c1, c2);
23606 }
23607
23608 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23609 constrained) auto, add it to the vector. */
23610
23611 static int
23612 extract_autos_r (tree t, void *data)
23613 {
23614 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
23615 if (is_auto_or_concept (t))
23616 {
23617 /* All the autos were built with index 0; fix that up now. */
23618 tree *p = hash.find_slot (t, INSERT);
23619 unsigned idx;
23620 if (*p)
23621 /* If this is a repeated constrained-type-specifier, use the index we
23622 chose before. */
23623 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
23624 else
23625 {
23626 /* Otherwise this is new, so use the current count. */
23627 *p = t;
23628 idx = hash.elements () - 1;
23629 }
23630 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
23631 }
23632
23633 /* Always keep walking. */
23634 return 0;
23635 }
23636
23637 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23638 says they can appear anywhere in the type. */
23639
23640 static tree
23641 extract_autos (tree type)
23642 {
23643 hash_set<tree> visited;
23644 hash_table<auto_hash> hash (2);
23645
23646 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
23647
23648 tree tree_vec = make_tree_vec (hash.elements());
23649 for (hash_table<auto_hash>::iterator iter = hash.begin();
23650 iter != hash.end(); ++iter)
23651 {
23652 tree elt = *iter;
23653 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
23654 TREE_VEC_ELT (tree_vec, i)
23655 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
23656 }
23657
23658 return tree_vec;
23659 }
23660
23661 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23662 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23663
23664 tree
23665 do_auto_deduction (tree type, tree init, tree auto_node)
23666 {
23667 return do_auto_deduction (type, init, auto_node,
23668 tf_warning_or_error,
23669 adc_unspecified);
23670 }
23671
23672 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23673 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23674 The CONTEXT determines the context in which auto deduction is performed
23675 and is used to control error diagnostics. */
23676
23677 tree
23678 do_auto_deduction (tree type, tree init, tree auto_node,
23679 tsubst_flags_t complain, auto_deduction_context context)
23680 {
23681 tree targs;
23682
23683 if (init == error_mark_node)
23684 return error_mark_node;
23685
23686 if (type_dependent_expression_p (init))
23687 /* Defining a subset of type-dependent expressions that we can deduce
23688 from ahead of time isn't worth the trouble. */
23689 return type;
23690
23691 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23692 with either a new invented type template parameter U or, if the
23693 initializer is a braced-init-list (8.5.4), with
23694 std::initializer_list<U>. */
23695 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23696 {
23697 if (!DIRECT_LIST_INIT_P (init))
23698 type = listify_autos (type, auto_node);
23699 else if (CONSTRUCTOR_NELTS (init) == 1)
23700 init = CONSTRUCTOR_ELT (init, 0)->value;
23701 else
23702 {
23703 if (complain & tf_warning_or_error)
23704 {
23705 if (permerror (input_location, "direct-list-initialization of "
23706 "%<auto%> requires exactly one element"))
23707 inform (input_location,
23708 "for deduction to %<std::initializer_list%>, use copy-"
23709 "list-initialization (i.e. add %<=%> before the %<{%>)");
23710 }
23711 type = listify_autos (type, auto_node);
23712 }
23713 }
23714
23715 init = resolve_nondeduced_context (init);
23716
23717 if (AUTO_IS_DECLTYPE (auto_node))
23718 {
23719 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23720 && !REF_PARENTHESIZED_P (init)));
23721 targs = make_tree_vec (1);
23722 TREE_VEC_ELT (targs, 0)
23723 = finish_decltype_type (init, id, tf_warning_or_error);
23724 if (type != auto_node)
23725 {
23726 if (complain & tf_error)
23727 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23728 return error_mark_node;
23729 }
23730 }
23731 else
23732 {
23733 tree parms = build_tree_list (NULL_TREE, type);
23734 tree tparms;
23735
23736 if (flag_concepts)
23737 tparms = extract_autos (type);
23738 else
23739 {
23740 tparms = make_tree_vec (1);
23741 TREE_VEC_ELT (tparms, 0)
23742 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23743 }
23744
23745 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
23746 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23747 DEDUCE_CALL, LOOKUP_NORMAL,
23748 NULL, /*explain_p=*/false);
23749 if (val > 0)
23750 {
23751 if (processing_template_decl)
23752 /* Try again at instantiation time. */
23753 return type;
23754 if (type && type != error_mark_node
23755 && (complain & tf_error))
23756 /* If type is error_mark_node a diagnostic must have been
23757 emitted by now. Also, having a mention to '<type error>'
23758 in the diagnostic is not really useful to the user. */
23759 {
23760 if (cfun && auto_node == current_function_auto_return_pattern
23761 && LAMBDA_FUNCTION_P (current_function_decl))
23762 error ("unable to deduce lambda return type from %qE", init);
23763 else
23764 error ("unable to deduce %qT from %qE", type, init);
23765 type_unification_real (tparms, targs, parms, &init, 1, 0,
23766 DEDUCE_CALL, LOOKUP_NORMAL,
23767 NULL, /*explain_p=*/true);
23768 }
23769 return error_mark_node;
23770 }
23771 }
23772
23773 /* If the list of declarators contains more than one declarator, the type
23774 of each declared variable is determined as described above. If the
23775 type deduced for the template parameter U is not the same in each
23776 deduction, the program is ill-formed. */
23777 if (!flag_concepts && TREE_TYPE (auto_node)
23778 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
23779 {
23780 if (cfun && auto_node == current_function_auto_return_pattern
23781 && LAMBDA_FUNCTION_P (current_function_decl))
23782 error ("inconsistent types %qT and %qT deduced for "
23783 "lambda return type", TREE_TYPE (auto_node),
23784 TREE_VEC_ELT (targs, 0));
23785 else
23786 error ("inconsistent deduction for %qT: %qT and then %qT",
23787 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
23788 return error_mark_node;
23789 }
23790 if (!flag_concepts)
23791 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
23792
23793 /* Check any placeholder constraints against the deduced type. */
23794 if (flag_concepts && !processing_template_decl)
23795 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
23796 {
23797 /* Use the deduced type to check the associated constraints. */
23798 if (!constraints_satisfied_p (constr, targs))
23799 {
23800 if (complain & tf_warning_or_error)
23801 {
23802 switch (context)
23803 {
23804 case adc_unspecified:
23805 error("placeholder constraints not satisfied");
23806 break;
23807 case adc_variable_type:
23808 error ("deduced initializer does not satisfy "
23809 "placeholder constraints");
23810 break;
23811 case adc_return_type:
23812 error ("deduced return type does not satisfy "
23813 "placeholder constraints");
23814 break;
23815 case adc_requirement:
23816 error ("deduced expression type does not saatisy "
23817 "placeholder constraints");
23818 break;
23819 }
23820 diagnose_constraints (input_location, constr, targs);
23821 }
23822 return error_mark_node;
23823 }
23824 }
23825
23826 if (processing_template_decl)
23827 targs = add_to_template_args (current_template_args (), targs);
23828 return tsubst (type, targs, complain, NULL_TREE);
23829 }
23830
23831 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
23832 result. */
23833
23834 tree
23835 splice_late_return_type (tree type, tree late_return_type)
23836 {
23837 if (is_auto (type))
23838 {
23839 if (late_return_type)
23840 return late_return_type;
23841
23842 tree idx = get_template_parm_index (type);
23843 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
23844 /* In an abbreviated function template we didn't know we were dealing
23845 with a function template when we saw the auto return type, so update
23846 it to have the correct level. */
23847 return make_auto_1 (TYPE_IDENTIFIER (type), true);
23848 }
23849 return type;
23850 }
23851
23852 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
23853 'decltype(auto)'. */
23854
23855 bool
23856 is_auto (const_tree type)
23857 {
23858 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23859 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
23860 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
23861 return true;
23862 else
23863 return false;
23864 }
23865
23866 /* for_each_template_parm callback for type_uses_auto. */
23867
23868 int
23869 is_auto_r (tree tp, void */*data*/)
23870 {
23871 return is_auto_or_concept (tp);
23872 }
23873
23874 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
23875 a use of `auto'. Returns NULL_TREE otherwise. */
23876
23877 tree
23878 type_uses_auto (tree type)
23879 {
23880 if (flag_concepts)
23881 {
23882 /* The Concepts TS allows multiple autos in one type-specifier; just
23883 return the first one we find, do_auto_deduction will collect all of
23884 them. */
23885 if (uses_template_parms (type))
23886 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
23887 /*visited*/NULL, /*nondeduced*/true);
23888 else
23889 return NULL_TREE;
23890 }
23891 else
23892 return find_type_usage (type, is_auto);
23893 }
23894
23895 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
23896 'decltype(auto)' or a concept. */
23897
23898 bool
23899 is_auto_or_concept (const_tree type)
23900 {
23901 return is_auto (type); // or concept
23902 }
23903
23904 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
23905 a concept identifier) iff TYPE contains a use of a generic type. Returns
23906 NULL_TREE otherwise. */
23907
23908 tree
23909 type_uses_auto_or_concept (tree type)
23910 {
23911 return find_type_usage (type, is_auto_or_concept);
23912 }
23913
23914
23915 /* For a given template T, return the vector of typedefs referenced
23916 in T for which access check is needed at T instantiation time.
23917 T is either a FUNCTION_DECL or a RECORD_TYPE.
23918 Those typedefs were added to T by the function
23919 append_type_to_template_for_access_check. */
23920
23921 vec<qualified_typedef_usage_t, va_gc> *
23922 get_types_needing_access_check (tree t)
23923 {
23924 tree ti;
23925 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
23926
23927 if (!t || t == error_mark_node)
23928 return NULL;
23929
23930 if (!(ti = get_template_info (t)))
23931 return NULL;
23932
23933 if (CLASS_TYPE_P (t)
23934 || TREE_CODE (t) == FUNCTION_DECL)
23935 {
23936 if (!TI_TEMPLATE (ti))
23937 return NULL;
23938
23939 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
23940 }
23941
23942 return result;
23943 }
23944
23945 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
23946 tied to T. That list of typedefs will be access checked at
23947 T instantiation time.
23948 T is either a FUNCTION_DECL or a RECORD_TYPE.
23949 TYPE_DECL is a TYPE_DECL node representing a typedef.
23950 SCOPE is the scope through which TYPE_DECL is accessed.
23951 LOCATION is the location of the usage point of TYPE_DECL.
23952
23953 This function is a subroutine of
23954 append_type_to_template_for_access_check. */
23955
23956 static void
23957 append_type_to_template_for_access_check_1 (tree t,
23958 tree type_decl,
23959 tree scope,
23960 location_t location)
23961 {
23962 qualified_typedef_usage_t typedef_usage;
23963 tree ti;
23964
23965 if (!t || t == error_mark_node)
23966 return;
23967
23968 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
23969 || CLASS_TYPE_P (t))
23970 && type_decl
23971 && TREE_CODE (type_decl) == TYPE_DECL
23972 && scope);
23973
23974 if (!(ti = get_template_info (t)))
23975 return;
23976
23977 gcc_assert (TI_TEMPLATE (ti));
23978
23979 typedef_usage.typedef_decl = type_decl;
23980 typedef_usage.context = scope;
23981 typedef_usage.locus = location;
23982
23983 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
23984 }
23985
23986 /* Append TYPE_DECL to the template TEMPL.
23987 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
23988 At TEMPL instanciation time, TYPE_DECL will be checked to see
23989 if it can be accessed through SCOPE.
23990 LOCATION is the location of the usage point of TYPE_DECL.
23991
23992 e.g. consider the following code snippet:
23993
23994 class C
23995 {
23996 typedef int myint;
23997 };
23998
23999 template<class U> struct S
24000 {
24001 C::myint mi; // <-- usage point of the typedef C::myint
24002 };
24003
24004 S<char> s;
24005
24006 At S<char> instantiation time, we need to check the access of C::myint
24007 In other words, we need to check the access of the myint typedef through
24008 the C scope. For that purpose, this function will add the myint typedef
24009 and the scope C through which its being accessed to a list of typedefs
24010 tied to the template S. That list will be walked at template instantiation
24011 time and access check performed on each typedefs it contains.
24012 Note that this particular code snippet should yield an error because
24013 myint is private to C. */
24014
24015 void
24016 append_type_to_template_for_access_check (tree templ,
24017 tree type_decl,
24018 tree scope,
24019 location_t location)
24020 {
24021 qualified_typedef_usage_t *iter;
24022 unsigned i;
24023
24024 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
24025
24026 /* Make sure we don't append the type to the template twice. */
24027 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
24028 if (iter->typedef_decl == type_decl && scope == iter->context)
24029 return;
24030
24031 append_type_to_template_for_access_check_1 (templ, type_decl,
24032 scope, location);
24033 }
24034
24035 /* Convert the generic type parameters in PARM that match the types given in the
24036 range [START_IDX, END_IDX) from the current_template_parms into generic type
24037 packs. */
24038
24039 tree
24040 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
24041 {
24042 tree current = current_template_parms;
24043 int depth = TMPL_PARMS_DEPTH (current);
24044 current = INNERMOST_TEMPLATE_PARMS (current);
24045 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
24046
24047 for (int i = 0; i < start_idx; ++i)
24048 TREE_VEC_ELT (replacement, i)
24049 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24050
24051 for (int i = start_idx; i < end_idx; ++i)
24052 {
24053 /* Create a distinct parameter pack type from the current parm and add it
24054 to the replacement args to tsubst below into the generic function
24055 parameter. */
24056
24057 tree o = TREE_TYPE (TREE_VALUE
24058 (TREE_VEC_ELT (current, i)));
24059 tree t = copy_type (o);
24060 TEMPLATE_TYPE_PARM_INDEX (t)
24061 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
24062 o, 0, 0, tf_none);
24063 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
24064 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
24065 TYPE_MAIN_VARIANT (t) = t;
24066 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
24067 TYPE_CANONICAL (t) = canonical_type_parameter (t);
24068 TREE_VEC_ELT (replacement, i) = t;
24069 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24070 }
24071
24072 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24073 TREE_VEC_ELT (replacement, i)
24074 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24075
24076 /* If there are more levels then build up the replacement with the outer
24077 template parms. */
24078 if (depth > 1)
24079 replacement = add_to_template_args (template_parms_to_args
24080 (TREE_CHAIN (current_template_parms)),
24081 replacement);
24082
24083 return tsubst (parm, replacement, tf_none, NULL_TREE);
24084 }
24085
24086 /* Entries in the decl_constraint hash table. */
24087 struct GTY((for_user)) constr_entry
24088 {
24089 tree decl;
24090 tree ci;
24091 };
24092
24093 /* Hashing function and equality for constraint entries. */
24094 struct constr_hasher : ggc_ptr_hash<constr_entry>
24095 {
24096 static hashval_t hash (constr_entry *e)
24097 {
24098 return (hashval_t)DECL_UID (e->decl);
24099 }
24100
24101 static bool equal (constr_entry *e1, constr_entry *e2)
24102 {
24103 return e1->decl == e2->decl;
24104 }
24105 };
24106
24107 /* A mapping from declarations to constraint information. Note that
24108 both templates and their underlying declarations are mapped to the
24109 same constraint information.
24110
24111 FIXME: This is defined in pt.c because garbage collection
24112 code is not being generated for constraint.cc. */
24113
24114 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24115
24116 /* Returns true iff cinfo contains a valid set of constraints.
24117 This is the case when the associated requirements have been
24118 successfully decomposed into lists of atomic constraints.
24119 That is, when the saved assumptions are not error_mark_node. */
24120
24121 bool
24122 valid_constraints_p (tree cinfo)
24123 {
24124 gcc_assert (cinfo);
24125 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
24126 }
24127
24128 /* Returns the template constraints of declaration T. If T is not
24129 constrained, return NULL_TREE. Note that T must be non-null. */
24130
24131 tree
24132 get_constraints (tree t)
24133 {
24134 gcc_assert (DECL_P (t));
24135 if (TREE_CODE (t) == TEMPLATE_DECL)
24136 t = DECL_TEMPLATE_RESULT (t);
24137 constr_entry elt = { t, NULL_TREE };
24138 constr_entry* found = decl_constraints->find (&elt);
24139 if (found)
24140 return found->ci;
24141 else
24142 return NULL_TREE;
24143 }
24144
24145 /* Associate the given constraint information CI with the declaration
24146 T. If T is a template, then the constraints are associated with
24147 its underlying declaration. Don't build associations if CI is
24148 NULL_TREE. */
24149
24150 void
24151 set_constraints (tree t, tree ci)
24152 {
24153 if (!ci)
24154 return;
24155 gcc_assert (t);
24156 if (TREE_CODE (t) == TEMPLATE_DECL)
24157 t = DECL_TEMPLATE_RESULT (t);
24158 gcc_assert (!get_constraints (t));
24159 constr_entry elt = {t, ci};
24160 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24161 constr_entry* entry = ggc_alloc<constr_entry> ();
24162 *entry = elt;
24163 *slot = entry;
24164 }
24165
24166 /* Remove the associated constraints of the declaration T. */
24167
24168 void
24169 remove_constraints (tree t)
24170 {
24171 gcc_assert (DECL_P (t));
24172 if (TREE_CODE (t) == TEMPLATE_DECL)
24173 t = DECL_TEMPLATE_RESULT (t);
24174
24175 constr_entry elt = {t, NULL_TREE};
24176 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24177 if (slot)
24178 decl_constraints->clear_slot (slot);
24179 }
24180
24181 /* Set up the hash table for constraint association. */
24182
24183 void
24184 init_constraint_processing (void)
24185 {
24186 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24187 }
24188
24189 /* Set up the hash tables for template instantiations. */
24190
24191 void
24192 init_template_processing (void)
24193 {
24194 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24195 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24196 }
24197
24198 /* Print stats about the template hash tables for -fstats. */
24199
24200 void
24201 print_template_statistics (void)
24202 {
24203 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24204 "%f collisions\n", (long) decl_specializations->size (),
24205 (long) decl_specializations->elements (),
24206 decl_specializations->collisions ());
24207 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24208 "%f collisions\n", (long) type_specializations->size (),
24209 (long) type_specializations->elements (),
24210 type_specializations->collisions ());
24211 }
24212
24213 #include "gt-cp-pt.h"